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.9.5 - 10 November 2008 |
| 6 | + Added $wgNamespacesToBeSearchedProject. |
| 7 | + |
5 | 8 | 0.9.4 - 9 November 2008 |
6 | 9 | Fixed type of $wgPasswordAttemptThrottle. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -235,6 +235,7 @@ |
236 | 236 | 'wgNamespaceProtection' => 'array', |
237 | 237 | 'wgNamespaceRobotPolicies' => 'array', |
238 | 238 | 'wgNamespacesToBeSearchedDefault' => 'array', |
| 239 | + 'wgNamespacesToBeSearchedProject' => 'array', |
239 | 240 | 'wgNamespacesWithSubpages' => 'array', |
240 | 241 | 'wgNoFollowNsExceptions' => 'array', |
241 | 242 | 'wgNonincludableNamespaces' => 'array', |
— | — | @@ -743,6 +744,7 @@ |
744 | 745 | 'wgNamespaceProtection' => 'ns-array', |
745 | 746 | 'wgNamespaceRobotPolicies' => 'ns-text', |
746 | 747 | 'wgNamespacesToBeSearchedDefault' => 'ns-bool', |
| 748 | + 'wgNamespacesToBeSearchedProject' => 'ns-bool', |
747 | 749 | 'wgNamespacesWithSubpages' => 'ns-bool', |
748 | 750 | 'wgNoFollowNsExceptions' => 'ns-simple', |
749 | 751 | 'wgNonincludableNamespaces' => 'ns-simple', |
— | — | @@ -1088,6 +1090,7 @@ |
1089 | 1091 | 'wgDebugLogPrefix' => array( array( '1.14alpha', '>=' ) ), |
1090 | 1092 | 'wgEnotifUseRealName' => array( array( '1.14alpha', '>=' ) ), |
1091 | 1093 | 'wgImageMagickTempDir' => array( array( '1.14alpha', '>=' ) ), |
| 1094 | + 'wgNamespacesToBeSearchedProject' => array( array( '1.14alpha', '>=' ) ), |
1092 | 1095 | ## Obsolete |
1093 | 1096 | 'wgAjaxSearch' => array( array( '1.14alpha', '<' ) ), |
1094 | 1097 | ); |
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.9.4', |
| 21 | + 'version' => '0.9.5', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |