My program doesn't have bugs. It just develops random features.

Difference between revisions of "Help:Patrolled edits"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
m (1 revision(s))
m
Line 1: Line 1:
{{PD Help Page}}
 
 
<div style="float:right;">__TOC__</div>
 
<div style="float:right;">__TOC__</div>
 
In MediaWiki 1.4 and above, a feature exists allowing specific users to mark items in recent changes as having been "patrolled" or "approved". This is useful when reviewing recent changes for undesirable edits, link spam and vandalism.
 
In MediaWiki 1.4 and above, a feature exists allowing specific users to mark items in recent changes as having been "patrolled" or "approved". This is useful when reviewing recent changes for undesirable edits, link spam and vandalism.
Line 9: Line 8:
 
#Access [[Special:Recentchanges]]
 
#Access [[Special:Recentchanges]]
 
#:Changes which are not patrolled will be indicated with a red exclamation mark
 
#:Changes which are not patrolled will be indicated with a red exclamation mark
#Click the ([[m:Help:Diff|diff]]) link next to an edit
+
#Click the ({{mediawiki|Help:Diff|diff}}) link next to an edit
 
#To mark the edit as patrolled, click the ''mark as patrolled'' link
 
#To mark the edit as patrolled, click the ''mark as patrolled'' link
  
Line 16: Line 15:
 
=== Enabling/disabling ===
 
=== Enabling/disabling ===
  
Patrolled edits are enabled by default in MediaWiki 1.4. In MediaWiki 1.5 and later, set '''$wgUseRCPatrol''' in [[Manual:Configuration settings|LocalSettings.php]].
+
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 24: Line 23:
 
==== 1.4 ====
 
==== 1.4 ====
  
In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set '''$wgOnlySysopsCanPatrol''' in [[Manual:Configuration settings|LocalSettings.php]].
+
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 30: Line 29:
 
==== 1.5+ ====
 
==== 1.5+ ====
  
In MediaWiki 1.5 and later, patrolled edits are enabled for sysops. Use the '''[[Manual:$wgGroupPermissions|$wgGroupPermissions]]''' configuration variable for this.
+
In MediaWiki 1.5 and later, patrolled edits are enabled for sysops. Use the '''{{mediawiki|Manual:$wgGroupPermissions|$wgGroupPermissions}}''' configuration variable for this.
  
 
For instance, to create a ''patrollers'' group:
 
For instance, to create a ''patrollers'' group:
Line 47: Line 46:
 
The formatting of the unpatrolled edit marker can be altered using CSS.
 
The formatting of the unpatrolled edit marker can be altered using CSS.
  
==External links==
+
[[Category:Help|{{PAGENAME}}]]
{{meta|Help:Patrolled edit}}
+
 
+
{{Languages|Help:Patrolled edits}}
+
[[Category:Help|Patrolled edits]]
+

Revision as of 14:12, 18 February 2008

In MediaWiki 1.4 and above, a feature exists allowing specific users to mark items in recent changes as having been "patrolled" or "approved". This is useful when reviewing recent changes for undesirable edits, link spam and vandalism.

Marking edits as patrolled

To mark an edit as patrolled
  1. Access Special:Recentchanges
    Changes which are not patrolled will be indicated with a red exclamation mark
  2. Click the (diff) link next to an edit
  3. To mark the edit as patrolled, click the mark as patrolled link

Customization

Enabling/disabling

Patrolled edits are enabled by default in MediaWiki 1.4. In MediaWiki 1.5 and later, set $wgUseRCPatrol in LocalSettings.php.

$wgUseRCPatrol = true;

Permissions

1.4

In MediaWiki 1.4, patrolled edits are enabled for all users. To restrict this to sysops, set $wgOnlySysopsCanPatrol in LocalSettings.php.

$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.