From: jenkins-bot Date: Tue, 1 Jan 2019 14:10:45 +0000 (+0000) Subject: Merge "SpecialMediaStatistics: Add and in the table" X-Git-Tag: 1.34.0-rc.0~3177 X-Git-Url: http://git.cyclocoop.org//%22javascript:ModifierStyle%28%27%22.%24id.%22%27%29/%22?a=commitdiff_plain;h=9fc7070cbdcbd1b40d1ea37b7252da989398c984;hp=82d993ed6627263d7fc7e4c42a77362381ea78bc;p=lhc%2Fweb%2Fwiklou.git Merge "SpecialMediaStatistics: Add and in the table" --- diff --git a/includes/diff/DifferenceEngine.php b/includes/diff/DifferenceEngine.php index 826eecbb56..8ca480f796 100644 --- a/includes/diff/DifferenceEngine.php +++ b/includes/diff/DifferenceEngine.php @@ -755,14 +755,14 @@ class DifferenceEngine extends ContextSource { * or false if no link is needed */ protected function getMarkPatrolledLinkInfo() { - global $wgUseRCPatrol; - $user = $this->getUser(); + $config = $this->getConfig(); // Prepare a change patrol link, if applicable if ( // Is patrolling enabled and the user allowed to? - $wgUseRCPatrol && $this->mNewPage && $this->mNewPage->quickUserCan( 'patrol', $user ) && + $config->get( 'UseRCPatrol' ) && + $this->mNewPage && $this->mNewPage->quickUserCan( 'patrol', $user ) && // Only do this if the revision isn't more than 6 hours older // than the Max RC age (6h because the RC might not be cleaned out regularly) RecentChange::isInRCLifespan( $this->mNewRev->getTimestamp(), 21600 ) @@ -1336,12 +1336,11 @@ class DifferenceEngine extends ContextSource { * @return string */ protected function debug( $generator = "internal" ) { - global $wgShowHostnames; if ( !$this->enableDebugComment ) { return ''; } $data = [ $generator ]; - if ( $wgShowHostnames ) { + if ( $this->getConfig()->get( 'ShowHostnames' ) ) { $data[] = wfHostname(); } $data[] = wfTimestamp( TS_DB ); diff --git a/includes/page/ImageHistoryList.php b/includes/page/ImageHistoryList.php index 0a07c6884f..53133345ca 100644 --- a/includes/page/ImageHistoryList.php +++ b/includes/page/ImageHistoryList.php @@ -54,13 +54,14 @@ class ImageHistoryList extends ContextSource { * @param ImagePage $imagePage */ public function __construct( $imagePage ) { - global $wgShowArchiveThumbnails; + $context = $imagePage->getContext(); $this->current = $imagePage->getPage()->getFile(); $this->img = $imagePage->getDisplayedFile(); $this->title = $imagePage->getTitle(); $this->imagePage = $imagePage; - $this->showThumb = $wgShowArchiveThumbnails && $this->img->canRender(); - $this->setContext( $imagePage->getContext() ); + $this->showThumb = $context->getConfig()->get( 'ShowArchiveThumbnails' ) && + $this->img->canRender(); + $this->setContext( $context ); } /** diff --git a/includes/skins/Skin.php b/includes/skins/Skin.php index 809d411095..08ff8f0c49 100644 --- a/includes/skins/Skin.php +++ b/includes/skins/Skin.php @@ -496,8 +496,7 @@ abstract class Skin extends ContextSource { * @return string */ function getLogo() { - global $wgLogo; - return $wgLogo; + return $this->getConfig()->get( 'Logo' ); } /** @@ -517,8 +516,6 @@ abstract class Skin extends ContextSource { * @return string HTML */ function getCategoryLinks() { - global $wgUseCategoryBrowser; - $out = $this->getOutput(); $allCats = $out->getCategoryLinks(); @@ -561,7 +558,7 @@ abstract class Skin extends ContextSource { # optional 'dmoz-like' category browser. Will be shown under the list # of categories an article belong to - if ( $wgUseCategoryBrowser ) { + if ( $this->getConfig()->get( 'UseCategoryBrowser' ) ) { $s .= '

'; # get a big array of the parents tree @@ -819,8 +816,6 @@ abstract class Skin extends ContextSource { * @return string */ function getCopyright( $type = 'detect' ) { - global $wgRightsPage, $wgRightsUrl, $wgRightsText; - if ( $type == 'detect' ) { if ( !$this->isRevisionCurrent() && !$this->msg( 'history_copyright' )->inContentLanguage()->isDisabled() @@ -837,13 +832,15 @@ abstract class Skin extends ContextSource { $msg = 'copyright'; } - if ( $wgRightsPage ) { - $title = Title::newFromText( $wgRightsPage ); - $link = Linker::linkKnown( $title, $wgRightsText ); - } elseif ( $wgRightsUrl ) { - $link = Linker::makeExternalLink( $wgRightsUrl, $wgRightsText ); - } elseif ( $wgRightsText ) { - $link = $wgRightsText; + $config = $this->getConfig(); + + if ( $config->get( 'RightsPage' ) ) { + $title = Title::newFromText( $config->get( 'RightsPage' ) ); + $link = Linker::linkKnown( $title, $config->get( 'RightsText' ) ); + } elseif ( $config->get( 'RightsUrl' ) ) { + $link = Linker::makeExternalLink( $config->get( 'RightsUrl' ), $config->get( 'RightsText' ) ); + } elseif ( $config->get( 'RightsText' ) ) { + $link = $config->get( 'RightsText' ); } else { # Give up now return ''; @@ -865,24 +862,24 @@ abstract class Skin extends ContextSource { * @return null|string */ function getCopyrightIcon() { - global $wgRightsUrl, $wgRightsText, $wgRightsIcon, $wgFooterIcons; - $out = ''; + $config = $this->getConfig(); - if ( $wgFooterIcons['copyright']['copyright'] ) { - $out = $wgFooterIcons['copyright']['copyright']; - } elseif ( $wgRightsIcon ) { - $icon = htmlspecialchars( $wgRightsIcon ); + $footerIcons = $config->get( 'FooterIcons' ); + if ( $footerIcons['copyright']['copyright'] ) { + $out = $footerIcons['copyright']['copyright']; + } elseif ( $config->get( 'RightsIcon' ) ) { + $icon = htmlspecialchars( $config->get( 'RightsIcon' ) ); + $url = $config->get( 'RightsUrl' ); - if ( $wgRightsUrl ) { - $url = htmlspecialchars( $wgRightsUrl ); - $out .= ''; + if ( $url ) { + $out .= ''; } - $text = htmlspecialchars( $wgRightsText ); + $text = htmlspecialchars( $config->get( 'RightsText' ) ); $out .= "\"$text\""; - if ( $wgRightsUrl ) { + if ( $url ) { $out .= ''; } } @@ -895,16 +892,15 @@ abstract class Skin extends ContextSource { * @return string */ function getPoweredBy() { - global $wgResourceBasePath; - + $resourceBasePath = $this->getConfig()->get( 'ResourceBasePath' ); $url1 = htmlspecialchars( - "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png" + "$resourceBasePath/resources/assets/poweredby_mediawiki_88x31.png" ); $url1_5 = htmlspecialchars( - "$wgResourceBasePath/resources/assets/poweredby_mediawiki_132x47.png" + "$resourceBasePath/resources/assets/poweredby_mediawiki_132x47.png" ); $url2 = htmlspecialchars( - "$wgResourceBasePath/resources/assets/poweredby_mediawiki_176x62.png" + "$resourceBasePath/resources/assets/poweredby_mediawiki_176x62.png" ); $text = ' $url, "target" => $wgExternalLinkTarget ], + [ "href" => $url, "target" => $this->getConfig()->get( 'ExternalLinkTarget' ) ], $html ); } } @@ -1112,14 +1107,12 @@ abstract class Skin extends ContextSource { * @throws MWException */ function getSkinStylePath( $name ) { - global $wgStylePath; - if ( $this->stylename === null ) { $class = static::class; throw new MWException( "$class::\$stylename must be set to use getSkinStylePath()" ); } - return "$wgStylePath/{$this->stylename}/$name"; + return $this->getConfig()->get( 'StylePath' ) . "/{$this->stylename}/$name"; } /* these are used extensively in SkinTemplate, but also some other places */ @@ -1286,8 +1279,6 @@ abstract class Skin extends ContextSource { * @return array */ public function buildSidebar() { - global $wgEnableSidebarCache, $wgSidebarCacheExpiry; - $callback = function ( $old = null, &$ttl = null ) { $bar = []; $this->addToSidebar( $bar, 'sidebar' ); @@ -1301,11 +1292,12 @@ abstract class Skin extends ContextSource { $msgCache = MessageCache::singleton(); $wanCache = MediaWikiServices::getInstance()->getMainWANObjectCache(); + $config = $this->getConfig(); - $sidebar = $wgEnableSidebarCache + $sidebar = $config->get( 'EnableSidebarCache' ) ? $wanCache->getWithSetCallback( $wanCache->makeKey( 'sidebar', $this->getLanguage()->getCode() ), - $wgSidebarCacheExpiry, + $config->get( 'SidebarCacheExpiry' ), $callback, [ 'checkKeys' => [ @@ -1348,7 +1340,8 @@ abstract class Skin extends ContextSource { $lines = explode( "\n", $text ); $heading = ''; - $messageTitle = $this->getConfig()->get( 'EnableSidebarCache' ) + $config = $this->getConfig(); + $messageTitle = $config->get( 'EnableSidebarCache' ) ? Title::newMainPage() : $this->getTitle(); foreach ( $lines as $line ) { @@ -1396,14 +1389,14 @@ abstract class Skin extends ContextSource { $href = $link; // Parser::getExternalLinkAttribs won't work here because of the Namespace things - global $wgNoFollowLinks, $wgNoFollowDomainExceptions; - if ( $wgNoFollowLinks && !wfMatchesDomainList( $href, $wgNoFollowDomainExceptions ) ) { + if ( $config->get( 'NoFollowLinks' ) && + !wfMatchesDomainList( $href, $config->get( 'NoFollowDomainExceptions' ) ) + ) { $extraAttribs['rel'] = 'nofollow'; } - global $wgExternalLinkTarget; - if ( $wgExternalLinkTarget ) { - $extraAttribs['target'] = $wgExternalLinkTarget; + if ( $config->get( 'ExternalLinkTarget' ) ) { + $extraAttribs['target'] = $config->get( 'ExternalLinkTarget' ); } } else { $title = Title::newFromText( $link ); @@ -1530,14 +1523,12 @@ abstract class Skin extends ContextSource { * should fall back to the next notice in its sequence */ private function getCachedNotice( $name ) { - global $wgRenderHashAppend; - $needParse = false; + $config = $this->getConfig(); if ( $name === 'default' ) { // special case - global $wgSiteNotice; - $notice = $wgSiteNotice; + $notice = $config->get( 'SiteNotice' ); if ( empty( $notice ) ) { return false; } @@ -1556,7 +1547,7 @@ abstract class Skin extends ContextSource { $parsed = $cache->getWithSetCallback( // Use the extra hash appender to let eg SSL variants separately cache // Key is verified with md5 hash of unparsed wikitext - $cache->makeKey( $name, $wgRenderHashAppend, md5( $notice ) ), + $cache->makeKey( $name, $config->get( 'RenderHashAppend' ), md5( $notice ) ), // TTL in seconds 600, function () use ( $notice ) { diff --git a/includes/specials/helpers/LoginHelper.php b/includes/specials/helpers/LoginHelper.php index a35a420ee6..6c9bea598f 100644 --- a/includes/specials/helpers/LoginHelper.php +++ b/includes/specials/helpers/LoginHelper.php @@ -63,10 +63,9 @@ class LoginHelper extends ContextSource { public function showReturnToPage( $type, $returnTo = '', $returnToQuery = '', $stickHTTPS = false ) { - global $wgRedirectOnLogin, $wgSecureLogin; - - if ( $type !== 'error' && $wgRedirectOnLogin !== null ) { - $returnTo = $wgRedirectOnLogin; + $config = $this->getConfig(); + if ( $type !== 'error' && $config->get( 'RedirectOnLogin' ) !== null ) { + $returnTo = $config->get( 'RedirectOnLogin' ); $returnToQuery = []; } elseif ( is_string( $returnToQuery ) ) { $returnToQuery = wfCgiToArray( $returnToQuery ); @@ -77,10 +76,10 @@ class LoginHelper extends ContextSource { $returnToTitle = Title::newFromText( $returnTo ) ?: Title::newMainPage(); - if ( $wgSecureLogin && !$stickHTTPS ) { + if ( $config->get( 'SecureLogin' ) && !$stickHTTPS ) { $options = [ 'http' ]; $proto = PROTO_HTTP; - } elseif ( $wgSecureLogin ) { + } elseif ( $config->get( 'SecureLogin' ) ) { $options = [ 'https' ]; $proto = PROTO_HTTPS; } else { diff --git a/resources/src/jquery.tablesorter/jquery.tablesorter.js b/resources/src/jquery.tablesorter/jquery.tablesorter.js index 0ff88640a8..2b67568cdf 100644 --- a/resources/src/jquery.tablesorter/jquery.tablesorter.js +++ b/resources/src/jquery.tablesorter/jquery.tablesorter.js @@ -460,7 +460,7 @@ function setHeadersCss( table, $headers, list, css, msg, columnToHeader ) { var i, len; // Remove all header information and reset titles to default message - $headers.removeClass( css[ 0 ] ).removeClass( css[ 1 ] ).attr( 'title', msg[ 1 ] ); + $headers.removeClass( css ).attr( 'title', msg[ 1 ] ); for ( i = 0, len = list.length; i < len; i++ ) { $headers