From 5ec2f4d02de4e0a8b0655e13e6ef3f2c5656502e Mon Sep 17 00:00:00 2001 From: Rob Church Date: Thu, 29 Jun 2006 13:28:19 +0000 Subject: [PATCH] * (bug 6489) Use appropriate link colour on Special:Shortpages --- RELEASE-NOTES | 1 + includes/SpecialShortpages.php | 32 +++++++++++++++++++++++++------- 2 files changed, 26 insertions(+), 7 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index df8a8b1f71..f9baa05b86 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -600,6 +600,7 @@ Some default configuration options have changed: * (bug 6484) Don't do message transformations when preloading messages for editing * (bug 6201) Treat spaces as underscores in parameters to {{ns:}} * (bug 6006) Allow hiding the password change fields using an authentication plugin +* (bug 6489) Use appropriate link colour on Special:Shortpages == Compatibility == diff --git a/includes/SpecialShortpages.php b/includes/SpecialShortpages.php index d1592c4647..d8e13c7b35 100644 --- a/includes/SpecialShortpages.php +++ b/includes/SpecialShortpages.php @@ -43,19 +43,37 @@ class ShortPagesPage extends QueryPage { WHERE page_namespace=".NS_MAIN." AND page_is_redirect=0"; } + function preprocessResults( &$dbo, $res ) { + # There's no point doing a batch check if we aren't caching results; + # the page must exist for it to have been pulled out of the table + if( $this->isCached() ) { + $batch = new LinkBatch(); + while( $row = $dbo->fetchObject( $res ) ) + $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) ); + $batch->execute(); + if( $dbo->numRows( $res ) > 0 ) + $dbo->dataSeek( $res, 0 ); + } + } + function sortDescending() { return false; } function formatResult( $skin, $result ) { global $wgLang, $wgContLang; - $nb = wfMsgExt( 'nbytes', array('parsemag', 'escape'), $wgLang->formatNum( $result->value ) ); - $title = Title::makeTitle( $result->namespace, $result->title ); - $link = $skin->makeKnownLinkObj( $title, htmlspecialchars( $wgContLang->convert( $title->getPrefixedText() ) ) ); - $histlink = $skin->makeKnownLinkObj( $title, wfMsgHtml('hist'), 'action=history' ); - $dirmark = $wgContLang->getDirMark(); - - return "({$histlink}) {$dirmark}$link {$dirmark}({$nb})"; + $dm = $wgContLang->getDirMark(); + + $title = Title::makeTitleSafe( $result->namespace, $result->title ); + $hlink = $skin->makeKnownLinkObj( $title, wfMsgHtml( 'hist' ), 'action=history' ); + $plink = $this->isCached() + ? $skin->makeLinkObj( $title ) + : $skin->makeKnownLinkObj( $title ); + $size = wfMsgHtml( 'nbytes', $wgLang->formatNum( htmlspecialchars( $result->value ) ) ); + + return $title->exists() + ? "({$hlink}) {$dm}{$plink} {$dm}[{$size}]" + : "({$hlink}) {$dm}{$plink} {$dm}[{$size}]"; } } -- 2.20.1