https://bugzilla.wikimedia.org/show_bug.cgi?id=30116

       Web browser: ---
             Bug #: 30116
           Summary: Customise Flagged Revs & reader feedback array for Hi
                    wiki
           Product: Wikimedia
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: Unprioritized
         Component: Site requests
        AssignedTo: [email protected]
        ReportedBy: [email protected]
    Classification: Unclassified


Please enable following array:-


/# 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' ) );

Consensus link :
http://hi.wikipedia.org/wiki/%E0%A4%B5%E0%A4%BF%E0%A4%95%E0%A4%BF%E0%A4%AA%E0%A5%80%E0%A4%A1%E0%A4%BF%E0%A4%AF%E0%A4%BE:%E0%A4%9A%E0%A5%8C%E0%A4%AA%E0%A4%BE%E0%A4%B2/%E0%A4%AA%E0%A5%81%E0%A4%B0%E0%A4%BE%E0%A4%B2%E0%A5%87%E0%A4%96_20#Apply_reveiwer_.26_partrolled_system_and_Enable_Some_User_Groups_.28autopatroller.2C_reveiwers.29

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to