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.11.6 - 7 January 2009 |
| 6 | + Added support for OpenID extension. |
| 7 | + |
5 | 8 | 0.11.5 - 31 December 2008 |
6 | 9 | Fixed Special:Extensions: some settings using radio buttons had no radio |
7 | 10 | button pre-selected, resulting in an error when saving settings. |
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 via a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.11.5', |
| 21 | + 'version' => '0.11.6', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |
Index: trunk/extensions/Configure/Configure.settings-ext.php |
— | — | @@ -849,6 +849,41 @@ |
850 | 850 | 'url' => 'http://www.mediawiki.org/wiki/Extension:OnlineStatus', |
851 | 851 | ), |
852 | 852 | array( |
| 853 | + 'name' => 'OpenID', |
| 854 | + 'file' => 'OpenID.setup.php', |
| 855 | + 'settings' => array( |
| 856 | + 'wgHideOpenIDLoginLink' => 'bool', |
| 857 | + 'wgOpenIDLoginLogoUrl' => 'text', |
| 858 | + 'wgOpenIDShowUrlOnUserPage' => array( |
| 859 | + 'always' => 'Always', |
| 860 | + 'user' => 'User choice', |
| 861 | + 'never' => 'Never', |
| 862 | + ), |
| 863 | + 'wgOpenIDServerForceAllowTrust' => 'array', |
| 864 | + 'wgOpenIDServerStoreType' => 'text', |
| 865 | + 'wgOpenIDServerStorePath' => 'text', |
| 866 | + 'wgTrustRoot' => 'text', |
| 867 | + 'wgOpenIDConsumerDenyByDefault' => 'bool', |
| 868 | + 'wgOpenIDConsumerAllow' => 'array', |
| 869 | + 'wgOpenIDConsumerDeny' => 'array', |
| 870 | + 'wgOpenIDConsumerStoreType' => 'text', |
| 871 | + 'wgOpenIDConsumerStorePath' => 'text', |
| 872 | + 'wgOpenIDCookieExpiration' => 'int', |
| 873 | + 'wgOpenIDOnly' => 'bool', |
| 874 | + 'wgOpenIDClientOnly' => 'bool', |
| 875 | + ), |
| 876 | + 'array' => array( |
| 877 | + 'wgOpenIDServerForceAllowTrust' => 'simple', |
| 878 | + 'wgOpenIDConsumerAllow' => 'simple', |
| 879 | + 'wgOpenIDConsumerDeny' => 'simple', |
| 880 | + ), |
| 881 | + 'empty' => array( |
| 882 | + 'wgTrustRoot' => null, |
| 883 | + ), |
| 884 | + 'schema' => true, |
| 885 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:OpenID', |
| 886 | + ), |
| 887 | + array( |
853 | 888 | 'name' => 'OpenSearchXml', |
854 | 889 | 'settings' => array( |
855 | 890 | 'wgOpenSearchAdvertiseXml' => 'bool', |