From 2fbdf9537f387f648a148dd9b27248249fc12067 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Wed, 28 Jun 2006 15:45:50 +0000 Subject: [PATCH] * (bug 3278) Paging links in Special:Prefixindex --- RELEASE-NOTES | 1 + includes/SpecialPrefixindex.php | 29 +++++++++++++++++++---------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bbfd8787e9..04eb962c90 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -587,6 +587,7 @@ Some default configuration options have changed: * Save null edit when importing pages through Special:Import * Update to Korean translation (ko) * Show a more specific message when an anonymous user tries to access Special:Watchlist +* (bug 3278) Paging links in Special:Prefixindex == Compatibility == diff --git a/includes/SpecialPrefixindex.php b/includes/SpecialPrefixindex.php index 1dea72a0b1..5988560e1e 100644 --- a/includes/SpecialPrefixindex.php +++ b/includes/SpecialPrefixindex.php @@ -16,6 +16,7 @@ function wfSpecialPrefixIndex( $par=NULL, $specialPage ) { # GET values $from = $wgRequest->getVal( 'from' ); + $prefix = $wgRequest->getVal( 'prefix' ); $namespace = $wgRequest->getInt( 'namespace' ); $namespaces = $wgContLang->getNamespaces(); @@ -31,12 +32,15 @@ function wfSpecialPrefixIndex( $par=NULL, $specialPage ) { ); + if ( isset($par) ) { - $indexPage->showChunk( $namespace, $par, $specialPage->including() ); + $indexPage->showChunk( $namespace, $par, $specialPage->including(), $from ); + } elseif ( isset($prefix) ) { + $indexPage->showChunk( $namespace, $prefix, $specialPage->including(), $from ); } elseif ( isset($from) ) { - $indexPage->showChunk( $namespace, $from, $specialPage->including() ); + $indexPage->showChunk( $namespace, $from, $specialPage->including(), $from ); } else { - $wgOut->addHtml($indexPage->namespaceForm ( $namespace, $from )); + $wgOut->addHtml($indexPage->namespaceForm ( $namespace, null )); } } @@ -51,18 +55,21 @@ class SpecialPrefixindex extends SpecialAllpages { * @param integer $namespace (Default NS_MAIN) * @param string $from list all pages from this name (default FALSE) */ -function showChunk( $namespace = NS_MAIN, $from, $including = false ) { +function showChunk( $namespace = NS_MAIN, $prefix, $including = false, $from = null ) { global $wgOut, $wgUser, $wgContLang; $fname = 'indexShowChunk'; $sk = $wgUser->getSkin(); - $fromTitle = Title::newFromURL( $from ); - if ($namespace == NS_MAIN and $fromTitle) { - $namespace = $fromTitle->getNamespace(); + $prefixTitle = Title::newFromURL( $prefix ); + if ($namespace == NS_MAIN and $prefixTitle) { + $namespace = $prefixTitle->getNamespace(); } + $prefixKey = is_null( $prefixTitle ) ? '' : $prefixTitle->getDBkey(); + if (!isset($from)) $from = $prefix; + $fromTitle = Title::newFromURL( $from ); $fromKey = is_null( $fromTitle ) ? '' : $fromTitle->getDBkey(); $dbr =& wfGetDB( DB_SLAVE ); @@ -71,7 +78,8 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) { array( 'page_namespace', 'page_title', 'page_is_redirect' ), array( 'page_namespace' => $namespace, - 'page_title LIKE \'' . $dbr->escapeLike( $fromKey ) .'%\'' + 'page_title LIKE \'' . $dbr->escapeLike( $prefixKey ) .'%\'', + 'page_title >= ' . $dbr->addQuotes( $fromKey ), ), $fname, array( @@ -113,7 +121,7 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) { if ( $including ) { $out2 = ''; } else { - $nsForm = $this->namespaceForm ( $namespace, $from ); + $nsForm = $this->namespaceForm ( $namespace, $prefix ); $out2 = ''; $out2 .= '
' . $nsForm; $out2 .= '' . @@ -124,7 +132,8 @@ function showChunk( $namespace = NS_MAIN, $from, $including = false ) { $out2 .= " | " . $sk->makeKnownLink( $wgContLang->specialPage( $this->name ), wfMsg ( 'nextpage', $s->page_title ), - "from=" . wfUrlEncode ( $s->page_title ) . $namespaceparam ); + "from=" . wfUrlEncode ( $s->page_title ) . + "&prefix=" . wfUrlEncode ( $prefix ) . $namespaceparam ); } $out2 .= "

"; } -- 2.20.1