X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=f34b00aea11ad263eb91704312898ea3d6c2932a;hb=21551d2d15f2262695ad9d56d38ae0af7d942ad9;hp=ae5cef5e1d06f02143cb0257dd721b47030295f1;hpb=b610a3b617f7616b2f1db12498cbad5aeae12576;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index ae5cef5e1d..f34b00aea1 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -71,7 +71,7 @@ $wgConfigRegistry = [ * MediaWiki version number * @since 1.2 */ -$wgVersion = '1.31.0-alpha'; +$wgVersion = '1.32.0-alpha'; /** * Name of the site. It must be changed in LocalSettings.php @@ -3265,12 +3265,6 @@ $wgSiteNotice = ''; */ $wgSiteSupportPage = ''; -/** - * Validate the overall output using tidy and refuse - * to display the page if it's not valid. - */ -$wgValidateAllHtml = false; - /** * Default skin, for new users and anonymous visitors. Registered users may * change this to any one of the other available skins in their preferences. @@ -3311,9 +3305,10 @@ $wgAllowUserJs = false; $wgAllowUserCss = false; /** - * Allow user-preferences implemented in CSS? - * This allows users to customise the site appearance to a greater - * degree; disabling it will improve page load times. + * Allow style-related user-preferences? + * + * This controls whether the `editfont` and `underline` preferences + * are availabe to users. */ $wgAllowUserCssPrefs = true; @@ -4269,8 +4264,9 @@ $wgAllowImageTag = false; /** * Configuration for HTML postprocessing tool. Set this to a configuration - * array to enable an external tool. Dave Raggett's "HTML Tidy" is typically - * used. See https://www.w3.org/People/Raggett/tidy/ + * array to enable an external tool. By default, we now use the RemexHtml + * library; historically, Dave Raggett's "HTML Tidy" was typically used. + * See https://www.w3.org/People/Raggett/tidy/ * * If this is null and $wgUseTidy is true, the deprecated configuration * parameters will be used instead. @@ -4291,7 +4287,7 @@ $wgAllowImageTag = false; * - tidyBin: For RaggettExternal, the path to the tidy binary. * - tidyCommandLine: For RaggettExternal, additional command line options. */ -$wgTidyConfig = null; +$wgTidyConfig = [ 'driver' => 'RemexHtml' ]; /** * Set this to true to use the deprecated tidy configuration parameters. @@ -4438,7 +4434,6 @@ $wgEnableMagicLinks = [ * * This variable can have the following values: * - 'any': all pages as considered as valid articles - * - 'comma': the page must contain a comma to be considered valid * - 'link': the page must contain a [[wiki link]] to be considered valid * * See also See https://www.mediawiki.org/wiki/Manual:Article_count @@ -5127,8 +5122,6 @@ $wgGroupPermissions['*']['edit'] = true; $wgGroupPermissions['*']['createpage'] = true; $wgGroupPermissions['*']['createtalk'] = true; $wgGroupPermissions['*']['writeapi'] = true; -$wgGroupPermissions['*']['editmyusercss'] = true; -$wgGroupPermissions['*']['editmyuserjs'] = true; $wgGroupPermissions['*']['viewmywatchlist'] = true; $wgGroupPermissions['*']['editmywatchlist'] = true; $wgGroupPermissions['*']['viewmyprivateinfo'] = true; @@ -5151,6 +5144,9 @@ $wgGroupPermissions['user']['upload'] = true; $wgGroupPermissions['user']['reupload'] = true; $wgGroupPermissions['user']['reupload-shared'] = true; $wgGroupPermissions['user']['minoredit'] = true; +$wgGroupPermissions['user']['editmyusercss'] = true; +$wgGroupPermissions['user']['editmyuserjson'] = true; +$wgGroupPermissions['user']['editmyuserjs'] = true; $wgGroupPermissions['user']['purge'] = true; $wgGroupPermissions['user']['sendemail'] = true; $wgGroupPermissions['user']['applychangetags'] = true; @@ -5185,6 +5181,7 @@ $wgGroupPermissions['sysop']['deletedtext'] = true; $wgGroupPermissions['sysop']['undelete'] = true; $wgGroupPermissions['sysop']['editinterface'] = true; $wgGroupPermissions['sysop']['editusercss'] = true; +$wgGroupPermissions['sysop']['edituserjson'] = true; $wgGroupPermissions['sysop']['edituserjs'] = true; $wgGroupPermissions['sysop']['import'] = true; $wgGroupPermissions['sysop']['importupload'] = true; @@ -5813,8 +5810,10 @@ $wgGrantPermissions['editpage']['changetags'] = true; $wgGrantPermissions['editprotected'] = $wgGrantPermissions['editpage']; $wgGrantPermissions['editprotected']['editprotected'] = true; +// FIXME: Rename editmycssjs to editmyconfig $wgGrantPermissions['editmycssjs'] = $wgGrantPermissions['editpage']; $wgGrantPermissions['editmycssjs']['editmyusercss'] = true; +$wgGrantPermissions['editmycssjs']['editmyuserjson'] = true; $wgGrantPermissions['editmycssjs']['editmyuserjs'] = true; $wgGrantPermissions['editmyoptions']['editmyoptions'] = true; @@ -5822,6 +5821,7 @@ $wgGrantPermissions['editmyoptions']['editmyoptions'] = true; $wgGrantPermissions['editinterface'] = $wgGrantPermissions['editpage']; $wgGrantPermissions['editinterface']['editinterface'] = true; $wgGrantPermissions['editinterface']['editusercss'] = true; +$wgGrantPermissions['editinterface']['edituserjson'] = true; $wgGrantPermissions['editinterface']['edituserjs'] = true; $wgGrantPermissions['createeditmovepage'] = $wgGrantPermissions['editpage']; @@ -6061,7 +6061,7 @@ $wgUseTeX = false; /************************************************************************//** * @name Profiling, testing and debugging * - * To enable profiling, edit StartProfiler.php + * See $wgProfiler for how to enable profiling. * * @{ */ @@ -6306,6 +6306,66 @@ $wgDevelopmentWarnings = false; */ $wgDeprecationReleaseLimit = false; +/** + * Profiler configuration. + * + * To use a profiler, set $wgProfiler in LocalSetings.php. + * For backwards-compatibility, it is also allowed to set the variable from + * a separate file called StartProfiler.php, which MediaWiki will include. + * + * Example: + * + * @code + * $wgProfiler['class'] = ProfilerXhprof::class; + * @endcode + * + * For output, set the 'output' key to an array of class names, one for each + * output type you want the profiler to generate. For example: + * + * @code + * $wgProfiler['output'] = [ ProfilerOutputText::class ]; + * @endcode + * + * The output classes available to you by default are ProfilerOutputDb, + * ProfilerOutputDump, ProfilerOutputStats, ProfilerOutputText, and + * ProfilerOutputUdp. + * + * ProfilerOutputStats outputs profiling data as StatsD metrics. It expects + * that you have set the $wgStatsdServer configuration variable to the host (or + * host:port) of your statsd server. + * + * ProfilerOutputText will output profiling data in the page body as a comment. + * You can make the profiling data in HTML render as part of the page content + * by setting the 'visible' configuration flag: + * + * @code + * $wgProfiler['visible'] = true; + * @endcode + * + * 'ProfilerOutputDb' expects a database table that can be created by applying + * maintenance/archives/patch-profiling.sql to your database. + * + * 'ProfilerOutputDump' expects a $wgProfiler['outputDir'] telling it where to + * write dump files. The files produced are compatible with the XHProf gui. + * For a rudimentary sampling profiler: + * + * @code + * $wgProfiler['class'] = 'ProfilerXhprof'; + * $wgProfiler['output'] = array( 'ProfilerOutputDb' ); + * $wgProfiler['sampling'] = 50; // one every 50 requests + * @endcode + * + * When using the built-in `sampling` option, the `class` will changed to + * ProfilerStub for non-sampled cases. + * + * For performance, the profiler is always disabled for CLI scripts as they + * could be long running and the data would accumulate. Use the '--profiler' + * parameter of maintenance scripts to override this. + * + * @since 1.17.0 + */ +$wgProfiler = []; + /** * Only record profiling info for pages that took longer than this * @deprecated since 1.25: set $wgProfiler['threshold'] instead. @@ -6862,11 +6922,6 @@ $wgUseNPPatrol = true; */ $wgUseFilePatrol = true; -/** - * Log autopatrol actions to the log table - */ -$wgLogAutopatrol = true; - /** * Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages */ @@ -7334,7 +7389,7 @@ $wgAutoloadAttemptLowercase = true; * 'version' => '1.9.0', * 'url' => 'https://example.org/example-extension/', * 'descriptionmsg' => 'exampleextension-desc', - * 'license-name' => 'GPL-2.0+', + * 'license-name' => 'GPL-2.0-or-later', * ]; * @endcode * @@ -7368,7 +7423,7 @@ $wgAutoloadAttemptLowercase = true; * localizable message (omit in favour of 'descriptionmsg'). * * - license-name: Short name of the license (used as label for the link), such - * as "GPL-2.0+" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). + * as "GPL-2.0-or-later" or "MIT" (https://spdx.org/licenses/ for a list of identifiers). */ $wgExtensionCredits = []; @@ -7453,8 +7508,9 @@ $wgJobClasses = [ 'categoryMembershipChange' => CategoryMembershipChangeJob::class, 'clearUserWatchlist' => ClearUserWatchlistJob::class, 'cdnPurge' => CdnPurgeJob::class, - 'enqueue' => EnqueueJob::class, // local queue for multi-DC setups 'userGroupExpiry' => UserGroupExpiryJob::class, + 'clearWatchlistNotifications' => ClearWatchlistNotificationsJob::class, + 'enqueue' => EnqueueJob::class, // local queue for multi-DC setups 'null' => NullJob::class, ]; @@ -7988,25 +8044,6 @@ $wgExemptFromUserRobotsControl = null; * @{ */ -/** - * Enable the MediaWiki API for convenient access to - * machine-readable data via api.php - * - * See https://www.mediawiki.org/wiki/API - * - * @deprecated since 1.31 - */ -$wgEnableAPI = true; - -/** - * Allow the API to be used to perform write operations - * (page edits, rollback, etc.) when an authorised user - * accesses it - * - * @deprecated since 1.31 - */ -$wgEnableWriteAPI = true; - /** * * WARNING: SECURITY THREAT - debug use only @@ -8145,6 +8182,8 @@ $wgAPIUselessQueryPages = [ /** * Enable AJAX framework + * + * @deprecated since MediaWiki 1.32 and ignored */ $wgUseAjax = true; @@ -8161,7 +8200,7 @@ $wgAjaxExportList = []; $wgAjaxUploadDestCheck = true; /** - * Enable previewing licences via AJAX. Also requires $wgEnableAPI to be true. + * Enable previewing licences via AJAX. */ $wgAjaxLicensePreview = true; @@ -8829,6 +8868,13 @@ $wgInterwikiPrefixDisplayTypes = []; */ $wgCommentTableSchemaMigrationStage = MIGRATION_OLD; +/** + * Actor table schema migration stage. + * @since 1.31 + * @var int One of the MIGRATION_* constants + */ +$wgActorTableSchemaMigrationStage = MIGRATION_OLD; + /** * For really cool vim folding this needs to be at the end: * vim: foldmarker=@{,@} foldmethod=marker