Thanks for reporting this Chris. I temporarily fixed it. It's some kind of bug affecting NovemBot and Toolforge. It can be observed by looking at the -1.6 million byte diffs in this edit history. Will try to release a patch for this soon. –Novem Linguae (talk) 22:29, 8 March 2024 (UTC)Reply
Fixed I think. I added some code that checks how much data the bot wants to write, and if it is less than 1 million bytes, it will skip that day. Please let me know if it happens again, although I think this should do the trick. –Novem Linguae (talk) 08:54, 9 March 2024 (UTC)Reply
Latest comment: 1 year ago3 comments3 people in discussion
Here's a suggestion. For username highlighter, show bots under a different colour. It makes no sense to show them regular green. A simple unobstrusive grey or similar might be way better. Soni (talk) 00:22, 9 June 2024 (UTC)Reply
Novem Linguae, I just became aware of the existence of this script at the current RfA Talk page. I have what I think is a simple question. If I install it, does it automatically run on every page I look at? If yes, is there a way to turn it off without uninstalling it, and turn it back on when I wish to be dazzled by color? Thanks.--Bbb23 (talk) 20:38, 14 June 2024 (UTC)Reply
It doesn't currently have a toggle. If you only want to run it on RFA subpages, that would be easy to script up in common.js and I could help with that. If you prefer a link that toggles it and the setting are saved between page loads, that would be a bit trickier. Thoughts? –Novem Linguae (talk) 22:08, 14 June 2024 (UTC)Reply
I prefer a toggle, but I don't want to put you to extra work if my wish is not shared by others. BTW, there's something else I'd really like if you feel like tackling it. I don't know how hard it is. I want to be able to look at the contribution history of a page and see only the edits of blocked users. I've wished this for a while as it would help sometimes when I'm investigating a possible new sock.--Bbb23 (talk) 22:49, 14 June 2024 (UTC)Reply
@Bbb23. Here's some code to make UserHighlighterSimple only run on RFA subpages. You'd put this in your common.js (and also make sure to delete the old entry in common.js):
I'm currently a little busy and I don't think I'll have time to work on a toggle or a "show only blocked users in contribs" script. For the second one, you might want to post at WP:US/R. Should be an hour or two to script up for someone experienced. Hope that helps! –Novem Linguae (talk) 14:30, 23 June 2024 (UTC)Reply
I recently started using your script, but wanted to change the colour admins look to yellow. However, customizing a single group, requires one to specify every group's colour and styling in the .css file. I took the code from the js file and changed it a bit to use it in my .css file. It would be beneficial if this default code can be put into the docs. Then one can just copy this, change the groups that they want to customize, and be done! Thanks!
Latest comment: 1 year ago2 comments2 people in discussion
This happens in linksToAUser in urlHelper. Specifically in my case I discovered this bug while browsing ANI, the script stumbled upon this link: [http://Wikipedia:Requests%20for%20arbitration/Eastern%20Europe contentious topic] which it converts to: http://Wikipedia:Requests%20for%20arbitration/Eastern%20Europe
Which is invalid and produces this error in the console:
And afterwards the script stops highlighting all users after the link. Which you should be able to see by my name not being highlighted, while everyone above this section has some nice color in them.
I fixed this for me personally by putting urlHelper in a try-catch:
console.debug(`UserHighlighterSimple: Checking URL: ${url}`);//temp to find which url is the problemtry{varurlHelper=newURL(url);//changed from const otherwise it's not accessible outside the try}catch(e){// If the URL is not valid, skip it.console.warn(`UserHighlighterSimple: Invalid URL: ${url}`,e);// temp for debugging returnfalse;}
Thanks. It doesn't look easily fixable. I think CSS text-shadow just doesn't look great on non-white backgrounds. At least the text is visible unlike in that other screenshot! –Novem Linguae (talk) 05:32, 21 October 2025 (UTC)Reply
Too hard. This particular signature isn't putting the text-shadow on the <a> tag. It's putting it on a <span> tag 2 levels above the <a> tag. Not worth coding up something so unusual. –Novem Linguae (talk) 05:38, 21 October 2025 (UTC)Reply
That's a decent start. Would probably need a bot to convert that into a simple list of topic banned usernames in .json format and publish it somewhere. Then modify an appropriate user script or gadget (maybe MediaWiki:Gadget-markblocked.js?) to ingest the data and place a special marking on such a user. –Novem Linguae (talk) 07:21, 16 April 2026 (UTC)Reply