Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. Localisation updates are done |
3 | 3 | through translatewiki.net and are not listed here. |
4 | 4 | |
| 5 | +0.15.26 - 10 May 2010 |
| 6 | + Added $wgCommandLineDarkBg, $wgDBadminuser, $wgDBadminpassword. |
| 7 | + |
5 | 8 | 0.15.25 - 9 May 2010 |
6 | 9 | $wgSQLiteDataDirMode removed in MediaWiki 1.17. |
7 | 10 | |
Index: trunk/extensions/Configure/settings/Settings.i18n.php |
— | — | @@ -19,10 +19,12 @@ |
20 | 20 | 'configure-setting-wgDBerrorLog' => 'File to log database errors to', |
21 | 21 | 'configure-setting-wgDBname' => 'Name of the database to use', |
22 | 22 | 'configure-setting-wgDBpassword' => 'Password for $wgDBuser', |
| 23 | + 'configure-setting-wgDBadminpassword' => 'Password for $wgDBadminuser', |
23 | 24 | 'configure-setting-wgDBport' => 'Port for the database server', |
24 | 25 | 'configure-setting-wgDBserver' => 'Host name or IP address of database server', |
25 | 26 | 'configure-setting-wgDBtype' => 'Type of database to use', |
26 | 27 | 'configure-setting-wgDBuser' => 'Username to log into database with', |
| 28 | + 'configure-setting-wgDBadminuser' => 'Username of database administrator', |
27 | 29 | 'configure-setting-wgLocalDatabases' => 'Other databases which can be administered from this server', |
28 | 30 | 'configure-setting-wgSearchType' => 'Type of database search to use. Set to a class name to override to a custom search engine', |
29 | 31 | 'configure-setting-wgSharedDB' => 'Shared database name', |
Index: trunk/extensions/Configure/settings/Settings-core.php |
— | — | @@ -38,6 +38,7 @@ |
39 | 39 | 'wgUseAutomaticEditSummaries' => 'bool', |
40 | 40 | 'wgUseTagFilter' => 'bool', |
41 | 41 | 'wgUseTrackbacks' => 'bool', |
| 42 | + 'wgCommandLineDarkBg' => 'bool', |
42 | 43 | ), |
43 | 44 | 'ajax' => array( |
44 | 45 | 'wgUseAjax' => 'bool', |
— | — | @@ -170,23 +171,23 @@ |
171 | 172 | ), |
172 | 173 | 'db' => array( |
173 | 174 | 'db' => array( |
174 | | - 'wgAllDBsAreLocalhost' => 'bool', |
175 | | - 'wgDBAvgStatusPoll' => 'int', |
176 | | -# 'wgDBconnection' => 'text', # This setting is deprecated and has an uncertain history. Best not to let people change it. |
177 | | - 'wgDBerrorLog' => 'text', |
| 175 | + 'wgDBtype' => array( 'mysql' => 'MySQL', 'postgres' => 'PostreSQL' ), |
178 | 176 | 'wgDBname' => 'text', |
| 177 | + 'wgDBuser' => 'text', |
179 | 178 | 'wgDBpassword' => 'text', |
| 179 | + 'wgDBadminuser' => 'text', |
| 180 | + 'wgDBadminpassword' => 'text', |
| 181 | + 'wgDBserver' => 'text', |
180 | 182 | 'wgDBport' => 'int', |
181 | | - 'wgDBserver' => 'text', |
182 | | - 'wgDBtype' => array( 'mysql' => 'MySQL', 'postgres' => 'PostreSQL' ), |
183 | | - 'wgDBuser' => 'text', |
184 | | -# 'wgLegacySchemaConversion' => 'bool', # Really, really deprecated. |
185 | 183 | 'wgLocalDatabases' => 'array', |
186 | 184 | 'wgSearchType' => 'text', |
187 | 185 | 'wgSharedDB' => 'text', |
188 | 186 | 'wgSharedPrefix' => 'text', |
189 | 187 | 'wgSharedTables' => 'array', |
| 188 | + 'wgDBerrorLog' => 'text', |
190 | 189 | 'wgAntiLockFlags' => 'int', |
| 190 | + 'wgAllDBsAreLocalhost' => 'bool', |
| 191 | + 'wgDBAvgStatusPoll' => 'int', |
191 | 192 | 'wgUseDumbLinkUpdate' => 'bool', |
192 | 193 | 'wgExternalStores' => 'array', |
193 | 194 | ), |
— | — | @@ -1047,6 +1048,7 @@ |
1048 | 1049 | 'wgDBmysql5', |
1049 | 1050 | 'wgDBname', |
1050 | 1051 | 'wgDBpassword', |
| 1052 | + 'wgDBadminpassword', |
1051 | 1053 | 'wgDBport', |
1052 | 1054 | 'wgDBprefix', |
1053 | 1055 | 'wgDBserver', |
— | — | @@ -1056,6 +1058,7 @@ |
1057 | 1059 | 'wgDBts2schema', |
1058 | 1060 | 'wgDBtype', |
1059 | 1061 | 'wgDBuser', |
| 1062 | + 'wgDBadminuser', |
1060 | 1063 | 'wgDefaultExternalStore', |
1061 | 1064 | 'wgExternalStores', |
1062 | 1065 | 'wgLBFactoryConf', |
— | — | @@ -1127,6 +1130,7 @@ |
1128 | 1131 | $viewRestricted = array( |
1129 | 1132 | # Db |
1130 | 1133 | 'wgDBpassword', |
| 1134 | + 'wgDBadminpassword', |
1131 | 1135 | 'wgDBservers', |
1132 | 1136 | 'wgLBFactoryConf', |
1133 | 1137 | 'wgExternalServers', |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.15.25', |
| 21 | + 'version' => '0.15.26', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |
Index: trunk/extensions/Configure/handler/HandlerDb.php |
— | — | @@ -333,6 +333,8 @@ |
334 | 334 | 'wgDBerrorLog', |
335 | 335 | 'wgDBname', |
336 | 336 | 'wgDBpassword', |
| 337 | + 'wgDBadminuser', |
| 338 | + 'wgDBadminpassword', |
337 | 339 | 'wgDBport', |
338 | 340 | 'wgDBserver', |
339 | 341 | 'wgDBtype', |