Edit filter configuration

Differences between versions

ItemVersion from 17:29, 2 January 2024 by IngenuityVersion from 22:01, 2 January 2024 by Suffusion of Yellow
Basic information
Notes:
Per [[Wikipedia:Edit_filter/Requested#Non-EC_ARBPIA_article_creations]] --Galobtter 22:19 5 Nov 2023
Per [[Wikipedia:Edit_filter/Requested#Non-EC_ARBPIA_article_creations]] --Galobtter 22:19 5 Nov 2023


page_id == 0 to page_age == 0; per EFD, page_id is unreliable. --Ingenuity 2 Jan 2024
page_id == 0 to page_age == 0; per EFD, page_id is unreliable. --Ingenuity 2 Jan 2024


Filter should now match pages moved into mainspace by non-EC users. --Ingenuity 2 Jan 2024
Filter should now match pages moved into mainspace by non-EC users. --Ingenuity 2 Jan 2024
Page content is not available during page moves; use moved_to_title instead. Switch back to page_id; local documentation is out of date and page_age might be slower. Remove "e" from "palestine" to also over "palestinian". Also use user_groups instead of user_rights per [[WP:EF/TP]] --Suffusion of Yellow 21:57 2 Jan 2024
Filter conditions
Conditions:
(documentation)
!("extendedconfirmed" in user_rights) &
i_p := "israel|palestin|hamas|gaza";
new_wikitext irlike "israel|palestine|hamas|gaza" &
 
!contains_any(user_groups, "extendedconfirmed", "sysop", "bot") &
(
(
     (
     (
         page_age == 0 &
         action == "edit" &
         page_namespace == 0
        page_id == 0 &
         page_namespace == 0 &
        (new_wikitext + page_title) irlike i_p
     ) | (
     ) | (
         action == "move" &
         action == "move" &
         moved_from_namespace != 0 &
         moved_from_namespace != 0 &
         moved_to_namespace == 0
         moved_to_namespace == 0 &
        moved_to_title irlike i_p
     )
     )
)
)