[Wikidata-bugs] [Maniphest] [Closed] T235811: Wikimedia Commons "Collapse captions" gadget not working
zhuyifei1999 claimed this task. zhuyifei1999 closed this task as "Resolved". zhuyifei1999 added a comment. Workarounded. https://commons.wikimedia.org/wiki/MediaWiki:Gadget-Collapse-Captions.js Ideally this should still be brought in-house. You now have a MutationObserver. TASK DETAIL https://phabricator.wikimedia.org/T235811 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Ramsey-WMF, egardner, Mike_Peel, Jdforrester-WMF, Abit, Masumrezarock100, zhuyifei1999, Jmabel, Aklapper, JKSTNK, Lahi, PDrouin-WMF, E1presidente, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Salgo60, Silverfish, Poyekhali, Taiwania_Justo, Susannaanas, Ixocactus, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, El_Grafo, Dinoguy1000, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Keegan ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T235811: Wikimedia Commons "Collapse captions" gadget not working
zhuyifei1999 added a comment. In T235811#5657872 <https://phabricator.wikimedia.org/T235811#5657872>, @Aklapper wrote: > @zhuyifei1999: #Commons <https://phabricator.wikimedia.org/tag/commons/> is a project tag dedicated to Commons issues and it is set on this task, so this feels like a valid task under #Commons <https://phabricator.wikimedia.org/tag/commons/>. In the general case, bringing on-wiki matters, such as templates, modules, gadgets, (and, workflows, proposals, etc.), into phab is ineffective. Those who maintain such pages (templates, modules, gadgets) are very unlikely to be watching the entire #commons <https://phabricator.wikimedia.org/tag/commons/> tag to be notified about the issues at all, it would be likely your (Bugwrangler's) burden to notify the corresponding maintainers of the gadget of the issues with the those pages. In addition, they are often reports from non-technical users who may make reports that are simply not "effective". Keeping on-wiki matters on wiki, especially under the concerning pages' talk pages, noticeboards, user talk pages, make the issue much more likely to be known. The maintainers are more likely to watch them than a single than a giant group project tag on phab. Exceptions do exist, but they are a minority. In addition, many wiki-editors are more used to using the wiki interface than to the phab interface. Issues will eventually be reported on-wiki because the some reporters prefer one less extra step of learning how to use phab. Tracking an issue on both phab and wiki would be, redundant. The purpose of these phabricator projects to non-technical users has been a bridge between them and developers <https://phabricator.wikimedia.org/project/profile/1118/>. This is in general a bridge between the community and the developers. But the cases where the concerned code is made from within the community... is the bridge really needed? That said, this task is different. Usually, a script is broken because some HTML class change, module rename, API change, etc, which are usually not too difficult to fix in one edit or two on-wiki. This one is an extension change that completely broke the assumptions the script is running under, and made it extremely difficult, if not impossible, for the script to return to its original behavior. These sort of issues needs attention from extension developers, who are typically more likely to be using phab to track their issues. (Why? Because unlike gadgets / modules / templates, Extensions are privileged (as in, high standards) and often global.) Even if this particular extension in concern is only deployed to Commons, those with a skillset to develop such an extension are still the similar people. Now that it is asked to move the gadget in-house (extension), that makes this issue no longer an on-wiki matter, but an extension matter. So yes, this task is valid, but it is just an exception in an usually on-wiki matter of gadgets, modules, and templates. TASK DETAIL https://phabricator.wikimedia.org/T235811 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: egardner, Mike_Peel, Jdforrester-WMF, Abit, Masumrezarock100, zhuyifei1999, Jmabel, Aklapper, JKSTNK, Lahi, PDrouin-WMF, E1presidente, Ramsey-WMF, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Salgo60, Silverfish, Poyekhali, Taiwania_Justo, Susannaanas, Ixocactus, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, El_Grafo, Dinoguy1000, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Keegan ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Unassigned] T235811: Wikimedia Commons "Collapse captions" gadget not working
zhuyifei1999 removed zhuyifei1999 as the assignee of this task. zhuyifei1999 added a comment. So I tried to fix this. As a 'bug report needs: Steps to reproduce: T235811#5585715 <https://phabricator.wikimedia.org/T235811#5585715> Expected: F31062102: Screenshot_2019-11-11_12-05-00.png <https://phabricator.wikimedia.org/F31062102> Actual: F31062104: Screenshot_2019-11-11_12-05-12.png <https://phabricator.wikimedia.org/F31062104> My findings: The original code of the gadget is: $( ".wbmi-entityview-captionsPanel" ).addClass( "mw-collapsible" ); $( ".wbmi-entityview-captionsPanel" ).addClass( "mw-collapsed" ); Under debug mode, The gadget is loaded before `wikibase.mediainfo.filePageDisplay` module, which destroys the `div.wbmi-entityview-captionsPanel` at https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/WikibaseMediaInfo/+/c458afeb62a7803c792eac4f75e71048831f6a1f/resources/filepage/init.js#131: $( '.wbmi-entityview-captionsPanel' ).replaceWith( captionsPanel.$element ); The DOM is subsequently rebuilt in https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/WikibaseMediaInfo/+/c458afeb62a7803c792eac4f75e71048831f6a1f/resources/base/ComponentWidget.js#143: var template = mw.template.get( self.moduleName, self.templateName ), $rendered = template.render( data ); self.rebuildDOM( self.$element, $( self.$element.get( 0 ).cloneNode( false ) ).append( $rendered ), preserve ); return self.$element; This will resolve the captionPanel's renderPromise, so we could just hook its renderPromise, right? Not so simple. https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/WikibaseMediaInfo/+/c458afeb62a7803c792eac4f75e71048831f6a1f/resources/filepage/init.js#15: captionPanel is a closure-protected "private variable". Accessing such variables are a PITA. So, we know rebuildDOM is going to be called, let's try hooking (via monkey patching) on that method (it's not the best idea), in order to get a reference to that variable in a cross-browser way: mw.loader.using( 'wikibase.mediainfo.base', function () { var ComponentWidget = require( 'wikibase.mediainfo.base' ).ComponentWidget; mw.hook( 'wikipage.content' ).add( function () { $( '.wbmi-entityview-captionsPanel' ).makeCollapsible( { collapsed: true } ); } ); // Ugly hooking :( ComponentWidget.prototype.rebuildDOM = function ( orig ) { return function () { var val = orig.apply( this, arguments ); if ( this.moduleName === 'wikibase.mediainfo.filePageDisplay' ) { this.renderPromise.then( function () { $( '.wbmi-entityview-captionsPanel' ).makeCollapsible( { collapsed: true } ); } ); } return val; }; } ( ComponentWidget.prototype.rebuildDOM ); } ); This workarounded the issue for debug mode, but not non-debug mode. Under non-debug mode, under Firefox 70.0, the monkey patch has been applied when the DOM is rebuilt, but the call stack of the DOM manipulation just does not have our patched method wrapper. I ran out of time to figure out why that is happening, probably needs testing with vagrant if I continue with this. TASK DETAIL https://phabricator.wikimedia.org/T235811 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Mike_Peel, Jdforrester-WMF, Abit, Masumrezarock100, zhuyifei1999, Jmabel, Aklapper, JKSTNK, Lahi, PDrouin-WMF, E1presidente, Ramsey-WMF, Cparle, Anooprao, SandraF_WMF, Tramullas, Acer, Salgo60, Silverfish, Poyekhali, Taiwania_Justo, Susannaanas, Ixocactus, Wong128hk, Jane023, Wikidata-bugs, Base, matthiasmullie, El_Grafo, Dinoguy1000, Ricordisamoa, Wesalius, Lydia_Pintscher, Fabrice_Florin, Raymond, Steinsplitter, Keegan ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. https://wikitech.wikimedia.org/wiki/Deployments#deploycal-item-20190522T1300 Wednesday, May 22 13:00–15:00 UTC TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, darthmon_wmde, Ferenczy, sarhan.alaa, Samuditha24, IM3847, joker88john, CucyNoiD, NebulousIris, kostajh, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Jayprakash12345, Chicocvenancio, Allthingsgo, Th3d3v1ls, Ramalepe, MichaelSchoenitzer_WMDE, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Jogi_don, Soum213, D3r1ck01, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ, Rxy ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. I'm fine either way TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, darthmon_wmde, Ferenczy, sarhan.alaa, Samuditha24, IM3847, joker88john, CucyNoiD, NebulousIris, kostajh, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Jayprakash12345, Chicocvenancio, Allthingsgo, Th3d3v1ls, Ramalepe, MichaelSchoenitzer_WMDE, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Jogi_don, Soum213, D3r1ck01, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ, Rxy ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a project: Wikimedia-Hackathon-2019. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, darthmon_wmde, Ferenczy, sarhan.alaa, Samuditha24, IM3847, joker88john, CucyNoiD, NebulousIris, kostajh, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Jayprakash12345, Chicocvenancio, Allthingsgo, Th3d3v1ls, Ramalepe, MichaelSchoenitzer_WMDE, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Jogi_don, Soum213, D3r1ck01, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ, Rxy ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. https://zh.wikivoyage.beta.wmflabs.org/zh-cn/%E6%B5%8B%E8%AF%95 https://zh.wikivoyage.beta.wmflabs.org/zh-hk/%E6%B5%8B%E8%AF%95 LGTM TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Allthingsgo, Th3d3v1ls, Ramalepe, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. T223770: Please create beta zhwikivoyage <https://phabricator.wikimedia.org/T223770> TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Allthingsgo, Th3d3v1ls, Ramalepe, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. bd808 just gave me steward rights and still https://en.wikivoyage.beta.wmflabs.org/wiki/Special:PageLanguage doesn't exist. I guess it's configuration-disabled rather than lack of permissions. So yeah, let's create that wiki. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Allthingsgo, Th3d3v1ls, Ramalepe, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. In T217501#5191936 <https://phabricator.wikimedia.org/T217501#5191936>, @Jdlrobson wrote: > You can try testing this out on https://en.wikivoyage.beta.wmflabs.org/?uselang=zh ! Unfortunately, the target language of the parser is the page content language, English, instead of the interface language, Chinese. There's no way to test language converter if the target language is not a $languagesWithVariants. Though, I would love if you could change a few pages to have zh as content language with Special:PageLanguage. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Allthingsgo, Th3d3v1ls, Ramalepe, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 added a comment. Let's see if it works correctly next week when it's deployed. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, E.S.A-Sheild, joker88john, CucyNoiD, NebulousIris, Gaboe420, Versusxo, Majesticalreaper22, Giuliamocci, Adrian1985, Cpaulf30, Baloch007, Darkminds3113, Bsandipan, Lordiis, lisong, Adik2382, RazeSoldier, Allthingsgo, Th3d3v1ls, Ramalepe, Liugev6, pmiazga, Winter, WSH1906, Lewizho99, Maathavan, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Claimed] T217501: Page banner of Wikivoyage can not automatically convert the problem of tranditional or simplified Chinese
zhuyifei1999 claimed this task. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Nikerabbit, Jdlrobson, Liuxinyu970226, BJ6123C7BTD, zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, lisong, RazeSoldier, Allthingsgo, pmiazga, Winter, Soum213, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, Shizhao, Lydia_Pintscher, Arrbee, santhosh, KartikMistry, TheDJ ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T217501: The ICON position in banner of Chinese Wikivoyage, does not automatically convert to traditional or simplified Chinese text.
zhuyifei1999 added a project: Wikidata-Page-Banner. Restricted Application added a project: Wikidata. TASK DETAIL https://phabricator.wikimedia.org/T217501 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, A2093064, Aklapper, Yuriy_kosygin, Nandana, Lahi, Gq86, BJ6123C7BTD, GoranSMilovanovic, lisong, RazeSoldier, Allthingsgo, QZanden, LawExplorer, _jensen, rosalieper, Taiwania_Justo, Fuzheado, Cwek, Wikidata-bugs, aude, Shizhao, Lydia_Pintscher, Mbch331, Liuxinyu970226 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Closed] T114734: [Spike] Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 closed this task as "Resolved". zhuyifei1999 added a comment. No longer reproduceable. TOC stays not converted but the tags are stripped TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Dinadineke, Nandana, tabish.shaikh91, Lahi, Gq86, BJ6123C7BTD, Biblbroks, GoranSMilovanovic, lisong, Soteriaspace, RazeSoldier, Jayprakash12345, Allthingsgo, JakeTheDeveloper, QZanden, merbst, LawExplorer, Winter, _jensen, rosalieper, Taiwania_Justo, Srdjan_m, MuhammadShuaib, LNDDYL, Psychoslave, Luke081515, Fuzheado, Cwek, Wikidata-bugs, aude, Gryllida, Shizhao, Lydia_Pintscher, ssastry, Arrbee, TheDJ, Mbch331, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T136194: wikidata-exports is using 256G in Tools
zhuyifei1999 edited projects, added Tools; removed Cloud-Services. TASK DETAILhttps://phabricator.wikimedia.org/T136194EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Addshore, hoo, aude, Lydia_Pintscher, ArielGlenn, mkroetzsch, Aklapper, Zppix, chasemp, AndyTan, Zylc, 1978Gage2001, Lahi, Gq86, GoranSMilovanovic, Chicocvenancio, QZanden, Tbscho, LawExplorer, JJMC89, srodlund, Wikidata-bugs, Gryllida, scfc, Mbch331, Krenair___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T192292: Request to return 405 on POST calls to SPARQL endpoint, Wikidata primary sources tool VPS project
zhuyifei1999 edited projects, added VPS-Projects; removed Cloud-VPS. TASK DETAILhttps://phabricator.wikimedia.org/T192292EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Aklapper, Hjfocs, 1978Gage2001, Lahi, aborrero, Gq86, GoranSMilovanovic, Kiailandi, Chicocvenancio, QZanden, Tbscho, dachary, LawExplorer, JJMC89, srodlund, Luke081515, Wikidata-bugs, aude, Gryllida, Ricordisamoa, Sjoerddebruin, Tpt, scfc, Mbch331, bd808, Krenair, chasemp, Jay8g___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T168222: Editing wikidata with paws/pywikibot fails when user is not registered for commons
zhuyifei1999 added a comment. This should be fixed by T94885 AFAICT.TASK DETAILhttps://phabricator.wikimedia.org/T168222EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: zhuyifei1999, Chicocvenancio, Knuthuehne, Lahi, aborrero, Gq86, R96340, GoranSMilovanovic, QZanden, LawExplorer, Framawiki, Jane023, Wikidata-bugs, aude, yuvipanda, Capt_Swing, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Retitled] T181401: Wikidata is slow on Wiki Replicas
zhuyifei1999 renamed this task from "Wikidata is slow on ToolForge" to "Wikidata is slow on Wiki Replicas".zhuyifei1999 edited projects, added Data-Services; removed Toolforge. TASK DETAILhttps://phabricator.wikimedia.org/T181401EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Legoktm, Dispenser, Aklapper, Lahi, Gq86, GoranSMilovanovic, QZanden, Tbscho, Vali.matei, JJMC89, Volker_E, Wikidata-bugs, aude, GWicke, Gryllida, scfc, Mbch331, Jay8g, Krenair, chasemp___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. In T170039#3551917, @IKhitron wrote: I can't even understand what are you talking about - the address you gave returns 404. It should not happen at all in wiki. It is a blank 500 page not 404. See the tickets I linked.TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MoritzMuehlenhoff, zhuyifei1999Cc: jeblad, Johan, MoritzMuehlenhoff, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. You mean Category:Pages_with_script_errors? Most of them look irrelevant to me, and my last null edit run only removed a few dozen pages iirc. I just edited a broken template and started the bot. Let's see how many can be removed.TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MoritzMuehlenhoff, zhuyifei1999Cc: Johan, MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. In T170039#3550446, @IKhitron wrote: You can rerun it, starting filtering 14 first. In T170039#3550379, @zhuyifei1999 wrote: (Actually, everything besides Category: namespace on commons is clear) TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MoritzMuehlenhoff, zhuyifei1999Cc: Johan, MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. In T170039#3550411, @IKhitron wrote: Great. What about the category? It's running, but getting tons of 500s.TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: MoritzMuehlenhoff, zhuyifei1999Cc: Johan, MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. (Actually, everything besides Category: namespace on commons is clearTASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Johan, MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. Commons File: namespace is clear. The progress on Category: namespace is very slow due to T171392 & T173194TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Johan, MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. Thanks, running.TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Johan, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. In T170039#3544669, @IKhitron wrote: No, @zhuyifei1999, I'm talking about the uncategorized errors. What's you're doing is not enough. Do you have some kind of list/generator for such pages?TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Johan, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T170039: Pages display Lua error in mw.wikibase.entity.lua
zhuyifei1999 added a comment. In T170039#3544583, @IKhitron wrote: Somebody should purge them too. Yeah, I've been running a pywikibot touchbot on Category:Pages_with_script_errors since years ago ;)TASK DETAILhttps://phabricator.wikimedia.org/T170039EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: MoritzMuehlenhoff, ksmith, 4shadoww, Dvorapa, Mr.Ibrahem, Ladsgroup, eranroz, IKhitron, Kipod, zhuyifei1999, PokestarFan, hoo, Anomie, gerritbot, thiemowmde, Salgo60, AnotherLadsgroup, RolandUnger, Larske, Arbnos, daniel, putnik, Framawiki, Zebulon84, Thibaut120094, TerraCodes, Jay8g, Liuxinyu970226, aude, Vachovec1, Zdzislaw, ValterVB, Agabi10, Ankry, Jarekt, Lydia_Pintscher, matej_suchanek, JohnBlackburne, Aklapper, Johnuniq, Cosine02, Lordiis, GoranSMilovanovic, Adik2382, Th3d3v1ls, Ramalepe, Liugev6, QZanden, Lewizho99, JJMC89, Maathavan, SundanceRaphael, Johan, Izno, Luke081515, Nirmos, Cwek, Wikidata-bugs, Dinoguy1000, jayvdb, MrStradivarius, Arlolra, TheDJ, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T173194: Module:Wikidata label should use mw.wikibase.label and mw.wikibase.sitelink
zhuyifei1999 added a comment. See also T171392. When using Wikidata label in large quantities together with Langswitch, OOM.TASK DETAILhttps://phabricator.wikimedia.org/T173194EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Izno, daniel, Multichill, Aklapper, Ricordisamoa, JeanFred, Jarekt, ValterVB, Elitre, Jheald, Daniel_Mietchen, Nemo_bis, Liuxinyu970226, Aschroet, zhuyifei1999, Steinsplitter, Matanya, RP88, El_Grafo, Revent, Sjoerddebruin, Jane023, Susannaanas, Mike_Peel, Lydia_Pintscher, Micru, intracer, Poyekhali, Nizil, PokestarFan, hoo, SandraF_WMF, GoranSMilovanovic, QZanden, Acer, Vali.matei, Volker_E, Wong128hk, Wikidata-bugs, PKM, Base, matthiasmullie, aude, GWicke, Fabrice_Florin, Mbch331, Jay8g, Tgr___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T165852: PlantData.io
zhuyifei1999 added a comment.Herald added a subscriber: PokestarFan. Anything #Commons should do for this task, or is this tagged in error?TASK DETAILhttps://phabricator.wikimedia.org/T165852EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: K4-713, zhuyifei1999Cc: zhuyifei1999, PokestarFan, Nemo_bis, EBjune, Aklapper, GoranSMilovanovic, QZanden, Puik, Poyekhali, D3r1ck01, Envlh, Izno, Wong128hk, Wikidata-bugs, aude, Tobias1984, El_Grafo, Steinsplitter, Mbch331, Jay8g___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T171143: Allow accessing Wikidata data in Wikitech
zhuyifei1999 added a comment. An outage on the main cluster should not bring down the documentation. https://wikitech-static.wikimedia.org/wiki/Main_Page / https://wikitech.wikimedia.org/wiki/Wikitech-staticTASK DETAILhttps://phabricator.wikimedia.org/T171143EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: zhuyifei1999, Liuxinyu970226, Aklapper, Bugreporter, GoranSMilovanovic, QZanden, Izno, Luke081515, Wikidata-bugs, aude, scfc, Mbch331, Krenair___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T142906: Data access in user language doesn't obey the uselang get parameter
zhuyifei1999 added a comment. = T140792 ?TASK DETAILhttps://phabricator.wikimedia.org/T142906EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: zhuyifei1999, aude, daniel, hoo, Zolo, Aklapper, D3r1ck01, Izno, Wikidata-bugs, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T140792: mw.wikibase.label does not always respect uselang=
zhuyifei1999 added a comment. @Geagea https://commons.wikimedia.org/w/index.php?title=Module:Wikidata/FormatEntity&diff=203794376&oldid=203688642TASK DETAILhttps://phabricator.wikimedia.org/T140792EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Raymond, Geagea, Jarekt, Aklapper, Zppix, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Dinoguy1000, jayvdb, MrStradivarius, Anomie, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T140792: mw.wikibase.label does not always respect uselang=
zhuyifei1999 added a comment. (I had some analysis before this task was created.)TASK DETAILhttps://phabricator.wikimedia.org/T140792EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Geagea, Jarekt, Aklapper, Zppix, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Dinoguy1000, jayvdb, MrStradivarius, Anomie, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Created] T140792: mw.wikibase.label does not always respect uselang=
zhuyifei1999 created this task.zhuyifei1999 added projects: MediaWiki-extensions-Scribunto, Wikidata, MediaWiki-extensions-WikibaseClient.Herald added subscribers: Zppix, Aklapper. TASK DESCRIPTIONSee eg uselang=ar, uselang=de, uselang=zh, for mw.wikibase.label('Q1'). The page is much more likely to show the translations for "universe" with the language in the user's settings than the language in uselang parameter, and the latter should be the expected output of the moduleTASK DETAILhttps://phabricator.wikimedia.org/T140792EMAIL PREFERENCEShttps://phabricator.wikimedia.org/settings/panel/emailpreferences/To: zhuyifei1999Cc: Jarekt, Aklapper, Zppix, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Dinoguy1000, jayvdb, MrStradivarius, Anomie, Jackmcbarn, Mbch331___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. Yes. Please compare the TOC and section headings on this page <https://zh.wikivoyage.org/w/index.php?title=%E8%8E%AB%E6%96%AF%E7%A7%91&variant=zh-hans&oldid=63184> TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Up For Grabs] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 placed this task up for grabs. TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a blocked task: T125033: Chinese Wikimedia projects tracking. TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, D3r1ck01, Izno, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T89597: Convert Template:Creator to Lua and use Wikidata
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T89597 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Yann, Base, Matanya, Marsupium, Liuxinyu970226, Jheald, Ricordisamoa, Aklapper, Multichill, Izno, Wikidata-bugs, aude, Fabrice_Florin, Mbch331, Tgr ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Project Column] T120452: Allow tabular datasets on Commons (or some similar central repository) (CSV, TSV, JSON, XML)
zhuyifei1999 moved this task to Backlog on the Commons workboard. TASK DETAIL https://phabricator.wikimedia.org/T120452 WORKBOARD https://phabricator.wikimedia.org/project/board/1118/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Matanya, ekkis, matmarex, Lydia_Pintscher, Aklapper, Steinsplitter, StudiesWorld, DannyH, Wikidata-bugs, aude, Bawolff, El_Grafo, Ricordisamoa, Fabrice_Florin, Mbch331, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Project Column] T122381: Provide a way to curate and fetch titles (short descriptions) for media files
zhuyifei1999 moved this task to Backlog on the Commons workboard. TASK DETAIL https://phabricator.wikimedia.org/T122381 WORKBOARD https://phabricator.wikimedia.org/project/board/1118/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Lydia_Pintscher, intracer, matmarex, RP88, Matanya, Aklapper, Steinsplitter, Tgr, StudiesWorld, Wikidata-bugs, aude, Bawolff, El_Grafo, Ricordisamoa, Fabrice_Florin, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. In https://phabricator.wikimedia.org/T114734#1862388, @Jdlrobson wrote: > Patch was merged Friday and should be live on Wikivoyage tomorrow. I can > leave this open if it's hard to test on > http://en.m.wikivoyage.beta.wmflabs.org If you are referring to the above patch, as far as I see, it only fix the page title when pgname is not set. Am I missing anything? TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T89601: Build a Multilingual tag alternative in LUA using data from Wikidata
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T89601 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Matanya, Liuxinyu970226, Daniel_Mietchen, Aklapper, Multichill, Ricordisamoa, Wikidata-bugs, aude, Fabrice_Florin, Mbch331, Tgr ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Reopened] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 reopened this task as "Open". zhuyifei1999 added a comment. Hmm. AFAIK, when pgname is set, title isn't converted; TOC isn't converted either. TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Project Column] T94989: [Story] Other projects sidebar should have ability to include commons category links
zhuyifei1999 moved this task to MediaWiki Interface and i18n on the Commons workboard. TASK DETAIL https://phabricator.wikimedia.org/T94989 WORKBOARD https://phabricator.wikimedia.org/project/board/1118/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Lydia_Pintscher, zhuyifei1999, El_Grafo, Ricordisamoa, Jonas, Steinsplitter, Reguyla, Tpt, aude, Aklapper, Wikidata-bugs, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T112426: [Bug] Querying Wikipedia for langlinks doesn't work for be-tarask, but works for be-x-old
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T112426 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Smalyshev, Luke081515, Liuxinyu970226, daniel, Anomie, Ricordisamoa, Purodha, Krenair, Ladsgroup, Lydia_Pintscher, aude, Aklapper, Matanya, Nikerabbit, Amire80, Dereckson, Wikidata-bugs, Snowolf, jayvdb, Legoktm ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Claimed] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 claimed this task. zhuyifei1999 added a comment. I'll see if I can do this. TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. @Jdlrobson Just wondering, how do you test WikidataPageBanner in a MediaWiki-Vagrant install? Do you need Wikibase client installed to have this working? TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. There's a FakeConverter <https://github.com/wikimedia/mediawiki/blob/b79196778ed7c4f49ae09bee9ba16f861a6e3760/languages/FakeConverter.php> for languages without converter rules, so calling $wgContLang->convert( ... ) shouldn't create any issues. (Haven't tested yet) TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. Probably need something like https://github.com/wikimedia/mediawiki/blob/c37d6549fdffc9b53485a25d9f820385ecd91a52/includes/parser/Parser.php#L1326 TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Project Column] T115187: Wikidata-provided interwikis on Commons are showing featured article stars for good articles
zhuyifei1999 moved this task to Backlog on the Commons workboard. TASK DETAIL https://phabricator.wikimedia.org/T115187 WORKBOARD https://phabricator.wikimedia.org/project/board/1118/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, aude, Aklapper, Steinsplitter, Mike_Peel, Wikidata-bugs, El_Grafo ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T115187: Wikidata-provided interwikis on Commons are showing featured article stars for good articles
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T115187 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, aude, Aklapper, Steinsplitter, Mike_Peel, Wikidata-bugs, El_Grafo ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Title and TOC not converted for Wikidata page banner language variants
zhuyifei1999 added a comment. In https://phabricator.wikimedia.org/T114734#1712551, @Jdlrobson wrote: > That said I am not familiar with LanguageConvertor can someone in that team > assist? @liangent? TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: gerritbot, Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher, 01tonythomas ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Updated] T114734: Wikidata page banner does not work properly with language converter.
zhuyifei1999 added a project: MediaWiki-Language-converter. zhuyifei1999 added a comment. In https://phabricator.wikimedia.org/T114734#1711346, @Jdlrobson wrote: > z-index of .wpb-topbanner-toc and .ext-wpb-pagebanner .wpb-topbanner > .wpb-name should be 1. It's a super easy fix. Is someone able to submit a > patch? I can get it merged promptly! That will fix the first issue, but the second remain unsolved. (Adding https://phabricator.wikimedia.org/tag/mediawiki-language-converter/ to get attention from someone who know about Language converter's php code) TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Liuxinyu970226, Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Akangupt, Wikidata-bugs, aude, Lydia_Pintscher, 01tonythomas ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Commented On] T114734: Wikidata page banner does not work properly with language converter.
zhuyifei1999 added a comment. In https://phabricator.wikimedia.org/T114734#1704679, @Hkjacksonhk wrote: > And also the removal of the edit link ([編輯]) next to the article name on the > page banner should be proceeded. ? TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Created] T114734: Wikidata page banner does not work properly with language converter.
zhuyifei1999 created this task. zhuyifei1999 added subscribers: zhuyifei1999, Jdlrobson, liangent, Hkjacksonhk. zhuyifei1999 added projects: Wikidata-Page-Banner, MediaWiki-Language-converter. Herald added a subscriber: Aklapper. Herald added a project: Wikidata. TASK DESCRIPTION See https://zh.wikivoyage.org/wiki/莫斯科, 2 bugs with [[https://www.mediawiki.org/wiki/Writing_systems#LanguageConverter|LanguageConverter]]: # the h1.wpb-name covers out the variant selection menu (div#p-variants > div.menu). Same for the toc when the banner is small enough. # title and the toc stays un-language-converted even after a variant is specified: (eg. -{zh-cn:客车;zh-hk:客車;zh-tw:公車;}- in toc) TASK DETAIL https://phabricator.wikimedia.org/T114734 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Hkjacksonhk, liangent, Jdlrobson, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Created] T114334: Enable Extension:WikidataPageBanner on Chinese Wikivoyage
zhuyifei1999 created this task. zhuyifei1999 added subscribers: zhuyifei1999, Liuxinyu970226, Hkjacksonhk. zhuyifei1999 added projects: Wikidata-Page-Banner, Wikimedia-Extension-setup. Herald added a subscriber: Aklapper. Herald added a project: Wikidata. TASK DESCRIPTION We would like to have the new extension enabled. Discussions here: [[https://zh.wikivoyage.org/wiki/Wikivoyage:%E4%BA%92%E5%8A%A9%E5%AE%A2%E6%A0%88#I_have_created_hundreds_alternate_Wikivoyage_banners_.28which_I_think_look_better_than_many_of_the_default_banners_that_exist_on_Engvoy.2FWikidata.29_for_prominent_locations|1]] [[https://zh.wikivoyage.org/wiki/Wikivoyage:%E4%BA%92%E5%8A%A9%E5%AE%A2%E6%A0%88#.E9.A0.81.E9.9D.A2.E7.9A.84.E5.95.8F.E9.A1.8C|2]], though the community is still too small to have a poll. TASK DETAIL https://phabricator.wikimedia.org/T114334 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Hkjacksonhk, Liuxinyu970226, Aklapper, zhuyifei1999, Wikidata-bugs, aude, Lydia_Pintscher, Jay8g, Krenair, MarcoAurelio ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T112130: Pywikibot crashes on items with quantities with units. Need to implement unit support in pywikibot WbQuanity
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T112130 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, jayvdb, Ladsgroup, gerritbot, Aklapper, pywikibot-bugs-list, Multichill, Wikidata-bugs, aude, Ricordisamoa ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T71166: [Story] Redirects - Ability to create a redirect over a deleted entity
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T71166 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Ricordisamoa, Aklapper, Addshore, matej_suchanek, Lydia_Pintscher, daniel, Wikidata-bugs, aude ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T94989: [Story] Other projects sidebar should have ability to include commons category links
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T94989 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, El_Grafo, Ricordisamoa, Jonas, Steinsplitter, Reguyla, Tpt, aude, Aklapper, Wikidata-bugs, Malyacko ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T89594: Use the arbitrary access to Wikidata feature on Commons (tracking)
zhuyifei1999 added a subscriber: zhuyifei1999. Herald added subscribers: Steinsplitter, Matanya. TASK DETAIL https://phabricator.wikimedia.org/T89594 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Matanya, Steinsplitter, zhuyifei1999, Aschroet, Liuxinyu970226, Nemo_bis, Daniel_Mietchen, Jheald, Elitre, ValterVB, Jarekt, JeanFred, Ricordisamoa, Aklapper, Multichill, Wikidata-bugs, aude, Bawolff, El_Grafo, Fabrice_Florin, Tgr, Malyacko, P.Copp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T98307: Deploy usage tracking and arbitrary access to commonswiki
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T98307 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Steinsplitter, El_Grafo, SamB, Lydia_Pintscher, greg, aude, Bugreporter, Multichill, Aklapper, Ricordisamoa, JeanFred, Jarekt, ValterVB, Elitre, Jheald, Daniel_Mietchen, Nemo_bis, Liuxinyu970226, Wikidata-bugs, gpaumier, Malyacko, P.Copp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T89598: Convert Template:Authority_control to Lua and use Wikidata
zhuyifei1999 added a subscriber: zhuyifei1999. Herald added subscribers: Steinsplitter, Matanya. TASK DETAIL https://phabricator.wikimedia.org/T89598 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: Matanya, Steinsplitter, zhuyifei1999, jeremyb, Liuxinyu970226, He7d3r, Rical, SamB, Tpt, Jheald, Daniel_Mietchen, Ricordisamoa, Multichill, Aklapper, Wikidata-bugs, aude, Bawolff, El_Grafo, Fabrice_Florin, Tgr, Malyacko, P.Copp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T102888: Recent changes pages doesn't have anymore the interlingual wikilinks on the sidebar on some projects
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T102888 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, He7d3r, MZMcBride, liangent, XXN, Bene, aude, Mbch331, hoo, Lydia_Pintscher, Ricordisamoa, Alex_brollo, Accurimbono, Candalua, Andyrom75, Aklapper, Wikidata-bugs, Malyacko, P.Copp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T103296: Wikidata and Wikiversity logo 404ing on wikimedia.org
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T103296 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, WMDE-Fisch, Legoktm, Addshore, Aklapper, Wikidata-bugs, RobH, aude, mark, faidon, fgiunchedi, Dzahn, chasemp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T103296: Wikidata and Wikiversity logo 404ing on wikimedia.org
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T103296 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, WMDE-Fisch, Legoktm, Addshore, Aklapper, Wikidata-bugs, aude, Malyacko, P.Copp ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] [Changed Subscribers] T77925: Wikidata PageBanner extension
zhuyifei1999 added a subscriber: zhuyifei1999. TASK DETAIL https://phabricator.wikimedia.org/T77925 REPLY HANDLER ACTIONS Reply to comment or attach files, or !close, !claim, !unsubscribe or !assign . EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: zhuyifei1999 Cc: zhuyifei1999, Sushrutsg, Andyrom75, Danapit, Glaisher, NiharikaKohli, Qgil, kaldari, Sumit, Nicolas_Raoul, Matroc, Shaundd, Deskana, LtPowers, Aklapper, Florian, Lydia_Pintscher, KLans_WMF, Jdlrobson, Wrh2, Imaculate, Wikidata-bugs, aude ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs