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.4.6 - 2 July 2008 |
| 6 | + Added $wgAdditionalXMLTypes. |
| 7 | + |
5 | 8 | 0.4.5 - 25 June 2008 |
6 | 9 | Added localized names for special pages. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings.php |
— | — | @@ -144,6 +144,7 @@ |
145 | 145 | 'wgZhdaemonPort' => 'int', |
146 | 146 | ), |
147 | 147 | 'html' => array( |
| 148 | + 'wgAdditionalXMLTypes' => 'array', |
148 | 149 | 'wgDocType' => 'text', |
149 | 150 | 'wgDTD' => 'text', |
150 | 151 | 'wgMimeType' => 'text', |
— | — | @@ -710,6 +711,7 @@ |
711 | 712 | 'wgUsersNotifiedOnAllChanges' => 'simple', |
712 | 713 | # Localization |
713 | 714 | 'wgForceUIMsgAsContentMsg' => 'simple', |
| 715 | + 'wgAdditionalXMLTypes' => 'assoc', |
714 | 716 | 'wgXhtmlNamespaces' => 'assoc', |
715 | 717 | 'wgDebugLogGroups' => 'assoc', |
716 | 718 | # Site custom |
— | — | @@ -1115,6 +1117,7 @@ |
1116 | 1118 | 'wgActiveUserEditCount' => array( array( '1.13alpha', '>=' ) ), |
1117 | 1119 | 'wgRC2UDPOmitBots' => array( array( '1.13alpha', '>=' ) ), |
1118 | 1120 | 'wgExtensionAliasesFiles' => array( array( '1.13alpha', '>=' ) ), |
| 1121 | + 'wgAdditionalXMLTypes' => array( array( '1.13alpha', '>=' ) ), |
1119 | 1122 | ## Obsolete |
1120 | 1123 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1121 | 1124 | '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.4.5', |
| 21 | + 'version' => '0.4.6', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Adding new rights... |