Merge "Add support for HD versions of the wiki logo in MonoBook-like skins."
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 13 Mar 2015 06:30:05 +0000 (06:30 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 13 Mar 2015 06:30:05 +0000 (06:30 +0000)
1  2 
includes/DefaultSettings.php

@@@ -257,6 -257,23 +257,23 @@@ $wgFileCacheDirectory = false
   */
  $wgLogo = false;
  
+ /**
+  * Array with URL paths to HD versions of the wiki logo. The scaled logo size
+  * should be under 135x155 pixels.
+  * Only 1.5x and 2x versions are supported.
+  *
+  * @par Example:
+  * @code
+  * $wgLogoHD = array(
+  *    "1.5x" => "path/to/1.5x_version.png",
+  *    "2x" => "path/to/2x_version.png"
+  * );
+  * @endcode
+  *
+  * @since 1.25
+  */
+ $wgLogoHD = false;
  /**
   * The URL path of the shortcut icon.
   * @since 1.6
@@@ -7420,34 -7437,6 +7437,34 @@@ $wgPageLanguageUseDB = false
   */
  $wgUseLinkNamespaceDBFields = true;
  
 +/**
 + * Global configuration variable for Virtual REST Services.
 + * Parameters for different services are to be declared inside
 + * $wgVirtualRestConfig['modules'], which is to be treated as an associative
 + * array. Global parameters will be merged with service-specific ones. The
 + * result will then be passed to VirtualRESTService::__construct() in the
 + * module.
 + *
 + * Example config for Parsoid:
 + *
 + *   $wgVirtualRestConfig['modules']['parsoid'] = array(
 + *     'url' => 'http://localhost:8000',
 + *     'prefix' => 'enwiki',
 + *   );
 + *
 + * @var array
 + * @since 1.25
 + */
 +$wgVirtualRestConfig = array(
 +      'modules' => array(),
 +      'global' => array(
 +              # Timeout in seconds
 +              'timeout' => 360,
 +              'forwardCookies' => false,
 +              'HTTPProxy' => null
 +      )
 +);
 +
  /**
   * For really cool vim folding this needs to be at the end:
   * vim: foldmarker=@{,@} foldmethod=marker