[00:00:49] (03CR) 10MaxSem: [C: 032] Change warning link about type=general from phab to mediawiki.org [extensions/Gadgets] (wmf/1.29.0-wmf.12) - 10https://gerrit.wikimedia.org/r/338004 (https://phabricator.wikimedia.org/T42284) (owner: 10Krinkle) [00:00:56] (03CR) 10Yaron Koren: "This seems like a good change! Although now it's failing jsHint. Maybe that var call just needs to be moved to outside the function?" [extensions/HeaderTabs] - 10https://gerrit.wikimedia.org/r/337981 (owner: 10jlemley) [00:01:04] Krinkle: there's no view.destroy() in that test? [00:01:09] (03PS14) 10Jdlrobson: Introduce the reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) [00:01:16] (03PS7) 10Jdlrobson: Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) [00:01:17] 06Discovery, 06Discovery-Analysis (Current work): analysis of results from A/B/C test for displaying sister projects in search results - https://phabricator.wikimedia.org/T156300#3031676 (10mpopov) a:03mpopov [00:01:33] Krinkle: ah nvm, i see [00:01:50] MatmaRex: ve.ce.Surface.test.js > test 'special key down: backspace/delete' > runSurfaceHandleSpecialKeyTest(assert) -> .assert... assert.... assert.. -> view.destroy() [00:01:58] (03CR) 10jerkins-bot: [V: 04-1] Introduce the reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [00:02:03] (03Merged) 10jenkins-bot: Revert "Revert "Revert "Update OOjs UI to v0.19.2""" [vendor] - 10https://gerrit.wikimedia.org/r/338024 (owner: 10Jforrester) [00:02:05] (03Merged) 10jenkins-bot: Change warning link about type=general from phab to mediawiki.org [extensions/Gadgets] (wmf/1.29.0-wmf.12) - 10https://gerrit.wikimedia.org/r/338004 (https://phabricator.wikimedia.org/T42284) (owner: 10Krinkle) [00:02:07] (03CR) 10jerkins-bot: [V: 04-1] Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [00:02:16] Krinkle: i don't think the view.destroy() is the problem though. i see it happening from an async setTimeout() from ve.ui.LinearContext.prototype.onContextChange [00:02:28] Yeah [00:02:41] the popup error starts its stack from VeUiDesktopContext.ve.ui.DesktopContext.afterContextChange [00:02:47] which I guess is from a setTimeout somewhere [00:02:52] it's trying to display a popup that is not attached to the DOM, and that blows up [00:03:08] so destroy() isn't destructive enough [00:03:14] 10MediaWiki-Authentication-and-authorization, 13Patch-For-Review: In Autopromote consider skipping edit count lookup if APCOND_EDITCOUNT is 0 - https://phabricator.wikimedia.org/T157718#3031681 (10TK-999) [00:03:15] it shouldn't be doing that, anyway, but that's like two more different bugs [00:03:27] something remains, detects a change and fires event handlers that do stuff that's broken [00:03:37] Krinkle: we don't even call the right destroy(). that only destroys the ce.Surface. [00:03:46] Yeah [00:03:47] there's a dm.Surface and a ui.Surface, which are not destroyed. [00:03:52] we should call it on the target, right? [00:03:56] but even if they were destroyed, doing that won't clear this timeout [00:04:05] But the probelm is, we created two targets in the ve-mw version of that test utility [00:04:06] this test is just a pile of hack upon hacks upon hacks [00:04:09] only one is tracked [00:04:27] 10ConfirmEdit (CAPTCHA extension), 07Spanish-Sites: Adding an image triggers 'addurl' captcha - https://phabricator.wikimedia.org/T75067#762902 (10Platonides) I wonder if the links table may have been outdated, and thus an earlier link addition was attributed to you :/ [00:04:46] (03PS1) 10Jforrester: [Re-apply] Update OOjs UI to v0.19.2 [vendor] - 10https://gerrit.wikimedia.org/r/338025 (https://phabricator.wikimedia.org/T158141) [00:04:59] Krinkle: ok. let's rewind [00:05:00] (03PS1) 10BryanDavis: Fix Service[eventlogging-devserver] [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338026 [00:05:21] Krinkle: the broken tracking and the broken not-calling-destroy is obviously a bug or five, but i don't think that's the cause of this problem [00:05:46] (03CR) 10jerkins-bot: [V: 04-1] Fix Service[eventlogging-devserver] [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338026 (owner: 10BryanDavis) [00:05:47] the cause is that we have a ui.Surface that is somehow not attached to the DOM when it should be, and that breaks things [00:06:18] Krinkle: in VE core, the problem was that it was being cleared from #qunit-fixture while things were still ongoing. i fixed that with the setTimeout( assert.async() ). [00:06:42] Krinkle: i think right now, the problem is that it does not get attached at all. i'm still trying to figure out how to verify this. [00:07:48] 10MediaWiki-General-or-Unknown, 06Collaboration-Team-Triage, 10Notifications, 10Outreach-Programs-Projects, and 5 others: Remind me of this article in X days - https://phabricator.wikimedia.org/T2582#3031689 (10srishakatux) [00:08:55] (03PS2) 10BryanDavis: Fix Service[eventlogging-devserver] [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338026 [00:08:57] (03PS1) 10BryanDavis: Fix rubocop lint problem [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338027 [00:09:38] i guess the MW override of ve.test.utils.createSurfaceFromDocument does not attach it? but it's kind of difficult to determine why things don't happen, you can't set a breakpoint on that. i'm trying to find out what is the business with multiple targets in there [00:09:49] (03CR) 10Paladox: [C: 031] [Re-apply] Update OOjs UI to v0.19.2 [vendor] - 10https://gerrit.wikimedia.org/r/338025 (https://phabricator.wikimedia.org/T158141) (owner: 10Jforrester) [00:10:04] (03CR) 10Jforrester: [C: 032] Fix rubocop lint problem [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338027 (owner: 10BryanDavis) [00:10:18] (03Merged) 10jenkins-bot: Fix rubocop lint problem [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338027 (owner: 10BryanDavis) [00:10:32] thanks James_F [00:13:43] (03PS2) 10Nschaaf: Add option to rank translation recs by sitelinks [research/recommendation-api] - 10https://gerrit.wikimedia.org/r/337626 (https://phabricator.wikimedia.org/T157371) [00:14:23] Krinkle: yes. that fixes it. ugh [00:14:43] 10MediaWiki-Database, 06Performance-Team, 05MW-1.29-release-notes, 13Patch-For-Review, and 3 others: Fatal error: Call to undefined method __PHP_Incomplete_Class::asOfTime() in /srv/mediawiki/php-1.29.0-wmf.11/includes/libs/rdbms/ChronologyProtector.php on ... - https://phabricator.wikimedia.org/T158217#3031695 [00:14:44] (03PS8) 10Jdlrobson: Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) [00:14:46] (03CR) 10Nschaaf: [C: 032] Add option to rank translation recs by sitelinks [research/recommendation-api] - 10https://gerrit.wikimedia.org/r/337626 (https://phabricator.wikimedia.org/T157371) (owner: 10Nschaaf) [00:14:50] MatmaRex: Hm.. ve.init.target is null where view.destroy is called. I was attempting to s/view/ve.init.target/.destroy() but didn't work [00:14:57] perhaps another way of getting the target (or both..) [00:15:03] MatmaRex: I'll leave it to you further? [00:16:06] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3031698 (10Niedzielski) [00:16:19] (03Merged) 10jenkins-bot: Add option to rank translation recs by sitelinks [research/recommendation-api] - 10https://gerrit.wikimedia.org/r/337626 (https://phabricator.wikimedia.org/T157371) (owner: 10Nschaaf) [00:16:21] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3031711 (10Niedzielski) [00:17:40] Krinkle: this works for me locally: https://gerrit.wikimedia.org/r/338028 [00:17:43] James_F: ^ [00:17:53] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3031698 (10Niedzielski) @mholloway, @dbrant, this one slipped through :[ I recommend the fix for this issue for our mini release and that 189 be promoted in spite of this issue [00:19:07] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3031716 (10schana) This has been completed and can be used by adding a `rank_method=sitelinks` parameter to either the api or tool endpoints. [00:19:22] (03PS37) 10Huji: Log accessing private information in abuse filter logs [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/326465 (https://phabricator.wikimedia.org/T152934) [00:19:31] MatmaRex: Thanks. [00:19:35] (03CR) 10Huji: Log accessing private information in abuse filter logs (038 comments) [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/326465 (https://phabricator.wikimedia.org/T152934) (owner: 10Huji) [00:20:32] (03PS38) 10Huji: Log accessing private information in abuse filter logs [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/326465 (https://phabricator.wikimedia.org/T152934) [00:21:54] (03CR) 10Jforrester: [C: 032] "This makes the fatal error not happen on provision and doesn't seem to be broken. I have faith that Bryan knows what he's doing, and anywa" [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338026 (owner: 10BryanDavis) [00:22:26] James_F: such praise! [00:22:44] MatmaRex: Hm.. so why do we target.addSurface twice? [00:22:49] bd808: I have a lot of trust in engineers' enlightened self-interest. [00:22:51] that's the same surface, right? [00:23:14] Krinkle: i have NO IDEA. [00:23:38] i would guess that target fuckery puts it somewhere else somehow [00:23:40] (03Merged) 10jenkins-bot: Fix Service[eventlogging-devserver] [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/338026 (owner: 10BryanDavis) [00:24:24] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3031736 (10schana) A few examples to compare: https://recommend.wmflabs.org/?s=en&t=de&seed=Apple&search=morelike https://recommend.wmflabs.org/?s=en&t=de&seed=Apple&search=related_a... [00:25:44] Krinkle: it git-blames to d6067d57184aa23b35f632f45015231d5d4d0b29, which added both of the calls. shrug. [00:26:52] Ah,right, that was already there. [00:26:52] Meh. [00:26:56] 10Recommendation-API: Document recommendation API and the overall architecture - https://phabricator.wikimedia.org/T146058#2649173 (10schana) a:03schana [00:27:11] 10Recommendation-API: Document recommendation API and the overall architecture - https://phabricator.wikimedia.org/T146058#2649173 (10schana) 05Open>03Resolved [00:27:11] yeah, i just split it from the return statement [00:28:06] MatmaRex: the dummyTarget doesn't set it the second time. It has a conditional based on there being one already [00:28:15] the only thing it does the second time is call initialize() a second time] [00:28:16] Weird [00:28:35] 10Recommendation-API, 07Epic: Create user interface for related articles recommendations - https://phabricator.wikimedia.org/T153443#3031740 (10schana) Work is ongoing here: https://github.com/schana/recommendation-tool [00:28:55] 10MediaWiki-Vagrant: Vagrant stops accepting SSH key after provisioning - https://phabricator.wikimedia.org/T158258#3031742 (10Tgr) In the end I just commented out `/usr/lib/ruby/vendor_ruby/vagrant/util/ssh.rb` line 120 which sets `IdentitiesOnly` by default. Note that this might cause SSH to fail if you have m... [00:30:11] 10Recommendation-API: Identify a test environment - https://phabricator.wikimedia.org/T146059#3031744 (10schana) In the past I created some dockerfiles that can stand-up a debian environment and run the project's unit tests. They are available here: https://github.com/schana/recommendation-api-docker [00:31:04] MatmaRex: Hm.. I don't think Target and ce.Surface append to DOM under normal circumstances either. That's handled by ui.Surface [00:31:07] which seems absent from the test [00:31:09] not sure [00:31:12] anyway, Let's roll with this. [00:31:13] Verifying now [00:32:15] 10Recommendation-API: Resolve GapFinder security issues - https://phabricator.wikimedia.org/T156477#3031747 (10schana) These issues should be included resolved as the relevant parts of the codebase are touched in T153443 [00:33:14] (03CR) 10Jdlrobson: Introduce the reading depth schema (032 comments) [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [00:33:17] (03PS6) 10EBernhardson: Replace reindexing with _reindex API [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/334009 (https://phabricator.wikimedia.org/T155506) [00:33:32] (03CR) 10EBernhardson: Replace reindexing with _reindex API (034 comments) [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/334009 (https://phabricator.wikimedia.org/T155506) (owner: 10EBernhardson) [00:33:50] (i'm away for a bit) [00:34:31] (03PS5) 10VolkerE: Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) [00:35:35] MatmaRex: I'm getting other failures with that patch applied. ve.dm.SurfaceFragment (MW): isolateAndUnwrap (MWheading) (2, 2, 4)Rerun6 ms - afterEach failed on isolateAndUnwrap (MWheading): Unfinished animations: 5 [00:36:12] (03PS1) 10EBernhardson: Update norms mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 [00:36:27] OK. passing now [00:36:42] (03CR) 10VolkerE: "PS 5 cleans out confusing `border-spacing` property, introduces row `:hover` transitioned feedback as suggested by Gergő with included del" [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [00:37:44] 06Discovery, 06Discovery-Analysis (Current work): External traffic dashboard - update with notation for Safari internal referrers - https://phabricator.wikimedia.org/T154722#3031754 (10JKatzWMF) >>! In T154722#3027995, @chelsyx wrote: > The following [[ https://pivot.wikimedia.org/#pageviews-daily/line-chart/2... [00:39:43] (03CR) 10jerkins-bot: [V: 04-1] Replace reindexing with _reindex API [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/334009 (https://phabricator.wikimedia.org/T155506) (owner: 10EBernhardson) [00:39:45] (03PS2) 10EBernhardson: Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 [00:40:43] 06Discovery, 06Discovery-Analysis (Current work): External traffic dashboard - update with notation for Safari internal referrers - https://phabricator.wikimedia.org/T154722#3031756 (10JKatzWMF) >>! In T154722#3027968, @mpopov wrote: > I'm not actually seeing a problem. If you use Pivot ([[ https://pivot.wikim... [00:42:13] 06Discovery, 06Discovery-Analysis (Current work): External traffic dashboard - update with notation for Safari internal referrers - https://phabricator.wikimedia.org/T154722#3031757 (10JKatzWMF) >>! In T154722#3031754, @JKatzWMF wrote: >>>! In T154722#3027995, @chelsyx wrote: >> The following [[ https://pivot.... [00:42:27] 10Recommendation-API: Many queries not returning any recommendations - https://phabricator.wikimedia.org/T155650#3031758 (10schana) >>! In T155650#2954777, @schana wrote: > There should now be more helpful error messages when results don't show up. Specifically, the error message is: `{"message": "Seed item is... [00:43:22] 10Developer-Wishlist, 06Developer-Relations (Jan-Mar-2017): Organize the first Developer Wishlist survey - https://phabricator.wikimedia.org/T155387#3031759 (10srishakatux) Hey @Tgr, wondering if you might want to consider writing a post about the dev wishlist for Wikimedia blog? Talking about the idea, the de... [00:43:34] (03PS7) 10EBernhardson: Replace reindexing with _reindex API [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/334009 (https://phabricator.wikimedia.org/T155506) [00:44:58] (03PS1) 10EBernhardson: [DNM] Convert GeoData for elasticsearch 5 update [extensions/GeoData] - 10https://gerrit.wikimedia.org/r/338032 (https://phabricator.wikimedia.org/T158143) [00:48:50] (03CR) 10jerkins-bot: [V: 04-1] Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [00:50:18] (03PS3) 10EBernhardson: Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 [00:52:04] (03PS3) 10Huji: Adds "article_age" variable to AbuseFilter [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/201086 (https://phabricator.wikimedia.org/T30844) (owner: 10Dragons flight) [00:52:07] (03CR) 10Smalyshev: "recheck" [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [00:52:51] 06Discovery, 06Discovery-Search (Current work): Fixup deprecation warnings coming from browser tests in elasticsearch 5 - https://phabricator.wikimedia.org/T158266#3031793 (10EBernhardson) [00:52:51] (03PS6) 10VolkerE: Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) [00:53:06] James_F: Should be possible now to re-check the core patch to updaate oojs-ui with depends-on vendor patch to try it before +2'ing anything [00:54:05] 06Discovery, 06Discovery-Search (Current work): Fixup deprecation warnings coming from browser tests in elasticsearch 5 - https://phabricator.wikimedia.org/T158266#3031793 (10EBernhardson) [00:54:23] (03CR) 10Huji: [C: 031] Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [00:54:55] 10ProveIt-Gadget: Phase out the website proveit.wmflabs.org - https://phabricator.wikimedia.org/T148228#3031814 (10Mattflaschen-WMF) 05Open>03Resolved Deleted in conjunction with {T157701}. The website is fully in version control (including the Apache config) in the ProveIt repo, if we ever wanted to resurr... [00:55:58] (03CR) 10jerkins-bot: [V: 04-1] [DNM] Convert GeoData for elasticsearch 5 update [extensions/GeoData] - 10https://gerrit.wikimedia.org/r/338032 (https://phabricator.wikimedia.org/T158143) (owner: 10EBernhardson) [00:57:08] (03CR) 10EBernhardson: "recheck" [extensions/GeoData] - 10https://gerrit.wikimedia.org/r/338032 (https://phabricator.wikimedia.org/T158143) (owner: 10EBernhardson) [00:57:58] 10ProveIt-Gadget: Phase out the website proveit.wmflabs.org - https://phabricator.wikimedia.org/T148228#3031822 (10Sophivorus) @Mattflaschen-WMF Thanks! [00:58:36] (03CR) 10VolkerE: "PS 6 updates sligthly after conv with Gergő on removing delay for faster interaction feedback and also introduces margin on description be" [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [00:59:18] (03CR) 10Jforrester: "recheck" [core] - 10https://gerrit.wikimedia.org/r/337762 (owner: 10VolkerE) [00:59:44] (03PS3) 10Jforrester: Update OOjs UI to v0.19.2 [core] - 10https://gerrit.wikimedia.org/r/337762 (owner: 10VolkerE) [01:01:14] 06Reading-Web-Backlog, 07Mobile: Mobile version image caption is placed on top of image in iOS - https://phabricator.wikimedia.org/T155136#3031829 (10ABorbaWMF) 05Open>03Resolved a:03ABorbaWMF I think this can be closed at this point. I don't think @Nicholas.tsg was able to reproduce the bug nor was I. [01:04:43] (03CR) 10Gergő Tisza: [C: 031] "IMO this is good enough for now. We can always rethink how global scope is being simulated if that turns out to be too annoying." [core] - 10https://gerrit.wikimedia.org/r/334217 (https://phabricator.wikimedia.org/T117661) (owner: 10Hashar) [01:04:52] (03CR) 10Jdlrobson: "recheck" [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [01:04:57] (03CR) 10Jdlrobson: "recheck" [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [01:05:03] (03CR) 10jerkins-bot: [V: 04-1] Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [01:07:18] 10ContentTranslation: The pencil icon (the edit icon) appears in the center of a template - https://phabricator.wikimedia.org/T156331#3031844 (10Etonkovidova) The example where the pencil icon is almost completely overlapped: {F5648654} [01:12:54] (03CR) 10Gergő Tisza: [C: 032] Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [01:14:39] (03PS10) 10Aaron Schulz: Move Field classes to Rdbms namespace [core] - 10https://gerrit.wikimedia.org/r/336579 [01:17:00] MatmaRex: If you wanted https://gerrit.wikimedia.org/r/#/c/337762/ to merge you need to also +2 https://gerrit.wikimedia.org/r/#/c/338025/ :-) [01:18:04] (03CR) 10Bartosz Dziewoński: [C: 032] [Re-apply] Update OOjs UI to v0.19.2 [vendor] - 10https://gerrit.wikimedia.org/r/338025 (https://phabricator.wikimedia.org/T158141) (owner: 10Jforrester) [01:18:11] James_F: pff, you changed it under me. ;) [01:18:49] MatmaRex: That's me. :-) [01:24:13] (03PS1) 10Dzahn: add tooltip texts to describe columns [debs/wikistats] - 10https://gerrit.wikimedia.org/r/338040 (https://phabricator.wikimedia.org/T157181) [01:26:26] (03CR) 10Dzahn: [C: 032] add tooltip texts to describe columns [debs/wikistats] - 10https://gerrit.wikimedia.org/r/338040 (https://phabricator.wikimedia.org/T157181) (owner: 10Dzahn) [01:29:16] 06Developer-Relations (Jan-Mar-2017): Submit Wikimedia's application for Rails Girls Summer of Code (deadline: January 31st, 2017) - https://phabricator.wikimedia.org/T156098#3031890 (10srishakatux) [01:30:02] (03Merged) 10jenkins-bot: Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [01:30:08] (03Merged) 10jenkins-bot: [Re-apply] Update OOjs UI to v0.19.2 [vendor] - 10https://gerrit.wikimedia.org/r/338025 (https://phabricator.wikimedia.org/T158141) (owner: 10Jforrester) [01:30:34] 06Developer-Relations (Jan-Mar-2017): Submit Wikimedia's application for Rails Girls Summer of Code (deadline: January 31st, 2017) - https://phabricator.wikimedia.org/T156098#2964000 (10srishakatux) 05Open>03Resolved Closing this task, as going to create another task about coordinating this program along wit... [01:33:50] (03Merged) 10jenkins-bot: Update OOjs UI to v0.19.2 [core] - 10https://gerrit.wikimedia.org/r/337762 (owner: 10VolkerE) [01:34:01] Gosh. [01:34:05] It actually merged. [01:34:14] MatmaRex, Krinkle, Volker_E: Well done, and thanks all. [01:38:27] 10MediaWiki-Debug-Logger, 07Wikimedia-log-errors: PHP warnings should be logged via Monolog (with a stack trace), not HHVM - https://phabricator.wikimedia.org/T158270#3031908 (10Tgr) [01:38:54] 10ExtensionDistributor: ExtensionDistribution not working for master - https://phabricator.wikimedia.org/T158247#3031929 (10Aklapper) {T158045} might be related. [01:39:09] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 03Fundraising Sprint Costlier Alternative, 03Fundraising Sprint Deferential Equations, 13Patch-For-Review: Purge Varnish cache when a banner is saved - https://phabricator.wikimedia.org/T154954#3031931 (10AndyRussG) [01:39:46] 06Reading-Web-Backlog, 07Browser-Support-Internet-Explorer, 10Page-Previews (2016-17-Q3-Goal): Hovercards: Settings cog is invisible on IE 11 / Win 7 - https://phabricator.wikimedia.org/T142640#3031932 (10Aklapper) @ABorbaWMF: https://office.wikimedia.org/wiki/Browser_testing_and_design_tools#BrowserStack [01:45:37] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 07Browser-Tests, 15User-zeljkofilipin: CentralNotice: Intermittent unexplained browser test failures - https://phabricator.wikimedia.org/T145718#3031963 (10AndyRussG) Browser tests are [[ https://integration.wikimedia.org/ci/job/selenium-CentralN... [01:45:49] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 07Tracking: [Tracking] CentralNotice: Unexplained banner display failures - https://phabricator.wikimedia.org/T145719#3031966 (10AndyRussG) [01:45:53] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 07Browser-Tests, 15User-zeljkofilipin: CentralNotice: Intermittent unexplained browser test failures - https://phabricator.wikimedia.org/T145718#3031965 (10AndyRussG) 05Open>03Resolved [01:47:59] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 07Tracking: [Tracking] CentralNotice: Unexplained banner display failures - https://phabricator.wikimedia.org/T145719#3031971 (10AndyRussG) Closing because subtasks :P [01:48:08] 10Phabricator (Upstream), 07Upstream: "Visible To" interface is confusing: Spaces dropdown (e.g. saying "S1: Public") and second dropdown (e.g. saying "Custom Policy") - https://phabricator.wikimedia.org/T158226#3031972 (10Aklapper) >>! In T158226#3030632, @matmarex wrote: > If we're using Spaces for real thin... [01:48:13] 10MediaWiki-extensions-CentralNotice, 10Fundraising-Backlog, 07Tracking: [Tracking] CentralNotice: Unexplained banner display failures - https://phabricator.wikimedia.org/T145719#3031974 (10AndyRussG) 05Open>03Resolved [01:50:29] (03CR) 10jenkins-bot: Improve visual association of elements in OOjs UI HTMLForm matrix [core] - 10https://gerrit.wikimedia.org/r/327849 (https://phabricator.wikimedia.org/T152532) (owner: 10VolkerE) [01:51:14] (03CR) 10Jdlrobson: "recheck" [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [01:51:21] (03CR) 10jerkins-bot: [V: 04-1] Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [01:52:10] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92: Create reading depth schema - https://phabricator.wikimedia.org/T155639#3031983 (10Jdlrobson) Jenkins is giving false positives so please ignore the -1s - it should be mergeable. [01:56:06] 10MediaWiki-HTMLForm, 10UI-Standardization, 10OOjs-UI, 13Patch-For-Review: HTMLCheckMatrix checkboxes and labels are not clearly visually associated - https://phabricator.wikimedia.org/T152532#3031993 (10Jdforrester-WMF) 05Open>03Resolved Changing the design of Special:BotPasswords to use HTMLCheckboxM... [01:56:34] 10MediaWiki-Special-pages, 10UI-Standardization, 06Front-end-Standards-Group, 07Epic: Convert Special:Preferences to OOUI - https://phabricator.wikimedia.org/T117781#3031996 (10Jdforrester-WMF) With {T152532} done this might be more tenable now? [02:05:38] 04(no projects): Coordinate Wikimedia's participation in Outreachy/ RGSOC - https://phabricator.wikimedia.org/T158272#3031999 (10srishakatux) [02:05:52] 04(no projects): Coordinate Wikimedia's participation in Outreachy/ RGSOC - https://phabricator.wikimedia.org/T158272#3031999 (10srishakatux) p:05Triage>03High [02:07:25] (03CR) 10Jforrester: Use OOUI for Special:UserRights (031 comment) [core] - 10https://gerrit.wikimedia.org/r/225536 (https://phabricator.wikimedia.org/T117884) (owner: 10Florianschmidtwelzow) [02:08:48] (03CR) 10jenkins-bot: Update OOjs UI to v0.19.2 [core] - 10https://gerrit.wikimedia.org/r/337762 (owner: 10VolkerE) [02:14:08] 10MediaWiki-General-or-Unknown, 06Collaboration-Team-Triage, 10Notifications, 10Outreach-Programs-Projects, and 5 others: Remind me of this article in X days - https://phabricator.wikimedia.org/T2582#3032023 (10Mattflaschen-WMF) [02:18:15] (03CR) 10Jforrester: [C: 04-1] "Needs a pretty chunky rebase again, I'm afraid (I gave up)." [core] - 10https://gerrit.wikimedia.org/r/300563 (https://phabricator.wikimedia.org/T117791) (owner: 10Florianschmidtwelzow) [02:19:14] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032041 (10FredTC) [02:22:42] (03CR) 10Tim Starling: [C: 04-2] Some Serializer changes to support extending it [libs/RemexHtml] - 10https://gerrit.wikimedia.org/r/337774 (owner: 10Tim Starling) [02:26:00] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3032053 (10Niedzielski) [02:29:19] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032060 (10FredTC) a:05FredTC>03None [02:29:59] 10MediaWiki-extensions-LoginNotify, 10Notifications, 06Collaboration-Team-Triage (Collab-Team-Q3-Jan-Mar-2017), 03Community-Tech-Sprint, 13Patch-For-Review: Enable Echo on loginwiki - https://phabricator.wikimedia.org/T157105#3032062 (10jmatazzoni) [02:30:54] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032041 (10FredTC) I think I'm not the "Assigned to" person, but I'm new here. [02:33:20] 06Developer-Relations, 10Gadgets, 10Wikimedia-General-or-Unknown, 10Developer-Wishlist (2017), and 2 others: Implement a sane code-review process for MediaWiki JS/CSS pages on Wikimedia sites - https://phabricator.wikimedia.org/T71445#1017081 (10Samwilson) If this could be done as an extension that talks t... [02:37:41] 10MediaWiki-General-or-Unknown, 06Collaboration-Team-Triage, 10Notifications, 10Outreach-Programs-Projects, and 3 others: Remind me of this article in X days - https://phabricator.wikimedia.org/T2582#3032079 (10srishakatux) [02:39:01] (03PS12) 10Mooeypoo: [WIP] RCFilters UI: Highlight behavior [core] - 10https://gerrit.wikimedia.org/r/337048 (https://phabricator.wikimedia.org/T149467) (owner: 10Sbisson) [02:46:39] (03CR) 10jerkins-bot: [V: 04-1] [WIP] RCFilters UI: Highlight behavior [core] - 10https://gerrit.wikimedia.org/r/337048 (https://phabricator.wikimedia.org/T149467) (owner: 10Sbisson) [03:06:08] 10MediaWiki-extensions-OATHAuth: Consider changing OATH scratch tokens to use six digits - https://phabricator.wikimedia.org/T158153#3032098 (10Parent5446) >>! In T158153#3031406, @Tgr wrote: > An attacker can already launch a year-long attack on the normal (non-scratch) tokens. That they change periodically doe... [03:09:47] [13cssjanus] 15Krinkle created 06options (+1 new commit): 02https://github.com/cssjanus/cssjanus/commit/8ad9ff4a73dd [03:09:47] 13cssjanus/06options 148ad9ff4 15Timo Tijhof: api: Implement 'options' object parameter (boolean args still supported) [03:10:02] [13cssjanus] 15Krinkle opened pull request #46: api: Implement 'options' object parameter (boolean args still supported) (06master...06options) 02https://github.com/cssjanus/cssjanus/pull/46 [03:11:29] cssjanus/cssjanus#111 (options - 8ad9ff4 Timo Tijhof): The build passed. - https://travis-ci.org/cssjanus/cssjanus/builds/202112527 [03:13:53] (03CR) 10Krinkle: [C: 04-1] Output change tags in the machine-readable RCFeeds (031 comment) [core] - 10https://gerrit.wikimedia.org/r/195872 (https://phabricator.wikimedia.org/T24509) (owner: 10TTO) [03:18:28] (03CR) 10Krinkle: [C: 031] "OK from perf and conventions perspective. Haven't verified functionally. Someone else to verify/approve :)" (032 comments) [core] - 10https://gerrit.wikimedia.org/r/332737 (https://phabricator.wikimedia.org/T152952) (owner: 10Samwilson) [03:21:12] (03CR) 10Krinkle: "Code looks fine. Haven't verified whether this actually works and in a way that makes sense for users. (user preferences setting, and rend" [core] - 10https://gerrit.wikimedia.org/r/332137 (https://phabricator.wikimedia.org/T26214) (owner: 10Paladox) [03:22:42] 04(no projects): Coordinate Wikimedia's participation in Outreachy Round 14 and RGSOC 2017 - https://phabricator.wikimedia.org/T158272#3032101 (10srishakatux) [03:23:42] 04(no projects): Coordinate Wikimedia's participation in Outreachy Round 14 and RGSOC 2017 - https://phabricator.wikimedia.org/T158272#3031999 (10srishakatux) Reached out to WMF's social media team asking to promote our participation in Outreachy. [03:26:32] (03CR) 10Krinkle: Expose basic properties of change list lines as data attributes (031 comment) [core] - 10https://gerrit.wikimedia.org/r/336963 (owner: 10Gergő Tisza) [03:26:34] 10Outreachy (Round-14), 10Rails-Girls-Summer-of-Code (2017): Coordinate Wikimedia's participation in Outreachy Round 14 and RGSOC 2017 - https://phabricator.wikimedia.org/T158272#3032105 (10srishakatux) [03:29:29] 10Outreachy (Round-14): Coordinate Wikimedia's participation in Outreachy Round 14 - https://phabricator.wikimedia.org/T158272#3032108 (10srishakatux) [03:29:35] (03CR) 10Krinkle: "I'd like to consider enforcing (especially considering the extension hook) that only data attributes are added here and no other arbitrary" [core] - 10https://gerrit.wikimedia.org/r/336963 (owner: 10Gergő Tisza) [03:32:15] 06Developer-Relations (Jan-Mar-2017): Coordinate Wikimedia's participation in Rails Girls Summer of Code (deadline: January 31st, 2017) - https://phabricator.wikimedia.org/T156098#3032111 (10srishakatux) [03:32:29] 06Developer-Relations (Jan-Mar-2017): Coordinate Wikimedia's participation in Rails Girls Summer of Code 2017 - https://phabricator.wikimedia.org/T156098#2964000 (10srishakatux) [03:32:44] 06Developer-Relations (Jan-Mar-2017): Coordinate Wikimedia's participation in Rails Girls Summer of Code 2017 - https://phabricator.wikimedia.org/T156098#2964000 (10srishakatux) 05Resolved>03Open [03:33:03] 06Developer-Relations (Jan-Mar-2017), 10Rails-Girls-Summer-of-Code (2017): Coordinate Wikimedia's participation in Rails Girls Summer of Code 2017 - https://phabricator.wikimedia.org/T156098#2964000 (10srishakatux) [03:35:28] (03PS1) 10BryanDavis: Add role::quiz [vagrant] - 10https://gerrit.wikimedia.org/r/338042 (https://phabricator.wikimedia.org/T148969) [03:40:23] (03PS1) 10SamanthaNguyen: Stylize code to MediaWiki code conventions [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/338043 [03:43:00] (03Abandoned) 10SamanthaNguyen: Stylize code to MediaWiki code conventions [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/338043 (owner: 10SamanthaNguyen) [03:46:26] (03CR) 10SamanthaNguyen: "Something messed up, meant to link to Ic08bc6ac770332f094895e23dc2a10e4a4ded4b7" [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/338043 (owner: 10SamanthaNguyen) [03:48:03] (03PS1) 10Gerrit Patch Uploader: Add spacing before the mw-collapsible-toggle links [core] - 10https://gerrit.wikimedia.org/r/338045 (https://phabricator.wikimedia.org/T155347) [03:48:05] (03CR) 10Gerrit Patch Uploader: "This commit was uploaded using the Gerrit Patch Uploader [1]." [core] - 10https://gerrit.wikimedia.org/r/338045 (https://phabricator.wikimedia.org/T155347) (owner: 10Gerrit Patch Uploader) [03:51:25] 10MediaWiki-General-or-Unknown, 07CSS, 07JavaScript, 13Patch-For-Review: There should be a space between span.mw-collapsible-toggle and its preceding content - https://phabricator.wikimedia.org/T155347#3032125 (10Od1n) >>! In T155347#2942268, @Prtksxna wrote: > I don't see the issue when I test the provide... [03:54:33] (03CR) 10Krinkle: Move Field classes to Rdbms namespace (031 comment) [core] - 10https://gerrit.wikimedia.org/r/336579 (owner: 10Aaron Schulz) [03:55:07] (03CR) 10Krinkle: [C: 031] "Verified no further uses of these elsewhere in Wikimedia Git (besides comments in 2 extensions)" [core] - 10https://gerrit.wikimedia.org/r/336579 (owner: 10Aaron Schulz) [03:57:52] (03CR) 10SamanthaNguyen: "Hope you don't mind a couple comments? :P" (033 comments) [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/337892 (owner: 10Jack Phoenix) [04:27:12] 07Design, 10MediaWiki-extensions-UniversalLanguageSelector, 10UI-Standardization, 05Goal, and 2 others: UniversalLanguageSelector language filter jQuery UI dialog should converted to OOUI dialog - https://phabricator.wikimedia.org/T158275#3032131 (10SamanthaNguyen) [04:57:07] (03PS1) 10Karima Rafes: Fix problems about the Curl's constructor and the RDFUnit specialpage [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338049 [04:57:59] (03CR) 10Karima Rafes: [V: 032 C: 032] Fix problems about the Curl's constructor and the RDFUnit specialpage [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338049 (owner: 10Karima Rafes) [04:59:14] (03Merged) 10jenkins-bot: Fix problems about the Curl's constructor and the RDFUnit specialpage [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338049 (owner: 10Karima Rafes) [05:02:42] (03CR) 10Niharika29: [C: 032] Clean project titles before using [extensions/PageAssessments] - 10https://gerrit.wikimedia.org/r/337963 (https://phabricator.wikimedia.org/T158245) (owner: 10Kaldari) [05:03:56] (03Merged) 10jenkins-bot: Clean project titles before using [extensions/PageAssessments] - 10https://gerrit.wikimedia.org/r/337963 (https://phabricator.wikimedia.org/T158245) (owner: 10Kaldari) [05:05:51] 10ArchCom-RfC, 07ArchCom-Has-shepherd, 07RfC, 10Wikimedia-Developer-Summit (2017): RFC: Shadow namespaces - https://phabricator.wikimedia.org/T91162#3032165 (10Billinghurst) Same goes for modules, thinking those from Wikidata, especially something like Module:Wikidata (which most wikis would hopefully use... [05:07:15] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#3032166 (10Prtksxna) Screenshot of @Quiddity's changes: |Now|{F5651027,size=full}| |After|{F5651029,size=full}| We'd still have a b... [05:07:26] (03CR) 10Prtksxna: Convert EditPage buttons and summary input to OOUI (031 comment) [core] - 10https://gerrit.wikimedia.org/r/231600 (https://phabricator.wikimedia.org/T111088) (owner: 10Florianschmidtwelzow) [05:20:01] 10UI-Standardization, 10OOjs-UI, 03UI-Standardization-Kanban: ButtonWidget Indicators should be greyscale only - https://phabricator.wikimedia.org/T157834#3032167 (10Prtksxna) >>! In T157834#3024525, @Pginer-WMF wrote: >> As of v0.19.1 OOjs UI demos feature ButtonWidgets with flagged (progressive) indicators... [05:20:44] 10Outreachy (Round-14): Coordinate Wikimedia's participation in Outreachy Round 14 - https://phabricator.wikimedia.org/T158272#3032168 (10Miriya52) What is the Outreachy email list? [05:23:31] 10ContentTranslation, 03Language-2017 Sprint 2, 05Language-team January-March 2017, 13Patch-For-Review: stylelint: Fix no-unknown-animations - https://phabricator.wikimedia.org/T157416#3032170 (10KartikMistry) I've filed upstream bug at: https://github.com/stylelint/stylelint/issues/2363 [05:42:51] (03PS2) 10Tim Starling: [WIP] RemexHtml tidy driver with p-wrapping [core] - 10https://gerrit.wikimedia.org/r/337771 [05:43:05] (03PS1) 10Tim Starling: Add Serializer::getLastChild() [libs/RemexHtml] - 10https://gerrit.wikimedia.org/r/338051 [05:43:23] (03CR) 10Tim Starling: "PS2: fewer test failures" [core] - 10https://gerrit.wikimedia.org/r/337771 (owner: 10Tim Starling) [05:44:15] (03CR) 10Tim Starling: Some Serializer changes to support extending it [libs/RemexHtml] - 10https://gerrit.wikimedia.org/r/337774 (owner: 10Tim Starling) [05:48:13] (03CR) 10jerkins-bot: [V: 04-1] [WIP] RemexHtml tidy driver with p-wrapping [core] - 10https://gerrit.wikimedia.org/r/337771 (owner: 10Tim Starling) [06:01:54] (03PS1) 10Karima Rafes: Problem when the language is different between the user language and the content of Wiki. [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338053 [06:02:30] (03CR) 10Karima Rafes: [V: 032 C: 032] Problem when the language is different between the user language and the content of Wiki. [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338053 (owner: 10Karima Rafes) [06:04:12] (03Merged) 10jenkins-bot: Problem when the language is different between the user language and the content of Wiki. [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338053 (owner: 10Karima Rafes) [06:20:38] 10MediaWiki-extensions-CollaborationKit: Implement specialpage/editpage designs - https://phabricator.wikimedia.org/T157630#3032196 (10Harej) a:03Harej [06:20:45] 10MediaWiki-extensions-CollaborationKit: CK image selector: add some way to reset image to default - https://phabricator.wikimedia.org/T157628#3032197 (10Harej) a:03Harej [06:33:01] 10MediaWiki-extensions-OATHAuth: Consider changing OATH scratch tokens to use six digits - https://phabricator.wikimedia.org/T158153#3032207 (10Tgr) >>! In T158153#3032098, @Parent5446 wrote: > To be clear, there are two different attack scenarios to consider here, and I'll explain them successively: > 1. An onl... [06:38:48] (03PS1) 10Niedzielski: Hygiene: make common base Activity ancestor & DRY up ActivityUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338056 [06:38:50] (03PS1) 10Niedzielski: Hygiene: consolidate more into BaseActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338057 [06:38:52] (03PS1) 10Niedzielski: Hygiene: remove superfluous @TargetApi annotations [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338058 [06:38:54] (03PS1) 10Niedzielski: Hygiene: move language switching code to ResourceUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338059 [06:38:56] (03PS1) 10Niedzielski: Fix: SearchFragment NPE in async callback UI update [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338060 [06:38:58] (03PS1) 10Niedzielski: Hygiene: remove dead code in PageActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338061 [06:39:00] (03PS1) 10Niedzielski: Hygiene: remove redundant theme change subscriber in MainActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338062 [06:39:02] (03PS1) 10Niedzielski: Hygiene: rename event bus subscribers [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338063 [06:39:04] (03PS1) 10Niedzielski: Update: use app language for UI [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338064 (https://phabricator.wikimedia.org/T142019) [06:40:00] 06Discovery, 06Discovery-Search (Current work): Bump maximum number of fields to 5000 for wikidata indexes - https://phabricator.wikimedia.org/T158278#3032212 (10Smalyshev) [06:43:54] 10MediaWiki-API: list=users&usprop=cancreate does not seem to be working - https://phabricator.wikimedia.org/T158255#3032225 (10Tgr) 05Open>03Invalid Duhh, I was testing with my staff account which has all kinds of override rights. Sorry for the noise. [06:44:29] (03PS2) 10Jack Phoenix: Coding style tweaks [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/337892 [06:48:00] (03CR) 10Jack Phoenix: "@SamanthaNguyen: CR is always more than welcome! That jerk of a bot catches only so many errors. ;-)" [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/337892 (owner: 10Jack Phoenix) [06:48:14] (03CR) 10Niedzielski: "Removing system language remenants will come in a later patch but this guy is ready for review" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338064 (https://phabricator.wikimedia.org/T142019) (owner: 10Niedzielski) [06:51:36] (03CR) 10Gergő Tisza: Add PageViewService to make the extension non-Wikimedia-specific (031 comment) [extensions/PageViewInfo] - 10https://gerrit.wikimedia.org/r/320324 (owner: 10Gergő Tisza) [06:58:33] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#1593963 (10Ladsgroup) What do you think of making "Cancel" button a framed button? [07:00:13] 10MediaWiki-HTMLForm, 10UI-Standardization, 10OOjs-UI, 05MW-1.29-release-notes, and 2 others: HTMLCheckMatrix checkboxes and labels are not clearly visually associated - https://phabricator.wikimedia.org/T152532#3032233 (10Prtksxna) >>! In T152532#3031474, @Volker_E wrote: > @Prtksxna From my perspective,... [07:08:58] 10MediaWiki-extensions-CollaborationKit: Make SpecialCreateHubFeature like SpecialCreateCollaborationHub and CollaborationHubContentEditor design - https://phabricator.wikimedia.org/T158279#3032236 (10Isarra) [07:09:20] 10MediaWiki-extensions-CollaborationKit: Make SpecialCreateHubFeature like SpecialCreateCollaborationHub and CollaborationHubContentEditor design - https://phabricator.wikimedia.org/T158279#3032251 (10Isarra) ...I should probably make a mockup. [07:19:00] 10MediaWiki-extensions-CollaborationKit: Make SpecialCreateHubFeature like SpecialCreateCollaborationHub and CollaborationHubContentEditor design - https://phabricator.wikimedia.org/T158279#3032257 (10Isarra) The layout on SpecialCreateHubFeature is really messed up for some reason. [07:20:13] 10MediaWiki-extensions-CollaborationKit: Cleanu up SpecialCreateHubFeature - https://phabricator.wikimedia.org/T158279#3032258 (10Isarra) [07:20:28] 10MediaWiki-extensions-CollaborationKit: Cleanu up SpecialCreateHubFeature - https://phabricator.wikimedia.org/T158279#3032236 (10Harej) Ugh, I know why. I'll fix it in a minute. [07:22:30] 10WikiCon-Francophone-2017: Conseils aux voyageurs se rendant à la wikiconcention 2017 - https://phabricator.wikimedia.org/T158280#3032262 (10Pyb) [07:27:38] 10MediaWiki-extensions-InterwikiSorting, 10Beta-Cluster-Infrastructure, 06Operations, 10Wikidata, and 4 others: Deploy InterwikiSorting extension to beta - https://phabricator.wikimedia.org/T155995#2960964 (10Nikerabbit) This broke the compact language links based on comment T153900#3011037. I'm submitting... [07:29:03] 10MediaWiki-Watchlist: Watchlist feed should show diffs between versions - https://phabricator.wikimedia.org/T78631#849885 (10Koavf) Is there any traction on this? I would definitely prefer to use syndication to follow changes on my watchlists but at present, the updates are almost useless. [07:30:02] 10WikiCon-Francophone-2017: Recontacter partenaires financiers de la WikiConvention 2016 - https://phabricator.wikimedia.org/T156945#3032284 (10Pyb) [07:30:04] 10WikiCon-Francophone-2017: Recontacter partenaires financiers de la WikiConvention 2016 - https://phabricator.wikimedia.org/T156946#3032283 (10Pyb) [07:30:06] 10WikiCon-Francophone-2017: RDV avec OIF - https://phabricator.wikimedia.org/T156947#3032281 (10Pyb) 05Open>03Resolved [07:30:31] 10MediaWiki-extensions-CollaborationKit: Clean up SpecialCreateHubFeature - https://phabricator.wikimedia.org/T158279#3032285 (10Isarra) [07:31:21] 10MediaWiki-extensions-CollaborationKit: Clean up SpecialCreateHubFeature - https://phabricator.wikimedia.org/T158279#3032236 (10Isarra) Extra whitespace at the bottom of the mockup is because I cheated and got lazy. [07:32:02] 10WikiCon-Francophone-2017: Calculer le coût pour les boursiers OIF de se rendre à la WikiConvention 2017 - https://phabricator.wikimedia.org/T158281#3032288 (10Pyb) [07:33:40] 10MediaWiki-extensions-CollaborationKit: Make edit toolbar appearance in collaborationhub and list content editors respect user/site settings - https://phabricator.wikimedia.org/T158282#3032305 (10Isarra) [07:34:44] 10MediaWiki-extensions-CollaborationKit: Clean up SpecialCreateHubFeature - https://phabricator.wikimedia.org/T158279#3032319 (10Isarra) [07:38:36] 10MediaWiki-extensions-OATHAuth: Consider changing OATH scratch tokens to use six digits - https://phabricator.wikimedia.org/T158153#3032322 (10Parent5446) >>! In T158153#3032207, @Tgr wrote: > In scenario 2, the probabilities are exclusive and you can just add them together so the attacker's chance of success i... [07:49:17] 10MediaWiki-extensions-UniversalLanguageSelector, 10ULS-CompactLinks, 03Language-2017 Sprint 2, 05Language-team January-March 2017: Make compact links site picks configuration more reliable. - https://phabricator.wikimedia.org/T158283#3032330 (10Nikerabbit) [07:50:01] 10MediaWiki-extensions-CollaborationKit: HiDPI support for for collaborationkitimage output - https://phabricator.wikimedia.org/T158146#3032344 (10Isarra) In the ToC. [07:58:30] 10MediaWiki-extensions-CollaborationKit: CollaborationKitImage: make non-square images center correctly in displayed square for square applications (ToC, list images) - https://phabricator.wikimedia.org/T158284#3032347 (10Isarra) [07:59:39] (03CR) 10Raimond Spekking: [C: 032] Fix NS_CATEGORY/NS_CATEGORY_TALK for MessagesExt.php in core [core] - 10https://gerrit.wikimedia.org/r/336986 (https://phabricator.wikimedia.org/T157846) (owner: 10MarcoAurelio) [08:03:06] 10MediaWiki-extensions-ORES, 06Revision-Scoring-As-A-Service, 13Patch-For-Review, 15User-Ladsgroup, 05WMF-deploy-2017-02-14_(1.29.0-wmf.12): Reduce the number of revisions that can be requested in one batch - https://phabricator.wikimedia.org/T157983#3032360 (10Ladsgroup) I don't think that would be nece... [08:03:25] (03PS1) 10Isarra: Make edit form visually distinct from preview content regardless of user settings [extensions/CollaborationKit] - 10https://gerrit.wikimedia.org/r/338070 [08:05:19] (03PS1) 10Isarra: Use core .flex-wrap mixin [extensions/CollaborationKit] - 10https://gerrit.wikimedia.org/r/338071 [08:12:52] (03Merged) 10jenkins-bot: Fix NS_CATEGORY/NS_CATEGORY_TALK for MessagesExt.php in core [core] - 10https://gerrit.wikimedia.org/r/336986 (https://phabricator.wikimedia.org/T157846) (owner: 10MarcoAurelio) [08:13:10] 10MediaWiki-extensions-UniversalLanguageSelector, 10ULS-CompactLinks, 03Language-2017 Sprint 2, 05Language-team January-March 2017, 07Unplanned-Sprint-Work: Make compact links site picks configuration more reliable. - https://phabricator.wikimedia.org/T158283#3032364 (10Arrbee) [08:15:06] (03PS2) 10Mvolz: Add role::quiz [vagrant] - 10https://gerrit.wikimedia.org/r/338042 (owner: 10BryanDavis) [08:16:24] 10Timeless, 10Wikimedia-Extension-setup, 07Community-consensus-needed: Review and deploy Timeless skin - https://phabricator.wikimedia.org/T154371#3032368 (10Isarra) Thaaaanks. [08:17:08] 07Design, 06Design-Research, 10Timeless: Design review of the Timeless skin - https://phabricator.wikimedia.org/T158012#3032369 (10Isarra) From https://www.mediawiki.org/wiki/WMF_Project_Design_Review_Process, I'm not really sure this applies? Or what it entails, at least, as that page is technically archived. [08:20:48] (03CR) 10Nikerabbit: "recheck" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/337895 (https://phabricator.wikimedia.org/T154830) (owner: 10Sbisson) [08:23:05] 10Timeless, 10Wikimedia-Extension-setup, 07Community-consensus-needed: Review and deploy Timeless skin - https://phabricator.wikimedia.org/T154371#3032370 (10Isarra) Yeah, the social tools devel wiki is what we've been using on labs. [08:24:05] 10Timeless, 10Wikimedia-Extension-setup, 07Community-consensus-needed: Review and deploy Timeless skin - https://phabricator.wikimedia.org/T154371#3032371 (10Isarra) Should we make something specifically for this where it's the default skin or something? [08:25:14] (03CR) 10jenkins-bot: Fix NS_CATEGORY/NS_CATEGORY_TALK for MessagesExt.php in core [core] - 10https://gerrit.wikimedia.org/r/336986 (https://phabricator.wikimedia.org/T157846) (owner: 10MarcoAurelio) [08:27:25] (03CR) 10jerkins-bot: [V: 04-1] Import dump: support importing a board that exist in the farm [extensions/Flow] - 10https://gerrit.wikimedia.org/r/337895 (https://phabricator.wikimedia.org/T154830) (owner: 10Sbisson) [08:56:58] 10Possible-Tech-Projects: Single Image Batch Upload - https://phabricator.wikimedia.org/T138464#3032420 (10Basvb) @Miriya52, I would be interested to do that. However I'm not sure whether I'm suited to mentor this task (alone) as I'm not too familiar with the Wikimedia technical/tools infrastructure. Somewhere i... [09:08:24] 07HHVM, 05Prometheus-metrics-monitoring: Raise default logging level of prometheus-hhvm-exporter - https://phabricator.wikimedia.org/T158286#3032426 (10fgiunchedi) [09:08:34] (03PS4) 10Enst80: Bug T110292 - Update Auth_remoteuser to use AuthManager [extensions/Auth_remoteuser] - 10https://gerrit.wikimedia.org/r/327891 (owner: 10Jrchamp) [09:11:20] (03CR) 10Enst80: "Thanks for your input @Anomie" [extensions/Auth_remoteuser] - 10https://gerrit.wikimedia.org/r/327891 (owner: 10Jrchamp) [09:12:27] 10TimedMediaHandler-Transcode: Add option to requeueTranscodes.php to restrict processing to high or low priority queue - https://phabricator.wikimedia.org/T158287#3032439 (10brion) [09:22:39] (03CR) 10Nikerabbit: "if I do var_dump( $wgGroupPermissions ); and then exit with ^C I get a long list of errors such as: ERROR 2: Attempted to serialize unseri" [core] - 10https://gerrit.wikimedia.org/r/334217 (https://phabricator.wikimedia.org/T117661) (owner: 10Hashar) [09:36:26] 07Design, 10MediaWiki-extensions-UniversalLanguageSelector, 10UI-Standardization, 05Goal, and 2 others: UniversalLanguageSelector language filter jQuery UI dialog should converted to OOUI dialog - https://phabricator.wikimedia.org/T158275#3032131 (10Nikerabbit) The language selector dialog is mostly implem... [09:43:51] (03PS1) 10DCausse: Add support for elastic 5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338084 [09:43:58] (03PS1) 10Robert Vogel: Fixed usage of DB_READ [extensions/BlueSpiceFoundation] (REL1_27) - 10https://gerrit.wikimedia.org/r/338085 [09:46:37] (03PS1) 10DCausse: Elastic 5.2.0 support [search/highlighter] - 10https://gerrit.wikimedia.org/r/338086 [09:46:42] (03CR) 10Mglaser: [C: 032] Fixed usage of DB_READ [extensions/BlueSpiceFoundation] (REL1_27) - 10https://gerrit.wikimedia.org/r/338085 (owner: 10Robert Vogel) [09:48:42] (03Merged) 10jenkins-bot: Fixed usage of DB_READ [extensions/BlueSpiceFoundation] (REL1_27) - 10https://gerrit.wikimedia.org/r/338085 (owner: 10Robert Vogel) [09:56:07] 10ContentTranslation, 07Spanish-Sites: JS error (undefined) when translating AC/DC from Spanish - https://phabricator.wikimedia.org/T70291#3032513 (10MarcoAurelio) [09:57:25] 10Wikimedia-Site-requests, 07Spanish-Sites: Create 'rollbacker', 'autopatrolled' and 'patroller' user groups on eswikiquote, allow sysops to add/remove - https://phabricator.wikimedia.org/T64911#3032516 (10MarcoAurelio) [09:58:03] 10Wikimedia-Site-requests, 07Spanish-Sites: Enable Special:Import on eswikiquote - https://phabricator.wikimedia.org/T64912#3032519 (10MarcoAurelio) [10:02:25] (03PS1) 10Nasty: Added missing return. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338090 [10:05:19] (03CR) 10Pwirth: [C: 032] Added missing return. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338090 (owner: 10Nasty) [10:05:24] (03CR) 10Pwirth: [V: 032 C: 032] Added missing return. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338090 (owner: 10Nasty) [10:07:00] 10Recommendation-API: Resolve GapFinder security issues - https://phabricator.wikimedia.org/T156477#3032524 (10leila) @schana can you pass this by Security to make sure they approve that the issues are addressed? [10:08:33] 10Recommendation-API: Identify a test environment - https://phabricator.wikimedia.org/T146059#3032526 (10leila) @schana does this address this task completely? If so, we should Resolve it. [10:12:51] (03CR) 10Enst80: Bug T110292 - Update Auth_remoteuser to use AuthManager (031 comment) [extensions/Auth_remoteuser] - 10https://gerrit.wikimedia.org/r/327891 (owner: 10Jrchamp) [10:14:38] 10Recommendation-API, 07Epic: Create user interface for related articles recommendations - https://phabricator.wikimedia.org/T153443#3032542 (10leila) @schana what are the requirements for this tool? Do we need to work on it more? We should spend more development time on it if there is a plan for how it will b... [10:20:07] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032544 (10Aklapper) In general, "De kroeg" redirects to "Café" ("Doorverwezen vanaf De kroeg"). Going to the mobile version at https://nl.m.wikipedia.org/... [10:24:07] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3032545 (10leila) @schana the results look more useful with rank_method=sitelinks for a few other examples I tried from en to fa. @Pginer-WMF we're testing with showing relevant arti... [10:24:39] (03PS1) 10Jack Phoenix: Committing my work-in-progress code [extensions/TopLists] - 10https://gerrit.wikimedia.org/r/338091 [10:24:44] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 13Patch-For-Review, 07Story, 03Wikidata-Sprint: [Story] Create Hamcrest based replacement for PHPUnit's assertTag - https://phabricator.wikimedia.org/T69122#3032547 (10WMDE-leszek) So if only I did my grepping right it looks like there is no longer a... [10:25:52] (03CR) 10Jack Phoenix: [V: 032 C: 032] Committing my work-in-progress code [extensions/TopLists] - 10https://gerrit.wikimedia.org/r/338091 (owner: 10Jack Phoenix) [10:26:35] 10MediaWiki-extensions-OAuth, 10Wikimedia-General-or-Unknown: Mwoauthconsumerregistration-propose-text does not display correctly - https://phabricator.wikimedia.org/T158292#3032549 (10MarcoAurelio) [10:26:58] (03PS1) 10Nasty: fixed prefix of default options by pwirth. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338092 [10:34:08] 10Outreachy (Round-14): Coordinate Wikimedia's participation in Outreachy Round 14 - https://phabricator.wikimedia.org/T158272#3032564 (10Aklapper) (Links welcome; otherwise we obfuscate for no reason.) > Promote participation in Outreachy through our social media channels and @Outreachy's https://meta.wikimedi... [10:42:17] (03CR) 10Pwirth: [C: 032] fixed prefix of default options by pwirth. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338092 (owner: 10Nasty) [10:47:50] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032580 (10FredTC) I tried it at https://nl.m.wikipedia.org/wiki/Wikipedia:De_kroeg wit IE, FF and Chrome. It was all the same. [10:48:52] 10MediaWiki-extensions-WikibaseRepository, 10Wikidata, 15User-Ladsgroup, 03Wikidata-Sprint: Inject SetClaimValue dependencies - https://phabricator.wikimedia.org/T158293#3032581 (10Ladsgroup) [10:53:41] (03Merged) 10jenkins-bot: fixed prefix of default options by pwirth. [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338092 (owner: 10Nasty) [10:56:56] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3032619 (10Pginer-WMF) >>! In T157371#3032545, @leila wrote: > > @Pginer-WMF we're testing with showing relevant articles not w.r.t. their pageviews but the number of Wikipedias that... [10:57:32] 10Outreach-Programs-Projects: Translation outreach: User guides on MediaWiki.org - https://phabricator.wikimedia.org/T158296#3032632 (10Johan) [11:00:41] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3032647 (10leila) I agree with all points, @Pginer-WMF. [11:02:24] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032652 (10Aklapper) So this is about https://nl.m.wikipedia.org/wiki/Wikipedia:De_kroeg and not https://nl.m.wikipedia.org/wiki/De_kroeg Please always prov... [11:05:16] 04(no projects): Links at the top of the "De kroeg" page in the Dutch Wikipedia does not work in mobile version - https://phabricator.wikimedia.org/T158274#3032653 (10Aklapper) 05Open>03Invalid Please contact the maintainers of that page to add the `"nomobile"` class to these two HTML elements, so they will... [11:07:38] 10Outreach-Programs-Projects: Translation outreach: User guides on MediaWiki.org - https://phabricator.wikimedia.org/T158296#3032657 (10Johan) Some background is available in T121197 with subtasks for anyone who's interested. It gives some context but is not necessary reading. [11:08:17] 10MediaWiki-extensions-UniversalLanguageSelector, 10ULS-CompactLinks, 06Community-Liaisons (Jan-Mar 2017): Support introduction of compact language links on French Wikipedia - https://phabricator.wikimedia.org/T156622#3032659 (10Trizek-WMF) 05Open>03Resolved I consider that task as resolved. The problem... [11:25:27] 10MediaWiki-extensions-GuidedTour, 10Wikimedia-Extension-setup, 10Wikimedia-Site-requests, 13Patch-For-Review, 07User-notice: Enable GuidedTour on all wikis - https://phabricator.wikimedia.org/T152827#2861371 (10Johan) @Dereckson Roughly when do you expect this to be deployed? [11:28:07] 10UI-Standardization, 05MW-1.29-release-notes, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-14_(1.29.0-wmf.12): Align MediaWiki core UI elements with WikimediaUI color palette - https://phabricator.wikimedia.org/T152025#2835852 (10Johan) @Ladsgroup Did you add the user-notice tag mainly for th... [11:29:54] 10MediaWiki-Internationalization, 10Wikimedia-Site-requests, 05MW-1.29-release-notes, 13Patch-For-Review, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): NS_CATEGORY (TALK) misspelt for 'ext' - https://phabricator.wikimedia.org/T157846#3032674 (10MarcoAurelio) Core change merged. Shall we cherry-pick to wmf.11... [11:30:19] 10MediaWiki-Internationalization, 10Wikimedia-Site-requests, 13Patch-For-Review, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): NS_CATEGORY (TALK) misspelt for 'ext' - https://phabricator.wikimedia.org/T157846#3032675 (10MarcoAurelio) Not worth for RELEASE-NOTES IMHO. [11:47:37] 10ContentTranslation, 03Language-2017 Sprint 2, 05Language-team January-March 2017, 07Unplanned-Sprint-Work: Disable europeana2802016 campaign - https://phabricator.wikimedia.org/T158297#3032680 (10KartikMistry) [11:48:47] 10ContentTranslation, 03Language-2017 Sprint 2, 05Language-team January-March 2017, 13Patch-For-Review, 07Unplanned-Sprint-Work: Special:CXStats for Last week is wrong for guwiki - https://phabricator.wikimedia.org/T158186#3032698 (10KartikMistry) a:03Nikerabbit [11:48:57] 10UI-Standardization, 05MW-1.29-release-notes, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-14_(1.29.0-wmf.12): Align MediaWiki core UI elements with WikimediaUI color palette - https://phabricator.wikimedia.org/T152025#3032699 (10Ladsgroup) @Johan: Yes, for edit summaries. "Edit summaries wil... [11:51:21] 10UI-Standardization, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#3032700 (10Ladsgroup) [11:52:44] 10Wikispeech, 10Wikispeech-Lexicon, 06Wikispeech-STTS: Preferred label in lexicon database for entry and transcription - https://phabricator.wikimedia.org/T146275#3032701 (10NikolajLindberg) There is now a "preferred" integer field in the database ENTRY table. The value 0 means "not preferred" and "1" means... [12:00:23] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-92, 07Technical-Debt (RW-Tech-Debt): Merge mpga branch into master - https://phabricator.wikimedia.org/T156290#3032707 (10ovasileva) @Nicholas.tsg - for now @ABorbaWMF and I will be testing through these tasks - we will need you... [12:01:44] 10MediaWiki-extensions-ORES, 10Revision-Scoring-As-A-Service-Backlog: Request scores when someone checks out edits that are not stored in ores_classification - https://phabricator.wikimedia.org/T143612#3032711 (10Ladsgroup) The API part is done but not in GUI (Special:Contributions, etc.) I'm not sure if it's... [12:03:18] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-93: Image sticks out underneath the container - https://phabricator.wikimedia.org/T153840#3032713 (10ovasileva) [12:03:52] 10UI-Standardization, 10Gerrit: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3032714 (10Ladsgroup) [12:04:23] 04(no projects): Missing images - https://phabricator.wikimedia.org/T158178#3032728 (10Miketorrwiki) https://en.wikipedia.org/wiki/Main_Page Wikipedia, the free encyclopedia en.wikipedia.org Kedok Ketawa (The Laughing Mask) is a 1940 action film from the Dutch East Indi... [12:04:33] 04(no projects): Missing images - https://phabricator.wikimedia.org/T158178#3032729 (10Miketorrwiki) https://en.wikipedia.org/wiki/Main_Page Wikipedia, the free encyclopedia en.wikipedia.org Kedok Ketawa (The Laughing Mask) is a 1940 action film from the Dutch East Indi... [12:07:03] 04(no projects): Missing images - https://phabricator.wikimedia.org/T158178#3032730 (10Aklapper) @Miketorrwiki: Please answer //all// questions in https://phabricator.wikimedia.org/T158178#3029284 . Thanks. @Miketorrwiki: Again: When replying via email, please //do remove unneeded full quotes of the previous m... [12:07:28] hey. is there a way to do forced login in mediawiki? (from a special page outside of the usual authentication process) [12:07:40] 10UI-Standardization, 10Gerrit: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3032731 (10Ladsgroup) | Type | Before | After | Post button| {F5654410} |{F5654418} [12:11:38] 10Android-app-Bugs, 10Android-app-feature-Offline, 10Android-app-goals-2017-Jan-Mar-Q3, 06Wikipedia-Android-App-Backlog (Kanban): Link preview does not search for articles in cache - https://phabricator.wikimedia.org/T149991#3032732 (10Kaartic) >>! In T149991#3031434, @Niedzielski wrote: > @kaartic, this i... [12:11:44] 10MediaWiki-extensions-OpenStackManager, 06Labs, 10wikitech.wikimedia.org: HTTP 500 on Special:NovaSudoers - https://phabricator.wikimedia.org/T158299#3032736 (10Reedy) [12:11:52] 10Phabricator: Embedded ogv files doesn't play in Phabricator on mobile - https://phabricator.wikimedia.org/T158300#3032749 (10Jopparn) [12:13:17] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-93: Image sticks out underneath the container - https://phabricator.wikimedia.org/T153840#3032778 (10ovasileva) @Jdlrobson, @Nirzar - seems to work on Firefox, strangely enough: Cubarific (Firefox 51.0.1) {F5654422} Cubarific (Ch... [12:16:57] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal): Hovercards shouldn't run on editor (when action=edit) - https://phabricator.wikimedia.org/T144545#3032789 (10ovasileva) 05Open>03Resolved a:03ovasileva @Jdlrobson - resolving this as it is current behavior (previews do not appear when action=edit) [12:19:25] 10Phabricator, 07Mobile: Embedded ogv files doesn't play in Phabricator on mobile - https://phabricator.wikimedia.org/T158300#3032792 (10Aklapper) [12:25:04] 10MediaWiki-extensions-GettingStarted, 06Collaboration-Team-Triage: Improve GettingStarted data storage strategy - https://phabricator.wikimedia.org/T158239#3032796 (10elukey) Thanks a lot Aaron for opening this task. I am a bit ignorant about this extension and I don't get the "this extension does reads/write... [12:25:34] 10Page-Previews, 06Reading-Web-Backlog: Hovercards: occasional single flicker for cards that overlap with the link (edge-case) - https://phabricator.wikimedia.org/T68240#3032797 (10ovasileva) 05Open>03Resolved a:03ovasileva @ABorbaWMF - thank you! I think this is safe to resolve [12:32:26] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-93: Image sticks out underneath the container - https://phabricator.wikimedia.org/T153840#3032802 (10TheDJ) @ovasileva that seems to be a known difference between the two browsers indeed: http://stackoverflow.com/questions/1347721... [12:42:55] 10Recommendation-API: Identify a test environment - https://phabricator.wikimedia.org/T146059#3032806 (10schana) [12:43:07] (03PS3) 10TTO: Mark temporary memberships of local user groups on Special:CentralAuth [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/335983 (https://phabricator.wikimedia.org/T157016) [12:43:14] 10MediaWiki-Cache, 05MW-1.28-release-notes, 13Patch-For-Review: "Memcached::touch(): touch is only supported with binary protocol" - https://phabricator.wikimedia.org/T143464#2569096 (10Reedy) There's a load of these on wikitech ``` mwdeploy@silver:/var/log/apache2$ grep -c "touch is only supported with bin... [12:43:23] 10MediaWiki-Cache, 05MW-1.28-release-notes: "Memcached::touch(): touch is only supported with binary protocol" - https://phabricator.wikimedia.org/T143464#3032809 (10Reedy) [12:44:21] 10Recommendation-API: Identify a test environment - https://phabricator.wikimedia.org/T146059#2649197 (10schana) @leila, I've updated the task description to hopefully capture the intent of this task. The dockerfiles are just additional information that may be relevant down the road. Let me know if anything need... [12:48:27] (03CR) 10TTO: "Sorry for the wait; I finally fixed the tests." [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/335983 (https://phabricator.wikimedia.org/T157016) (owner: 10TTO) [12:53:43] (03PS3) 10Mholloway: Retrofit ReadingListPageInfoTask and update caller to query in batches [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337508 (https://phabricator.wikimedia.org/T152408) [12:56:01] (03CR) 10Matěj Suchánek: AbuseFilter: Add ability to detect deleted revisions (032 comments) [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/139103 (https://phabricator.wikimedia.org/T22892) (owner: 10Huji) [12:59:19] 10WMSE-Public-Art-Open-Data-2016: Facebook graphic for Wikimedia Sverige page on open data - https://phabricator.wikimedia.org/T157318#3032863 (10Eric_Luth_WMSE) 05Open>03Resolved [13:01:17] 10Connected-Open-Heritage-Wikidata-migration (no-no): Code to process Norway data - https://phabricator.wikimedia.org/T158304#3032870 (10Alicia_Fagerving_WMSE) [13:02:13] 10Recommendation-API, 07Epic: Create user interface for related articles recommendations - https://phabricator.wikimedia.org/T153443#3032888 (10schana) @leila It was my understanding that Research wanted a tool that could exercise the different Recommendation Types as described in the [[https://docs.google.com... [13:02:33] (03PS2) 10Mholloway: Maintain per-wiki IDs for the logged-in user [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335749 [13:03:31] (03CR) 10DCausse: [C: 031] [DNM] Convert GeoData for elasticsearch 5 update [extensions/GeoData] - 10https://gerrit.wikimedia.org/r/338032 (https://phabricator.wikimedia.org/T158143) (owner: 10EBernhardson) [13:05:23] (03CR) 10jerkins-bot: [V: 04-1] Maintain per-wiki IDs for the logged-in user [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335749 (owner: 10Mholloway) [13:07:28] (03CR) 10Matěj Suchánek: Log accessing private information in abuse filter logs (031 comment) [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/326465 (https://phabricator.wikimedia.org/T152934) (owner: 10Huji) [13:09:33] (03PS12) 10Huji: AbuseFilter: Add ability to detect deleted revisions [extensions/AbuseFilter] - 10https://gerrit.wikimedia.org/r/139103 (https://phabricator.wikimedia.org/T22892) [13:10:58] 10Recommendation-API: Resolve GapFinder security issues - https://phabricator.wikimedia.org/T156477#3032900 (10schana) >>! In T156477#3032524, @leila wrote: > @schana can you pass this by Security to make sure they approve that the issues are addressed? @leila They haven't been addressed yet - my comment was a... [13:13:28] 10Recommendation-API: Add option to rank by number of languages the article exists in - https://phabricator.wikimedia.org/T157371#3032905 (10schana) @leila Do you want to change the default `rank_method` to `sitelinks`? Right now its only exposure is by manually adding the parameter. [13:16:35] (03PS3) 10Mholloway: Maintain per-wiki IDs for the logged-in user [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335749 [13:36:42] (03CR) 10DCausse: [C: 032] "I've spend some time trying to understand why the mapping dump api did not output norms: false or index:false." [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [13:37:23] 06Wikipedia-Android-App-Backlog: Explore icon in the bottom bar and Wikipedia icon shown in home page are not displayed correctly - https://phabricator.wikimedia.org/T151300#3032926 (10Kaartic) >>! In T151300#3030424, @Kaartic wrote: > I would love the app even more, if that could be done :) Is it worth creati... [13:39:29] (03CR) 10jerkins-bot: [V: 04-1] Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [13:42:04] 10MediaWiki-extensions-Page_Forms, 10MediaWiki-extensions-Scribunto: Namespace collision Scribuntu and Page Forms extension for Italian language - https://phabricator.wikimedia.org/T158305#3032927 (10Michele.Fella) [13:43:16] (03PS1) 10jlemley: Add var wgHeaderTabsTabIndexes outside of jQuery function. [extensions/HeaderTabs] - 10https://gerrit.wikimedia.org/r/338097 [13:46:01] 10MediaWiki-extensions-OAuth, 06Labs, 10wikitech.wikimedia.org, 13Patch-For-Review: OAuth api access on wikitech fails with consumed nonce error - https://phabricator.wikimedia.org/T149150#2743542 (10scfc) @bd808: Is there anything left to do here? [13:48:07] (03PS4) 10Niedzielski: Hygiene: require source files to end with a newline [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336836 [13:51:18] 10Android-app-goals-2017-Jan-Mar-Q3, 05Release, 06Wikipedia-Android-App-Backlog (Kanban): Build, test, and publish 2.5.189-2017-02-08 beta - https://phabricator.wikimedia.org/T155917#3032942 (10Niedzielski) [13:51:32] 10Android-app-goals-2017-Jan-Mar-Q3, 05Release, 06Wikipedia-Android-App-Backlog (Kanban): Build, test, and publish 2.5.189-2017-02-15 beta - https://phabricator.wikimedia.org/T155917#2958851 (10Niedzielski) [13:52:38] (03PS1) 10DCausse: Merge remote-tracking branch 'origin/master' into es5 [vendor] (es5) - 10https://gerrit.wikimedia.org/r/338098 [13:55:33] 06Wikipedia-Android-App-Backlog, 07Spike, 07Technical-Debt: Research best practices for user password storage on Android and write up recommendations - https://phabricator.wikimedia.org/T157753#3032945 (10Mholloway) [14:00:55] (03CR) 10Hashar: [C: 031] "After the shell has run (when you exit it), it serialize variables from the current scope and return them. That is so the caller of run() " [core] - 10https://gerrit.wikimedia.org/r/334217 (https://phabricator.wikimedia.org/T117661) (owner: 10Hashar) [14:01:55] (03PS1) 10ItSpiderman: Fix for broken dialog on PermissionManager TemplateEditor [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/338104 [14:03:25] 10WMSE-Visibility-Making-2017: Style manual - https://phabricator.wikimedia.org/T158306#3032952 (10Eric_Luth_WMSE) [14:03:43] 10WMSE-Visibility-Making-2017: Style manual - https://phabricator.wikimedia.org/T158306#3032952 (10Eric_Luth_WMSE) p:05Triage>03Normal [14:06:31] 06Wikipedia-Android-App-Backlog: User should be made aware of "Content issues" in an article - https://phabricator.wikimedia.org/T158307#3032971 (10Kaartic) [14:08:01] 10MediaWiki-extensions-Page_Forms, 10MediaWiki-extensions-Scribunto, 07I18n: Namespace collision Scribuntu and Page Forms extension for Italian language - https://phabricator.wikimedia.org/T158305#3032983 (10Anomie) [14:08:03] 10Phabricator (Upstream), 07Upstream: "Visible To" interface is confusing: Spaces dropdown (e.g. saying "S1: Public") and second dropdown (e.g. saying "Custom Policy") - https://phabricator.wikimedia.org/T158226#3032984 (10matmarex) Thanks. But nope: {F5655216} [14:09:09] 10MediaWiki-extensions-Page_Forms, 10MediaWiki-extensions-Scribunto, 07I18n: Namespace collision Scribunto and Page Forms extension for Italian language - https://phabricator.wikimedia.org/T158305#3032927 (10Anomie) [14:09:49] 10Android-app-feature-Navigation, 06Wikipedia-Android-App-Backlog: Restyle footer to include page issues and disambiguation - https://phabricator.wikimedia.org/T116841#1759649 (10Kaartic) Regarding the location of displaying //Content issues// of an article, please take a look into T158307. [14:10:19] (03PS1) 10Nasty: fixed new entities not getting saved [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338105 [14:11:18] 10WMSE-Visibility-Making-2017: Style manual - https://phabricator.wikimedia.org/T158306#3032992 (10Eric_Luth_WMSE) a:05Eric_Luth_WMSE>03None [14:12:07] 06Wikipedia-Android-App-Backlog, 13Patch-For-Review, 07Technical-Debt: [dev] Upgrade Gradle to v>=3.0 - https://phabricator.wikimedia.org/T144252#3033012 (10Niedzielski) [14:12:10] 06Wikipedia-Android-App-Backlog: User should be made aware of "Content issues" in an article - https://phabricator.wikimedia.org/T158307#3032971 (10Dbrant) In the app, we make "Content issues" available by tapping the overflow menu and selecting "Content issues". (This was by design.) [14:12:44] 10MediaWiki-extensions-OpenStackManager, 06Labs, 10Labs-Infrastructure, 10wikitech.wikimedia.org: Wikitech API is many hours behind, at least - https://phabricator.wikimedia.org/T149969#3033017 (10scfc) 05Open>03Resolved IIRC since this task was filed, @Andrew fixed some OpenStack hooks, and @Krenair m... [14:13:12] 06Wikipedia-Android-App-Backlog: Further refine error handling - https://phabricator.wikimedia.org/T96796#3033020 (10Dbrant) [14:13:15] 06Wikipedia-Android-App-Backlog, 13Patch-For-Review: Display better error feedback when an IP/user/range is blocked from logging in, creating account, editing, etc. - https://phabricator.wikimedia.org/T102877#3033019 (10Dbrant) 05Open>03Resolved [14:13:19] (03CR) 10Pwirth: [C: 032] fixed new entities not getting saved [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338105 (owner: 10Nasty) [14:13:34] 06Wikipedia-Android-App-Backlog: Further refine error handling - https://phabricator.wikimedia.org/T96796#1226337 (10Dbrant) 05stalled>03Resolved a:03Dbrant [14:14:46] (03Merged) 10jenkins-bot: fixed new entities not getting saved [extensions/BlueSpiceFoundation] - 10https://gerrit.wikimedia.org/r/338105 (owner: 10Nasty) [14:15:46] (03CR) 10DCausse: [C: 032] Merge remote-tracking branch 'origin/master' into es5 [vendor] (es5) - 10https://gerrit.wikimedia.org/r/338098 (owner: 10DCausse) [14:18:40] 10MediaWiki-General-or-Unknown, 07Browser-Tests, 07JavaScript, 13Patch-For-Review, and 2 others: Port Selenium tests from Ruby to Node.js - https://phabricator.wikimedia.org/T139740#3033024 (10zeljkofilipin) [14:19:25] 10MediaWiki-General-or-Unknown, 07Browser-Tests, 07JavaScript, 13Patch-For-Review, and 2 others: Port Selenium tests from Ruby to Node.js - https://phabricator.wikimedia.org/T139740#2441243 (10zeljkofilipin) [14:19:54] 10MediaWiki-General-or-Unknown, 07Browser-Tests, 07JavaScript, 13Patch-For-Review, and 2 others: Port Selenium tests from Ruby to Node.js - https://phabricator.wikimedia.org/T139740#2441243 (10zeljkofilipin) [14:22:16] (03CR) 10Anomie: "Code seems to work, although I wonder whether you want to do the sorting thing you did in the other patch to avoid confusion as to whether" (031 comment) [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/335983 (https://phabricator.wikimedia.org/T157016) (owner: 10TTO) [14:22:43] 06Wikipedia-Android-App-Backlog: User should be made aware of "Content issues" in an article - https://phabricator.wikimedia.org/T158307#3033032 (10Kaartic) >>! In T158307#3033010, @Dbrant wrote: > In the app, we make "Content issues" available by tapping the overflow menu and selecting "Content issues". (This w... [14:22:47] 10Android-app-Bugs, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): When description edit tutorial is shown on a low memory device, the original description is lost - https://phabricator.wikimedia.org/T157824#3033030 (10Dbrant) [14:23:48] (03PS3) 10Sbisson: Import dump: support importing a board that exist in the farm [extensions/Flow] - 10https://gerrit.wikimedia.org/r/337895 (https://phabricator.wikimedia.org/T154830) [14:24:05] 06Wikipedia-Android-App-Backlog: User should be made aware of "Content issues" in an article - https://phabricator.wikimedia.org/T158307#3033033 (10Dbrant) That's why it's now in Open Questions. [14:26:14] 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): Use same language for same call to action to download Picture of the day - https://phabricator.wikimedia.org/T157365#3033037 (10Dbrant) [14:26:32] (03PS1) 10Mholloway: Update Featured Article card footer based on its presence in a list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) [14:26:34] (03PS1) 10Mholloway: Update TFA footer saved indicators based on user actions [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338107 (https://phabricator.wikimedia.org/T139377) [14:27:59] (03Merged) 10jenkins-bot: Merge remote-tracking branch 'origin/master' into es5 [vendor] (es5) - 10https://gerrit.wikimedia.org/r/338098 (owner: 10DCausse) [14:31:20] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Consolidate collapsible element JavaScript - https://phabricator.wikimedia.org/T158309#3033051 (10Niedzielski) [14:31:38] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Consolidate collapsible element JavaScript - https://phabricator.wikimedia.org/T158309#3033063 (10Niedzielski) [14:31:56] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Consolidate collapsible element JavaScript - https://phabricator.wikimedia.org/T158309#3033051 (10Niedzielski) a:03Niedzielski [14:33:17] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Consolidate collapsible element JavaScript - https://phabricator.wikimedia.org/T158309#3033051 (10Niedzielski) [14:34:08] (03PS1) 10DCausse: [maven-release-plugin] prepare release extra-5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338109 [14:34:10] (03PS1) 10DCausse: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338110 [14:34:12] (03PS1) 10DCausse: Elastic 5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338111 [14:34:14] (03PS1) 10DCausse: [maven-release-plugin] prepare release extra-5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338112 [14:34:16] (03PS1) 10DCausse: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338113 [14:35:35] 10Android-app-feature-Description-Editing, 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): Enable the first "edit" pencil to allow editing the description, as well as the first article section. - https://phabricator.wikimedia.org/T151468#3033067 (10Mholloway) a:05Dbrant>03Mholloway [14:35:43] 10Android-app-feature-Description-Editing, 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): Enable the first "edit" pencil to allow editing the description, as well as the first article section. - https://phabricator.wikimedia.org/T151468#2818261 (10Mholloway) Picking this up for UI polish updates. [14:35:44] (03CR) 10DCausse: Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [14:35:50] (03CR) 10DCausse: [C: 032] Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [14:37:27] 04(no projects): Serbian Wikipedia edits spike 2016 - https://phabricator.wikimedia.org/T158310#3033071 (10Milimetric) [14:38:35] 06Wikipedia-Android-App-Backlog: User should be made aware of "Content issues" in an article - https://phabricator.wikimedia.org/T158307#3033085 (10Kaartic) :+1: [14:40:07] 10MediaWiki-Vagrant: Cannot login or create account in mw-vagrant - https://phabricator.wikimedia.org/T158311#3033086 (10SBisson) [14:43:15] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: BUG - extraneous space appearing at the end of reading list screens - https://phabricator.wikimedia.org/T156012#3033100 (10Dbrant) [14:43:20] 06Wikipedia-Android-App-Backlog: My Lists should be scrollable only when there are more lists to fit in a single page - https://phabricator.wikimedia.org/T157873#3033102 (10Dbrant) [14:45:02] (03PS1) 10DCausse: [maven-release-plugin] prepare release experimental-5.2.0 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338114 [14:45:04] (03PS1) 10DCausse: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338115 [14:45:06] (03PS1) 10DCausse: Elastic 5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338116 [14:45:08] (03PS1) 10DCausse: [maven-release-plugin] prepare release experimental-5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338117 [14:45:10] (03PS1) 10DCausse: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338118 [14:47:26] (03CR) 10Dbrant: [C: 032] Bug: T141991 Feed News stories are partially obscured [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335501 (https://phabricator.wikimedia.org/T141991) (owner: 10Venkatvb) [14:47:54] (03CR) 10Anomie: [C: 032] Make handling of blocked users consistent [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/336602 (https://phabricator.wikimedia.org/T156803) (owner: 10Gergő Tisza) [14:48:29] (03Merged) 10jenkins-bot: Update norms and index mapping for es5 [extensions/CirrusSearch] (es5) - 10https://gerrit.wikimedia.org/r/338029 (owner: 10EBernhardson) [14:51:33] (03Merged) 10jenkins-bot: Bug: T141991 Feed News stories are partially obscured [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335501 (https://phabricator.wikimedia.org/T141991) (owner: 10Venkatvb) [14:51:35] (03Merged) 10jenkins-bot: Make handling of blocked users consistent [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/336602 (https://phabricator.wikimedia.org/T156803) (owner: 10Gergő Tisza) [14:54:49] (03CR) 10jenkins-bot: Bug: T141991 Feed News stories are partially obscured [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335501 (https://phabricator.wikimedia.org/T141991) (owner: 10Venkatvb) [14:59:04] (03CR) 10Gehel: "Minor comment. Otherwise, this looks like a very straightforward and mechanical update." (031 comment) [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [14:59:42] 10MediaWiki-Vagrant: Cannot login or create account in mw-vagrant - https://phabricator.wikimedia.org/T158311#3033113 (10SBisson) 05Open>03Resolved a:03SBisson `redis-server` refusing to start was actually causing this. I `sudo rm /srv/redis/redis-db.rdb` and then `sudo service redis-server start` and bo... [15:00:23] 10Wikimedia-Site-requests: Lift registration cap from an IP on en.wp for event on 8 March - https://phabricator.wikimedia.org/T158312#3033117 (10Richard_Nevell_WMUK) [15:00:54] 10MobileFrontend: Add right edge swipe support to show table of contents on mobile site - https://phabricator.wikimedia.org/T158313#3033129 (10The_RedBurn) [15:02:12] 10MobileFrontend: Add left edge swipe support to show the menu on mobile site - https://phabricator.wikimedia.org/T158314#3033143 (10The_RedBurn) [15:02:28] (03CR) 10DCausse: Add support for elastic 5.2.0 (031 comment) [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [15:05:27] (03CR) 10Mholloway: "Venkatvb, congratulations on landing your first patch in the app!" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335501 (https://phabricator.wikimedia.org/T141991) (owner: 10Venkatvb) [15:11:29] (03CR) 10Thiemo Mättig (WMDE): [C: 031] "Thanks for the changes!" [core] - 10https://gerrit.wikimedia.org/r/272419 (https://phabricator.wikimedia.org/T146341) (owner: 10Brian Wolff) [15:12:55] (03CR) 10Gehel: [C: 031] "LGTM" (031 comment) [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [15:15:10] (03CR) 10DCausse: [C: 032] Add support for elastic 5.2.0 (031 comment) [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [15:15:15] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare release extra-5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338109 (owner: 10DCausse) [15:15:18] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338110 (owner: 10DCausse) [15:15:22] (03CR) 10DCausse: [C: 032] Elastic 5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338111 (owner: 10DCausse) [15:15:26] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare release extra-5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338112 (owner: 10DCausse) [15:15:29] (03PS1) 10Aaron Schulz: Add update()/insert() comments to IDatabase [core] - 10https://gerrit.wikimedia.org/r/338122 [15:15:31] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338113 (owner: 10DCausse) [15:15:48] (03CR) 10DCausse: [C: 032] Elastic 5.2.0 support [search/highlighter] - 10https://gerrit.wikimedia.org/r/338086 (owner: 10DCausse) [15:15:51] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare release experimental-5.2.0 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338114 (owner: 10DCausse) [15:15:55] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338115 (owner: 10DCausse) [15:15:58] (03CR) 10DCausse: [C: 032] Elastic 5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338116 (owner: 10DCausse) [15:16:02] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare release experimental-5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338117 (owner: 10DCausse) [15:16:05] (03CR) 10DCausse: [C: 032] [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338118 (owner: 10DCausse) [15:19:25] (03Merged) 10jenkins-bot: Elastic 5.2.0 support [search/highlighter] - 10https://gerrit.wikimedia.org/r/338086 (owner: 10DCausse) [15:19:44] (03Merged) 10jenkins-bot: Add support for elastic 5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [15:19:53] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare release extra-5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338109 (owner: 10DCausse) [15:21:33] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338110 (owner: 10DCausse) [15:21:35] (03Merged) 10jenkins-bot: Elastic 5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338111 (owner: 10DCausse) [15:21:37] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare release extra-5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338112 (owner: 10DCausse) [15:21:40] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare release experimental-5.2.0 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338114 (owner: 10DCausse) [15:21:42] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338115 (owner: 10DCausse) [15:21:44] (03Merged) 10jenkins-bot: Elastic 5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338116 (owner: 10DCausse) [15:22:34] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare release experimental-5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338117 (owner: 10DCausse) [15:22:47] (03Draft2) 10Yaron Koren: Fix for 2b98643dc689 - restored compat with MW < 1.28 [extensions/ApprovedRevs] - 10https://gerrit.wikimedia.org/r/338120 [15:24:04] (03PS1) 10DCausse: Deprecate flt [search/extra] - 10https://gerrit.wikimedia.org/r/338124 [15:25:49] (03CR) 10jenkins-bot: [maven-release-plugin] prepare release extra-5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338109 (owner: 10DCausse) [15:25:52] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338118 (owner: 10DCausse) [15:26:03] (03Merged) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338113 (owner: 10DCausse) [15:26:08] (03CR) 10jenkins-bot: Elastic 5.2.0 support [search/highlighter] - 10https://gerrit.wikimedia.org/r/338086 (owner: 10DCausse) [15:26:16] (03CR) 10jenkins-bot: Add support for elastic 5.2.0 [search/extra] - 10https://gerrit.wikimedia.org/r/338084 (owner: 10DCausse) [15:26:37] (03CR) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338110 (owner: 10DCausse) [15:26:57] (03CR) 10jenkins-bot: Elastic 5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338111 (owner: 10DCausse) [15:27:42] (03CR) 10jenkins-bot: [maven-release-plugin] prepare release extra-5.2.1 [search/extra] - 10https://gerrit.wikimedia.org/r/338112 (owner: 10DCausse) [15:27:49] (03CR) 10jenkins-bot: [maven-release-plugin] prepare release experimental-5.2.0 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338114 (owner: 10DCausse) [15:29:29] (03CR) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338115 (owner: 10DCausse) [15:29:31] (03CR) 10jenkins-bot: [maven-release-plugin] prepare release experimental-5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338117 (owner: 10DCausse) [15:29:47] (03CR) 10jenkins-bot: Elastic 5.2.1 [search/highlighter] - 10https://gerrit.wikimedia.org/r/338116 (owner: 10DCausse) [15:30:07] (03CR) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/highlighter] - 10https://gerrit.wikimedia.org/r/338118 (owner: 10DCausse) [15:31:03] (03CR) 10Dbrant: [C: 04-1] "Couple minor notes" (032 comments) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336349 (https://phabricator.wikimedia.org/T156017) (owner: 10Mholloway) [15:31:43] (03CR) 10jenkins-bot: [maven-release-plugin] prepare for next development iteration [search/extra] - 10https://gerrit.wikimedia.org/r/338113 (owner: 10DCausse) [15:32:18] (03CR) 10Yaron Koren: [C: 032] "Great! I don't know if these two patches are supposed to be merged in at the same time, but I'm approving this one..." [extensions/HeaderTabs] - 10https://gerrit.wikimedia.org/r/338097 (owner: 10jlemley) [15:36:50] (03CR) 10Thiemo Mättig (WMDE): "This is an acceptable hack, I believe. But why not go ahead and remove this check entirely? Really. Why must the result of a ContentHandle" [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [15:37:21] (03CR) 10Gehel: [C: 031] "LGTM" [search/extra] - 10https://gerrit.wikimedia.org/r/338124 (owner: 10DCausse) [15:37:38] (03PS1) 10ItSpiderman: Fix for inserting categories with '&' in name [extensions/BlueSpiceExtensions] (REL1_23) - 10https://gerrit.wikimedia.org/r/338126 [15:38:41] (03CR) 10Bartosz Dziewoński: [C: 04-1] "This should be done in the stylesheet (/resources/src/jquery/jquery.makeCollapsible.css). That will also make it easier to correctly handl" [core] - 10https://gerrit.wikimedia.org/r/338045 (https://phabricator.wikimedia.org/T155347) (owner: 10Gerrit Patch Uploader) [15:39:06] This user is now online in #wikimedia-dev. I'll let you know when they show some activity (talk, etc.) [15:39:06] @notify ashley [15:39:29] (03PS2) 10Niedzielski: Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:39:39] (03CR) 10jerkins-bot: [V: 04-1] Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:41:34] (03PS3) 10Niedzielski: Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:42:03] (03CR) 10Niedzielski: [C: 032] Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:44:14] (03CR) 10Niedzielski: [C: 04-1] "This patch might need to use the newer version of the Mapbox lib to avoid multidex as mentioned in the parent patch" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336257 (https://phabricator.wikimedia.org/T146776) (owner: 10Dbrant) [15:45:56] 10Social-Tools, 10SocialProfile: Can't use social userpage as the main profile - https://phabricator.wikimedia.org/T158318#3033254 (10Innosflew) [15:46:09] (03Draft1) 10Niedzielski: Hygiene: don't assume gradlew is in PATH [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/334392 [15:48:06] 10MediaWiki-Patrolling, 10ORES, 06Revision-Scoring-As-A-Service: Selective patrol: an AI-based system to prioritize patrolling of edits - https://phabricator.wikimedia.org/T157715#3033272 (10Halfak) [15:48:09] (03Merged) 10jenkins-bot: Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:50:57] (03CR) 10Niedzielski: [C: 032] Localisation updates from https://translatewiki.net. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338081 (owner: 10L10n-bot) [15:51:36] (03CR) 10jenkins-bot: Use same string for downloading image from gallery as from feed card. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336673 (https://phabricator.wikimedia.org/T157365) (owner: 10Dbrant) [15:55:00] (03CR) 10Yaron Koren: [V: 032 C: 032] Add var wgHeaderTabsTabIndexes outside of jQuery function. [extensions/HeaderTabs] - 10https://gerrit.wikimedia.org/r/338097 (owner: 10jlemley) [15:56:21] (03CR) 10Dbrant: [C: 032] Hygiene: rename DefaultUserOptionDataClient service interface [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337709 (owner: 10Niedzielski) [15:58:00] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338081 (owner: 10L10n-bot) [15:58:30] (03CR) 10Yaron Koren: [C: 032] Fix for 2b98643dc689 - restored compat with MW < 1.28 [extensions/ApprovedRevs] - 10https://gerrit.wikimedia.org/r/338120 (owner: 10Yaron Koren) [15:59:04] (03CR) 10Dbrant: [C: 032] Hygiene: don't assume gradlew is in PATH [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/334392 (owner: 10Niedzielski) [16:00:04] (03Merged) 10jenkins-bot: Hygiene: rename DefaultUserOptionDataClient service interface [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337709 (owner: 10Niedzielski) [16:03:09] (03CR) 10jenkins-bot: Hygiene: rename DefaultUserOptionDataClient service interface [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337709 (owner: 10Niedzielski) [16:04:30] (03CR) 10Catrope: [C: 04-1] "Some minor comments inline. I haven't gone through this in too much detail but the approach looks great. Looking forward to seeing the nex" (036 comments) [core] - 10https://gerrit.wikimedia.org/r/337546 (https://phabricator.wikimedia.org/T152754) (owner: 10Mattflaschen) [16:04:32] (03CR) 10Thiemo Mättig (WMDE): [C: 031] "Technically, the code looks ok. But I find the way this is done (utilizing a static variable with such a generic name, outside of the cont" [extensions/MassMessage] - 10https://gerrit.wikimedia.org/r/337615 (owner: 10Florianschmidtwelzow) [16:04:57] (03Merged) 10jenkins-bot: Hygiene: don't assume gradlew is in PATH [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/334392 (owner: 10Niedzielski) [16:04:59] (03CR) 10Thiemo Mättig (WMDE): [C: 032] Make RecentChangesUpdateJob::updateActiveUsers more robust [core] - 10https://gerrit.wikimedia.org/r/335203 (https://phabricator.wikimedia.org/T156638) (owner: 10Hoo man) [16:08:08] (03CR) 10jenkins-bot: Hygiene: don't assume gradlew is in PATH [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/334392 (owner: 10Niedzielski) [16:08:52] (03CR) 10Niedzielski: [C: 032] "Looks good" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336862 (https://phabricator.wikimedia.org/T156001) (owner: 10Mholloway) [16:09:56] (03CR) 10Jrchamp: [C: 031] "I like how simple and clean this is. Thank you for taking this on!" (033 comments) [extensions/Auth_remoteuser] - 10https://gerrit.wikimedia.org/r/327891 (owner: 10Jrchamp) [16:10:01] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal): Hover card often gets stuck in "open" state - https://phabricator.wikimedia.org/T92932#3033344 (10kaldari) 05Resolved>03Open Ran into this bug again today on English Wikipedia with Firefox. Below is the HTML of the hovercard while it was stuck. Movi... [16:15:25] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal): Hover card often gets stuck in "open" state - https://phabricator.wikimedia.org/T92932#3033376 (10Jdlrobson) 05Open>03Resolved Correct, it's not live yet. This is the old code. The new code is riding the train and will be on English Wikipedia on 23r... [16:18:08] (03Merged) 10jenkins-bot: Make RecentChangesUpdateJob::updateActiveUsers more robust [core] - 10https://gerrit.wikimedia.org/r/335203 (https://phabricator.wikimedia.org/T156638) (owner: 10Hoo man) [16:18:20] (03CR) 10Dbrant: [C: 032] Hygiene: make common base Activity ancestor & DRY up ActivityUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338056 (owner: 10Niedzielski) [16:20:11] (03PS1) 10Halfak: Bumps submodule/ores to HEAD [services/ores/deploy] - 10https://gerrit.wikimedia.org/r/338132 [16:25:16] (03Abandoned) 10Zfilipin: WIP Selenium tests broken on Ruby 2.4 [core] - 10https://gerrit.wikimedia.org/r/336825 (https://phabricator.wikimedia.org/T157695) (owner: 10Zfilipin) [16:25:35] (03PS1) 10Reedy: Fix class name to match file [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338133 [16:27:26] (03PS2) 10Reedy: Fix class name to match file [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338133 [16:30:44] (03CR) 10jenkins-bot: Make RecentChangesUpdateJob::updateActiveUsers more robust [core] - 10https://gerrit.wikimedia.org/r/335203 (https://phabricator.wikimedia.org/T156638) (owner: 10Hoo man) [16:30:53] (03CR) 10Ladsgroup: [V: 032 C: 032] Bumps submodule/ores to HEAD [services/ores/deploy] - 10https://gerrit.wikimedia.org/r/338132 (owner: 10Halfak) [16:31:01] (03CR) 10Niedzielski: [C: 032] Update Featured Article card footer based on its presence in a list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) (owner: 10Mholloway) [16:33:25] (03Abandoned) 10Niedzielski: WIP: remove saved pages [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/333115 (owner: 10Niedzielski) [16:34:50] (03Merged) 10jenkins-bot: Remove back nav button when reading list detail action mode is enabled [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336862 (https://phabricator.wikimedia.org/T156001) (owner: 10Mholloway) [16:34:52] (03Merged) 10jenkins-bot: Hygiene: make common base Activity ancestor & DRY up ActivityUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338056 (owner: 10Niedzielski) [16:37:58] 10ConfirmEdit (CAPTCHA extension), 07Spanish-Sites: Adding an image triggers 'addurl' captcha - https://phabricator.wikimedia.org/T75067#3033480 (10Nemo_bis) >>! In T75067#3031682, @Platonides wrote: > I wonder if the links table may have been outdated, and thus an earlier link addition was attributed to you :... [16:38:10] (03CR) 10jenkins-bot: Remove back nav button when reading list detail action mode is enabled [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336862 (https://phabricator.wikimedia.org/T156001) (owner: 10Mholloway) [16:38:12] (03CR) 10jenkins-bot: Hygiene: make common base Activity ancestor & DRY up ActivityUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338056 (owner: 10Niedzielski) [16:38:59] 06Reading-Web-Backlog, 06Reading-analysis, 10Page-Previews (2016-17-Q3-Goal): Analyze results of stage 0 page previews test - https://phabricator.wikimedia.org/T158172#3033485 (10ovasileva) p:05Triage>03High [16:39:32] (03PS1) 10Mholloway: Revert "Hygiene: Replace usages of HashSet with ArraySet" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338135 [16:39:39] (03CR) 10jerkins-bot: [V: 04-1] Update Featured Article card footer based on its presence in a list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) (owner: 10Mholloway) [16:40:12] (03CR) 10Hashar: [C: 032] "Failure is me. A job ran on a Jenkins agent I was provisioning and I cancelled the job." [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) (owner: 10Mholloway) [16:40:59] 10ConfirmEdit (CAPTCHA extension): Add script to delete old captchas independent of regenerating captchas - https://phabricator.wikimedia.org/T158327#3033490 (10Reedy) [16:41:04] 10ConfirmEdit (CAPTCHA extension): Add script to delete old captchas independent of regenerating captchas - https://phabricator.wikimedia.org/T158327#3033506 (10Reedy) [16:41:28] (03PS1) 10Reedy: [WIP] Add a script to delete old fancy captchas [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) [16:44:11] 10MediaWiki-extensions-OpenStackManager, 06Labs, 10wikitech.wikimedia.org: Restrict creating service groups to white-listed projects - https://phabricator.wikimedia.org/T158328#3033516 (10scfc) [16:44:19] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Mobile: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033529 (10Jdlrobson) [16:44:53] (03CR) 10Mholloway: [C: 04-1] Revert "Hygiene: Replace usages of HashSet with ArraySet" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338135 (owner: 10Mholloway) [16:45:02] (03CR) 10Niedzielski: "Oh well. Would you mind limiting this revert to the functional difference or abandoning https://gerrit.wikimedia.org/r/#/c/336836/ ?" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338135 (owner: 10Mholloway) [16:45:11] (03CR) 10Jdlrobson: Use OOjs UI icons (031 comment) [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/333329 (https://phabricator.wikimedia.org/T155878) (owner: 10Ladsgroup) [16:45:55] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Mobile: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033544 (10Jdlrobson) p:05Triage>03Unbreak! [16:46:25] (03Merged) 10jenkins-bot: Update Featured Article card footer based on its presence in a list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) (owner: 10Mholloway) [16:46:44] (03CR) 10Dbrant: [C: 032] Hygiene: consolidate more into BaseActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338057 (owner: 10Niedzielski) [16:47:59] (03Abandoned) 10Zfilipin: WIP Revert "Logged in user tests do not work on beta cluster" [extensions/MobileFrontend] - 10https://gerrit.wikimedia.org/r/337040 (https://phabricator.wikimedia.org/T152432) (owner: 10Zfilipin) [16:48:51] (03Abandoned) 10Mholloway: Revert "Hygiene: Replace usages of HashSet with ArraySet" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338135 (owner: 10Mholloway) [16:49:37] (03CR) 10jenkins-bot: Update Featured Article card footer based on its presence in a list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338106 (https://phabricator.wikimedia.org/T139377) (owner: 10Mholloway) [16:51:19] (03Merged) 10jenkins-bot: Hygiene: consolidate more into BaseActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338057 (owner: 10Niedzielski) [16:52:59] 10MediaWiki-Interface, 10MediaWiki-Parser, 10ArchCom-RfC, 06Parsing-Team, and 7 others:
tags for MediaWiki sections - https://phabricator.wikimedia.org/T114072#3033570 (10Fjalapeno) [16:53:43] (03CR) 10Dbrant: [C: 032] Hygiene: remove superfluous @TargetApi annotations [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338058 (owner: 10Niedzielski) [16:54:30] (03CR) 10jenkins-bot: Hygiene: consolidate more into BaseActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338057 (owner: 10Niedzielski) [16:54:54] 10Android-app-Bugs, 10Android-app-feature-Offline, 10Android-app-goals-2017-Jan-Mar-Q3, 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): Incorrect filtering can be applied at individual reading list due to unexpected navigation between single... - https://phabricator.wikimedia.org/T156001#3033575 [16:55:19] (03PS1) 10Zfilipin: WIP Move Rake and RuboCop dependency from repositories to mediawiki/selenium [core] - 10https://gerrit.wikimedia.org/r/338139 (https://phabricator.wikimedia.org/T158326) [16:55:39] (03CR) 10Dbrant: [C: 032] Hygiene: move language switching code to ResourceUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338059 (owner: 10Niedzielski) [16:56:09] (03CR) 10Dbrant: [C: 032] Fix: SearchFragment NPE in async callback UI update [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338060 (owner: 10Niedzielski) [16:56:38] 10Recommendation-API: Resolve GapFinder security issues - https://phabricator.wikimedia.org/T156477#3033583 (10leila) If Ellery doesn't /need/ more work on the readMore's UI, yes. If he needs it, no. :) I'd recommend checking with him as I don't know the requirements of that project. [16:56:47] (03CR) 10Dbrant: [C: 032] Hygiene: remove dead code in PageActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338061 (owner: 10Niedzielski) [16:57:00] (03CR) 10Niedzielski: [C: 04-1] Tweak design of description revert notification and help dialog (031 comment) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337899 (https://phabricator.wikimedia.org/T150477) (owner: 10Mholloway) [16:57:48] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Mobile: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033591 (10Jdlrobson) [16:58:01] (03Merged) 10jenkins-bot: Hygiene: remove superfluous @TargetApi annotations [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338058 (owner: 10Niedzielski) [16:58:57] 10UI-Standardization, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#2957748 (10Jdlrobson) What's the state of FlaggedRevs in production? I see the extension in installed but i'm not sure whether it is e... [17:00:16] 10Recommendation-API, 07Epic: Create user interface for related articles recommendations - https://phabricator.wikimedia.org/T153443#3033601 (10leila) The design doc is for edit recommendation, not read recommendations, @schana. While the read recommendations may use the same design as edit recommendations, if... [17:00:40] (03Merged) 10jenkins-bot: Hygiene: move language switching code to ResourceUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338059 (owner: 10Niedzielski) [17:01:23] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: [BUG] 'Terms of use' linked from app is the desktop instead of mobile version of the page - https://phabricator.wikimedia.org/T158218#3033605 (10RHo) [17:02:10] 07Spanish-Sites: "data:" URLs accounting for 6 of the top 10 most viewed articles reported by stats.grok.se - https://phabricator.wikimedia.org/T68112#3033607 (10Milimetric) untagging analytics, stats.grok is totally unmaintained and outdated [17:02:13] 10Phabricator (Upstream), 07Upstream: "Visible To" should not display "Spaces" dropdown if user can only access the public S1 space - https://phabricator.wikimedia.org/T158226#3033609 (10Aklapper) [17:02:22] 07Spanish-Sites: "data:" URLs accounting for 6 of the top 10 most viewed articles reported by stats.grok.se - https://phabricator.wikimedia.org/T68112#3033610 (10Milimetric) 05Open>03declined no longer relevant [17:05:20] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033624 (10Aklapper) [17:06:14] (03CR) 10jerkins-bot: [V: 04-1] WIP Move Rake and RuboCop dependency from repositories to mediawiki/selenium [core] - 10https://gerrit.wikimedia.org/r/338139 (https://phabricator.wikimedia.org/T158326) (owner: 10Zfilipin) [17:07:23] (03PS2) 10Jforrester: Change Special:EditWatchlist to OOUI [core] - 10https://gerrit.wikimedia.org/r/276948 (https://phabricator.wikimedia.org/T117790) (owner: 10Vaishali Jain) [17:07:25] (03CR) 10Bartosz Dziewoński: "So wait, we're not doing the truncation anymore? de-AT@collation=phonebook is totally a real collation that we appear to support, it's lis" [core] - 10https://gerrit.wikimedia.org/r/272419 (https://phabricator.wikimedia.org/T146341) (owner: 10Brian Wolff) [17:07:40] (03PS1) 10Mholloway: Hygiene: Rename PageTitleListCardItemView and related RecyclerAdapter [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338141 [17:07:58] (03CR) 10Jforrester: "I tried to work out what was going on here but I can't see what bit of HTML form is taking 'ns0' as the section header message and prepend" [core] - 10https://gerrit.wikimedia.org/r/276948 (https://phabricator.wikimedia.org/T117790) (owner: 10Vaishali Jain) [17:08:00] (03Merged) 10jenkins-bot: Fix: SearchFragment NPE in async callback UI update [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338060 (owner: 10Niedzielski) [17:08:47] (03Merged) 10jenkins-bot: Hygiene: remove dead code in PageActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338061 (owner: 10Niedzielski) [17:08:56] (03PS2) 10Mholloway: Hygiene: Rename PageTitleListCardItemView and related RecyclerAdapter [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338141 [17:10:05] (03PS3) 10Mholloway: Hygiene: Rename PageTitleListCardItemView and related RecyclerAdapter [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338141 [17:11:06] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033529 (10Gilles) I can't see the historical data for the beta CSS size on that Grafana dashboard. Ho... [17:12:10] (03CR) 10jenkins-bot: Hygiene: move language switching code to ResourceUtil [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338059 (owner: 10Niedzielski) [17:13:07] (03CR) 10jenkins-bot: Hygiene: remove superfluous @TargetApi annotations [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338058 (owner: 10Niedzielski) [17:13:59] (03PS50) 10Bearloga: Migrate to Reportupdater framework [wikimedia/discovery/golden] - 10https://gerrit.wikimedia.org/r/325870 (https://phabricator.wikimedia.org/T150915) [17:15:05] (03CR) 10jerkins-bot: [V: 04-1] Change Special:EditWatchlist to OOUI [core] - 10https://gerrit.wikimedia.org/r/276948 (https://phabricator.wikimedia.org/T117790) (owner: 10Vaishali Jain) [17:15:08] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033656 (10Jdlrobson) @gilles thanks for asking that. It may be that this has been the case for some t... [17:16:08] (03CR) 10jenkins-bot: Fix: SearchFragment NPE in async callback UI update [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338060 (owner: 10Niedzielski) [17:16:30] (03CR) 10jenkins-bot: Hygiene: remove dead code in PageActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338061 (owner: 10Niedzielski) [17:17:43] (03CR) 10Jforrester: Use OOjs UI icons (031 comment) [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/333329 (https://phabricator.wikimedia.org/T155878) (owner: 10Ladsgroup) [17:17:49] This user is now online in #wikimedia-dev. I'll let you know when they show some activity (talk, etc.) [17:17:49] @notify ashley [17:18:26] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: Rename PageTitleListCardItemView and related RecyclerAdapter [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338141 (owner: 10Mholloway) [17:19:32] (03CR) 10Jforrester: "This is particularly poor because the MobileFrontend re-implementation of this code(?) doesn't use any of the images or code anyway." [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/333329 (https://phabricator.wikimedia.org/T155878) (owner: 10Ladsgroup) [17:21:16] (03PS1) 10Jforrester: Revert "Use OOjs UI icons" [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338142 [17:21:20] (03CR) 10Jforrester: [C: 032] Revert "Use OOjs UI icons" [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338142 (owner: 10Jforrester) [17:22:33] 10UI-Standardization, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#2957748 (10Jdforrester-WMF) >>! In T155878#3033595, @Jdlrobson wrote: > What's the state of FlaggedRevs in production? > I see the ext... [17:22:45] 10UI-Standardization, 15User-Ladsgroup, 07User-notice: Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#3033662 (10Jdforrester-WMF) a:03Ladsgroup [17:22:57] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033666 (10Jdforrester-WMF) [17:23:00] 10UI-Standardization, 15User-Ladsgroup, 07User-notice: Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#3033669 (10Jdforrester-WMF) [17:25:03] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033670 (10Jdlrobson) 05duplicate>03Open @Jdforrester-WMF this is not a duplicate and I would lik... [17:25:48] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 07Beta-Cluster-reproducible, and 2 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033675 (10Jdforrester-WMF) noc.wikimedia.org [17:29:37] (03Merged) 10jenkins-bot: Revert "Use OOjs UI icons" [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338142 (owner: 10Jforrester) [17:35:14] (03CR) 10Dbrant: [C: 04-1] Tweak design of description revert notification and help dialog (032 comments) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337899 (https://phabricator.wikimedia.org/T150477) (owner: 10Mholloway) [17:37:33] 10UI-Standardization, 10OOjs-UI, 03UI-Standardization-Kanban: ButtonWidget Indicators should be greyscale only - https://phabricator.wikimedia.org/T157834#3033743 (10matmarex) All of the theoretically possible indicators are listed on (03PS1) 10Zfilipin: WIP Make it possible to execute tests as a specific (new) MediaWiki user on beta cluster [core] - 10https://gerrit.wikimedia.org/r/338146 (https://phabricator.wikimedia.org/T152432) [17:47:41] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 06Reading-Web-Backlog, and 3 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033821 (10Jdlrobson) Does this mean it's only enabled on noc.wikimedia.org ? If so, why does the beta clust... [17:54:40] rlot: hey, what's up? [17:57:43] ashley: Hi! Can you merge this patch? [18:00:57] 04(no projects): codfw: ms-be2028-ms-be2039 rack/setup - https://phabricator.wikimedia.org/T158337#3033850 (10Papaul) [18:01:22] the PictureGame flagging reason patch? I'll talk with Samantha about that the next time she's around, but I think it should be good to go, yeah :) [18:01:37] I will let you know when I see SamanthaNguyen around here [18:01:37] @notify SamanthaNguyen [18:01:43] @ashley: Thanks! [18:02:17] (03PS1) 10Jack Phoenix: Fix fatal on Special:ToggleUserPage [extensions/SocialProfile] - 10https://gerrit.wikimedia.org/r/338149 (https://phabricator.wikimedia.org/T158318) [18:04:40] thank you for writing such a useful feature! it's certainly no small patch and it's cool that it uses OOjs UI :D [18:08:01] 13Patch-For-Review, 05codfw-rollout: Graphite DC fail-over / per-DC setup - https://phabricator.wikimedia.org/T127976#3033875 (10GWicke) > IIRC statsd dns resolution for nodejs services was special-cased. Otherwise by default nodejs or the statsd library would issue dns lookups every time a statsd udp packet w... [18:09:16] 10MediaWiki-Recent-changes, 07User-notice: Options form at the top of Special:RecentChanges needs cleanup - https://phabricator.wikimedia.org/T119084#3033877 (10matmarex) [18:13:12] (03CR) 10Dbrant: [C: 032] Hygiene: remove redundant theme change subscriber in MainActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338062 (owner: 10Niedzielski) [18:14:03] (03CR) 10Dbrant: [C: 032] "interesting!" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338063 (owner: 10Niedzielski) [18:15:19] 10Recommendation-API, 07Epic: Create user interface for related articles recommendations - https://phabricator.wikimedia.org/T153443#3033897 (10schana) p:05Triage>03Low [18:17:09] (03CR) 10Smalyshev: "I don't know why it's there but in general I am very wary of removing tests. So I'd rather leave it as-is in case it serves a function. le" [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [18:17:26] (03CR) 10VolkerE: [C: 032] Align editOptions section with WikimediaUI color palette [core] - 10https://gerrit.wikimedia.org/r/337226 (https://phabricator.wikimedia.org/T152025) (owner: 10Ladsgroup) [18:17:54] 10TPG-Essential-Functions, 07Epic, 10TPG-Epics (SAFe 4.0 training), 06Team-Practices (This-Week): Schedule SAFe training with TPG - https://phabricator.wikimedia.org/T158133#3033904 (10ggellerman) [18:18:16] 10TPG-Essential-Functions, 07Epic, 10TPG-Epics (SAFe 4.0 training), 06Team-Practices (This-Week): Schedule SAFe training with TPG - https://phabricator.wikimedia.org/T158133#3027653 (10ggellerman) Scheduled for 2017-03-02 TPG Org Change meeting [18:19:17] 10MediaWiki-Special-pages, 10Wikidata, 05MW-1.29-release-notes, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13), and 2 others: Large amount of "DatabaseMysqlBase::lock failed to acquire lock 'wikidatawiki-activeusers'" timeout-errors on wikidata since 2017-01-30 8:... - https://phabricator.wikimedia.org/T156638#3033909 [18:20:01] 10Recommendation-API: Many queries not returning any recommendations - https://phabricator.wikimedia.org/T155650#2949888 (10schana) a:03schana [18:20:43] 10Recommendation-API, 07Epic: Resolve security issues - https://phabricator.wikimedia.org/T153846#2892956 (10schana) [18:20:46] 10MediaWiki-API: Add a prop=tables for fetching data for tables on a page - https://phabricator.wikimedia.org/T158339#3033916 (10Niharika) [18:22:31] 10Recommendation-API: Fix EventLogging call to not pass server UserAgent - https://phabricator.wikimedia.org/T152716#3033934 (10schana) p:05Triage>03Normal [18:23:55] 10Recommendation-API, 07Documentation: Document gapfinder - https://phabricator.wikimedia.org/T133997#3033945 (10schana) [18:24:46] 10ConfirmEdit (CAPTCHA extension), 07Performance: Speed up captcha generation - https://phabricator.wikimedia.org/T157736#3033946 (10Reedy) So for a full run, generating 10k captchas ``` reedy@terbium:~$ /usr/local/bin/mwscript extensions/ConfirmEdit/maintenance/GenerateFancyCaptchas.php mediawikiwiki --wordl... [18:26:10] 10Reading-Community-Engagement, 06Community-Liaisons (Jan-Mar 2017): Promote the upcoming header styling changes - https://phabricator.wikimedia.org/T155754#3033959 (10Moushira) a:03Ckoerner [18:27:46] 10MediaWiki-API: Add a prop=tables for fetching data for tables on a page - https://phabricator.wikimedia.org/T158339#3033916 (10Legoktm) Use action=parse and then parse the HTML output (a structured format)? I think it's unlikely we'll add a specific endpoint for this. Most likely the underlying data itself sho... [18:31:15] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 06Reading-Web-Backlog, and 3 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3033979 (10Jdlrobson) a:03Jdlrobson Also, thanks for the revert of https://gerrit.wikimedia.org/r/#/c/3381... [18:33:08] 10TPG-Essential-Functions, 07Epic, 10TPG-Epics (SAFe 4.0 training), 06Team-Practices (This-Week): Schedule SAFe training with TPG - https://phabricator.wikimedia.org/T158133#3033981 (10ggellerman) 05Open>03Resolved [18:33:26] 10TPG-Essential-Functions, 06Team-Practices (This-Week): Define "action item" in TPG Glossary - https://phabricator.wikimedia.org/T157833#3033983 (10NHarateh_WMF) 05Open>03Resolved a:03NHarateh_WMF [18:33:41] 10TPG-Essential-Functions, 06Team-Practices (This-Week): Light Engagement survey: ORES - https://phabricator.wikimedia.org/T157467#3033989 (10ggellerman) 05Open>03Resolved [18:34:41] 10TPG-Essential-Functions, 06Team-Practices (This-Week): Cancel/reschedule TPG team meetings week of 2017-02-20 that conflict with Collab Jam - https://phabricator.wikimedia.org/T157841#3033991 (10ggellerman) 05Open>03Resolved [18:36:15] 10TPG-Essential-Functions, 06Team-Practices (This-Week): Incorporate Editing offsite planning retro actions into Offsite planning guide - https://phabricator.wikimedia.org/T152057#3033995 (10NHarateh_WMF) 05Open>03Resolved Marked resolved at TPG Work Review 02/16/2017. [18:37:41] 10MobileFrontend, 06Reading-Web-Backlog (Design): Add right edge swipe support to show table of contents on mobile site - https://phabricator.wikimedia.org/T158313#3034019 (10Jdlrobson) What do you think @nirzar? We could add swipes actions for the media viewer in the process? [18:38:13] 10TPG-Essential-Functions, 06Team-Practices (This-Week): Update Team Practices Roles and Responsibilities to reflect new(ish) role, "Sr. Agile Coach" - https://phabricator.wikimedia.org/T148464#3034023 (10Awjrichards) a:03KLans_WMF Reassigning to @KLans_WMF for final review [18:39:19] 10MobileFrontend, 06Reading-Web-Backlog (Design): Add right edge swipe support to show table of contents on mobile site - https://phabricator.wikimedia.org/T158313#3034026 (10Nirzar) Gestures on web are really clunky, I haven't seen a good implementation of it. I would like to see it first. just swiping a div... [18:39:34] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal): Hovercards EL related bugs - https://phabricator.wikimedia.org/T149947#3034027 (10ovasileva) @bmansurov - could you test through the new code and resolve if fixed? [18:39:40] 10MobileFrontend, 06Reading-Web-Backlog (Design): Add left edge swipe support to show the menu on mobile site - https://phabricator.wikimedia.org/T158314#3034029 (10Jdlrobson) What do you think @nirzar? We could add swipes actions for the media viewer in the process? [18:40:11] 10TPG-Essential-Functions, 06Team-Practices (This-Week): TPG to discuss State of the CSAT - https://phabricator.wikimedia.org/T153371#2878533 (10NHarateh_WMF) 05Open>03Resolved [18:40:24] (03CR) 10Legoktm: [C: 04-1] "I introduced this test because of Daniel's comment on bb8fff662a1745c88c68beac45749bfd25755187. I think it's useful as passing around inva" [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [18:41:04] (03CR) 10Krinkle: [C: 032] Add update()/insert() comments to IDatabase [core] - 10https://gerrit.wikimedia.org/r/338122 (owner: 10Aaron Schulz) [18:41:06] 10Page-Previews, 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92: Technical: Use bundler to generate Popups JavaScript code - https://phabricator.wikimedia.org/T156333#3034035 (10Jdlrobson) [18:41:08] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 13Patch-For-Review, 07Technical-Debt (RW-Tech-Debt): Limit the number of globals in the Popups JS codebase - https://phabricator.wikimedia.org/T147306#3034037 (10Jdlrobson) [18:42:04] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal): Hovercards EL related bugs - https://phabricator.wikimedia.org/T149947#3034040 (10bmansurov) @ovasileva Should we instead pull this into the sprint and estimate and pass it through our process? [18:45:23] 10Page-Previews, 06Reading-Web-Backlog, 07Technical-Debt (RW-Tech-Debt), 07Unplanned-Sprint-Work: Unit test ext.popups.renderer.article.js (part 2 HARD) - https://phabricator.wikimedia.org/T133162#3034044 (10ovasileva) p:05Low>03Normal [18:46:09] 10Page-Previews, 10PageImages, 06Reading-Web-Backlog: Exclude {{location map}} images from PageImages - https://phabricator.wikimedia.org/T92535#3034047 (10Jdlrobson) 05Open>03stalled PageImages has no knowledge of the context of an image. How would you recommend we do this without resorting to template... [18:48:25] 10MediaWiki-Containers, 10MediaWiki-Releasing, 06Services, 15User-mobrovac: Ready-to-use Docker package for MediaWiki - https://phabricator.wikimedia.org/T92826#1121273 (10Dan.mulholland) I think this is a great initiative and wish I'd noticed it earlier. I've spent a few years deploying MW and find that... [18:49:41] 10Page-Previews, 06Reading-Web-Backlog, 07Epic: [EPIC] Hovercards technical debt and quality enhancements - https://phabricator.wikimedia.org/T144522#3034067 (10Jdlrobson) [18:49:44] 10Page-Previews, 06Reading-Web-Backlog, 07Epic, 07Performance: [EPIC] Recommendation: Reduce JS bloat of Hovercards - https://phabricator.wikimedia.org/T133947#3034068 (10Jdlrobson) [18:49:45] 10Page-Previews, 06Reading-Web-Backlog, 07Epic, 07Technical-Debt: [EPIC] Hovercards: Test Coverage - https://phabricator.wikimedia.org/T67103#3034061 (10Jdlrobson) 05Open>03Resolved a:03Jdlrobson The repo is pretty well tested now. Remaining work is tracked in T133022 and T133162 [18:50:01] 07Design, 10VisualEditor, 10VisualEditor-MediaWiki, 10VisualEditor-MediaWiki-2017WikitextEditor, 07Epic: Provide a modern wikitext editor - https://phabricator.wikimedia.org/T104479#3034070 (10Jdforrester-WMF) [18:50:37] 06Team-Practices (This-Week): [EPIC] COLLAB JAM - https://phabricator.wikimedia.org/T158343#3034073 (10KLans_WMF) [18:50:58] (03CR) 10Jack Phoenix: [V: 032 C: 032] Fix fatal on Special:ToggleUserPage [extensions/SocialProfile] - 10https://gerrit.wikimedia.org/r/338149 (https://phabricator.wikimedia.org/T158318) (owner: 10Jack Phoenix) [18:51:11] 10Page-Previews, 06Reading-Web-Backlog: Make `npm run doc` work again - https://phabricator.wikimedia.org/T158236#3034088 (10ovasileva) p:05Triage>03High [18:51:36] 10MediaWiki-Recent-changes, 07User-notice: Options form at the top of Special:RecentChanges needs cleanup - https://phabricator.wikimedia.org/T119084#1817312 (10Mattflaschen-WMF) Suggest holding off on this in favor of {T144448} which is mostly done already and live on Beta (and planned for Watchlist later).... [18:53:18] 10Social-Tools, 10SocialProfile: Can't use social userpage as the main profile - https://phabricator.wikimedia.org/T158318#3034097 (10ashley) 05Open>03Resolved a:03ashley Fixed, thanks again. As for the userboxes, note that you also need to set `$wgEnableUserBoxes = true;` in your wiki's LocalSettings.p... [18:53:57] (03CR) 10Legoktm: [C: 032] "[10:52:24] I'll just leave it up to Daniel then? He's the one who asked for the test and knows the nuances of Wikibase much bett" [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [18:54:21] 10Page-Previews, 06Reading-Web-Backlog (Design): Hovercards should show for disambiguation pages - https://phabricator.wikimedia.org/T130671#3034103 (10Jdlrobson) [18:55:10] 10MediaWiki-extensions-MultimediaViewer, 06Reading-Web-Backlog: WANObjectCache breaks extending $wgDefaultUserOptions via ExtensionFunctions in extensions. - https://phabricator.wikimedia.org/T153280#3034104 (10ovasileva) p:05Low>03Lowest [18:55:20] 10Page-Previews, 06Reading-Web-Backlog (Design): Hovercards: Display popups across wikis - https://phabricator.wikimedia.org/T67117#3034107 (10Jdlrobson) We'd need some design input on this before moving forward. [18:56:04] 10MediaWiki-Export-or-Import: Importing XML dumps should validate that the target wiki has the same namespaces as the pages being imported - https://phabricator.wikimedia.org/T64111#679777 (10Krauss) Hi , I have big problem, the "no alert", "no notice" (even with --debug) about *namespaces* cause crash in the im... [18:56:17] 10Page-Previews, 06Reading-Web-Backlog, 07Performance: Debounce scroll events in Hovercards - https://phabricator.wikimedia.org/T149297#3034111 (10ovasileva) 05stalled>03Open [18:56:25] 10Page-Previews, 06Reading-Web-Backlog, 07Epic, 07Technical-Debt: [EPIC] Hovercards: Test Coverage - https://phabricator.wikimedia.org/T67103#691195 (10pmiazga) {F5657352} PHP Backend is well tested [18:56:42] 10MediaWiki-extensions-Translate, 10Page-Previews, 06Reading-Web-Backlog: Make Hovercards work with Special:MyLanguage links - https://phabricator.wikimedia.org/T145541#3034116 (10Jdlrobson) Not sure what the generic solution would be for this. Needs some thought from devs. [18:57:46] 10Page-Previews, 06Reading-Web-Backlog: Schema:Popups logs "dwelledButAbandoned" and link open events at the same time - https://phabricator.wikimedia.org/T140485#3034118 (10ovasileva) 05stalled>03Open [18:59:03] 10Page-Previews, 06Reading-Web-Backlog, 07Performance: Debounce scroll events in Hovercards - https://phabricator.wikimedia.org/T149297#3034121 (10Jdlrobson) 05Open>03Invalid No scrolling happening in Popups any more from what I can see. [18:59:26] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#3034123 (10Volker_E) @Ladsgroup I'd not recommend to make “Cancel” a framed button, there's already too much going on. Two options ar... [19:01:17] 10Page-Previews, 06Reading-Web-Backlog, 07Technical-Debt, 07Upstream: Hovercards: extension should use external SVG file for #mwe-popups-svg pokey mask - https://phabricator.wikimedia.org/T64195#3034127 (10ovasileva) 05stalled>03declined still unblocked. [19:01:27] 10Page-Previews, 06Reading-Web-Backlog, 07Category, 07Epic: Move Hovercards to OOjs and OOjs UI - https://phabricator.wikimedia.org/T88882#3034130 (10Jdlrobson) 05stalled>03declined Given the simplicity of the extension there is no need to load the entire OOjs UI and it would be irresponsible to do so... [19:01:48] 10MediaWiki-extensions-FlaggedRevs, 10OOjs-UI, 06Performance-Team, 06Reading-Web-Backlog, and 3 others: CSS has risen from 8.5kb to 33.9kb on beta cluster - https://phabricator.wikimedia.org/T158329#3034132 (10Jdforrester-WMF) >>! In T158329#3033821, @Jdlrobson wrote: > Does this mean it's only enabled on... [19:03:10] 10Page-Previews, 06Reading-Web-Backlog, 07Technical-Debt, 07Upstream: Hovercards: extension should use external SVG file for #mwe-popups-svg pokey mask - https://phabricator.wikimedia.org/T64195#3034149 (10Jdlrobson) 05declined>03stalled @ovasileva this is stalled on webkit and still a bug. We should t... [19:03:39] (03CR) 10Niedzielski: [C: 04-1] "@dbrant @mholloway, do you guys want me to update this change or abandon it? I think it's an improvement but I don't want to force my opin" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/333456 (owner: 10Niedzielski) [19:03:46] (03PS1) 10Dbrant: Factor out common URLs from string resources. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338152 (https://phabricator.wikimedia.org/T158218) [19:08:06] 10MediaWiki-Database, 10MediaWiki-Logging, 10DBA, 06Performance-Team, and 2 others: Logging needs an index to optimize searching by log_title - https://phabricator.wikimedia.org/T68961#3034156 (10Umherirrender) I can not say anything about the task, my comment was just a info, that the missing index is not... [19:09:10] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog, 13Patch-For-Review: [BUG] 'Terms of use' linked from app is the desktop instead of mobile version of the page - https://phabricator.wikimedia.org/T158218#3034159 (10Dbrant) a:03Dbrant [19:10:50] (03PS2) 10Jforrester: Install python-swiftclient with --force-yes [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/335235 (owner: 10Gilles) [19:11:20] 10MediaWiki-Database, 10MediaWiki-Logging, 10DBA, 06Performance-Team, and 2 others: Logging needs an index to optimize searching by log_title - https://phabricator.wikimedia.org/T68961#3034163 (10jcrespo) p:05Normal>03Low Based on the comments, I am going to lower the priority of this, without trying t... [19:13:54] 10UI-Standardization, 06Community-Liaisons, 10Reading-Community-Engagement, 10Vector, 07Technical-Debt: Align Vector skin with Wikimedia color palette - https://phabricator.wikimedia.org/T153043#3034172 (10Volker_E) [19:13:57] 10UI-Standardization, 07Accessibility, 07Technical-Debt, 07Tracking, 03UI-Standardization-Kanban: Replace abandoned colors in current WMF/Wikimedia products - https://phabricator.wikimedia.org/T148708#3034171 (10Volker_E) [19:14:07] 10UI-Standardization, 06Community-Liaisons, 10Reading-Community-Engagement, 10Vector, 07Technical-Debt: Align Vector skin with WikimediaUI color palette - https://phabricator.wikimedia.org/T153043#2867378 (10Volker_E) [19:15:30] 10UI-Standardization, 05MW-1.29-release-notes, 13Patch-For-Review, 07User-notice, 05WMF-deploy-2017-02-14_(1.29.0-wmf.12): Align MediaWiki core UI elements with WikimediaUI color palette - https://phabricator.wikimedia.org/T152025#3034175 (10Volker_E) [19:15:33] 10UI-Standardization, 07Accessibility, 07Technical-Debt, 07Tracking, 03UI-Standardization-Kanban: Replace abandoned colors in current WMF/Wikimedia products - https://phabricator.wikimedia.org/T148708#2730698 (10Volker_E) [19:17:19] 10UI-Standardization, 07Accessibility, 07Technical-Debt, 07Tracking, 03UI-Standardization-Kanban: Replace abandoned colors in current WMF/Wikimedia products with WikimediaUI palette colors [tracking] - https://phabricator.wikimedia.org/T148708#3034179 (10Volker_E) [19:17:49] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3034182 (10Dbrant) a:03Dbrant [19:18:31] 10Wikimedia-Hackathon-2017-Organization: Think about how to integrate non-technical sessions or projects to hackathons - https://phabricator.wikimedia.org/T138869#2412613 (10Tobias1984) I think that a dedicated skill-learning room would be good. People can look at the schedule and choose what they would like to... [19:18:41] (03PS1) 10Dbrant: Make clicking on library licenses not crash. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338154 (https://phabricator.wikimedia.org/T158263) [19:19:01] 10MediaWiki-API, 10Page-Previews, 06Reading-Web-Backlog: Hovercards: doesn't show popup for [[Special:MyLanguage/Some page]] links on mw.org - https://phabricator.wikimedia.org/T91317#3034192 (10Jdlrobson) [19:19:03] 10MediaWiki-extensions-Translate, 10Page-Previews, 06Reading-Web-Backlog: Make Hovercards work with Special:MyLanguage links - https://phabricator.wikimedia.org/T145541#3034190 (10Jdlrobson) [19:19:07] 10Android-app-Bugs, 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): Tapping library license crashes app - https://phabricator.wikimedia.org/T158263#3034193 (10Dbrant) [19:19:09] 10Page-Previews, 06Reading-Web-Backlog (Design): Show structured data in hovercards - https://phabricator.wikimedia.org/T85187#3034196 (10Jdlrobson) Sounds like a neat idea but will need some design input. [19:19:16] 10Android-app-Bugs, 13Patch-For-Review, 06Wikipedia-Android-App-Backlog (Kanban): [BUG] 'Terms of use' linked from app is the desktop instead of mobile version of the page - https://phabricator.wikimedia.org/T158218#3034198 (10Dbrant) [19:19:35] 10Page-Previews, 06Reading-Web-Backlog (Design): Hovercards should also show "diffs" and "hist" information from the edit lists - https://phabricator.wikimedia.org/T110923#3034202 (10Jdlrobson) [19:19:37] 10MediaWiki-extensions-GettingStarted, 06Collaboration-Team-Triage: Improve GettingStarted data storage strategy - https://phabricator.wikimedia.org/T158239#3030809 (10Mattflaschen-WMF) >>! In T158239#3032796, @elukey wrote: > Thanks a lot Aaron for opening this task. I am a bit ignorant about this extension a... [19:19:47] (03Merged) 10jenkins-bot: Hygiene: remove redundant theme change subscriber in MainActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338062 (owner: 10Niedzielski) [19:19:49] (03Merged) 10jenkins-bot: Hygiene: rename event bus subscribers [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338063 (owner: 10Niedzielski) [19:23:15] (03PS2) 10Gerrit Patch Uploader: Add spacing before the mw-collapsible-toggle links [core] - 10https://gerrit.wikimedia.org/r/338045 (https://phabricator.wikimedia.org/T155347) [19:23:17] (03CR) 10Gerrit Patch Uploader: "This commit was uploaded using the Gerrit Patch Uploader [1]." [core] - 10https://gerrit.wikimedia.org/r/338045 (https://phabricator.wikimedia.org/T155347) (owner: 10Gerrit Patch Uploader) [19:23:27] 10Graphs, 10Page-Previews, 06Reading-Web-Backlog, 10TextExtracts: Hovercards can show JavaScript output by Graph extension - https://phabricator.wikimedia.org/T105924#3034213 (10Jdlrobson) Does this happen if RESTBase is used? If we switch to HTML previews this would go away. [19:23:42] (03CR) 10jenkins-bot: Hygiene: remove redundant theme change subscriber in MainActivity [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338062 (owner: 10Niedzielski) [19:23:57] (03PS1) 10XenoRyet: Update DonationInterface Submodule [core] (fundraising/REL1_27) - 10https://gerrit.wikimedia.org/r/338155 [19:24:17] (03CR) 10XenoRyet: [C: 032] Update DonationInterface Submodule [core] (fundraising/REL1_27) - 10https://gerrit.wikimedia.org/r/338155 (owner: 10XenoRyet) [19:25:04] 10Page-Previews, 06Reading-Web-Backlog: Hovercard extract should not display an unflagged revision - https://phabricator.wikimedia.org/T71430#3034221 (10Jdlrobson) 05Open>03declined RESTBase and MediaWiki only allow us to record the text extract for the latest revision (for scalability/performance) so thi... [19:25:49] (03CR) 10jenkins-bot: Hygiene: rename event bus subscribers [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338063 (owner: 10Niedzielski) [19:27:04] (03CR) 10Umherirrender: "recheck" [extensions/Hreflang] - 10https://gerrit.wikimedia.org/r/336112 (owner: 10Umherirrender) [19:27:36] (03PS3) 10Niedzielski: Hygiene: upgrade to OkHttp 3.6.0 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335946 [19:27:47] (03CR) 10Mholloway: [C: 031] "I haven't tested yet but this makes sense + looks good" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338154 (https://phabricator.wikimedia.org/T158263) (owner: 10Dbrant) [19:29:12] 10Page-Previews, 06Reading-Web-Backlog: Problem with hovercards - hebrew wikivoyage - https://phabricator.wikimedia.org/T68658#3034225 (10Jdlrobson) [19:29:26] 10Page-Previews, 06Reading-Web-Backlog: Problem with hovercards - hebrew wikivoyage - https://phabricator.wikimedia.org/T68658#690783 (10Jdlrobson) [19:29:57] (03CR) 10Umherirrender: [C: 032] "Resubmit" [extensions/Hreflang] - 10https://gerrit.wikimedia.org/r/336112 (owner: 10Umherirrender) [19:30:03] 10Page-Previews, 06Reading-Web-Backlog: Problem with hovercards - hebrew wikivoyage - https://phabricator.wikimedia.org/T68658#690783 (10Jdlrobson) 05Open>03Resolved a:03Jdlrobson I cannot replicate this issue. [19:30:25] (03CR) 10Umherirrender: [C: 032] "Resubmit" [extensions/ZeroBanner] - 10https://gerrit.wikimedia.org/r/336101 (owner: 10Umherirrender) [19:30:54] 10Page-Previews, 06Reading-Web-Backlog (Design): Interwiki Hovercards: Use user language with fallback to site language - https://phabricator.wikimedia.org/T127847#3034248 (10Jdlrobson) [19:31:18] (03Merged) 10jenkins-bot: Align editOptions section with WikimediaUI color palette [core] - 10https://gerrit.wikimedia.org/r/337226 (https://phabricator.wikimedia.org/T152025) (owner: 10Ladsgroup) [19:31:23] (03CR) 10Umherirrender: [C: 032] "Resubmit" [extensions/InterwikiIntegration] - 10https://gerrit.wikimedia.org/r/336076 (owner: 10Umherirrender) [19:33:55] 10MediaWiki-Special-pages, 10MediaWiki-User-blocking, 10Ladies-That-FOSS-MediaWiki, 07Easy, 07JavaScript: hideuser field on Special:block should be hidden with javascript when time field not indefinite - https://phabricator.wikimedia.org/T133036#2217791 (10EddieGP) Your code looks almost good to me. Firs... [19:34:24] (03Merged) 10jenkins-bot: Add update()/insert() comments to IDatabase [core] - 10https://gerrit.wikimedia.org/r/338122 (owner: 10Aaron Schulz) [19:35:32] 10Page-Previews, 06Reading-Web-Backlog (Design): Hovercards: match and highlight not only actual article title in cards but also the link title as displayed to users for piped links - https://phabricator.wikimedia.org/T73362#3034255 (10Jdlrobson) p:05Low>03Normal [19:35:39] 10MediaWiki-extensions-MultimediaViewer, 06Reading-Web-Backlog: MultimediaViewer sets $wgDefaultUserOptions incorrectly - https://phabricator.wikimedia.org/T158346#3034258 (10pmiazga) [19:35:42] 10Page-Previews, 06Reading-Web-Backlog (Design): Hovercards: match and highlight not only actual article title in cards but also the link title as displayed to users for piped links - https://phabricator.wikimedia.org/T73362#746056 (10Jdlrobson) @nirzar is this a real issue? [19:37:49] 10Android-app-Bugs, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): When description edit tutorial is shown on a low memory device, the original description is lost - https://phabricator.wikimedia.org/T157824#3017788 (10Dbrant) I'm having trouble reproducing this... I've tried API 17, 19, and 24,... [19:38:41] 10Dumps-Generation: Investigate dump failures for zhwiki, svwiki, enwiki Feb 2017 - https://phabricator.wikimedia.org/T157556#3034276 (10ArielGlenn) Because nothing ever is as quick as you expect, even when you take that into account, I'm still doing enwiki cleanup. Bz2 content files have been renamed, dups mov... [19:38:50] (03CR) 10Fomafix: "Why is this style in mediawiki.legacy/shared.css and not in mediawiki.action/mediawiki.action.edit.styles.css?" [core] - 10https://gerrit.wikimedia.org/r/337470 (https://phabricator.wikimedia.org/T152025) (owner: 10Ladsgroup) [19:39:11] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog: Feed list item cards sometimes have null callback set inappropriately [Lollipop+, Support library 25.1.0+] - https://phabricator.wikimedia.org/T158347#3034277 (10Mholloway) [19:39:34] 10Wikimedia-Hackathon-2017-Organization: Changes to promote diversity at the Wikimedia Hackathon 2017 - https://phabricator.wikimedia.org/T133261#3034292 (10Tobias1984) It might be helpful if we had a dedicated person for these issues, that can also be contacted privately and also during the event. @josephine_l... [19:40:37] 10Android-app-Bugs, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): When description edit tutorial is shown on a low memory device, the original description is lost for Russian Wikipedia - https://phabricator.wikimedia.org/T157824#3034294 (10Niedzielski) [19:41:32] 10Android-app-Bugs, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): When description edit tutorial is shown on a low memory device, the original description is lost for Russian Wikipedia - https://phabricator.wikimedia.org/T157824#3017788 (10Niedzielski) Hm, maybe this is Russian Wikipedia only?... [19:41:41] 10Page-Previews, 10Reading-Community-Engagement: Update Hungarian Wikipedia community on Page Previews (Hovercards) status. - https://phabricator.wikimedia.org/T158089#3034296 (10Jdlrobson) [19:42:15] 10MediaWiki-General-or-Unknown, 10MobileFrontend, 06Reading-Web-Backlog, 07Epic, 07Technical-Debt: Aim for 1:1 feature equivalence for MediaWiki on desktop and mobile web - https://phabricator.wikimedia.org/T158181#3034297 (10Jdlrobson) [19:42:41] 10MediaWiki-Special-pages, 10MediaWiki-User-blocking, 10Ladies-That-FOSS-MediaWiki, 07Easy, 07JavaScript: hideuser field on Special:block should be hidden with javascript when time field not indefinite - https://phabricator.wikimedia.org/T133036#3034299 (10EddieGP) p:05Triage>03Normal [19:43:17] 10MediaWiki-Interface, 10MediaWiki-extensions-CentralNotice, 07Mobile, 07Performance: Content jumps on mobile after banner is loaded - https://phabricator.wikimedia.org/T158240#3034301 (10Jdlrobson) This is not an issue with MobileFrontend. [19:44:03] (03CR) 10Dbrant: [C: 032] Hygiene: require source files to end with a newline [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336836 (owner: 10Niedzielski) [19:45:16] 10MobileFrontend, 06Reading-Web-Backlog, 07Easy, 13Patch-For-Review, and 2 others: MobileFrontend duplicates apple-touch icon tag that's in core - https://phabricator.wikimedia.org/T157393#3034305 (10Jdlrobson) 05Open>03Resolved a:03Jdlrobson I've verified on the beta cluster that the touch icon is s... [19:45:54] (03Merged) 10jenkins-bot: Check that empty content is valid only on handlers that allow direct editing. [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [19:47:02] 10MediaWiki-Categories, 10MediaWiki-Special-pages, 10ProofreadPage, 06Wikisource, 07Wikimedia-log-errors: Special:Categories on wikisource.org -> "Exception encountered, of type "Wikimedia\Assert\ParameterAssertionException" error - https://phabricator.wikimedia.org/T99736#1297769 (10matmarex) >>! In T99... [19:49:06] (03PS1) 10Mholloway: Revert to Android Support Library 25.0.1 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338157 (https://phabricator.wikimedia.org/T158347) [19:50:25] (03PS2) 10Umherirrender: Load existing alias file [extensions/SecureSessions] - 10https://gerrit.wikimedia.org/r/336077 [19:50:42] (03CR) 10Umherirrender: "Patch Set 2: Rebased" [extensions/SecureSessions] - 10https://gerrit.wikimedia.org/r/336077 (owner: 10Umherirrender) [19:51:12] (03PS1) 10VolkerE: Align text and border colors to WikimediaUI color palette [skins/Vector] - 10https://gerrit.wikimedia.org/r/338158 (https://phabricator.wikimedia.org/T153043) [19:51:40] 10Android-app-goals-2017-Jan-Mar-Q3, 13Patch-For-Review, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): Upgrade to Android Support Libraries v25.1.0+ - https://phabricator.wikimedia.org/T154595#2916863 (10Mholloway) [19:51:41] (03PS2) 10Umherirrender: Fix alias for SpecialRDFSave [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/336070 [19:51:44] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog, 13Patch-For-Review: Feed list item cards sometimes have null callback set inappropriately [Lollipop+, Support library 25.1.0+] - https://phabricator.wikimedia.org/T158347#3034325 (10Mholloway) [19:52:06] (03PS3) 10Umherirrender: Move description from extension.json to message file [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/334776 [19:52:08] 10MediaWiki-Categories, 10MediaWiki-Special-pages, 06Wikisource, 07Wikimedia-log-errors: Special:Categories on wikisource.org -> "Exception encountered, of type "Wikimedia\Assert\ParameterAssertionException" error - https://phabricator.wikimedia.org/T99736#3034329 (10matmarex) I can easily reproduce this o... [19:52:11] 10Android-app-goals-2017-Jan-Mar-Q3, 13Patch-For-Review, 07Technical-Debt, 06Wikipedia-Android-App-Backlog (Kanban): Upgrade to Android Support Libraries v25.1.0+ - https://phabricator.wikimedia.org/T154595#3034331 (10Mholloway) This caused a regression as described in the linked subtask. Reverting the up... [19:54:35] (03PS2) 10VolkerE: Align text and border colors to WikimediaUI color palette [skins/Vector] - 10https://gerrit.wikimedia.org/r/338158 (https://phabricator.wikimedia.org/T153043) [19:54:46] 10Social-Tools, 10SocialProfile: Can't use social userpage as the main profile - https://phabricator.wikimedia.org/T158318#3034355 (10Innosflew) Oh, I see. Thanks. [19:54:48] (03Merged) 10jenkins-bot: Update DonationInterface Submodule [core] (fundraising/REL1_27) - 10https://gerrit.wikimedia.org/r/338155 (owner: 10XenoRyet) [19:54:50] (03Merged) 10jenkins-bot: Fix key for author list in extension.json [extensions/Hreflang] - 10https://gerrit.wikimedia.org/r/336112 (owner: 10Umherirrender) [19:54:52] (03Merged) 10jenkins-bot: Do not load alias file twice [extensions/ZeroBanner] - 10https://gerrit.wikimedia.org/r/336101 (owner: 10Umherirrender) [19:54:56] (03Merged) 10jenkins-bot: Load existing alias file [extensions/InterwikiIntegration] - 10https://gerrit.wikimedia.org/r/336076 (owner: 10Umherirrender) [19:54:58] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: require source files to end with a newline [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336836 (owner: 10Niedzielski) [19:55:01] (03CR) 10jerkins-bot: [V: 04-1] Factor out common URLs from string resources. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338152 (https://phabricator.wikimedia.org/T158218) (owner: 10Dbrant) [19:55:04] (03CR) 10Umherirrender: [C: 032] Fix class name to match file [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338133 (owner: 10Reedy) [19:57:00] (03CR) 10Jdlrobson: "FWIW we could simply cherry pick this to reading web staging whenever we need to test this and not merge to master." [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337917 (owner: 10Bmansurov) [19:57:52] 10MediaWiki-Categories, 10MediaWiki-Special-pages, 06Wikisource, 07Wikimedia-log-errors: Special:Categories on wikisource.org -> "Exception encountered, of type "Wikimedia\Assert\ParameterAssertionException" error - https://phabricator.wikimedia.org/T99736#3034361 (10matmarex) @tto Let's say that this is t... [19:58:33] (03CR) 10VolkerE: "@Fomafix Good point, we want to get rid of legacy/shared." [core] - 10https://gerrit.wikimedia.org/r/337470 (https://phabricator.wikimedia.org/T152025) (owner: 10Ladsgroup) [19:59:28] (03PS1) 10VolkerE: Revert "Align edit summary with WikimediaUI guideline" [core] - 10https://gerrit.wikimedia.org/r/338159 [19:59:30] (03CR) 10Jforrester: [C: 032] "Per Gilles" [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/335235 (owner: 10Gilles) [20:01:54] 10MediaWiki-Categories, 10MediaWiki-Special-pages, 06Wikisource, 07Wikimedia-log-errors: Special:Categories on wikisource.org -> "Exception encountered, of type "Wikimedia\Assert\ParameterAssertionException" error - https://phabricator.wikimedia.org/T99736#3034371 (10matmarex) >>! In T99736#3034361, @matma... [20:02:48] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Isolate page data client responsibilities - https://phabricator.wikimedia.org/T158349#3034375 (10Niedzielski) [20:02:56] 06Wikipedia-Android-App-Backlog, 07Technical-Debt: Isolate page data client responsibilities - https://phabricator.wikimedia.org/T158349#3034389 (10Niedzielski) p:05Normal>03High [20:04:05] 10MediaWiki-extensions-WikibaseRepository, 10ValueView, 10Wikidata, 07Story: [Story] Support multiple scripts for one language - https://phabricator.wikimedia.org/T97882#1254134 (10cscott) FWIW, detecting `sr-el` and `sr-ec` may be [easy](https://phabricator.wikimedia.org/T97882#1711937), but distinguishin... [20:05:09] (03Merged) 10jenkins-bot: Fix class name to match file [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338133 (owner: 10Reedy) [20:05:11] (03Merged) 10jenkins-bot: Install python-swiftclient with --force-yes [vagrant] (jessie-migration) - 10https://gerrit.wikimedia.org/r/335235 (owner: 10Gilles) [20:06:04] (03PS4) 10Mholloway: Hygiene: Rename PageTitleListCardItemView and related RecyclerAdapter [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338141 [20:07:19] 10The-Wikipedia-Library: Version 1.5: Beta fixes - https://phabricator.wikimedia.org/T147434#3034418 (10ThatAndromeda) [20:07:21] 10The-Wikipedia-Library: Make gunicorn start automatically on boot - https://phabricator.wikimedia.org/T149738#3034417 (10ThatAndromeda) 05Open>03Resolved [20:08:52] 10The-Wikipedia-Library: Update OAuth and other relevant settings for the new/extra URL - https://phabricator.wikimedia.org/T156527#3034421 (10ThatAndromeda) OK, the consumer was approved and it works on staging, but something's not right yet about the callback URL on production. I need to figure out whether thi... [20:12:25] 10Page-Previews, 06Reading-Web-Backlog, 10TextExtracts: Don't extract tags - https://phabricator.wikimedia.org/T65045#3034426 (10Jdlrobson) 05stalled>03Resolved a:03Jdlrobson Yes this is fixed. {F5657756} {F5657757} [20:12:38] (03PS11) 10Ebe123: Add link to Special:PrefixIndex to Delete dialog [core] - 10https://gerrit.wikimedia.org/r/151061 (https://phabricator.wikimedia.org/T32666) [20:15:56] (03CR) 10jenkins-bot: Align editOptions section with WikimediaUI color palette [core] - 10https://gerrit.wikimedia.org/r/337226 (https://phabricator.wikimedia.org/T152025) (owner: 10Ladsgroup) [20:16:36] (03PS2) 10Reedy: [WIP] Add a script to delete old fancy captchas [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) [20:17:17] (03PS6) 10Pmiazga: [WIP] Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:17:47] 10Android-app-feature-UX-Debt, 06Wikipedia-Android-App-Backlog, 07Epic: Improve the usability of the Reading lists feature - https://phabricator.wikimedia.org/T155868#2957310 (10Kaartic) Just wanted to know, why isn't there a way to update the articles in the reading list? I guess of would be a more useful f... [20:21:22] 10Outreach-Programs-Projects, 10Outreachy (Round-14): Translation outreach: User guides on MediaWiki.org - https://phabricator.wikimedia.org/T158296#3034451 (10Miriya52) [20:24:37] 10Outreach-Programs-Projects, 10Outreachy (Round-14): Translation outreach: User guides on MediaWiki.org - https://phabricator.wikimedia.org/T158296#3032632 (10Miriya52) @Johan and @Trizek-WMF, Thanks for volunteering to mentor this task. Can you add this information to the task description also? Microtasks:... [20:28:35] (03CR) 10jenkins-bot: Add update()/insert() comments to IDatabase [core] - 10https://gerrit.wikimedia.org/r/338122 (owner: 10Aaron Schulz) [20:28:37] 06Discovery, 06Discovery-Analysis (Current work): External traffic dashboard - update with notation for Safari internal referrers - https://phabricator.wikimedia.org/T154722#3034455 (10chelsyx) Hi @JKatzWMF, thanks for pointing that out! You are right, this issue does not seem to limited to mobile safari, but... [20:28:47] (03PS7) 10Pmiazga: [WIP] Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:31:10] (03PS1) 10Pmiazga: Hygiene: Use CommonJS in gateway files [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338162 [20:32:01] (03PS8) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:32:23] 10UI-Standardization, 15User-Ladsgroup, 07User-notice: Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#2957748 (10Tgr) I don't think mobile exposes flagrev status at all. (It probably should but that's a separate issue.) [20:32:34] (03PS4) 10Dbrant: Improve page protection logic wrt. description editing. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337915 [20:32:37] (03PS4) 10Sbisson: Import dump: support importing a board that exist in the farm [extensions/Flow] - 10https://gerrit.wikimedia.org/r/337895 (https://phabricator.wikimedia.org/T154830) [20:34:32] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#3034459 (10Dvorapa) In my opinion if you turn "Show preview" button into a quiet-progressive form, the aggrieved one would be the "Sh... [20:34:35] (03PS9) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:35:50] 10UI-Standardization, 15User-Ladsgroup, 07User-notice: Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#3034460 (10Jdforrester-WMF) >>! In T155878#3034456, @Tgr wrote: > I don't think mobile exposes flagrev status at all. (It probably should but that's a separate issue.) https://en... [20:36:18] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: Use CommonJS in gateway files [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338162 (owner: 10Pmiazga) [20:37:21] 10MediaWiki-File-management, 06Commons, 06Multimedia: Trying to get a file gives fatal of Argument 1 passed to FileBackendStore::sanitizeOpHeaders() must be of the type array, string given - https://phabricator.wikimedia.org/T158351#3034461 (10Reedy) [20:38:34] (03PS1) 10Pmiazga: Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 [20:38:53] (03CR) 10Venkatvb: "Thanks a lot Mholloway! J" [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335501 (https://phabricator.wikimedia.org/T141991) (owner: 10Venkatvb) [20:41:20] 10MediaWiki-ContentHandler, 05MW-1.29-release-notes, 13Patch-For-Review, 15User-Daniel, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): ContentHandlerSanityTest assumes every handler can create empty content, but Wikibase can't - https://phabricator.wikimedia.org/T157626#3034490 (10Smalyshev) 05Open>03Resolv... [20:41:22] 10MediaWiki-ContentHandler, 15User-Daniel: Make Wikibase register all its content handlers - https://phabricator.wikimedia.org/T157604#3034492 (10Smalyshev) [20:41:34] (03PS4) 10Mholloway: Prevent user attempting to create a duplicate-titled reading list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336349 (https://phabricator.wikimedia.org/T156017) [20:41:39] (03CR) 10Mholloway: Prevent user attempting to create a duplicate-titled reading list (032 comments) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336349 (https://phabricator.wikimedia.org/T156017) (owner: 10Mholloway) [20:41:50] (03CR) 10jerkins-bot: [V: 04-1] Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:41:52] (03PS10) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:43:22] 06Discovery, 06Discovery-Analysis (Current work): analysis of results from A/B/C test for displaying sister projects in search results - https://phabricator.wikimedia.org/T156300#3034496 (10debt) This test is expected to stop on Feb 22 (or shortly thereafter). [20:43:30] 10ConfirmEdit (CAPTCHA extension): Add script to delete old captchas independent of regenerating captchas - https://phabricator.wikimedia.org/T158327#3034498 (10Reedy) [20:43:32] 10MediaWiki-File-management, 06Commons, 06Multimedia: Trying to get a file gives fatal of Argument 1 passed to FileBackendStore::sanitizeOpHeaders() must be of the type array, string given - https://phabricator.wikimedia.org/T158351#3034497 (10Reedy) [20:44:13] 10ConfirmEdit (CAPTCHA extension): Add script to delete old captchas independent of regenerating captchas - https://phabricator.wikimedia.org/T158327#3033490 (10Reedy) Dunno what jenkins is upto... But https://gerrit.wikimedia.org/r/#/c/338136 is WIP [20:44:55] 10Outreach-Programs-Projects, 10Outreachy (Round-14): Translation outreach: User guides on MediaWiki.org - https://phabricator.wikimedia.org/T158296#3034502 (10Johan) @Miriya52: Roughly how long should I estimate the necessary time to finish a suitable microtask to be, and how many do you need? [20:45:16] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 (owner: 10Pmiazga) [20:45:20] (03PS2) 10Pmiazga: Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 [20:46:10] (03PS1) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) [20:47:11] (03CR) 10jenkins-bot: Check that empty content is valid only on handlers that allow direct editing. [core] - 10https://gerrit.wikimedia.org/r/338023 (https://phabricator.wikimedia.org/T157626) (owner: 10Smalyshev) [20:47:28] (03CR) 10jerkins-bot: [V: 04-1] Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:48:09] (03CR) 10Bmansurov: [C: 032] "FWIW, we haven't finished discussing tests yet, but we need to deliver this piece of work. I've tested the code manually and it seems to b" [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [20:48:40] 06Discovery, 06Discovery-Analysis (Current work): Analyse results of the swap2and3 search test - https://phabricator.wikimedia.org/T136017#3034506 (10debt) Let's go ahead and investigate this... [20:49:52] (03Merged) 10jenkins-bot: Introduce the reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336447 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [20:50:52] (03PS1) 10TheDJ: Position image correctly inside the card [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338166 (https://phabricator.wikimedia.org/T153840) [20:51:09] (03Abandoned) 10Jdlrobson: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/337735 (https://phabricator.wikimedia.org/T156800) (owner: 10Jdlrobson) [20:52:19] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 (owner: 10Pmiazga) [20:52:23] 10UI-Standardization, 15User-Ladsgroup, 07User-notice: Use OOUI icons for FlaggedRevs - https://phabricator.wikimedia.org/T155878#3034518 (10Tgr) Thanks. It indeed (partially) shows when logged in. [20:52:27] 10The-Wikipedia-Library: Update OAuth and other relevant settings for the new/extra URL - https://phabricator.wikimedia.org/T156527#3034519 (10ThatAndromeda) OK, figured out how to check the consumer configuration and it's right, so I need to figure things out on my end. [20:54:41] (03PS2) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) [20:55:16] 10MediaWiki-Containers, 10MediaWiki-Releasing, 06Services, 15User-mobrovac: Ready-to-use Docker package for MediaWiki - https://phabricator.wikimedia.org/T92826#3034521 (10bd808) >>! In T92826#3034057, @Dan.mulholland wrote: > 3. deploying extensions and skins using Git (i.e. no Composer or minimal compose... [20:55:43] (03CR) 10Yaron Koren: [V: 032 C: 032] "I don't know if this is working... maybe it's worth abandoning these and just creating one patch that does everything?" [extensions/HeaderTabs] - 10https://gerrit.wikimedia.org/r/338097 (owner: 10jlemley) [20:58:06] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92: Create reading depth schema - https://phabricator.wikimedia.org/T155639#2949466 (10bmansurov) Negative visibility length. Steps: * Load a page and switch to another tab immediately (CTRL+Tab) * After a couple of seconds go back to the previ... [20:58:23] (03CR) 10Bmansurov: "Visibility length is returning a negative number: T155639#3034527" [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [20:58:45] (03CR) 10jerkins-bot: [V: 04-1] Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) (owner: 10Pmiazga) [21:01:17] 10Reading-Community-Engagement, 06Community-Liaisons (Jan-Mar 2017): Promote the upcoming header styling changes - https://phabricator.wikimedia.org/T155754#3034533 (10CKoerner_WMF) a:05Ckoerner>03CKoerner_WMF [21:02:09] 10MediaWiki-extensions-OAuth, 10Wikimedia-General-or-Unknown: Mwoauthconsumerregistration-propose-text does not display correctly - https://phabricator.wikimedia.org/T158292#3032549 (10Tgr) For security reason OAuth special pages do not load gadgets, so the CSS code does not get included. [21:06:00] 10MediaWiki-extensions-OAuth, 13Patch-For-Review, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Handle blocked users consistently - https://phabricator.wikimedia.org/T156803#3034558 (10Tgr) 05Open>03Resolved a:03Tgr [21:06:41] 10ConfirmEdit (CAPTCHA extension), 07Performance: Use doQuickOperations instead of foreach loops calling quickStore/quickStore - https://phabricator.wikimedia.org/T157738#3034562 (10Reedy) There's the deletes to do too.. [21:07:06] (03PS1) 10Reedy: Switch file store/delete operations to batch operations [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338169 (https://phabricator.wikimedia.org/T157738) [21:07:17] (03PS3) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) [21:08:02] (03PS3) 10Reedy: [WIP] Add a script to delete old fancy captchas [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) [21:10:21] 10ConfirmEdit (CAPTCHA extension): Add script to delete old captchas independent of regenerating captchas - https://phabricator.wikimedia.org/T158327#3034573 (10Reedy) [21:10:24] 10MediaWiki-File-management, 06Commons, 06Multimedia: Trying to get a file gives fatal of Argument 1 passed to FileBackendStore::sanitizeOpHeaders() must be of the type array, string given - https://phabricator.wikimedia.org/T158351#3034571 (10Reedy) 05Open>03Invalid Seems to be transient, possibly deplo... [21:12:58] (03PS4) 10Reedy: [WIP] Add a script to delete old fancy captchas [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) [21:13:17] (03PS2) 10Reedy: Switch file store/delete operations to batch operations [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338169 (https://phabricator.wikimedia.org/T157738) [21:15:59] (03PS3) 10Reedy: Load existing alias file [extensions/SecureSessions] - 10https://gerrit.wikimedia.org/r/336077 (owner: 10Umherirrender) [21:16:05] (03CR) 10Reedy: [C: 032] Load existing alias file [extensions/SecureSessions] - 10https://gerrit.wikimedia.org/r/336077 (owner: 10Umherirrender) [21:17:23] (03Merged) 10jenkins-bot: Load existing alias file [extensions/SecureSessions] - 10https://gerrit.wikimedia.org/r/336077 (owner: 10Umherirrender) [21:19:04] (03PS2) 10Dbrant: Factor out common URLs from string resources. [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338152 (https://phabricator.wikimedia.org/T158218) [21:21:37] 10MediaWiki-Vagrant: Vagrant stops accepting SSH key after provisioning - https://phabricator.wikimedia.org/T158258#3034581 (10Tgr) Still not quite working (`vagrant ssh` works but reload/reprovision does not). FWIW I am using Ubuntu 16.04 with vagrant 1.8.1. This affects one box but not the others. This should... [21:21:57] (03CR) 10Dbrant: [C: 032] Hygiene: upgrade to OkHttp 3.6.0 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335946 (owner: 10Niedzielski) [21:26:11] (03Merged) 10jenkins-bot: Hygiene: upgrade to OkHttp 3.6.0 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335946 (owner: 10Niedzielski) [21:29:16] (03CR) 10jenkins-bot: Hygiene: upgrade to OkHttp 3.6.0 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/335946 (owner: 10Niedzielski) [21:29:50] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [core] - 10https://gerrit.wikimedia.org/r/338170 (owner: 10L10n-bot) [21:30:11] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034590 (10Jdlrobson) That's expected because https://gerrit.wikimedia.org/r/336670 which adds visibility hasn't been merged yet. [21:33:59] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034610 (10bmansurov) That comment is actually for that patch. I just needed a place to upload the screencast. [21:34:43] (03CR) 10Bmansurov: [C: 04-1] "Forgot to -1." [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) (owner: 10Jdlrobson) [21:34:49] (03CR) 10Mholloway: Tweak design of description revert notification and help dialog (031 comment) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337899 (https://phabricator.wikimedia.org/T150477) (owner: 10Mholloway) [21:35:12] 10MediaWiki-extensions-OAuth, 06Labs, 10wikitech.wikimedia.org, 15User-bd808: OAuth api access on wikitech fails with consumed nonce error - https://phabricator.wikimedia.org/T149150#3034613 (10bd808) 05Open>03Resolved a:03bd808 >>! In T149150#3032939, @scfc wrote: > @bd808: Is there anything left to... [21:35:19] 10MediaWiki-extensions-OAuth, 10Wikimedia-General-or-Unknown: Mwoauthconsumerregistration-propose-text does not display correctly - https://phabricator.wikimedia.org/T158292#3034618 (10MarcoAurelio) 05Open>03Invalid I guess then this is a wontfix. Sorry for wasting your time. [21:40:37] (03CR) 10Ladsgroup: "Why revert? It's not better to just move it to the better place? I put it here because some of the related CSS were already there and I di" [core] - 10https://gerrit.wikimedia.org/r/338159 (owner: 10VolkerE) [21:42:02] (03CR) 10Ladsgroup: ":(((((( I will fix this." [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338142 (owner: 10Jforrester) [21:42:56] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/Echo] - 10https://gerrit.wikimedia.org/r/338200 (owner: 10L10n-bot) [21:44:18] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/338207 (owner: 10L10n-bot) [21:45:12] 06Security-Team: Statistics on Captcha success/failure rate - https://phabricator.wikimedia.org/T152219#3034642 (10Reedy) [21:45:50] 10UI-Standardization, 06Community-Liaisons, 10Reading-Community-Engagement, 10Vector, and 2 others: Align Vector skin with WikimediaUI color palette - https://phabricator.wikimedia.org/T153043#3034644 (10Ladsgroup) I would love to see screenshots [21:46:04] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/GuidedTour] - 10https://gerrit.wikimedia.org/r/338210 (owner: 10L10n-bot) [21:46:50] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog, 13Patch-For-Review: Feed list item cards sometimes have null callback set inappropriately [Lollipop+, Support library 25.1.0+] - https://phabricator.wikimedia.org/T158347#3034645 (10Mholloway) [21:47:33] (03PS1) 10Ladsgroup: Revert "Revert "Use OOjs UI icons"" [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338215 [21:47:40] 10Android-app-Bugs, 06Wikipedia-Android-App-Backlog, 13Patch-For-Review: Feed list item cards sometimes have null callback set inappropriately [Lollipop+, Support library 25.1.0+] - https://phabricator.wikimedia.org/T158347#3034277 (10Mholloway) [21:48:17] 10ConfirmEdit (CAPTCHA extension): Update logging in ConfirmEdit - https://phabricator.wikimedia.org/T157735#3034649 (10Reedy) Seems VE captcha logs (and hence, stats) may also be different... See also https://edit-analysis.wmflabs.org/compare/ and T136859 [21:49:32] (03CR) 10VolkerE: "Reverting and re-appliying at different location seems more appropriate. But I don't care too much either ways. Don't have time to go deep" [core] - 10https://gerrit.wikimedia.org/r/338159 (owner: 10VolkerE) [21:50:32] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#3034652 (10Volker_E) @Dvorapa Where do you get that from: > users just don't even notice there is some fourth button/link for cancel... [21:51:16] (03CR) 10Ladsgroup: "Correct me if I'm wrong. There are two parts needing fix: 1- It should not inject the css in mobile 2- (optional?) It should inject it on " [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338215 (owner: 10Ladsgroup) [21:53:47] 07Design, 10VisualEditor, 10VisualEditor-Tables, 15User-Ryasmeen, and 4 others: There should be a visual indication that setting a table's properties to 'sortable' worked - https://phabricator.wikimedia.org/T139072#3034656 (10Ryasmeen) [21:56:53] 10MediaWiki-extensions-OAuth, 10Wikimedia-General-or-Unknown: Mwoauthconsumerregistration-propose-text does not display correctly - https://phabricator.wikimedia.org/T158292#3034662 (10Tgr) Yeah, I don't think there is any reasonable way to loosen this restriction. Inline styles should still work. [21:56:56] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034663 (10Jdlrobson) @tbayer see above ^ To summarise the gif: 1) User navigates to wiki/1 (triggers page loaded) 2) As soon... [21:57:01] (03PS9) 10Jdlrobson: Track document visibility in reading depth schema [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/336670 (https://phabricator.wikimedia.org/T155639) [21:58:27] 10MediaWiki-Vagrant: Vagrant stops accepting SSH key after provisioning - https://phabricator.wikimedia.org/T158258#3034665 (10Tgr) 05Open>03Invalid Destroying and rebuilding the box seems to have fixed the issue so I guess there is no point in putting more effort to it. [21:58:48] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 13Patch-For-Review, 03Reading-Web-Sprint-92, and 2 others: Image sticks out underneath the container - https://phabricator.wikimedia.org/T153840#3034683 (10Jdlrobson) [21:59:23] (03CR) 10Ladsgroup: "I agree but one commit is better than two commits. I'm making a patch now." [core] - 10https://gerrit.wikimedia.org/r/338159 (owner: 10VolkerE) [21:59:39] (03PS1) 10Karima Rafes: Problem when the language is different between the user language and the content of Wiki for the page RDFSave [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338243 [22:00:09] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/MultimediaViewer] - 10https://gerrit.wikimedia.org/r/338223 (owner: 10L10n-bot) [22:01:02] (03CR) 10Jdlrobson: [C: 04-1] "Yup." [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338215 (owner: 10Ladsgroup) [22:01:04] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/MobileFrontend] - 10https://gerrit.wikimedia.org/r/338222 (owner: 10L10n-bot) [22:02:55] (03CR) 10Karima Rafes: [V: 032 C: 032] Problem when the language is different between the user language and the content of Wiki for the page RDFSave [extensions/LinkedWiki] - 10https://gerrit.wikimedia.org/r/338243 (owner: 10Karima Rafes) [22:03:14] (03PS5) 10Reedy: Add a script to delete old fancy captchas [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) [22:03:17] (03CR) 10jenkins-bot: Localisation updates from https://translatewiki.net. [extensions/QuickSurveys] - 10https://gerrit.wikimedia.org/r/338241 (owner: 10L10n-bot) [22:03:26] (03CR) 10Reedy: [C: 031] "Tested working on WMF wikis :D" [extensions/ConfirmEdit] - 10https://gerrit.wikimedia.org/r/338136 (https://phabricator.wikimedia.org/T158327) (owner: 10Reedy) [22:07:42] (03CR) 10Bmansurov: Position image correctly inside the card (031 comment) [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338166 (https://phabricator.wikimedia.org/T153840) (owner: 10TheDJ) [22:12:16] 10MediaWiki-extensions-WikibaseRepository, 10ValueView, 10Wikidata, 07Story: [Story] Support multiple scripts for one language - https://phabricator.wikimedia.org/T97882#3034701 (10GerardM) Hoi, What is meant by the cn and hk? It probably has nothing to do with a script .. a script has four characters. Con... [22:12:26] 10QuarryBot-enwiki: wm-bot config for repo messages - https://phabricator.wikimedia.org/T158355#3034703 (10Zppix) [22:12:58] 10QuarryBot-enwiki: wikibugs config for repo messages - https://phabricator.wikimedia.org/T158355#3034717 (10Zppix) [22:22:00] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034745 (10Tbayer) [22:24:10] (03PS8) 10Gergő Tisza: Add API endpoints [extensions/PageViewInfo] - 10https://gerrit.wikimedia.org/r/320326 (https://phabricator.wikimedia.org/T144865) [22:24:13] (03PS1) 10Ladsgroup: Move wpSummary from shared.css to mediawiki.action.edit.styles.css [core] - 10https://gerrit.wikimedia.org/r/338273 [22:26:56] (03CR) 10Gergő Tisza: Add API endpoints (031 comment) [extensions/PageViewInfo] - 10https://gerrit.wikimedia.org/r/320326 (https://phabricator.wikimedia.org/T144865) (owner: 10Gergő Tisza) [22:27:53] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034754 (10Tbayer) I kind of thought we had sorted out that case already, but I just tried to clarify it in the task descripti... [22:28:27] (03CR) 10Ladsgroup: "I made I06ca700ffda9013a59b58b09ad56ada8694944a5 which I think would be good for now." [core] - 10https://gerrit.wikimedia.org/r/338159 (owner: 10VolkerE) [22:29:25] 10MediaWiki-extensions-ORES, 10Revision-Scoring-As-A-Service-Backlog: Request scores when someone checks out edits that are not stored in ores_classification - https://phabricator.wikimedia.org/T143612#3034756 (10Tgr) Bots use the API which will only load ORES data when explicitly asked. The GUI can also easil... [22:29:52] (03CR) 10jerkins-bot: [V: 04-1] Add API endpoints [extensions/PageViewInfo] - 10https://gerrit.wikimedia.org/r/320326 (https://phabricator.wikimedia.org/T144865) (owner: 10Gergő Tisza) [22:30:28] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-92: Allow page previews to be rolled out to 90% of users in stage 0 - https://phabricator.wikimedia.org/T157700#3034757 (10bmansurov) a:03bmansurov [22:31:30] (03CR) 10Ladsgroup: "I'm not sure adding icons using js would be a good idea. Lots of people disable js and as a rule of thumb they should not lose too much fu" [extensions/FlaggedRevs] - 10https://gerrit.wikimedia.org/r/338215 (owner: 10Ladsgroup) [22:32:53] 10MediaWiki-extensions-ORES, 10Revision-Scoring-As-A-Service-Backlog: Request scores when someone checks out edits that are not stored in ores_classification - https://phabricator.wikimedia.org/T143612#3034761 (10Ladsgroup) I know bots use API ;) I'm talking about crawlers [22:34:24] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-92: Allow page previews to be rolled out to 90% of users in stage 0 - https://phabricator.wikimedia.org/T157700#3034762 (10bmansurov) [22:35:04] 10UI-Standardization, 06Community-Liaisons, 10Reading-Community-Engagement, 10Vector, and 2 others: Align Vector skin with WikimediaUI color palette - https://phabricator.wikimedia.org/T153043#3034763 (10Volker_E) [22:35:21] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-92: Allow page previews to be rolled out to 90% of users in stage 0 - https://phabricator.wikimedia.org/T157700#3013690 (10bmansurov) @ovasileva I've updated the description to make things clearer. No need to mention roll out wiki... [22:36:02] 10MediaWiki-extensions-JsonConfig, 07Wikimedia-log-errors: Cannot access property on non-object in JCTabularContent.php on line 40 - https://phabricator.wikimedia.org/T158356#3034767 (10MaxSem) [22:38:01] 10MediaWiki-extensions-WikimediaMaintenance, 06Labs, 10Tool-Labs: Make maintance script for sending annual survey emails - https://phabricator.wikimedia.org/T148783#3034796 (10scfc) p:05Triage>03Low [22:40:17] (03PS1) 10Cenarium: [WIP] Replace EditPage with an edit model, controller and editor class [core] - 10https://gerrit.wikimedia.org/r/338276 [22:42:18] 10MediaWiki-extensions-OATHAuth, 06Wikipedia-iOS-App-Backlog, 10iOS-app-Bugs, 10iOS-app-feature-Login, and 2 others: Update styles for login and create account flows - https://phabricator.wikimedia.org/T158142#3027998 (10cmadeo) [22:43:49] (03CR) 10Isarra: [C: 04-1] "Not as bad as I expected given how weird some of the colours in the palette are, but some of the changes do stand out enough that people a" (032 comments) [skins/Vector] - 10https://gerrit.wikimedia.org/r/338158 (https://phabricator.wikimedia.org/T153043) (owner: 10VolkerE) [22:46:27] 10MediaWiki-extensions-OATHAuth, 06Wikipedia-iOS-App-Backlog, 10iOS-app-Bugs, 10iOS-app-feature-Login, and 2 others: Update login interface - https://phabricator.wikimedia.org/T150985#3034846 (10cmadeo) @mhurd after the creation of tickets T158142 + T158253, update of T154725 (to include log in + CAPTCHA s... [22:46:40] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 03Reading-Web-Sprint-92: Allow page previews to be rolled out to 90% of logged-out users - https://phabricator.wikimedia.org/T157700#3034850 (10bmansurov) [22:47:04] 10MediaWiki-extensions-OATHAuth, 06Wikipedia-iOS-App-Backlog, 10iOS-app-Bugs, 10iOS-app-feature-Login, and 2 others: Update login interface - https://phabricator.wikimedia.org/T150985#3034854 (10cmadeo) [22:47:45] 10MediaWiki-extensions-OATHAuth, 06Wikipedia-iOS-App-Backlog, 10iOS-app-Bugs, 10iOS-app-feature-Login, and 2 others: Update login interface - https://phabricator.wikimedia.org/T150985#2803668 (10cmadeo) [22:48:03] (03CR) 10jerkins-bot: [V: 04-1] [WIP] Replace EditPage with an edit model, controller and editor class [core] - 10https://gerrit.wikimedia.org/r/338276 (owner: 10Cenarium) [22:50:14] 10MediaWiki-extensions-WikimediaIncubator: Auto-generated infopages incorrectly links to the current page for Wikipedia - https://phabricator.wikimedia.org/T117023#3034857 (10StevenJ81) I'd like to request that this item be pushed up to become the next item on the Incubator workboard to be pushed up. This is rea... [23:00:43] 10MediaWiki-Categories, 10MediaWiki-Special-pages, 06Wikisource, 07Wikimedia-log-errors: Special:Categories on wikisource.org -> "Exception encountered, of type "Wikimedia\Assert\ParameterAssertionException" error - https://phabricator.wikimedia.org/T99736#3034882 (10TTO) ;I think there would be value in g... [23:02:45] 10MediaWiki-Export-or-Import: Importing XML dumps should validate that the target wiki has the same namespaces as the pages being imported - https://phabricator.wikimedia.org/T64111#3034889 (10TTO) >>! In T64111#3034109, @Krauss wrote: > Hi , I have big problem, the "no alert", "no notice" (even with --debug) ab... [23:03:11] 10MediaWiki-API: Add a prop=tables for fetching data for tables on a page - https://phabricator.wikimedia.org/T158339#3034893 (10Anomie) 05Open>03declined Lego's suggestion is your best bet. The parser doesn't expose the tables like you ask, and we're not likely to reimplement half of the parser to get them... [23:04:59] (03PS3) 10Mholloway: Update revert notification styling [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337899 (https://phabricator.wikimedia.org/T150477) [23:05:01] (03PS1) 10Mholloway: Update revert help dialog styling [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338278 (https://phabricator.wikimedia.org/T150477) [23:07:26] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3034896 (10Jdlrobson) I'm struggling to explain this but I'm hearing contradictory information here. I hope this set of exampl... [23:10:14] (03CR) 10Mholloway: Update revert notification styling (032 comments) [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/337899 (https://phabricator.wikimedia.org/T150477) (owner: 10Mholloway) [23:12:13] 10MediaWiki-Page-editing, 10Architecture: Replace EditPage to decouple saving logic from edit processing and user interface - https://phabricator.wikimedia.org/T158359#3034911 (10Cenarium) [23:13:37] 10Android-app-Bugs, 10Android-app-feature-Offline, 10Android-app-goals-2017-Jan-Mar-Q3, 06Wikipedia-Android-App-Backlog (Kanban): Link preview does not search for articles in cache - https://phabricator.wikimedia.org/T149991#3034926 (10Niedzielski) @Kaartic, loadContentFromSavedPage() retrieves pages saved... [23:14:51] (03PS1) 10Chelsyx: Note about internally referred traffic being miscategorized [wikimedia/discovery/wonderbolt] - 10https://gerrit.wikimedia.org/r/338279 (https://phabricator.wikimedia.org/T154722) [23:17:01] 06Discovery, 06Discovery-Analysis (Current work): Analyse results of the swap2and3 search test - https://phabricator.wikimedia.org/T136017#2319157 (10chelsyx) a:03chelsyx [23:17:16] (03PS2) 10Mholloway: FIX: Revert to Android Support Library 25.0.1 [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338157 (https://phabricator.wikimedia.org/T158347) [23:17:25] 10MediaWiki-extensions-JsonConfig, 10Commons-Datasets, 03Interactive-Sprint: Deploy patch for T154075 - https://phabricator.wikimedia.org/T158132#3034936 (10MaxSem) 05Open>03Resolved a:03MaxSem Doned. [23:17:51] 10ArchCom-RfC: RFC: Disabling LocalisationUpdate on WMF wikis - https://phabricator.wikimedia.org/T158360#3034940 (10Reedy) [23:18:15] 10ArchCom-RfC, 10Wikimedia-General-or-Unknown, 07RfC: RFC: Disabling LocalisationUpdate on WMF wikis - https://phabricator.wikimedia.org/T158360#3034952 (10Reedy) [23:18:20] (03PS1) 10Ottomata: Fix lint complaints, update to version 0.0.2, change default port to 8092 [services/eventstreams] - 10https://gerrit.wikimedia.org/r/338283 [23:19:04] 06Wikipedia-Android-App-Backlog, 07Spike: Identify memory hogs - https://phabricator.wikimedia.org/T158361#3034955 (10Niedzielski) [23:19:13] (03PS1) 10Ottomata: [WIP] Serving Swagger UI spec docs at /doc [services/eventstreams] - 10https://gerrit.wikimedia.org/r/338284 (https://phabricator.wikimedia.org/T158066) [23:19:27] (03CR) 10Ottomata: [V: 032 C: 032] Fix lint complaints, update to version 0.0.2, change default port to 8092 [services/eventstreams] - 10https://gerrit.wikimedia.org/r/338283 (owner: 10Ottomata) [23:19:57] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#3034970 (10Dvorapa) @Volker_E I haven't got any statistics, but I can say my experience. I edit Wikipedia pages since cca 2009 (as re... [23:20:00] 06Wikipedia-Android-App-Backlog: Explore icon in the bottom bar and Wikipedia icon shown in home page are not displayed correctly - https://phabricator.wikimedia.org/T151300#3034973 (10Niedzielski) @Kaartic, sure I've opened a spike, T158361, to perform a profile of the app and identify large consumers [23:24:16] 10MediaWiki-extensions-OATHAuth: Consider changing OATH scratch tokens to use six digits - https://phabricator.wikimedia.org/T158153#3034984 (10Tgr) >>! In T158153#3032322, @Parent5446 wrote: > As I've been repeatedly saying, the probability of failure //decreases// with each guess you make. The actual probabili... [23:26:37] 10ArchCom-RfC, 10Wikimedia-General-or-Unknown, 07I18n, 07RfC: RFC: Disabling LocalisationUpdate on WMF wikis - https://phabricator.wikimedia.org/T158360#3034990 (10Reedy) [23:27:20] 10UI-Standardization, 06Editing-Department, 13Patch-For-Review, 07User-notice: Convert EditPage.php to use OOUI rather than MW UI - https://phabricator.wikimedia.org/T111088#1593963 (10JGirault) Do we even **need** a //Cancel// button? IMHO, we don't. I would get rid of it. [23:30:57] 10MediaWiki-extensions-WikimediaIncubator, 15User-Hydriz: Auto-generated infopages incorrectly links to the current page for Wikipedia - https://phabricator.wikimedia.org/T117023#3035015 (10Hydriz) I will have a look at this and see what I can do. [23:30:59] (03PS9) 10Gergő Tisza: Add API endpoints [extensions/PageViewInfo] - 10https://gerrit.wikimedia.org/r/320326 (https://phabricator.wikimedia.org/T144865) [23:31:33] (03PS1) 10Jdlrobson: Do not merge as is(Squash if needed) [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/338286 [23:31:35] (03PS1) 10Jdlrobson: Do not merge as is(Squash if needed) [extensions/WikimediaEvents] - 10https://gerrit.wikimedia.org/r/338287 [23:32:47] (03PS3) 10Pmiazga: Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 [23:33:36] 06Reading-Web-Backlog, 13Patch-For-Review, 03Reading-Web-Sprint-92, 05WMF-deploy-2017-02-21_(1.29.0-wmf.13): Create reading depth schema - https://phabricator.wikimedia.org/T155639#3035017 (10Jdlrobson) I've tried to premeditate what we will want to do here and write patches for all options I can forsee: *... [23:34:14] 10UI-Standardization, 10Gerrit, 13Patch-For-Review: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3032714 (10JGirault) Are we aiming at several patches here? The ticket description doesn't tell. Otherwise according to the patch above, the title should b... [23:35:22] (03PS2) 10Jdlrobson: Position image correctly inside the card [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338166 (https://phabricator.wikimedia.org/T153840) (owner: 10TheDJ) [23:36:38] 07Wikimedia-log-errors: Throttler data not found for {user} - https://phabricator.wikimedia.org/T158364#3035033 (10thcipriani) [23:37:15] (03CR) 10Jdlrobson: [C: 032] Position image correctly inside the card [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338166 (https://phabricator.wikimedia.org/T153840) (owner: 10TheDJ) [23:37:20] 10Dumps-Generation: Investigate dump failures for zhwiki, svwiki, enwiki Feb 2017 - https://phabricator.wikimedia.org/T157556#3035045 (10ArielGlenn) 7z files for all bz2 files are now in place; we are waiting for the last bz2 file to complete (by tomorrow morning) and then the last 7z file to be generated from t... [23:37:27] (03PS1) 10BearND: On this day: wrap individual endpoint responses in object [services/mobileapps] - 10https://gerrit.wikimedia.org/r/338288 [23:37:29] (03PS1) 10BearND: WIP: On this day: add swagger spec [services/mobileapps] - 10https://gerrit.wikimedia.org/r/338289 [23:38:08] 10UI-Standardization, 10Gerrit, 13Patch-For-Review: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3032714 (10demon) I wouldn't spend a ton of energy on this to be honest. Gerrit's in the process of swapping to a totally new UI (optional with the next rele... [23:38:16] 06Reading-Web-Backlog, 10Page-Previews (2016-17-Q3-Goal), 13Patch-For-Review, 03Reading-Web-Sprint-92, and 2 others: Image sticks out underneath the container - https://phabricator.wikimedia.org/T153840#3035048 (10Jdlrobson) I verified this fix locally. Soon you'll be able to test it by hovering over first... [23:38:19] (03CR) 10jerkins-bot: [V: 04-1] Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 (owner: 10Pmiazga) [23:40:40] (03PS5) 10Mholloway: Prevent user attempting to create a duplicate-titled reading list [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/336349 (https://phabricator.wikimedia.org/T156017) [23:40:42] (03PS1) 10Mholloway: Prevent user from creating a list with an empty title [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338290 [23:41:21] (03Merged) 10jenkins-bot: Position image correctly inside the card [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338166 (https://phabricator.wikimedia.org/T153840) (owner: 10TheDJ) [23:41:27] 10UI-Standardization, 05MW-1.29-release-notes, 13Patch-For-Review, 07User-notice, and 2 others: Align MediaWiki core UI elements with WikimediaUI color palette - https://phabricator.wikimedia.org/T152025#2835852 (10Od1n) About https://gerrit.wikimedia.org/r/#/c/337470/, isn't `input#wpSummary:active` useless? [23:41:47] 07Wikimedia-log-errors: Session "{session}": Metadata merge failed: {exception} - https://phabricator.wikimedia.org/T158365#3035056 (10thcipriani) [23:42:02] 10UI-Standardization, 10Gerrit, 13Patch-For-Review: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3032714 (10Volker_E) Citing (myself) from the patch set: > In general I'd recommend not start aligning this tool with WMUI style guide, as it would go far be... [23:43:04] (03CR) 10Jdlrobson: [C: 031] Resize thumbnails images returned by REST endpoint (032 comments) [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) (owner: 10Pmiazga) [23:44:40] (03CR) 10Jdlrobson: [C: 04-1] Hygiene: Move EXTRACT_LENGTH to constants (031 comment) [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 (owner: 10Pmiazga) [23:45:14] (03CR) 10jerkins-bot: [V: 04-1] Prevent user from creating a list with an empty title [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338290 (owner: 10Mholloway) [23:46:20] 10UI-Standardization, 10Gerrit, 13Patch-For-Review: Make gerrit colors align with WikimediaUI color palette - https://phabricator.wikimedia.org/T158298#3035085 (10JGirault) Agree with that is said above. I'm also afraid of the scope of this ticket, that's why I asked for more details in the description. [23:48:26] 07Wikimedia-log-errors: Session "{session}": Unverified user provided and no metadata to auth it - https://phabricator.wikimedia.org/T158367#3035087 (10thcipriani) [23:48:39] (03PS4) 10Pmiazga: Hygiene: Move EXTRACT_LENGTH to constants [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338164 [23:48:41] (03CR) 10Jdlrobson: Hygiene: Use CommonJS in gateway files (031 comment) [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338162 (owner: 10Pmiazga) [23:49:12] 10MediaWiki-extensions-Wikilabels, 10UI-Standardization, 10Revision-Scoring-As-A-Service-Backlog, 07Accessibility, and 2 others: Replace abandoned blue in WikiLabels - https://phabricator.wikimedia.org/T158369#3035113 (10Volker_E) [23:50:08] (03PS2) 10Mholloway: Prevent user from creating a list with an empty title [apps/android/wikipedia] - 10https://gerrit.wikimedia.org/r/338290 [23:52:22] 10MediaWiki-Documentation, 10TopLists, 07Documentation: Create documentation page on MediaWiki.org for TopLists as Extension:TopLists - https://phabricator.wikimedia.org/T158370#3035129 (10SamanthaNguyen) [23:58:16] (03PS1) 10VolkerE: Replace abandoned blue with overhauled palette's blue [extensions/WikiLabels] - 10https://gerrit.wikimedia.org/r/338292 [23:58:42] (03PS2) 10VolkerE: Replace abandoned blue with overhauled palette's blue [extensions/WikiLabels] - 10https://gerrit.wikimedia.org/r/338292 (https://phabricator.wikimedia.org/T158369) [23:59:13] (03PS4) 10Pmiazga: Resize thumbnails images returned by REST endpoint [extensions/Popups] - 10https://gerrit.wikimedia.org/r/338165 (https://phabricator.wikimedia.org/T156800) [23:59:58] 06Security-Team: Statistics on Captcha success/failure rate - https://phabricator.wikimedia.org/T152219#3035150 (10Reedy) {F5660883 size=full}