Edit filter configuration

Differences between versions

ItemVersion from 20:41, 16 May 2021 by Suffusion of YellowVersion from 21:53, 27 May 2021 by Wugapodes
Basic information
Notes:
Log of (some) redlinks added by non-confirmed editors. A bit hacky since old_html isn't a thing. Hope this isn't too slow. --Suffusion of Yellow 02:15 23 Jan 2021
Log of (some) redlinks added by non-confirmed editors. A bit hacky since old_html isn't a thing. Hope this isn't too slow. --Suffusion of Yellow 02:15 23 Jan 2021


Disable; needs to be more narrowly focused to be useful. No objections at [[Special:PermaLink/1023452852#Spammy log-only filters]]. --Suffusion of Yellow 20:41 16 May 2021
Disable; needs to be more narrowly focused to be useful. No objections at [[Special:PermaLink/1023452852#Spammy log-only filters]]. --Suffusion of Yellow 20:41 16 May 2021
Add logic to detect whether the page is a disambiguation by looking for the 4 most popular dab template aliases. --wugapodes 21:53 27 May 2021
Filter conditions
Conditions:
(documentation)
!("confirmed" in user_groups) &
!("confirmed" in user_groups) &
page_namespace == 0 &
page_namespace == 0 &
(
(
     page := get_matches("\[\[\s*([^\]\|]+)", added_lines);
     page := get_matches("\[\[\s*([^\]\|]+)", added_lines);
     page[0] &
     page[0] &
     !(page[1] in removed_lines) &
     !(page[1] in removed_lines) &
     ('class="new" title="' + page[1]) in new_html
     ('class="new" title="' + page[1]) in new_html &
    (
        "{{disambiguation" |
        "{{dab" |
        "{{disambig" |
        "{{disam"
    ) in new_wikitext
)
)