X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=c12f2f2045cec9a89fb09f85240130f2474b994c;hp=538c1b25a9cbcd17a43ba5766ef6dc491ae54786;hb=8de958444f1d36ecb95d3a53d96cc1404e95468e;hpb=77e3624caba072521fbc1826af2d47f9b29f4032 diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 538c1b25a9..c12f2f2045 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.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. @@ -4270,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. @@ -4292,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. @@ -5150,6 +5145,7 @@ $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; @@ -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; @@ -5816,6 +5813,7 @@ $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; @@ -5823,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']; @@ -6863,11 +6862,6 @@ $wgUseNPPatrol = true; */ $wgUseFilePatrol = true; -/** - * Log autopatrol actions to the log table - */ -$wgLogAutopatrol = true; - /** * Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages */ @@ -7454,8 +7448,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, ];