Author: mayurdce
Description:
Plz also enable following array in flaggedrevs.php for Hindi wiki-
/# namespaces
$wgFlaggedRevsNamespaces = array( NS_MAIN, NS_IMAGE, NS_TEMPLATE,
NS_CATEGORY, 100 ); # 100 = Portal
$wgFeedbackNamespaces = array( NS_MAIN ); //# levels $wgFlaggedRevsFeedbackTags = array( 'reliability' => 3, 'completeness' =>
2, 'npov' => 2, 'presentation' => 1 );
//# non-reviewers
$wgGroupPermissions['bot']['autoreview'] = true; $wgGroupPermissions['*']['feedback'] = true;
and also remove this array of trial quota-
$wgFlaggedRevsProtectQuota = 2000;
So basically the whole setting will be like that as mentioned below-
hiwiki
elseif ( $wgDBname == 'hiwiki' ) {
//# namespaces $wgFlaggedRevsNamespaces = array( NS_MAIN, NS_IMAGE, NS_TEMPLATE,
NS_CATEGORY, 100 ); # 100 = Portal
$wgFeedbackNamespaces = array( NS_MAIN ); //# levels $wgFlaggedRevsFeedbackTags = array( 'reliability' => 3, 'completeness' =>
2, 'npov' => 2, 'presentation' => 1 );
- Show only on a per-page basis $wgFlaggedRevsOverride = false; $wgFlaggedRevsReviewForDefault = true;
- We have only one tag with one level $wgFlaggedRevTags = array( 'status' => array( 'levels' => 1, 'quality' => 2, 'pristine' => 3 ), );
- Restrict autoconfirmed to flagging semi-protected $wgFlagRestrictions = array( 'status' => array( 'review' => 1, 'autoreview' => 1 ), );
- Restriction levels for auto-review/review rights $wgFlaggedRevsRestrictionLevels = array( '', 'autoconfirmed', 'review',
'sysop' );
- Use flag "protection" levels $wgFlaggedRevsProtection = true;
- Use current templates/files $wgFlaggedRevsHandleIncludes = FR_INCLUDES_CURRENT;
- Group permissions for autoconfirmed $wgGroupPermissions['autoconfirmed']['autoreview'] = true;
- Group permissions for sysops $wgGroupPermissions['sysop']['review'] = true; $wgGroupPermissions['sysop']['stablesettings'] = true;
- Group permissions for non-reviewers $wgGroupPermissions['bot']['autoreview'] = true; $wgGroupPermissions['*']['feedback'] = true;
- Use 'reviewer' group $wgAddGroups['bureaucrat'][] = 'reviewer'; $wgRemoveGroups['bureaucrat'][] = 'reviewer';
- Remove 'editor' group unset( $wgGroupPermissions['editor'] ); $wgAddGroups['sysop'] = array_diff( $wgAddGroups['sysop'], array( 'editor'
) );
$wgRemoveGroups['sysop'] = array_diff( $wgRemoveGroups['sysop'], array(
'editor' ) );
Regards
Mayur Kumar
Version: unspecified
Severity: enhancement