Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1446,7 +1446,7 @@ |
1447 | 1447 | * to ensure that client-side caches don't keep obsolete copies of global |
1448 | 1448 | * styles. |
1449 | 1449 | */ |
1450 | | -$wgStyleVersion = '195'; |
| 1450 | +$wgStyleVersion = '196'; |
1451 | 1451 | |
1452 | 1452 | |
1453 | 1453 | # Server-side caching: |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1148,7 +1148,8 @@ |
1149 | 1149 | . '<input type="text" id="searchInput'.$this->searchboxes.'" name="search" size="19" value="' |
1150 | 1150 | . htmlspecialchars(substr($search,0,256)) . "\" />\n" |
1151 | 1151 | . '<input type="submit" name="go" value="' . wfMsg ('searcharticle') . '" /> ' |
1152 | | - . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n</form>"; |
| 1152 | + . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n" |
| 1153 | + . '<a href="' . $this->escapeSearchLink() . '" rel="search">' . wfMsg ('powersearch-legend') . '</a></form>'; |
1153 | 1154 | |
1154 | 1155 | // Ensure unique id's for search boxes made after the first |
1155 | 1156 | $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -258,6 +258,7 @@ |
259 | 259 | * Image moving is now enabled for sysops by default |
260 | 260 | * Make "Did you mean" search feature more noticeable |
261 | 261 | * (bug 16720) Transcluded Special:NewPages processes "/username=" |
| 262 | +* Added "Advanced search" link to the search form |
262 | 263 | |
263 | 264 | === Bug fixes in 1.14 === |
264 | 265 | |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -259,6 +259,7 @@ |
260 | 260 | ?> value="<?php $this->text('search') ?>"<?php } ?> /> |
261 | 261 | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> /> |
262 | 262 | <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg('searchbutton') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> |
| 263 | + <a href="<?php $this->text('searchaction') ?>" rel="search"><?php $this->msg('powersearch-legend') ?></a> |
263 | 264 | </div></form> |
264 | 265 | </div> |
265 | 266 | </div> |
Index: trunk/phase3/skins/Modern.php |
— | — | @@ -256,6 +256,7 @@ |
257 | 257 | ?> value="<?php $this->text('search') ?>"<?php } ?> /> |
258 | 258 | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('searcharticle') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-go' ); ?> /> |
259 | 259 | <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="<?php $this->msg('searchbutton') ?>"<?php echo $this->skin->tooltipAndAccesskey( 'search-fulltext' ); ?> /> |
| 260 | + <a href="<?php $this->text('searchaction') ?>" rel="search"><?php $this->msg('powersearch-legend') ?></a> |
260 | 261 | </div></form> |
261 | 262 | </div><!-- pBody --> |
262 | 263 | </div><!-- portlet --> |
Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -715,7 +715,9 @@ |
716 | 716 | padding: .5em .4em .4em .4em; |
717 | 717 | text-align: center; |
718 | 718 | } |
719 | | - |
| 719 | +#p-search a { |
| 720 | + font-size: 95%; |
| 721 | +} |
720 | 722 | /* |
721 | 723 | ** the personal toolbar |
722 | 724 | */ |
Index: trunk/phase3/skins/CologneBlue.php |
— | — | @@ -299,7 +299,8 @@ |
300 | 300 | $s .= "<input type='text' id=\"searchInput{$this->searchboxes}\" class=\"mw-searchInput\" name=\"search\" size=\"14\" value=\"" |
301 | 301 | . htmlspecialchars(substr($search,0,256)) . "\" /><br />" |
302 | 302 | . "<input type='submit' id=\"searchGoButton{$this->searchboxes}\" class=\"searchButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" />" |
303 | | - . "<input type='submit' id=\"mw-searchButton{$this->searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" /></form>"; |
| 303 | + . "<input type='submit' id=\"mw-searchButton{$this->searchboxes}\" class=\"searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" />\n" |
| 304 | + . '<a href="$action" rel="search">' . wfMsg ('powersearch-legend') . '</a></form>'; |
304 | 305 | |
305 | 306 | // Ensure unique id's for search boxes made after the first |
306 | 307 | $this->searchboxes = $this->searchboxes == '' ? 2 : $this->searchboxes + 1; |