[00:02:00] ori: I don't have time this week to shepherd that through to prod. Do you want to deploy it? [00:02:09] bd808: sure [00:07:11] 3MediaWiki extensions / 3CirrusSearch: CirrusSearch: suggesting categories which do not exist and never did - 10https://bugzilla.wikimedia.org/67269 (10James Forrester) [00:09:44] (03CR) 10Dduvall: [C: 04-1] "A minor -1 on account of the direct instantiation of `UploadWizardPage`. Otherwise, I'm glad you're getting the hang of the framework." (031 comment) [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 (owner: 10Neilk) [00:09:47] (03CR) 10Ori.livneh: [C: 032] scap.cfg: change deploy_dir to /srv/mediawiki [tools/scap] - 10https://gerrit.wikimedia.org/r/158288 (owner: 10Ori.livneh) [00:10:02] (03Merged) 10jenkins-bot: scap.cfg: change deploy_dir to /srv/mediawiki [tools/scap] - 10https://gerrit.wikimedia.org/r/158288 (owner: 10Ori.livneh) [00:28:46] (03PS2) 10Neilk: wait for ajax calls to complete [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 [00:39:13] 3MediaWiki extensions / 3Translate: Add UserMerge support to Translate - 10https://bugzilla.wikimedia.org/67778 (10Kunal Mehta (Legoktm)) 5PATC>3RESO/FIX [00:39:22] (03PS11) 10Alex Monk: Support setting column-width and mode in tag [extensions/Cite] - 10https://gerrit.wikimedia.org/r/120962 (https://bugzilla.wikimedia.org/51260) [00:40:51] (03PS1) 10Jforrester: Update OOjs UI to v0.1.0-pre (36d0c7dc3b) [core] - 10https://gerrit.wikimedia.org/r/158300 [00:41:29] (03CR) 10Catrope: [C: 032] Update OOjs UI to v0.1.0-pre (36d0c7dc3b) [core] - 10https://gerrit.wikimedia.org/r/158300 (owner: 10Jforrester) [00:42:28] (03CR) 10Neilk: "> A minor -1 on account of the direct instantiation of `UploadWizardPage`." [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 (owner: 10Neilk) [00:44:13] (03PS1) 10Bsitu: Implement post history [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158302 [00:47:57] (03Merged) 10jenkins-bot: Update OOjs UI to v0.1.0-pre (36d0c7dc3b) [core] - 10https://gerrit.wikimedia.org/r/158300 (owner: 10Jforrester) [00:49:28] (03CR) 10Neilk: "Sorry, I apologize if the last line sounded a bit exasperated. We had this whole discussion over on bug 70303, but there's no way you (Dan" [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 (owner: 10Neilk) [00:53:27] (03CR) 10Legoktm: "I'm not sure when the renameuser stuff is going to be ready (this has been up for 7 weeks already), so I think we should merge this now si" [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/145216 (https://bugzilla.wikimedia.org/67757) (owner: 10Legoktm) [00:57:04] (03CR) 10Dduvall: [C: 031] "> Both of you (Chris & Dan) seem to think this should never happen, but there are lots of use cases. For instance, imagine a user was edit" [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 (owner: 10Neilk) [00:59:36] (03CR) 10Dduvall: [C: 031] "Working well for me." [vagrant] - 10https://gerrit.wikimedia.org/r/156230 (owner: 10BryanDavis) [00:59:49] legoktm: user merges are irreversible, right? [01:00:08] practically yes [01:00:25] pretty hard to know what came from where etc [01:00:38] db binlogs maybe ;) [01:00:45] or dumps :P [01:00:50] won't this be the first irreversible destructive action on wmf? [01:01:04] it's the same as histmerging really [01:01:15] you can undo a histmerge on-wiki, it's just a (minor) pain [01:02:08] changing your password is an "irreversible destructive action" [01:02:14] but yes, the tool has to be used very carefully [01:03:03] ok, let me rephrase. won't this be the most dangerous operation doable on-wiki, by far? [01:03:17] probably [01:03:49] depending on who you ask, CU might be more dangerous [01:03:57] dangerous to the database [01:04:49] i'm almost wondering if it should even be maintenance-script-only [01:05:29] you realize this tool was active on wikivoyages for over a year with no major issues? :) [01:05:43] i did not, but that wasn't global anyway [01:05:57] mhm [01:07:01] I don't think it's dangerous to the point where only sysadmins should be able to do it, but it has to be highly restricted (stewards only) [01:10:15] 3MediaWiki extensions / 3UserMerge: UserMerge: don't update the entire table in one query - 10https://bugzilla.wikimedia.org/70376 (10Kunal Mehta (Legoktm)) 3NEW p:3Unprio s:3normal a:3T. Gries Needs batching... [01:10:59] legoktm: That's almost an easy bug [01:11:00] almost [01:11:27] 3MediaWiki extensions / 3UserMerge: UserMerge: don't update the entire table in one query - 10https://bugzilla.wikimedia.org/70376 (10Sam Reed (reedy)) p:5Unprio>3High [01:11:28] add a limit, and a loop [01:12:04] we should also add wfWaitForSlaves() calls, except that if you use Special:UserMerge directly, then the web request could take a while, which is bad [01:12:24] I guess we could just set_time_limit(0) [01:12:56] 3MediaWiki extensions / 3UserMerge: UserMerge: don't update the entire table in one query - 10https://bugzilla.wikimedia.org/70376#c1 (10Sam Reed (reedy)) From the runBatchedQuery.php maintenance script: do { $this->output( "Batch $n: " ); $n++; $dbw->query( $quer... [01:13:27] please don't call wfWaitForSlaves() in a transaction whatever you do [01:14:16] There's no transaction explicitly setup [01:14:31] should we be doing this in an explicit transaction? [01:15:07] (03PS1) 10Bsitu: Update text 'User Contributsions' to 'contribs' [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158309 [01:15:37] (03PS1) 10Reedy: Don't update the entire table in one query [extensions/UserMerge] - 10https://gerrit.wikimedia.org/r/158310 (https://bugzilla.wikimedia.org/70376) [01:15:42] 3MediaWiki / 3Database: PHP notices: Explicit commit of implicit transaction and Transaction already in progress - 10https://bugzilla.wikimedia.org/43575#c6 (10Chad H.) Can also reliably replicate with importing: PHP Notice: LCStoreDB::finishWrite: Transaction already in progress (from DatabaseBase::deadl... [01:16:16] (03PS2) 10Reedy: Update text 'User Contributions' to 'contribs' [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158309 (owner: 10Bsitu) [01:16:19] <^d> AaronSchulz: Happy fun times with LCStoreDB ^ [01:16:43] Reedy: DatabaseBase::update says @return bool ? [01:17:30] nearly [01:17:31] (03PS2) 10Reedy: Don't update the entire table in one query [extensions/UserMerge] - 10https://gerrit.wikimedia.org/r/158310 (https://bugzilla.wikimedia.org/70376) [01:18:59] Should we add a set_time_limit(0)? waiting during a user-facing request doesn't seem like a very good idea [01:19:08] legoktm: 100 is probably a too small batch too [01:19:37] What is a good batch size then? [01:19:53] How long is a piece of string? :) [01:20:10] lol [01:20:19] 500? 1000? [01:20:32] yeah, possibly one of the 2... [01:20:37] (03CR) 10Chad: "Aaron and I have been able to reliably reproduce this via multiple methods for quite some time, as have others as evidenced by the bug. I'" [core] - 10https://gerrit.wikimedia.org/r/153944 (owner: 10Aaron Schulz) [01:26:50] (03PS1) 10Legoktm: Set a ratelimit of one global merge per minute per user [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/158311 [01:39:53] (03CR) 10Aaron Schulz: [C: 031] LocalisationCache: Process one fallback at a time (031 comment) [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [01:59:12] (03CR) 10Aaron Schulz: [C: 031] Use new LocalisationCacheRecacheFallback hook [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [02:00:00] (03PS1) 10Chad: ArticleTablesTest: Clarify test name and docs [core] - 10https://gerrit.wikimedia.org/r/158314 [02:09:37] (03CR) 10Legoktm: [C: 032] Maintain a bit more back-compat with MediaWiki core [extensions/LiquidThreads] - 10https://gerrit.wikimedia.org/r/157138 (owner: 10Addshore) [02:09:54] (03Merged) 10jenkins-bot: Maintain a bit more back-compat with MediaWiki core [extensions/LiquidThreads] - 10https://gerrit.wikimedia.org/r/157138 (owner: 10Addshore) [02:28:12] 3MediaWiki / 3Interface: Wrap each wiki page section contents in a container - 10https://bugzilla.wikimedia.org/6104#c17 (10Andrew Dunbar) Eight years ahead of my time, apparently (-; Glad to see others finally noticing some need for this! [02:31:26] (03PS1) 10Chad: EditPageTest: Rewrite testCreatePage() to use a data provider [core] - 10https://gerrit.wikimedia.org/r/158320 [02:35:26] 3MediaWiki extensions / 3CirrusSearch: internal_api_error_BadMethodCallException from GettingStarted morelike task type - 10https://bugzilla.wikimedia.org/68887#c6 (10Matthew Flaschen) Nik, doesn't that mean it won't show any interwiki results if there are not results on the current wiki (since "0 results" =... [02:49:42] 3MediaWiki-Vagrant: Vector + MWV = fucked up shit happening - 10https://bugzilla.wikimedia.org/70114#c2 (10Steven Walling) (In reply to Bryan Davis from comment #1) > Something is wonky with your mediawiki checkout and puppet won't be able to > fix it I don't think. Try doing this: > > $ cd vagrant/mediawiki... [02:49:56] 3MediaWiki-Vagrant: Vector + MWV = fucked up shit happening - 10https://bugzilla.wikimedia.org/70114 (10Steven Walling) 5NEW>3RESO/WOR [02:56:44] 3MediaWiki / 3General/Unknown: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377 (10Gryllida) 3UNCO p:3Unprio s:3normal a:3None I'd like {{Special:Watchlist}} and {{Special:MyContributions}} to include my watchlist and contributions lists — for use on my userpage. I... [03:00:42] 3MediaWiki / 3Recent changes: Reduce options clutter on Special:RecentChanges and Special:Watchlist - 10https://bugzilla.wikimedia.org/35004#c3 (10Gryllida) (In reply to Nemo from comment #0) > A way should be found to reduce the options and/or to provide them in a > better way. I would perhaps suggest to s... [03:31:27] 3MediaWiki / 3MediaWiki UI: Implement checkbox spec in mediawiki.ui - 10https://bugzilla.wikimedia.org/69200#c15 (10Matthew Flaschen) This is still blocked on 24x24 SVGs. Also, we've decided not to use WikiFont for core/web. [03:31:27] 3Wikimedia / 3Wikidata: monitor dispatch stats - 10https://bugzilla.wikimedia.org/65291#c13 (10Daniel Zahn) 20:29 <+icinga-wm> RECOVERY - check if wikidata.org dispatch lag is higher than 2 minutes on wikidata is OK: HTTP OK: HTTP/1.1 200 OK - 1243 bytes in 0.699 second response time... [03:32:26] 3Wikimedia / 3Wikidata: monitor dispatch stats - 10https://bugzilla.wikimedia.org/65291#c14 (10Daniel Zahn) 5PATC>3RESO/FIX yea, uhm, i worked around this annoying issue as shown above.. that fixed it for now. we can turn this into aa template and pass parameters if we care... [03:32:59] 3Wikimedia / 3Wikidata: monitor dispatch stats - 10https://bugzilla.wikimedia.org/65291 (10Daniel Zahn) a:5Wikidata bugs>3Daniel Zahn [03:37:26] (03PS1) 10Pastakhov: fix variables that was added with hook MagicWordwgVariableIDs (v 1.11.2) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158322 [03:38:17] (03CR) 10Pastakhov: [C: 032] fix variables that was added with hook MagicWordwgVariableIDs (v 1.11.2) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158322 (owner: 10Pastakhov) [03:38:22] (03Merged) 10jenkins-bot: fix variables that was added with hook MagicWordwgVariableIDs (v 1.11.2) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158322 (owner: 10Pastakhov) [03:40:58] 3MediaWiki / 3MediaWiki UI: Add icon support for mediawiki.ui buttons - 10https://bugzilla.wikimedia.org/55535 (10Matthew Flaschen) a:3Sam Smith [03:53:41] 3MediaWiki / 3General/Unknown: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377#c1 (10Bawolff (Brian Wolff)) (In reply to Gryllida from comment #0) > I'd like {{Special:Watchlist}} and {{Special:MyContributions}} to include my > watchlist and contributions lists — for use o... [03:53:56] 3MediaWiki / 3Special pages: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377 (10Bawolff (Brian Wolff)) [03:55:04] special page transclusion makes me cry :( [03:58:02] legoktm, wouldn't this bug require splitting of the cache per-user? [03:58:34] special page transclusion disables caching [03:58:44] urgh [03:59:26] 3MediaWiki / 3Export/Import: Importing xml allows edit timestamp to be set in distant future - 10https://bugzilla.wikimedia.org/70362#c1 (10Bawolff (Brian Wolff)) I don't really see this as a bug. One assumes that xml import data is trusted. (I think?) (Limits are unix epoch related) [04:00:04] (03CR) 10Prtksxna: Correct button colours of preference page when $wgUseMediaWikiUIEverywhere is enabled (032 comments) [core] - 10https://gerrit.wikimedia.org/r/157709 (https://bugzilla.wikimedia.org/65317) (owner: 10Jdlrobson) [04:04:28] (03PS5) 10Legoktm: Clarify what the 'scripts' and 'styles' fields in the gadget manager should contain [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157628 (https://bugzilla.wikimedia.org/69906) (owner: 10Alex Monk) [04:04:34] (03CR) 10Legoktm: [C: 032] Clarify what the 'scripts' and 'styles' fields in the gadget manager should contain [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157628 (https://bugzilla.wikimedia.org/69906) (owner: 10Alex Monk) [04:04:46] (03Merged) 10jenkins-bot: Clarify what the 'scripts' and 'styles' fields in the gadget manager should contain [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157628 (https://bugzilla.wikimedia.org/69906) (owner: 10Alex Monk) [04:07:13] 3MediaWiki extensions / 3Gadgets: 2.0: Make it clearer that Scripts and CSS must be in Gadget namespace when defining a gadget - 10https://bugzilla.wikimedia.org/69906 (10Alex Monk) 5PATC>3RESO/FIX [04:11:06] (03PS4) 10Dan-nl: Add Special:Log Entries [extensions/GWToolset] - 10https://gerrit.wikimedia.org/r/156243 (https://bugzilla.wikimedia.org/68277) [04:11:31] (03PS4) 10Alex Monk: Use mediawiki.api for querying the API [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 [04:12:02] (03CR) 10Dan-nl: "* addressed comments in ps2 in ps3 code" (035 comments) [extensions/GWToolset] - 10https://gerrit.wikimedia.org/r/156243 (https://bugzilla.wikimedia.org/68277) (owner: 10Dan-nl) [04:17:42] 3MediaWiki / 3Special pages: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377#c2 (10MZMcBride) s:5normal>3enhanc (In reply to Gryllida from comment #0) > Currently they just include a link to the relevant special pages instead. > This is helpful, but not entirely as hel... [04:21:26] 3MediaWiki / 3MediaWiki UI: Agora .mw-ui-button doesn't override anchor :visited and :active text colors - 10https://bugzilla.wikimedia.org/48184#c2 (10Matthew Flaschen) 5RESO/WOR>3REOP This is still reproducible for me. Just go to https://en.wikipedia.org/wiki/Template:Clickable_button and click "Main... [04:21:41] (03CR) 10Legoktm: [C: 04-1] Use mediawiki.api for querying the API (031 comment) [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 (owner: 10Alex Monk) [04:22:23] (03CR) 10Legoktm: "(everything else looks fine)" [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 (owner: 10Alex Monk) [04:22:34] legoktm: Aroundish? [04:22:42] hey [04:22:50] :) [04:23:20] (03PS1) 10Pastakhov: add highlighting double underscore Magic words (v 1.12.0) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158325 [04:23:32] what's up? [04:23:50] legoktm: Two things I still think we (might) want for global rename/ merge [04:24:09] (03CR) 10Pastakhov: [C: 032] add highlighting double underscore Magic words (v 1.12.0) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158325 (owner: 10Pastakhov) [04:24:10] * Block the old account(s) by creating dummy global accounts at those name [04:24:14] (03Merged) 10jenkins-bot: add highlighting double underscore Magic words (v 1.12.0) [extensions/CodeMirror] - 10https://gerrit.wikimedia.org/r/158325 (owner: 10Pastakhov) [04:24:29] and checking (global) AntiSpoof an warn in case of collision (but let the user overwrite) [04:24:52] first one ofc. should be optional as well [04:26:10] sounds reasoanble [04:26:11] 3Mathoid / 3General/Unknown: SVG height incorrect - 10https://bugzilla.wikimedia.org/70119#c7 (10physikerwelt) p:5Unprio>3Normal That means it's a problem on the server side. [04:26:13] reasonable even [04:26:31] file bugs? :D [04:26:46] Can I chose to be lazy instead? [04:26:51] * hoo hides [04:26:57] 3Mathoid / 3General/Unknown: SVG height incorrect - 10https://bugzilla.wikimedia.org/70119 (10physikerwelt) a:3physikerwelt [04:27:28] (03PS5) 10Alex Monk: Use mediawiki.api for querying the API [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 [04:27:49] (03CR) 10Alex Monk: "ps5 is untested" (031 comment) [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 (owner: 10Alex Monk) [04:29:14] 3MediaWiki extensions / 3CentralAuth: GlobalRename: optionally create a dummy account at the old name after the rename - 10https://bugzilla.wikimedia.org/70379 (10Kunal Mehta (Legoktm)) 3NEW p:3Unprio s:3normal a:3None suggested by hoo. [04:30:29] 3MediaWiki extensions / 3CentralAuth: GlobalRename: check with global AntiSpoof and warn about possible collisions - 10https://bugzilla.wikimedia.org/70380 (10Kunal Mehta (Legoktm)) 3NEW p:3Unprio s:3normal a:3None suggested by hoo. [04:30:41] Thanks :P [04:30:48] (03CR) 10Legoktm: [C: 032] Use mediawiki.api for querying the API [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 (owner: 10Alex Monk) [04:30:54] (03Merged) 10jenkins-bot: Use mediawiki.api for querying the API [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/157629 (owner: 10Alex Monk) [04:31:00] If getting out of work were this easy all the time :D [04:31:11] lolol [04:31:18] "delegate" [04:39:44] 3MediaWiki extensions / 3CentralAuth: Visiting Special:UserLogin when already logged in produces fatal exception - 10https://bugzilla.wikimedia.org/70381 (10Steven Walling) 3NEW p:3Unprio s:3normal a:3None Steps to reproduce: 1. Be logged in 2. Go to a wiki (in my case, Meta) 3. Search for Special... [04:40:42] 3MediaWiki extensions / 3CentralAuth: login when already logged in gets exception from Special:CentralLogin - 10https://bugzilla.wikimedia.org/69834#c11 (10Alex Monk) *** Bug 70381 has been marked as a duplicate of this bug. *** [04:40:43] 3MediaWiki extensions / 3CentralAuth: Visiting Special:UserLogin when already logged in produces fatal exception - 10https://bugzilla.wikimedia.org/70381#c1 (10Alex Monk) 5NEW>3RESO/DUP *** This bug has been marked as a duplicate of bug 69834 *** [04:40:50] (03PS2) 10Prtksxna: Use 'div' instead of 'section' and 'article' [core] - 10https://gerrit.wikimedia.org/r/150812 [04:44:22] (03CR) 10Prtksxna: "> Prtksxna you are hitting the default user agent stylesheet." [core] - 10https://gerrit.wikimedia.org/r/150812 (owner: 10Prtksxna) [04:50:00] (03CR) 10BryanDavis: [C: 04-1] "Cool stuff. Thanks for working on this physikerwelt." (0312 comments) [vagrant] - 10https://gerrit.wikimedia.org/r/156137 (owner: 10Physikerwelt) [04:51:06] (03CR) 10Physikerwelt: [C: 032] Math Search Result Submission Form [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158013 (owner: 10Physikerwelt) [04:51:13] (03Merged) 10jenkins-bot: Math Search Result Submission Form [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158013 (owner: 10Physikerwelt) [04:51:13] 3MediaWiki / 3User preferences: Some gadgets cannot be activated - 10https://bugzilla.wikimedia.org/19245#c7 (10Alex Monk) 5REOP>3RESO/DUP Reverse-dupe because the other bug (filed 10 days later) got fixed. *** This bug has been marked as a duplicate of bug 19410 *** [04:51:14] 3MediaWiki extensions / 3Gadgets: Long gadget names cause problems in user_properties table - 10https://bugzilla.wikimedia.org/19410#c13 (10Alex Monk) *** Bug 19245 has been marked as a duplicate of this bug. *** [04:51:50] (03PS7) 10BryanDavis: Central bundler gem installation path for faster provisions [vagrant] - 10https://gerrit.wikimedia.org/r/156207 (owner: 10Dduvall) [04:52:44] 3MediaWiki / 3User preferences: Some gadgets cannot be activated - 10https://bugzilla.wikimedia.org/19245 (10Alex Monk) [04:52:49] 3MediaWiki extensions / 3Gadgets: Implement Gadget Manager (tracking) - 10https://bugzilla.wikimedia.org/29398 (10Alex Monk) [04:59:11] 3MediaWiki / 3MediaWiki UI: Delete form uses green button and small input box - 10https://bugzilla.wikimedia.org/70135#c2 (10Prateek Saxena) Duplicates bug:70134? [05:14:12] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c3 (10Prateek Saxena) Created attachment 16361 --> https://bugzilla.wikimedia.org/attachment.cgi?id=16361&action=edit before [05:14:26] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c4 (10Prateek Saxena) Created attachment 16362 --> https://bugzilla.wikimedia.org/attachment.cgi?id=16362&action=edit after [05:21:27] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c5 (10Prateek Saxena) Should the delete button be aligned to the right too? [05:39:06] (03CR) 10Foxtrott: Fix for Ia9baaf0b: Make previously public variables public again (031 comment) [core] - 10https://gerrit.wikimedia.org/r/151370 (https://bugzilla.wikimedia.org/67522) (owner: 10Foxtrott) [05:48:39] (03PS1) 10Prtksxna: Use mediawiki UI for Special:PrefixIndex [core] - 10https://gerrit.wikimedia.org/r/158330 (https://bugzilla.wikimedia.org/70382) [05:48:41] 3MediaWiki / 3Special pages: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377#c3 (10Gryllida) The use-case is a personal place with useful links - a dashboard of sorts, containing watchlist, contributions, links from sidebar and the personal bar in one place. Its layout sho... [05:56:37] (03CR) 10Nikerabbit: [C: 04-1] "This will cause trouble for MLEB which packages LU and supports 1.22 still. It looks like we can easily keep functioning (with the bug) on" [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [06:00:07] (03CR) 10Prtksxna: Fix styling of deletion page (031 comment) [core] - 10https://gerrit.wikimedia.org/r/154121 (owner: 10Jdlrobson) [06:01:31] (03CR) 10Prtksxna: "Should I:" [core] - 10https://gerrit.wikimedia.org/r/158330 (https://bugzilla.wikimedia.org/70382) (owner: 10Prtksxna) [06:03:01] (03CR) 10Raimond Spekking: "short i18n review" (031 comment) [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158013 (owner: 10Physikerwelt) [06:11:43] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c6 (10Jared Zimmerman (WMF)) Created attachment 16363 --> https://bugzilla.wikimedia.org/attachment.cgi?id=16363&action=edit v2 [06:12:41] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c7 (10Jared Zimmerman (WMF)) we can break it into separate bugs if we like, but might want to update all the controls (that already exist) at the same time. [06:26:35] (03CR) 10Matthias Mullie: [C: 032] Kill auto-mention in favor of subscriptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156467 (owner: 10EBernhardson) [06:27:23] (03Merged) 10jenkins-bot: Kill auto-mention in favor of subscriptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156467 (owner: 10EBernhardson) [06:28:57] 3MediaWiki extensions / 3SemanticForms: Saving pages broken in MW 1.24 - "Fatal error: Cannot access protected property EditPage::$mTokenOk" - 10https://bugzilla.wikimedia.org/67522 (10Kunal Mehta (Legoktm)) 5PATC>3RESO/FIX [06:34:07] (03PS6) 10Gilles: Add ability to pre-render thumbnails at upload time [core] - 10https://gerrit.wikimedia.org/r/157157 [06:34:16] (03CR) 10Gilles: "Filippo, I've tried hitting the server the way you describe from bast1001 and this is what I get: http://pastebin.com/GQZeUqSt" (031 comment) [core] - 10https://gerrit.wikimedia.org/r/157157 (owner: 10Gilles) [06:38:37] (03CR) 10Gilles: [C: 032] This class is just Preferences now, not Reset [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158241 (owner: 10Neilk) [06:39:06] (03Merged) 10jenkins-bot: This class is just Preferences now, not Reset [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158241 (owner: 10Neilk) [06:45:48] (03CR) 10Gilles: [C: 031] wait for ajax calls to complete [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158240 (owner: 10Neilk) [07:05:49] (03PS1) 10Legoktm: Add @covers tags [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/158331 [07:05:51] (03PS1) 10Legoktm: Remove the old GadgetsTest that is broken [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/158332 [07:07:10] (03PS1) 10Santhosh: Avoid removing empty spans that carry template data [services/cxserver] - 10https://gerrit.wikimedia.org/r/158333 (https://bugzilla.wikimedia.org/69885) [07:07:52] (03PS2) 10Santhosh: Avoid removing empty spans that carry template data [services/cxserver] - 10https://gerrit.wikimedia.org/r/158333 (https://bugzilla.wikimedia.org/69885) [07:09:26] (03CR) 10Gilles: "While testing https://gerrit.wikimedia.org/r/#/c/158249/2 I ran into a problem with UploadWizard's current confirmCloseWindow that you mig" [core] - 10https://gerrit.wikimedia.org/r/151128 (owner: 10MarkTraceur) [07:10:53] (03CR) 10Santhosh: [C: 032] "This is a split from I960dbe6155a5ea859b716e4. authored by David" [services/cxserver] - 10https://gerrit.wikimedia.org/r/158333 (https://bugzilla.wikimedia.org/69885) (owner: 10Santhosh) [07:11:29] (03Merged) 10jenkins-bot: Avoid removing empty spans that carry template data [services/cxserver] - 10https://gerrit.wikimedia.org/r/158333 (https://bugzilla.wikimedia.org/69885) (owner: 10Santhosh) [07:11:59] (03CR) 10Gilles: "Ah, actually it was just because Neil forgot to use the "test" parameter, which as described in the comment, is necessary in order to avoi" [core] - 10https://gerrit.wikimedia.org/r/151128 (owner: 10MarkTraceur) [07:14:09] (03CR) 10Gilles: [C: 04-1] Alert user if navigating away before skip pref set (031 comment) [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158249 (owner: 10Neilk) [07:18:30] (03CR) 10Fomafix: "Hook with attached or detached node?" (031 comment) [core] - 10https://gerrit.wikimedia.org/r/131346 (https://bugzilla.wikimedia.org/24134) (owner: 10TheDJ) [07:21:42] 3MediaWiki extensions / 3WikidataRepo: the output of wbgetentities switched from name to title - 10https://bugzilla.wikimedia.org/70082#c12 (10Amir Ladsgroup) (In reply to Jiří Sedláček from comment #11) > And finally, i am pulled new version of pywikibot and bot is nearly ok > (about ten changes in my code... [07:21:44] 3Datasets / 3General/Unknown: Wikidata JSON dump: file directory location should follow standard patterns - 10https://bugzilla.wikimedia.org/70385 (10Markus Krötzsch) 3NEW p:3Unprio s:3normal a:3Ariel T. Glenn The Wikidata JSON dump is currently located at http://dumps.wikimedia.org/other/wikidata/... [07:22:27] (03CR) 10Gilles: [C: 04-1] "Seen in Firefox, on the thanks page the dividers and buttons end up at the top, when they should be at the bottom: https://www.dropbox.com" [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/151699 (owner: 10MarkTraceur) [07:23:27] 3Datasets / 3General/Unknown: Wikidata JSON dump: filename prefix - 10https://bugzilla.wikimedia.org/68792#c1 (10Markus Krötzsch) This bug is related to Bug 70385, which asks for a more explicative directory structure that follows the conventions used for other dump types. [07:28:51] (03PS1) 10Legoktm: Use a mock instead of ResourceLoaderContext::newDummyContext() [extensions/Gadgets] (RL2) - 10https://gerrit.wikimedia.org/r/158334 [07:29:57] 3Datasets / 3General/Unknown: Wikidata JSON dump: file directory location should follow standard patterns - 10https://bugzilla.wikimedia.org/70385#c1 (10Markus Krötzsch) In addition to the above, there should be a timestamp-based sub-directory for each export (even if it would contain only one file for now).... [07:32:27] 3MediaWiki / 3Email: enotif_body incorrectly assumes helppage is a page name causing watchlist enotifs to be sent with invalid urls - 10https://bugzilla.wikimedia.org/63269#c18 (10carchaias) Shouldn't that be fixed in V 1.23.2? It is not as you can see here: https://aquanautweb.de/testwiki/index.php?title=M... [07:32:43] 3Wikimedia / 3Site requests: Add a "OTRS member" userright to enwiki - 10https://bugzilla.wikimedia.org/70386 (10Mdann52) 3UNCO p:3Unprio s:3normal a:3None At ,there seems to be an early consensus to create a userright on e... [07:33:12] 3Wikimedia / 3Site requests: Add a "OTRS member" userright to enwiki - 10https://bugzilla.wikimedia.org/70386 (10Mdann52) [07:33:12] 3Datasets / 3General/Unknown: Wikidata JSON dump: better compression than gzip - 10https://bugzilla.wikimedia.org/68793#c2 (10Markus Krötzsch) This could also be implemented by offering several formats, as in the case of daily dumps. In this case, the URLs of the files should first be made more standard to h... [07:34:56] 3Wikimedia / 3Site requests: Add a "OTRS member" userright to enwiki - 10https://bugzilla.wikimedia.org/70386#c1 (10Mdann52) (In reply to Mdann52 from comment #0) > At > Userright_RfC>,there seems to be an early consensus to create a userrigh... [07:35:27] 3Datasets / 3General/Unknown: Wikidata JSON dump: filename prefix - 10https://bugzilla.wikimedia.org/68792 (10Markus Krötzsch) [07:35:27] 3Datasets / 3General/Unknown: Wikidata JSON dump: file directory location should follow standard patterns - 10https://bugzilla.wikimedia.org/70385 (10Markus Krötzsch) [07:35:59] 3Wikimedia / 3General/Unknown: internal_api_error_DBQueryError' when restoring deleted user talk page with more than 10K edits - 10https://bugzilla.wikimedia.org/70387 (10matanya) 3NEW p:3Unprio s:3blocke a:3None A troll moved a user talk page to an offensive name. I Have deleted the page in order to... [07:36:50] is http://git.wikimedia.org/ supposed to give Internal error? [07:38:58] 3Wikimedia / 3General/Unknown: internal_api_error_DBQueryError' when restoring deleted user talk page with more than 10K edits - 10https://bugzilla.wikimedia.org/70387 (10matanya) 5NEW>3RESO/FIX [07:45:28] often [07:46:57] 3Datasets / 3General/Unknown: Wikidata JSON dump: file directory location should follow standard patterns - 10https://bugzilla.wikimedia.org/70385 (10Lydia Pintscher) p:5Unprio>3Normal [07:53:12] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c8 (10Jon) *** Bug 70135 has been marked as a duplicate of this bug. *** [07:53:12] 3MediaWiki / 3MediaWiki UI: Delete form uses green button and small input box - 10https://bugzilla.wikimedia.org/70135#c3 (10Jon) 5PATC>3RESO/DUP *** This bug has been marked as a duplicate of bug 70134 *** [07:55:53] (03CR) 10Jdlrobson: "Roan marked it as a WIP. Some minor fixes needed from him if he says this is good to go. Wasn't sure if he had plans to change anything el" [extensions/Mantle] - 10https://gerrit.wikimedia.org/r/155593 (owner: 10Catrope) [08:09:27] 3Wikimedia / 3Site requests: Add a "OTRS member" userright to enwiki - 10https://bugzilla.wikimedia.org/70386 (10Steinsplitter) 5UNCO>3NEW [08:16:28] (03CR) 10Nemo bis: "Is there an example for such a "hook" that skins can then attach to their favorite position?" [core] - 10https://gerrit.wikimedia.org/r/157496 (https://bugzilla.wikimedia.org/43591) (owner: 10Nemo bis) [08:17:39] (03PS1) 10Gilles: Fix TitleBlacklist support [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158337 [08:18:16] (03PS2) 10Gilles: Fix TitleBlacklist support [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/158337 (https://bugzilla.wikimedia.org/65624) [08:26:54] I want to develop a python bot which use OAuth. do have any example code? or similar bot in python which uses OAuth? [08:27:45] do you have any practical document? [08:29:04] I want to develop a python bot which use OAuth. do have any example code? or similar bot in python which uses OAuth? [08:33:53] (03CR) 10Dan-nl: "thanks for the reviews!" (031 comment) [extensions/GWToolset] - 10https://gerrit.wikimedia.org/r/156243 (https://bugzilla.wikimedia.org/68277) (owner: 10Dan-nl) [08:52:23] (03CR) 10QChris: "Since the php tags in X-Analytics header are already present" (031 comment) [extensions/XAnalytics] - 10https://gerrit.wikimedia.org/r/157841 (owner: 10Ori.livneh) [08:58:29] (03PS30) 10Paladox: WikiEditor: Fix issue with SVG [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/151611 (https://bugzilla.wikimedia.org/35342) [08:58:42] (03PS21) 10Paladox: WikiEditor: Convert .css to .less and add SVG [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/151616 [09:12:23] (03Abandoned) 10Spage: Continue offset is missing in the read API [extensions/Echo] (wmf/1.24wmf18) - 10https://gerrit.wikimedia.org/r/156580 (owner: 10Spage) [09:15:57] 3MediaWiki extensions / 3Math: request for feature: automatic figure and equation numbering - 10https://bugzilla.wikimedia.org/5600#c20 (10Jitse Niesen) How is Cite going to work around the restriction "Any sort of counter like this would inherently be a side effect, which we're trying to move away from." (c... [09:27:56] 3MediaWiki extensions / 3WikidataRepo: jquery.ui.core styles overriding Wikibase styles for references-heading toggle - 10https://bugzilla.wikimedia.org/70327#c2 (10Aude) 5NEW>3RESO/FIX https://github.com/wmde/ValueView/pull/113 [09:32:50] (03PS3) 10Wctaiwan: Merge branch 'contenthandler' into master [extensions/MassMessage] - 10https://gerrit.wikimedia.org/r/156087 (owner: 10Legoktm) [09:37:27] 3MediaWiki extensions / 3WikidataRepo: Call to a member function getEntity() on a non-object in EditEntity.php on line 490 - 10https://bugzilla.wikimedia.org/70347#c2 (10Aude) 5NEW>3RESO/FIX problem is that this item is missing in the wb_entity_per_page table which is used to find the revision for the it... [09:38:26] 3MediaWiki extensions / 3WikidataRepo: Call to a member function getEntity() on a non-object in EditEntity.php on line 490 - 10https://bugzilla.wikimedia.org/70347#c3 (10Aude) 5RESO/FIX>3REOP reopening, as I think we make the code more robust and handle this situation better. [09:49:41] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c8 (10JulesWinnfield-hu) 5RESO/FIX>3REOP The UI is broken. It doesn't convert Julian dates to proleptic Gregorian values. Some time ago it worked fine. [09:57:11] 3Wikimedia / 3Site requests: Run migrateAccount.php without --safe or --auto - 10https://bugzilla.wikimedia.org/69291#c6 (10Nemo) This is a case that would have been merged, had they set the same email on all accounts before the script was run, right? https://meta.wikimedia.org/?oldid=9729849#Jborme.40global [10:06:00] 3MediaWiki extensions / 3CentralAuth: centralauth-merge-step1-title double escaping - 10https://bugzilla.wikimedia.org/70391 (10Nemo) 3NEW p:3Unprio s:3normal a:3None On Special:MergeAccount?uselang=it I see "Avvia l'unificazione dei login". [10:11:10] (03CR) 10Jdlrobson: [C: 04-2] "With the following:" [core] - 10https://gerrit.wikimedia.org/r/158330 (https://bugzilla.wikimedia.org/70382) (owner: 10Prtksxna) [10:11:11] 3MediaWiki / 3MediaWiki UI: Special:PrefixIndex should use mediawiki ui - 10https://bugzilla.wikimedia.org/70382#c2 (10Jon) 5PATC>3RESO/WOR It does when the following is applied (the aim is to make these the default) $wgUseMediaWikiUIEverywhere = true; $wgHTMLFormAllowTableFormat = false; [10:16:12] (03Abandoned) 10Jdlrobson: Add wikifont to core [core] - 10https://gerrit.wikimedia.org/r/137888 (https://bugzilla.wikimedia.org/66138) (owner: 10Prtksxna) [10:19:42] (03CR) 10TheDJ: [C: 04-1] [WIP] Improve LivePreview (031 comment) [core] - 10https://gerrit.wikimedia.org/r/131346 (https://bugzilla.wikimedia.org/24134) (owner: 10TheDJ) [10:20:57] 3Wikimedia / 3Site requests: Complete unification of all accounts to SUL - 10https://bugzilla.wikimedia.org/35707 (10Nemo) [10:21:00] 3MediaWiki extensions / 3CentralAuth: Allow to automatically unify on login absent clashes - 10https://bugzilla.wikimedia.org/70392 (10Nemo) 3NEW p:3Unprio s:3enhanc a:3None If $wgCentralAuthAutoMigrate is set to true, when a user logs in and has no global account, in case all local accouns with same... [10:21:45] 3MediaWiki extensions / 3WikidataClient: Cache sitelinks and other related info in ParserOutput, avoid lookups in skin hooks - 10https://bugzilla.wikimedia.org/70393 (10Daniel Kinzler) 3NEW p:3Unprio s:3normal a:3Wikidata bugs All languagelinks, sisterlinks, and other meta info we need to generated t... [10:21:56] 3Wikimedia / 3Site requests: Set $wgCentralAuthPreventUnattached = true; on all wikis - 10https://bugzilla.wikimedia.org/68069#c5 (10Nemo) As mentioned on bug 69291 comment 2, an alternative having the same effect for existing accounts is to run migrateAccount.php --auto, which would create a global account... [10:32:57] 3MediaWiki / 3MediaWiki UI: Agora .mw-ui-button doesn't override anchor :visited and :active text colors - 10https://bugzilla.wikimedia.org/48184#c3 (10Jon) 5REOP>3UNCO Oh I see... Should it be used in this way..? This is what mw-ui-anchor is for? test me... [10:38:43] (03CR) 10Jdlrobson: [C: 032] Use 'div' instead of 'section' and 'article' [core] - 10https://gerrit.wikimedia.org/r/150812 (owner: 10Prtksxna) [10:40:27] 3Wikimedia / 3General/Unknown: Migrate to SUL all non-clashing accounts - 10https://bugzilla.wikimedia.org/39817 (10Nemo) [10:40:27] 3MediaWiki extensions / 3CentralAuth: Allow to automatically unify on login absent clashes - 10https://bugzilla.wikimedia.org/70392 (10Nemo) [10:40:42] 3MediaWiki extensions / 3CentralAuth: Rename of global (attached) users to existing global usernames - 10https://bugzilla.wikimedia.org/47918 (10Nemo) [10:40:42] 3MediaWiki extensions / 3AbuseFilter: Add UserMerge support to AbuseFilter - 10https://bugzilla.wikimedia.org/67757 (10Nemo) [10:41:10] (03Abandoned) 10Jdlrobson: Add flow-menu and board-navigation back to no-js mode [extensions/Flow] - 10https://gerrit.wikimedia.org/r/153354 (owner: 10SG) [10:41:57] (03Abandoned) 10Jdlrobson: [WIP] Represent topic as single html document [extensions/Flow] - 10https://gerrit.wikimedia.org/r/118238 (owner: 10EBernhardson) [10:42:11] (03Abandoned) 10Jdlrobson: [WIP]Separate revision state related action to smaller objects [extensions/Flow] - 10https://gerrit.wikimedia.org/r/134987 (owner: 10Bsitu) [10:42:18] (03Abandoned) 10Jdlrobson: [WIP]Update flow_revision_state [extensions/Flow] - 10https://gerrit.wikimedia.org/r/134985 (owner: 10Bsitu) [10:42:23] (03Abandoned) 10Jdlrobson: [WIP]Flow revision multi-state support [extensions/Flow] - 10https://gerrit.wikimedia.org/r/134982 (owner: 10Bsitu) [10:43:57] (03CR) 10Jdlrobson: [C: 04-1] "Should be based off of approach outlined in https://gerrit.wikimedia.org/r/#/c/157709/" [core] - 10https://gerrit.wikimedia.org/r/154121 (owner: 10Jdlrobson) [10:44:46] (03Merged) 10jenkins-bot: Use 'div' instead of 'section' and 'article' [core] - 10https://gerrit.wikimedia.org/r/150812 (owner: 10Prtksxna) [10:46:59] 3MediaWiki extensions / 3OAuth: Fatal error: MWOAuthSetup::defineSourcePaths() must be of the type array - 10https://bugzilla.wikimedia.org/70394 (10Inixi Noisse) 3UNCO p:3Unprio s:3normal a:3None When performing update on Mediawiki with maintenance/update.php this error occurs: PHP Catchable fatal... [10:47:44] (03PS4) 10Jdlrobson: Correct button colours of preference page when $wgUseMediaWikiUIEverywhere is enabled [core] - 10https://gerrit.wikimedia.org/r/157709 (https://bugzilla.wikimedia.org/65317) [10:48:29] (03PS9) 10Jdlrobson: Fix styling of deletion page when $wgUseMediaWikiUIEverywhere enabled [core] - 10https://gerrit.wikimedia.org/r/154121 [10:49:13] (03CR) 10Jdlrobson: "Actually ignore earlier comment, this isn't using HtmlForm. Can it? I'm not too familiar with HtmlForm." [core] - 10https://gerrit.wikimedia.org/r/154121 (owner: 10Jdlrobson) [10:49:15] 3MediaWiki extensions / 3OAuth: Fatal error: MWOAuthSetup::defineSourcePaths() must be of the type array - 10https://bugzilla.wikimedia.org/70394#c1 (10Inixi Noisse) (In reply to Inixi Noisse from comment #0) > When performing update on Mediawiki with maintenance/update.php this error > occurs: > > PHP Catc... [10:52:27] 3MediaWiki extensions / 3WikidataRepo: the output of wbgetentities switched from name to title - 10https://bugzilla.wikimedia.org/70082#c13 (10Jiří Sedláček) Amir, i know. Thanks, but it's not completely clear, but its near ok, thanks! J. [11:00:13] (03PS4) 10Jdlrobson: Move mediawiki.skinning.* modules from skins/common/ to resources/ [core] - 10https://gerrit.wikimedia.org/r/157490 (https://bugzilla.wikimedia.org/69277) (owner: 10Bartosz Dziewoński) [11:03:27] (03CR) 10Jdlrobson: [C: 032] Move mediawiki.skinning.* modules from skins/common/ to resources/ [core] - 10https://gerrit.wikimedia.org/r/157490 (https://bugzilla.wikimedia.org/69277) (owner: 10Bartosz Dziewoński) [11:05:20] (03CR) 10Lewis Cawte: [C: 031] mediawiki.skinning.content.externallinks: Code quality tweaks [core] - 10https://gerrit.wikimedia.org/r/156789 (owner: 10Bartosz Dziewoński) [11:05:46] (03CR) 10Lewis Cawte: [C: 031] Add $wgExportMaxTime to set a max timelimit on Special:Export [core] - 10https://gerrit.wikimedia.org/r/154843 (owner: 10Legoktm) [11:08:27] 3MediaWiki / 3MediaWiki UI: Deletion page has mw-ui-constructive button, Other/additional reason input is tiny - 10https://bugzilla.wikimedia.org/70134#c9 (10Prateek Saxena) 5NEW>3PATC Change 154121 had a related patch set uploaded by Jdlrobson: Fix styling of deletion page https://gerrit.wikimedia.org/... [11:09:49] (03Merged) 10jenkins-bot: Move mediawiki.skinning.* modules from skins/common/ to resources/ [core] - 10https://gerrit.wikimedia.org/r/157490 (https://bugzilla.wikimedia.org/69277) (owner: 10Bartosz Dziewoński) [11:10:23] (03Abandoned) 10Prtksxna: Use mediawiki UI for Special:PrefixIndex [core] - 10https://gerrit.wikimedia.org/r/158330 (https://bugzilla.wikimedia.org/70382) (owner: 10Prtksxna) [11:10:57] 3MediaWiki extensions / 3WikidataRepo: [Monolingual] Exact language code match should be first - 10https://bugzilla.wikimedia.org/67395#c3 (10tobias.gritschacher) 5PATC>3RESO/FIX Fixed in https://github.com/wmde/ValueView/pull/112. Not yet released. [11:11:26] 3MediaWiki / 3Export/Import: Importing xml allows edit timestamp to be set in distant future - 10https://bugzilla.wikimedia.org/70362#c2 (10Andre Klapper) 5NEW>3RESO/WON +1 to comment 1 [11:12:41] 3MediaWiki / 3Special pages: Special:Watchlist should be transcludeable - 10https://bugzilla.wikimedia.org/70377 (10Andre Klapper) p:5Unprio>3Lowest [11:12:57] 3MediaWiki / 3MediaWiki UI: Special:Block should use mediawiki ui destructive - 10https://bugzilla.wikimedia.org/66145#c3 (10Jon) Update: With $wgUseMediaWikiUIEverywhere = true MediaWiki UI is applied but the button is constructive rather than destructive. Solution in https://gerrit.wikimedia.org/r/157709... [11:13:13] 3MediaWiki extensions / 3WikidataRepo: Inconsistent behavior of enter key in site-link UI - 10https://bugzilla.wikimedia.org/39318#c3 (10tobias.gritschacher) 5NEW>3PATC https://github.com/wmde/ValueView/pull/115 [11:13:27] 3MediaWiki extensions / 3WikidataRepo: Input extender is closed on mouse-click-and-hold in Chrome - 10https://bugzilla.wikimedia.org/68913#c1 (10tobias.gritschacher) 5NEW>3PATC https://github.com/wmde/ValueView/pull/115 [11:14:12] 3Wikimedia / 3General/Unknown: internal_api_error_DBQueryError' when restoring deleted user talk page with more than 10K edits - 10https://bugzilla.wikimedia.org/70387 (10Andre Klapper) s:5blocke>3normal [11:14:13] 3MediaWiki extensions / 3WikidataRepo: Inconsistent behavior of enter key in site-link UI - 10https://bugzilla.wikimedia.org/39318 (10tobias.gritschacher) [11:14:58] 3Wikimedia / 3Site requests: Add a "OTRS member" userright to enwiki - 10https://bugzilla.wikimedia.org/70386 (10Andre Klapper) p:5Unprio>3Normal s:5normal>3enhanc [11:17:28] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c9 (10Andre Klapper) (In reply to JulesWinnfield-hu from comment #8) > The UI is broken. Steps to reproduce welcome. [11:17:42] 3MediaWiki / 3Parser: RTL/bidirectional issues (tracking) - 10https://bugzilla.wikimedia.org/745 (10Andre Klapper) [11:19:12] 3MediaWiki extensions / 3CentralAuth: centralauth-merge-step1-title double escaping - 10https://bugzilla.wikimedia.org/70391 (10Andre Klapper) p:5Unprio>3Low [11:25:57] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c10 (10JulesWinnfield-hu) (In reply to Andre Klapper from comment #9) Enter any date before 1500, try to set Julian calendar model, save, see the stored value. No conversion occures. [11:47:11] (03PS4) 10Jdlrobson: Change mw-ui anchors to require mw-ui-anchor base class [core] - 10https://gerrit.wikimedia.org/r/155856 (owner: 10SG) [11:51:33] (03PS5) 10Jdlrobson: Change mw-ui anchors to require mw-ui-anchor base class [core] - 10https://gerrit.wikimedia.org/r/155856 (owner: 10SG) [11:51:51] (03CR) 10Jdlrobson: [C: 031] "Was taking too long for Shahyar to do this, so I fixed it up for him." [core] - 10https://gerrit.wikimedia.org/r/155856 (owner: 10SG) [11:52:24] (03CR) 10Manybubbles: [C: 032] Move AbstractSwiftBlobContainer to SwiftBlobContainer [search/repository-swift] - 10https://gerrit.wikimedia.org/r/158282 (owner: 10Chad) [12:02:42] 3MediaWiki / 3MediaWiki UI: overriding full-width input fields in Agora mw-ui-vform - 10https://bugzilla.wikimedia.org/47520#c4 (10Jon) Please document bug 69449. This bug and the vform elements are not well described. I will mark as INVALID if I don't hear back within a week. [12:03:42] 3MediaWiki extensions / 3Math: request for feature: automatic figure and equation numbering - 10https://bugzilla.wikimedia.org/5600#c21 (10Helder) 5RESO/WON>3REOP Reopening since this is a necessary feature (even if its only possible implementation is based on JS) [12:04:00] (03CR) 10Jdlrobson: [C: 04-1] "Is this still being worked on?" (032 comments) [core] - 10https://gerrit.wikimedia.org/r/121975 (https://bugzilla.wikimedia.org/56363) (owner: 10Ganeshaditya1) [12:04:27] 3MediaWiki / 3MediaWiki UI: VForm: [[Special:ChangeEmail]] form should be rewritten to use HTMLForm with vform styling and prettier error messages - 10https://bugzilla.wikimedia.org/56363#c3 (10Jon) So to summarise this bug: * Add mw-ui-vform class to form with id mw-changeemail-form * Render errors and succ... [12:05:56] (03PS3) 10Jdlrobson: i18n: Update text 'User Contributions' to 'contribs' [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158309 (owner: 10Bsitu) [12:07:07] (03CR) 10Jdlrobson: [C: 04-1] i18n: Update text 'User Contributions' to 'contribs' (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158309 (owner: 10Bsitu) [12:07:20] (03CR) 10Jdlrobson: "Also is there a bug we can reference?" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158309 (owner: 10Bsitu) [12:13:59] 3MediaWiki extensions / 3WikidataRepo: Displaying (and editing) the calendar model of time values is confusing - 10https://bugzilla.wikimedia.org/70395 (10Henning) 3NEW p:3Unprio s:3normal a:3Wikidata bugs When displaying time values, an assumption regarding the calender model is applied: The calenda... [12:15:57] 3Wikimedia / 3Wikidata: monitor dispatch stats - 10https://bugzilla.wikimedia.org/65291#c15 (10Jan Zerebecki) Thx. Patch for mail notifications: https://gerrit.wikimedia.org/r/#/c/158362/ [12:17:27] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c11 (10Henning) 5REOP>3RESO/FIX (In reply to JulesWinnfield-hu from comment #10) > (In reply to Andre Klapper from comment #9) > Enter any date before 1500, try to set Julian ca... [12:19:33] (03PS1) 10Physikerwelt: Fix: problems in i18n files [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 [12:21:00] (03PS2) 10Physikerwelt: Fix: problems in i18n files [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 [12:32:32] (03PS1) 10Liangent: Change loading order of Chinese conversion tables [core] - 10https://gerrit.wikimedia.org/r/158366 [12:36:24] (03CR) 10Jdlrobson: [C: 04-1] "The preview code is getting messy." (032 comments) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158142 (https://bugzilla.wikimedia.org/70200) (owner: 10Bsitu) [12:43:08] (03CR) 10Jdlrobson: [C: 04-1] Add topic name to 'create topic' notification (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158264 (owner: 10Bsitu) [12:44:13] (03CR) 10Jdlrobson: [C: 031] Add reverse chronological ordering to unread notifications [extensions/Echo] - 10https://gerrit.wikimedia.org/r/158239 (owner: 10Bsitu) [12:45:13] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c12 (10JulesWinnfield-hu) 5RESO/FIX>3REOP (In reply to Henning from comment #11) It's not only about display, though the display is also broken because no conversion occures eit... [12:45:13] 3MediaWiki extensions / 3Math: request for feature: automatic figure and equation numbering - 10https://bugzilla.wikimedia.org/5600#c22 (10physikerwelt) Do you think this issue is specific to the math extension. If not please change the product and component. [12:46:57] 3MediaWiki extensions / 3Math: request for feature: automatic figure and equation numbering - 10https://bugzilla.wikimedia.org/5600#c23 (10Jackmcbarn) (In reply to Jitse Niesen from comment #20) > How is Cite going to work around the restriction "Any sort of counter like > this would inherently be a side eff... [12:48:56] 3MediaWiki extensions / 3Extensions requests: Request for feature: automatic figure and equation (formula) numbering - 10https://bugzilla.wikimedia.org/5600 (10Helder) [12:52:22] (03CR) 10Raimond Spekking: [C: 04-1] "i18n review" (031 comment) [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 (owner: 10Physikerwelt) [12:56:12] 3MediaWiki extensions / 3WikidataRepo: not possible to switch to Julian calendar model - 10https://bugzilla.wikimedia.org/65847#c13 (10tobias.gritschacher) 5REOP>3RESO/FIX (In reply to JulesWinnfield-hu from comment #12) > (In reply to Henning from comment #11) > It's not only about display, though the d... [12:57:27] 3MediaWiki extensions / 3Extensions requests: Request for feature: automatic figure and equation (formula) numbering - 10https://bugzilla.wikimedia.org/5600#c24 (10physikerwelt) I would say that's good news. I think there is a way to separate the counter and reference generation from the cite extension. That... [13:00:27] (03PS3) 10Physikerwelt: Fix: problems in i18n files [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 [13:02:27] (03CR) 10Physikerwelt: "Thanks for your support." (031 comment) [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 (owner: 10Physikerwelt) [13:02:42] 3MediaWiki extensions / 3CirrusSearch: internal_api_error_BadMethodCallException from GettingStarted morelike task type - 10https://bugzilla.wikimedia.org/68887#c7 (10Nik Everett) Nah, an empty search results object isn't falsy in this case. Its an object rather than an array. Though, you are right it'd be... [13:03:09] (03CR) 10Raimond Spekking: [C: 031] "i18n review ok. I have not checked the program code itself." [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 (owner: 10Physikerwelt) [13:04:12] (03CR) 10Physikerwelt: [C: 032] Fix: problems in i18n files [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 (owner: 10Physikerwelt) [13:04:18] (03Merged) 10jenkins-bot: Fix: problems in i18n files [extensions/MathSearch] - 10https://gerrit.wikimedia.org/r/158363 (owner: 10Physikerwelt) [13:14:20] (03PS2) 10Dbrant: Final (for real) tweak of page issues styling. [extensions/MobileApp] - 10https://gerrit.wikimedia.org/r/155103 [13:14:22] (03PS1) 10Dbrant: Add config parameter for event logging sampling rate. [extensions/MobileApp] - 10https://gerrit.wikimedia.org/r/158372 [13:16:38] (03Abandoned) 10Bartosz Dziewoński: mediawiki.action.view.redirect: Update version check for fixed Firefox bug [core] - 10https://gerrit.wikimedia.org/r/157688 (owner: 10Bartosz Dziewoński) [13:16:45] 3MediaWiki extensions / 3WikidataRepo: UI broken for Julian calendar model dates - 10https://bugzilla.wikimedia.org/70398 (10JulesWinnfield-hu) 3NEW p:3Unprio s:3normal a:3Wikidata bugs The UI stores wrong date values for Julian calendar model dates. It doesn't convert them to proleptic Gregorian dat... [13:16:58] 3MediaWiki extensions / 3WikidataRepo: UI broken for Julian calendar model dates - 10https://bugzilla.wikimedia.org/70398 (10JulesWinnfield-hu) p:5Unprio>3High [13:17:42] 3MediaWiki extensions / 3UniversalLanguageSelector: browsertest: RSpec::Expectations::ExpectationNotMetError in features/ime.feature `Then I should see the input method menu is not offscreen' - 10https://bugzilla.wikimedia.org/61214#c1 (10Željko Filipin) 5NEW>3RESO/FIX Looks like this is fixed. The scena... [13:19:57] 3MediaWiki extensions / 3UniversalLanguageSelector: browsertest: RSpec::Expectations::ExpectationNotMetError in features/ime.feature `Then I should see the input method menu is not offscreen' - 10https://bugzilla.wikimedia.org/61214 (10Željko Filipin) 5PATC>3RESO/FIX [13:24:59] (03PS4) 10Physikerwelt: Mathoid role [vagrant] - 10https://gerrit.wikimedia.org/r/156137 [13:25:43] (03CR) 10Physikerwelt: "Thank you for your code review." (0313 comments) [vagrant] - 10https://gerrit.wikimedia.org/r/156137 (owner: 10Physikerwelt) [13:40:11] (03PS1) 10Manybubbles: README updates [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/158376 [13:46:17] (03CR) 10Anomie: "> This will cause trouble for MLEB which packages LU and supports 1.22 still" [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [13:48:44] (03CR) 10Nikerabbit: "MLEB is single release targeting stable branches." [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [13:49:42] 3MediaWiki extensions / 3UniversalLanguageSelector: browsertest: RSpec::Expectations::ExpectationNotMetError in features/ime.feature `Then I should see the input method menu is not offscreen' - 10https://bugzilla.wikimedia.org/61214#c4 (10Željko Filipin) The test is passing in Firefox 27 on Jenkins machine:... [13:50:08] (03CR) 10Nikerabbit: "We could just use the current version of LU before this patch, but we could miss other updates that way." [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [13:54:04] (03PS2) 10Anomie: Use new LocalisationCacheRecacheFallback hook [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) [13:54:23] (03CR) 10Anomie: "Remove -2 since there's BC code now." [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [13:58:12] 3MediaWiki extensions / 3WikidataRepo: Displaying (and editing) the calendar model of time values is confusing - 10https://bugzilla.wikimedia.org/70395 (10tobias.gritschacher) [13:58:13] 3MediaWiki extensions / 3WikidataRepo: UI broken for Julian calendar model dates - 10https://bugzilla.wikimedia.org/70398 (10tobias.gritschacher) [13:59:00] (03PS1) 10Matthias Mullie: Use same arguments for globalApiPreHandlers as for apiPreHandlers [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158378 [13:59:54] (03PS2) 10Anomie: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) [14:00:05] (03CR) 10Anomie: LocalisationCache: Process one fallback at a time (031 comment) [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:00:15] (03PS1) 10Smuggli: Fixed some facet issues [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/158379 [14:23:31] (03CR) 10Chad: [V: 032] Move AbstractSwiftBlobContainer to SwiftBlobContainer [search/repository-swift] - 10https://gerrit.wikimedia.org/r/158282 (owner: 10Chad) [14:26:28] (03CR) 10Anomie: ApiQuerySiteinfo: Use proper localised skin display names if available (031 comment) [core] - 10https://gerrit.wikimedia.org/r/157275 (https://bugzilla.wikimedia.org/48953) (owner: 10Bartosz Dziewoński) [14:30:54] (03CR) 10Swidmann: Fixed some facet issues (031 comment) [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/158379 (owner: 10Smuggli) [14:31:01] (03PS1) 10Jdlrobson: Apply mw-ui-anchor where necessary [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158383 [14:31:04] (03CR) 10Swidmann: [C: 031 V: 031] Fixed some facet issues [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/158379 (owner: 10Smuggli) [14:32:35] (03CR) 10Anomie: [C: 04-1] "You're getting there. Still some issues left to fix." (032 comments) [core] - 10https://gerrit.wikimedia.org/r/156274 (owner: 10Petrb) [14:32:41] 3Wikimedia / 3Site requests: Set $wgLegacyJavaScriptGlobals = false on ptwiki and ptwikibooks - 10https://bugzilla.wikimedia.org/70366#c1 (10Krinkle) I don't want to step on any toes but can I genuinely recommend against this for the time being? If at all possible I would like to not configure this on a per-... [14:34:11] 3MediaWiki extensions / 3WikidataRepo: Displaying (and editing) the calendar model of time values is confusing - 10https://bugzilla.wikimedia.org/70395#c1 (10Henning) Conversion between Gregorian and Julian had been done back when the TimeValue was managed in the front-end. It would definitely by nice to be... [14:34:59] (03PS2) 10Smuggli: Fixed some facet issues [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/158379 [14:35:40] (03CR) 10Smuggli: [C: 032 V: 032] Fixed some facet issues [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/158379 (owner: 10Smuggli) [14:37:32] (03CR) 10Krinkle: "Yeah, hooks are best run while still detached to avoid extra reflows and less performance computations." [core] - 10https://gerrit.wikimedia.org/r/131346 (https://bugzilla.wikimedia.org/24134) (owner: 10TheDJ) [14:38:45] (03PS3) 10Nikerabbit: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:39:11] fingers crossed [14:39:12] 3Wikimedia / 3General/Unknown: internal_api_error_DBQueryE rror on page edit; db1024 - 10https://bugzilla.wikimedia.org/70221#c6 (10Brad Jorsch) (In reply to Andre Klapper from comment #4) > Unsure whether to put this API or DB or Page editing territory, meh. Not API, the API just calls into the core page e... [14:40:14] (03PS1) 10Matthias Mullie: (bug 61691) Delay loading editor javascript until after initial page load [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158384 (https://bugzilla.wikimedia.org/61691) [14:40:31] (03CR) 10jenkins-bot: [V: 04-1] LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:40:49] (03CR) 10jenkins-bot: [V: 04-1] (bug 61691) Delay loading editor javascript until after initial page load [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158384 (https://bugzilla.wikimedia.org/61691) (owner: 10Matthias Mullie) [14:41:17] (03PS4) 10Nikerabbit: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:41:42] 3MediaWiki extensions / 3WikidataClient: Cache sitelinks and other related info in ParserOutput, avoid lookups in skin hooks - 10https://bugzilla.wikimedia.org/70393 (10Aude) p:5Unprio>3High s:5normal>3major [14:41:56] 3MediaWiki extensions / 3WikidataClient: other projects feature broken with $wgEnableSidebarCache = true - 10https://bugzilla.wikimedia.org/70234 (10Aude) p:5Unprio>3Highes s:5normal>3major [14:43:04] (03CR) 10jenkins-bot: [V: 04-1] LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:45:01] (03PS2) 10Matthias Mullie: (bug 61691) Delay loading editor javascript until after initial page load [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158384 (https://bugzilla.wikimedia.org/61691) [14:45:27] (03PS5) 10Nikerabbit: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:47:19] (03CR) 10MarkTraceur: "Oh. I honestly thought master didn't *have* the message. Will fix! :)" [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/151699 (owner: 10MarkTraceur) [14:49:27] 3MediaWiki extensions / 3WikidataClient: other projects feature broken with $wgEnableSidebarCache = true - 10https://bugzilla.wikimedia.org/70234 (10tobias.gritschacher) [14:49:28] 3MediaWiki extensions / 3WikidataClient: Cache sitelinks and other related info in ParserOutput, avoid lookups in skin hooks - 10https://bugzilla.wikimedia.org/70393 (10tobias.gritschacher) [14:49:58] 3MediaWiki extensions / 3WikidataClient: other projects feature broken with $wgEnableSidebarCache = true - 10https://bugzilla.wikimedia.org/70234 (10tobias.gritschacher) [14:49:58] 3MediaWiki extensions / 3WikidataClient: other projects feature broken with $wgEnableSidebarCache = true - 10https://bugzilla.wikimedia.org/70234 (10tobias.gritschacher) [14:51:34] 3MediaWiki extensions / 3WikidataRepo: EntityPerPage sometimes not updated for new items - 10https://bugzilla.wikimedia.org/70400 (10Aude) 3NEW p:3Unprio s:3normal a:3Wikidata bugs this causes items to be not-editable (edit conflict detected) and other problems with entity lookup. PHP Warning: [dat... [14:51:39] (03PS3) 10Nikerabbit: Use new LocalisationCacheRecacheFallback hook [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:51:53] (03CR) 10jenkins-bot: [V: 04-1] LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:52:26] 3MediaWiki extensions / 3WikidataRepo: Call to a member function getEntity() on a non-object in EditEntity.php on line 490 - 10https://bugzilla.wikimedia.org/70347#c4 (10Aude) see bug 70400 and then would also like an exception to be thrown instead of a fatal in EditEntity [14:52:35] (03CR) 10Nikerabbit: [C: 032] "Thank you. I updated version number as well as this is important change." [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:52:40] (03Merged) 10jenkins-bot: Use new LocalisationCacheRecacheFallback hook [extensions/LocalisationUpdate] - 10https://gerrit.wikimedia.org/r/158147 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:54:57] 3MediaWiki extensions / 3CentralAuth: centralauth-merge-step1-title double escaping - 10https://bugzilla.wikimedia.org/70391 (10Nemo) p:5Low>3Normal [14:54:59] 3MediaWiki extensions / 3SemanticForms: Dropdown Input type is not picking up all property values - 10https://bugzilla.wikimedia.org/70401 (10Neill Mitchell) 3NEW p:3Unprio s:3normal a:3Yaron Koren Hi. I'm running SF 3.0-alph rev 06dfc3f on MW 1.23.3 and SMW 1.9.2 I have the following District prop... [14:56:48] (03PS6) 10Nikerabbit: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [14:59:00] (03CR) 10Anomie: [C: 04-1] "We'll want to make sure this gets in Tech News before deployment, of course. So ideally a merge on Thursday afternoon or Friday, Tech News" (032 comments) [core] - 10https://gerrit.wikimedia.org/r/158098 (https://bugzilla.wikimedia.org/26546) (owner: 10Jackmcbarn) [15:04:45] (03CR) 10Nikerabbit: [C: 031] "+1 because I wrote the tests, leaving for someone else to check those." [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [15:07:17] (03PS1) 10Reedy: Fix strict issue [extensions/MWSearch] - 10https://gerrit.wikimedia.org/r/158387 [15:07:49] (03PS1) 10Reedy: Fix strict issue [extensions/MWSearch] (wmf/1.24wmf15) - 10https://gerrit.wikimedia.org/r/158388 [15:09:32] (03CR) 10Andrew Bogott: [C: 031] "Obvious fix is obvious" [extensions/MWSearch] - 10https://gerrit.wikimedia.org/r/158387 (owner: 10Reedy) [15:09:35] (03CR) 10Hoo man: [C: 032] "Trivial change is trivial" [extensions/MWSearch] - 10https://gerrit.wikimedia.org/r/158387 (owner: 10Reedy) [15:09:46] (03Merged) 10jenkins-bot: Fix strict issue [extensions/MWSearch] - 10https://gerrit.wikimedia.org/r/158387 (owner: 10Reedy) [15:10:15] (03CR) 10Reedy: [C: 032] Fix strict issue [extensions/MWSearch] (wmf/1.24wmf15) - 10https://gerrit.wikimedia.org/r/158388 (owner: 10Reedy) [15:10:33] (03Merged) 10jenkins-bot: Fix strict issue [extensions/MWSearch] (wmf/1.24wmf15) - 10https://gerrit.wikimedia.org/r/158388 (owner: 10Reedy) [15:12:25] (03PS1) 10Reedy: Update MWSearch to 1.24wmf15 HEAD [core] (wmf/1.24wmf15) - 10https://gerrit.wikimedia.org/r/158392 [15:12:47] (03CR) 10Reedy: [C: 032 V: 032] Update MWSearch to 1.24wmf15 HEAD [core] (wmf/1.24wmf15) - 10https://gerrit.wikimedia.org/r/158392 (owner: 10Reedy) [15:24:41] 3MediaWiki extensions / 3Translate: Translation information under the page title is too obtrusive - 10https://bugzilla.wikimedia.org/51533#c24 (10Nemo) Created attachment 16369 --> https://bugzilla.wikimedia.org/attachment.cgi?id=16369&action=edit ECB language selection The other attachment is quite simil... [15:24:58] 3MediaWiki extensions / 3WikidataRepo: Displaying (and editing) the calendar model of time values is confusing - 10https://bugzilla.wikimedia.org/70395 (10tobias.gritschacher) p:5Unprio>3Normal [15:26:43] 3MediaWiki extensions / 3Translate: Translation information under the page title is too obtrusive - 10https://bugzilla.wikimedia.org/51533#c25 (10Quim Gil) GSoC ended, this feature is not implemented, and I hope Kunal will stick around until completing it... [15:41:56] 3MediaWiki extensions / 3OAuth: Fatal error: MWOAuthSetup::defineSourcePaths() must be of the type array - 10https://bugzilla.wikimedia.org/70394#c2 (10Chris Steipp) 5UNCO>3NEW p:5Unprio>3Normal I'm able to reproduce it. The problem is wgRedactedFunctionArguments, which was removed at some point. I'... [15:42:14] 3MediaWiki extensions / 3OAuth: Fatal error: MWOAuthSetup::defineSourcePaths() must be of the type array - 10https://bugzilla.wikimedia.org/70394 (10Chris Steipp) a:3Chris Steipp [15:44:11] 3Wikimedia / 3Extension setup: Extensions awaiting code review to be deployed on Wikimedia wikis (tracking) - 10https://bugzilla.wikimedia.org/31235 (10Tisza Gergő) [15:44:14] 3Wikimedia / 3Extension setup: Review and deploy ImageMetrics extension to Wikimedia wikis - 10https://bugzilla.wikimedia.org/70402 (10Tisza Gergő) 3NEW p:3Unprio s:3normal a:3None [[mw:Extension:ImageMetrics]] will be used to collect additional data about image performance and (eventually - not impl... [15:45:10] (03PS1) 10CSteipp: Remove wgRedactedFunctionArguments handling [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/158398 (https://bugzilla.wikimedia.org/70394) [15:45:13] (03CR) 10jenkins-bot: [V: 04-1] Remove wgRedactedFunctionArguments handling [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/158398 (https://bugzilla.wikimedia.org/70394) (owner: 10CSteipp) [15:46:31] (03Abandoned) 10CSteipp: Remove wgRedactedFunctionArguments handling [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/158398 (https://bugzilla.wikimedia.org/70394) (owner: 10CSteipp) [15:50:06] (03CR) 10Isarra: "Generally you just slap a $this->html( 'sitenotice' ); wherever you want the sitenotice to show up when there is one. Same goes for the ta" [core] - 10https://gerrit.wikimedia.org/r/157496 (https://bugzilla.wikimedia.org/43591) (owner: 10Nemo bis) [15:51:39] (03PS1) 10CSteipp: Remove wgRedactedFunctionArguments handling [extensions/OAuth] (REL1_22) - 10https://gerrit.wikimedia.org/r/158402 (https://bugzilla.wikimedia.org/70394) [15:55:12] 3MediaWiki extensions / 3WikidataRepo: Call to a member function getEntity() on a non-object in EditEntity.php on line 490 - 10https://bugzilla.wikimedia.org/70347 (10Aude) 5PATC>3RESO/FIX [15:57:08] (03PS6) 10Jdlrobson: Hygiene: Kill ifEquals helper, use ifCond instead [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156720 [15:57:22] (03PS8) 10Jdlrobson: Update classes of topic during close/reopen actions. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156739 (https://bugzilla.wikimedia.org/68328) [15:57:56] (03CR) 10jenkins-bot: [V: 04-1] Hygiene: Kill ifEquals helper, use ifCond instead [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156720 (owner: 10Jdlrobson) [15:58:04] (03CR) 10jenkins-bot: [V: 04-1] Update classes of topic during close/reopen actions. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156739 (https://bugzilla.wikimedia.org/68328) (owner: 10Jdlrobson) [16:01:42] 3Wikimedia / 3General/Unknown: Implement a sane code-review process for MediaWiki JS/CSS pages on Wikimedia sites - 10https://bugzilla.wikimedia.org/69445#c32 (10Quim Gil) I think the effort of bringing all developers under the same roof is worth, and mediawiki.org is the right roof. But going back to the... [16:06:53] (03PS1) 10EBernhardson: Bundle new-topic notifications [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158403 [16:08:46] (03CR) 10Matthias Mullie: "This introduced some problem" (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156203 (owner: 10EBernhardson) [16:15:11] (03CR) 10EBernhardson: G3: Mobile/nojs edit and reply full topic output (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156203 (owner: 10EBernhardson) [16:17:19] (03CR) 10Matthias Mullie: G3: Mobile/nojs edit and reply full topic output (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156203 (owner: 10EBernhardson) [16:34:29] (03CR) 10Chad: "recheck" [search/repository-swift] - 10https://gerrit.wikimedia.org/r/158279 (owner: 10Chad) [16:39:52] (03CR) 10Reedy: [C: 04-1] "Ah. It seems there aren't any branches (in our repo at least)..." [tools/release] - 10https://gerrit.wikimedia.org/r/158259 (owner: 10Andrew Bogott) [16:40:32] JeroenDeDauw: Where's the Canonical repo for SemanticForms? There doesn't seem to be one under https://github.com/SemanticMediaWiki [16:41:15] (03CR) 10Helder.wiki: "This needs a follow-up change to WMF config: because many wikis have "'move' => false" for the "user" group. E.g.:" [core] - 10https://gerrit.wikimedia.org/r/111096 (https://bugzilla.wikimedia.org/28569) (owner: 10Jackmcbarn) [16:49:58] (03CR) 10Helder.wiki: "Reported as bug 70403." [core] - 10https://gerrit.wikimedia.org/r/111096 (https://bugzilla.wikimedia.org/28569) (owner: 10Jackmcbarn) [16:49:59] 3Wikimedia / 3Site requests: If the "move" permission is removed from a group o WMF wikis, remove "move-categorypages" too - 10https://bugzilla.wikimedia.org/70403 (10Helder) 3NEW p:3Unprio s:3normal a:3None Now that it is possible to move category pages[1], the "move-categorypages" permission needs... [16:51:11] 3MediaWiki / 3Categories: Moving category description pages - 10https://bugzilla.wikimedia.org/5451 (10Helder) [16:51:13] 3Wikimedia / 3Site requests: If the "move" permission is removed from a group o WMF wikis, remove "move-categorypages" too - 10https://bugzilla.wikimedia.org/70403 (10Helder) [16:52:56] 3MediaWiki extensions / 3Extensions requests: Request for feature: automatic figure and equation (formula) numbering - 10https://bugzilla.wikimedia.org/5600#c26 (10Jitse Niesen) At least conceptually it should be possible to use Cite for formulas. The following wikitext in fact gives something close to what... [16:57:33] (03PS1) 10Krinkle: mediawiki.skinning: Remove obsolete #firstHeading selector [core] - 10https://gerrit.wikimedia.org/r/158410 [16:57:42] MatmaRex: ^ [16:57:44] 3MediaWiki / 3MediaWiki UI: Input fields should be relative to input strings - 10https://bugzilla.wikimedia.org/70404 (10Jared Zimmerman (WMF)) 3NEW p:3Unprio s:3normal a:3None Created attachment 16370 --> https://bugzilla.wikimedia.org/attachment.cgi?id=16370&action=edit fields are too long input... [16:57:52] MatmaRex: relates to enwiki Vector.css clean up [16:58:01] lowprio, but nice [16:58:58] (03PS1) 10EBernhardson: Repair progressively enhanced load more [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158411 [16:59:44] 3MediaWiki / 3MediaWiki UI: Appearance Time offset "other" input field is too long - 10https://bugzilla.wikimedia.org/70405 (10Jared Zimmerman (WMF)) 3NEW p:3Unprio s:3normal a:3None max input is 6 characters, control width should be ~70 pixels to fit content [16:59:56] (03PS9) 10MarkTraceur: Add controllers for each step - mostly stubs [extensions/UploadWizard] - 10https://gerrit.wikimedia.org/r/151699 [17:00:32] (03CR) 10EBernhardson: G3: Mobile/nojs edit and reply full topic output (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/156203 (owner: 10EBernhardson) [17:01:12] (03PS2) 10EBernhardson: Repair progressively enhanced load more [extensions/Flow] - 10https://gerrit.wikimedia.org/r/158411 [17:07:57] 3Wikimedia / 3Site requests: Run migrateAccount.php without --safe or --auto - 10https://bugzilla.wikimedia.org/69291#c7 (10Kunal Mehta (Legoktm)) Yup, but according to the log though they hadn't set / confirmed their email address on all wikis though: CentralAuth account migration for: Jborme ERROR: Auto m... [17:08:37] (03CR) 10Anomie: [C: 031] LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [17:09:09] (03CR) 10Aaron Schulz: [C: 032] LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie) [17:13:05] (03CR) 10Aaron Schulz: [C: 032] Remove wgRedactedFunctionArguments handling [extensions/OAuth] (REL1_22) - 10https://gerrit.wikimedia.org/r/158402 (https://bugzilla.wikimedia.org/70394) (owner: 10CSteipp) [17:13:12] (03Merged) 10jenkins-bot: Remove wgRedactedFunctionArguments handling [extensions/OAuth] (REL1_22) - 10https://gerrit.wikimedia.org/r/158402 (https://bugzilla.wikimedia.org/70394) (owner: 10CSteipp) [17:14:09] andre__: About? [17:14:20] Reedy, kind of [17:14:35] Quick ish question about the bz whiteboard and/or a heads up [17:15:23] what's up? [17:15:23] Wanting to keep better track of bugs reported to specific wmf mediawiki versions [17:15:41] the syntax used on the whiteboard seems a bit alien :) [17:15:45] (03Merged) 10jenkins-bot: LocalisationCache: Process one fallback at a time [core] - 10https://gerrit.wikimedia.org/r/158146 (https://bugzilla.wikimedia.org/68781) (owner: 10Anomie)