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.7.12', |
| 21 | + 'version' => '0.7.13', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |
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.7.13 - 28 September 2008 |
| 6 | + Added $wgArticlePathForCurid and $wgExternalLinkTarget. |
| 7 | + |
5 | 8 | 0.7.12 - 24 September 2008 |
6 | 9 | * Updated ConfirmAccount extension |
7 | 10 | * Added some new extensions |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -21,6 +21,7 @@ |
22 | 22 | 'wgActionPaths' => 'array', |
23 | 23 | 'wgAppleTouchIcon' => 'text', |
24 | 24 | 'wgArticlePath' => 'text', |
| 25 | + 'wgArticlePathForCurid' => 'bool', |
25 | 26 | 'wgDirectoryMode' => 'int', |
26 | 27 | 'wgDiff' => 'text', |
27 | 28 | 'wgDiff3' => 'text', |
— | — | @@ -521,6 +522,7 @@ |
522 | 523 | 'wgAllowExternalImagesFrom' => 'text', |
523 | 524 | 'wgEnableImageWhitelist' => 'bool', |
524 | 525 | 'wgExpensiveParserFunctionLimit' => 'int', |
| 526 | + 'wgExternalLinkTarget' => 'text', |
525 | 527 | 'wgCleanSignatures' => 'bool', |
526 | 528 | 'wgGrammarForms' => 'array', |
527 | 529 | 'wgLinkHolderBatchSize' => 'int', |
— | — | @@ -844,6 +846,7 @@ |
845 | 847 | 'wgSharedDB' => null, |
846 | 848 | 'wgLocalMessageCache' => null, |
847 | 849 | 'wgExternalDiffEngine' => false, |
| 850 | + 'wgExternalLinkTarget' => false, |
848 | 851 | ); |
849 | 852 | |
850 | 853 | /** |
— | — | @@ -854,6 +857,7 @@ |
855 | 858 | 'wgActionPaths', |
856 | 859 | 'wgAppleTouchIcon', |
857 | 860 | 'wgArticlePath', |
| 861 | + 'wgArticlePathForCurid', |
858 | 862 | 'wgDirectoryMode', |
859 | 863 | 'wgDiff', |
860 | 864 | 'wgDiff3', |
— | — | @@ -1172,6 +1176,8 @@ |
1173 | 1177 | 'wgSpecialPageCacheUpdates' => array( array( '1.14alpha', '>=' ) ), |
1174 | 1178 | 'wgNewUserLog' => array( array( '1.14alpha', '>=' ) ), |
1175 | 1179 | 'wgRenderHashAppend' => array( array( '1.14alpha', '>=' ) ), |
| 1180 | + 'wgArticlePathForCurid' => array( array( '1.14alpha', '>=' ) ), |
| 1181 | + 'wgExternalLinkTarget' => array( array( '1.14alpha', '>=' ) ), |
1176 | 1182 | ## Obsolete |
1177 | 1183 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1178 | 1184 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |