X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FSkin.php;h=9296d2431862b411a369efea2dc86b7ed6f385ad;hb=511ae2aca26da14c0202154731db059e80c750e7;hp=e2e9a3235a5516af6d303a36ac86f2677464e16d;hpb=4ed81df65fc4f626d89a705cf40da23dc4eb8eec;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Skin.php b/includes/Skin.php index e2e9a3235a..9296d24318 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -60,6 +60,21 @@ class Skin extends Linker { } return $wgValidSkinNames; } + + /** + * Fetch the list of usable skins in regards to $wgSkipSkins. + * Useful for Special:Preferences and other places where you + * only want to show skins users _can_ use. + * @return array of strings + */ + public static function getUsableSkins() { + global $wgSkipSkins; + $usableSkins = self::getSkinNames(); + foreach ( $wgSkipSkins as $skip ) { + unset( $usableSkins[$skip] ); + } + return $usableSkins; + } /** * Normalize a skin preference value to a form that can be loaded. @@ -156,8 +171,8 @@ class Skin extends Linker { return $q; } - function initPage( &$out ) { - global $wgFavicon, $wgAppleTouchIcon, $wgScriptPath, $wgScriptExtension; + function initPage( OutputPage $out ) { + global $wgFavicon, $wgAppleTouchIcon; wfProfileIn( __METHOD__ ); @@ -173,7 +188,7 @@ class Skin extends Linker { $out->addLink( array( 'rel' => 'search', 'type' => 'application/opensearchdescription+xml', - 'href' => "$wgScriptPath/opensearch_desc{$wgScriptExtension}", + 'href' => wfScript( 'opensearch_desc' ), 'title' => wfMsgForContent( 'opensearch-desc' ), )); @@ -208,7 +223,7 @@ class Skin extends Linker { $lb->execute(); } - function addMetadataLinks( &$out ) { + function addMetadataLinks( OutputPage $out ) { global $wgTitle, $wgEnableDublinCoreRdf, $wgEnableCreativeCommonsRdf; global $wgRightsPage, $wgRightsUrl; @@ -244,13 +259,25 @@ class Skin extends Linker { } } - function outputPage( &$out ) { - global $wgDebugComments; + function setMembers(){ + global $wgTitle, $wgUser; + $this->mTitle = $wgTitle; + $this->mUser = $wgUser; + $this->userpage = $wgUser->getUserPage()->getPrefixedText(); + $this->usercss = false; + } + function outputPage( OutputPage $out ) { + global $wgDebugComments; wfProfileIn( __METHOD__ ); + + $this->setMembers(); $this->initPage( $out ); - $out->out( $out->headElement() ); + // See self::afterContentHook() for documentation + $afterContent = $this->afterContentHook(); + + $out->out( $out->headElement( $this ) ); $out->out( "\ngetBodyOptions(); @@ -268,6 +295,8 @@ class Skin extends Linker { $out->out( $out->mBodytext . "\n" ); $out->out( $this->afterContent() ); + + $out->out( $afterContent ); $out->out( $this->bottomScripts() ); @@ -280,14 +309,14 @@ class Skin extends Linker { static function makeVariablesScript( $data ) { global $wgJsMimeType; - $r = "\n"; + $r[] = "/*]]>*/\n"; - return $r; + return implode( "\n\t\t", $r ); } /** @@ -316,7 +345,7 @@ class Skin extends Linker { 'wgScriptPath' => $wgScriptPath, 'wgScript' => $wgScript, 'wgVariantArticlePath' => $wgVariantArticlePath, - 'wgActionPaths' => $wgActionPaths, + 'wgActionPaths' => (object)$wgActionPaths, 'wgServer' => $wgServer, 'wgCanonicalNamespace' => $nsname, 'wgCanonicalSpecialPageName' => SpecialPage::resolveAlias( $wgTitle->getDBkey() ), @@ -362,32 +391,34 @@ class Skin extends Linker { $vars['wgAjaxWatch'] = $msgs; } + wfRunHooks('MakeGlobalVariablesScript', array(&$vars)); + return self::makeVariablesScript( $vars ); } function getHeadScripts( $allowUserJs ) { global $wgStylePath, $wgUser, $wgJsMimeType, $wgStyleVersion; - $r = self::makeGlobalVariablesScript( array( 'skinname' => $this->getSkinName() ) ); + $vars = self::makeGlobalVariablesScript( array( 'skinname' => $this->getSkinName() ) ); - $r .= "\n"; + $r = array( "" ); global $wgUseSiteJs; if ($wgUseSiteJs) { $jsCache = $wgUser->isLoggedIn() ? '&smaxage=0' : ''; - $r .= "\n"; + "\">"; } if( $allowUserJs && $wgUser->isLoggedIn() ) { $userpage = $wgUser->getUserPage(); $userjs = htmlspecialchars( self::makeUrl( $userpage->getPrefixedText().'/'.$this->getSkinName().'.js', 'action=raw&ctype='.$wgJsMimeType)); - $r .= '\n"; + $r[] = '"; } - return $r; + return $vars . "\t\t" . implode ( "\n\t\t", $r ); } /** @@ -414,38 +445,24 @@ class Skin extends Linker { $wgRequest->getVal( 'wpEditToken' ) ); } - # get the user/site-specific stylesheet, SkinTemplate loads via RawPage.php (settings are cached that way) - function getUserStylesheet() { - global $wgStylePath, $wgRequest, $wgContLang, $wgSquidMaxage, $wgStyleVersion; - $sheet = $this->getStylesheet(); - $s = "@import \"$wgStylePath/common/shared.css?$wgStyleVersion\";\n"; - $s .= "@import \"$wgStylePath/common/oldshared.css?$wgStyleVersion\";\n"; - $s .= "@import \"$wgStylePath/$sheet?$wgStyleVersion\";\n"; - if($wgContLang->isRTL()) $s .= "@import \"$wgStylePath/common/common_rtl.css?$wgStyleVersion\";\n"; - - $query = "usemsgcache=yes&action=raw&ctype=text/css&smaxage=$wgSquidMaxage"; - $s .= '@import "' . self::makeNSUrl( 'Common.css', $query, NS_MEDIAWIKI ) . "\";\n" . - '@import "' . self::makeNSUrl( ucfirst( $this->getSkinName() . '.css' ), $query, NS_MEDIAWIKI ) . "\";\n"; - - $s .= $this->doGetUserStyles(); - return $s."\n"; - } - /** - * This returns MediaWiki:Common.js, and derived classes may add other JS. - * Despite its name, it does *not* return any custom user JS from user - * subpages. The returned script is sitewide and publicly cacheable and - * therefore must not include anything that varies according to user, - * interface language, etc. (although it may vary by skin). See - * makeGlobalVariablesScript for things that can vary per page view and are - * not cacheable. + * generated JavaScript action=raw&gen=js + * This returns MediaWiki:Common.js and MediaWiki:[Skinname].js concate- + * nated together. For some bizarre reason, it does *not* return any + * custom user JS from subpages. Huh? + * + * There's absolutely no reason to have separate Monobook/Common JSes. + * Any JS that cares can just check the skin variable generated at the + * top. For now Monobook.js will be maintained, but it should be consi- + * dered deprecated. * - * @return string Raw JavaScript to be returned + * @return string */ - public function getUserJs() { + public function generateUserJs() { + global $wgStylePath; + wfProfileIn( __METHOD__ ); - global $wgStylePath; $s = "/* generated javascript */\n"; $s .= "var skin = '" . Xml::escapeJsString( $this->getSkinName() ) . "';\n"; $s .= "var stylepath = '" . Xml::escapeJsString( $wgStylePath ) . "';"; @@ -454,45 +471,35 @@ class Skin extends Linker { if ( !wfEmptyMsg ( 'common.js', $commonJs ) ) { $s .= $commonJs; } + + $s .= "\n\n/* MediaWiki:".ucfirst( $this->getSkinName() ).".js */\n"; + // avoid inclusion of non defined user JavaScript (with custom skins only) + // by checking for default message content + $msgKey = ucfirst( $this->getSkinName() ).'.js'; + $userJS = wfMsgForContent($msgKey); + if ( !wfEmptyMsg( $msgKey, $userJS ) ) { + $s .= $userJS; + } + wfProfileOut( __METHOD__ ); return $s; } /** - * Return html code that include User stylesheets + * generate user stylesheet for action=raw&gen=css */ - function getUserStyles() { - $s = "\n"; + public function generateUserStylesheet() { + wfProfileIn( __METHOD__ ); + $s = "/* generated user stylesheet */\n" . + $this->reallyGenerateUserStylesheet(); + wfProfileOut( __METHOD__ ); return $s; } - + /** - * Some styles that are set by user through the user settings interface. + * Split for easier subclassing in SkinSimple, SkinStandard and SkinCologneBlue */ - function doGetUserStyles() { - global $wgUser, $wgUser, $wgRequest, $wgTitle, $wgAllowUserCss; - - $s = ''; - - if( $wgAllowUserCss && $wgUser->isLoggedIn() ) { # logged in - if($wgTitle->isCssSubpage() && $this->userCanPreview( $wgRequest->getText( 'action' ) ) ) { - $s .= $wgRequest->getText('wpTextbox1'); - } else { - $userpage = $wgUser->getUserPage(); - $s.= '@import "'.self::makeUrl( - $userpage->getPrefixedText().'/'.$this->getSkinName().'.css', - 'action=raw&ctype=text/css').'";'."\n"; - } - } - - return $s . $this->reallyDoGetUserStyles(); - } - - function reallyDoGetUserStyles() { + protected function reallyGenerateUserStylesheet(){ global $wgUser; $s = ''; if (($undopt = $wgUser->getOption("underline")) < 2) { @@ -529,6 +536,81 @@ END; return $s; } + /** + * @private + */ + function setupUserCss( OutputPage $out ) { + global $wgRequest, $wgContLang, $wgUser; + global $wgAllowUserCss, $wgUseSiteCss, $wgSquidMaxage, $wgStylePath; + + wfProfileIn( __METHOD__ ); + + $this->setupSkinUserCss( $out ); + + $siteargs = array( + 'action' => 'raw', + 'maxage' => $wgSquidMaxage, + ); + if( $wgUser->isLoggedIn() ) { + // Ensure that logged-in users' generated CSS isn't clobbered + // by anons' publicly cacheable generated CSS. + $siteargs['smaxage'] = '0'; + $siteargs['ts'] = $wgUser->mTouched; + } + + // Add any extension CSS + foreach( $out->getExtStyle() as $tag ) { + $out->addStyle( $tag['href'] ); + } + + // If we use the site's dynamic CSS, throw that in, too + // Per-site custom styles + if( $wgUseSiteCss ) { + $query = wfArrayToCGI( array( + 'usemsgcache' => 'yes', + 'ctype' => 'text/css', + 'smaxage' => $wgSquidMaxage + ) + $siteargs ); + # Site settings must override extension css! (bug 15025) + $out->addStyle( self::makeNSUrl( 'Common.css', $query, NS_MEDIAWIKI) ); + $out->addStyle( self::makeNSUrl( $this->getSkinName() . '.css', $query, NS_MEDIAWIKI ) ); + } + + // Per-user styles based on preferences + $siteargs['gen'] = 'css'; + if( ( $us = $wgRequest->getVal( 'useskin', '' ) ) !== '' ) { + $siteargs['useskin'] = $us; + } + $out->addStyle( self::makeUrl( '-', wfArrayToCGI( $siteargs ) ) ); + + // Per-user custom style pages + if( $wgAllowUserCss && $wgUser->isLoggedIn() ) { + $action = $wgRequest->getVal('action'); + # If we're previewing the CSS page, use it + if( $this->mTitle->isCssSubpage() && $this->userCanPreview( $action ) ) { + $previewCss = $wgRequest->getText('wpTextbox1'); + // @FIXME: properly escape the cdata! + $this->usercss = "/**/"; + } else { + $out->addStyle( self::makeUrl($this->userpage .'/'.$this->getSkinName() .'.css', + 'action=raw&ctype=text/css') ); + } + } + + wfProfileOut( __METHOD__ ); + } + + /** + * Add skin specific stylesheets + * @param $out OutputPage + */ + function setupSkinUserCss( OutputPage $out ) { + $out->addStyle( 'common/shared.css' ); + $out->addStyle( 'common/oldshared.css' ); + $out->addStyle( $this->getStylesheet() ); + $out->addStyle( 'common/common_rtl.css', '', '', 'rtl' ); + } + function getBodyOptions() { global $wgUser, $wgTitle, $wgOut, $wgRequest, $wgContLang; @@ -539,7 +621,7 @@ END; } else $a = array( 'bgcolor' => '#FFFFFF' ); if($wgOut->isArticle() && $wgUser->getOption('editondblclick') && - $wgTitle->userCan( 'edit' ) ) { + $wgTitle->quickUserCan( 'edit' ) ) { $s = $wgTitle->getFullURL( $this->editUrlOptions() ); $s = 'document.location = "' .wfEscapeJSString( $s ) .'";'; $a += array ('ondblclick' => $s); @@ -547,11 +629,25 @@ END; } $a['onload'] = $wgOut->getOnloadHandler(); $a['class'] = - 'mediawiki ns-'.$wgTitle->getNamespace(). - ' '.($wgContLang->isRTL() ? "rtl" : "ltr"). - ' '.Sanitizer::escapeClass( 'page-'.$wgTitle->getPrefixedText() ); + 'mediawiki' . + ' '.( $wgContLang->isRTL() ? "rtl" : "ltr" ). + ' '.$this->getPageClasses( $wgTitle ) . + ' skin-'. Sanitizer::escapeClass( $this->getSkinName( ) ); return $a; } + + function getPageClasses( $title ) { + $numeric = 'ns-'.$title->getNamespace(); + if( $title->getNamespace() == NS_SPECIAL ) { + $type = "ns-special"; + } elseif( $title->isTalkPage() ) { + $type = "ns-talk"; + } else { + $type = "ns-subject"; + } + $name = Sanitizer::escapeClass( 'page-'.$title->getPrefixedText() ); + return "$numeric $type $name"; + } /** * URL to the logo @@ -589,11 +685,11 @@ END; $s .= "\n
\n
\n" . "\n\n"; - $shove = ($qb != 0); - $left = ($qb == 1 || $qb == 3); - if($wgContLang->isRTL()) $left = !$left; + $shove = ( $qb != 0 ); + $left = ( $qb == 1 || $qb == 3 ); + if( $wgContLang->isRTL() ) $left = !$left; - if ( !$shove ) { + if( !$shove ) { $s .= "'; } elseif( $left ) { @@ -655,7 +751,7 @@ END; $msg = wfMsgExt( 'pagecategories', array( 'parsemag', 'escapenoentities' ), count( $allCats['normal'] ) ); $s .= ''; } @@ -676,7 +772,7 @@ END; # optional 'dmoz-like' category browser. Will be shown under the list # of categories an article belong to - if($wgUseCategoryBrowser) { + if( $wgUseCategoryBrowser ){ $s .= '

'; # get a big array of the parents tree @@ -699,7 +795,7 @@ END; * @param &skin Object: skin passed by reference * @return String separated by >, terminate with "\n" */ - function drawCategoryBrowser($tree, &$skin) { + function drawCategoryBrowser( $tree, &$skin ){ $return = ''; foreach ($tree as $element => $parent) { if (empty($parent)) { @@ -710,8 +806,8 @@ END; $return .= Skin::drawCategoryBrowser($parent, $skin) . ' > '; } # add our current element to the list - $eltitle = Title::NewFromText($element); - $return .= $skin->makeLinkObj( $eltitle, $eltitle->getText() ) ; + $eltitle = Title::newFromText($element); + $return .= $skin->link( $eltitle, $eltitle->getText() ) ; } return $return; } @@ -736,8 +832,43 @@ END; } /** - * This gets called shortly before the \ tag. - * @return String HTML to be put before \ + * This runs a hook to allow extensions placing their stuff after content + * and article metadata (e.g. categories). + * Note: This function has nothing to do with afterContent(). + * + * This hook is placed here in order to allow using the same hook for all + * skins, both the SkinTemplate based ones and the older ones, which directly + * use this class to get their data. + * + * The output of this function gets processed in SkinTemplate::outputPage() for + * the SkinTemplate based skins, all other skins should directly echo it. + * + * Returns an empty string by default, if not changed by any hook function. + */ + protected function afterContentHook() { + $data = ""; + + if( wfRunHooks( 'SkinAfterContent', array( &$data ) ) ){ + // adding just some spaces shouldn't toggle the output + // of the whole
, so we use trim() here + if( trim( $data ) != '' ){ + // Doing this here instead of in the skins to + // ensure that the div has the same ID in all + // skins + $data = "
\n" . + "\t$data\n" . + "
\n"; + } + } else { + wfDebug( "Hook SkinAfterContent changed output processing.\n" ); + } + + return $data; + } + + /** + * This gets called shortly before the tag. + * @return String HTML to be put before */ function afterContent() { $printfooter = "
\n" . $this->printFooter() . "
\n"; @@ -745,8 +876,8 @@ END; } /** - * This gets called shortly before the \ tag. - * @return String HTML-wrapped JS code to be put before \ + * This gets called shortly before the tag. + * @return String HTML-wrapped JS code to be put before */ function bottomScripts() { global $wgJsMimeType; @@ -768,7 +899,7 @@ END; } /** overloaded by derived classes */ - function doAfterContent() { } + function doAfterContent() { return "
"; } function pageTitleLinks() { global $wgOut, $wgTitle, $wgUser, $wgRequest; @@ -926,50 +1057,54 @@ END; function nameAndLogin() { global $wgUser, $wgTitle, $wgLang, $wgContLang; - $lo = $wgContLang->specialPage( 'Userlogout' ); + $logoutPage = $wgContLang->specialPage( 'Userlogout' ); - $s = ''; + $ret = ''; if ( $wgUser->isAnon() ) { if( $this->showIPinHeader() ) { - $n = wfGetIP(); + $name = wfGetIP(); - $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), - $wgLang->getNsText( NS_TALK ) ); + $talkLink = $this->link( $wgUser->getTalkPage(), + $wgLang->getNsText( NS_TALK ) ); - $s .= $n . ' ('.$tl.')'; + $ret .= "$name ($talkLink)"; } else { - $s .= wfMsg('notloggedin'); + $ret .= wfMsg( 'notloggedin' ); } - $rt = $wgTitle->getPrefixedURL(); - if ( 0 == strcasecmp( urlencode( $lo ), $rt ) ) { - $q = ''; - } else { $q = "returnto={$rt}"; } + $returnTo = $wgTitle->getPrefixedDBkey(); + $query = array(); + if ( $logoutPage != $returnTo ) { + $query['returnto'] = $returnTo; + } $loginlink = $wgUser->isAllowed( 'createaccount' ) ? 'nav-login-createaccount' : 'login'; - $s .= "\n
" . $this->makeKnownLinkObj( + $ret .= "\n
" . $this->link( SpecialPage::getTitleFor( 'Userlogin' ), - wfMsg( $loginlink ), $q ); + wfMsg( $loginlink ), array(), $query + ); } else { - $n = $wgUser->getName(); - $rt = $wgTitle->getPrefixedURL(); - $tl = $this->makeKnownLinkObj( $wgUser->getTalkPage(), - $wgLang->getNsText( NS_TALK ) ); - - $tl = " ({$tl})"; - - $s .= $this->makeKnownLinkObj( $wgUser->getUserPage(), - $n ) . "{$tl}
" . - $this->makeKnownLinkObj( SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ), - "returnto={$rt}" ) . ' | ' . - $this->specialLink( 'preferences' ); + $returnTo = $wgTitle->getPrefixedDBkey(); + $talkLink = $this->link( $wgUser->getTalkPage(), + $wgLang->getNsText( NS_TALK ) ); + + $ret .= $this->link( $wgUser->getUserPage(), + htmlspecialchars( $wgUser->getName() ) ); + $ret .= " ($talkLink)
"; + $ret .= $this->link( + SpecialPage::getTitleFor( 'Userlogout' ), wfMsg( 'logout' ), + array(), array( 'returnto' => $returnTo ) + ); + $ret .= ' | ' . $this->specialLink( 'preferences' ); } - $s .= ' | ' . $this->makeKnownLink( wfMsgForContent( 'helppage' ), - wfMsg( 'help' ) ); + $ret .= ' | ' . $this->link( + Title::newFromText( wfMsgForContent( 'helppage' ) ), + wfMsg( 'help' ) + ); - return $s; + return $ret; } function getSearchLink() { @@ -1118,14 +1253,13 @@ END; } } - if (isset($wgMaxCredits) && $wgMaxCredits != 0) { - require_once('Credits.php'); - $s .= ' ' . getCredits($wgArticle, $wgMaxCredits, $wgShowCreditsIfMax); + if( $wgMaxCredits != 0 ){ + $s .= ' ' . Credits::getCredits( $wgArticle, $wgMaxCredits, $wgShowCreditsIfMax ); } else { - $s .= $this->lastModified(); + $s .= $this->lastModified(); } - if ($wgPageShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' )) { + if( $wgPageShowWatchingUsers && $wgUser->getOption( 'shownumberswatching' ) ) { $dbr = wfGetDB( DB_SLAVE ); $watchlist = $dbr->tableName( 'watchlist' ); $sql = "SELECT COUNT(*) AS n FROM $watchlist @@ -1204,8 +1338,11 @@ END; function lastModified() { global $wgLang, $wgArticle; - - $timestamp = $wgArticle->getTimestamp(); + if( $this->mRevisionId ) { + $timestamp = Revision::getTimestampFromId( $this->mRevisionId, $wgArticle->getId() ); + } else { + $timestamp = $wgArticle->getTimestamp(); + } if ( $timestamp ) { $d = $wgLang->date( $timestamp, true ); $t = $wgLang->time( $timestamp, true ); @@ -1305,9 +1442,9 @@ END; if ( !$wgOut->isArticleRelated() ) { $s = wfMsg( 'protectedpage' ); } else { - if( $wgTitle->userCan( 'edit' ) && $wgTitle->exists() ) { + if( $wgTitle->quickUserCan( 'edit' ) && $wgTitle->exists() ) { $t = wfMsg( 'editthispage' ); - } elseif( $wgTitle->userCan( 'create' ) && !$wgTitle->exists() ) { + } elseif( $wgTitle->quickUserCan( 'create' ) && !$wgTitle->exists() ) { $t = wfMsg( 'create-this-page' ); } else { $t = wfMsg( 'viewsource' ); @@ -1392,7 +1529,7 @@ END; function moveThisPage() { global $wgTitle; - if ( $wgTitle->userCan( 'move' ) ) { + if ( $wgTitle->quickUserCan( 'move' ) ) { return $this->makeKnownLinkObj( SpecialPage::getTitleFor( 'Movepage' ), wfMsg( 'movethispage' ), 'target=' . $wgTitle->getPrefixedURL() ); } else { @@ -1507,6 +1644,8 @@ END; return ''; } + $linkOptions = array(); + if( $wgTitle->isTalkPage() ) { $link = $wgTitle->getSubjectPage(); switch( $link->getNamespace() ) { @@ -1521,6 +1660,9 @@ END; break; case NS_IMAGE: $text = wfMsg( 'imagepage' ); + # Make link known if image exists, even if the desc. page doesn't. + if( wfFindFile( $link ) ) + $linkOptions[] = 'known'; break; case NS_MEDIAWIKI: $text = wfMsg( 'mediawikipage' ); @@ -1542,7 +1684,7 @@ END; $text = wfMsg( 'talkpage' ); } - $s = $this->makeLinkObj( $link, $text ); + $s = $this->link( $link, $text, array(), array(), $linkOptions ); return $s; } @@ -1650,24 +1792,18 @@ END; * Build an array that represents the sidebar(s), the navigation bar among them * * @return array - * @private */ function buildSidebar() { global $parserMemc, $wgEnableSidebarCache, $wgSidebarCacheExpiry; - global $wgLang, $wgContLang; - - $fname = 'SkinTemplate::buildSidebar'; - - wfProfileIn( $fname ); + global $wgLang; + wfProfileIn( __METHOD__ ); - $key = wfMemcKey( 'sidebar' ); - $cacheSidebar = $wgEnableSidebarCache && - ($wgLang->getCode() == $wgContLang->getCode()); + $key = wfMemcKey( 'sidebar', $wgLang->getCode() ); - if ($cacheSidebar) { + if ( $wgEnableSidebarCache ) { $cachedsidebar = $parserMemc->get( $key ); - if ($cachedsidebar!="") { - wfProfileOut($fname); + if ( $cachedsidebar ) { + wfProfileOut( __METHOD__ ); return $cachedsidebar; } } @@ -1681,9 +1817,10 @@ END; if (strpos($line, '**') !== 0) { $line = trim($line, '* '); $heading = $line; + if( !array_key_exists($heading, $bar) ) $bar[$heading] = array(); } else { if (strpos($line, '|') !== false) { // sanity check - $line = explode( '|' , trim($line, '* '), 2 ); + $line = array_map('trim', explode( '|' , trim($line, '* '), 2 ) ); $link = wfMsgForContent( $line[0] ); if ($link == '-') continue; @@ -1713,9 +1850,9 @@ END; } else { continue; } } } - if ($cacheSidebar) - $parserMemc->set( $key, $bar, $wgSidebarCacheExpiry ); - wfProfileOut( $fname ); + wfRunHooks('SkinBuildSidebar', array($this, &$bar)); + if ( $wgEnableSidebarCache ) $parserMemc->set( $key, $bar, $wgSidebarCacheExpiry ); + wfProfileOut( __METHOD__ ); return $bar; } }
\n" . $this->logoText() . '