Edit filter management

Jump to navigation Jump to search

Differences between versions

ItemVersion from 03:26, 19 September 2017 by MusikAnimalVersion from 16:02, 2 August 2018 by Amorymeltzer
Basic information
Notes:
 
Users creating very short articles
 
Users creating very short articles
  
 
A size of 200 was more or less chosen at random, it make sense to adjust it higher or lower to better fit user behavior.
 
A size of 200 was more or less chosen at random, it make sense to adjust it higher or lower to better fit user behavior.
  
 
Apparently one can create correct disambigs in less than 200 characters...
 
Apparently one can create correct disambigs in less than 200 characters...
 
Added {{softredirect}}. - Ruslik
 
Added {{softredirect}}. - Ruslik
  
 
Added {{db-unpatrolled}}, see bugzilla #18114 - Stifle
 
Added {{db-unpatrolled}}, see bugzilla #18114 - Stifle
  
 
Stubs aren't necessarily bad. I think the warning ("make your article longer") needs to be changed, we don't want to discourage good edits. -Prodego
 
Stubs aren't necessarily bad. I think the warning ("make your article longer") needs to be changed, we don't want to discourage good edits. -Prodego
  
 
Disabled for sysops. - KoH
 
Disabled for sysops. - KoH
  
 
I limited this filter to non-autoconfirmed users and decreased the size limit to 150. - Ruslik
 
I limited this filter to non-autoconfirmed users and decreased the size limit to 150. - Ruslik
  
 
add tag "very short new article" - Cen
 
add tag "very short new article" - Cen
  
 
I rearranged conditions. - Ruslik
 
I rearranged conditions. - Ruslik
 
As did I, hopefully this will improve runtime. - Hersfold
 
As did I, hopefully this will improve runtime. - Hersfold
 
Nope, that made it markedly worse. - Hersfold
 
Nope, that made it markedly worse. - Hersfold
 
Try this instead... - Hersfold
 
Try this instead... - Hersfold
  
 
There is nothing wrong with a short article, lets not patronize. People can work in steps. Disable - P
 
There is nothing wrong with a short article, lets not patronize. People can work in steps. Disable - P
  
 
Agree - remove warning bur re-enable because tagging them is useful - Cen
 
Agree - remove warning bur re-enable because tagging them is useful - Cen
  
 
Optimizing. -TS
 
Optimizing. -TS
 
Optimized -- Shirik 21 Feb 2010
 
Optimized -- Shirik 21 Feb 2010
  
 
optimised 2015 --zzuuzz
 
optimised 2015 --zzuuzz
 +
 +
User user_rights instead of user_groups to turn off for sysops after recent ACPERM-inspired bump-up to extendedconfirmed from confirmed (see [[Special:Permalink/822578953#Filter 98 and ACTRIAL]]) -- Amory
Filter conditions
Conditions:
(documentation)
 
article_articleid == 0 &  
 
article_articleid == 0 &  
 
(
 
(
 
  new_size < 150 &
 
  new_size < 150 &
 
  (
 
  (
 
   article_namespace == 0 &  
 
   article_namespace == 0 &  
 
   (
 
   (
   !"extendedconfirmed" in user_groups &
+
   !"extendedconfirmed" in user_rights &
 
   (
 
   (
 
     !added_lines irlike "{{(?:surname|given name|delrev|softredirect|db-unpatrolled)}}|#redirect" &
 
     !added_lines irlike "{{(?:surname|given name|delrev|softredirect|db-unpatrolled)}}|#redirect" &
 
     !'disambig' in lcase(new_html)
 
     !'disambig' in lcase(new_html)
 
   )
 
   )
 
   )
 
   )
 
  )
 
  )
 
)
 
)