Index: trunk/extensions/Configure/Configure.i18n.php |
— | — | @@ -120,7 +120,6 @@ |
121 | 121 | 'configure-section-svg' => 'SVG', |
122 | 122 | 'configure-section-antivirus' => 'Antivirus', |
123 | 123 | 'configure-section-parser' => 'Parser', |
124 | | - 'configure-section-tex' => 'TeX', |
125 | 124 | 'configure-section-tidy' => 'Tidy', |
126 | 125 | 'configure-section-specialpages' => 'Special pages', |
127 | 126 | 'configure-section-recentchanges' => 'Recent changes', |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,29 @@ |
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.17.2 - 22 January 2012 |
| 6 | + * Added $wgIncludeLegacyJavaScript, $wgLegacyJavaScriptGlobals, |
| 7 | + $wgResourceBasePath, $wgResourceLoaderMaxQueryLength, |
| 8 | + $wgResourceLoaderMinifierMaxLineLength, |
| 9 | + $wgResourceLoaderMinifierStatementsOnOwnLine, $wgResourceLoaderValidateJS, |
| 10 | + $wgResourceLoaderValidateStaticJS, $wgEnableJavaScriptTest, |
| 11 | + $wgJavaScriptTestConfig, $wgExtraGenderNamespaces, |
| 12 | + $wgSitemapNamespacesPriorities, $wgAutopromoteOnce, $wgCanonicalServer, |
| 13 | + $wgExiv2Command, $wgAllowSchemaUpdates, $wgCleanupPresentationalAttributes, |
| 14 | + $wgSend404Code, $wgDebugToolbar, $wgDeprecationReleaseLimit, |
| 15 | + $wgAggregateStatsID, $wgArticleCountMethod, $wgCachePrefix, |
| 16 | + $wgCopyUploadsDomains, $wgDisableUploadScriptChecks, $wgUploadStashMaxAge, |
| 17 | + $wgUpdateCompatibleMetadata, $wgEnableAutoRotation, |
| 18 | + $wgExcludeFromThumbnailPurge, $wgImageMagickIdentifyCommand, |
| 19 | + $wgSVGMetadataCutoff, $wgExportAllowAll, $wgQueryPageDefaultLimit, |
| 20 | + $wgAutopromoteOnceLogInRC, $wgPasswordResetRoutes, |
| 21 | + $wgEnableSearchContributorsByIP and $wgVaryOnXFP. |
| 22 | + * Removed $wgResourceLoaderMinifyJSVerticalSpace, $wgAPICacheHelp, |
| 23 | + $wgMathDirectory, $wgMathPath, $wgProto, $wgTexvc, $wgDBts2schema, |
| 24 | + $wgSysopRangeBans, $wgSysopUserBans, $wgUseTeX, $wgTexvcBackgroundColor, |
| 25 | + $wgMathCheckFiles, $wgAllowUserSkin, $wgLogAutocreatedAccounts and |
| 26 | + $wgCheckCopyrightUpload. |
| 27 | + |
5 | 28 | 0.17.1 - 14 January 2012 |
6 | 29 | Fixed a JavaScript error. |
7 | 30 | |
Index: trunk/extensions/Configure/scripts/findSettings.php |
— | — | @@ -143,6 +143,7 @@ |
144 | 144 | } else { |
145 | 145 | $allSettings = array_keys( ConfigurationSettings::singleton( CONF_SETTINGS_CORE )->getAllSettings() ); |
146 | 146 | $ignoreList = array( |
| 147 | + 'wgActions', // Needs PHP code |
147 | 148 | 'wgAPIListModules', // Extensions only |
148 | 149 | 'wgAPIMetaModules', // Extensions only |
149 | 150 | 'wgAPIModules', // Extensions only |
— | — | @@ -152,6 +153,7 @@ |
153 | 154 | 'wgAutoloadClasses', // Extensions only |
154 | 155 | 'wgAvailableRights', // Extensions only |
155 | 156 | 'wgCommandLineMode', // Internal use |
| 157 | + 'wgCompiledFiles', // Extensions only |
156 | 158 | 'wgConf', // Object |
157 | 159 | 'wgDBmysql4', // Deprecated |
158 | 160 | 'wgDummyLanguageCodes', // Internal use |
— | — | @@ -164,10 +166,12 @@ |
165 | 167 | 'wgExtensionCredits', // Extensions only |
166 | 168 | 'wgExtensionFunctions', // Extensions only |
167 | 169 | 'wgExtensionMessagesFiles', // Extensions only |
| 170 | + 'wgFeedClasses', // Needs PHP code |
168 | 171 | 'wgFilterCallback', // Needs PHP code |
169 | 172 | 'wgHooks', // Extensions only |
170 | 173 | 'wgInputEncoding', // Deprecated |
171 | 174 | 'wgJobClasses', // Extensions only |
| 175 | + 'wgJobTypesExcludedFromDefaultQueue', // Extensions only |
172 | 176 | 'wgLegacySchemaConversion', // Deprecated |
173 | 177 | 'wgLogActions', // Extensions only |
174 | 178 | 'wgLogActionsHandlers', // Extensions only |
— | — | @@ -176,12 +180,14 @@ |
177 | 181 | 'wgLogTypes', // Extensions only |
178 | 182 | 'wgMaintenanceScripts', // Extensions only |
179 | 183 | 'wgMemCachedDebug', // Internal use |
| 184 | + 'wgObjectCaches', // Too dificult |
180 | 185 | 'wgOldChangeTagsIndex', // Temporary |
181 | 186 | 'wgOutputEncoding', // Deprecated |
182 | 187 | 'wgPagePropLinkInvalidations', // Extensions only |
183 | 188 | 'wgParserOutputHooks', // Extensions only |
184 | 189 | 'wgParserTestFiles', // Extensions only |
185 | 190 | 'wgProxyKey', // Deprecated |
| 191 | + 'wgResourceLoaderSources', // Extensions only |
186 | 192 | 'wgResourceModules', // Extensions only |
187 | 193 | 'wgSeleniumTestConfigs', // Needs PHP code |
188 | 194 | 'wgSkinExtensionFunctions', // Extensions only |
— | — | @@ -190,6 +196,7 @@ |
191 | 197 | 'wgSorbsUrl', // Deprecated |
192 | 198 | 'wgStyleSheetPath', // Deprecated |
193 | 199 | 'wgTrivialMimeDetection', // Internal use |
| 200 | + 'wgUseTeX', // Deprecated |
194 | 201 | 'wgValidSkinNames', // Extensions only |
195 | 202 | 'wgVersion', // Internal use |
196 | 203 | ); |
Index: trunk/extensions/Configure/settings/Settings.i18n.php |
— | — | @@ -46,7 +46,9 @@ |
47 | 47 | 'configure-setting-wgThumbUpright' => 'Width adjustment factor for upright thumbnails', |
48 | 48 | 'configure-setting-wgShowEXIF' => 'Show EXIF data on file description pages', |
49 | 49 | 'configure-setting-wgThumbLimits' => 'Allowed image thumbnail sizes', |
| 50 | + 'configure-setting-wgExcludeFromThumbnailPurge' => 'File extensions of thumbnails that should be excluded from normal purge operations', |
50 | 51 | 'configure-setting-wgUseImageResize' => 'Enable dynamic server side image resizing', |
| 52 | + 'configure-setting-wgEnableAutoRotation' => 'Rotate images accordingly to their EXIF orientation', |
51 | 53 | 'configure-setting-wgTrustedMediaFormats' => "Media types and MIME types which are considered 'safe'", |
52 | 54 | 'configure-setting-wgImgAuthDetails' => 'Display details why access failed in img_auth.php', |
53 | 55 | 'configure-setting-wgImgAuthPublicTest' => 'Check whether images are publically accessible and display an error on img_auth.php if this is the case', |
— | — | @@ -55,6 +57,7 @@ |
56 | 58 | 'configure-setting-wgDBAhandler' => 'DBA handler to use', |
57 | 59 | 'configure-setting-wgCacheEpoch' => 'Cache invalidation epoch', |
58 | 60 | 'configure-setting-wgCachePages' => 'Allow client-side caching of pages', |
| 61 | + 'configure-setting-wgCachePrefix' => 'Custom value for the cache prefix', |
59 | 62 | 'configure-setting-wgClockSkewFudge' => 'Fudge time to add to cache timestamps to adjust for clock skew', |
60 | 63 | 'configure-setting-wgInvalidateCacheOnLocalSettingsChange' => 'Invalidate various caches when LocalSettings.php changes', |
61 | 64 | 'configure-setting-wgFileCacheDirectory' => 'File cache directory', |
— | — | @@ -134,6 +137,7 @@ |
135 | 138 | 'configure-setting-wgAllowCopyUploads' => 'Allow uploads to be made by URL', |
136 | 139 | 'configure-setting-wgAllowAsyncCopyUploads' => 'Allow asynchronous copy uploads', |
137 | 140 | 'configure-setting-wgCheckFileExtensions' => 'Check file extensions', |
| 141 | + 'configure-setting-wgCopyUploadsDomains' => 'A list of domains copy uploads can come from', |
138 | 142 | 'configure-setting-wgEnableUploads' => 'Enable uploads', |
139 | 143 | 'configure-setting-wgUploadMaintenance' => 'Temporarily disable file delete/restore', |
140 | 144 | 'configure-setting-wgFileBlacklist' => 'Disallowed file extensions', |
— | — | @@ -144,11 +148,13 @@ |
145 | 149 | 'configure-setting-wgStrictFileExtensions' => 'Disallow any non-preferred file extension', |
146 | 150 | 'configure-setting-wgUploadSizeWarning' => 'Warning threshold for upload size', |
147 | 151 | 'configure-setting-wgMaxUploadSize' => 'Maximum allowed upload size', |
| 152 | + 'configure-setting-wgUploadStashMaxAge' => 'Maximum age of temporary (incomplete) uploaded files, in seconds', |
148 | 153 | 'configure-setting-wgHTTPTimeout' => 'Timeout for HTTP requests', |
149 | 154 | 'configure-setting-wgHTTPProxy' => 'HTTP Proxy to use', |
150 | 155 | 'configure-setting-wgAsyncHTTPTimeout' => 'Timeout for asynchronous HTTP requests', |
151 | 156 | 'configure-setting-wgVersion' => 'MediaWiki version', |
152 | 157 | 'configure-setting-wgAllowSpecialInclusion' => 'Allow inclusion of special pages', |
| 158 | + 'configure-setting-wgExportAllowAll' => 'Allow exporting the entire wiki into a single file from [[Special:Export]]', |
153 | 159 | 'configure-setting-wgExportAllowHistory' => 'Allow exports to include full history', |
154 | 160 | 'configure-setting-wgExportAllowListContributors' => 'Allow a list of contributors to be exported', |
155 | 161 | 'configure-setting-wgExportFromNamespaces' => 'Allow the "export all pages in namespace" option in [[Special:Export]]', |
— | — | @@ -160,6 +166,7 @@ |
161 | 167 | 'configure-setting-wgLogRestrictions-key' => 'Log type', |
162 | 168 | 'configure-setting-wgLogRestrictions-value' => 'Right required to read', |
163 | 169 | 'configure-setting-wgMaxRedirectLinksRetrieved' => 'Maximum number of links to a redirect page listed on [[Special:Whatlinkshere/RedirectDestination]]', |
| 170 | + 'configure-setting-wgQueryPageDefaultLimit' => 'Default number of entries to show on special pages which are query-pages such as [[Special:Whatlinkshere]]', |
164 | 171 | 'configure-setting-wgRedirectOnLogin' => 'Redirect users to this page on login', |
165 | 172 | 'configure-setting-wgSecureLogin' => 'Let user authenticate using HTTPS when they come from HTTP', |
166 | 173 | 'configure-setting-wgSortSpecialPages' => 'Sort special pages in [[Special:SpecialPages]]', |
— | — | @@ -169,6 +176,7 @@ |
170 | 177 | 'configure-setting-wgUseNPPatrol' => 'Use new pages patrolling to check for vandalism', |
171 | 178 | 'configure-setting-wgAutopromote' => 'Conditions of automatic promotion of user to specific groups', |
172 | 179 | 'configure-setting-wgAutopromote-value' => 'Conditions', |
| 180 | + 'configure-setting-wgAutopromoteOnce' => 'Conditions of automatic promotion of user to specific groups that are done only once', |
173 | 181 | 'configure-setting-wgAccountCreationThrottle' => 'Number of accounts each IP address may create', |
174 | 182 | 'configure-setting-wgAllowPageInfo' => 'Allow the information action', |
175 | 183 | 'configure-setting-wgBlockCIDRLimit' => 'Maximum CIDR range when blocking an IP range', |
— | — | @@ -212,12 +220,15 @@ |
213 | 221 | 'configure-setting-wgDebugRedirects' => 'Displays redirect location instead of actually redirecting to the target URL', |
214 | 222 | 'configure-setting-wgDebugPrintHttpHeaders' => 'Print HTTP headers for every request in the debug information', |
215 | 223 | 'configure-setting-wgDebugTimestamps' => 'Prefix debug messages with relative timestamp', |
| 224 | + 'configure-setting-wgDebugToolbar' => 'Show the debugging toolbar', |
216 | 225 | 'configure-setting-wgDevelopmentWarnings' => 'Throw PHP notices for some possible error conditions and for deprecated functions', |
| 226 | + 'configure-setting-wgDeprecationReleaseLimit' => 'Release limit for deprecation warnings', |
217 | 227 | 'configure-setting-wgShowExceptionDetails' => 'Print a complete stack trace for exceptions', |
218 | 228 | 'configure-setting-wgShowDBErrorBacktrace' => 'Print a complete stack trace for database errors', |
219 | 229 | 'configure-setting-wgShowDebug' => 'Display debug data at the bottom of the main content area', |
220 | 230 | 'configure-setting-wgShowSQLErrors' => 'Show database error pages', |
221 | 231 | 'configure-setting-wgStatsMethod' => 'Destination for wfIncrStats() data', |
| 232 | + 'configure-setting-wgAggregateStatsID' => 'ID for statistics aggregation', |
222 | 233 | 'configure-setting-wgJobRunRate' => 'Number of jobs to run per page view', |
223 | 234 | 'configure-setting-wgJobClasses' => 'Job handler classes', |
224 | 235 | 'configure-setting-wgUpdateRowsPerJob' => 'Number of rows to update per job', |
— | — | @@ -226,7 +237,8 @@ |
227 | 238 | 'configure-setting-wgSeleniumConfigFile' => 'Selenium configuration file', |
228 | 239 | 'configure-setting-wgDBtestuser' => 'Database user that only has the permission to create and drop the test databases', |
229 | 240 | 'configure-setting-wgDBtestpassword' => 'Password for $wgDBtestuser', |
230 | | - 'configure-setting-wgAPICacheHelp' => 'Cache the API help text', |
| 241 | + 'configure-setting-wgEnableJavaScriptTest' => 'Allow running of javascript test suites via [[Special:JavaScriptTest]]', |
| 242 | + 'configure-setting-wgJavaScriptTestConfig' => 'Configuration for javascript testing', |
231 | 243 | 'configure-setting-wgAPICacheHelpTimeout' => 'Timeout for the API help text cache', |
232 | 244 | 'configure-setting-wgAPIMaxDBRows' => 'Maximum number of rows to scan in API database queries', |
233 | 245 | 'configure-setting-wgAPIMaxResultSize' => 'Maximum size (in bytes) of an API result', |
— | — | @@ -265,11 +277,13 @@ |
266 | 278 | 'configure-setting-wgUseESI' => 'Required setting when using Squid3 with ESI support', |
267 | 279 | 'configure-setting-wgUseSquid' => 'Enable Squid', |
268 | 280 | 'configure-setting-wgUseXVO' => 'Send X-Vary-Options header for better caching (requires patched Squid)', |
| 281 | + 'configure-setting-wgVaryOnXFP' => 'Add X-Forwarded-Proto to the Vary and X-Vary-Options headers for API requests and RSS/Atom feeds', |
269 | 282 | 'configure-setting-wgAllowSlowParserFunctions' => 'Allow slow parser functions', |
270 | 283 | 'configure-setting-wgDisableInternalSearch' => 'Disable internal search', |
271 | 284 | 'configure-setting-wgExtensionAssetsPath' => 'URL of the extensions directory', |
272 | 285 | 'configure-setting-wgExternalStores' => 'External storage configuration', |
273 | 286 | 'configure-setting-wgSQLMode' => 'SQL mode', |
| 287 | + 'configure-setting-wgAllowSchemaUpdates' => 'Allow database schema updates to be executed with update.php script', |
274 | 288 | 'configure-setting-wgSpecialPageCacheUpdates' => 'Additional functions to be performed with updateSpecialPages.php', |
275 | 289 | 'configure-setting-wgSpecialPages' => 'Custom special pages', |
276 | 290 | 'configure-setting-wgSkinExtensionFunctions' => 'Skin extension functions', |
— | — | @@ -298,6 +312,7 @@ |
299 | 313 | 'configure-setting-wgAdvancedSearchHighlighting' => 'Enable highlighting in search results', |
300 | 314 | 'configure-setting-wgEnableMWSuggest' => 'Enable search suggestion while typing in search boxes', |
301 | 315 | 'configure-setting-wgEnableOpenSearchSuggest' => 'Enable OpenSearch suggestions requests', |
| 316 | + 'configure-setting-wgEnableSearchContributorsByIP' => 'Searching for IP addresses will redirect to their contributions page', |
302 | 317 | 'configure-setting-wgGoToEdit' => 'Go button goes straight to the edit screen if the page does not exist', |
303 | 318 | 'configure-setting-wgMWSuggestTemplate' => 'Template for internal MediaWiki suggestion engine', |
304 | 319 | 'configure-setting-wgOpenSearchTemplate' => 'Template for OpenSearch suggestions', |
— | — | @@ -311,6 +326,7 @@ |
312 | 327 | 'configure-setting-wgActiveUserDays' => 'Time after which a user is inactive', |
313 | 328 | 'configure-setting-wgDisableCounters' => 'Disable page view counters', |
314 | 329 | 'configure-setting-wgHitcounterUpdateFreq' => 'Page counter update frequency', |
| 330 | + 'configure-setting-wgArticleCountMethod' => 'Method to determine if a page in a content namespace should be counted as a valid article', |
315 | 331 | 'configure-setting-wgUseCommaCount' => 'Use comma to count as a valid page (true) or use link to count as a valid page (false) counting pages', |
316 | 332 | 'configure-setting-wgWantedPagesThreshold' => 'Minimum number of links required before a page is listed on [[Special:WantedPages]]', |
317 | 333 | 'configure-setting-wgDefaultSkin' => 'Default skin name', |
— | — | @@ -326,6 +342,7 @@ |
327 | 343 | 'configure-setting-wgExtraNamespaces' => 'Namespace overrides', |
328 | 344 | 'configure-setting-wgExtraNamespaces-key' => 'Namespace ID', |
329 | 345 | 'configure-setting-wgExtraNamespaces-value' => 'Namespace name', |
| 346 | + 'configure-setting-wgExtraGenderNamespaces' => 'Namespace overrides with gender distinction', |
330 | 347 | 'configure-setting-wgMetaNamespace' => 'Project namespace name', |
331 | 348 | 'configure-setting-wgMetaNamespaceTalk' => 'Project-talk namespace name', |
332 | 349 | 'configure-setting-wgNamespaceAliases' => 'Namespace redirects', |
— | — | @@ -342,6 +359,7 @@ |
343 | 360 | 'configure-setting-wgNonincludableNamespaces' => 'Non-includable namespaces', |
344 | 361 | 'configure-setting-wgPreviewOnOpenNamespaces' => 'Namespaces which have special treatment by having preview on open', |
345 | 362 | 'configure-setting-wgSitemapNamespaces' => 'Namespaces to place in the site map', |
| 363 | + 'configure-setting-wgSitemapNamespacesPriorities' => 'Custom namespace priorities for sitemaps', |
346 | 364 | 'configure-setting-wgCategoryMagicGallery' => 'Show a thumbnail gallery on category pages', |
347 | 365 | 'configure-setting-wgCategoryPagingLimit' => 'Paging limit for items in categories', |
348 | 366 | 'configure-setting-wgUseCategoryBrowser' => 'Enable category browser', |
— | — | @@ -349,7 +367,6 @@ |
350 | 368 | 'configure-setting-wgHTCPMulticastAddress' => 'Use HTCP multicast purging', |
351 | 369 | 'configure-setting-wgHTCPMulticastTTL' => 'TTL for HTCP multicast purging', |
352 | 370 | 'configure-setting-wgHTCPPort' => 'Port for HTCP multicast purging', |
353 | | - 'configure-setting-wgCheckCopyrightUpload' => 'Check copyright information when uploading', |
354 | 371 | 'configure-setting-wgCopyrightIcon' => 'HTML for the copyrights icon', |
355 | 372 | 'configure-setting-wgEnableCreativeCommonsRdf' => 'Include Creative Commons licensing information', |
356 | 373 | 'configure-setting-wgEnableDublinCoreRdf' => 'Use RDF metadata', |
— | — | @@ -381,7 +398,7 @@ |
382 | 399 | 'configure-setting-wgMinimalPasswordLength' => 'Minimum password length', |
383 | 400 | 'configure-setting-wgLivePasswordStrengthChecks' => 'JavaScript-based suggestions of password strength', |
384 | 401 | 'configure-setting-wgNewUserLog' => 'Maintain a new user log', |
385 | | - 'configure-setting-wgLogAutocreatedAccounts' => 'Log automatic creations of new users accounts', |
| 402 | + 'configure-setting-wgPasswordResetRoutes' => 'Allowed ways to retrieve forgotten username or password', |
386 | 403 | 'configure-setting-wgReservedUsernames' => 'Account names reserved for the software', |
387 | 404 | 'configure-setting-wgShowIPinHeader' => 'Show the IP address in the user bar', |
388 | 405 | 'configure-setting-wgBrowserBlackList' => 'Browser blacklist for Unicode non compliant browsers', |
— | — | @@ -390,6 +407,7 @@ |
391 | 408 | 'configure-setting-wgUpgradeKey' => 'Key to enable running upgrades on config/index.php', |
392 | 409 | 'configure-setting-wgCompressRevisions' => 'Compress old revisions if possible', |
393 | 410 | 'configure-setting-wgDisableOutputCompression' => 'Disable output compression', |
| 411 | + 'configure-setting-wgSend404Code' => 'Send an HTTP 404 "not found" status code on non-existing pages', |
394 | 412 | 'configure-setting-wgExternalDiffEngine' => 'External diff engine', |
395 | 413 | 'configure-setting-wgMaxShellFileSize' => 'Maximum file size created by shell processes under Linux, in KB', |
396 | 414 | 'configure-setting-wgMaxShellMemory' => 'Maximum amount of virtual memory available to shell processes under Linux, in KB', |
— | — | @@ -397,6 +415,7 @@ |
398 | 416 | 'configure-setting-wgShellLocale' => 'Locale for <code>LC_CTYPE</code>', |
399 | 417 | 'configure-setting-wgUpdateRowsPerQuery' => 'Number of rows to update per query', |
400 | 418 | 'configure-setting-wgUseAutomaticEditSummaries' => 'Use automatic edit summaries', |
| 419 | + 'configure-setting-wgUseCombinedLoginLink' => 'Use a combined link for login and account creation', |
401 | 420 | 'configure-setting-wgUseTrackbacks' => 'Use trackbacks', |
402 | 421 | 'configure-setting-wgUseTagFilter' => 'Allow filtering edits with tags in recent changes, history, etc.', |
403 | 422 | 'configure-setting-wgDisableHardRedirects' => 'Disable redirects to special pages and interwiki pages', |
— | — | @@ -420,7 +439,6 @@ |
421 | 440 | 'configure-setting-wgUsePrivateIPs' => "Use private IP addresses forwarded by a proxy server to determine a user's IP address", |
422 | 441 | 'configure-setting-wgSQLiteDataDir' => 'SQLite data directory', |
423 | 442 | 'configure-setting-wgDBmwschema' => 'Postgres schema', |
424 | | - 'configure-setting-wgDBts2schema' => 'Tsearch2 postgres schema', |
425 | 443 | 'configure-setting-wgDBmysql5' => 'Use UTF-8 encoding', |
426 | 444 | 'configure-setting-wgDBprefix' => 'Table prefix', |
427 | 445 | 'configure-setting-wgDBTableOptions' => 'MySQL table options', |
— | — | @@ -443,7 +461,9 @@ |
444 | 462 | 'configure-setting-wgSVGConverters-key' => 'Converter name', |
445 | 463 | 'configure-setting-wgSVGConverters-value' => 'Conversion command', |
446 | 464 | 'configure-setting-wgSVGMaxSize' => 'Maximum size for SVG scaling', |
| 465 | + 'configure-setting-wgSVGMetadataCutoff' => 'Maximum length to read from SVG metadata', |
447 | 466 | 'configure-setting-wgImageMagickConvertCommand' => 'ImageMagick command', |
| 467 | + 'configure-setting-wgImageMagickIdentifyCommand' => "ImageMagick's identify command", |
448 | 468 | 'configure-setting-wgImageMagickTempDir' => 'ImageMagick temporary directory', |
449 | 469 | 'configure-setting-wgSharpenParameter' => 'Sharpening parameter to ImageMagick', |
450 | 470 | 'configure-setting-wgSharpenReductionThreshold' => 'Reduction in linear dimensions below which sharpening will be enabled', |
— | — | @@ -480,14 +500,12 @@ |
481 | 501 | 'configure-setting-wgTidyOpts' => 'Options passed to tidy on the command line', |
482 | 502 | 'configure-setting-wgUseTidy' => 'Use tidy to make sure HTML output is sane', |
483 | 503 | 'configure-setting-wgValidateAllHtml' => 'Refuse to display non-valid pages', |
484 | | - 'configure-setting-wgTexvc' => 'Location of the texvc binary', |
485 | 504 | 'configure-setting-wgRawHtml' => 'Allow raw, unchecked HTML in <code><nowiki><html></nowiki></code>{{int:ellipsis}}<code><nowiki></html></nowiki></code> sections', |
486 | | - 'configure-setting-wgUseTeX' => 'Enable TeX', |
487 | | - 'configure-setting-wgTexvcBackgroundColor' => 'Texvc background color (use LaTeX color format as used in \\special function)', |
488 | | - 'configure-setting-wgMathCheckFiles' => 'Check whether directory and file exist when generating math images', |
| 505 | + 'configure-setting-wgDisableUploadScriptChecks' => 'Disable checks for scripts in uploaded files', |
489 | 506 | 'configure-setting-wgAllowJavaUploads' => 'Allow Java archive uploads', |
490 | 507 | 'configure-setting-wgXMLMimeTypes' => 'Detectable XML MIME types', |
491 | 508 | 'configure-setting-wgXMLMimeTypes-key' => 'MIME type', |
| 509 | + 'configure-setting-wgCleanupPresentationalAttributes' => 'Put as much as possible presentational HTML attributes in CSS', |
492 | 510 | 'configure-setting-wgEnableTooltipsAndAccesskeys' => 'Enable application of access keys and tooltips', |
493 | 511 | 'configure-setting-wgHtml5' => 'Output an HTML5 doctype', |
494 | 512 | 'configure-setting-wgHtml5Version' => 'Value of the version attribute in the <code><nowiki><html></nowiki></code> tag', |
— | — | @@ -508,11 +526,18 @@ |
509 | 527 | 'configure-setting-wgUseSiteJs' => "Use the site's JavaScript page", |
510 | 528 | 'configure-setting-wgHandheldStyle' => 'Style for media="handheld"', |
511 | 529 | 'configure-setting-wgHandheldForIPhone' => "Apply 'screen' and 'handheld' media types to iPhone", |
| 530 | + 'configure-setting-wgIncludeLegacyJavaScript' => 'Include the old JavaScript library and its dependencies', |
| 531 | + 'configure-setting-wgLegacyJavaScriptGlobals' => 'Assign configuration variables to the global space in JavaScript', |
| 532 | + 'configure-setting-wgResourceBasePath' => 'Default "remote base path" value for resource loader modules (<code>$wgScriptPath</code> will be used if blank)', |
512 | 533 | 'configure-setting-wgResourceLoaderDebug' => 'Debug for of ResourceLoader requests', |
513 | 534 | 'configure-setting-wgResourceLoaderInlinePrivateModules' => 'Embed private modules inline with HTML output', |
514 | 535 | 'configure-setting-wgResourceLoaderMaxage' => 'Maximum time in seconds to cache resources served by the resource loader', |
| 536 | + 'configure-setting-wgResourceLoaderMaxQueryLength' => 'Maximal query string length for resource loader calls (-1 to disable)', |
| 537 | + 'configure-setting-wgResourceLoaderMinifierMaxLineLength' => 'Maximum line length when minifying JavaScript', |
| 538 | + 'configure-setting-wgResourceLoaderMinifierStatementsOnOwnLine' => 'Put each statement on its own line when minifying JavaScript', |
515 | 539 | 'configure-setting-wgResourceLoaderUseESI' => 'Enable embedding of certain resources using Edge Side Includes', |
516 | | - 'configure-setting-wgResourceLoaderMinifyJSVerticalSpace' => 'Remove some vertical whitespace from JavaScript code when minifying', |
| 540 | + 'configure-setting-wgResourceLoaderValidateJS' => 'Parse JavaScript modules loaded from wiki pages prior to minification to validate them', |
| 541 | + 'configure-setting-wgResourceLoaderValidateStaticJS' => 'Parse JavaScript modules loaded from files prior to minification to validate them', |
517 | 542 | 'configure-setting-wgUseAjax' => 'Enable AJAX', |
518 | 543 | 'configure-setting-wgAjaxExportList' => 'Callable AJAX functions', |
519 | 544 | 'configure-setting-wgAjaxSearch' => 'Enable use of AJAX auto-suggestion for the search bar', |
— | — | @@ -542,6 +567,7 @@ |
543 | 568 | 'configure-setting-wgUseSharedUploads' => 'Use shared uploads', |
544 | 569 | 'configure-setting-wgAppleTouchIcon' => 'Apple Touch bookmark icon', |
545 | 570 | 'configure-setting-wgArticlePath' => 'Base URL of internal links within MediaWiki', |
| 571 | + 'configure-setting-wgCanonicalServer' => 'Server name with protocol to use for links to the wiki from other places', |
546 | 572 | 'configure-setting-wgDeletedDirectory' => 'File system path of the directory to place deleted uploads in', |
547 | 573 | 'configure-setting-wgDirectoryMode' => 'New directory modes', |
548 | 574 | 'configure-setting-wgDiff' => 'Path to the GNU diff utility', |
— | — | @@ -549,12 +575,10 @@ |
550 | 576 | 'configure-setting-wgFavicon' => 'URL of the site favicon', |
551 | 577 | 'configure-setting-wgFooterIcons' => 'Icons displayed on page footer', |
552 | 578 | 'configure-setting-wgLogo' => 'URL of the site logo', |
553 | | - 'configure-setting-wgMathDirectory' => 'File system path of the directory containing LaTeX math images', |
554 | | - 'configure-setting-wgMathPath' => 'URL base of the directory containing LaTeX math images', |
555 | 579 | 'configure-setting-wgLoadScript' => 'URL of load.php', |
556 | 580 | 'configure-setting-wgRedirectScript' => 'URL of redirect.php, needed for backwards compatibility', |
557 | 581 | 'configure-setting-wgPhpCli' => 'Executable name of PHP cli client (php/php5)', |
558 | | - 'configure-setting-wgProto' => 'Secure server prefix', |
| 582 | + 'configure-setting-wgExiv2Command' => 'Path to the exiv2 executable', |
559 | 583 | 'configure-setting-wgScript' => 'URL of index.php', |
560 | 584 | 'configure-setting-wgScriptExtension' => 'Extension to append to script names by default', |
561 | 585 | 'configure-setting-wgScriptPath' => 'Base URL path', |
— | — | @@ -575,6 +599,7 @@ |
576 | 600 | 'configure-setting-wgUploadStashScalerBaseUrl' => 'Path for image thumbs when doing remote on-demand scaling', |
577 | 601 | 'configure-setting-wgAllowCategorizedRecentChanges' => 'Allow to filter the recent changes by a category or one of its sub(subsubsub{{int:ellipsis}})categories', |
578 | 602 | 'configure-setting-wgPutIPinRC' => "Log IP addresses in the 'recentchanges' table", |
| 603 | + 'configure-setting-wgAutopromoteOnceLogInRC' => 'Log automatic promotion in recent changes', |
579 | 604 | 'configure-setting-wgRCChangedSizeThreshold' => 'Highlight character count difference lower than this in recent changes', |
580 | 605 | 'configure-setting-wgRCFilterByAge' => 'Filter $wgRCLinkDays to avoid showing links for values higher than $wgRCMaxAge', |
581 | 606 | 'configure-setting-wgRCLinkLimits' => 'Changes limit in recent changes', |
— | — | @@ -592,8 +617,6 @@ |
593 | 618 | 'configure-setting-wgBlockAllowsUTEdit' => 'Allow a blocked user to edit his own talk page', |
594 | 619 | 'configure-setting-wgBlockDisablesLogin' => 'Disallow blocked users to login', |
595 | 620 | 'configure-setting-wgSysopEmailBans' => 'Allow administrators to ban users from accessing [[Special:EmailUser]]', |
596 | | - 'configure-setting-wgSysopRangeBans' => 'Allow administrators to ban IP ranges', |
597 | | - 'configure-setting-wgSysopUserBans' => 'Allow administrators to ban logged-in users', |
598 | 621 | 'configure-setting-wgEnotifFromEditor' => 'E-mail notifications appear to be coming from the page editor (not from wiki server)', |
599 | 622 | 'configure-setting-wgEnotifImpersonal' => 'Send a generic e-mail instead of a personalised e-mail for each user', |
600 | 623 | 'configure-setting-wgEnotifMaxRecips' => 'Maximum number of users to e-mail at once when using impersonal e-mail', |
— | — | @@ -665,6 +688,7 @@ |
666 | 689 | 'configure-setting-wgThumbUpright' => '{{config-wg|ThumbUpright}}', |
667 | 690 | 'configure-setting-wgShowEXIF' => '{{config-wg|ShowEXIF}}', |
668 | 691 | 'configure-setting-wgThumbLimits' => '{{config-wg|ThumbLimits}}', |
| 692 | + 'configure-setting-wgExcludeFromThumbnailPurge' => '{{config-wg|ExcludeFromThumbnailPurge}}', |
669 | 693 | 'configure-setting-wgUseImageResize' => '{{config-wg|UseImageResize}}', |
670 | 694 | 'configure-setting-wgTrustedMediaFormats' => '{{config-wg|TrustedMediaFormats}}', |
671 | 695 | 'configure-setting-wgImgAuthDetails' => '{{config-wg|ImgAuthDetails}}', |
— | — | @@ -674,6 +698,7 @@ |
675 | 699 | 'configure-setting-wgDBAhandler' => '{{config-wg|DBAhandler}}', |
676 | 700 | 'configure-setting-wgCacheEpoch' => '{{config-wg|CacheEpoch}}', |
677 | 701 | 'configure-setting-wgCachePages' => '{{config-wg|CachePages}}', |
| 702 | + 'configure-setting-wgCachePrefix' => '{{config-wg|CachePrefix}}', |
678 | 703 | 'configure-setting-wgClockSkewFudge' => '{{config-wg|ClockSkewFudge}}', |
679 | 704 | 'configure-setting-wgFileCacheDirectory' => '{{config-wg|FileCacheDirectory}}', |
680 | 705 | 'configure-setting-wgForcedRawSMaxage' => '{{config-wg|ForcedRawSMaxage}}', |
— | — | @@ -751,6 +776,7 @@ |
752 | 777 | 'configure-setting-wgAllowCopyUploads' => '{{config-wg|AllowCopyUploads}}', |
753 | 778 | 'configure-setting-wgAllowAsyncCopyUploads' => "{{config-wg|AllowAsyncCopyUploads}} ''See also: [http://www.mediawiki.org/wiki/Special:Code/MediaWiki/70137 r70137].''", |
754 | 779 | 'configure-setting-wgCheckFileExtensions' => '{{config-wg|CheckFileExtensions}}', |
| 780 | + 'configure-setting-wgCopyUploadsDomains' => '{{config-wg|CopyUploadsDomains}}', |
755 | 781 | 'configure-setting-wgEnableUploads' => '{{config-wg|EnableUploads}}', |
756 | 782 | 'configure-setting-wgUploadMaintenance' => '{{config-wg|UploadMaintenance}}', |
757 | 783 | 'configure-setting-wgFileBlacklist' => '{{config-wg|FileBlacklist}}', |
— | — | @@ -786,6 +812,7 @@ |
787 | 813 | 'configure-setting-wgSpecialVersionShowHooks' => '{{config-wg|SpecialVersionShowHooks}}', |
788 | 814 | 'configure-setting-wgUseNPPatrol' => '{{config-wg|UseNPPatrol}}', |
789 | 815 | 'configure-setting-wgAutopromote' => '{{config-wg|Autopromote}}', |
| 816 | + 'configure-setting-wgAutopromoteOnce' => '{{config-wg|AutopromoteOnce}}', |
790 | 817 | 'configure-setting-wgAccountCreationThrottle' => '{{config-wg|AccountCreationThrottle}}', |
791 | 818 | 'configure-setting-wgAllowPageInfo' => '{{config-wg|AllowPageInfo}}', |
792 | 819 | 'configure-setting-wgBlockCIDRLimit' => '{{config-wg|BlockCIDRLimit}}', |
— | — | @@ -828,12 +855,15 @@ |
829 | 856 | 'configure-setting-wgDebugRedirects' => '{{config-wg|DebugRedirects}}', |
830 | 857 | 'configure-setting-wgDebugPrintHttpHeaders' => '{{config-wg|DebugPrintHttpHeaders}}', |
831 | 858 | 'configure-setting-wgDebugTimestamps' => '{{config-wg|DebugTimestamps}}', |
| 859 | + 'configure-setting-wgDebugToolbar' => '{{config-wg|DebugToolbar}}', |
832 | 860 | 'configure-setting-wgDevelopmentWarnings' => '{{config-wg|DevelopmentWarnings}}', |
| 861 | + 'configure-setting-wgDeprecationReleaseLimit' => '{{config-wg|DeprecationReleaseLimit}}', |
833 | 862 | 'configure-setting-wgShowExceptionDetails' => '{{config-wg|ShowExceptionDetails}}', |
834 | 863 | 'configure-setting-wgShowDBErrorBacktrace' => '{{config-wg|ShowDBErrorBacktrace}}', |
835 | 864 | 'configure-setting-wgShowDebug' => '{{config-wg|ShowDebug}}', |
836 | 865 | 'configure-setting-wgShowSQLErrors' => '{{config-wg|ShowSQLErrors}}', |
837 | 866 | 'configure-setting-wgStatsMethod' => '{{config-wg|StatsMethod}}', |
| 867 | + 'configure-setting-wgAggregateStatsID' => '{{config-wg|AggregateStatsID}}', |
838 | 868 | 'configure-setting-wgJobRunRate' => '{{config-wg|JobRunRate}}', |
839 | 869 | 'configure-setting-wgJobClasses' => '{{config-wg|JobClasses}}', |
840 | 870 | 'configure-setting-wgUpdateRowsPerJob' => '{{config-wg|UpdateRowsPerJob}}', |
— | — | @@ -882,6 +912,8 @@ |
883 | 913 | 'configure-setting-wgExtensionAssetsPath' => '{{config-wg|ExtensionAssetsPath}}', |
884 | 914 | 'configure-setting-wgExternalStores' => '{{config-wg|ExternalStores}}', |
885 | 915 | 'configure-setting-wgSpecialPageCacheUpdates' => '{{config-wg|SpecialPageCacheUpdates}}', |
| 916 | + 'configure-setting-wgSQLMode' => '{{config-wg|SQLMode}}', |
| 917 | + 'configure-setting-wgAllowSchemaUpdates' => '{{config-wg|AllowSchemaUpdates}}', |
886 | 918 | 'configure-setting-wgSpecialPages' => '{{config-wg|SpecialPages}}', |
887 | 919 | 'configure-setting-wgSkinExtensionFunctions' => '{{config-wg|SkinExtensionFunctions}}', |
888 | 920 | 'configure-setting-wgGroupPermissions' => '{{config-wg|GroupPermissions}}', |
— | — | @@ -916,6 +948,7 @@ |
917 | 949 | 'configure-setting-wgActiveUserDays' => '{{config-wg|ActiveUserDays}}', |
918 | 950 | 'configure-setting-wgDisableCounters' => '{{config-wg|DisableCounters}}', |
919 | 951 | 'configure-setting-wgHitcounterUpdateFreq' => '{{config-wg|HitcounterUpdateFreq}}', |
| 952 | + 'configure-setting-wgArticleCountMethod' => '{{config-wg|ArticleCountMethod}}', |
920 | 953 | 'configure-setting-wgUseCommaCount' => '{{config-wg|UseCommaCount}} |
921 | 954 | |
922 | 955 | Do not translate "(true)" and "(false)"', |
— | — | @@ -931,6 +964,7 @@ |
932 | 965 | 'configure-setting-wgExtraNamespaces' => '{{config-wg|ExtraNamespaces}} |
933 | 966 | |
934 | 967 | This setting is an array of new namespaces, but can also be used to change the name of existing namespaces. It is usually translated as an equivalent to "custom namespaces"', |
| 968 | + 'configure-setting-wgExtraGenderNamespaces' => '{{config-wg|ExtraGenderNamespaces}}', |
935 | 969 | 'configure-setting-wgMetaNamespace' => '{{config-wg|MetaNamespace}}', |
936 | 970 | 'configure-setting-wgMetaNamespaceTalk' => '{{config-wg|MetaNamespaceTalk}}', |
937 | 971 | 'configure-setting-wgNamespaceAliases' => '{{config-wg|NamespaceAliases}}', |
— | — | @@ -943,6 +977,7 @@ |
944 | 978 | 'configure-setting-wgNonincludableNamespaces' => '{{config-wg|NonincludableNamespaces}}', |
945 | 979 | 'configure-setting-wgPreviewOnOpenNamespaces' => '{{config-wg|PreviewOnOpenNamespaces}}', |
946 | 980 | 'configure-setting-wgSitemapNamespaces' => '{{config-wg|SitemapNamespaces}}', |
| 981 | + 'configure-setting-wgSitemapNamespacesPriorities' => '{{config-wg|SitemapNamespacesPriorities}}', |
947 | 982 | 'configure-setting-wgCategoryMagicGallery' => '{{config-wg|CategoryMagicGallery}}', |
948 | 983 | 'configure-setting-wgCategoryPagingLimit' => '{{config-wg|CategoryPagingLimit}}', |
949 | 984 | 'configure-setting-wgUseCategoryBrowser' => '{{config-wg|UseCategoryBrowser}}', |
— | — | @@ -1080,6 +1115,7 @@ |
1081 | 1116 | 'configure-setting-wgAllowJavaUploads' => '{{config-wg|AllowJavaUploads}}', |
1082 | 1117 | 'configure-setting-wgXMLMimeTypes' => '{{config-wg|XMLMimeTypes}}', |
1083 | 1118 | 'configure-setting-wgXMLMimeTypes-key' => '{{config-wg|XMLMimeTypes-key}}', |
| 1119 | + 'configure-setting-wgCleanupPresentationalAttributes' => '{{config-wg|CleanupPresentationalAttributes}}', |
1084 | 1120 | 'configure-setting-wgEnableTooltipsAndAccesskeys' => '{{config-wg|EnableTooltipsAndAccesskeys}}', |
1085 | 1121 | 'configure-setting-wgHtml5' => '{{config-wg|Html5}}', |
1086 | 1122 | 'configure-setting-wgHtml5Version' => '{{config-wg|Html5Version}}', |
— | — | @@ -1109,6 +1145,18 @@ |
1110 | 1146 | 'configure-setting-wgHandheldForIPhone' => "{{config-wg|HandheldForIPhone}} |
1111 | 1147 | |
1112 | 1148 | Do not translate 'screen' nor 'handheld'", |
| 1149 | + 'configure-setting-wgResourceBasePath' => '{{config-wg|ResourceBasePath}}', |
| 1150 | + 'configure-setting-wgResourceLoaderDebug' => '{{config-wg|ResourceLoaderDebug}}', |
| 1151 | + 'configure-setting-wgResourceLoaderInlinePrivateModules' => '{{config-wg|ResourceLoaderInlinePrivateModules}}', |
| 1152 | + 'configure-setting-wgResourceLoaderMaxage' => '{{config-wg|ResourceLoaderMaxage}}', |
| 1153 | + 'configure-setting-wgResourceLoaderMaxQueryLength' => '{{config-wg|ResourceLoaderMaxQueryLength}}', |
| 1154 | + 'configure-setting-wgResourceLoaderMinifierMaxLineLength' => '{{config-wg|ResourceLoaderMinifierMaxLineLength}}', |
| 1155 | + 'configure-setting-wgResourceLoaderMinifierStatementsOnOwnLine' => '{{config-wg|ResourceLoaderMinifierStatementsOnOwnLine}}', |
| 1156 | + 'configure-setting-wgResourceLoaderUseESI' => '{{config-wg|ResourceLoaderUseESI}}', |
| 1157 | + 'configure-setting-wgResourceLoaderValidateJS' => '{{config-wg|ResourceLoaderValidateJS}}', |
| 1158 | + 'configure-setting-wgResourceLoaderValidateStaticJS' => '{{config-wg|ResourceLoaderValidateStaticJS}}', |
| 1159 | + 'configure-setting-wgIncludeLegacyJavaScript' => '{{config-wg|IncludeLegacyJavaScript}}', |
| 1160 | + 'configure-setting-wgLegacyJavaScriptGlobals' => '{{config-wg|LegacyJavaScriptGlobals}}', |
1113 | 1161 | 'configure-setting-wgUseAjax' => '{{config-wg|UseAjax}}', |
1114 | 1162 | 'configure-setting-wgAjaxExportList' => '{{config-wg|AjaxExportList}}', |
1115 | 1163 | 'configure-setting-wgAjaxSearch' => '{{config-wg|AjaxSearch}}', |
— | — | @@ -1140,17 +1188,22 @@ |
1141 | 1189 | 'configure-setting-wgUseSharedUploads' => '{{config-wg|UseSharedUploads}}', |
1142 | 1190 | 'configure-setting-wgAppleTouchIcon' => '{{config-wg|AppleTouchIcon}}', |
1143 | 1191 | 'configure-setting-wgArticlePath' => '{{config-wg|ArticlePath}}', |
| 1192 | + 'configure-setting-wgCanonicalServer' => '{{config-wg|CanonicalServer}}', |
| 1193 | + 'configure-setting-wgDeletedDirectory' => '{{config-wg|DeletedDirectory}}', |
1144 | 1194 | 'configure-setting-wgDirectoryMode' => '{{config-wg|DirectoryMode}}', |
1145 | 1195 | 'configure-setting-wgDiff' => '{{config-wg|Diff}}', |
1146 | 1196 | 'configure-setting-wgDiff3' => '{{config-wg|Diff3}}', |
1147 | 1197 | 'configure-setting-wgFavicon' => "Do not translate 'favicon'", |
| 1198 | + 'configure-setting-wgFooterIcons' => '{{config-wg|FooterIcons}}', |
1148 | 1199 | 'configure-setting-wgLogo' => '{{config-wg|Logo}}', |
| 1200 | + 'configure-setting-wgLoadScript' => '{{config-wg|LoadScript}}', |
1149 | 1201 | 'configure-setting-wgMathDirectory' => '{{config-wg|MathDirectory}}', |
1150 | 1202 | 'configure-setting-wgMathPath' => '{{config-wg|MathPath}}', |
1151 | 1203 | 'configure-setting-wgRedirectScript' => '{{config-wg|RedirectScript}}', |
1152 | 1204 | 'configure-setting-wgPhpCli' => '{{config-wg|PhpCli}} |
1153 | 1205 | <code>cli</code> = command line interface. |
1154 | 1206 | <code>php</code> and <code>php5</code> are names of a program. Program names are case insensitive on some, and lowercase on most operating systems.', |
| 1207 | + 'configure-setting-wgExiv2Command' => '{{config-wg|Exiv2Command}}', |
1155 | 1208 | 'configure-setting-wgProto' => '{{config-wg|Proto}}', |
1156 | 1209 | 'configure-setting-wgScript' => '{{config-wg|Script}}', |
1157 | 1210 | 'configure-setting-wgScriptExtension' => '{{config-wg|ScriptExtension}}', |
— | — | @@ -1166,10 +1219,13 @@ |
1167 | 1220 | 'configure-setting-wgUsePathInfo' => '{{config-wg|UsePathInfo}}', |
1168 | 1221 | 'configure-setting-wgUploadDirectory' => '{{config-wg|UploadDirectory}}', |
1169 | 1222 | 'configure-setting-wgUploadNavigationUrl' => '{{config-wg|UploadNavigationUrl}}', |
| 1223 | + 'configure-setting-wgUploadMissingFileUrl' => '{{config-wg|UploadMissingFileUrl}}', |
1170 | 1224 | 'configure-setting-wgUploadPath' => '{{config-wg|UploadPath}}', |
1171 | 1225 | 'configure-setting-wgVariantArticlePath' => '{{config-wg|VariantArticlePath}}', |
| 1226 | + 'configure-setting-wgUploadStashScalerBaseUrl' => '{{config-wg|UploadStashScalerBaseUrl}}', |
1172 | 1227 | 'configure-setting-wgAllowCategorizedRecentChanges' => '{{config-wg|AllowCategorizedRecentChanges}}', |
1173 | 1228 | 'configure-setting-wgPutIPinRC' => '{{config-wg|PutIPinRC}}', |
| 1229 | + 'configure-setting-wgAutopromoteOnceLogInRC' => '{{config-wg|AutopromoteOnceLogInRC}}', |
1174 | 1230 | 'configure-setting-wgRCChangedSizeThreshold' => '{{config-wg|RCChangedSizeThreshold}}', |
1175 | 1231 | 'configure-setting-wgRCFilterByAge' => '{{config-wg|RCFilterByAge}}', |
1176 | 1232 | 'configure-setting-wgRCLinkLimits' => '{{config-wg|RCLinkLimits}}', |
Index: trunk/extensions/Configure/settings/Settings-core.php |
— | — | @@ -57,16 +57,22 @@ |
58 | 58 | 'wgUseSiteJs' => 'bool', |
59 | 59 | 'wgHandheldStyle' => 'text', |
60 | 60 | 'wgHandheldForIPhone' => 'bool', |
| 61 | + 'wgIncludeLegacyJavaScript' => 'bool', |
| 62 | + 'wgLegacyJavaScriptGlobals' => 'bool', |
61 | 63 | ), |
62 | 64 | 'resourceloader' => array( |
| 65 | + 'wgResourceBasePath' => 'text', |
63 | 66 | 'wgResourceLoaderDebug' => 'bool', |
64 | 67 | 'wgResourceLoaderInlinePrivateModules' => 'bool', |
65 | 68 | 'wgResourceLoaderMaxage' => 'array', |
| 69 | + 'wgResourceLoaderMaxQueryLength' => 'int', |
| 70 | + 'wgResourceLoaderMinifierMaxLineLength' => 'int', |
| 71 | + 'wgResourceLoaderMinifierStatementsOnOwnLine' => 'bool', |
66 | 72 | 'wgResourceLoaderUseESI' => 'bool', |
67 | | - 'wgResourceLoaderMinifyJSVerticalSpace' => 'bool', |
| 73 | + 'wgResourceLoaderValidateJS' => 'bool', |
| 74 | + 'wgResourceLoaderValidateStaticJS' => 'bool', |
68 | 75 | ), |
69 | 76 | 'performance' => array( |
70 | | - 'wgAPICacheHelp' => 'bool', |
71 | 77 | 'wgAPICacheHelpTimeout' => 'int', |
72 | 78 | 'wgAPIMaxDBRows' => 'int', |
73 | 79 | 'wgAPIMaxResultSize' => 'int', |
— | — | @@ -87,6 +93,8 @@ |
88 | 94 | 'wgSeleniumConfigFile' => 'text', |
89 | 95 | 'wgDBtestuser' => 'text', |
90 | 96 | 'wgDBtestpassword' => 'text', |
| 97 | + 'wgEnableJavaScriptTest' => 'bool', |
| 98 | + 'wgJavaScriptTestConfig' => 'array', |
91 | 99 | ), |
92 | 100 | ), |
93 | 101 | 'pages' => array( |
— | — | @@ -110,6 +118,7 @@ |
111 | 119 | 'wgCapitalLinkOverrides' => 'array', |
112 | 120 | 'wgContentNamespaces' => 'array', |
113 | 121 | 'wgExtraNamespaces' => 'array', |
| 122 | + 'wgExtraGenderNamespaces' => 'array', |
114 | 123 | 'wgMetaNamespace' => 'text', |
115 | 124 | 'wgMetaNamespaceTalk' => 'text', |
116 | 125 | 'wgNamespaceAliases' => 'array', |
— | — | @@ -122,11 +131,13 @@ |
123 | 132 | 'wgNonincludableNamespaces' => 'array', |
124 | 133 | 'wgPreviewOnOpenNamespaces' => 'array', |
125 | 134 | 'wgSitemapNamespaces' => 'array', |
| 135 | + 'wgSitemapNamespacesPriorities' => 'array', |
126 | 136 | ), |
127 | 137 | ), |
128 | 138 | 'groups' => array( |
129 | 139 | 'groups' => array( |
130 | 140 | 'wgAutopromote' => 'array', |
| 141 | + 'wgAutopromoteOnce' => 'array', |
131 | 142 | 'wgImplicitGroups' => 'array', |
132 | 143 | 'wgGroupPermissions' => 'array', |
133 | 144 | 'wgRevokePermissions' => 'array', |
— | — | @@ -141,14 +152,12 @@ |
142 | 153 | 'wgActionPaths' => 'array', |
143 | 154 | 'wgAppleTouchIcon' => 'text', |
144 | 155 | 'wgArticlePath' => 'text', |
| 156 | + 'wgCanonicalServer' => 'text', |
145 | 157 | 'wgDeletedDirectory' => 'text', |
146 | 158 | 'wgFavicon' => 'text', |
147 | 159 | 'wgFooterIcons' => 'array', |
148 | | - 'wgMathDirectory' => 'text', |
149 | | - 'wgMathPath' => 'text', |
150 | 160 | 'wgLoadScript' => 'text', |
151 | 161 | 'wgRedirectScript' => 'text', |
152 | | - 'wgProto' => 'text', |
153 | 162 | 'wgScript' => 'text', |
154 | 163 | 'wgScriptExtension' => 'text', |
155 | 164 | 'wgScriptPath' => 'text', |
— | — | @@ -171,8 +180,8 @@ |
172 | 181 | 'wgDiff' => 'text', |
173 | 182 | 'wgDiff3' => 'text', |
174 | 183 | 'wgPhpCli' => 'text', |
175 | | - 'wgTexvc' => 'text', |
176 | 184 | 'wgExternalDiffEngine' => 'text', |
| 185 | + 'wgExiv2Command' => 'text', |
177 | 186 | ), |
178 | 187 | 'filesystem' => array( |
179 | 188 | 'wgDirectoryMode' => 'int', |
— | — | @@ -204,6 +213,7 @@ |
205 | 214 | 'wgUseDumbLinkUpdate' => 'bool', |
206 | 215 | 'wgExternalStores' => 'array', |
207 | 216 | 'wgSQLMode' => 'text', |
| 217 | + 'wgAllowSchemaUpdates' => 'bool', |
208 | 218 | ), |
209 | 219 | 'load-balancing' => array( |
210 | 220 | 'wgDBClusterTimeout' => 'int', |
— | — | @@ -223,7 +233,6 @@ |
224 | 234 | ), |
225 | 235 | 'postgres' => array( |
226 | 236 | 'wgDBmwschema' => 'text', |
227 | | - 'wgDBts2schema' => 'text', |
228 | 237 | ), |
229 | 238 | 'sqlite' => array( |
230 | 239 | 'wgSQLiteDataDir' => 'text', |
— | — | @@ -282,6 +291,7 @@ |
283 | 292 | ), |
284 | 293 | 'output' => array( |
285 | 294 | 'output' => array( |
| 295 | + 'wgCleanupPresentationalAttributes' => 'bool', |
286 | 296 | 'wgEnableTooltipsAndAccesskeys' => 'bool', |
287 | 297 | 'wgHtml5' => 'bool', |
288 | 298 | 'wgWellFormedXml' => 'bool', |
— | — | @@ -294,6 +304,7 @@ |
295 | 305 | 'wgAllowRdfaAttributes' => 'bool', |
296 | 306 | 'wgHtml5Version' => 'text', |
297 | 307 | 'wgDisableOutputCompression' => 'bool', |
| 308 | + 'wgSend404Code' => 'bool', |
298 | 309 | ), |
299 | 310 | ), |
300 | 311 | 'debug' => array( |
— | — | @@ -308,12 +319,15 @@ |
309 | 320 | 'wgDebugRedirects' => 'bool', |
310 | 321 | 'wgDebugPrintHttpHeaders' => 'bool', |
311 | 322 | 'wgDebugTimestamps' => 'bool', |
| 323 | + 'wgDebugToolbar' => 'bool', |
312 | 324 | 'wgDevelopmentWarnings' => 'bool', |
| 325 | + 'wgDeprecationReleaseLimit' => 'text', |
313 | 326 | 'wgShowDebug' => 'bool', |
314 | 327 | 'wgShowExceptionDetails' => 'bool', |
315 | 328 | 'wgShowDBErrorBacktrace' => 'bool', |
316 | 329 | 'wgShowSQLErrors' => 'bool', |
317 | 330 | 'wgStatsMethod' => array( 'cache' => 'Cache', 'udp' => 'UDP', 0 => 'None' ), |
| 331 | + 'wgAggregateStatsID' => 'text', |
318 | 332 | ), |
319 | 333 | 'profiling' => array( |
320 | 334 | 'wgDebugFunctionEntry' => 'bool', |
— | — | @@ -333,6 +347,7 @@ |
334 | 348 | 'wgCountCategorizedImagesAsUsed' => 'bool', |
335 | 349 | 'wgDisableCounters' => 'bool', |
336 | 350 | 'wgHitcounterUpdateFreq' => 'int', |
| 351 | + 'wgArticleCountMethod' => array( 'all' => 'All', 'comma' => 'Comma', 'link' => 'Link' ), |
337 | 352 | 'wgUseCommaCount' => 'bool', |
338 | 353 | 'wgWantedPagesThreshold' => 'int', |
339 | 354 | ), |
— | — | @@ -366,6 +381,7 @@ |
367 | 382 | 'wgCacheDirectory' => 'text', |
368 | 383 | 'wgCacheEpoch' => 'text', |
369 | 384 | 'wgCachePages' => 'bool', |
| 385 | + 'wgCachePrefix' => 'text', |
370 | 386 | 'wgClockSkewFudge' => 'int', |
371 | 387 | 'wgInvalidateCacheOnLocalSettingsChange' => 'bool', |
372 | 388 | 'wgFileCacheDirectory' => 'text', |
— | — | @@ -446,8 +462,6 @@ |
447 | 463 | 'wgBlockDisablesLogin' => 'bool', |
448 | 464 | 'wgBlockCIDRLimit' => 'int', |
449 | 465 | 'wgSysopEmailBans' => 'bool', |
450 | | - 'wgSysopRangeBans' => 'bool', |
451 | | - 'wgSysopUserBans' => 'bool', |
452 | 466 | 'wgAutoblockExpiry' => 'int', |
453 | 467 | ), |
454 | 468 | 'filter' => array( |
— | — | @@ -471,6 +485,8 @@ |
472 | 486 | 'wgAllowCopyUploads' => 'bool', |
473 | 487 | 'wgAllowAsyncCopyUploads' => 'bool', |
474 | 488 | 'wgCheckFileExtensions' => 'bool', |
| 489 | + 'wgCopyUploadsDomains' => 'array', |
| 490 | + 'wgDisableUploadScriptChecks' => 'bool', |
475 | 491 | 'wgAllowJavaUploads' => 'bool', |
476 | 492 | 'wgFileBlacklist' => 'array', |
477 | 493 | 'wgFileExtensions' => 'array', |
— | — | @@ -480,6 +496,7 @@ |
481 | 497 | 'wgStrictFileExtensions' => 'bool', |
482 | 498 | 'wgUploadSizeWarning' => 'int', |
483 | 499 | 'wgMaxUploadSize' => 'int', |
| 500 | + 'wgUploadStashMaxAge' => 'int', |
484 | 501 | 'wgHTTPTimeout' => 'int', |
485 | 502 | 'wgHTTPProxy' => 'text', |
486 | 503 | 'wgAsyncHTTPTimeout' => 'int', |
— | — | @@ -520,12 +537,14 @@ |
521 | 538 | 'wgMaxImageArea' => 'int', |
522 | 539 | 'wgMediaHandlers' => 'array', |
523 | 540 | 'wgShowEXIF' => 'bool', |
| 541 | + 'wgUpdateCompatibleMetadata' => 'bool', |
524 | 542 | 'wgTrustedMediaFormats' => 'array', |
525 | 543 | 'wgImgAuthDetails' => 'bool', |
526 | 544 | 'wgImgAuthPublicTest' => 'bool', |
527 | 545 | ), |
528 | 546 | 'thumbnail' => array( |
529 | 547 | 'wgUseImageResize' => 'bool', |
| 548 | + 'wgEnableAutoRotation' => 'bool', |
530 | 549 | 'wgTiffThumbnailType' => 'array', |
531 | 550 | 'wgThumbnailEpoch' => 'text', |
532 | 551 | 'wgThumbnailScriptPath' => 'text', |
— | — | @@ -533,6 +552,7 @@ |
534 | 553 | 'wgGenerateThumbnailOnParse' => 'bool', |
535 | 554 | 'wgShowArchiveThumbnails' => 'bool', |
536 | 555 | 'wgThumbLimits' => 'array', |
| 556 | + 'wgExcludeFromThumbnailPurge' => 'array', |
537 | 557 | ), |
538 | 558 | 'djvu' => array( |
539 | 559 | 'wgDjvuDump' => 'text', |
— | — | @@ -544,6 +564,7 @@ |
545 | 565 | ), |
546 | 566 | 'imagemagick' => array( |
547 | 567 | 'wgImageMagickConvertCommand' => 'text', |
| 568 | + 'wgImageMagickIdentifyCommand' => 'text', |
548 | 569 | 'wgImageMagickTempDir' => 'text', |
549 | 570 | 'wgSharpenParameter' => 'int', |
550 | 571 | 'wgSharpenReductionThreshold' => 'text', |
— | — | @@ -555,6 +576,7 @@ |
556 | 577 | 'wgSVGConverterPath' => 'text', |
557 | 578 | 'wgSVGConverters' => 'array', |
558 | 579 | 'wgSVGMaxSize' => 'int', |
| 580 | + 'wgSVGMetadataCutoff' => 'int', |
559 | 581 | ), |
560 | 582 | 'antivirus' => array( |
561 | 583 | 'wgAntivirus' => 'text', |
— | — | @@ -591,11 +613,6 @@ |
592 | 614 | 'html' => array( |
593 | 615 | 'wgRawHtml' => 'bool', |
594 | 616 | ), |
595 | | - 'tex' => array( |
596 | | - 'wgUseTeX' => 'bool', |
597 | | - 'wgTexvcBackgroundColor' => 'text', |
598 | | - 'wgMathCheckFiles' => 'bool', |
599 | | - ), |
600 | 617 | 'tidy' => array( |
601 | 618 | 'wgAlwaysUseTidy' => 'bool', |
602 | 619 | 'wgDebugTidy' => 'bool', |
— | — | @@ -610,6 +627,7 @@ |
611 | 628 | 'specialpages' => array( |
612 | 629 | 'specialpages' => array( |
613 | 630 | 'wgAllowSpecialInclusion' => 'bool', |
| 631 | + 'wgExportAllowAll' => 'bool', |
614 | 632 | 'wgExportAllowHistory' => 'bool', |
615 | 633 | 'wgExportAllowListContributors' => 'bool', |
616 | 634 | 'wgExportFromNamespaces' => 'bool', |
— | — | @@ -620,6 +638,7 @@ |
621 | 639 | 'wgImportTargetNamespace' => 'text', |
622 | 640 | 'wgLogRestrictions' => 'array', |
623 | 641 | 'wgMaxRedirectLinksRetrieved' => 'int', |
| 642 | + 'wgQueryPageDefaultLimit' => 'int', |
624 | 643 | 'wgSecureLogin' => 'bool', |
625 | 644 | 'wgRedirectOnLogin' => 'text', |
626 | 645 | 'wgSortSpecialPages' => 'bool', |
— | — | @@ -630,6 +649,7 @@ |
631 | 650 | 'recentchanges' => array( |
632 | 651 | 'wgAllowCategorizedRecentChanges' => 'bool', |
633 | 652 | 'wgPutIPinRC' => 'bool', |
| 653 | + 'wgAutopromoteOnceLogInRC' => 'bool', |
634 | 654 | 'wgRCChangedSizeThreshold' => 'int', |
635 | 655 | 'wgRCFilterByAge' => 'bool', |
636 | 656 | 'wgRCLinkLimits' => 'array', |
— | — | @@ -651,7 +671,6 @@ |
652 | 672 | 'wgAutoConfirmAge' => 'int', |
653 | 673 | 'wgAutoConfirmCount' => 'int', |
654 | 674 | 'wgAllowRealName' => 'bool', |
655 | | - 'wgAllowUserSkin' => 'bool', |
656 | 675 | 'wgAllowUserCssPrefs' => 'bool', |
657 | 676 | 'wgDefaultUserOptions' => 'array', |
658 | 677 | 'wgDisableAnonTalk' => 'bool', |
— | — | @@ -662,8 +681,8 @@ |
663 | 682 | 'wgMaxSigChars' => 'int', |
664 | 683 | 'wgMinimalPasswordLength' => 'int', |
665 | 684 | 'wgLivePasswordStrengthChecks' => 'bool', |
| 685 | + 'wgPasswordResetRoutes' => 'array', |
666 | 686 | 'wgNewUserLog' => 'bool', |
667 | | - 'wgLogAutocreatedAccounts' => 'bool', |
668 | 687 | 'wgReservedUsernames' => 'array', |
669 | 688 | 'wgShowIPinHeader' => 'bool', |
670 | 689 | 'wgBrowserBlackList' => 'array', |
— | — | @@ -706,7 +725,6 @@ |
707 | 726 | ), |
708 | 727 | 'copyright' => array( |
709 | 728 | 'copyright' => array( |
710 | | - 'wgCheckCopyrightUpload' => 'bool', |
711 | 729 | 'wgCopyrightIcon' => 'text', |
712 | 730 | 'wgEnableCreativeCommonsRdf' => 'bool', |
713 | 731 | 'wgEnableDublinCoreRdf' => 'bool', |
— | — | @@ -726,6 +744,7 @@ |
727 | 745 | 'wgAdvancedSearchHighlighting' => 'bool', |
728 | 746 | 'wgEnableMWSuggest' => 'bool', |
729 | 747 | 'wgEnableOpenSearchSuggest' => 'bool', |
| 748 | + 'wgEnableSearchContributorsByIP' => 'bool', |
730 | 749 | 'wgGoToEdit' => 'bool', |
731 | 750 | 'wgMWSuggestTemplate' => 'text', |
732 | 751 | 'wgOpenSearchTemplate' => 'text', |
— | — | @@ -762,6 +781,7 @@ |
763 | 782 | 'wgUseESI' => 'bool', |
764 | 783 | 'wgUsePrivateIPs' => 'bool', |
765 | 784 | 'wgUseXVO' => 'bool', |
| 785 | + 'wgVaryOnXFP' => 'bool', |
766 | 786 | ), |
767 | 787 | 'htcp' => array( |
768 | 788 | 'wgHTCPMulticastAddress' => 'text', |
— | — | @@ -800,6 +820,7 @@ |
801 | 821 | 'wgCrossSiteAJAXdomainExceptions' => 'simple', |
802 | 822 | 'wgDisableQueryPageUpdate' => 'simple', |
803 | 823 | 'wgPoolCounterConf' => 'array', |
| 824 | + 'wgJavaScriptTestConfig' => 'array', |
804 | 825 | # Pages |
805 | 826 | 'wgInvalidRedirectTargets' => 'simple', |
806 | 827 | 'wgArticleRobotPolicies' => 'assoc', |
— | — | @@ -809,6 +830,7 @@ |
810 | 831 | 'wgContentNamespaces' => 'ns-simple', |
811 | 832 | 'wgCapitalLinkOverrides' => 'ns-bool', |
812 | 833 | 'wgExtraNamespaces' => 'assoc', |
| 834 | + 'wgExtraGenderNamespaces' => 'array', |
813 | 835 | 'wgNamespaceAliases' => 'assoc', |
814 | 836 | 'wgNamespaceProtection' => 'ns-array', |
815 | 837 | 'wgNamespaceRobotPolicies' => 'ns-text', |
— | — | @@ -819,8 +841,10 @@ |
820 | 842 | 'wgNonincludableNamespaces' => 'ns-simple', |
821 | 843 | 'wgPreviewOnOpenNamespaces' => 'ns-bool', |
822 | 844 | 'wgSitemapNamespaces' => 'ns-simple', |
| 845 | + 'wgSitemapNamespacesPriorities' => 'array', |
823 | 846 | # Groups |
824 | 847 | 'wgAutopromote' => 'promotion-conds', |
| 848 | + 'wgAutopromoteOnce' => 'array', |
825 | 849 | 'wgImplicitGroups' => 'simple', |
826 | 850 | 'wgGroupPermissions' => 'group-bool', |
827 | 851 | 'wgRevokePermissions' => 'group-bool', |
— | — | @@ -871,6 +895,7 @@ |
872 | 896 | 'wgFileBlacklist' => 'simple', |
873 | 897 | 'wgFileExtensions' => 'simple', |
874 | 898 | 'wgFileStore' => 'array', |
| 899 | + 'wgCopyUploadsDomains' => 'simple', |
875 | 900 | 'wgLocalFileRepo' => 'assoc', |
876 | 901 | 'wgForeignFileRepos' => 'array', |
877 | 902 | 'wgMimeTypeBlacklist' => 'simple', |
— | — | @@ -881,6 +906,7 @@ |
882 | 907 | 'wgTrustedMediaFormats' => 'simple', |
883 | 908 | 'wgTiffThumbnailType' => 'simple', |
884 | 909 | 'wgThumbLimits' => 'simple', |
| 910 | + 'wgExcludeFromThumbnailPurge' => 'simple', |
885 | 911 | 'wgSVGConverters' => 'assoc', |
886 | 912 | 'wgAntivirusSetup' => 'array', |
887 | 913 | # Parser |
— | — | @@ -897,6 +923,7 @@ |
898 | 924 | 'wgRCLinkDays' => 'simple', |
899 | 925 | # Users |
900 | 926 | 'wgDefaultUserOptions' => 'assoc', |
| 927 | + 'wgPasswordResetRoutes' => 'array', |
901 | 928 | 'wgReservedUsernames' => 'simple', |
902 | 929 | 'wgBrowserBlackList' => 'simple', |
903 | 930 | 'wgExternalAuthConf' => 'array', |
— | — | @@ -943,6 +970,7 @@ |
944 | 971 | 'wgHandheldStyle' => false, |
945 | 972 | 'wgMetaNamespaceTalk' => false, |
946 | 973 | 'wgCacheDirectory' => false, |
| 974 | + 'wgCachePrefix' => false, |
947 | 975 | 'wgInterwikiCache' => false, |
948 | 976 | 'wgReadOnly' => null, |
949 | 977 | 'wgRateLimitLog' => null, |
— | — | @@ -985,6 +1013,8 @@ |
986 | 1014 | 'wgAPIRequestLog' => false, |
987 | 1015 | 'wgExternalAuthType' => null, |
988 | 1016 | 'wgHtml5Version' => null, |
| 1017 | + 'wgAggregateStatsID' => false, |
| 1018 | + 'wgResourceBasePath' => null, |
989 | 1019 | ); |
990 | 1020 | |
991 | 1021 | /** |
— | — | @@ -1001,10 +1031,9 @@ |
1002 | 1032 | 'wgDirectoryMode', |
1003 | 1033 | 'wgDiff', |
1004 | 1034 | 'wgDiff3', |
| 1035 | + 'wgPhpCli', |
| 1036 | + 'wgExiv2Command', |
1005 | 1037 | 'wgFavicon', |
1006 | | - 'wgMathDirectory', |
1007 | | - 'wgMathPath', |
1008 | | - 'wgProto', |
1009 | 1038 | 'wgLoadScript', |
1010 | 1039 | 'wgRedirectScript', |
1011 | 1040 | 'wgScript', |
— | — | @@ -1137,14 +1166,43 @@ |
1138 | 1167 | * Array of settings depending of the Core version |
1139 | 1168 | */ |
1140 | 1169 | $settingsVersion = array( |
1141 | | - # Added in 1.18 |
1142 | | - 'wgAllowJavaUploads' => array( array( '1.18alpha', '>=' ) ), |
1143 | | - 'wgDBtestuser' => array( array( '1.18alpha', '>=' ) ), |
1144 | | - 'wgDBtestpassword' => array( array( '1.18alpha', '>=' ) ), |
1145 | | - 'wgUseCombinedLoginLink' => array( array( '1.18alpha', '>=' ) ), |
1146 | | - 'wgUserEmailConfirmationTokenExpiry' => array( array( '1.18alpha', '>=' ) ), |
| 1170 | + # Added in 1.19 |
| 1171 | + 'wgAllowSchemaUpdates' => array( array( '1.19alpha', '>=' ) ), |
| 1172 | + 'wgCachePrefix' => array( array( '1.19alpha', '>=' ) ), |
| 1173 | + 'wgCleanupPresentationalAttributes' => array( array( '1.19alpha', '>=' ) ), |
| 1174 | + 'wgCopyUploadsDomains' => array( array( '1.19alpha', '>=' ) ), |
| 1175 | + 'wgDebugToolbar' => array( array( '1.19alpha', '>=' ) ), |
| 1176 | + 'wgDeprecationReleaseLimit' => array( array( '1.19alpha', '>=' ) ), |
| 1177 | + 'wgDisableUploadScriptChecks' => array( array( '1.19alpha', '>=' ) ), |
| 1178 | + 'wgEnableAutoRotation' => array( array( '1.19alpha', '>=' ) ), |
| 1179 | + 'wgEnableJavaScriptTest' => array( array( '1.19alpha', '>=' ) ), |
| 1180 | + 'wgEnableSearchContributorsByIP' => array( array( '1.19alpha', '>=' ) ), |
| 1181 | + 'wgExportAllowAll' => array( array( '1.19alpha', '>=' ) ), |
| 1182 | + 'wgImageMagickIdentifyCommand' => array( array( '1.19alpha', '>=' ) ), |
| 1183 | + 'wgJavaScriptTestConfig' => array( array( '1.19alpha', '>=' ) ), |
| 1184 | + 'wgPasswordResetRoutes' => array( array( '1.19alpha', '>=' ) ), |
| 1185 | + 'wgQueryPageDefaultLimit' => array( array( '1.19alpha', '>=' ) ), |
| 1186 | + 'wgResourceBasePath' => array( array( '1.19alpha', '>=' ) ), |
| 1187 | + 'wgResourceLoaderMaxQueryLength' => array( array( '1.19alpha', '>=' ) ), |
| 1188 | + 'wgResourceLoaderMinifierMaxLineLength' => array( array( '1.19alpha', '>=' ) ), |
| 1189 | + 'wgResourceLoaderMinifierStatementsOnOwnLine' => array( array( '1.19alpha', '>=' ) ), |
| 1190 | + 'wgResourceLoaderValidateJS' => array( array( '1.19alpha', '>=' ) ), |
| 1191 | + 'wgResourceLoaderValidateStaticJS' => array( array( '1.19alpha', '>=' ) ), |
| 1192 | + 'wgSend404Code' => array( array( '1.19alpha', '>=' ) ), |
| 1193 | + 'wgSitemapNamespacesPriorities' => array( array( '1.19alpha', '>=' ) ), |
| 1194 | + 'wgSVGMetadataCutoff' => array( array( '1.19alpha', '>=' ) ), |
| 1195 | + 'wgUpdateCompatibleMetadata' => array( array( '1.19alpha', '>=' ) ), |
| 1196 | + 'wgUploadStashMaxAge' => array( array( '1.19alpha', '>=' ) ), |
| 1197 | + 'wgVaryOnXFP' => array( array( '1.19alpha', '>=' ) ), |
1147 | 1198 | |
1148 | | - # Removed in 1.18 |
1149 | | - 'wgAPICacheHelp' => array( array( '1.18alpha', '<' ) ), |
1150 | | - 'wgDBts2schema' => array( array( '1.18alpha', '<' ) ), |
| 1199 | + # Removed in 1.19 |
| 1200 | + 'wgEnableCreativeCommonsRdf' => array( array( '1.19alpha', '<' ) ), |
| 1201 | + 'wgEnableDublinCoreRdf' => array( array( '1.19alpha', '<' ) ), |
| 1202 | + 'wgExtraRandompageSQL' => array( array( '1.19alpha', '<' ) ), |
| 1203 | + 'wgRateLimitsExcludedGroups' => array( array( '1.19alpha', '<' ) ), |
| 1204 | + 'wgEnableTooltipsAndAccesskeys' => array( array( '1.19alpha', '<' ) ), |
| 1205 | + 'wgExcludeFromThumbnailPurge' => array( array( '1.19alpha', '<' ) ), |
| 1206 | + 'wgLivePasswordStrengthChecks' => array( array( '1.19alpha', '<' ) ), |
| 1207 | + 'wgUseTrackbacks' => array( array( '1.19alpha', '<' ) ), |
| 1208 | + 'wgVectorShowVariantName' => array( array( '1.19alpha', '<' ) ), |
1151 | 1209 | ); |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'author' => array( 'Alexandre Emsenhuber', 'Andrew Garrett' ), |
19 | 19 | 'url' => 'https://www.mediawiki.org/wiki/Extension:Configure', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.17.1', |
| 21 | + 'version' => '0.17.2', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | # Configuration part |