[00:04:11] matt_flaschen, how do you add a class to wikitext? Do I need to change from [[{{{archive}}}]] to ?? [00:04:52] mooeypoo, no. Wikitext doesn't support ; you need to wrap it. Example: https://www.wikidata.org/w/index.php?title=Template:Wikitext_talk_page_converted_to_Flow&diff=249441657&oldid=239869322 [00:07:00] (03PS1) 10Aaron Schulz: Defer "lastuse" preference updates [extensions/PageTriage] - 10https://gerrit.wikimedia.org/r/236996 (https://phabricator.wikimedia.org/T92357) [00:07:43] matt_flaschen, https://he.wikipedia.org/w/index.php?title=%D7%AA%D7%91%D7%A0%D7%99%D7%AA%3A%D7%93%D7%A3_%D7%A7%D7%95%D7%93_%D7%95%D7%99%D7%A7%D7%99_%D7%9E%D7%95%D7%9E%D7%A8_%D7%9C%D7%96%D7%A8%D7%99%D7%9E%D7%94&type=revision&diff=17459308&oldid=17161759 [00:08:23] the irony is that I copy pasted this into Sublime (which shows RTL *backwards*) then added the there, then copy/pasted back. Hell if I deal with HTML tags in an RTL context directly.... [00:08:27] :S [00:09:22] mooeypoo, heh. Looks right, except for the part where the time magic work just decides to move all the way the other end of the link. But I think that's just RTL being RTL. [00:09:28] s/magic work/magic word/ [00:09:45] Though 'magic work' is very applicable to making syntax changes involving LTR text in an RTL language. [00:10:04] Yeah it's RTL. If you notice, the diff only marked the change as the span wrapping. The rest is just the flipping of the context [00:10:13] * matt_flaschen nods [00:10:14] And yes. That. :D [00:11:17] (03PS3) 10Mooeypoo: Set the guided tour cookie in onUserSaveOptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236993 [00:31:49] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: When opt-in is enabled, manually add class flow-link-to-archive - https://phabricator.wikimedia.org/T111882#1618852 (10DannyH) 3NEW [00:32:20] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: When opt-in is enabled, manually add class flow-link-to-archive for new wikis - https://phabricator.wikimedia.org/T111882#1618862 (10DannyH) [00:32:38] matt_flaschen I made a ticket for the thing you asked me to remind you of; https://phabricator.wikimedia.org/T111882 [00:34:01] 6Collaboration-Team-Backlog, 10Flow, 7WorkType-NewFunctionality: When opt-in is enabled, manually add class flow-link-to-archive for new wikis (if they have the old template without 'flow-link-to-archive') - https://phabricator.wikimedia.org/T111882#1618870 (10Mattflaschen) [00:34:20] dannyh, thanks. I moved it to the backlog, since we did it for what I think are the only 4 in this round. [00:36:33] okay, cool [00:36:47] (03PS1) 10Mooeypoo: Set line-height: 0; to empty AnonWarningWidget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236998 [00:38:01] boo for indentation changes in gerrit. [00:55:03] (03PS1) 10Mooeypoo: Add a calculated min-height for the editor widget placeholder [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237005 [00:57:20] (03PS2) 10Mooeypoo: Add a calculated min-height for the editor widget placeholder [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237005 [00:58:31] I am fairly amused by this commit [01:01:03] mooeypoo, you have a very demanding definition of HACK. That seems pretty legit. [01:01:32] matt_flaschen, I felt like this was hacking the core values of stylesheets. [01:01:38] But you're right. This is more of a "NOTE:" [01:01:49] "BEFORE YOU CRINGE:" [01:02:35] (03PS3) 10Mooeypoo: Add a calculated min-height for the editor widget placeholder [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237005 [01:02:40] matt_flaschen, I removed 'HACK' [01:02:49] :) [01:03:00] the fact that CSS knows how to calculate different units and LESS doesn't is atrocious though [01:03:41] mooeypoo, it couldn't do it on the server. But it could (in theory) just pass it through if you wrote: [01:04:06] min-height: calc(@editorMinHeight + @editorToolbarHeight); [01:04:14] And then just fill the values and let CSS do the work. [01:04:34] nope because @editorMinHeight is em and @editorToolbarHeight is px [01:05:05] which LESS ignores. So you'd get something like calc( 30em + 14px ) = 44em [01:05:13] mooeypoo, yeah, LESS would have to special-case that syntax and leave it untouched. [01:05:28] which is ridiculous. So we have to escape the "calc()" routines... which we do often in LESS, but this time there were 2 less variables [01:05:36] so I was just amused by the half-escaping [01:05:52] mooeypoo, this also doesn't work in IE 8 (natch) (which we try to support), Opera Mini, or older Android. [01:06:00] yeah, it should've,but it *thinks* it knows how to calculate [01:06:11] wait, really? why? [01:06:13] mooeypoo, seems like it should degrade acceptably in those browsers, though? [01:06:23] mooeypoo, they don't have calc: http://caniuse.com/#search=calc [01:06:42] I am not sure. What would be the values in that case? Just nothing, or something huge like 44em... [01:06:43] oh [01:07:00] mooeypoo, I think it will drop the entire min-height. [01:07:03] well, in that case, the placeholder will not have a min-height which would cause the editor to do what it did so far [01:07:14] Yeah, that's what I figured. [01:07:24] we could have a fallback though, for only the @editorMinHeight [01:07:44] it wouldn't be perfect, but it would be close enough. The "jump" between sizes would at least be fairly small [01:09:24] hm, we have a bunch of 'calc's in Echo too [01:09:33] we need to see how these look like in those browsers [01:10:01] (03PS4) 10Mooeypoo: Add a calculated min-height for the editor widget placeholder [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237005 [01:10:39] I added the fallback [01:11:15] ok, I need to go meet a friend. [01:11:22] have a good evening/night! [01:11:28] catch you tomorrow [01:12:44] mooey|away, you too. [01:18:10] 3Collaboration-Team-Current, 10Flow, 7Wikimedia-log-errors: BadMethodCallException on history of a Flow page - https://phabricator.wikimedia.org/T111494#1618960 (10Mattflaschen) [01:45:32] (03PS1) 10Mattflaschen: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237012 (https://phabricator.wikimedia.org/T111494) [01:51:09] Don't merge that yet, I'm about to simplify it slightly. [01:52:17] (03PS2) 10Mattflaschen: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237012 (https://phabricator.wikimedia.org/T111494) [01:53:16] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 7Wikimedia-log-errors: BadMethodCallException on history of a Flow page - https://phabricator.wikimedia.org/T111494#1619043 (10Mattflaschen) It's saying there's an inconsistency between two sources of the revision ID. But I don't know either of them,... [01:56:05] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1619044 (10kaldari) 3NEW [04:10:53] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1619289 (10Legoktm) [05:08:01] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1619311 (10Mooeypoo) The new popup is using the OOUI MediaWiki theme (at least in Vector) and a standard OO.ui.PopupElement that follows the unified design that the MediaWiki the... [08:41:31] 6Collaboration-Team-Backlog, 10Flow: Rename page in ruwiki - https://phabricator.wikimedia.org/T111918#1619845 (10Sunpriat) 3NEW [08:41:45] 3Collaboration-Team-Current, 10Flow, 7I18n: French needs a different translation for hide vs. suppress in Flow - https://phabricator.wikimedia.org/T111778#1619853 (10Trizek-WMF) >>! In T111778#1618653, @Mattflaschen wrote: > However, anyone can also see a hidden post. Tests I've practiced show the contrary... [08:47:30] (03CR) 10Matthias Mullie: [C: 032] Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237012 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [08:50:23] (03Merged) 10jenkins-bot: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237012 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [09:07:25] 6Collaboration-Team-Backlog, 10Flow, 10MediaWiki-extensions-GuidedTour, 7Documentation: Create a quick tour about Flow, with most important things to know about - https://phabricator.wikimedia.org/T111528#1619904 (10Trizek-WMF) >>! In T111528#1618621, @Mattflaschen wrote: > This could potentially use Guide... [09:14:42] (03PS2) 10Matthias Mullie: Move lock up in the Flow drop down menu [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236583 (https://phabricator.wikimedia.org/T110083) (owner: 10Mooeypoo) [09:17:26] (03CR) 10Matthias Mullie: [C: 032] Move lock up in the Flow drop down menu [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236583 (https://phabricator.wikimedia.org/T110083) (owner: 10Mooeypoo) [09:19:57] (03Merged) 10jenkins-bot: Move lock up in the Flow drop down menu [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236583 (https://phabricator.wikimedia.org/T110083) (owner: 10Mooeypoo) [09:24:06] 3Collaboration-Team-Current, 10Flow, 5Blocked-by-schema-change, 7Database, and 2 others: Do backfill and final schema change for "Segregate Reference objects by source wiki." - https://phabricator.wikimedia.org/T111084#1619967 (10jcrespo) a:3jcrespo [09:30:00] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Ass an external link on Flow is broken - https://phabricator.wikimedia.org/T111926#1620001 (10Trizek-WMF) 3NEW [09:53:26] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 5WMF-deploy-2015-09-01_(1.26wmf21), and 3 others: Opt-in for Flow on your own user talk page - https://phabricator.wikimedia.org/T98270#1620063 (10Sunpriat) > Text for email notification > > Title: New discussion system on User talk:Name Whether a "... [10:41:44] (03PS3) 10Sbisson: [WIP] Topic Summary Widget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236870 (https://phabricator.wikimedia.org/T111102) [10:41:47] (03CR) 10jenkins-bot: [V: 04-1] [WIP] Topic Summary Widget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236870 (https://phabricator.wikimedia.org/T111102) (owner: 10Sbisson) [10:44:39] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: Fix toggling Flow to false in BetaFeatures - https://phabricator.wikimedia.org/T111830#1620168 (10matthiasmullie) [10:46:05] (03PS4) 10Sbisson: [WIP] Topic Summary Widget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236870 (https://phabricator.wikimedia.org/T111102) [10:47:30] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: Fix toggling Flow to false in BetaFeatures - https://phabricator.wikimedia.org/T111830#1620193 (10matthiasmullie) a:3matthiasmullie [12:10:25] (03CR) 10Sbisson: [C: 032] Browser tests: adjust to actual archive template [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236011 (owner: 10Sbisson) [12:10:38] (03CR) 10Sbisson: [C: 032] Browser tests: Special:EnableFlow without header [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236013 (owner: 10Sbisson) [12:13:27] (03Merged) 10jenkins-bot: Browser tests: adjust to actual archive template [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236011 (owner: 10Sbisson) [12:13:58] (03Merged) 10jenkins-bot: Browser tests: Special:EnableFlow without header [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236013 (owner: 10Sbisson) [13:03:14] 6Collaboration-Team-Backlog, 10Echo: Revert echo back to one grey button on personal bar - https://phabricator.wikimedia.org/T111871#1620518 (10Revi) I second this. New design doesn't seem good, design looks scattered. [13:04:55] 6Collaboration-Team-Backlog, 10Echo: Revert echo back to one grey button on personal bar - https://phabricator.wikimedia.org/T111871#1620525 (10Paladox) I would say why not put tabs inside the button so that there is no need for two buttons doesn't look nice because if you have 0 notifications it makes it horr... [13:26:03] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22), and 2 others: Split notifications into Alerts and Messages - https://phabricator.wikimedia.org/T108190#1620597 (10Anomie) In case you want some feedback on this: I personally find the spacing to be somewhat excessiv... [13:48:22] o/ legoktm, you around? [13:48:58] I have an RFC to get flow enables and performance issues were raised. I was hoping to learn how much we know about them. [13:49:48] Second comment by AldNonymous here: https://meta.wikimedia.org/wiki/Meta:Requests_for_comment/Enable_flow_in_the_Research_talk_(203)_namespace#Comments [13:52:24] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Add an external link on Flow is broken - https://phabricator.wikimedia.org/T111926#1620643 (10Halfak) [13:55:07] 6Collaboration-Team-Backlog, 10Flow: Link creation dialog appears offscreen when editing flow board description. - https://phabricator.wikimedia.org/T111949#1620650 (10Halfak) 3NEW [13:57:15] 6Collaboration-Team-Backlog, 10Flow: Link creation dialog appears offscreen when editing flow board description. - https://phabricator.wikimedia.org/T111949#1620664 (10Halfak) Screenshot of the issue: http://imgur.com/MfhObB0 Browser: Chrome 45.0, Ubuntu Linux 14.04. [13:58:09] 6Collaboration-Team-Backlog, 10Flow: Mark resolved topics on the Table of Contents - https://phabricator.wikimedia.org/T106410#1620666 (10Trizek-WMF) Is it not a duplicate of {T99785} ? [14:06:28] * halfak waits patiently for the sun to rise on the west coast. [14:50:19] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Parsoid generates invalid HTML5 when a list is nested inside a tag - https://phabricator.wikimedia.org/T92040#1620785 (10ssastry) [14:52:12] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22), and 2 others: Split notifications into Alerts and Messages - https://phabricator.wikimedia.org/T108190#1620795 (10Pginer-WMF) > The colors of the badge + the closeness of the two badges are design issues I leave for... [16:09:28] 3Collaboration-Team-Current, 10Collaboration-Team-Sprint-E-Everywhere-2015-07-14, 10Flow, 5Patch-For-Review, 7WorkType-Maintenance: Migrate Flow content to new separate logical External Store - https://phabricator.wikimedia.org/T106363#1621115 (10DannyH) [16:17:00] 6Collaboration-Team-Backlog, 10Collaboration-Team-Sprint-E-Everywhere-2015-07-14, 10Flow, 5Patch-For-Review, 7WorkType-Maintenance: Migrate Flow content to new separate logical External Store - https://phabricator.wikimedia.org/T106363#1621148 (10DannyH) [16:20:59] (03PS1) 10Pginer: Reduce distance between notification badges [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) [16:25:08] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22), and 2 others: Split notifications into Alerts and Messages - https://phabricator.wikimedia.org/T108190#1621207 (10Pginer-WMF) >>! In T108190#1621170, @gerritbot wrote: > Change 237129 had a related patch set uploade... [16:36:04] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: Flow's Parsoid usage broken in test beta labs - https://phabricator.wikimedia.org/T111249#1621251 (10Etonkovidova) Cannot post a reply on testwiki: Unable to parse content due to a Parsoid failure. and [f625d2ab] Exception Caught: Conversion... [16:49:05] halfak: hey, looking [16:49:17] o/ legoktm [16:49:26] so I heard that translate wiki doesn't use Flow yet [16:49:43] So I think that the person who raises the issue may be thinking of Liquid Threads. [16:49:47] *raised [16:50:08] yeah, it doesn't [16:50:36] (03Abandoned) 10Matthias Mullie: Don't assume ve exists [extensions/Flow] - 10https://gerrit.wikimedia.org/r/227448 (owner: 10Matthias Mullie) [16:50:41] Do you guys have reports of substantial performance issues on old hardware/slow connection? [16:51:46] not that I'm aware of off the top of my head, matt_flaschen might know. Flow being slower isn't surprising, it loads a bunch of interactive javascript which includes VE too, compared to rendering plain HTML [16:52:28] Do you think there's something to the concerns around Flow being exclusionary to people with old hardware? [16:55:10] I don't think so [16:55:24] matt_flaschen is pretty good about testing and making sure IE8 works properly for example [17:15:25] I should test IE 8 more often. [17:15:37] I haven't in a while. [17:16:36] I am able to catch some issues without testing, though. [17:17:52] 6Collaboration-Team-Backlog, 10Flow: Rename page in ruwiki - https://phabricator.wikimedia.org/T111918#1621420 (10Mattflaschen) a:3DannyH [17:18:05] 3Collaboration-Team-Current, 10Flow: Rename page in ruwiki - https://phabricator.wikimedia.org/T111918#1619845 (10Mattflaschen) [17:27:58] (03CR) 10Mooeypoo: [C: 04-1] Reduce distance between notification badges (031 comment) [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) (owner: 10Pginer) [17:30:35] (03CR) 10Pginer: Reduce distance between notification badges (031 comment) [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) (owner: 10Pginer) [17:32:58] 3Collaboration-Team-Current, 10Flow, 7I18n: French needs a different translation for hide vs. suppress in Flow - https://phabricator.wikimedia.org/T111778#1621504 (10Mattflaschen) >>! In T111778#1619853, @Trizek-WMF wrote: >>>! In T111778#1618653, @Mattflaschen wrote: >> However, anyone can also see a hidden... [17:34:58] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22): Split notifications: minor display issues - https://phabricator.wikimedia.org/T111432#1621510 (10DannyH) 5Open>3Resolved Beautiful, thank you for the super fast discovery, diagnosis and fix. [17:37:06] (03PS2) 10Mooeypoo: Set line-height: 0; to empty AnonWarningWidget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236998 (https://phabricator.wikimedia.org/T110086) [17:38:14] 3Collaboration-Team-Current, 10Flow: Rename page in ruwiki - https://phabricator.wikimedia.org/T111918#1621529 (10DannyH) 5Open>3Resolved Okay, the page is moved! Let me know if there's anything else I can do. [17:39:56] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: Fix toggling Flow to false in BetaFeatures (opt-out) - https://phabricator.wikimedia.org/T111830#1621536 (10DannyH) [17:39:59] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 7WorkType-NewFunctionality: Use EditorWidget for topic summary - https://phabricator.wikimedia.org/T111102#1621537 (10Catrope) a:5SBisson>3Mooeypoo [17:43:37] 3Collaboration-Team-Current: Allow cross-wiki target for MediaWiki's feedback tool - https://phabricator.wikimedia.org/T111590#1621548 (10DannyH) p:5Triage>3Normal [17:44:21] 6Collaboration-Team-Backlog, 10Flow: Rename page in ruwiki - https://phabricator.wikimedia.org/T111918#1621553 (10DannyH) [17:55:05] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-extensions-ContentTranslation, 6WMF-Design, and 2 others: Notify about publishing milestones - https://phabricator.wikimedia.org/T99071#1621596 (10Pginer-WMF) [17:57:10] (03CR) 10Catrope: [C: 04-1] Set line-height: 0; to empty AnonWarningWidget (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236998 (https://phabricator.wikimedia.org/T110086) (owner: 10Mooeypoo) [17:58:54] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-extensions-ContentTranslation, 5ContentTranslation-Release7, 7Design: Encourage users to publish old inactive unpublished translations - https://phabricator.wikimedia.org/T89707#1621612 (10Pginer-WMF) [18:11:21] (03PS1) 10Mattflaschen: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf21) - 10https://gerrit.wikimedia.org/r/237165 (https://phabricator.wikimedia.org/T111494) [18:11:41] (03PS1) 10Mattflaschen: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237166 (https://phabricator.wikimedia.org/T111494) [18:30:15] 6Collaboration-Team-Backlog, 10Flow: Summarize: switching to wikitext mode displays old style icon - https://phabricator.wikimedia.org/T111984#1621716 (10Etonkovidova) 3NEW [18:31:44] matt_flaschen: it's totally fine : https://phabricator.wikimedia.org/T108760 Move "left a message on your talk page" Echo notification from Alerts to Messages [18:32:04] etonkovidova, View changes is working now? [18:32:28] matt_flaschen: View changes seem to be present only for that message [18:32:54] matt_flaschen: they used to be more prevalent - existed for Mention and regular posts [18:33:15] matt_flaschen: anyway, it's outside of that bug... [18:34:21] 6Collaboration-Team-Backlog, 10Flow, 10MediaWiki-extensions-GuidedTour, 7Documentation: Create a quick tour about Flow, with most important things to know about - https://phabricator.wikimedia.org/T111528#1621725 (10Mattflaschen) There is also the flowOptIn tour, but that only covers new topic form, old pr... [18:35:25] etonkovidova, we need to double-check if it existed for other types before. You filed a separate bug about that? [18:36:05] matt_flaschen: not yet. Checking today for View changes and comparing beta with production [18:36:42] (03PS2) 10Mooeypoo: Reduce distance between notification badges [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) (owner: 10Pginer) [18:37:29] pginer, I fixed up the commit, thanks for that! [18:38:13] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Add an external link on Flow is broken - https://phabricator.wikimedia.org/T111926#1621738 (10Mattflaschen) Note, this post was edited to remove the nowiki, so need to look in topic history. First version of post is at https://fr.wikipedia.org/w/index.php?titl... [18:38:19] pginer, also, I was thinking... ooui has "ButtonGroupWidget" ... we might be able to use it, and have it look a tad more consistent. The only technical problem would be adjusting the nojs view. https://doc.wikimedia.org/oojs-ui/master/demos/#widgets-mediawiki-mixed-ltr (See "Button sets") [18:38:23] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Add an external link on Flow is broken - https://phabricator.wikimedia.org/T111926#1621739 (10Mattflaschen) [18:43:12] I don’t think the badges fit exactly the button group model. [18:45:32] pginer, yeah, just a general suggestion. They are sort of a 'group' idea, but the group widget may be unnecessary [18:45:59] They also don't have a difference in styling when they're "pressed" [18:46:28] It would've made more sense if they did, like a sort of idea of toggling this one or that one, I think. [18:47:08] pginer, anyways, just an observation. The way things look now works great, I also tested in RTL and the distance correction is consistent [18:51:31] It’s a good point and it would be good to discuss with the UI standarization people where those fit conceptually. [18:52:06] (03PS1) 10Mooeypoo: Only show 'mark all as read' AFTER there are notifications [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237177 [18:54:48] pginer, speaking of UI standardization, I pinged you here https://phabricator.wikimedia.org/T111889 [18:55:32] The amusing thing is that this is probably the first time we have actual popups outside of VE's use... so... we may be the ones setting the standard? anyways, it's for your consideration. [18:59:04] 6Collaboration-Team-Backlog, 10Flow: [Regression] Editing upper post in nested thread opens all nested Replies - https://phabricator.wikimedia.org/T111987#1621796 (10Etonkovidova) 3NEW [18:59:08] 6Collaboration-Team-Backlog, 10Flow: Mark resolved topics on the Table of Contents - https://phabricator.wikimedia.org/T106410#1621803 (10Mattflaschen) This is already implemented. See https://www.mediawiki.org/wiki/Project:Support_desk for example (they often use it). Resolved topics are grayed in the TOC. [18:59:20] 6Collaboration-Team-Backlog, 10Flow: Mark resolved topics on the Table of Contents - https://phabricator.wikimedia.org/T106410#1621804 (10Mattflaschen) 5Open>3Resolved [19:01:13] pginer, mooeypoo are resolved topics supposed to have a check mark too? They seem to just be gray. [19:03:17] matt_flaschen: in Browse topics, resolved topics are displayed just grey. Without check mark. [19:04:04] etonkovidova, okay, thanks. [19:04:09] We did a quick iteration to distinguish them visually. The icon makes sense but that could make them more prominent while the goal, as I understood it, was to de-emphasize them in the ToC [19:05:20] You mean in the ToC or on the page [19:15:36] (03PS1) 10Mooeypoo: Add mediawiki.jqueryMsg dependency [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237180 [19:22:44] 6Collaboration-Team-Backlog, 10Flow, 10Parsoid: Add an external link on Flow is broken - https://phabricator.wikimedia.org/T111926#1621877 (10ssastry) 5Open>3Invalid a:3ssastry Looking at https://fr.wikipedia.org/w/index.php?title=Sujet:Sojlmrc8frif9b50&action=compare-post-revisions&topic_newRevision=s... [19:22:46] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1621880 (10Pginer-WMF) Shadows are helpful for communicating the spatial relationship of the different layers and provide contrast between them. According to our design guideline... [19:37:40] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22), and 2 others: Split notifications into Alerts and Messages - https://phabricator.wikimedia.org/T108190#1622074 (10violetto) I read the task description and some early replies, and only a glance of all the other mess... [19:43:30] mooeypoo, I meant the TOC. I think I just misremembered, and was further confused because a disabled indicator element is in the DOM (but that's probably just normal OO UI behavior). [19:55:28] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1622196 (10violetto) They have a 2px dropdown shadow at 90% opacity. Zoomed in image below of the dropdown menu: {F2562308} I don't think this was intentionally left out. It ha... [20:05:50] 6Collaboration-Team-Backlog, 10Echo: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1622259 (10Catrope) >>! In T111889#1622196, @violetto wnot a drote: > But it is halfway implemented in [[ https://doc.wikimedia.org/oojs-ui/master/demos/#widgets-mediawiki-vecto... [20:06:03] (03CR) 10Catrope: [C: 032] Add mediawiki.jqueryMsg dependency [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237180 (owner: 10Mooeypoo) [20:07:57] 6Collaboration-Team-Backlog, 10Echo, 10UI-Standardization: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1622276 (10Legoktm) [20:08:18] (03Merged) 10jenkins-bot: Add mediawiki.jqueryMsg dependency [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237180 (owner: 10Mooeypoo) [20:08:58] 6Collaboration-Team-Backlog, 10Echo, 10UI-Standardization: New notification drop-downs don't have drop shadows - https://phabricator.wikimedia.org/T111889#1622277 (10violetto) @catrope Yup. [20:08:58] (03CR) 10Catrope: [C: 032] Reduce distance between notification badges [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) (owner: 10Pginer) [20:10:32] RoanKattouw_away: https://phabricator.wikimedia.org/T111818 heh [20:11:03] (03Merged) 10jenkins-bot: Reduce distance between notification badges [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237129 (https://phabricator.wikimedia.org/T108190) (owner: 10Pginer) [20:11:55] (03CR) 10Catrope: [C: 032] Only show 'mark all as read' AFTER there are notifications [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237177 (owner: 10Mooeypoo) [20:13:59] (03Merged) 10jenkins-bot: Only show 'mark all as read' AFTER there are notifications [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237177 (owner: 10Mooeypoo) [20:16:29] (03CR) 10Catrope: Add a calculated min-height for the editor widget placeholder (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237005 (owner: 10Mooeypoo) [20:21:28] (03CR) 10Catrope: [C: 04-1] Set the guided tour cookie in onUserSaveOptions (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236993 (owner: 10Mooeypoo) [20:24:26] (03CR) 10Catrope: [C: 04-1] "-1ing per Legoktm on PS1: hardcoded date from last year" [extensions/Echo] - 10https://gerrit.wikimedia.org/r/145473 (https://bugzilla.wikimedia.org/47895) (owner: 10Legoktm) [20:28:58] (03PS1) 10Mooeypoo: Align popup footer buttons to take 50% width each [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 [20:29:04] legoktm, can you test this? ^ [20:29:11] sure [20:29:13] it should solve the local bug you saw [20:30:24] mooeypoo: Meh, middle-click on Echo notifications don't open in a new tab now. [20:30:34] (03PS2) 10Catrope: Align popup footer buttons to take 50% width each [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:30:38] James_F, blame select widget? [20:30:41] mooeypoo: :-P [20:30:44] :D [20:31:18] Seriously, though, we need a facility to enable differentiating that in SelectWidget. I'll extend it now for Echo but it might need to go upstream. [20:31:27] James_F, any chance you're creating a quick ticket? [20:31:29] ctrl+click doesn't work anymore? [20:31:39] mooeypoo: In a meeting right now, sorty. [20:31:43] legoktm: Same issue. [20:31:45] I'll create it [20:32:14] mooeypoo: https://gerrit.wikimedia.org/r/#/c/77824/ :| [20:32:18] (03CR) 10Catrope: [C: 04-1] Align popup footer buttons to take 50% width each (032 comments) [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:33:20] 6Collaboration-Team-Backlog, 10Echo: Ctrl+click (or middle click) should open notifications in a new window - https://phabricator.wikimedia.org/T112004#1622411 (10Mooeypoo) 3NEW [20:33:25] James_F, ^^ [20:33:39] (03CR) 10Legoktm: [C: 031] "Fixes the bug" [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:34:24] legoktm, yes, I saw the bug about it https://phabricator.wikimedia.org/T54319 :\ [20:37:47] (03CR) 10Mooeypoo: Align popup footer buttons to take 50% width each (032 comments) [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:37:53] RoanKattouw_away, mooeypoo, etonkovidova, legoktm's cross-wiki notification RFC is being discussed at 2 Pacific in #wikimedia-office. [20:37:56] (03PS3) 10Mooeypoo: Align popup footer buttons to take 50% width each [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 [20:38:09] ooh awesome, thanks matt_flaschen [20:38:38] James_F, i just noticed. "Sorty" ? Do you want to be sorted, or are you 'sorty' in a meeting? [20:39:15] Oh cool, I didn't realize that [20:40:08] mooeypoo: Just checking, you did need to add border-box because the buttons were ~3em too wide? [20:40:22] btw legoktm just so you know, I had to override text-align:right; in MonoBook because all text alignment in #p-personal li is text-align:right; [20:40:39] It's RTL only backwards! [20:40:40] mooeypoo: yeah I tested it and it looked fine [20:40:49] I didn't actually observe that or test it, I just guessed that that would happen from reading the CSS [20:41:19] RoanKattouw_away, no, the difference wasn't that obvious, but there *was* a small difference [20:41:31] not 3em. Maybe 0.1em [20:42:14] I think legoktm and I would've noticed if the buttons were 3em too wide... I hope. [20:42:44] (03CR) 10Mooeypoo: "Oy vey." (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236993 (owner: 10Mooeypoo) [20:42:48] <-- not a frontend person [20:43:09] legoktm, but you do have eyes. [20:43:25] {{cn}} [20:44:05] 3em is about... [_______] this big. [20:44:12] oh [20:44:14] yes [20:44:16] definitely not :P [20:44:30] Oh, right, padding [20:44:39] Maybe it was just 1px because of the border [20:44:55] What I find most amusing here is that I rolled myself to your desk to show you with my fingers, but you were so absorbed in your current work, that I rolled myself back to my laptop, and typed the approximate sizing in ascii art. [20:45:34] legoktm: 3em is three times the local font size, so in that place it would have probably been about 48px I think? [20:45:42] RoanKattouw_away, yeah that's what it seemed like. It looked like a good idea to add anyways, but the difference was tiny, probably the border size [20:45:46] Right [20:45:48] OK [20:45:51] oops [20:45:55] (03CR) 10Catrope: [C: 032] Align popup footer buttons to take 50% width each [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:46:16] (So rougly 3x the height of a character) [20:46:26] Now that I think about it, 3em by definition is ___ [20:46:32] I'm listening to my focus-screamo-rap music right now :P [20:46:47] Yes, I think I can hear it too, a little. [20:46:55] I was considering listening to Tiesto in response. [20:47:02] mooeypoo: "By definition", it's mmm [20:47:07] Why do you think it's called an em :P [20:47:17] RoanKattouw_away, I'm looking at monospace, so it should be the same [20:47:22] Oh right [20:47:36] ...that explains so much [20:47:39] I'm not using a monospace font for IRC [20:47:53] (03Merged) 10jenkins-bot: Align popup footer buttons to take 50% width each [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237251 (owner: 10Mooeypoo) [20:48:16] Uhm... I thought it was an abbreviation for something.... [20:49:03] Or onomatopoeia. "What should we call this new unit?" "em... I dunno." [20:49:22] Good thing we didn't get stuck with "dno" [20:49:51] we also have an 'ex' unit. [20:50:07] What is an ex? [20:50:14] Also this whole thing is so Latin-centric. There are languages that don't have 'm' in them. [20:50:16] ex is to em like x is to m :P [20:50:36] Oh I see [20:50:37] Should we ex our CSS? [20:50:43] "Relative to the x-height of the current font (rarely used)" [20:50:44] (hmm, although maybe not quite) [20:50:59] and a 'rem' too, which is a half-abbreviation for 'root em'. no 'rex' though. [20:51:02] There's also ch which is the width of "0" apparently [20:51:15] what font? English? I mean...how would you treat it in languages like arabic where the height is a little more varied? [20:51:24] Oh now I see what vh is! [20:51:26] At least that's international [20:52:57] (03PS4) 10Mooeypoo: Set the guided tour cookie in onUserSaveOptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236993 [20:54:17] (03CR) 10Mooeypoo: Set line-height: 0; to empty AnonWarningWidget (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236998 (https://phabricator.wikimedia.org/T110086) (owner: 10Mooeypoo) [20:54:23] (03PS3) 10Mooeypoo: Set line-height: 0; to empty AnonWarningWidget [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236998 (https://phabricator.wikimedia.org/T110086) [20:57:26] RoanKattouw_away/Boss. Which is more urgent for me to work on -- the regression here https://phabricator.wikimedia.org/T112004 or taking over Stephane's summary edit thing ? [21:00:00] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-skins-CologneBlue: Bug using Cologne Blue skin - https://phabricator.wikimedia.org/T111868#1622500 (10Legoktm) Can you provide a screenshot demonstrating the issue you're seeing? In the past the popup did not work in CologneBlue, but it does now. [21:00:25] I don't think you can fix Ctrl+Click without making it a link, can you? [21:01:55] RoanKattouw_away, I can with hacks. [21:02:05] I can extend SelectWidget to make it bow to my will [21:02:29] RoanKattouw_away, my plane was to extend OO.ui.SelectWidget.prototype.onMouseDown = function ( e ) {...} [21:02:36] thee's e.which === 1 in there [21:02:49] Yes, but how do you cause a link to open up in a new tab? [21:03:18] I thought of adding the e.which to the emitted event from onMouseDown [21:04:18] and then in choose check whcih mouse and either emit a different event or add a parameter to 'choose' that states it was another key press / mouse click [21:05:24] actually... i have an idea [21:06:16] you're not going to like it [21:07:53] 3Collaboration-Team-Current, 5Patch-For-Review: Make the VE/source toggle more discoverable - https://phabricator.wikimedia.org/T101316#1622551 (10Etonkovidova) Filed two issues: T111984 and T111987(it's a regression bug) [21:10:35] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-skins-CologneBlue: Bug using Cologne Blue skin - https://phabricator.wikimedia.org/T111868#1622584 (10hhmacedo) **First** I think this is misorganized, right? The [0] should be beside the username. {F2562564} **Second** When you click, the popup shows up on th... [21:10:45] So apparently the first ~40 minutes of the RFC meeting is planning for the 2016 dev summit. [21:11:39] mooeypoo: https://phabricator.wikimedia.org/T111868#1622584 is what it used to look like apparently [21:12:19] ... It's... yellow.... [21:12:42] mooeypoo, I'm also wondering that (how you will open it in a new tab if it's not a link). Possibly somewhat relevant: https://gerrit.wikimedia.org/r/#/c/160968/ [21:13:09] There is no standard way to open a new tab that I know of, only new windows (which some browsers treat as new tab in often user-configurable ways). [21:13:49] matt_flaschen, yeah I'm just reading about that too [21:16:05] (03PS5) 10Mooeypoo: Set the guided tour cookie in onUserSaveOptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/236993 (https://phabricator.wikimedia.org/T108266) [21:26:05] 6Collaboration-Team-Backlog, 10Echo, 10OOjs-UI, 10UI-Standardization: OOUI PopupWidgets don't have drop shadows - https://phabricator.wikimedia.org/T111889#1622626 (10Jdforrester-WMF) p:5Triage>3Normal [21:26:13] 6Collaboration-Team-Backlog, 10Echo, 10OOjs-UI, 10UI-Standardization: OOUI PopupWidgets don't have drop shadows in the MediaWiki theme - https://phabricator.wikimedia.org/T111889#1619044 (10Jdforrester-WMF) [21:29:46] mooeypoo, RoanKattouw, etonkovidova, RFC meeting has now started on cross-wiki notifications. [21:30:14] matt_flaschen: thx [21:38:37] 3Collaboration-Team-Current, 10Echo, 5Patch-For-Review: [Regression] Clicking on Echo's "All notifications" does not work - https://phabricator.wikimedia.org/T111783#1622648 (10Etonkovidova) Duplicate to https://phabricator.wikimedia.org/T111537 Checked in betalabs. [21:42:32] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 7WorkType-NewFunctionality: Use EditorWidget for topic summary - https://phabricator.wikimedia.org/T111102#1622653 (10Catrope) [21:42:33] 6Collaboration-Team-Backlog, 10Flow: Summarize: switching to wikitext mode displays old style icon - https://phabricator.wikimedia.org/T111984#1622652 (10Catrope) [21:42:52] 6Collaboration-Team-Backlog, 10Flow: Summarize: switching to wikitext mode displays old style icon - https://phabricator.wikimedia.org/T111984#1621716 (10Catrope) This is because the topic summary editor doesn't use the new system yet. Conversion is underway, see {T111102} [21:50:21] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 7WorkType-NewFunctionality: Move "Mark as resolved" up in the Flow dropdown menu - https://phabricator.wikimedia.org/T110083#1622667 (10Etonkovidova) Checked in betalabs. [22:13:02] 6Collaboration-Team-Backlog, 7Easy: Hide LQT preferences on frozen wikis - https://phabricator.wikimedia.org/T112012#1622715 (10Mattflaschen) 3NEW [22:13:32] 6Collaboration-Team-Backlog, 7Easy: Hide LQT preferences on frozen (wmgLiquidThreadsFrozen) wikis - https://phabricator.wikimedia.org/T112012#1622722 (10Mattflaschen) [22:13:32] (03PS1) 10Mooeypoo: Wrap notifications with a link for native click behavior [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237280 (https://phabricator.wikimedia.org/T112004) [22:14:19] 3Collaboration-Team-Current, 10Echo, 10MediaWiki-extensions-ContentTranslation, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22): Javascript error while clicking on Echo alert icon in Special:CX - https://phabricator.wikimedia.org/T111668#1622742 (10Etonkovidova) Checked in betalabs on Special:Conte... [22:23:35] 6Collaboration-Team-Backlog, 10Echo, 5Patch-For-Review: Ctrl+click (or middle click) should open notifications in a new window - https://phabricator.wikimedia.org/T112004#1622777 (10Mooeypoo) a:3Mooeypoo [22:41:10] 6Collaboration-Team-Backlog, 10Flow: Board description: VE icons are misplaced for non-logged users - https://phabricator.wikimedia.org/T112019#1622869 (10Etonkovidova) 3NEW [22:45:01] (03PS2) 10Mooeypoo: Wrap notifications with a link for native click behavior [extensions/Echo] - 10https://gerrit.wikimedia.org/r/237280 (https://phabricator.wikimedia.org/T112004) [22:47:56] 6Collaboration-Team-Backlog, 10Echo, 7Crosswiki, 7Tracking: Echo: Support cross-wiki notifications (tracking) - https://phabricator.wikimedia.org/T67661#1622912 (10Spage) Developers discussed this in 2015-09-09 RFC office hour, from [[ http://tools.wmflabs.org/meetbot/wikimedia-office/2015/wikimedia-office... [22:53:31] (03PS1) 10Catrope: Don't open multiple editors when editing posts that have replies [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237288 (https://phabricator.wikimedia.org/T111987) [22:53:33] 6Collaboration-Team-Backlog, 10Flow: Board description: VE icons are misplaced - https://phabricator.wikimedia.org/T112019#1622942 (10Etonkovidova) [22:54:45] (03CR) 10Mooeypoo: [C: 032] "lg > tm" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237288 (https://phabricator.wikimedia.org/T111987) (owner: 10Catrope) [22:57:22] (03Merged) 10jenkins-bot: Don't open multiple editors when editing posts that have replies [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237288 (https://phabricator.wikimedia.org/T111987) (owner: 10Catrope) [23:01:01] (03PS1) 10Catrope: Don't open multiple editors when editing posts that have replies [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237290 (https://phabricator.wikimedia.org/T111987) [23:03:00] (03PS1) 10Catrope: Follow-up 87faf4b3241: don't break toolbar when setContent() is called [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237291 (https://phabricator.wikimedia.org/T112019) [23:03:20] matt_flaschen: Can I get a really quick +2 on ---^^ ? [23:03:33] I'd get mooeypoo to do it but she's away from her desk [23:03:33] RoanKattouw yep, reviewing now. [23:05:04] (03CR) 10Catrope: [C: 032] Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf21) - 10https://gerrit.wikimedia.org/r/237165 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [23:05:07] (03CR) 10Catrope: [C: 032] Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237166 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [23:05:21] (03CR) 10Catrope: [C: 032] Don't open multiple editors when editing posts that have replies [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237290 (https://phabricator.wikimedia.org/T111987) (owner: 10Catrope) [23:06:01] 3Collaboration-Team-Current, 10Flow, 5Patch-For-Review, 5WMF-deploy-2015-09-08_(1.26wmf22): Style of new anon edit warning - https://phabricator.wikimedia.org/T110086#1623007 (10Etonkovidova) With collapsed Board: {F2563017} With expanded Board: {F2563019} Note: - "in": it's difficult to see the gap aft... [23:06:39] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-skins-CologneBlue: Bug using Cologne Blue skin - https://phabricator.wikimedia.org/T111868#1623015 (10Legoktm) We recently rolled out a new popup style that is better in CologneBlue (https://lists.wikimedia.org/pipermail/wikitech-ambassadors/2015-September/001... [23:06:50] (03Merged) 10jenkins-bot: Follow-up 87faf4b3241: don't break toolbar when setContent() is called [extensions/Flow] - 10https://gerrit.wikimedia.org/r/237291 (https://phabricator.wikimedia.org/T112019) (owner: 10Catrope) [23:07:06] ^ RoanKattouw [23:07:25] Thanks [23:07:37] (03PS1) 10Catrope: Follow-up 87faf4b3241: don't break toolbar when setContent() is called [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237292 (https://phabricator.wikimedia.org/T112019) [23:07:43] (03Merged) 10jenkins-bot: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf21) - 10https://gerrit.wikimedia.org/r/237165 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [23:07:50] Wait [23:08:03] That one isn't in prod, I don't need to cherry-pick that one [23:08:05] Sorry :| [23:08:18] (03Abandoned) 10Catrope: Follow-up 87faf4b3241: don't break toolbar when setContent() is called [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237292 (https://phabricator.wikimedia.org/T112019) (owner: 10Catrope) [23:09:13] (03Merged) 10jenkins-bot: Avoid null pointer exception and instead show relevant debugging info [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237166 (https://phabricator.wikimedia.org/T111494) (owner: 10Mattflaschen) [23:09:16] (03Merged) 10jenkins-bot: Don't open multiple editors when editing posts that have replies [extensions/Flow] (wmf/1.26wmf22) - 10https://gerrit.wikimedia.org/r/237290 (https://phabricator.wikimedia.org/T111987) (owner: 10Catrope) [23:09:36] 6Collaboration-Team-Backlog, 10Echo, 10MediaWiki-skins-CologneBlue: Bug using Cologne Blue skin - https://phabricator.wikimedia.org/T111868#1623030 (10hhmacedo) I don't use CologneBlue, I was just bug reporting. :) [23:21:26] 3Collaboration-Team-Current, 10Flow, 7WorkType-NewFunctionality: After clicking on 'Edit description', Board description is displayed empty while its content loads - https://phabricator.wikimedia.org/T109493#1623072 (10Etonkovidova) Checked in betalabs. [23:27:55] 3Collaboration-Team-Current, 6WMF-Design-Research: Curation tools user interviews - https://phabricator.wikimedia.org/T112027#1623096 (10Capt_Swing) 3NEW a:3Capt_Swing [23:28:36] 3Collaboration-Team-Current, 6WMF-Design-Research: Curation tools user interviews - https://phabricator.wikimedia.org/T112027#1623106 (10Capt_Swing) Recruiting has started. First participants could be scheduled as early as 9/11. [23:29:11] 3Collaboration-Team-Current, 6WMF-Design-Research: Curation tools user interviews - https://phabricator.wikimedia.org/T112027#1623108 (10Capt_Swing) p:5Triage>3Normal