Edit filter management

Jump to navigation Jump to search

Differences between versions

ItemVersion from 12:26, 15 February 2015 by ZzuuzzVersion from 12:24, 18 February 2015 by Rich Farmbrough
Basic information
Notes:
 
Per RAF.  Detects probable cut and paste moves where a large new page is created with either [edit] text in it (indicative of copying the HTML rather than the source) or with message boxes already on it.
 
Per RAF.  Detects probable cut and paste moves where a large new page is created with either [edit] text in it (indicative of copying the HTML rather than the source) or with message boxes already on it.
  
 
Narrowing search pattern to tags that would rarely be placed by the article's creator except in a copy-paste. ~ Someguy1221
 
Narrowing search pattern to tags that would rarely be placed by the article's creator except in a copy-paste. ~ Someguy1221
  
 
:Made this case insensitive.  -DF
 
:Made this case insensitive.  -DF
  
 
Added tag: possible cut and paste move. --Drilnoth
 
Added tag: possible cut and paste move. --Drilnoth
 
Limited this filter to user with editcount less than 2000. - Ruslik
 
Limited this filter to user with editcount less than 2000. - Ruslik
  
 
Autoconfirmed only, presumably everyone with the move tag will make actual moves -Prodego
 
Autoconfirmed only, presumably everyone with the move tag will make actual moves -Prodego
  
 
Optimizing - KoH
 
Optimizing - KoH
  
 
Add a few tags from filter 237 in order to merge the two filters.  Change order of tests for (presumably) faster operation.  Change from not auto-confirmed only to less than 250 edits, as inexperienced editors often do copy & paste moves despite having the technical ability to use the move button.  Change tag to read "... or recreation" since that is another explanation for where the tags came from.  -ThaddeusB
 
Add a few tags from filter 237 in order to merge the two filters.  Change order of tests for (presumably) faster operation.  Change from not auto-confirmed only to less than 250 edits, as inexperienced editors often do copy & paste moves despite having the technical ability to use the move button.  Change tag to read "... or recreation" since that is another explanation for where the tags came from.  -ThaddeusB
  
 
please don't change the name of a tag already applied to edits, as it creates a new one, instead change the description - Cen
 
please don't change the name of a tag already applied to edits, as it creates a new one, instead change the description - Cen
 +
 +
Optimize (nest per Dragon's Flight, see if it changes from 0.66 ms and 2 conditions). RF 2015-02-18
Filter conditions
Conditions:
(documentation)
article_articleid == 0 &
+
article_articleid == 0 & (
article_namespace == 0 &
+
  article_namespace == 0 & (
user_editcount < 250 &
+
    user_editcount < 250   & (   
new_size > 500 &
+
      new_size > 500         & (
(
+
        "[edit]" in new_wikitext |
  "[edit]" in new_wikitext |
+
        lcase(new_wikitext) rlike
  lcase(new_wikitext) rlike
+
        "\{\{(unreferenced|advert|coi|notability|pp|cleanup|afdm|refimprove|article issues).*\}\}"
    "\{\{(unreferenced|advert|coi|notability|pp|cleanup|afdm|refimprove|article issues).*\}\}"
+
      )
 +
    )
 +
  )
 
)
 
)