Difference between revisions of "Help:Patrolled edits"
Ion frigate (talk | contribs) m (1 revision: Help!) |
m (removed references to nonexistent pages) |
||
(3 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | '''Patrolled edits''' are a feature which allows specific users to mark items in recent changes as having been "patrolled" or "approved". By default this is only available if you have [ | + | {{delete|No longer required}} |
+ | '''Patrolled edits''' are a feature which allows specific users to mark items in recent changes as having been "patrolled" or "approved". By default this is only available if you have [http://www.mediawiki.org/wiki/Help:Sysops_and_permissions sysop permissions] | ||
This feature is useful when reviewing recent changes for undesirable edits, link spam and vandalism. This allows people (those who can see it) to coordinate their patrolling activity, such that edits gets checked over once, but with less wasted effort (different people checking the same edit) | This feature is useful when reviewing recent changes for undesirable edits, link spam and vandalism. This allows people (those who can see it) to coordinate their patrolling activity, such that edits gets checked over once, but with less wasted effort (different people checking the same edit) | ||
Line 21: | Line 22: | ||
=== Enabling/disabling === | === Enabling/disabling === | ||
− | Patrolled edits are enabled by default in MediaWiki 1.4. In MediaWiki 1.5 and later, set ''' | + | Patrolled edits are enabled by default in MediaWiki 1.4. In MediaWiki 1.5 and later, set '''$wgUseRCPatrol''' in {{mediawiki|Manual:Configuration settings|LocalSettings.php}}. |
<code>$wgUseRCPatrol = true;</code> | <code>$wgUseRCPatrol = true;</code> | ||
Line 29: | Line 30: | ||
==== 1.4 ==== | ==== 1.4 ==== | ||
− | In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set ''' | + | In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set '''$wgOnlySysopsCanPatrol''' in {{mediawiki|Manual:Configuration settings|LocalSettings.php}}. |
<code>$wgOnlySysopsCanPatrol = true;</code> | <code>$wgOnlySysopsCanPatrol = true;</code> | ||
Line 42: | Line 43: | ||
=== Automatic patrolling === | === Automatic patrolling === | ||
− | In MediaWiki 1.6 through 1.8, there is a [[ | + | In MediaWiki 1.6 through 1.8, there is a [[Special:preferences|user preference]] available to users who are able to mark edits as patrolled. When set, this causes their edits to be patrolled automatically. |
This option is not available if patrolled edits are switched off. | This option is not available if patrolled edits are switched off. |
Latest revision as of 22:59, 3 May 2016
A user has suggested the deletion of this page. Reason: No longer required
Patrolled edits are a feature which allows specific users to mark items in recent changes as having been "patrolled" or "approved". By default this is only available if you have sysop permissions
This feature is useful when reviewing recent changes for undesirable edits, link spam and vandalism. This allows people (those who can see it) to coordinate their patrolling activity, such that edits gets checked over once, but with less wasted effort (different people checking the same edit)
Contents
Marking edits as patrolled
- To mark an edit as patrolled
- Access Special:Recentchanges
- Changes which are not patrolled will be indicated with a red exclamation mark
- Click the () link next to an edit
- To mark the edit as patrolled, click the mark as patrolled link
Hiding patrolled edits from recent changes
Patrolled edits can be hidden from recent changes by adding "hidepatrolled=1" to url in the following form:
http://example.com/w/index.php?title=Special:Recentchanges&hidepatrolled=1
Customization
Enabling/disabling
Patrolled edits are enabled by default in MediaWiki 1.4. In MediaWiki 1.5 and later, set $wgUseRCPatrol in .
$wgUseRCPatrol = true;
Permissions
1.4
In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set $wgOnlySysopsCanPatrol in .
$wgOnlySysopsCanPatrol = true;
1.5+
In MediaWiki 1.5 and later, patrolled edits are enabled for sysops. Use the $wgGroupPermissions configuration variable for this.
For instance, to create a patrollers group:
$wgGroupPermissions['patrollers']['patrol'] = true;
Automatic patrolling
In MediaWiki 1.6 through 1.8, there is a user preference available to users who are able to mark edits as patrolled. When set, this causes their edits to be patrolled automatically.
This option is not available if patrolled edits are switched off.
In MediaWiki 1.9 this user preference has been removed and replaced by a new "autopatrol" right, assigned only to sysops by default. Also, users cannot mark their own edits as patrolled.
Marker
The formatting of the unpatrolled edit marker can be altered using CSS. The exclamation mark displayed on the Recent changes log is styled using the span.unpatrolled
.