LinguaLibre
Difference between revisions of "User rights/br"
Each wiki has built-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. Lingua Libre is mainly a Wiki for documentation via textual edits together with a client-side audio recording app which sends audios directly from your browser to Wikimedia Commons. Wikimedia Commons serves as the storage website via its programmatic API and is the actual limiting element in our audios uploading chain. If user rights are an issue, it is likely the case on Wikimedia Commons given the uploader's account and its associated user rights on Commons. Below are some elements to better understand your proper situation.
(Created page with "(an holl)") |
(Updating to match new version of source page) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 318: | Line 318: | ||
--> | --> | ||
− | == | + | == Gwirioù an implijer war gCommons == |
* Each mediawiki has upload limits according to user groups set via <code>wmf-config/InitialiseSettings.php</code>. | * Each mediawiki has upload limits according to user groups set via <code>wmf-config/InitialiseSettings.php</code>. | ||
Line 326: | Line 326: | ||
|+ Uploads rate limits on Commons. | |+ Uploads rate limits on Commons. | ||
|- | |- | ||
− | !rowspan=2| | + | !rowspan=2| Strollad |
!rowspan=2| Minimal condition | !rowspan=2| Minimal condition | ||
!colspan=1| Ratelimit | !colspan=1| Ratelimit | ||
Line 346: | Line 346: | ||
| | | | ||
<code>autopatrolled</code> | <code>autopatrolled</code> | ||
− | | [[:c:Special:MyLanguage/Commons:Requests for rights| | + | | [[:c:Special:MyLanguage/Commons:Requests for rights|Diwar goulenn]] || 999 dre 1 seg. |
|- | |- | ||
| | | | ||
Line 361: | Line 361: | ||
=== Commons ratelimits in code === | === Commons ratelimits in code === | ||
− | * Likely: [ | + | * Likely: [https://gerrit.wikimedia.org/r/plugins/gitiles/operations/mediawiki-config/+/refs/heads/master/wmf-config/InitialiseSettings.php#9983 Here] |
<pre> | <pre> | ||
Line 393: | Line 393: | ||
</pre> | </pre> | ||
− | == Gwirioù implijer war LinguaLibre == | + | |
+ | == Gwirioù an implijer war LinguaLibre == | ||
Note: LinguaLibre is not the limiting factor. | Note: LinguaLibre is not the limiting factor. | ||
Line 416: | Line 417: | ||
== Gwelout ivez == | == Gwelout ivez == | ||
− | * [[:phab:T172293#6344271]] | + | * Meet with someone who can increase Wikimedia Commons' ratelimit. See [[LinguaLibre:User_rights]], [[:phab:T172293#6344271]] & [[:mw:Wikimedia_Hackathon_2023/Connect]]. |
* {{tl|autopatrolled}} — message template for active users meeting the ratelimit of 380 audios per 72mins. | * {{tl|autopatrolled}} — message template for active users meeting the ratelimit of 380 audios per 72mins. | ||
{{Technicals}} | {{Technicals}} |
Latest revision as of 19:53, 8 September 2023
Check your user rights
- Check a user's groups :
- On Commons: c:Special:UserRights > enter username.
- On LinguaLibre: Special:UserRights > enter username.
- Check infos and groups for 0x010C, Yug, WikiLucas00, Luilui666, ShufaBot:
- On Commons API (mw:API:Users#GET_request):
https://commons.wikimedia.org/w/api.php?action=query&list=users&ususers=0x010C|Yug|WikiLucas00|Luilui6666|ShufaBot&usprop=groups|editcount|registration - On LinguaLibre API :
https://lingualibre.org/w/api.php?action=query&list=users&ususers=0x010C|Yug|WikiLucas00|Luilui6666|ShufaBot&usprop=groups|editcount|registration
- On Commons API (mw:API:Users#GET_request):
- Check user rights for yourself - click then search "upload":
Gwirioù an implijer war gCommons
- Each mediawiki has upload limits according to user groups set via
wmf-config/InitialiseSettings.php
. - See User group rights: c:Special:ListGroupRights
Strollad | Minimal condition | Ratelimit |
---|---|---|
Uploads rights | ||
|
IP dizanv | 0 |
|
Have an account | 380 dre 4320 seg. |
4+ days old account | 380 dre 4320 seg. | |
|
Diwar goulenn | 999 dre 1 seg. |
|
Diwar goulenn | 999 dre 1 seg. |
|
Diwar goulenn | 999 dre 1 seg. |
4320 seg. = 72 min. |
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 ], ],
Gwirioù an implijer war LinguaLibre
Note: LinguaLibre is not the limiting factor.
- User group rights: Special:ListGroupRights
Request new user rights
Go to c:Commons:Requests for rights, make a request mentioning your contribution to Lingua Libre and your need for raising the ratelimit.
Examples of past requests :
- 2020-09-21 - Luilui6666 - autopatroller
- Vealhurl
- Jagwar
- DSwissK
- Mecanautes
- Olaf
- Poemat
- VictorDtmtc
- Moonhouse
- Sagnamadr
Gwelout ivez
- Meet with someone who can increase Wikimedia Commons' ratelimit. See LinguaLibre:User_rights, phab:T172293#6344271 & mw:Wikimedia_Hackathon_2023/Connect.
- {{Autopatrolled}} — message template for active users meeting the ratelimit of 380 audios per 72mins.