Index: trunk/extensions/Configure/Configure.settings.i18n.php |
— | — | @@ -72,6 +72,7 @@ |
73 | 73 | 'configure-setting-wgParserConf' => "Parser configuration", |
74 | 74 | 'configure-setting-wgParserCacheExpireTime' => "Expiration time of parser cache", |
75 | 75 | 'configure-setting-wgParserTestFiles' => "Files to be run for parserTests.php", |
| 76 | + 'configure-setting-wgPreprocessorCacheThreshold' => "Preprocessor caching threshold", |
76 | 77 | 'configure-setting-wgRestrictDisplayTitle' => "Require use of <nowiki>{{DISPLAYTITLE}}</nowiki> to normalise to the same canonical page title", |
77 | 78 | 'configure-setting-wgAmericanDates' => "Require 'May 12' instead of '12 May' in English", |
78 | 79 | 'configure-setting-wgDisableLangConversion' => "Disable language conversion", |
— | — | @@ -136,6 +137,7 @@ |
137 | 138 | 'configure-setting-wgExportAllowHistory' => "Allow exports to include full history", |
138 | 139 | 'configure-setting-wgExportAllowListContributors' => "Allow a list of contributors to be exported", |
139 | 140 | 'configure-setting-wgExportMaxHistory' => "Maximum number of revisions for Special:Export", |
| 141 | + 'configure-setting-wgExportMaxLinkDepth' => "Maximum value of the \"pagelink-depth\" parameter in Special:Export", |
140 | 142 | 'configure-setting-wgFilterLogTypes' => "Allowed log deletion types", |
141 | 143 | 'configure-setting-wgImportTargetNamespace' => "Target namespace for interwiki imports", |
142 | 144 | 'configure-setting-wgLogActions' => "Log event formatting messages", |
— | — | @@ -194,12 +196,14 @@ |
195 | 197 | 'configure-setting-wgDebugRedirects' => "Displays redirect location instead of actually redirecting to the target URL", |
196 | 198 | 'configure-setting-wgLogQueries' => 'Log queries made with extension AskSQL (if installed)', |
197 | 199 | 'configure-setting-wgShowExceptionDetails' => "Print a complete stack trace for exceptions", |
| 200 | + 'configure-setting-wgShowDebug' => "Display debug data at the bottom of the main content area", |
198 | 201 | 'configure-setting-wgShowSQLErrors' => "Show database error pages", |
199 | 202 | 'configure-setting-wgStatsMethod' => "Destination for wfIncrStats() data", |
200 | 203 | 'configure-setting-wgJobRunRate' => "Number of jobs to run per page view", |
201 | 204 | 'configure-setting-wgJobClasses' => "Job handler classes", |
202 | 205 | 'configure-setting-wgUpdateRowsPerJob' => "Number of rows to update per job", |
203 | 206 | 'configure-setting-wgAPIMaxDBRows' => "Maximum number of rows to scan in API database queries", |
| 207 | + 'configure-setting-wgAPIMaxResultSize' => "Maximum size (in bytes) of an API result", |
204 | 208 | 'configure-setting-wgDisableQueryPages' => "Disable all query pages if miser mode is on, not just some", |
205 | 209 | 'configure-setting-wgDisableQueryPageUpdate' => "Disabled special pages", |
206 | 210 | 'configure-setting-wgDisableSearchContext' => "Disable extra information on specific dates and page revisions in search results", |
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.12.3 - 18 February 2009 |
| 6 | + Added $wgAPIMaxResultSize, $wgShowDebug, $wgPreprocessorCacheThreshold and |
| 7 | + $wgExportMaxLinkDepth. |
| 8 | + |
5 | 9 | 0.12.2 - 9 February 2009 |
6 | 10 | (bug 17403) Boolean settings set to false when the default value is true are |
7 | 11 | now properly recognised. |
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.12.2', |
| 21 | + 'version' => '0.12.3', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |
Index: trunk/extensions/Configure/default-setting-names.php |
— | — | @@ -124,6 +124,7 @@ |
125 | 125 | 'wgLogQueries' => "enable logging of nquiries; requires Extension AskSql", |
126 | 126 | 'wgShowSQLErrors' => "Whether to show \"We're sorry, but there has been a database error.\" pages", |
127 | 127 | 'wgShowExceptionDetails' => "If set to true, uncaught exceptions will print a complete stack trace to output", |
| 128 | + 'wgShowDebug' => 'Display debug data at the bottom of the main content area.', |
128 | 129 | 'wgStatsMethod' => "Destination for wfIncrStats() data", |
129 | 130 | 'wgDebugFunctionEntry' => "Output debug message on every wfProfileIn/wfProfileOut", |
130 | 131 | 'wgDebugProfiling' => "Detects non-matching wfProfileIn/wfProfileOut calls", |
— | — | @@ -305,6 +306,7 @@ |
306 | 307 | 'wgHttpOnlyBlacklist' => "User agent blacklist for HttpOnly mode", |
307 | 308 | 'wgSessionName' => "Override to customise the session name", |
308 | 309 | 'wgAPIMaxDBRows' => "Maximum amount of rows to scan in a DB query in the API", |
| 310 | + 'wgAPIMaxResultSize' => 'The maximum size (in bytes) of an API result.', |
309 | 311 | 'wgDisableQueryPages' => "Disable all query pages if [[#\$wgMiserMode|miser mode]] is on, not just some", |
310 | 312 | 'wgDisableQueryPageUpdate' => "Array of special pages that should not be updated", |
311 | 313 | 'wgDisableSearchContext' => "Setting this 'false' enables display of additional information on specific date/page revisions in search results. Requires Extension:LuceneSearch", |
— | — | @@ -409,6 +411,7 @@ |
410 | 412 | 'wgMaxTocLevel' => "Maximum indent level of toc", |
411 | 413 | 'wgParserConf' => "Parser configuration", |
412 | 414 | 'wgParserTestFiles' => "Parser test suite files to be run by parserTests.php", |
| 415 | + 'wgPreprocessorCacheThreshold' => 'Preprocessor caching threshold', |
413 | 416 | 'wgRestrictDisplayTitle' => "Restrict DISPLAYTITLE to titles that normalize to the same canonical DB key", |
414 | 417 | 'wgUseXMLparser' => "Use XML parser?", |
415 | 418 | 'wgMakeDumpLinks' => "Produce hashed [[w:HTML|HTML]] article paths", |
— | — | @@ -428,6 +431,7 @@ |
429 | 432 | 'wgAllowSpecialInclusion' => "Allow special page inclusions such as <code><nowiki>{{Special:Allpages}}</nowiki></code>", |
430 | 433 | 'wgExportAllowHistory' => "Enable the full-history option on Special:Export", |
431 | 434 | 'wgExportMaxHistory' => "Special:Export requests for history of pages with more revisions than this will be rejected", |
| 435 | + 'wgExportMaxLinkDepth' => 'Maximum value of the "pagelink-depth" parameter in Special:Export.', |
432 | 436 | 'wgFilterLogTypes' => "Show/hide links on Special:Log will be shown for these log types", |
433 | 437 | 'wgFilterRobotsWL' => "Enable filtering of robots in Special:Watchlist", |
434 | 438 | 'wgImportTargetNamespace' => "Optional default target namespace for interwiki imports", |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -57,6 +57,7 @@ |
58 | 58 | ), |
59 | 59 | 'performance' => array( |
60 | 60 | 'wgAPIMaxDBRows' => 'int', |
| 61 | + 'wgAPIMaxResultSize' => 'int', |
61 | 62 | 'wgDisableQueryPages' => 'bool', |
62 | 63 | 'wgDisableQueryPageUpdate' => 'array', |
63 | 64 | 'wgDisableSearchContext' => 'bool', |
— | — | @@ -275,6 +276,7 @@ |
276 | 277 | 'wgDebugLogPrefix' => 'text', |
277 | 278 | 'wgDebugRedirects' => 'bool', |
278 | 279 | 'wgLogQueries' => 'bool', |
| 280 | + 'wgShowDebug' => 'bool', |
279 | 281 | 'wgShowExceptionDetails' => 'bool', |
280 | 282 | 'wgShowSQLErrors' => 'bool', |
281 | 283 | 'wgStatsMethod' => array( 'cache' => 'Cache', 'udp' => 'UDP', 0 => 'None' ), |
— | — | @@ -517,6 +519,7 @@ |
518 | 520 | 'wgParserConf' => 'array', |
519 | 521 | 'wgParserCacheExpireTime' => 'int', |
520 | 522 | 'wgParserTestFiles' => 'array', |
| 523 | + 'wgPreprocessorCacheThreshold' => 'int', |
521 | 524 | 'wgUrlProtocols' => 'array', |
522 | 525 | ), |
523 | 526 | 'html' => array( |
— | — | @@ -539,6 +542,7 @@ |
540 | 543 | 'wgExportAllowHistory' => 'bool', |
541 | 544 | 'wgExportAllowListContributors' => 'bool', |
542 | 545 | 'wgExportMaxHistory' => 'int', |
| 546 | + 'wgExportMaxLinkDepth' => 'int', |
543 | 547 | 'wgExtraRandompageSQL' => 'text', |
544 | 548 | 'wgFilterLogTypes' => 'array', |
545 | 549 | 'wgImportTargetNamespace' => 'text', |
— | — | @@ -1089,4 +1093,8 @@ |
1090 | 1094 | 'wgInvalidRedirectTargets' => array( array( '1.15alpha', '>=' ) ), |
1091 | 1095 | 'wgNoFollowDomainExceptions' => array( array( '1.15alpha', '>=' ) ), |
1092 | 1096 | 'wgUseTwoButtonsSearchForm' => array( array( '1.15alpha', '>=' ) ), |
| 1097 | + 'wgAPIMaxResultSize' => array( array( '1.15alpha', '>=' ) ), |
| 1098 | + 'wgShowDebug' => array( array( '1.15alpha', '>=' ) ), |
| 1099 | + 'wgPreprocessorCacheThreshold' => array( array( '1.15alpha', '>=' ) ), |
| 1100 | + 'wgExportMaxLinkDepth' => array( array( '1.15alpha', '>=' ) ), |
1093 | 1101 | ); |