Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.8.5 - 17 October 2008 |
| 6 | + Added $wgMaxShellTime. |
| 7 | + |
5 | 8 | 0.8.4 - 16 October 2008 |
6 | 9 | Don't display JavaScript buttons on read-only associative arrays. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -697,6 +697,7 @@ |
698 | 698 | 'wgExternalDiffEngine' => 'text', |
699 | 699 | 'wgMaxShellFileSize' => 'int', |
700 | 700 | 'wgMaxShellMemory' => 'int', |
| 701 | + 'wgMaxShellTime' => 'int', |
701 | 702 | 'wgShellLocale' => 'text', |
702 | 703 | 'wgUpdateRowsPerQuery' => 'int', |
703 | 704 | 'wgUseAutomaticEditSummaries' => 'bool', |
— | — | @@ -1185,6 +1186,7 @@ |
1186 | 1187 | 'wgUniversalEditButton' => array( array( '1.14alpha', '>=' ) ), |
1187 | 1188 | 'wgEdititis' => array( array( '1.14alpha', '>=' ) ), |
1188 | 1189 | 'wgMaxAnimatedGifArea' => array( array( '1.14alpha', '>=' ) ), |
| 1190 | + 'wgMaxShellTime' => array( array( '1.14alpha', '>=' ) ), |
1189 | 1191 | ## Obsolete |
1190 | 1192 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1191 | 1193 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | 19 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.8.4', |
| 21 | + 'version' => '0.8.5', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |