X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27user%27%2C%20userid=session.user.id%29%20%7D%7D?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=731abb54be6163dcf592156ea98f28d93b14beb0;hb=954b695a850309818c687d904775fe41972d4f36;hp=443346135d91e9ad55a63a84000fc30c2c8730c6;hpb=cfa70ea6d003ae69d52aad67a543912449c71e00;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 443346135d..731abb54be 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -71,7 +71,7 @@ $wgConfigRegistry = [ * MediaWiki version number * @since 1.2 */ -$wgVersion = '1.32.0-alpha'; +$wgVersion = '1.33.0-alpha'; /** * Name of the site. It must be changed in LocalSettings.php @@ -2736,6 +2736,7 @@ $wgUseSquid = false; /** * If you run Squid3 with ESI support, enable this (default:false): + * @deprecated in 1.33. This was a now-defunct experimental feature. */ $wgUseESI = false; @@ -2849,6 +2850,7 @@ $wgSquidServersNoPurge = []; * reverse). * * @since 1.21 + * @deprecated since 1.33, will always be true in a future release. */ $wgSquidPurgeUseHostHeader = true; @@ -2896,11 +2898,6 @@ $wgSquidPurgeUseHostHeader = true; * @endcode * * @since 1.22 - * - * $wgHTCPRouting replaces $wgHTCPMulticastRouting that was introduced in 1.20. - * For back compatibility purposes, whenever its array is empty - * $wgHTCPMutlicastRouting will be used as a fallback if it not null. - * * @see $wgHTCPMulticastTTL */ $wgHTCPRouting = []; @@ -3002,8 +2999,11 @@ $wgExtraLanguageNames = []; * @since 1.29 */ $wgExtraLanguageCodes = [ + // Language codes of macro languages, which get mapped to the main language 'bh' => 'bho', // Bihari language family 'no' => 'nb', // Norwegian language family + + // Language variants which get mapped to the main language 'simple' => 'en', // Simple English ]; @@ -3022,6 +3022,8 @@ $wgDummyLanguageCodes = []; * * Note that pages with titles containing presentation forms will become * inaccessible, run maintenance/cleanupTitles.php to fix this. + * + * @deprecated since 1.33: in the future will always be true. */ $wgFixArabicUnicode = true; @@ -3033,6 +3035,8 @@ $wgFixArabicUnicode = true; * * If you enable this on an existing wiki, run maintenance/cleanupTitles.php to * fix any ZWJ sequences in existing page titles. + * + * @deprecated since 1.33: in the future will always be true. */ $wgFixMalayalamUnicode = true; @@ -4567,10 +4571,6 @@ $wgAuthManagerConfig = null; */ $wgAuthManagerAutoConfig = [ 'preauth' => [ - MediaWiki\Auth\LegacyHookPreAuthenticationProvider::class => [ - 'class' => MediaWiki\Auth\LegacyHookPreAuthenticationProvider::class, - 'sort' => 0, - ], MediaWiki\Auth\ThrottlePreAuthenticationProvider::class => [ 'class' => MediaWiki\Auth\ThrottlePreAuthenticationProvider::class, 'sort' => 0, @@ -9000,15 +9000,6 @@ $wgMultiContentRevisionSchemaMigrationStage = SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_ */ $wgActorTableSchemaMigrationStage = SCHEMA_COMPAT_OLD; -/** - * Temporary option to disable the date picker from the Expiry Widget. - * - * @since 1.32 - * @deprecated 1.32 - * @var bool - */ -$wgExpiryWidgetNoDatePicker = false; - /** * change_tag table schema migration stage. * @@ -9035,6 +9026,16 @@ $wgChangeTagsSchemaMigrationStage = MIGRATION_WRITE_BOTH; */ $wgTagStatisticsNewTable = false; +/** + * Flag to enable Partial Blocks. This allows an admin to prevent a user from editing specific pages + * or namespaces. + * + * @since 1.32 + * @deprecated 1.32 + * @var bool + */ +$wgEnablePartialBlocks = false; + /** * For really cool vim folding this needs to be at the end: * vim: foldmarker=@{,@} foldmethod=marker