Jump to content

User talk:JJPMaster

Page contents not supported in other languages.
Add topic
From Wikibooks, open books for an open world
Latest comment: 2 months ago by Cactusisme in topic Luna

Welcome!

[edit source]
Welcome to Wikibooks, JJPMaster!
First steps tutorial

Wikibooks is for collaborative development of free textbooks.

You do not need technical skills to contribute. You can easily change most books. Please introduce yourself, and let us know what interests you.

If you already contribute at other Wikimedia projects, our Wikimedia Orientation should quickly get you started.

(Would you like to provide feedback on this message?)
Getting help
Made a mistake?
Goodies, tips and tricks

--Jules (Mrjulesd) 12:43, 8 March 2021 (UTC)Reply

Notice of expiration of your sysop right

[edit source]
Hi, as part of Global reminder bot, this is an automated reminder to let you know that your permission "sysop" (Administrators) will expire on 2025-01-30 04:22:07. Please renew this right if you would like to continue using it. In other languages: click here Leaderbot (discusscontribs) 19:41, 23 January 2025 (UTC)Reply

I have added a tag to a page you created

[edit source]

Hi! I'm JJPMaster, and I recently reviewed your page, User:JJPMaster/sandbox. I have added a tag to the page, because it may meet the criteria for speedy deletion. This means that it can be deleted at any time. The reason I provided was:

Test page

If you believe that your page should not be deleted, please post a message on the page's talk page explaining why. If your reasoning is convincing, your page may be saved.

If you have any questions or concerns, please let me know. Thank you! JJPMaster (she/they) 10:57, 29 January 2025 (UTC)Reply


Hey, how exactly did you add that edit tag?

[edit source]

I tried to add a tag for my own tool on another wiki, but after I created it, and tried to make an edit using the tag, it kept saying that the tag didn't exist. I tried an existing tag, and it did work. Am I missing something? I created the MediaWiki:Tag-<tagname> file, and the description and the link one, but did I miss something? L10nM4st3r / ROAR at me! 17:18, 29 January 2025 (UTC)Reply

Did you use the Special:Tags interface first? JJPMaster (she/they) 17:55, 29 January 2025 (UTC)Reply
I had no idea that existed! I created the pages manually. Thank you. L10nM4st3r / ROAR at me! 18:30, 29 January 2025 (UTC)Reply

WikiProject Little Star Newsletter: January 2025

[edit source]

The first full month of WikiProject Little Star has come to a close, and we have got a lot of work done! Here's all of the main projects we've worked so far:

OneClickWelcomer

[edit source]

This is a gadget that was designed to supersede MediaWiki:Gadget-Welcome.js, which has not worked for several years. This adds the ability to welcome users with a single click from Special:RecentChanges, Special:Contributions, or a user's talk page. It also allows for quickly warning users with {{Test1}}, {{Test2}}, or {{Blatantvandal}}.

Dark mode optimizations

[edit source]

Xeverything11 has spent a significant amount of time helping to ensure that templates and interface messages are accessible and dark mode-compliant.

markAdmins

[edit source]

JJPMaster (bot) has been summoned to keep a list of everyone's user rights across the English Wikibooks, which allows the markAdmins gadget to run with up-to-date data for the first time in about two years.

Miscellaneous gadgets

[edit source]

JJPMaster helped update the codebases of other outdated gadgets, including GetCollection, SidebarTranslate, BookCat, and markblocked, the last of which is the reason for the only time her account has ever been blocked on any Wikimedia wiki.

Unmerged transwikis

[edit source]

With the help of Graham87, Pppery, UtherSRG, and the Wikibooks community, JJPMaster led an initiative to complete the histories of old articles that were imported from the English Wikipedia. This investigation is responsible for the majority of history merges in Wikibooks history.

This is perhaps the biggest project that WikiProject Little Star has developed. Luna is a collection of user scripts that attempt to help users review new pages and patrol recent changes, similarly to what Twinkle used to do. It includes functionalities such as nominating pages for speedy deletion, making requests at RfD, tagging files for copyright problems, adding maintenance templates to books, removing all links to a particular page, and, most recently, a rollback-like feature. It can be used by all autoconfirmed users, but some features are limited to reviewers or administrators.

That's it for WikiProject Little Star's first newsletter! You can subscribe here if you haven't already. Thank you!

Delivered on behalf of JJPMaster (she/they) by MediaWiki message delivery (discusscontribs) 05:16, 2 February 2025 (UTC)Reply

Suggested update to filter 1 and its disallow message

[edit source]

I would suggest the following update to filter 1 that disallows large deletions of pages from new users:

  • Instead of (page_namespace == 0 | page_namespace == 102 | page_namespace == 110) for page namespaces, I have changed it to equals_to_any(page_namespace, 0, 102, 110) to save a condition, and have placed it at the top as the first check.
  • !(user_name in page_namespace) will not work at all, so I have removed it and instead have changed it to !(user_name in page_recent_contributors). page_recent_contributors tends to be slow in performance, so I have placed it at the very bottom of the filter as the last check. Regarding this, it is a good idea to place heavy variables (or variables that can be slow in performance) at the last check of any filter.

The code below is what I am suggesting for the filter itself:

equals_to_any(page_namespace, 0, 102, 110) &
!("autoconfirmed" in user_rights) &
new_size >= 50 &
edit_delta < -5000 &
!(added_lines irlike "^\s*#\s*REDIRECT\s*\[\[") &
!(user_name in page_recent_contributors)

I am also suggesting a change to the message to appear more friendly and to have some grammar changes with a link about vandalism:

{{edit filter warning
| action   = warn
| friendly = yes
| text     = An automated filter has identified this edit as removing a large amount of content, which is potentially unconstructive. Because of this, your edit was not saved. Some material on Wikibooks should be removed, such as [[Wikibooks:Dealing with vandalism|vandalism]] and false or libelous information. If this is what you're doing, and you believe your removal is correct, please ask for the edit to be performed at the [[Wikibooks:Reading room/Administrative Assistance|reading room]]. '''If you did not remove a large amount of content, and this message is in error, please [[Wikibooks:Edit filter/False positives|report this]].'''
}}

Thank you. Codename Noreste (discusscontribs) 16:05, 6 February 2025 (UTC)Reply

@Codename Noreste: These are both  Implemented, but I would like to ask if it could be a good idea to include an exception for the filter if the user has an edit summary indicating that the user was reverting vandalism. JJPMaster (she/they) 17:41, 6 February 2025 (UTC)Reply
!(summary irlike "^(?:revert|rv|undid)") should take care of that. Codename Noreste (discusscontribs) 17:55, 6 February 2025 (UTC)Reply
 Implemented. JJPMaster (she/they) 17:58, 6 February 2025 (UTC)Reply

Citing of other projects' policies

[edit source]

Hi @JJPMaster! I've noticed on a couple occasions that you sometimes cite another project's policies as justification for something here on WB. See [ this edit ] and [ this edit ] for examples. I'm not sure it's good practice to be citing another project's policies here, since technically the community at WB never agreed to enact them as policies. I think some of these policies are useful, and we could potentially import them here, but they would need to be tailored slightly and then approved by the WB community first. We should make sure our community agrees to be bound by any policies before they can be used here. Thoughts? —Kittycataclysm (discusscontribs) 15:57, 8 February 2025 (UTC)Reply

@Kittycataclysm: In these particular cases, I wasn't exactly trying to say that they apply here. In the ATD instance, I was trying to use it as a reference page for alternatives to deletion, as redirecting, merging, transwikiing, etc. are also options here. The ownership instance was a bit of an oversight, since I didn't notice that WB:OWN exists. JJPMaster (she/they) 16:10, 8 February 2025 (UTC)Reply

You've got mail!

[edit source]
Hello, JJPMaster. Please check your email; you've got mail!
It may take a few minutes from the time the email is sent for it to show up in your inbox. You can remove this notice at any time by removing the {{You've got mail}} or {{ygm}} template.Codename Noreste (discusscontribs) 18:30, 19 April 2025 (UTC)Reply

Luna

[edit source]

Luna doesn't seem to have a warning option for advertising. Cactusisme (discusscontribs) 10:10, 5 May 2025 (UTC)Reply

@Cactusisme: That would be because there is no user warning template for advertising. Most cases will likely fall under the related template for "external link spamming". JJPMaster (she/they) 12:40, 5 May 2025 (UTC)Reply
I see, okay Cactusisme (discusscontribs) 12:09, 6 May 2025 (UTC)Reply