diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
commit | 396b28f3d881f5debd888ba9bb9b47c2d478a76f (patch) | |
tree | 10d6e1a721ee4ef69def34a57f02d7eb3fc9e31e /includes/SpecialWithoutinterwiki.php | |
parent | 0be4d3ccf6c4fe98a72704f9463ecdea2ee5e615 (diff) |
update to Mediawiki 1.13.3; some cleanups
Diffstat (limited to 'includes/SpecialWithoutinterwiki.php')
-rw-r--r-- | includes/SpecialWithoutinterwiki.php | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/includes/SpecialWithoutinterwiki.php b/includes/SpecialWithoutinterwiki.php deleted file mode 100644 index 37d9a282..00000000 --- a/includes/SpecialWithoutinterwiki.php +++ /dev/null @@ -1,93 +0,0 @@ -<?php - -/** - * Special page lists pages without language links - * - * @package MediaWiki - * @addtogroup SpecialPage - * @author Rob Church <robchur@gmail.com> - */ -class WithoutInterwikiPage extends PageQueryPage { - private $prefix = ''; - - function getName() { - return 'Withoutinterwiki'; - } - - function getPageHeader() { - global $wgScript, $wgContLang; - $prefix = $this->prefix; - $t = SpecialPage::getTitleFor( $this->getName() ); - $align = $wgContLang->isRtl() ? 'left' : 'right'; - - $s = '<p>' . wfMsgExt( 'withoutinterwiki-header', array( 'parseinline' ) ) . '</p>'; - $s .= Xml::openElement( 'div', array( 'class' => 'namespaceoptions' ) ); - $s .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ); - $s .= Xml::hidden( 'title', $t->getPrefixedText() ); - $s .= Xml::openElement( 'table', array( 'id' => 'nsselect', 'class' => 'withoutinterwiki' ) ); - $s .= "<tr> - <td align='$align'>" . - Xml::label( wfMsg( 'allpagesprefix' ), 'wiprefix' ) . - "</td> - <td>" . - Xml::input( 'prefix', 20, htmlspecialchars ( $prefix ), array( 'id' => 'wiprefix' ) ) . - "</td> - </tr> - <tr> - <td align='$align'></td> - <td>" . - Xml::submitButton( wfMsgHtml( 'withoutinterwiki-submit' ) ) . - "</td> - </tr>"; - $s .= Xml::closeElement( 'table' ); - $s .= Xml::closeElement( 'form' ); - $s .= Xml::closeElement( 'div' ); - return $s; - } - - function sortDescending() { - return false; - } - - function isExpensive() { - return true; - } - - function isSyndicated() { - return false; - } - - function getSQL() { - $dbr = wfGetDB( DB_SLAVE ); - list( $page, $langlinks ) = $dbr->tableNamesN( 'page', 'langlinks' ); - $prefix = $this->prefix ? "AND page_title LIKE '" . $dbr->escapeLike( $this->prefix ) . "%'" : ''; - return - "SELECT 'Withoutinterwiki' AS type, - page_namespace AS namespace, - page_title AS title, - page_title AS value - FROM $page - LEFT JOIN $langlinks - ON ll_from = page_id - WHERE ll_title IS NULL - AND page_namespace=" . NS_MAIN . " - AND page_is_redirect = 0 - {$prefix}"; - } - - function setPrefix( $prefix = '' ) { - $this->prefix = $prefix; - } - -} - -function wfSpecialWithoutinterwiki() { - global $wgRequest; - list( $limit, $offset ) = wfCheckLimits(); - $prefix = $wgRequest->getVal( 'prefix' ); - $wip = new WithoutInterwikiPage(); - $wip->setPrefix( $prefix ); - $wip->doQuery( $offset, $limit ); -} - - |