- For information about how to review pages, see Help:Revision review.
|  | This policy has an unstable branch for proposing changes. | 
Current configuration
- This is the cumulative effect of bugzilla:14618 (consensus below), bugzilla:18421 (consensus here), bugzilla:20034 (consensus here), and bugzilla:24304 (consensus here).
// Sets the most recent version as shown $wgFlaggedRevsOverride = false;  // Main, Template, File, Cookbook, Wikijunior $wgFlaggedRevsNamespaces = array(   NS_MAIN, NS_FILE, NS_TEMPLATE, 102, 110);  // Three levels: minimal (checked), average (quality), good (pristine) $wgFlaggedRevTags = array(   'value' => array(     'levels' => 3,     'quality' => 2,     'pristine' => 3   ) );  $wgSimpleFlaggedRevsUI = false; $wgFlaggedRevComments = false;  $wgFlaggedRevsAutopromote = array(   'days' => 30, # days since registration   'edits' => 100, # total edit count   'excludeDeleted' => true, # exclude deleted edits from 'edits' count above?   'spacing' => 2, # spacing of edit intervals   'benchmarks' => 8, # how many edit intervals are needed?   'recentContentEdits' => 5, # $wgContentNamespaces edits in recent changes   'totalContentEdits' => 50,  # $wgContentNamespaces edits   'uniqueContentPages' => 10, # $wgContentNamespaces unique pages edited   'editComments' => 50, # how many edit comments used?   'email' => true, # user must be emailconfirmed?   'userpage' => false, # user must have a userpage?   'uniqueIPAddress' => false, # If $wgPutIPinRC is true, users sharing IPs won't be promoted   'neverBlocked' => true, # Can users that were blocked be promoted? ) + $wgFlaggedRevsAutopromote;  $wgGroupPermissions['editor']['rollback'] = true; $wgGroupPermissions['sysop']['review'] = true; $wgGroupPermissions['sysop']['stablesettings'] = true; $wgGroupPermissions['sysop']['validate'] = true;
Initial Configuration
$wgFlaggedRevsNamespaces = array(NS_MAIN, NS_IMAGE, NS_TEMPLATE, 102, 110); // Cookbook, WikiJunior  // what can pages be flagged with, and what minimal rating for each flag makes for a quality page? $wgFlaggedRevTags = array('composition' => 3, 'accuracy' => 2, 'coverage' => 2 );  // what is the maximum flag level that can be set by users with certain permissions? $wgFlagRestrictions = array(   'composition' => array( 'review' => 3 ),   'accuracy'    => array( 'review' => 3 ),   'coverage'    => array( 'review' => 3 ), );  $wgSimpleFlaggedRevsUI = false;  // show a small icon to distinguish between "sighted", "quality", and unflagged pages? $wgFlaggedRevTabs = false; // add stable/draft revision tabs $wgFlaggedRevComments = true; // can users make comments that will show up below flagged revisions?  // Requirements for auto-promoting users to editor status $wgFlaggedRevsAutopromote = array(   'days' => 30, # days since registration   'edits' => 100, # total edit count   'excludeDeleted' => true, # exclude deleted edits from 'edits' count above?   'spacing' => 3, # spacing of edit intervals   'benchmarks' => 15, # how many edit intervals are needed?   'recentContentEdits' => 10, # $wgContentNamespaces edits in recent changes   'totalContentEdits' => 50,  # $wgContentNamespaces edits   'uniqueContentPages' => 10, # $wgContentNamespaces unique pages edited   'editComments' => 50, # how many edit comments used?   'email' => true, # user must be emailconfirmed?   'userpage' => true, # user must have a userpage?   'userpageBytes' => 1 # if userpage is needed, what is the min size?   'uniqueIPAddress' => true, # If $wgPutIPinRC is true, users sharing IPs won't be promoted   'neverBlocked' => true, # Can users that were blocked be promoted?   'noSorbsMatches' => false, # If $wgSorbsUrl is set, do not promote users that match );  // So that administrators/bureaucrats have same permissions as editors by default $wgGroupPermissions['sysop']['review']          = true; $wgGroupPermissions['sysop']['autoreview']      = true; $wgGroupPermissions['sysop']['autoconfirmed']   = true; $wgGroupPermissions['sysop']['patrolmarks']     = true; $wgGroupPermissions['sysop']['autopatrolother'] = true; $wgGroupPermissions['sysop']['unreviewedpages'] = true; $wgGroupPermissions['sysop']['validate']        = true;
Discussion
For information on what problems FlaggedRevs Extension addresses you can look into this text from wiki/foundation.
- This looks fine to me currently. I suggest we double-check with Aaron Schulz what this means for our current patrolling scheme & depending on the answers tweak this or simply enable with these settings. – Mike.lifeguard | talk 00:08, 17 June 2008 (UTC)
 
 
 
 
 
 
 
 
 
 
