Page MenuHomePhabricator

Erutuon
User

Projects

User does not belong to any projects.

Today

  • Clear sailing ahead.

Tomorrow

  • Clear sailing ahead.

Sunday

  • Clear sailing ahead.

User Details

User Since
May 30 2017, 2:27 AM (359 w, 3 d)
Availability
Available
LDAP User
Unknown
MediaWiki User
Erutuon [ Global Accounts ]

Recent Activity

Mar 9 2024

Erutuon added a comment to T13555: .mw-editsection links should not be part of the <h#> element.

Sounds like the patch will fix the problem with a gadget on English Wiktionary. MediaWiki:Gadget-aWa.js moves the sections of concluded discussions to talk pages of entries. It currently displays [subscribe] at the beginning of the section name, because it grabs the textContent of mw-headline elements.

Mar 9 2024, 2:03 AM · MW-1.42-notes (1.42.0-wmf.23; 2024-03-19), User-notice, Patch-For-Review, Editing-team (Kanban Board), Web-Team-Backlog (Needs Prioritization (Tech)), Technical-Debt, Epic, Accessibility, MediaWiki-Parser

Jan 30 2024

Erutuon added a comment to T356145: Unable to Expand Headings when Previewing New Page Created on Mobile.

I went through the reproduction steps and spotted the Edittools gadget erroring out, but I've fixed the checks for missing elements and that error has been cleared up. That gadget is installed by default for all logged-in users, so it could have been erroring out and causing some other JavaScript to not run. (I also had to fix one of my scripts, but that isn't relevant to most users.) Now the Edittools error doesn't appear in the JavaScript console, but it's still impossible to expand the heading, so the cause is something else.

Jan 30 2024, 7:32 PM · Verified, Editing-team (Kanban Board), Patch-For-Review, MobileFrontend (MobileFrontend (Editor))

Jan 29 2024

Erutuon added a comment to T354139: Category sortkeys are not handled properly if they contain '' or '''.

To me, the sortkey field for categories should be treated as nowiki text. As with nowiki, HTML entities would be decoded (i.e. &amp; --> &) , but that's it.

Jan 29 2024, 9:18 AM · Parsoid, MediaWiki-Categories, MediaWiki-Parser

Jan 17 2024

Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

I looked back at my first post and got the test.sh to run in toolforge-jobs when I set PATH=/data/project/rustup/rustup/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin:$PATH and removed +stable from the command in test.sh. Maybe that means I can actually compile with toolforge-jobs now.

Jan 17 2024, 10:24 PM · Grid-Engine-to-K8s-Migration

Sep 18 2023

Erutuon added a comment to T346585: Miscellaneous bugs in Parser.php.

I updated the task description to link to the latest commit (with line number adjustments). Then I realized the post mentioned 1.40 so I changed the links to the 1.40-tagged commit.

Sep 18 2023, 12:05 AM · MediaWiki-Parser
Erutuon updated the task description for T346585: Miscellaneous bugs in Parser.php.
Sep 18 2023, 12:04 AM · MediaWiki-Parser

Sep 17 2023

Erutuon updated the task description for T346585: Miscellaneous bugs in Parser.php.
Sep 17 2023, 11:48 PM · MediaWiki-Parser
Erutuon added a comment to T346590: Install Extension:WikiSEO on the English Wiktionary.

Reopened because English Wiktionary is not English Wikiversity. If there is another reason that this is a duplicate, please explain.

Sep 17 2023, 10:48 PM · Wikimedia-Extension-setup, Wikimedia-Site-requests
Erutuon reopened T346590: Install Extension:WikiSEO on the English Wiktionary as "Open".
Sep 17 2023, 10:47 PM · Wikimedia-Extension-setup, Wikimedia-Site-requests

Sep 13 2023

Erutuon added a comment to T49137: Expose method in Lua/Scribunto to fetch page titles from the prefix index.

I have just discovered that table.sort(t) on a simple table of UTF-8 string, does NOT sort the table correctly (producing nearly random order).

This is apparently caused by a bug in the strcoll C function in the C.UTF-8 locale in the old version of glibc available on the Wikimedia servers, as described in T193096#4161287. Lua's table.sort uses the less-than (<) operator if no comparison function is provided (https://www.lua.org/source/5.1/ltablib.c.html#sort_comp), and the less-than operator uses strcoll when comparing two strings (https://www.lua.org/source/5.1/lvm.c.html#l_strcmp). In English Wiktionary, a module that regularly encounters non-BMP characters (> U+FFFF) uses byte-by-byte comparison, which is equivalent to code point comparison for UTF-8.

Sep 13 2023, 10:26 PM · Scribunto
Erutuon added a comment to T50175: Scribunto/Lua should have a built-in method for retrieving categories used on a page.

There might actually be a better solution than this. If a module accesses category information, just prohibit population of categories by that module period. That is, if the module is like the first two scenarios, it would just do nothing and maybe add the module to a special page. This is something that can be checked after the module is done executing. For now, this might be a good solution until some way to detect these two scenarios is reliably determined. It would allow for category editnotices to work while preventing the two scenarios above from arising.

Sep 13 2023, 9:01 PM · MediaWiki CodeJam Dec 2023, Patch-For-Review, Scribunto

Mar 20 2023

Erutuon added a comment to T332529: DISPLAYTITLE not working on English Wiktionary (due to local template).

The explanation is that the display title {{DISPLAYTITLE:''M''<sub>🜨</sub>}} was placed before the {{head|mul|symbol|head=''M''<sub>🜨</sub>}} template, and the module (Module:headword ) invoked by the template provided a conflicting display title <span class="Latn">M🜨</span> in Lua (frame:callParserFunction("DISPLAYTITLE", display_title)). The module gets a return value that is a warning that renders like Warning: Display title "<i>M</i><sub>🜨</sub>" overrides earlier display title "<span class="Latn">M🜨</span>"., but doesn't print it. It probably should.

Mar 20 2023, 8:39 PM

Jan 30 2023

Erutuon created T328239: Don't require Module: prefix to be repeated in titles of modules that are being tested using TemplateSandbox.
Jan 30 2023, 12:43 AM · MediaWiki-extensions-TemplateSandbox

Jan 16 2023

Erutuon added a comment to T327113: miri complaining about mwtitle: "Undefined Behavior: pointer to alloc251181 was dereferenced after this allocation got freed".

I posted a bug report on the Miri repository because I don't know if it would be an error in that tool or in the Rust compiler itself.

Jan 16 2023, 9:24 PM · mwbot-rs (mwtitle)
Erutuon added a comment to T327113: miri complaining about mwtitle: "Undefined Behavior: pointer to alloc251181 was dereferenced after this allocation got freed".

I took the offending function and test, got its dependencies, and reduced it to this shorter code that triggers the same error:

Jan 16 2023, 8:58 PM · mwbot-rs (mwtitle)
Erutuon added a comment to T327113: miri complaining about mwtitle: "Undefined Behavior: pointer to alloc251181 was dereferenced after this allocation got freed".

Oops, I was running rustc 1.63.0-nightly (a6b8c6954 2022-06-03). I got the error from the original post when I upgraded to rustc 1.68.0-nightly (9e75dddf6 2023-01-15). So it might be a compiler bug.

Jan 16 2023, 8:06 PM · mwbot-rs (mwtitle)
Erutuon added a comment to T327113: miri complaining about mwtitle: "Undefined Behavior: pointer to alloc251181 was dereferenced after this allocation got freed".

I looked at the code and couldn't detect any problems. I'm guessing it's referring to the allocation of the input string, but that shouldn't actually be dropped. I don't know how to reproduce the error message. I ran cargo +nightly miri test --all-features -- ip::sanitize_ip_recognizes_subpages_of_ipv6_address (after having to disable sccache) in the mwtitle directory and the offending test succeeded.

Jan 16 2023, 8:03 PM · mwbot-rs (mwtitle)

Dec 4 2022

Erutuon added a comment to T319696: Migrate dixtosa from Toolforge GridEngine to Toolforge Kubernetes.

I finally checked the webservice and it was gridengine. Switched to kubernetes with

Dec 4 2022, 4:51 PM · Grid-Engine-to-K8s-Migration
Erutuon closed T319696: Migrate dixtosa from Toolforge GridEngine to Toolforge Kubernetes as Resolved.
Dec 4 2022, 4:48 PM · Grid-Engine-to-K8s-Migration
Erutuon reopened T319696: Migrate dixtosa from Toolforge GridEngine to Toolforge Kubernetes as "Open".
Dec 4 2022, 4:45 PM · Grid-Engine-to-K8s-Migration
Erutuon closed T319696: Migrate dixtosa from Toolforge GridEngine to Toolforge Kubernetes as Resolved.
Dec 4 2022, 4:44 PM · Grid-Engine-to-K8s-Migration

Oct 30 2022

Erutuon added a comment to T320083: Migrate templatehoard from Toolforge GridEngine to Toolforge Kubernetes.

At the moment I can't use toolforge-jobs to compile the Rust programs that I use in this tool. They are compiled now, but if I make any changes I will have to recompile. cargo wasn't working inside a toolforge-jobs script in the enwikt-translations tool, so I assume it won't work here either, though I haven't tried it. See the comment explaining what I tried with cargo in enwikt-translations.

Oct 30 2022, 9:25 PM · Grid-Engine-to-K8s-Migration
Erutuon added a comment to T319696: Migrate dixtosa from Toolforge GridEngine to Toolforge Kubernetes.

I used jsub a few times in this tool to generate a sqlite database to try to speed up the tool. That didn't work. Not sure if the Grid Engine is used in any other way in it.

Oct 30 2022, 9:18 PM · Grid-Engine-to-K8s-Migration

Oct 27 2022

Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

I've run the task with jsub for now so that the website is up-to-date with the latest dump. I'll try it on toolforge-jobs again if anyone has an idea of how to get cargo to work.

Oct 27 2022, 10:02 PM · Grid-Engine-to-K8s-Migration

Oct 25 2022

Erutuon updated subscribers of T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

I'm so far unable to use the Rust toolchain in /data/project/rustup/rustup/.cargo/bin in the toolforge-jobs environment from inside my run.sh script.

Oct 25 2022, 2:32 AM · Grid-Engine-to-K8s-Migration

Oct 20 2022

Erutuon added a comment to T315063: Include linktarget data in public dumps.

@Ladsgroup @ArielGlenn Thank you for adding linktarget.sql! I'm able to generate my wanted templates list once again.

Oct 20 2022, 8:42 PM · Dumps-Generation
Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

@JJMC89 Thank you. That looks like it'll work, and I'll try that when the pages-articles.xml comes out.

Oct 20 2022, 8:39 PM · Grid-Engine-to-K8s-Migration

Oct 18 2022

Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

I got an email about this months ago, but didn't understand which parts of my work on Toolforge needed to be changed. I do jsub jobs and a webservice on this tool. The jsub part clearly needs to use toolforge-jobs, but how do I determine whether the webservice needs to be changed somehow?

if you do webservice status it should tell you whether the webservice is running on gridengine or kubernetes.
If it is on gridengine, take a look at this use case continuity table to see if a kubernetes-equivalent command works for you.
https://wikitech.wikimedia.org/wiki/News/Toolforge_Grid_Engine_deprecation#Use_case_continuity

Oct 18 2022, 9:22 PM · Grid-Engine-to-K8s-Migration
Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

My jsub command looks like this:

Oct 18 2022, 9:21 PM · Grid-Engine-to-K8s-Migration
Erutuon added a comment to T319724: Migrate enwikt-translations from Toolforge GridEngine to Toolforge Kubernetes.

I got an email about this months ago, but didn't understand which parts of my work on Toolforge needed to be changed. I do jsub jobs and a webservice on this tool. The jsub part clearly needs to use toolforge-jobs, but how do I determine whether the webservice needs to be changed somehow?

Oct 18 2022, 9:07 PM · Grid-Engine-to-K8s-Migration

Sep 13 2022

Erutuon created T317599: Allow ^ and $ in intitle regex search.
Sep 13 2022, 5:00 AM · Discovery-Search, CirrusSearch

Sep 6 2022

Erutuon added a comment to T315063: Include linktarget data in public dumps.

I can't generate my wanted templates list anymore. The list generator (written with this Rust library) relies on page.sql and templatelinks.sql and now requires linktarget.sql in order to work. The dumps should have been part of the roadmap for this database change, but I guess not many people write database queries against the dump files as I do, so it's a bit of an afterthought.

Sep 6 2022, 7:17 PM · Dumps-Generation

May 15 2022

Erutuon created T308398: Unclosed tags in parser content causes Vector 2022 skin cause display issues (strikethrough and italic tags) and should be flagged by linter.
May 15 2022, 7:50 AM · MW-1.41-notes (1.41.0-wmf.10; 2023-05-23), Patch-For-Review, Web-Team-Backlog (Web Team FY2022-23 Q4 Sprint 3), Parsoid, Desktop Improvements (Vector 2022)

Feb 20 2022

Erutuon added a comment to T301373: Siteinfo v2 format job needs to be fixed up.

It was bothering me that siteinfo2-namespacesv2.json in the 2022-02-01 dump had two 2s in it. Seems like siteinfo-namespacesv2.json would be a less confusing name. But I looked at the code for the Dump and SiteInfoDump and SiteInfoV2Dump classes and couldn't figure out where the v2 is coming from, and maybe it's too late to change it.

Feb 20 2022, 10:29 PM · Dumps-Generation

Feb 1 2022

Erutuon added a comment to T300469: Install clang for Toolforge use.

You can download and compile clang by yourself and use the locally compiled version when building other softwares.

Feb 1 2022, 7:42 AM · Toolforge (Software install/update)

Jan 31 2022

Erutuon created T300469: Install clang for Toolforge use.
Jan 31 2022, 1:50 AM · Toolforge (Software install/update)

Jan 12 2022

Erutuon added a comment to T297725: <inputbox> extension should not be allowed to touch .js sub-pages.

As far as I understand the examples listed in T270542 they all talk about pretty much exactly what this is about: semi-automatically injecting arbitrary code into a place where it can be executed. While attack-scenarios are a bit more unlikely in case of Lua modules, there is no guarantee either. Would we really make ScribuntoContent::canPreloadContent() return true?

Jan 12 2022, 8:44 PM · User-notice-archive, MW-1.38-notes (1.38.0-wmf.21; 2022-02-07), WMDE-TechWish-Sprint-2022-01-19, WMDE-TechWish-Sprint-2022-01-05, SecTeam-Processed, WMDE-TechWish-XMAS-Sprint-2021-12-15, WMDE-TechWish-Maintenance, Security, MediaWiki-extensions-InputBox

Jan 10 2022

Erutuon added a comment to T270542: Preload params don't work for non-wikitext content models.

The author and reviewers of the commit apparently didn't look for legitimate use-cases […]

Being an active Wikipedia volunteer since 2004 I can assure you, I did.

Jan 10 2022, 8:49 AM · User-DannyS712, MediaWiki-Parser, MediaWiki-Page-editing

Jan 9 2022

Erutuon added a comment to T270542: Preload params don't work for non-wikitext content models.

This is now intentionally and explicitly allowed only in wikitext content model for security reasons cf. r26087d4. Whether it worked before or never did there's no point in keeping this open.

Jan 9 2022, 5:55 PM · User-DannyS712, MediaWiki-Parser, MediaWiki-Page-editing
Erutuon updated subscribers of T298843: Preload parameter doesn't work in Module namespace.

@Ammarpad : I don't think this is a duplicate of T270542 because this is about preload= not putting text in the edit box, not about preloadparams[]= leaving $1 unchanged.

Jan 9 2022, 8:43 AM
Erutuon updated the task description for T298843: Preload parameter doesn't work in Module namespace.
Jan 9 2022, 12:48 AM
Erutuon created T298843: Preload parameter doesn't work in Module namespace.
Jan 9 2022, 12:43 AM

Dec 14 2021

Erutuon added a comment to T297340: $wgLegalTitleChars is hard to use outside PHP.

@thiemowmde: ASCII is defined by Unicode to include code points U+0000-U+007F, and so here non-ASCII is referring to code points U+0080 and above.

Dec 14 2021, 1:39 AM · MW-1.41-notes (1.41.0-wmf.22; 2023-08-15), MW-1.38-notes (1.38.0-wmf.13; 2021-12-13), Patch-For-Review, MediaWiki-Action-API

Dec 11 2021

Erutuon created T297539: Allowing spaced slash after username or IP address in User or User talk namespace title is confusing.
Dec 11 2021, 3:57 AM · Patch-Needs-Improvement, MediaWiki-General

Sep 12 2021

Erutuon closed T290794: bdi tags in edit summaries of reverts (due to FastRevert gadget on en.wiktionary) as Invalid.
Sep 12 2021, 6:24 AM · WMF-General-or-Unknown
Erutuon added a comment to T290794: bdi tags in edit summaries of reverts (due to FastRevert gadget on en.wiktionary).

Aha, thank you. I will see if I can fix the gadget. I only noticed the similarity of the edit summaries while posting here, and so it hadn't occurred to me to search for "restore to version". I had searched for bdi before and didn't find any matches in gadgets.

Sep 12 2021, 5:43 AM · WMF-General-or-Unknown

Sep 11 2021

Erutuon created T290794: bdi tags in edit summaries of reverts (due to FastRevert gadget on en.wiktionary).
Sep 11 2021, 3:27 AM · WMF-General-or-Unknown

Jul 30 2021

Erutuon updated the task description for T61245: Review the PageNotice extension for deployment.
Jul 30 2021, 6:59 PM · User-notice, Patch-For-Review, MediaWiki-extensions-PageNotice, Wikimedia-extension-review-queue, Wikimedia-Extension-setup

Jul 5 2021

Erutuon added a comment to T241196: Migrate all AutoWikiBrowser Check Pages to json.

Unfortunately the message in Tech News for this week uses the Wikipedia: namespace prefix, when it should use the Project: prefix and be wikilinked. If anyone tries to visit this page title in any wiki where the local name of the Project namespace is not Wikipedia, they will be redirected to a nonexistent Wikipedia page. For instance a person attempting to visit Wikipedia:AutoWikiBrowser/CheckPageJSON on English Wiktionary will be redirected to https://en.wikipedia.org/wiki/AutoWikiBrowser/CheckPageJSON rather than the correct https://en.wiktionary.org/wiki/Project:AutoWikiBrowser/CheckPageJSON, which redirects to https://en.wiktionary.org/wiki/Wiktionary:AutoWikiBrowser/CheckPageJSON. I'd edit the Tech News page now, but it's already gone out to all the wikis. Can it be corrected now?

Jul 5 2021, 11:44 PM · User-notice-archive, AutoWikiBrowser

Jun 10 2021

Erutuon added a project to T284716: Code editor failing to load completely on English Wiktionary: CodeEditor.
Jun 10 2021, 8:15 AM · MW-1.37-notes (1.37.0-wmf.11; 2021-06-21), CodeEditor
Erutuon created T284716: Code editor failing to load completely on English Wiktionary.
Jun 10 2021, 4:57 AM · MW-1.37-notes (1.37.0-wmf.11; 2021-06-21), CodeEditor

May 31 2021

Erutuon added a comment to T247049: Unable to remove manually applied tags used by edit filters.

Tried to remove the no head temp tag from the most recent 4 edits of sniggered on English Wiktionary and got The changes could not be applied: The tag "no head temp" is not allowed to be removed. The tag is added by abuse filter 68 (in Special:Tags, it's "Defined by the software", "Applied manually by users and bots") so it's the same case as the original posting here.

May 31 2021, 12:44 AM · AbuseFilter, User-DannyS712, MediaWiki-Change-tagging

May 28 2021

Erutuon added a comment to T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.

I've modified MediaWiki:Scribunto-module-line on English Wiktionary to link to #L-<line_number> in action=view of the erroring module. That looks horrible in the JavaScript-generated backtrace (which shows the raw wikitext), but at least people can jump to one of the source lines mentioned in the backtrace now. I may rethink this and revert my edit.

May 28 2021, 7:15 PM · WikiEditor, CodeEditor

Feb 11 2021

Erutuon added a comment to T274476: Error loading [[wiktionary:en:Module:labels/data/topical]]: "the execution time limit of 60 seconds was exceeded".

I got the same error trying to view the page. If I remember right, the gobbledygook at the beginning was useful somehow the last time I posted about an error message like this, so here it is:

Feb 11 2021, 6:27 AM · Shellbox, Wikimedia-production-error

Oct 1 2020

Erutuon added a comment to T240678: mw.title.new('#') returns object that errors when expensive data is accessed.

mw.title.new("#")

It does not return an object, there is no object to return

Oct 1 2020, 5:14 AM · Scribunto

Sep 30 2020

Erutuon added a comment to T240678: mw.title.new('#') returns object that errors when expensive data is accessed.

Note on my change to the title: mw.title.new("#") returns an object, but accessing any of the expensive fields causes an error to be thrown in mw.title.lua. When I type the following lines one-by-one into the console, the field accesses on the title object all throw the same error:

Sep 30 2020, 8:15 PM · Scribunto
Erutuon renamed T240678: mw.title.new('#') returns object that errors when expensive data is accessed from mw.title.new('#') does not return anything but error to mw.title.new('#') returns object that errors when expensive data is accessed.
Sep 30 2020, 8:05 PM · Scribunto

Sep 25 2020

Erutuon created T263896: Unprotected error on accessing `exists` field of `mw.title` object created with an invalid title.
Sep 25 2020, 9:42 PM · Scribunto

Aug 2 2020

Erutuon created T259442: insource and intitle regular expression search doesn't allow final escaped slash.
Aug 2 2020, 7:31 PM · MW-1.39-notes (1.39.0-wmf.21; 2022-07-18), Discovery-Search (Current work), CirrusSearch

Jun 17 2020

Erutuon added a comment to T194953: Support hosting Rust tools on Toolforge.

Is there a movement towards Rust in any significant segment of the Wikimedia movement?

Jun 17 2020, 7:11 PM · cloud-services-team, Toolforge

Jun 16 2020

Erutuon updated the task description for T255633: Error examining edit in management interface: "includes/Views/AbuseFilterViewExamine.php: Call to a member function dumpAllVars() on null".
Jun 16 2020, 11:15 PM · MW-1.35-notes (1.35.0-wmf.38; 2020-06-23), Regression, Wikimedia-production-error, AbuseFilter
Erutuon created T255633: Error examining edit in management interface: "includes/Views/AbuseFilterViewExamine.php: Call to a member function dumpAllVars() on null".
Jun 16 2020, 11:15 PM · MW-1.35-notes (1.35.0-wmf.38; 2020-06-23), Regression, Wikimedia-production-error, AbuseFilter

May 5 2020

Erutuon added a comment to T251545: Error when using search in CodeEditor: dom.buildDom is not a function.

The problem has disappeared for me (the search and replace dialog shows up again), maybe at the same time that diffs became monospace again.

May 5 2020, 3:02 AM · JavaScript, Editing-team, Regression, CodeEditor

Apr 30 2020

Erutuon added a comment to T251545: Error when using search in CodeEditor: dom.buildDom is not a function.

I am not able to bring up the search and replace dialog in CodeEditor in the English Wiktionary modules that I'm currently editing, either by pressing Ctrl+F or by clicking the icon in the toolbar. This is very troublesome and annoying because I normally constantly use the search and replace dialog to jump to the right place in the code.

Apr 30 2020, 7:40 PM · JavaScript, Editing-team, Regression, CodeEditor

Apr 29 2020

Erutuon added a comment to T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.

@Erutuon more information to reproduce the error would be helpful.

Apr 29 2020, 4:49 PM · WikiEditor, CodeEditor
Erutuon updated the task description for T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Apr 29 2020, 4:48 PM · WikiEditor, CodeEditor

Apr 28 2020

Erutuon added a comment to T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.

I don't know why the task was marked as Done, but the bug remains for me at least.

Apr 28 2020, 8:54 PM · WikiEditor, CodeEditor

Apr 6 2020

Erutuon added a comment to T249565: Wikidata's wb_items_per_site table has suddenly disappeared, creating DBQueryErrors on page views.

Also encountered on English Wiktionary at Module:kum-decl:

Apr 6 2020, 11:19 PM · User-notice-archive, User-Addshore, MW-1.35-notes (1.35.0-wmf.27; 2020-04-07), Wikimedia-Incident, User-Ladsgroup, Wikidata-Campsite (Wikidata-Campsite-Iteration-∞ (On Hold)), MediaWiki-extensions-WikibaseRepository, DBA, Wikidata, User-DannyS712, Wikimedia-production-error

Mar 28 2020

Erutuon added a comment to T248728: Can't access the page &_; via the path /wiki/%26_;.

@Aklapper: I've corrected and updated the description and the title because the error is probably a general MediaWiki thing: it occurs in English Wiktionary and Wikipedia.

Mar 28 2020, 5:34 AM · Wikimedia-Apache-configuration
Erutuon renamed T248728: Can't access the page &_; via the path /wiki/%26_; from Can't access the page &_; via the path /wiki/%26_; on English Wiktionary to Can't access the page &_; via the path /wiki/%26_;.
Mar 28 2020, 5:30 AM · Wikimedia-Apache-configuration
Erutuon updated the task description for T248728: Can't access the page &_; via the path /wiki/%26_;.
Mar 28 2020, 5:27 AM · Wikimedia-Apache-configuration
Erutuon created T248728: Can't access the page &_; via the path /wiki/%26_;.
Mar 28 2020, 5:26 AM · Wikimedia-Apache-configuration

Feb 4 2020

Erutuon added a comment to T244300: Argument 1 passed to Title::getLanguageConverter() must be an instance of Language, instance of StubUserLang given, called in /srv/mediawiki/php-1.35.0-wmf.18/includes/Title.php on line 207.

I've been getting sporadic errors like [XjoBKQpAAD8AAIE3bO4AAAAN] 2020-02-04 23:41:29: Fatal exception of type "TypeError" after being redirected from a Special:MyLanguage subpage linked from Template:Databases on MediaWiki wiki. For instance, I clicked a link to Special:MyLanguage/Manual:Langlinks_table from the template, was redirected to Manual:Langlinks_table, and saw the error there. Reloading usually gets the page to display.

Feb 4 2020, 11:48 PM · MW-1.35-notes (1.35.0-wmf.18; 2020-02-04), Platform Team Workboards (S&F Workboard), Patch-For-Review, MediaWiki-General, Wikimedia-production-error

Jan 3 2020

Erutuon added a comment to T241689: Preloading the categories of a set of pages.

Okay, so an additional request must be sent to actually construct the Category objects.

Jan 3 2020, 6:07 AM · Patch-Needs-Improvement, Pywikibot

Jan 2 2020

Erutuon added a comment to T241689: Preloading the categories of a set of pages.

My script seems no faster with the patch, even with categories = True in the call to APISite.preloadpages. Commented on the part of api.py where separate requests are being sent for each page's categories.

Jan 2 2020, 11:13 PM · Patch-Needs-Improvement, Pywikibot

Jan 1 2020

Erutuon created T241689: Preloading the categories of a set of pages.
Jan 1 2020, 11:29 PM · Patch-Needs-Improvement, Pywikibot

Dec 22 2019

Erutuon added a comment to T241290: Allow Fish scripts to run on Grid Engine on Toolforge.

@zhuyifei1999 Yes. Thank you so much!

Dec 22 2019, 5:45 AM · Toolforge (Software install/update)

Dec 21 2019

Erutuon renamed T241290: Allow Fish scripts to run on Grid Engine on Toolforge from Can't run Fish scripts on Grid Engine on Toolforge to Allow Fish scripts to run on Grid Engine on Toolforge.
Dec 21 2019, 1:27 AM · Toolforge (Software install/update)
Erutuon added a comment to T241290: Allow Fish scripts to run on Grid Engine on Toolforge.

Just to confirm, this request for fish to be installed to the grid exec nodes right?

Dec 21 2019, 1:24 AM · Toolforge (Software install/update)
Erutuon updated the task description for T241290: Allow Fish scripts to run on Grid Engine on Toolforge.
Dec 21 2019, 12:35 AM · Toolforge (Software install/update)
Erutuon created T241290: Allow Fish scripts to run on Grid Engine on Toolforge.
Dec 21 2019, 12:34 AM · Toolforge (Software install/update)

Dec 11 2019

Erutuon closed T240478: Specific user cannot log into Wikimedia developer account for Toolforge: "Wikimedia account is already in use", a subtask of T174469: LDAP account that is not attached on wikitech has no means for password reset, as Resolved.
Dec 11 2019, 7:19 PM · Infrastructure-Foundations, Bitu, Striker, wikitech.wikimedia.org
Erutuon closed T240478: Specific user cannot log into Wikimedia developer account for Toolforge: "Wikimedia account is already in use" as Resolved.

@bd808: Thanks for your help! If only I'd asked sooner, this spring when the problem arose. :-)

Dec 11 2019, 7:19 PM · cloud-services-team (Kanban), wikitech.wikimedia.org, Toolforge
Erutuon created T240478: Specific user cannot log into Wikimedia developer account for Toolforge: "Wikimedia account is already in use".
Dec 11 2019, 5:24 PM · cloud-services-team (Kanban), wikitech.wikimedia.org, Toolforge

Nov 7 2019

Erutuon added a comment to T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.

It seems the reason is that the search engine doesn't search every page. Probably it times out at a certain point when searching through mainspace pages, and if no the Anatolian hieroglyphs are found by that point, no results are shown.

Nov 7 2019, 5:16 AM · Discovery-Search, CirrusSearch

Nov 4 2019

Erutuon updated the task description for T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.
Nov 4 2019, 10:27 PM · Discovery-Search, CirrusSearch
Erutuon updated the task description for T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.
Nov 4 2019, 10:25 PM · Discovery-Search, CirrusSearch
Erutuon updated the task description for T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.
Nov 4 2019, 10:25 PM · Discovery-Search, CirrusSearch
Erutuon updated the task description for T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.
Nov 4 2019, 10:24 PM · Discovery-Search, CirrusSearch
Erutuon created T237332: Regex in CirrusSearch can't find Anatolian Hieroglyphs.
Nov 4 2019, 10:12 PM · Discovery-Search, CirrusSearch

Oct 28 2019

Erutuon updated the task description for T236629: Module error causes math tag to fail, displaying as strip marker.
Oct 28 2019, 4:38 AM · Math

Oct 27 2019

Erutuon created T236629: Module error causes math tag to fail, displaying as strip marker.
Oct 27 2019, 6:46 PM · Math

Oct 8 2019

Erutuon updated the task description for T230803: The parser should keep a list of variadic functions, and strictly check the amount of parameters for the other functions.
Oct 8 2019, 7:42 PM · MW-1.35-notes (1.35.0-wmf.10; 2019-12-10), MW-1.34-notes (1.34.0-wmf.20; 2019-08-27), AbuseFilter

Oct 7 2019

Erutuon added a comment to T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.

I renamed the task because for me, and presumably for others, the link doesn't jump to the top of the source code either. Perhaps something in my settings prevents the link from going to the top of the source code.

Oct 7 2019, 4:42 PM · WikiEditor, CodeEditor
Erutuon renamed T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code from Links to line anchors of modules in Scribunto error popup only jump to top of that Module's source code to Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Oct 7 2019, 4:39 PM · WikiEditor, CodeEditor
Erutuon added a comment to T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.

@Erutuon: Please provide a link that allows others to reproduce the problem. Thanks.

Oct 7 2019, 8:59 AM · WikiEditor, CodeEditor
Erutuon updated the task description for T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Oct 7 2019, 8:59 AM · WikiEditor, CodeEditor
Erutuon updated the task description for T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Oct 7 2019, 1:42 AM · WikiEditor, CodeEditor

Oct 5 2019

Erutuon updated the task description for T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Oct 5 2019, 9:06 PM · WikiEditor, CodeEditor
Erutuon created T234729: Links to line anchors of modules in Scribunto error popup do not jump to line of that Module's source code.
Oct 5 2019, 9:04 PM · WikiEditor, CodeEditor