r66048 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r66047‎ | r66048 | r66049 >
Date:20:22, 7 May 2010
Author:ialex
Status:deferred
Tags:
Comment:
Added $wgJQueryVersion, $wgJQueryMinified and $wgJQueryOnEveryPage
Modified paths:
  • /trunk/extensions/Configure/CHANGELOG (modified) (history)
  • /trunk/extensions/Configure/Configure.php (modified) (history)
  • /trunk/extensions/Configure/settings/Settings-core.php (modified) (history)
  • /trunk/extensions/Configure/settings/Settings.i18n.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Configure/CHANGELOG
@@ -1,6 +1,9 @@
22 This file lists changes on this extension. Localisation updates are done
33 through translatewiki.net and are not listed here.
44
 5+0.15.24 - 7 May 2010
 6+ Added $wgJQueryVersion, $wgJQueryMinified and $wgJQueryOnEveryPage.
 7+
58 0.15.23 - 2 May 2010
69 * (bug 23379) Settings based on radio button now longer throw errors if
710 nothing is selected
Index: trunk/extensions/Configure/settings/Settings.i18n.php
@@ -516,6 +516,9 @@
517517 'configure-setting-wgUseSiteJs' => "Use the site's JavaScript page",
518518 'configure-setting-wgHandheldStyle' => 'Style for media="handheld"',
519519 'configure-setting-wgHandheldForIPhone' => "Apply 'screen' and 'handheld' media types to iPhone",
 520+ 'configure-setting-wgJQueryVersion' => 'Version of jQuery to use',
 521+ 'configure-setting-wgJQueryMinified' => 'Use a minified version of jQuery',
 522+ 'configure-setting-wgJQueryOnEveryPage' => 'Include jQuery on every page served by MediaWiki',
520523 'configure-setting-wgUseAjax' => 'Enable AJAX',
521524 'configure-setting-wgAjaxExportList' => 'Callable AJAX functions',
522525 'configure-setting-wgAjaxSearch' => 'Enable use of AJAX auto-suggestion for the search bar',
Index: trunk/extensions/Configure/settings/Settings-core.php
@@ -55,6 +55,9 @@
5656 'wgUseSiteJs' => 'bool',
5757 'wgHandheldStyle' => 'text',
5858 'wgHandheldForIPhone' => 'bool',
 59+ 'wgJQueryVersion' => 'text',
 60+ 'wgJQueryMinified' => 'bool',
 61+ 'wgJQueryOnEveryPage' => 'bool',
5962 ),
6063 'performance' => array(
6164 'wgAPICacheHelp' => 'bool',
@@ -1190,4 +1193,7 @@
11911194 'wgLogAutocreatedAccounts' => array( array( '1.17alpha', '>=' ) ),
11921195 'wgLocalStylePath' => array( array( '1.17alpha', '>=' ) ),
11931196 'wgVectorShowVariantName' => array( array( '1.17alpha', '>=' ) ),
 1197+ 'wgJQueryMinified' => array( array( '1.17alpha', '>=' ) ),
 1198+ 'wgJQueryOnEveryPage' => array( array( '1.17alpha', '>=' ) ),
 1199+ 'wgJQueryVersion' => array( array( '1.17alpha', '>=' ) ),
11941200 );
Index: trunk/extensions/Configure/Configure.php
@@ -17,7 +17,7 @@
1818 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ),
1919 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure',
2020 'descriptionmsg' => 'configure-desc',
21 - 'version' => '0.15.23',
 21+ 'version' => '0.15.24',
2222 );
2323
2424 # Configuration part

Status & tagging log