Refactor parserTests so the class can be used by another script
[lhc/web/wiklou.git] / includes / SpecialDisambiguations.php
index 4eaedc3..10a3294 100644 (file)
@@ -22,29 +22,31 @@ class DisambiguationsPage extends PageQueryPage {
        }
        
        function isExpensive( ) { return true; }
+       function isSyndicated() { return false; }
 
        function getPageHeader( ) {
                global $wgUser;
                $sk = $wgUser->getSkin();
                
                #FIXME : probably need to add a backlink to the maintenance page.
-               return '<p>'.wfMsg("disambiguationstext", $sk->makeKnownLink(wfMsgForContent('disambiguationspage')) )."</p><br>\n";
+               return '<p>'.wfMsg("disambiguationstext", $sk->makeKnownLink(wfMsgForContent('disambiguationspage')) )."</p><br />\n";
        }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
-               extract( $dbr->tableNames( 'cur', 'links' ) );
+               extract( $dbr->tableNames( 'page', 'pagelinks' ) );
                
                $dp = Title::newFromText(wfMsgForContent("disambiguationspage"));
-               $dpid = $dp->getArticleID();
-                       
-               $sql = "SELECT ca.cur_namespace AS ns_art, ca.cur_title AS title_art,"
-                       .        " cb.cur_namespace AS ns_dis, cb.cur_title AS title_dis"
-                   . " FROM links as la, links as lb, cur as ca, cur as cb"
-                   . " WHERE la.l_to = '{$dpid}'"
-                   . " AND la.l_from = lb.l_to"
-                   . " AND ca.cur_id = lb.l_from"
-                   . " AND cb.cur_id = lb.l_to";
+               $id = $dp->getArticleId();
+        $dns = $dp->getNamespace();
+        $dtitle = $dbr->addQuotes( $dp->getDBkey() );
+
+               $sql = "SELECT 'Disambiguations' as type,"
+            .        " pl_namespace AS namespace, pl_title AS title"
+                   . " FROM {$pagelinks}, {$page}"
+                   . " WHERE page_namespace = $dns"
+            . " AND page_title = $dtitle"
+                   . " AND pl_from=page_id";
 
                return $sql;
        }
@@ -55,11 +57,12 @@ class DisambiguationsPage extends PageQueryPage {
        
        function formatResult( $skin, $result ) {
                global $wgContLang ;
-               $ns = $wgContLang->getNamespaces() ;
+               $dp = Title::newFromText(wfMsgForContent("disambiguationspage"));
+        $title = Title::makeTitle( $result->namespace, $result->title );
 
-               $from = $skin->makeKnownLink( $ns[$result->ns_art].':'.$result->title_art ,'');
-               $edit = $skin->makeBrokenLink( $ns[$result->ns_art].':'.$result->title_art , "(".wfMsg("qbedit").")" , 'redirect=no');
-               $to   = $skin->makeKnownLink( $ns[$result->ns_dis].':'.$result->title_dis ,'');
+               $from = $skin->makeKnownLinkObj( $title,'');
+               $edit = $skin->makeBrokenLinkObj( $title, "(".wfMsg("qbedit").")" , 'redirect=no');
+               $to   = $skin->makeKnownLinkObj( $dp,'');
                
                return "$from $edit => $to";
        }