wfSajaxSearch cleanup:
authorVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sun, 16 Dec 2007 13:32:10 +0000 (13:32 +0000)
committerVictor Vasiliev <vasilievvv@users.mediawiki.org>
Sun, 16 Dec 2007 13:32:10 +0000 (13:32 +0000)
* Normalize titles
* Support namespaces (including special pages)
* Hide empty results
* Other fixes

includes/AjaxFunctions.php
includes/DefaultSettings.php
skins/monobook/main.css

index e16f6cc..69212f9 100644 (file)
@@ -74,60 +74,78 @@ function code2utf($num){
 }
 
 function wfSajaxSearch( $term ) {
-       global $wgContLang, $wgOut;
+       global $wgContLang, $wgOut, $wgUser;
        $limit = 16;
-
-       $l = new Linker;
+       $sk = $wgUser->getSkin();
 
        $term = trim( $term );
        $term = str_replace( ' ', '_', $wgContLang->ucfirst( 
                        $wgContLang->checkTitleEncoding( $wgContLang->recodeInput( js_unescape( $term ) ) )
                ) );
+       $term_title = Title::newFromText( $term );
+
+       $r = $more = '';
+       $canSearch = true;
+       if( $term_title && $term_title->getNamespace() != NS_SPECIAL ) {
+               $db = wfGetDB( DB_SLAVE );
+               $res = $db->select( 'page', array( 'page_title', 'page_namespace' ),
+                               array(  'page_namespace' => $term_title->getNamespace(),
+                                       "page_title LIKE '". $db->strencode( $term_title->getDBKey() ) ."%'" ),
+                                       "wfSajaxSearch",
+                                       array( 'LIMIT' => $limit+1 )
+                               );
+
+               $i = 0;
+               while ( ( $row = $db->fetchObject( $res ) ) && ( ++$i <= $limit ) ) {
+                       $nt = Title::newFromText( $row->page_title, $row->page_namespace );
+                       $r .= '<li>' . $sk->makeKnownLinkObj( $nt ) . "</li>\n";
+               }
+               if ( $i > $limit ) {
+                       $more = '<i>' .  $sk->makeKnownLink( $wgContLang->specialPage( "Allpages" ),
+                                                                                       wfMsg('moredotdotdot'),
+                                                                                       "namespace=0&from=" . wfUrlEncode ( $term ) ) .
+                               '</i>';
+               }
+       } else if( $term_title && $term_title->getNamespace() == NS_SPECIAL ) {
+               SpecialPage::initList();
+               SpecialPage::initAliasList();
+               $specialPages = array_merge(
+                       array_keys( SpecialPage::$mList ),
+                       array_keys( SpecialPage::$mAliases )
+               );
+
+               foreach( $specialPages as $page ) {
+                       if( $wgContLang->uc( $page ) != $page && strpos( $page, $term_title->getText() ) === 0 ) {
+                               $r .= '<li>' . $sk->makeKnownLinkObj( Title::newFromText( $page, NS_SPECIAL ) ) . '</li>';
+                       }
+               }
 
-       if ( strlen( str_replace( '_', '', $term ) )<3 )
-               return;
-
-       $db = wfGetDB( DB_SLAVE );
-       $res = $db->select( 'page', 'page_title',
-                       array(  'page_namespace' => 0,
-                               "page_title LIKE '". $db->strencode( $term) ."%'" ),
-                               "wfSajaxSearch",
-                               array( 'LIMIT' => $limit+1 )
-                       );
-
-       $r = "";
-
-       $i=0;
-       while ( ( $row = $db->fetchObject( $res ) ) && ( ++$i <= $limit ) ) {
-               $nt = Title::newFromDBkey( $row->page_title );
-               $r .= '<li>' . $l->makeKnownLinkObj( $nt ) . "</li>\n";
-       }
-       if ( $i > $limit ) {
-               $more = '<i>' .  $l->makeKnownLink( $wgContLang->specialPage( "Allpages" ),
-                                               wfMsg('moredotdotdot'),
-                                               "namespace=0&from=" . wfUrlEncode ( $term ) ) .
-                       '</i>';
-       } else {
-               $more = '';
+               $canSearch = false;
        }
 
-       $subtitlemsg = ( Title::newFromText($term) ? 'searchsubtitle' : 'searchsubtitleinvalid' );
-       $subtitle = $wgOut->parse( wfMsg( $subtitlemsg, wfEscapeWikiText($term) ) ); #FIXME: parser is missing mTitle !
-
+       $valid = (bool) $term_title;
        $term_url = urlencode( $term );
-       $term_diplay = htmlspecialchars( str_replace( '_', ' ', $term ) );
-       $html = '<div style="float:right; border:solid 1px black;background:gainsboro;padding:2px;"><a onclick="Searching_Hide_Results();">'
+       $term_diplay = htmlspecialchars( $valid ? $term_title->getFullText() : str_replace( '_', ' ', $term ) );
+       $subtitlemsg = ( $valid ? 'searchsubtitle' : 'searchsubtitleinvalid' );
+       $subtitle = wfMsgWikiHtml( $subtitlemsg, $term_diplay );
+       $html = '<div id="searchTargetHide"><a onclick="Searching_Hide_Results();">'
                . wfMsgHtml( 'hideresults' ) . '</a></div>'
                . '<h1 class="firstHeading">'.wfMsgHtml('search')
-               . '</h1><div id="contentSub">'. $subtitle . '</div><ul><li>'
-               . $l->makeKnownLink( $wgContLang->specialPage( 'Search' ),
-                                       wfMsgHtml( 'searchcontaining', $term_diplay ),
-                                       "search={$term_url}&fulltext=Search" )
-               . '</li><li>' . $l->makeKnownLink( $wgContLang->specialPage( 'Search' ),
-                                       wfMsgHtml( 'searchnamed', $term_diplay ) ,
-                                       "search={$term_url}&go=Go" )
-               . "</li></ul><h2>" . wfMsgHtml( 'articletitles', $term_diplay ) . "</h2>"
-               . '<ul>' .$r .'</ul>'.$more;
+               . '</h1><div id="contentSub">'. $subtitle . '</div>';
+       if( $canSearch ) {
+               $html .= '<ul><li>'
+                       . $sk->makeKnownLink( $wgContLang->specialPage( 'Search' ),
+                                               wfMsgHtml( 'searchcontaining', $term_diplay ),
+                                               "search={$term_url}&fulltext=Search" )
+                       . '</li><li>' . $sk->makeKnownLink( $wgContLang->specialPage( 'Search' ),
+                                               wfMsgHtml( 'searchnamed', $term_diplay ) ,
+                                               "search={$term_url}&go=Go" )
+                       . "</li></ul>";
+       }
+       if( $r ) {
+               $html .= "<h2>" . wfMsgHtml( 'articletitles', $term_diplay ) . "</h2>"
+                       . '<ul>' .$r .'</ul>' . $more;
+       }
 
        $response = new AjaxResponse( $html );
 
index bfde93b..f066a11 100644 (file)
@@ -1246,7 +1246,7 @@ $wgCacheEpoch = '20030516000000';
  * to ensure that client-side caches don't keep obsolete copies of global
  * styles.
  */
-$wgStyleVersion = '103';
+$wgStyleVersion = '104';
 
 
 # Server-side caching:
index 7f65d4d..02cc9c9 100644 (file)
@@ -1446,6 +1446,13 @@ div#searchTarget ul li:before {
        content: "\00BB \0020";
 }
 
+div#searchTargetHide {
+       float:right;
+       border:solid 1px black;
+       background:gainsboro;
+       padding:2px;
+}
+
 div.multipageimagenavbox {
    border: solid 1px silver;
    padding: 4px;