From: Reedy Date: Mon, 16 Jun 2014 17:36:04 +0000 (+0100) Subject: Rename SpecialAllpages to SpecialAllPages X-Git-Tag: 1.31.0-rc.0~15362^2 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=a161ea79a261ff80b4cfb79fe920bece5863cc79;p=lhc%2Fweb%2Fwiklou.git Rename SpecialAllpages to SpecialAllPages Change-Id: Ic137bc7adbc4a9ed96448ba0fee4807b67b3112d --- diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index e7411a42a3..fc982a2059 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -982,7 +982,7 @@ $wgAutoloadLocalClasses = array( 'SpecialActiveUsers' => 'includes/specials/SpecialActiveusers.php', 'SpecialAllmessages' => 'includes/specials/SpecialAllmessages.php', 'SpecialAllMyUploads' => 'includes/specials/SpecialMyRedirectPages.php', - 'SpecialAllpages' => 'includes/specials/SpecialAllpages.php', + 'SpecialAllPages' => 'includes/specials/SpecialAllPages.php', 'SpecialBlankpage' => 'includes/specials/SpecialBlankpage.php', 'SpecialBlock' => 'includes/specials/SpecialBlock.php', 'SpecialBlockList' => 'includes/specials/SpecialBlockList.php', diff --git a/includes/specials/SpecialAllPages.php b/includes/specials/SpecialAllPages.php new file mode 100644 index 0000000000..17e080f83e --- /dev/null +++ b/includes/specials/SpecialAllPages.php @@ -0,0 +1,396 @@ +getRequest(); + $out = $this->getOutput(); + + $this->setHeaders(); + $this->outputHeader(); + $out->allowClickjacking(); + + # GET values + $from = $request->getVal( 'from', null ); + $to = $request->getVal( 'to', null ); + $namespace = $request->getInt( 'namespace' ); + $hideredirects = $request->getBool( 'hideredirects', false ); + + $namespaces = $this->getContext()->getLanguage()->getNamespaces(); + + $out->setPageTitle( + ( $namespace > 0 && array_key_exists( $namespace, $namespaces ) ) ? + $this->msg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) : + $this->msg( 'allarticles' ) + ); + $out->addModuleStyles( 'mediawiki.special' ); + + if ( $par !== null ) { + $this->showChunk( $namespace, $par, $to, $hideredirects ); + } elseif ( $from !== null && $to === null ) { + $this->showChunk( $namespace, $from, $to, $hideredirects ); + } else { + $this->showToplevel( $namespace, $from, $to, $hideredirects ); + } + } + + /** + * HTML for the top form + * + * @param int $namespace A namespace constant (default NS_MAIN). + * @param string $from DbKey we are starting listing at. + * @param string $to DbKey we are ending listing at. + * @param bool $hideredirects Dont show redirects (default false) + * @return string + */ + function namespaceForm( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) { + global $wgScript; + $t = $this->getPageTitle(); + + $out = Xml::openElement( 'div', array( 'class' => 'namespaceoptions' ) ); + $out .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ); + $out .= Html::hidden( 'title', $t->getPrefixedText() ); + $out .= Xml::openElement( 'fieldset' ); + $out .= Xml::element( 'legend', null, $this->msg( 'allpages' )->text() ); + $out .= Xml::openElement( 'table', array( 'id' => 'nsselect', 'class' => 'allpages' ) ); + $out .= " + " . + Xml::label( $this->msg( 'allpagesfrom' )->text(), 'nsfrom' ) . + " + " . + Xml::input( 'from', 30, str_replace( '_', ' ', $from ), array( 'id' => 'nsfrom' ) ) . + " + + + " . + Xml::label( $this->msg( 'allpagesto' )->text(), 'nsto' ) . + " + " . + Xml::input( 'to', 30, str_replace( '_', ' ', $to ), array( 'id' => 'nsto' ) ) . + " + + + " . + Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) . + " + " . + Html::namespaceSelector( + array( 'selected' => $namespace ), + array( 'name' => 'namespace', 'id' => 'namespace' ) + ) . ' ' . + Xml::checkLabel( + $this->msg( 'allpages-hide-redirects' )->text(), + 'hideredirects', + 'hideredirects', + $hideredirects + ) . ' ' . + Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) . + " +"; + $out .= Xml::closeElement( 'table' ); + $out .= Xml::closeElement( 'fieldset' ); + $out .= Xml::closeElement( 'form' ); + $out .= Xml::closeElement( 'div' ); + + return $out; + } + + /** + * @param int $namespace (default NS_MAIN) + * @param string $from List all pages from this name + * @param string $to List all pages to this name + * @param bool $hideredirects Dont show redirects (default false) + */ + function showToplevel( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) { + $from = Title::makeTitleSafe( $namespace, $from ); + $to = Title::makeTitleSafe( $namespace, $to ); + $from = ( $from && $from->isLocal() ) ? $from->getDBkey() : null; + $to = ( $to && $to->isLocal() ) ? $to->getDBkey() : null; + + $this->showChunk( $namespace, $from, $to, $hideredirects ); + } + + /** + * @param int $namespace Namespace (Default NS_MAIN) + * @param string $from List all pages from this name (default false) + * @param string $to List all pages to this name (default false) + * @param bool $hideredirects Dont show redirects (default false) + */ + function showChunk( $namespace = NS_MAIN, $from = false, $to = false, $hideredirects = false ) { + $output = $this->getOutput(); + + $fromList = $this->getNamespaceKeyAndText( $namespace, $from ); + $toList = $this->getNamespaceKeyAndText( $namespace, $to ); + $namespaces = $this->getContext()->getLanguage()->getNamespaces(); + $n = 0; + + if ( !$fromList || !$toList ) { + $out = $this->msg( 'allpagesbadtitle' )->parseAsBlock(); + } elseif ( !array_key_exists( $namespace, $namespaces ) ) { + // Show errormessage and reset to NS_MAIN + $out = $this->msg( 'allpages-bad-ns', $namespace )->parse(); + $namespace = NS_MAIN; + } else { + list( $namespace, $fromKey, $from ) = $fromList; + list( , $toKey, $to ) = $toList; + + $dbr = wfGetDB( DB_SLAVE ); + $conds = array( + 'page_namespace' => $namespace, + 'page_title >= ' . $dbr->addQuotes( $fromKey ) + ); + + if ( $hideredirects ) { + $conds['page_is_redirect'] = 0; + } + + if ( $toKey !== "" ) { + $conds[] = 'page_title <= ' . $dbr->addQuotes( $toKey ); + } + + $res = $dbr->select( 'page', + array( 'page_namespace', 'page_title', 'page_is_redirect', 'page_id' ), + $conds, + __METHOD__, + array( + 'ORDER BY' => 'page_title', + 'LIMIT' => $this->maxPerPage + 1, + 'USE INDEX' => 'name_title', + ) + ); + + if ( $res->numRows() > 0 ) { + $out = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-chunk' ) ); + while ( ( $n < $this->maxPerPage ) && ( $s = $res->fetchObject() ) ) { + $t = Title::newFromRow( $s ); + if ( $t ) { + $link = ( $s->page_is_redirect ? '
' : '' ) . + Linker::link( $t ) . + ( $s->page_is_redirect ? '
' : '' ); + } else { + $link = '[[' . htmlspecialchars( $s->page_title ) . ']]'; + } + + if ( $n % 3 == 0 ) { + $out .= ''; + } + + $out .= "$link"; + $n++; + if ( $n % 3 == 0 ) { + $out .= "\n"; + } + } + + if ( ( $n % 3 ) != 0 ) { + $out .= "\n"; + } + $out .= Xml::closeElement( 'table' ); + } else { + $out = ''; + } + } + + if ( $this->including() ) { + $output->addHTML( $out ); + return; + } + + if ( $from == '' ) { + // First chunk; no previous link. + $prevTitle = null; + } else { + # Get the last title from previous chunk + $dbr = wfGetDB( DB_SLAVE ); + $res_prev = $dbr->select( + 'page', + 'page_title', + array( 'page_namespace' => $namespace, 'page_title < ' . $dbr->addQuotes( $from ) ), + __METHOD__, + array( 'ORDER BY' => 'page_title DESC', + 'LIMIT' => $this->maxPerPage, 'OFFSET' => ( $this->maxPerPage - 1 ) + ) + ); + + # Get first title of previous complete chunk + if ( $dbr->numrows( $res_prev ) >= $this->maxPerPage ) { + $pt = $dbr->fetchObject( $res_prev ); + $prevTitle = Title::makeTitle( $namespace, $pt->page_title ); + } else { + # The previous chunk is not complete, need to link to the very first title + # available in the database + $options = array( 'LIMIT' => 1 ); + if ( !$dbr->implicitOrderby() ) { + $options['ORDER BY'] = 'page_title'; + } + $reallyFirstPage_title = $dbr->selectField( 'page', 'page_title', + array( 'page_namespace' => $namespace ), __METHOD__, $options ); + # Show the previous link if it s not the current requested chunk + if ( $from != $reallyFirstPage_title ) { + $prevTitle = Title::makeTitle( $namespace, $reallyFirstPage_title ); + } else { + $prevTitle = null; + } + } + } + + $self = $this->getPageTitle(); + + $topLinks = array( + Linker::link( $self, $this->msg( 'allpages' )->escaped() ) + ); + $bottomLinks = array(); + + # Do we put a previous link ? + if ( $prevTitle && $pt = $prevTitle->getText() ) { + $query = array( 'from' => $prevTitle->getText() ); + + if ( $namespace ) { + $query['namespace'] = $namespace; + } + + if ( $hideredirects ) { + $query['hideredirects'] = $hideredirects; + } + + $prevLink = Linker::linkKnown( + $self, + $this->msg( 'prevpage', $pt )->escaped(), + array(), + $query + ); + $topLinks[] = $prevLink; + $bottomLinks[] = $prevLink; + } + + if ( $n == $this->maxPerPage && $s = $res->fetchObject() ) { + # $s is the first link of the next chunk + $t = Title::makeTitle( $namespace, $s->page_title ); + $query = array( 'from' => $t->getText() ); + + if ( $namespace ) { + $query['namespace'] = $namespace; + } + + if ( $hideredirects ) { + $query['hideredirects'] = $hideredirects; + } + + $nextLink = Linker::linkKnown( + $self, + $this->msg( 'nextpage', $t->getText() )->escaped(), + array(), + $query + ); + $topLinks[] = $nextLink; + $bottomLinks[] = $nextLink; + } + + $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects ); + $out2 = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) . + ' + ' . + $nsForm . + ' + ' . + $this->getLanguage()->pipeList( $topLinks ) . + ''; + + $output->addHTML( $out2 . $out ); + + if ( count( $bottomLinks ) ) { + $output->addHTML( + Html::element( 'hr' ) . + Html::rawElement( 'div', array( 'class' => 'mw-allpages-nav' ), + $this->getLanguage()->pipeList( $bottomLinks ) + ) + ); + } + } + + /** + * @param int $ns The namespace of the article + * @param string $text The name of the article + * @return array( int namespace, string dbkey, string pagename ) or null on error + */ + protected function getNamespaceKeyAndText( $ns, $text ) { + if ( $text == '' ) { + # shortcut for common case + return array( $ns, '', '' ); + } + + $t = Title::makeTitleSafe( $ns, $text ); + if ( $t && $t->isLocal() ) { + return array( $t->getNamespace(), $t->getDBkey(), $t->getText() ); + } elseif ( $t ) { + return null; + } + + # try again, in case the problem was an empty pagename + $text = preg_replace( '/(#|$)/', 'X$1', $text ); + $t = Title::makeTitleSafe( $ns, $text ); + if ( $t && $t->isLocal() ) { + return array( $t->getNamespace(), '', '' ); + } else { + return null; + } + } + + protected function getGroupName() { + return 'pages'; + } +} diff --git a/includes/specials/SpecialAllpages.php b/includes/specials/SpecialAllpages.php deleted file mode 100644 index 0490d82b6d..0000000000 --- a/includes/specials/SpecialAllpages.php +++ /dev/null @@ -1,396 +0,0 @@ -getRequest(); - $out = $this->getOutput(); - - $this->setHeaders(); - $this->outputHeader(); - $out->allowClickjacking(); - - # GET values - $from = $request->getVal( 'from', null ); - $to = $request->getVal( 'to', null ); - $namespace = $request->getInt( 'namespace' ); - $hideredirects = $request->getBool( 'hideredirects', false ); - - $namespaces = $this->getContext()->getLanguage()->getNamespaces(); - - $out->setPageTitle( - ( $namespace > 0 && array_key_exists( $namespace, $namespaces ) ) ? - $this->msg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) : - $this->msg( 'allarticles' ) - ); - $out->addModuleStyles( 'mediawiki.special' ); - - if ( $par !== null ) { - $this->showChunk( $namespace, $par, $to, $hideredirects ); - } elseif ( $from !== null && $to === null ) { - $this->showChunk( $namespace, $from, $to, $hideredirects ); - } else { - $this->showToplevel( $namespace, $from, $to, $hideredirects ); - } - } - - /** - * HTML for the top form - * - * @param int $namespace A namespace constant (default NS_MAIN). - * @param string $from DbKey we are starting listing at. - * @param string $to DbKey we are ending listing at. - * @param bool $hideredirects Dont show redirects (default false) - * @return string - */ - function namespaceForm( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) { - global $wgScript; - $t = $this->getPageTitle(); - - $out = Xml::openElement( 'div', array( 'class' => 'namespaceoptions' ) ); - $out .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) ); - $out .= Html::hidden( 'title', $t->getPrefixedText() ); - $out .= Xml::openElement( 'fieldset' ); - $out .= Xml::element( 'legend', null, $this->msg( 'allpages' )->text() ); - $out .= Xml::openElement( 'table', array( 'id' => 'nsselect', 'class' => 'allpages' ) ); - $out .= " - " . - Xml::label( $this->msg( 'allpagesfrom' )->text(), 'nsfrom' ) . - " - " . - Xml::input( 'from', 30, str_replace( '_', ' ', $from ), array( 'id' => 'nsfrom' ) ) . - " - - - " . - Xml::label( $this->msg( 'allpagesto' )->text(), 'nsto' ) . - " - " . - Xml::input( 'to', 30, str_replace( '_', ' ', $to ), array( 'id' => 'nsto' ) ) . - " - - - " . - Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) . - " - " . - Html::namespaceSelector( - array( 'selected' => $namespace ), - array( 'name' => 'namespace', 'id' => 'namespace' ) - ) . ' ' . - Xml::checkLabel( - $this->msg( 'allpages-hide-redirects' )->text(), - 'hideredirects', - 'hideredirects', - $hideredirects - ) . ' ' . - Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) . - " -"; - $out .= Xml::closeElement( 'table' ); - $out .= Xml::closeElement( 'fieldset' ); - $out .= Xml::closeElement( 'form' ); - $out .= Xml::closeElement( 'div' ); - - return $out; - } - - /** - * @param int $namespace (default NS_MAIN) - * @param string $from List all pages from this name - * @param string $to List all pages to this name - * @param bool $hideredirects Dont show redirects (default false) - */ - function showToplevel( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) { - $from = Title::makeTitleSafe( $namespace, $from ); - $to = Title::makeTitleSafe( $namespace, $to ); - $from = ( $from && $from->isLocal() ) ? $from->getDBkey() : null; - $to = ( $to && $to->isLocal() ) ? $to->getDBkey() : null; - - $this->showChunk( $namespace, $from, $to, $hideredirects ); - } - - /** - * @param int $namespace Namespace (Default NS_MAIN) - * @param string $from List all pages from this name (default false) - * @param string $to List all pages to this name (default false) - * @param bool $hideredirects Dont show redirects (default false) - */ - function showChunk( $namespace = NS_MAIN, $from = false, $to = false, $hideredirects = false ) { - $output = $this->getOutput(); - - $fromList = $this->getNamespaceKeyAndText( $namespace, $from ); - $toList = $this->getNamespaceKeyAndText( $namespace, $to ); - $namespaces = $this->getContext()->getLanguage()->getNamespaces(); - $n = 0; - - if ( !$fromList || !$toList ) { - $out = $this->msg( 'allpagesbadtitle' )->parseAsBlock(); - } elseif ( !array_key_exists( $namespace, $namespaces ) ) { - // Show errormessage and reset to NS_MAIN - $out = $this->msg( 'allpages-bad-ns', $namespace )->parse(); - $namespace = NS_MAIN; - } else { - list( $namespace, $fromKey, $from ) = $fromList; - list( , $toKey, $to ) = $toList; - - $dbr = wfGetDB( DB_SLAVE ); - $conds = array( - 'page_namespace' => $namespace, - 'page_title >= ' . $dbr->addQuotes( $fromKey ) - ); - - if ( $hideredirects ) { - $conds['page_is_redirect'] = 0; - } - - if ( $toKey !== "" ) { - $conds[] = 'page_title <= ' . $dbr->addQuotes( $toKey ); - } - - $res = $dbr->select( 'page', - array( 'page_namespace', 'page_title', 'page_is_redirect', 'page_id' ), - $conds, - __METHOD__, - array( - 'ORDER BY' => 'page_title', - 'LIMIT' => $this->maxPerPage + 1, - 'USE INDEX' => 'name_title', - ) - ); - - if ( $res->numRows() > 0 ) { - $out = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-chunk' ) ); - while ( ( $n < $this->maxPerPage ) && ( $s = $res->fetchObject() ) ) { - $t = Title::newFromRow( $s ); - if ( $t ) { - $link = ( $s->page_is_redirect ? '
' : '' ) . - Linker::link( $t ) . - ( $s->page_is_redirect ? '
' : '' ); - } else { - $link = '[[' . htmlspecialchars( $s->page_title ) . ']]'; - } - - if ( $n % 3 == 0 ) { - $out .= ''; - } - - $out .= "$link"; - $n++; - if ( $n % 3 == 0 ) { - $out .= "\n"; - } - } - - if ( ( $n % 3 ) != 0 ) { - $out .= "\n"; - } - $out .= Xml::closeElement( 'table' ); - } else { - $out = ''; - } - } - - if ( $this->including() ) { - $output->addHTML( $out ); - return; - } - - if ( $from == '' ) { - // First chunk; no previous link. - $prevTitle = null; - } else { - # Get the last title from previous chunk - $dbr = wfGetDB( DB_SLAVE ); - $res_prev = $dbr->select( - 'page', - 'page_title', - array( 'page_namespace' => $namespace, 'page_title < ' . $dbr->addQuotes( $from ) ), - __METHOD__, - array( 'ORDER BY' => 'page_title DESC', - 'LIMIT' => $this->maxPerPage, 'OFFSET' => ( $this->maxPerPage - 1 ) - ) - ); - - # Get first title of previous complete chunk - if ( $dbr->numrows( $res_prev ) >= $this->maxPerPage ) { - $pt = $dbr->fetchObject( $res_prev ); - $prevTitle = Title::makeTitle( $namespace, $pt->page_title ); - } else { - # The previous chunk is not complete, need to link to the very first title - # available in the database - $options = array( 'LIMIT' => 1 ); - if ( !$dbr->implicitOrderby() ) { - $options['ORDER BY'] = 'page_title'; - } - $reallyFirstPage_title = $dbr->selectField( 'page', 'page_title', - array( 'page_namespace' => $namespace ), __METHOD__, $options ); - # Show the previous link if it s not the current requested chunk - if ( $from != $reallyFirstPage_title ) { - $prevTitle = Title::makeTitle( $namespace, $reallyFirstPage_title ); - } else { - $prevTitle = null; - } - } - } - - $self = $this->getPageTitle(); - - $topLinks = array( - Linker::link( $self, $this->msg( 'allpages' )->escaped() ) - ); - $bottomLinks = array(); - - # Do we put a previous link ? - if ( $prevTitle && $pt = $prevTitle->getText() ) { - $query = array( 'from' => $prevTitle->getText() ); - - if ( $namespace ) { - $query['namespace'] = $namespace; - } - - if ( $hideredirects ) { - $query['hideredirects'] = $hideredirects; - } - - $prevLink = Linker::linkKnown( - $self, - $this->msg( 'prevpage', $pt )->escaped(), - array(), - $query - ); - $topLinks[] = $prevLink; - $bottomLinks[] = $prevLink; - } - - if ( $n == $this->maxPerPage && $s = $res->fetchObject() ) { - # $s is the first link of the next chunk - $t = Title::makeTitle( $namespace, $s->page_title ); - $query = array( 'from' => $t->getText() ); - - if ( $namespace ) { - $query['namespace'] = $namespace; - } - - if ( $hideredirects ) { - $query['hideredirects'] = $hideredirects; - } - - $nextLink = Linker::linkKnown( - $self, - $this->msg( 'nextpage', $t->getText() )->escaped(), - array(), - $query - ); - $topLinks[] = $nextLink; - $bottomLinks[] = $nextLink; - } - - $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects ); - $out2 = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) . - ' - ' . - $nsForm . - ' - ' . - $this->getLanguage()->pipeList( $topLinks ) . - ''; - - $output->addHTML( $out2 . $out ); - - if ( count( $bottomLinks ) ) { - $output->addHTML( - Html::element( 'hr' ) . - Html::rawElement( 'div', array( 'class' => 'mw-allpages-nav' ), - $this->getLanguage()->pipeList( $bottomLinks ) - ) - ); - } - } - - /** - * @param int $ns The namespace of the article - * @param string $text The name of the article - * @return array( int namespace, string dbkey, string pagename ) or null on error - */ - protected function getNamespaceKeyAndText( $ns, $text ) { - if ( $text == '' ) { - # shortcut for common case - return array( $ns, '', '' ); - } - - $t = Title::makeTitleSafe( $ns, $text ); - if ( $t && $t->isLocal() ) { - return array( $t->getNamespace(), $t->getDBkey(), $t->getText() ); - } elseif ( $t ) { - return null; - } - - # try again, in case the problem was an empty pagename - $text = preg_replace( '/(#|$)/', 'X$1', $text ); - $t = Title::makeTitleSafe( $ns, $text ); - if ( $t && $t->isLocal() ) { - return array( $t->getNamespace(), '', '' ); - } else { - return null; - } - } - - protected function getGroupName() { - return 'pages'; - } -} diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index 34e803d7e2..2a1bf11fe2 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -26,7 +26,7 @@ * * @ingroup SpecialPage */ -class SpecialPrefixindex extends SpecialAllpages { +class SpecialPrefixindex extends SpecialAllPages { /** * Whether to remove the searched prefix from the displayed link. Useful