LinguaLibre
Difference between revisions of "User rights"
Line 334: | Line 334: | ||
| <code>autopatrol</code>, <code>patrol</code> || request the right || 999 per 1 sec. | | <code>autopatrol</code>, <code>patrol</code> || request the right || 999 per 1 sec. | ||
|} | |} | ||
+ | |||
+ | === Commons ratelimits in code === | ||
+ | * Likely: [https://gerrit.wikimedia.org/r/plugins/gitiles/operations/mediawiki-config/+/refs/heads/master/wmf-config/InitialiseSettings.php#9983 Here] | ||
+ | <pre> | ||
+ | '+commonswiki' => [ // T132930 | ||
+ | 'move' => [ // T232657 | ||
+ | 'autopatrolled' => [ 32, 60 ], | ||
+ | 'patroller' => [ 32, 60 ], | ||
+ | 'image-reviewer' => [ 32, 60 ], | ||
+ | ], | ||
+ | 'edit' => [ | ||
+ | 'ip' => [ 8 * 15, 60 * 15 ], // T225148 | ||
+ | 'newbie' => [ 8 * 15, 60 * 5 ], // T231463 | ||
+ | 'user' => [ 900, 60 * 3 ], // T194864 | ||
+ | // Higher rate limit for trusted users | ||
+ | 'image-reviewer' => [ 10500, 60 * 3 ], | ||
+ | 'patroller' => [ 10500, 60 * 3 ], | ||
+ | 'autopatrolled' => [ 10500, 60 * 3 ], | ||
+ | ], | ||
+ | 'upload' => [ | ||
+ | // 380 uploads per 72 minutes | ||
+ | 'user' => [ 380, 4320 ], | ||
+ | // Effectively no upload rate limit for members of these groups | ||
+ | 'image-reviewer' => [ 999, 1 ], | ||
+ | 'patroller' => [ 999, 1 ], | ||
+ | 'autopatrolled' => [ 999, 1 ], | ||
+ | ], | ||
+ | 'linkpurge' => [ | ||
+ | 'patroller' => [ 3000, 60 * 3 ], // T245214 | ||
+ | ], | ||
+ | ], | ||
+ | </pre> | ||
== User rights on LinguaLibre == | == User rights on LinguaLibre == |
Revision as of 17:26, 20 September 2020
Each mediawiki as build in groups
such as users
, autopatrolled
, admin
, etc, which have specific user rights allowing actions associated with a ratelimit
defining the number of times this action is allowed within a time period.
Check your user rights
- Check User:WikiLucas00's groups :
- On Commons: Commons:Special:UserRights > enter username.
- On LinguaLibre: Special:UserRights > enter username.
- Check WikiLucas00, Yug, Luilui666, ShufaBot infos:
- For yourself - click then search "upload":
User rights on Commons
To document further.
- User group rights: Commons:Special:ListGroupRights
Group | Minimal condition | Ratelimit |
---|---|---|
Uploads rights | ||
* (all) |
Anonymous IP | 0 |
user |
have an account | 380 per 72 mins |
autoconfirmed |
4+ days old account | ? |
autopatrol , patrol |
request the right | 999 per 1 sec. |
Commons ratelimits in code
- Likely: Here
'+commonswiki' => [ // T132930 'move' => [ // T232657 'autopatrolled' => [ 32, 60 ], 'patroller' => [ 32, 60 ], 'image-reviewer' => [ 32, 60 ], ], 'edit' => [ 'ip' => [ 8 * 15, 60 * 15 ], // T225148 'newbie' => [ 8 * 15, 60 * 5 ], // T231463 'user' => [ 900, 60 * 3 ], // T194864 // Higher rate limit for trusted users 'image-reviewer' => [ 10500, 60 * 3 ], 'patroller' => [ 10500, 60 * 3 ], 'autopatrolled' => [ 10500, 60 * 3 ], ], 'upload' => [ // 380 uploads per 72 minutes 'user' => [ 380, 4320 ], // Effectively no upload rate limit for members of these groups 'image-reviewer' => [ 999, 1 ], 'patroller' => [ 999, 1 ], 'autopatrolled' => [ 999, 1 ], ], 'linkpurge' => [ 'patroller' => [ 3000, 60 * 3 ], // T245214 ], ],
User rights on LinguaLibre
Note: LinguaLibre is not the limiting factor.
- User group rights: Special:ListGroupRights
Request new user rights
Go to Commons:Commons:Requests for rights, make a request mentioning your contribution to LinguaLibre.