Edit filter configuration

Differences between versions

ItemVersion from 18:43, 6 April 2024 by EggRoll97Version from 01:09, 7 April 2024 by Zzuuzz
Basic information
Notes:
Enable filter to detect redirect creations with no rcats per EFR. - EggRoll97 April 4 2024
Enable filter to detect redirect creations with no rcats per EFR. - EggRoll97 April 4 2024


Fix variables and condensed rcats regex per suggestions on EF/R. - EggRoll97 April 4 2024
Fix variables and condensed rcats regex per suggestions on EF/R. - EggRoll97 April 4 2024


Changed rcats to a more generic pattern check, and enabling tagging with discussion on EFR. This filter catches almost entirely good-faith edits, and so nothing past tagging should ever be enabled on this filter. It's mainly intended to allow for tracking of the uncategorized redirects so those who are interested in categorization can go through and add them to redirects without them. Also exempt bots as they generally categorize redirects and thus don't need to be double-checked. - EggRoll97 April 6 2024
Changed rcats to a more generic pattern check, and enabling tagging with discussion on EFR. This filter catches almost entirely good-faith edits, and so nothing past tagging should ever be enabled on this filter. It's mainly intended to allow for tracking of the uncategorized redirects so those who are interested in categorization can go through and add them to redirects without them. Also exempt bots as they generally categorize redirects and thus don't need to be double-checked. - EggRoll97 April 6 2024
Optimise --zz
Filter conditions
Conditions:
(documentation)
page_id == 0 &
page_namespace == 0 &
!("bot" in user_groups) &
!("bot" in user_groups) &
page_id == 0 &
(
(
page_namespace == 0 &
(
   rcats := "\{\{.*r.*\}\}";
   rcats := "\{\{.*r.*\}\}";


   new_wikitext rlike "#REDIRECT" &
   new_wikitext rlike "^#REDIRECT" &
   !new_wikitext irlike rcats
   !new_wikitext irlike rcats
)
)
)