* Now [[MediaWiki:Disambiguationspage]] may have either disambig template name, or...
authorYuri Astrakhan <yurik@users.mediawiki.org>
Fri, 25 Aug 2006 04:32:33 +0000 (04:32 +0000)
committerYuri Astrakhan <yurik@users.mediawiki.org>
Fri, 25 Aug 2006 04:32:33 +0000 (04:32 +0000)
includes/SpecialDisambiguations.php

index f57b732..90a1121 100644 (file)
@@ -19,36 +19,66 @@ class DisambiguationsPage extends PageQueryPage {
        function isExpensive( ) { return true; }
        function isSyndicated() { return false; }
 
+    function getDisambiguationPageObj() {
+        return Title::makeTitleSafe( NS_MEDIAWIKI, 'disambiguationspage');
+    }
+    
        function getPageHeader( ) {
                global $wgUser;
                $sk = $wgUser->getSkin();
 
-               return '<p>'.wfMsg('disambiguationstext', $sk->makeKnownLink(wfMsgForContent('disambiguationspage')) )."</p><br />\n";
+               return '<p>'.wfMsg('disambiguationstext', $sk->makeKnownLinkObj($this->getDisambiguationPageObj()))."</p><br />\n";
        }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
                extract( $dbr->tableNames( 'page', 'pagelinks', 'templatelinks' ) );
 
-               $dp = Title::newFromText(wfMsgForContent('disambiguationspage'));
-               $id = $dp->getArticleId();
-               $dns = $dp->getNamespace();
-               $dtitle = $dbr->addQuotes( $dp->getDBkey() );
-
-               if($dns != NS_TEMPLATE) {
-                       # FIXME we assume the disambiguation message is a template but
-                       # the page can potentially be from another namespace :/
-                       wfDebug("Mediawiki:disambiguationspage message does not refer to a template!\n");
-               }
-
-               $sql = "SELECT 'Disambiguations' AS \"type\", pa.page_namespace AS namespace,"
-                        ." pa.page_title AS title, la.pl_from AS value"
-                        ." FROM {$templatelinks} AS lb, {$page} AS pa, {$pagelinks} AS la"
-                        ." WHERE lb.tl_namespace = $dns AND lb.tl_title = $dtitle" # disambiguation template
-                        .' AND pa.page_id = lb.tl_from'
-                        .' AND pa.page_namespace = la.pl_namespace'
-                        .' AND pa.page_title = la.pl_title';
-               return $sql;
+        $dMsgText = wfMsgForContent('disambiguationspage');
+               
+               $linkBatch = new LinkBatch;
+        
+        # If the text can be treated as a title, use it verbatim.
+        # Otherwise, pull the titles from the links table
+        $dp = Title::newFromText($dMsgText);
+        if( $dp ) {
+               if($dp->getNamespace() != NS_TEMPLATE) {
+                       # FIXME we assume the disambiguation message is a template but
+                       # the page can potentially be from another namespace :/
+                       wfDebug("Mediawiki:disambiguationspage message does not refer to a template!\n");
+               }
+            $linkBatch->addObj( $dp );
+        } else {
+            # Get all the templates linked from the Mediawiki:Disambiguationspage
+            $disPageObj = $this->getDisambiguationPageObj();
+                       $res = $dbr->select(
+                               array('pagelinks', 'page'),
+                               'pl_title',
+                               array('page_id = pl_from', 'pl_namespace' => NS_TEMPLATE,
+                      'page_namespace' => $disPageObj->getNamespace(), 'page_title' => $disPageObj->getDBkey()),
+                               'DisambiguationsPage::getSQL' );
+            
+               while ( $row = $dbr->fetchObject( $res ) ) {
+                $linkBatch->addObj( Title::makeTitle( NS_TEMPLATE, $row->pl_title ));
+            }
+               $dbr->freeResult( $res );
+        }
+            
+        $set = $linkBatch->constructSet( 'lb.tl', $dbr );
+        if( $set === false ) {
+            $set = 'FALSE';  # We must always return a valid sql query, but this way DB will always quicly return an empty result
+            wfDebug("Mediawiki:disambiguationspage message does not link to any templates!\n");
+        }
+        
+        $sql = "SELECT 'Disambiguations' AS \"type\", pa.page_namespace AS namespace,"
+             ." pa.page_title AS title, la.pl_from AS value"
+             ." FROM {$templatelinks} AS lb, {$page} AS pa, {$pagelinks} AS la"
+             ." WHERE " . $set   # disambiguation template(s)
+             .' AND pa.page_id = lb.tl_from'
+             .' AND pa.page_namespace = la.pl_namespace'
+             .' AND pa.page_title = la.pl_title';
+
+        return $sql;
        }
 
        function getOrder() {