Edit filter management

Jump to navigation Jump to search

Differences between versions

ItemVersion from 23:46, 17 September 2013 by LegoktmVersion from 16:59, 24 July 2015 by Rich Farmbrough
Basic information
Notes:
 
Filter should catch submissions to Articles for creation that do not contain the submissions template, which normally require brute forcing through thousands of submissions to locate.
 
Filter should catch submissions to Articles for creation that do not contain the submissions template, which normally require brute forcing through thousands of submissions to locate.
 
-Disable. Again, this is blocking good faith edits for a minor issue, which isn't something we should be doing. -Prodego
 
-Disable. Again, this is blocking good faith edits for a minor issue, which isn't something we should be doing. -Prodego
  
 
- Re-enabled. Will discuss with Prodego. - Someguy1221
 
- Re-enabled. Will discuss with Prodego. - Someguy1221
  
 
Merged regexes. - Ruslik
 
Merged regexes. - Ruslik
 
Added template support and optimized -- Shirik 16 Mar 2010
 
Added template support and optimized -- Shirik 16 Mar 2010
  
 
Account for draftnew (2nd option in WP:WIZGO). --slakr 05Oct2011
 
Account for draftnew (2nd option in WP:WIZGO). --slakr 05Oct2011
  
 
Ignore flagged bots - Legoktm 24 June 2013
 
Ignore flagged bots - Legoktm 24 June 2013
  
 
Only apply to WT:AFC pages, not WT:WPAFC pages - Legoktm 17 Sept 2013
 
Only apply to WT:AFC pages, not WT:WPAFC pages - Legoktm 17 Sept 2013
 +
 +
Optimize for condition count. RF 20150724
Filter conditions
Conditions:
(documentation)
(article_namespace == 5) &
+
article_namespace == 5 & (
(article_articleid == 0) &
+
  article_articleid == 0 & (
(article_prefixedtext rlike ":Articles for creation.*") &
+
    article_prefixedtext rlike ":Articles for creation.*" & (
!("bot" in user_groups) &
+
      !("bot" in user_groups) & (
!(new_wikitext rlike "{{subst:AFC submission/(draftnew|submit|submit\|type\=(?:dab|template))}}|{{subst:submit}}|{{WPAFC")
+
        !new_wikitext rlike "{{subst:AFC submission/(draftnew|submit|submit\|type\=(?:dab|template))}}|{{subst:submit}}|{{WPAFC"
 +
      )
 +
    )
 +
  )
 +
)