Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. Localisation updates are done |
3 | 3 | through translatewiki.net and are not listed here. |
4 | 4 | |
| 5 | +0.15.24 - 7 May 2010 |
| 6 | + Added $wgJQueryVersion, $wgJQueryMinified and $wgJQueryOnEveryPage. |
| 7 | + |
5 | 8 | 0.15.23 - 2 May 2010 |
6 | 9 | * (bug 23379) Settings based on radio button now longer throw errors if |
7 | 10 | nothing is selected |
Index: trunk/extensions/Configure/settings/Settings.i18n.php |
— | — | @@ -516,6 +516,9 @@ |
517 | 517 | 'configure-setting-wgUseSiteJs' => "Use the site's JavaScript page", |
518 | 518 | 'configure-setting-wgHandheldStyle' => 'Style for media="handheld"', |
519 | 519 | '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', |
520 | 523 | 'configure-setting-wgUseAjax' => 'Enable AJAX', |
521 | 524 | 'configure-setting-wgAjaxExportList' => 'Callable AJAX functions', |
522 | 525 | '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 @@ |
56 | 56 | 'wgUseSiteJs' => 'bool', |
57 | 57 | 'wgHandheldStyle' => 'text', |
58 | 58 | 'wgHandheldForIPhone' => 'bool', |
| 59 | + 'wgJQueryVersion' => 'text', |
| 60 | + 'wgJQueryMinified' => 'bool', |
| 61 | + 'wgJQueryOnEveryPage' => 'bool', |
59 | 62 | ), |
60 | 63 | 'performance' => array( |
61 | 64 | 'wgAPICacheHelp' => 'bool', |
— | — | @@ -1190,4 +1193,7 @@ |
1191 | 1194 | 'wgLogAutocreatedAccounts' => array( array( '1.17alpha', '>=' ) ), |
1192 | 1195 | 'wgLocalStylePath' => array( array( '1.17alpha', '>=' ) ), |
1193 | 1196 | 'wgVectorShowVariantName' => array( array( '1.17alpha', '>=' ) ), |
| 1197 | + 'wgJQueryMinified' => array( array( '1.17alpha', '>=' ) ), |
| 1198 | + 'wgJQueryOnEveryPage' => array( array( '1.17alpha', '>=' ) ), |
| 1199 | + 'wgJQueryVersion' => array( array( '1.17alpha', '>=' ) ), |
1194 | 1200 | ); |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.15.23', |
| 21 | + 'version' => '0.15.24', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |