Page MenuHomePhabricator

Create a new usergroup Patroller with 'autopatrol' and 'patrol' right on simple.wikipedia
Closed, ResolvedPublic

Description

We've discussed the implemention of this feature on simpleWP and the consensus is clear. Please make it possible for admins to grant and remove the autopatroll right. Please add also the possibility to actively mark other people's new creations as patrolled. Consensus is http://simple.wikipedia.org/wiki/Wikipedia:Simple_talk#Autopatrol_flag

Thanks in advance!

[[m:User:Barras]]


Version: unspecified
Severity: enhancement
URL: http://simple.wikipedia.org/wiki/Wikipedia:Simple_talk#Autopatrol_flag

Details

Reference
bz27875

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 11:34 PM
bzimport set Reference to bz27875.

(In reply to comment #0)

Please add also the possibility to actively mark other
people's new creations as patrolled.

New page patrolling is enabled on simplewiki. Did you mean that autopatrollers should be allowed to patrol creations (AND changes; the two are inseparable) as well?

grox24 wrote:

(In reply to comment #1)

(In reply to comment #0)

Please add also the possibility to actively mark other
people's new creations as patrolled.

New page patrolling is enabled on simplewiki. Did you mean that autopatrollers
should be allowed to patrol creations (AND changes; the two are inseparable) as
well?

I'm pretty sure the discussion was only on new page patrolling, not patrolling new edits. New page patrolling is only currently enabled for sysops. We need a new right created that administrators can grant to users so their new pages are autopatrolled and they are able to patrol the new pages of others.

Yep, exactly what Gordonrox said above. There's no need for patrolling changes. Only new creations (seen on Special:NewPages) are to be patrolled. The right should be that people are autopatrolled (so their creations aren't yellow on that page) and that they can actively help help patrolling those new pages. Sorry if it wasn't clear enough said above.

[[m:User:Barras]]

autopatrol does apply to both edits and page creations, but in the simplewiki case RCPatrol is disabled, and only New Page patrol is enabled, so autopatrol right only applies to new pages.

So just to clarify, you want a new user group that can be assigned and removed by admins, and people in that usergroup should have patrol (mark other people's new pages as ok) and autopatrol (your own new pages are automatically ok) rights. Or did you mean you wanted two new usergroups, an autopatrol user group, and a seperate patrol user group?

No, exactly what you said. One usergroup with both rights. Doesn't really matter how it is named (Autopatrolled, Patroller or whatever fits best).

So far wikis using this call the group "Patroller" as in most cases users in that group participate in patrolling new pages and help with the backlog.

Since someone experienced enough to be allowed to patrol other people's page creations, the Patroller group is given the 'autopatrol' right besides the 'patrol' right.

Please note that with the 'patrol' right also comes the ability to filter to filter out only 'unpatrolled new pages' on Special:NewPage and the marks of it in other locations (RecentChanges, Watchlist, etc.)

On Commons we have both (Autopatrollers-group and Patroller-group) so that users who create good quality pages but have no interest in patrolling stuff nor should know what that even is are not confused with these red marks and [mark as patrol] links.

Yeah, we want the "Patroller" group then enabled. What you describe with the
NewPages patrolling is exactly what we want. At all this is only about the
NewPages. Other changes aren't patrolled anyway. It's only about getting help
to patroll new pages and to have your own creations automatically patrolled.

Should be good now. Thanks Barras for the helpful comments through irc! Always appreciated to have some support from the community :o)

Index: InitialiseSettings.php

  • InitialiseSettings.php (revision 1596)

+++ InitialiseSettings.php (working copy)
@@ -5904,6 +5904,8 @@

	'simplewiki' => array(
		'flood' => array( 'bot' => true ),
		'rollbacker' => array( 'rollback' => true, ),

+ # bug 27875 (see comment 4)
+ 'patroller' => array( 'patrol' => true, 'autopatrol' => true ),

	),
	// 'simplewikibooks' => array(
		// 'flood' => array( 'bot' => true ),

@@ -6300,8 +6302,8 @@

	'sysop' => array( 'medlem' ),
),
'+simplewiki' => array(
  • 'bureaucrat' => array( 'sysop', 'bureaucrat', 'bot', 'rollbacker', 'transwiki', ),
  • 'sysop' => array( 'rollbacker', 'flood' ),

+ 'bureaucrat' => array( 'sysop', 'bureaucrat', 'bot', 'rollbacker', 'transwiki', 'patroller' ),
+ 'sysop' => array( 'rollbacker', 'flood', 'patroller' ),

    ),
	'+siwiki' => array(
		'sysop' => array( 'rollbacker', 'accountcreator', 'abusefilter', 'autopatrolled', 'confirmed', 'reviewer' ),

@@ -6583,8 +6585,8 @@

		'sysop' => array( 'rollbacker', 'accountcreator', 'abusefilter', 'autopatrolled', 'confirmed', 'reviewer' ),
	),
    '+simplewiki' => array(
  • 'bureaucrat' => array( 'bot', 'flood', 'rollbacker', 'sysop', 'import', 'transwiki' ),
  • 'sysop' => array( 'rollbacker', 'ipblock-exempt', 'flood' ),

+ 'bureaucrat' => array( 'bot', 'flood', 'rollbacker', 'sysop', 'import', 'transwiki', 'patroller' ),
+ 'sysop' => array( 'rollbacker', 'ipblock-exempt', 'flood', 'patroller' ),

),
// '+simplewikibooks' => array(
    // 'sysop' => array( 'rollbacker' ),

Thanks a lot! It works exactly the way it should. Just tested it with my second account.

Thanks for doing it that quick, Ashar!

(Marked as verified)
[[m:User:Barras]]