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

mayurkumar <mayur...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |rhals...@wikimedia.org
         Resolution|FIXED                       |
         AssignedTo|rhals...@wikimedia.org      |wikibugs-l@lists.wikimedia.
                   |                            |org

--- Comment #27 from mayurkumar <mayur...@gmail.com> 2011-07-15 18:19:36 UTC ---
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' ) );

Basically this for enabling feedback section of this extension and some more
modification.Thanks in Advance

Regards
Mayur Kumar

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to