User talk:Chrs: Difference between revisions

From TestWiki
Latest comment: 2 years ago by ApexAgunomu in topic Can you fix my errors in filter 60?
Content added Content deleted
m (→‎Can you fix my errors in filter 60?: add syntaxhighlight tag)
Line 38: Line 38:


Hi Chrs. I was changing filter 60 a little to make it more effective at "preventing mayhem". However I can't save it due to an error I keep getting and don't know how to fix. Here's my updated version of the code:
Hi Chrs. I was changing filter 60 a little to make it more effective at "preventing mayhem". However I can't save it due to an error I keep getting and don't know how to fix. Here's my updated version of the code:
<syntaxhighlight>

action == "edit" &
action == "edit" &
user_name == "ApexAgunomu" &
user_name == "ApexAgunomu" &
Line 60: Line 60:
) &
) &
!(summary irlike '\b(revert|rv|undid|undo|restor)')
!(summary irlike '\b(revert|rv|undid|undo|restor)')
</syntaxhighlight>

Thanks for your help with this! [[User:ApexAgunomu|ApexAgunomu]] ([[Special:Contribs/ApexAgunomu|<span style="color:red">My changes here</span>]] | [[Special:Newsection/User talk:ApexAgunomu|<span style="color:#0080ff">Drop me a line</span>]]) 14:23, 19 April 2022 (UTC)
Thanks for your help with this! [[User:ApexAgunomu|ApexAgunomu]] ([[Special:Contribs/ApexAgunomu|<span style="color:red">My changes here</span>]] | [[Special:Newsection/User talk:ApexAgunomu|<span style="color:#0080ff">Drop me a line</span>]]) 14:23, 19 April 2022 (UTC)

Revision as of 20:33, 19 April 2022

Welcome!


Hello, Chrs!
Welcome to Public Test Wiki! Thank you for your contributions! I hope that you get the most out of The Test Wiki! If you have any questions you can ask at the Community Portal. Please remember to sign your name on talk pages by typing four tildes "~~~~"; this will automatically produce your name and the date. If you so desire, feel free to request sysop rights, taking care to read the information page on how to do so. Finally, please do your best to always fill in the edit summary field. Happy editing!

MdsShakil (talk) 07:56, 4 November 2021 (UTC)Reply[reply]

Inactivity

Hello, In accordance with TestWiki:Inactivity, I am writing to inform you that your user rights will be removed on or after 2 January 2022 if you do not return to activity.

Please inform me if you would like to retain your rights and/or be made exempt from inactivity rules.

In the event you wish to return to TestWiki after the above date, you may re-request rights via TestWiki:Request permissions.

Thanks,

MediaWiki message delivery (talk) 02:19, 28 December 2021 (UTC) on behalf of MediaWiki message delivery (talk)Reply[reply]
For the Consul Team
02:19, 28 December 2021 (UTC)
I would like to retain my rights. — Arcversin (talk) 05:07, 28 December 2021 (UTC)Reply[reply]
 Done, thank you, Arcversin. The mere fact of your replying was sufficient for retaining your permissions according to our official policy. Dmehus (talk) 08:23, 3 January 2022 (UTC)Reply[reply]

Can you restore this translation?

Hi. I deleted the following translation as a test, but don't know how to restore it. Do you know how to restore the page? Thanks!

https://publictestwiki.com/w/index.php?title=Translation-test/en&action=edit&redlink=1 ApexAgunomu (talk) 01:22, 28 March 2022 (UTC)Reply[reply]

Can you fix my errors in filter 60?

Hi Chrs. I was changing filter 60 a little to make it more effective at "preventing mayhem". However I can't save it due to an error I keep getting and don't know how to fix. Here's my updated version of the code:

action == "edit" &
user_name == "ApexAgunomu" &
(
    (
        regexp := '(\b|\d)(h(i|ey) *people|fucker|sh(i|!))thead|ret(a|@))rd|n(i|!))gger|f(a|@))ggot|trann(ie|y))s?(\b|\d)';
        (
            (added_lines irlike regexp) &
            !(removed_lines irlike regexp)
        ) | (
            page_title irlike regexp &
            page_age == 0
        )
    ) | ( /* new pages starting with hi/hey */
        added_lines irlike '^[\d\W]*h+(i|e+y)\W+\w' &
        page_age == 0
    ) | ( /* adding nonsense categories (no spaces, 3+ consonants,2+ vowels) to non-test pages */
        added_lines irlike '\[\[Category:\w*[b-df-hj-np-tv-z]{3,}\w*]]' &
        old_wikitext irlike '\[\[Category:Non-test pages({{|]])'
    )
) &
!(summary irlike '\b(revert|rv|undid|undo|restor)')

Thanks for your help with this! ApexAgunomu (My changes here | Drop me a line) 14:23, 19 April 2022 (UTC)Reply[reply]