More actions
(Created blank page) |
(→Filter request: new section) Tag: 2017 source edit |
||
Line 1: | Line 1: | ||
== Filter request == | |||
Create a filter that would '''block''' <s>users</s>spambots who insert HTML line breaks on their user pages (or in an unlikely scenario, articles), as the CAPTCHA is not very effective. The rules for the filter would look like this: | |||
<pre> | |||
equals_to_any(page_namespace, 0, 2) & | |||
length(added_lines) == 1 | |||
count('<br>', added_lines) > 1 | |||
</pre> | |||
This is a modified version of [[wikipedia:m:special:abusefilter/104|this filter]], which is used across WMF wikis, such as Wikipedia. --[[User:Cat|Cat]] ([[User talk:Cat|Meow]]) 04:14, 18 January 2025 (UTC) |
Revision as of 04:14, 18 January 2025
Filter request
Create a filter that would block usersspambots who insert HTML line breaks on their user pages (or in an unlikely scenario, articles), as the CAPTCHA is not very effective. The rules for the filter would look like this:
equals_to_any(page_namespace, 0, 2) & length(added_lines) == 1 count('<br>', added_lines) > 1
This is a modified version of this filter, which is used across WMF wikis, such as Wikipedia. --Cat (Meow) 04:14, 18 January 2025 (UTC)