Page MenuHomePhabricator

Repakr
User

Projects

User does not belong to any projects.

Today

  • No visible events.

Tomorrow

  • No visible events.

Monday

  • No visible events.

User Details

User Since
May 12 2023, 2:35 PM (153 w, 1 d)
Availability
Available
LDAP User
Unknown
MediaWiki User
Repakr [ Global Accounts ]

Recent Activity

Feb 19 2026

Repakr added a comment to T417882: Interwiki recently started sorted randomly in Monobook, old Vector and Timeless.

Is it fixed now? Can you link to the page you had problem with?

Feb 19 2026, 3:25 PM · Timeless, MonoBook, Vector (legacy skin), MediaWiki-User-Interface, UniversalLanguageSelector
Repakr created T417882: Interwiki recently started sorted randomly in Monobook, old Vector and Timeless.
Feb 19 2026, 12:54 PM · Timeless, MonoBook, Vector (legacy skin), MediaWiki-User-Interface, UniversalLanguageSelector
Repakr added a comment to T253764: Undeploy the InterwikiSorting extension from Wikipedia production.

I don't know if it has to do with this ticket, but now in themes Monobook and old Vector, the language list is sorted randomly. For example, on this page https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%82%D1%80%D0%BE%D0%BF%D0%BE%D0%BB%D1%96%D1%82%D0%B5%D0%BD English is below Korean (first image), but on page https://uk.wikipedia.org/wiki/%D0%9C%D1%96%D1%81%D1%82%D0%BE it is below Hebrew at the bottom of the list, and Korean is higher up in the list (second image). This problem is also reported in ruwiki here: https://ru.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D1%8F:%D0%A4%D0%BE%D1%80%D1%83%D0%BC/%D0%A2%D0%B5%D1%85%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9#%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B2%D0%B8%D0%BA

image.png (293×167 px, 13 KB)

image.png (241×167 px, 11 KB)

Feb 19 2026, 9:15 AM · User-notice-archive, MW-1.46-notes (1.46.0-wmf.16; 2026-02-17), Patch-For-Review, Release-Engineering-Team (Doing), Technical-Debt, MediaWiki-extensions-InterwikiSorting
Repakr added a comment to T253764: Undeploy the InterwikiSorting extension from Wikipedia production.

I don't know if it has to do with this ticket, but now in themes Monobook and old Vector, the language list is sorted randomly. For example, on this page https://uk.wikipedia.org/wiki/%D0%9C%D0%B5%D1%82%D1%80%D0%BE%D0%BF%D0%BE%D0%BB%D1%96%D1%82%D0%B5%D0%BD English is below Korean (first image), but on page https://uk.wikipedia.org/wiki/%D0%9C%D1%96%D1%81%D1%82%D0%BE it is below Hebrew at the bottom of the list, and Korean is higher up in the list (second image). This problem is also reported in ruwiki here: https://ru.wikipedia.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D0%BF%D0%B5%D0%B4%D0%B8%D1%8F:%D0%A4%D0%BE%D1%80%D1%83%D0%BC/%D0%A2%D0%B5%D1%85%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9#%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0%20%D0%B8%D0%BD%D1%82%D0%B5%D1%80%D0%B2%D0%B8%D0%BA

Feb 19 2026, 8:33 AM · User-notice-archive, MW-1.46-notes (1.46.0-wmf.16; 2026-02-17), Patch-For-Review, Release-Engineering-Team (Doing), Technical-Debt, MediaWiki-extensions-InterwikiSorting

Dec 24 2025

Repakr added a comment to T413353: Charts mix up data when data points don't match in time.

If we're sure the bug is in https://commons.wikimedia.org/wiki/Module:Graph:Chart , and not in https://www.mediawiki.org/wiki/Extension:Chart or https://www.mediawiki.org/wiki/Extension:JsonConfig , then this ticket may be filed in the wrong place and we might want to close it as invalid.

Dec 24 2025, 11:45 AM · Reader Growth Team, JsonConfig, Charts
Repakr added a comment to T413353: Charts mix up data when data points don't match in time.

If I understand the issue correctly, adding a 0 can't be the solution.

Let's think on two lines, the first one has value A=6 and C=8. The second one has values A=9, B=10 and C=7. Adding a B=0 to the first one would change the most logical value for that point, something around 7. The graph needs to know that there is no point at B, it should go directly from A to C, while showing A, B and C for the second line. I understand that a null value is the best solution.

Dec 24 2025, 9:57 AM · Reader Growth Team, JsonConfig, Charts
Repakr added a project to T413353: Charts mix up data when data points don't match in time: JsonConfig.

This bug is related to T388434. Therefore, I'm also adding JsonConfig to this task.

Dec 24 2025, 9:11 AM · Reader Growth Team, JsonConfig, Charts

Dec 23 2025

Repakr added a comment to T413353: Charts mix up data when data points don't match in time.

The problem is that Lua doesn't store a nil value in its array. Therefore, during the transformation from Lua arrays to JSON tables, it moves a value from the next cell after nil to the cell with a nil value (or from y2 to y if we talk about Module:Graph:Chart). It would be useful if the Lua transformer to JSON had a magic word to denote that a cell has a null value. For more information, see https://www.mediawiki.org/wiki/Extension:Chart/Transforms#Null/nil . As for now, I think that the only way to fix, is to transform nil values to 0 or "", but this also significantly distorts the charts with big drops to the bottom if the line chart has thousands on its y-axis.

Dec 23 2025, 2:51 PM · Reader Growth Team, JsonConfig, Charts

Dec 20 2025

Repakr added a comment to T411396: Paste regressions when rebuilding keyIndexes.

I think that this issue is a cause for this ticket: T412343.

Dec 20 2025, 9:39 AM · MW-1.46-notes (1.46.0-wmf.21; 2026-03-24), WMDE-TechWish-Sprint-2026-02-03-Tomatoes-of-many-colors, VisualEditor, Cite

Dec 11 2025

Repakr created T412343: CX 2 replicate the same reference for other passage with different ref in original text.
Dec 11 2025, 8:26 AM · VisualEditor, Cite, ContentTranslation

Oct 21 2025

Repakr created T407849: EditCheck doesn't detect a sfn template and shows message about absent source.
Oct 21 2025, 11:26 AM · Verified, Editing-team (Editing-19Jan-30Jan-2026), Goal, OKR-Work, EditCheck

Oct 7 2025

Repakr merged T376397: FlaggedRevs: After undeleting a page page becomes checked and uncheked at same time into T162778: If reviewed page was deleted and then undeleted, page is marked both as reviewed and unreviewed.
Oct 7 2025, 12:23 PM · FlaggedRevs
Repakr merged task T376397: FlaggedRevs: After undeleting a page page becomes checked and uncheked at same time into T162778: If reviewed page was deleted and then undeleted, page is marked both as reviewed and unreviewed.
Oct 7 2025, 12:23 PM · FlaggedRevs

Sep 10 2025

Repakr created T404160: Dialog menu shows ID names instead of translated text.
Sep 10 2025, 7:23 AM · Essential-Work, Verified, VisualEditor, VisualEditor-MediaWiki, MW-1.45-notes (1.45.0-wmf.19; 2025-09-16), Editing-team (Kanban Board)

Sep 4 2025

Repakr closed T377113: FlaggedRev box is overlapped by the title in infobox as Resolved.

I have fixed it by changing the z-index in infoboxes Картка премії and Картка:Фільм to 0.

Sep 4 2025, 2:04 PM · FlaggedRevs

Aug 4 2025

Repakr closed T400029: Add "Подія" as an alias to the namespace "Event" in ukwiki as Resolved.

Alias is working, so I mark this task as resolved.

Aug 4 2025, 7:32 AM · MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Connection-Team (Connection-Current-Sprint), I18n, CampaignEvents

Aug 2 2025

Repakr added a comment to T400987: Regression: Category member counts broken in German Wikipedia .

I think it also happened in ukwiki and ruwiki. See https://uk.wikipedia.org/wiki/%D0%9A%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D1%96%D1%8F:%D0%A1%D0%BF%D0%BE%D1%80%D1%82_%D1%83_%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D1%96_%D0%B7%D0%B0_%D1%80%D0%BE%D0%BA%D0%BE%D0%BC https://ru.wikipedia.org/wiki/%D0%9A%D0%B0%D1%82%D0%B5%D0%B3%D0%BE%D1%80%D0%B8%D1%8F:%D0%9D%D0%B0%D0%B3%D1%80%D0%B0%D0%B6%D0%B4%D1%91%D0%BD%D0%BD%D1%8B%D0%B5_%D0%BC%D0%B5%D0%B4%D0%B0%D0%BB%D1%8F%D0%BC%D0%B8_%D0%A1%D0%BB%D0%BE%D0%B2%D0%B0%D0%BA%D0%B8%D0%B8

Aug 2 2025, 10:24 AM · DBA, MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Regression, MediaWiki-Categories

Aug 1 2025

Repakr closed T398920: Remove overriding styles for Main Page in ukwiki as Invalid.

I discovered the MediaWiki:Wikimedia-styles-exclude page. So this is not needed now.

Aug 1 2025, 11:16 AM · dark-mode, Vector 2022
Repakr added a comment to T400029: Add "Подія" as an alias to the namespace "Event" in ukwiki.

Also, I created a new one here: https://uk.wikipedia.org/wiki/%D0%9F%D0%BE%D0%B4%D1%96%D1%8F:Test3

Aug 1 2025, 7:57 AM · MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Connection-Team (Connection-Current-Sprint), I18n, CampaignEvents
Repakr added a comment to T400029: Add "Подія" as an alias to the namespace "Event" in ukwiki.

I don't have the organizer right on this wiki and there are no events on ukwiki for me to test this alias with, but I can see that it was rolled out on the train today. Sending this to product sign off. @ifried I am not sure the best way to test this other than confirming that this has made its way to prod so it is usable now.

Aug 1 2025, 7:20 AM · MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Connection-Team (Connection-Current-Sprint), I18n, CampaignEvents

Jul 21 2025

Repakr added a comment to T400029: Add "Подія" as an alias to the namespace "Event" in ukwiki.

@Repakr What should the corresponding talk namespace ("Event talk" in English) be? And I assume this translation is good for "Event" in general, and shouldn't be limited to just the Ukrainian Wikipedia?

Jul 21 2025, 7:11 AM · MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Connection-Team (Connection-Current-Sprint), I18n, CampaignEvents
Repakr created T400029: Add "Подія" as an alias to the namespace "Event" in ukwiki.
Jul 21 2025, 6:58 AM · MW-1.45-notes (1.45.0-wmf.12; 2025-07-29), Connection-Team (Connection-Current-Sprint), I18n, CampaignEvents

Jul 8 2025

Repakr created T398920: Remove overriding styles for Main Page in ukwiki.
Jul 8 2025, 8:24 AM · dark-mode, Vector 2022

Jul 1 2025

Repakr updated the task description for T398364: Hidden edits by administrator are shown in Wikipedia app on Android.
Jul 1 2025, 8:18 PM · Wikipedia-Android-App-Backlog
Repakr closed T398364: Hidden edits by administrator are shown in Wikipedia app on Android as Invalid.

My bad. It was because I have admins rights.

Jul 1 2025, 8:18 PM · Wikipedia-Android-App-Backlog
Repakr created T398364: Hidden edits by administrator are shown in Wikipedia app on Android.
Jul 1 2025, 8:10 PM · Wikipedia-Android-App-Backlog
Repakr closed T397816: Every option in Special:Preferences in MinevraNeue doesn't work as Resolved.

It seems like it was fixed. I also can't recreate now.

Jul 1 2025, 7:21 AM · MinervaNeue

Jun 25 2025

Repakr created T397816: Every option in Special:Preferences in MinevraNeue doesn't work.
Jun 25 2025, 8:21 AM · MinervaNeue

Apr 30 2025

Repakr added a comment to T391946: Add "Субтитри" as alias to namespace TimedText in ukwiki.

After two weeks of the discussion (https://uk.wikipedia.org/w/index.php?title=%D0%92%D1%96%D0%BA%D1%96%D0%BF%D0%B5%D0%B4%D1%96%D1%8F%3A%D0%9A%D0%BD%D0%B0%D0%B9%D0%BF%D0%B0_%28%D0%BF%D1%80%D0%BE%D0%BF%D0%BE%D0%B7%D0%B8%D1%86%D1%96%D1%97%29&diff=45212508&oldid=45203390), all of the participants agreed with the proposed change.

Apr 30 2025, 7:53 AM · Patch-For-Review, Wikimedia-Site-requests

Apr 15 2025

Repakr created T391946: Add "Субтитри" as alias to namespace TimedText in ukwiki.
Apr 15 2025, 11:20 AM · Patch-For-Review, Wikimedia-Site-requests

Feb 22 2025

Repakr updated the task description for T379580: IAB doesn't detect archiving parameters in cite web template, and adds additional Webarchive template.
Feb 22 2025, 8:45 AM · InternetArchiveBot
Repakr updated the task description for T379580: IAB doesn't detect archiving parameters in cite web template, and adds additional Webarchive template.
Feb 22 2025, 8:44 AM · InternetArchiveBot

Dec 26 2024

Repakr created T382776: Enable dark mode for anons on Ukrainian Wikipedia.
Dec 26 2024, 2:46 PM · Web-Team, Wikimedia-Site-requests

Nov 25 2024

Repakr added a comment to T379580: IAB doesn't detect archiving parameters in cite web template, and adds additional Webarchive template.

It seems like it didn't resolve the problem. However, it can be a cause of the problem because these edits started two days (on November 6) after the documentation was broken (on November 4).

Nov 25 2024, 5:23 PM · InternetArchiveBot

Nov 20 2024

Repakr added a comment to T379580: IAB doesn't detect archiving parameters in cite web template, and adds additional Webarchive template.

The documentation box in the Ukrainian Wikipedia had broken styling. I fixed it, and, maybe, that's why the bot behaves like this. Usually, if the bot doesn't see the TemplateData, it can act weirdly. But it seems that some time needs to pass to see if the problem is fixed.

Nov 20 2024, 12:34 PM · InternetArchiveBot

Oct 14 2024

Repakr created T377113: FlaggedRev box is overlapped by the title in infobox.
Oct 14 2024, 9:30 AM · FlaggedRevs

Oct 3 2024

Repakr created T376397: FlaggedRevs: After undeleting a page page becomes checked and uncheked at same time.
Oct 3 2024, 3:29 PM · FlaggedRevs

Aug 29 2024

Repakr created T373608: Big gap between indicator and dialog box in old Vector.
Aug 29 2024, 3:08 PM · FlaggedRevs

Aug 14 2024

Repakr created T372505: After moving a reviewed page by user with a editor rights page become unreviewed .
Aug 14 2024, 7:01 PM · MediaWiki-Patrolling

Aug 2 2024

Repakr added a comment to T191156: Convert FlaggedRevisions to Codex.

20240726_222532.jpg (296×2 px, 101 KB)

This photo was taken from the edit mode of the Main Page of Ukrainian Wikipedia. Is it correct that the message box of FlaggedRev has a double frame?

Aug 2 2024, 6:57 AM · User-notice-archive, MW-1.43-notes (1.43.0-wmf.20; 2024-08-27), MW-1.41-notes (1.41.0-wmf.20; 2023-08-01), Growth-Team-Filtering, MinervaNeue (Tracking), Mobile, Growth-Team, FlaggedRevs

Jul 27 2024

Repakr added a comment to T191156: Convert FlaggedRevisions to Codex.

image.png (345×2 px, 49 KB)

In the edit mode of the template, for some reason, the message box of FlaggedRev showed twice on a page. (https://uk.wikipedia.org/w/index.php?title=%D0%A8%D0%B0%D0%B1%D0%BB%D0%BE%D0%BD:Imbox&action=edit)

Jul 27 2024, 9:46 AM · User-notice-archive, MW-1.43-notes (1.43.0-wmf.20; 2024-08-27), MW-1.41-notes (1.41.0-wmf.20; 2023-08-01), Growth-Team-Filtering, MinervaNeue (Tracking), Mobile, Growth-Team, FlaggedRevs

Jul 26 2024

Repakr added a comment to T191156: Convert FlaggedRevisions to Codex.

20240726_222532.jpg (296×2 px, 101 KB)

This photo was taken from the edit mode of the Main Page of Ukrainian Wikipedia. Is it correct that the message box of FlaggedRev has a double frame?

Jul 26 2024, 7:34 PM · User-notice-archive, MW-1.43-notes (1.43.0-wmf.20; 2024-08-27), MW-1.41-notes (1.41.0-wmf.20; 2023-08-01), Growth-Team-Filtering, MinervaNeue (Tracking), Mobile, Growth-Team, FlaggedRevs
Repakr added a comment to T191156: Convert FlaggedRevisions to Codex.

image.png (68×544 px, 10 KB)

The small field with the text "review pending changes" has a dropdown message box. If you hover a mouse on it, the dropdown message box will appear and almost fully block the button. But the bad thing is that you can't hide the dropdown message box except reloading the page.

Jul 26 2024, 2:44 PM · User-notice-archive, MW-1.43-notes (1.43.0-wmf.20; 2024-08-27), MW-1.41-notes (1.41.0-wmf.20; 2023-08-01), Growth-Team-Filtering, MinervaNeue (Tracking), Mobile, Growth-Team, FlaggedRevs

May 2 2024

Repakr created T363974: On patrolled page patrolling box doesn't show which file or template is unpatrolled.
May 2 2024, 8:36 AM · FlaggedRevs

Apr 14 2024

Repakr added a comment to T197634: Proposal for more sophisticated "required" parameter option.

I'm also interested in adding support for conditional required parameters. For example, Ukrainian Wikipedia has template «Шаблон:Ніхонґо» (https://uk.wikipedia.org/wiki/%D0%A8%D0%B0%D0%B1%D0%BB%D0%BE%D0%BD:%D0%9D%D1%96%D1%85%D0%BE%D0%BD%D2%91%D0%BE), that has one required parameter, that either second positional parameter (|2=) or third positional parameter (|3=) or parameter hepburn (|hepburn=). If one of them is presented, then the template will work, but if none of them is presented, then it doesn't and throws an error. So, I need some features that will indicate to the user, that they need to enter one of the listed parameters, but not all of them.

Apr 14 2024, 5:08 PM · VisualEditor, TemplateData

Feb 20 2024

Repakr created T357957: Reference Previews aren't visible on Special Pages (like Help) on the Wikipedia App.
Feb 20 2024, 8:36 AM · Wikipedia-Android-App-Backlog

Feb 12 2024

Repakr created T357268: Image of timeline not found on upload.wikimedia.org.
Feb 12 2024, 10:00 AM · MW-1.42-notes (1.42.0-wmf.19; 2024-02-20), EasyTimeline

Dec 21 2023

Repakr created T353887: Support prefers-color-scheme in css-sanitizer.
Dec 21 2023, 4:34 PM · css-sanitizer, FY2023-24-WE 2.1 Typography and palette customizations, TemplateStyles

Sep 10 2023

Repakr added a comment to T300395: Table with rowspan function renders correctly on Firefox, incorrectly on Edge.

I tested it through a mobile app for Android (Android 13), app version: 2.7.50450-r-2023-08-15, and this visual bug is present. The page that was used for testing is User:Repakr/sandbox (English Wikipedia).

Screenshot_20230910_143345_Wikipedia.jpg (1×1 px, 121 KB)

Sep 10 2023, 11:45 AM · Browser-Support-Microsoft-Edge, MediaWiki-General