Jump to content

Edit filter configuration

Differences between versions

ItemVersion from 00:12, 7 March 2015 by Samwalton9Version from 15:24, 7 March 2015 by Samwalton9
Basic information
Notes:
Per request at [[Wikipedia:Edit filter/Requested]] --Od Mishehu
Per request at [[Wikipedia:Edit filter/Requested]] --Od Mishehu
Umm, this needed some optimization. Move namespace condition to first, its the easiest to preform. Moved new_wikitext condition to second, and changed it to added_lines, and moved old wikitext bit to last. Removed all lcase from the filter, replaced with regex. Works the same, but should be more efficnet than 3.6ms -- Tim
Umm, this needed some optimization. Move namespace condition to first, its the easiest to preform. Moved new_wikitext condition to second, and changed it to added_lines, and moved old wikitext bit to last. Removed all lcase from the filter, replaced with regex. Works the same, but should be more efficnet than 3.6ms -- Tim
Exclude long pages and autoreviewwers -- Tim
Exclude long pages and autoreviewwers -- Tim
Fixify. -- Tim
Fixify. -- Tim
Admins don't get an exception? Editcount is a better way IMO. - KoH
Admins don't get an exception? Editcount is a better way IMO. - KoH


Too intensive -P
Too intensive -P


Deleted. - KoH
Deleted. - KoH


Improved syntax and re-enabled per requirement: [[Wikipedia:Village_pump_(proposals)/Archive_117#Proposed_technical_change:_show_pages_expanded_from_redirects_on_Special:NewPages_and_Special:NewPagesFeed]] -- Samwalton9, 7 March 2015
Improved syntax and re-enabled per requirement: [[Wikipedia:Village_pump_(proposals)/Archive_117#Proposed_technical_change:_show_pages_expanded_from_redirects_on_Special:NewPages_and_Special:NewPagesFeed]] -- Samwalton9, 7 March 2015
new_size > 0 to stop flagging of blanked articles. --Samwalton9, 7 March 2015
Filter conditions
Conditions:
(documentation)
article_namespace == 0 &
article_namespace == 0 &
(
(
  old_size < 200  &
  old_size < 200  &
   (
   (
   removed_lines rlike "#[Rr][Ee][Dd][Ii][Rr][Ee][Cc][Tt]" &
   new_size > 0 &
     (
     (
       !new_wikitext rlike "#[Rr][Ee][Dd][Ii][Rr][Ee][Cc][Tt]"
    removed_lines rlike "#[Rr][Ee][Dd][Ii][Rr][Ee][Cc][Tt]" &
       (
        !new_wikitext rlike "#[Rr][Ee][Dd][Ii][Rr][Ee][Cc][Tt]"
      )
     )
     )
   )
   )
)
)