Topic on Talk:Edit Review Improvements/New filters for edit review

User registration and experience section

7
Bikerbudmatt (talkcontribs)

I'd like to have some control of the range for the "experience" levels. I'm an experienced editor creating a standalone wiki. It's not helpful to have the "only" 160+ contributions I've made so far to be lumped in with my users who are working with a wiki for the first time. Even less helpful to think that the arbitrary number of 500 is what I need to attain to bump me into the "experienced" level.

Either allow these categories to exclude administrators by option, or allow administrators to adjust the scoring ranges in a way that gives them a useful filter.

Thanks! ~~~~

Trizek (WMF) (talkcontribs)

So the goal would be to have a way to :

  • define new experience thresholds (like user that have more than 50 edits but less than 200)
  • filter users by status

Am I right?

Trizek (WMF) (talkcontribs)

Defining thresholds is probably doable in your wiki's configuration file. @Roan Kattouw (WMF) will know more about it.

Filter users is not a feature we are considering for now. Developments are made in priority for Wikimedia wikis, and we are really concerned by filtering by users being used to stalk at people. The only way to filter users is by the number of edits, by thresholds.

Bikerbudmatt (talkcontribs)

Thank you. I will look there first, and check with @Roan Kattouw (WMF) if I get stuck. I presume you're using "stalk at" in a Wiki sense here.


I appreciate your responses!

Roan Kattouw (WMF) (talkcontribs)

@Bikerbudmatt Apologies for the late response; you can configure the experience thresholds in LocalSettings.php. Copy the settings below to your LocalSettings.php and change the numbers:

$wgLearnerEdits = 10;
$wgLearnerMemberSince = 4;
$wgExperiencedUserEdits = 500;
$wgExperiencedUserMemberSince = 30;

A user is considered "experienced" if they have $wgExperiencedUserEdits edits and have had their account for at least $wgExperiencedUserMemberSince days (default: 500 edits and 30 days). A user is considered a "learner" if they haven't reached "experienced" yet, but they do have at least $wgLearnerEdits edits and have been around for at least $wgLearnerMemberSince days (default: 10 edits and 4 days). A user is considered a "newcomer" if they don't have enough edits/days to be a "learner".

Bikerbudmatt (talkcontribs)

@Roan Kattouw (WMF) and @Trizek (WMF)Thank you both for your kind assistance, and especially for the proper configuration strings. The only value that I changed is $wgExperiencedUserEdits, as the others all make sense to me.


Best in the new year, and cheers!