Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,10 @@ |
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.7 - 14 November 2008 |
| 6 | + * Added SocialProfile, SpamRegex and UserMerge extensions. |
| 7 | + * Updated Inputbox extension. |
| 8 | + |
5 | 9 | 0.9.6 - 13 November 2008 |
6 | 10 | * Version list on Special:ViewConfig now uses a pager. |
7 | 11 | * Listed version at the top Special:Configure and Special:Extension are only |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -15,9 +15,9 @@ |
16 | 16 | 'name' => 'Configure', |
17 | 17 | 'author' => 'Alexandre Emsenhuber', |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | | - 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
| 19 | + 'description' => 'Allow authorised users to configure the wiki via a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.9.6', |
| 21 | + 'version' => '0.9.7', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |
— | — | @@ -58,6 +58,10 @@ |
59 | 59 | * - settings: array of settings mapping setting's name to its type |
60 | 60 | * - array: array type for settings |
61 | 61 | * - empty: array of overrides for settings values when they match empty() |
| 62 | + * - view-restricted: list of settings that should only seen by users with |
| 63 | + * extensions-all right |
| 64 | + * - edit-restricted: list of settings that only be modified by users with |
| 65 | + * extensions-all right |
62 | 66 | * - schema: put it to true if the extension requires a database schema change |
63 | 67 | * - url: url to the documentation page |
64 | 68 | */ |
Index: trunk/extensions/Configure/Configure.settings-ext.php |
— | — | @@ -769,7 +769,7 @@ |
770 | 770 | 'url' => 'http://www.mediawiki.org/wiki/Extension:ImageMap', |
771 | 771 | ), |
772 | 772 | array( |
773 | | - 'name' => 'inputbox', |
| 773 | + 'name' => 'Inputbox', |
774 | 774 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Inputbox', |
775 | 775 | ), |
776 | 776 | array( |
— | — | @@ -896,6 +896,19 @@ |
897 | 897 | 'url' => 'http://www.mediawiki.org/wiki/Extension:SkinPerPage', |
898 | 898 | ), |
899 | 899 | array( |
| 900 | + 'name' => 'SocialProfile', |
| 901 | + 'settings' => array( |
| 902 | + 'wgUserBoard' => 'bool', |
| 903 | + 'wgFriendingEnabled' => 'bool', |
| 904 | + ), |
| 905 | + 'schema' => true, |
| 906 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SocialProfile', |
| 907 | + ), |
| 908 | + array( |
| 909 | + 'name' => 'SpamRegex', |
| 910 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SpamRegex', |
| 911 | + ), |
| 912 | + array( |
900 | 913 | 'name' => 'SyntaxHighlight_GeSHi', |
901 | 914 | 'url' => 'http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi', |
902 | 915 | ), |
— | — | @@ -979,6 +992,15 @@ |
980 | 993 | |
981 | 994 | // U |
982 | 995 | array( |
| 996 | + 'name' => 'UserMerge', |
| 997 | + 'settings' => array( |
| 998 | + 'wgUserMergeProtectedGroups' => 'array', |
| 999 | + ), |
| 1000 | + 'array' => array( |
| 1001 | + 'wgUserMergeProtectedGroups' => 'simple', |
| 1002 | + ), |
| 1003 | + ), |
| 1004 | + array( |
983 | 1005 | 'name' => 'UsernameBlacklist', |
984 | 1006 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Username_Blacklist', |
985 | 1007 | ), |