[00:04:36] (03CR) 10Catrope: [C: 032] "Come on Jenkins" [oojs/ui] - 10https://gerrit.wikimedia.org/r/193279 (owner: 10Jforrester) [00:06:33] (03Merged) 10jenkins-bot: Tag v0.8.2 [oojs/ui] - 10https://gerrit.wikimedia.org/r/193279 (owner: 10Jforrester) [00:08:41] (03PS8) 10Trevor Parscal: Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 [00:09:01] (03CR) 10jenkins-bot: [V: 04-1] Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 (owner: 10Trevor Parscal) [00:09:20] so, when are we re-enabling manual merges? [00:09:37] because it kind of sucks not to be able to merge things when they need to be deployed [00:09:42] just sayin' [00:15:37] (03CR) 10Trevor Parscal: [C: 032] Don't call LabelElement constructor twice for ActionFieldLayouts [oojs/ui] - 10https://gerrit.wikimedia.org/r/193277 (https://phabricator.wikimedia.org/T90936) (owner: 10Catrope) [00:16:49] (03CR) 10Trevor Parscal: [C: 032] Move `OO.ui.infuse` to `OO.ui.Element.static.infuse`. [oojs/ui] - 10https://gerrit.wikimedia.org/r/192878 (owner: 10Cscott) [00:17:30] (03Merged) 10jenkins-bot: Don't call LabelElement constructor twice for ActionFieldLayouts [oojs/ui] - 10https://gerrit.wikimedia.org/r/193277 (https://phabricator.wikimedia.org/T90936) (owner: 10Catrope) [00:18:32] (03Merged) 10jenkins-bot: Move `OO.ui.infuse` to `OO.ui.Element.static.infuse`. [oojs/ui] - 10https://gerrit.wikimedia.org/r/192878 (owner: 10Cscott) [00:19:48] (03CR) 10Trevor Parscal: [C: 032] InputWidget: Focus checkboxes and radios, too, when the label is clicked [oojs/ui] - 10https://gerrit.wikimedia.org/r/193099 (owner: 10Bartosz Dziewoński) [00:21:05] (03CR) 10Trevor Parscal: [C: 04-1] "On my localhost, some of the icons still don't rasterize. Will need to clean them up." [oojs/ui] - 10https://gerrit.wikimedia.org/r/188289 (owner: 10Jforrester) [00:21:38] (03Merged) 10jenkins-bot: InputWidget: Focus checkboxes and radios, too, when the label is clicked [oojs/ui] - 10https://gerrit.wikimedia.org/r/193099 (owner: 10Bartosz Dziewoński) [00:23:14] (03CR) 10Trevor Parscal: [C: 032] Only modify body class when first/last window opens/closes [oojs/ui] - 10https://gerrit.wikimedia.org/r/190806 (https://phabricator.wikimedia.org/T89613) (owner: 10Esanders) [00:23:41] (03CR) 10Trevor Parscal: [C: 032] [BREAKING CHANGE] TextInputWidget: Remove 'icon' and 'indicator' events [oojs/ui] - 10https://gerrit.wikimedia.org/r/190570 (owner: 10Bartosz Dziewoński) [00:24:06] (03CR) 10Trevor Parscal: [C: 032] [BREAKING CHANGE] Remove innerOverlay [oojs/ui] - 10https://gerrit.wikimedia.org/r/192574 (owner: 10Esanders) [00:24:31] (03CR) 10Bartosz Dziewoński: "Ewwww." [oojs/ui] - 10https://gerrit.wikimedia.org/r/190806 (https://phabricator.wikimedia.org/T89613) (owner: 10Esanders) [00:25:08] (03Merged) 10jenkins-bot: Only modify body class when first/last window opens/closes [oojs/ui] - 10https://gerrit.wikimedia.org/r/190806 (https://phabricator.wikimedia.org/T89613) (owner: 10Esanders) [00:26:25] (03CR) 10Trevor Parscal: [C: 032] Make icon and indicator container sizes consistent [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [00:27:47] (03CR) 10Trevor Parscal: [C: 032] Prevent context from moving if selection is changed by opening [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193077 (https://phabricator.wikimedia.org/T90857) (owner: 10Esanders) [00:28:14] (03CR) 10Trevor Parscal: [C: 032] Remove unnecessary disconnect in surface destroy [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193111 (owner: 10Esanders) [00:29:27] (03CR) 10Trevor Parscal: [C: 032] Make toolbar dialogs disableable [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/192569 (owner: 10Esanders) [00:29:52] (03Merged) 10jenkins-bot: Prevent context from moving if selection is changed by opening [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193077 (https://phabricator.wikimedia.org/T90857) (owner: 10Esanders) [00:30:42] Wow, $.when() is evil [00:30:59] (03CR) 10Trevor Parscal: [C: 032] Make toolbar dialog padding configurable [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/192550 (owner: 10Esanders) [00:31:11] (03CR) 10jenkins-bot: [V: 04-1] [BREAKING CHANGE] TextInputWidget: Remove 'icon' and 'indicator' events [oojs/ui] - 10https://gerrit.wikimedia.org/r/190570 (owner: 10Bartosz Dziewoński) [00:31:38] Suppose you have $.when( p1, p2 ).done( function ( a, b ) { .... } ); [00:31:59] If you do p1.resolve( 1, 2 ); p2.resolve( 3, 4 ); , you end up with a = [1,2] and b = [3,4] [00:32:03] Which is sensible [00:32:08] A bit annoying but sensible [00:32:22] But if you resolve with only one argument, then as a "convenience", there's no array wrapper [00:32:33] So p1.resolve( 1 ); p2.resolve( 2 ); gets you a=1, b=2 [00:32:53] You can even mix them: p1.resolve( 1, 2 ); p2.resolve( 3 ); results in a = [1,2] and b=3 [00:33:20] The ridiculous thing is that you can do p1.resolve( 1, 2, 3 ); p2.resolve( [1,2,3] ); and then a=[1,2,3] and b=[1,2,3] [00:33:22] Good job jQuery [00:33:26] * RoanKattouw slow claps [00:37:11] (03CR) 10Trevor Parscal: [C: 04-1] Add a threshold to 'read more' calculation in media dialog info (031 comment) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193286 (https://phabricator.wikimedia.org/T87265) (owner: 10Mooeypoo) [00:39:33] (03Merged) 10jenkins-bot: [BREAKING CHANGE] Remove innerOverlay [oojs/ui] - 10https://gerrit.wikimedia.org/r/192574 (owner: 10Esanders) [00:39:35] (03CR) 10jenkins-bot: [V: 04-1] Make icon and indicator container sizes consistent [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [00:41:05] (03Merged) 10jenkins-bot: Remove unnecessary disconnect in surface destroy [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193111 (owner: 10Esanders) [00:41:07] (03Merged) 10jenkins-bot: Make toolbar dialog padding configurable [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/192550 (owner: 10Esanders) [00:41:09] (03Merged) 10jenkins-bot: Make toolbar dialogs disableable [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/192569 (owner: 10Esanders) [00:41:11] (03Merged) 10jenkins-bot: Create toolbar dialog tools [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193125 (owner: 10Esanders) [00:42:23] (03PS6) 10Trevor Parscal: Refactor MWMediaResultWidget to resize better [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/190400 (owner: 10Mooeypoo) [00:44:08] (03CR) 10Trevor Parscal: [C: 032] Refactor MWMediaResultWidget to resize better [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/190400 (owner: 10Mooeypoo) [00:46:06] (03Merged) 10jenkins-bot: Refactor MWMediaResultWidget to resize better [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/190400 (owner: 10Mooeypoo) [00:50:44] ugh [00:50:57] http://bits.beta.wmflabs.org/static-master/extensions/VisualEditor/modules/ve-mw/init/styles/ve.init.mw.ViewPageTarget.css [00:51:10] the file this serves is three weeks old [00:51:14] somebody please tell me why [00:51:23] Caching? [00:51:29] Why is static-master being used anyway [00:51:33] Oh because it's beta labs [00:51:36] threeeee weeks [00:51:40] Well debug mode in beta labs is probably pretty broken [00:51:44] i just spent a lot of time debugging why debug mode is fucked [00:52:02] i mean, http://i.imgur.com/yTozcDn.png [00:56:13] Right [00:56:30] https://phabricator.wikimedia.org/T90983 [00:56:48] MatmaRex, it's worse in RTL [01:30:18] 10VisualEditor, 10VisualEditor-EditingTools, 5§ VisualEditor Q3 Blockers: Comment is not getting added after Citation, Template,Gallery,Math node and Table - https://phabricator.wikimedia.org/T90517#1072613 (10matmarex) As far as I can tell this is a Parsoid issue, or possibly in the RESTy things between VE... [01:31:00] 10VisualEditor, 10VisualEditor-EditingTools, 10Parsoid, 5§ VisualEditor Q3 Blockers: Comment is not getting added after Citation, Template,Gallery,Math node and Table - https://phabricator.wikimedia.org/T90517#1072617 (10matmarex) a:5matmarex>3None [01:49:58] (03CR) 10Krinkle: "Do we account for undefined in the users of this method? It seems it would propagate from batchQueue.processPage() in processQueue(), to b" [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193268 (https://phabricator.wikimedia.org/T90916) (owner: 10Alex Monk) [01:54:26] 10VisualEditor, 10VisualEditor-EditingTools: VisualEditor: Distorted UI of Language Inspector/Special Character appears while trying to open them when the link inspector is already open in CE - https://phabricator.wikimedia.org/T71202#1072707 (10Etonkovidova) Re-checked it in Ptoduction and test2 - the Langua... [01:54:52] 10VisualEditor, 10VisualEditor-EditingTools: VisualEditor: Distorted UI of Language Inspector/Special Character appears while trying to open them when the link inspector is already open in CE - https://phabricator.wikimedia.org/T71202#1072708 (10Etonkovidova) 5Open>3Resolved [01:56:01] (03PS2) 10Krinkle: core: Improve class related unit tests [oojs/core] - 10https://gerrit.wikimedia.org/r/193153 [01:58:36] (03PS2) 10Mooeypoo: Add a threshold to 'read more' calculation in media dialog info [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193286 (https://phabricator.wikimedia.org/T87265) [02:12:40] 10VisualEditor, 10VisualEditor-ContentEditable, 7Browser-Support-Google-Chrome: Cannot delete a list style, if present at the start of the page by pressing the “Backspace” key. - https://phabricator.wikimedia.org/T69392#1072736 (10Etonkovidova) If there is no content above bullet list - the last bullet point... [02:13:08] 10VisualEditor, 10VisualEditor-ContentEditable, 7Browser-Support-Google-Chrome: Cannot delete a list style, if present at the start of the page by pressing the “Backspace” key. - https://phabricator.wikimedia.org/T69392#1072737 (10Etonkovidova) 5Open>3declined [02:21:18] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: copying a text and moving down using the arrow adds a space - https://phabricator.wikimedia.org/T70676#1072741 (10Etonkovidova) Not reproducible anymore - marking it as Resolved. For such issues any additional info would be helpful: which browser/... [02:21:28] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: copying a text and moving down using the arrow adds a space - https://phabricator.wikimedia.org/T70676#1072743 (10Etonkovidova) 5Open>3Resolved [02:30:23] 10VisualEditor, 10VisualEditor-EditingTools: VisualEditor: The highlight that appears after adding a template while selecting an image is not proper - https://phabricator.wikimedia.org/T70411#1072761 (10Etonkovidova) 5Open>3Resolved [02:35:27] 10VisualEditor, 10VisualEditor-ContentEditable: Can't paste in ref dialog - https://phabricator.wikimedia.org/T65252#1072764 (10Etonkovidova) 5Open>3Resolved [04:41:44] 10VisualEditor, 10VisualEditor-EditingTools, 10Parsoid, 5§ VisualEditor Q3 Blockers: Comment is not getting added after Citation, Template,Gallery,Math node and Table - https://phabricator.wikimedia.org/T90517#1072846 (10ssastry) This session shows that Parsoid is correctly serializing the html. So, worth... [06:52:37] 10MediaWiki-Page-editing: Parser profiling data should remain collapsible when using LivePreview - https://phabricator.wikimedia.org/T91046#1072885 (10Dalba) 3NEW [10:10:20] InezK_away, no good reason I think the wikitext variable was introduced later [10:48:04] 10MediaWiki-Page-editing: Parser profiling data should remain collapsible when using LivePreview - https://phabricator.wikimedia.org/T91046#1073085 (10Aklapper) p:5Triage>3Lowest [10:48:48] 10MediaWiki-Page-editing: Parser profiling data should remain collapsible when using LivePreview - https://phabricator.wikimedia.org/T91046#1072885 (10Aklapper) [10:48:49] 10MediaWiki-Page-editing, 10MediaWiki-RfCs, 7JavaScript, 7Tracking: Live preview (requires JavaScript) feature bugs (tracking) - https://phabricator.wikimedia.org/T41272#1073086 (10Aklapper) [11:04:05] 10MediaWiki-Page-editing: Parser profiling data should remain collapsible when using LivePreview - https://phabricator.wikimedia.org/T91046#1073124 (10TheDJ) Related to, if not duplicate with: T55918 [11:49:34] (03PS1) 10Esanders: i18n for edit button in context item [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193346 [11:52:25] 10VisualEditor, 10VisualEditor-MediaWiki-Templates: First paragraph for news articles at fr.news ends up inside Template:Date - https://phabricator.wikimedia.org/T90921#1073201 (10Aklapper) [13:43:20] 10MediaWiki-ResourceLoader, 10Continuous-Integration, 10MediaWiki-Vagrant, 10Wikidata, and 2 others: qunit test broken without explicitly setting $wgResourceLoaderMaxQueryLength - https://phabricator.wikimedia.org/T90453#1073327 (10Krinkle) This change ([Ic416def846f361425c46f7b](https://gerrit.wikimedia.o... [13:50:36] 10MediaWiki-Page-editing: Edits that were created using StashEdit API show wrong timestamp - https://phabricator.wikimedia.org/T84843#1073330 (10Umherirrender) [14:07:09] 10MediaWiki-ResourceLoader, 10Continuous-Integration, 10MediaWiki-Vagrant, 10Wikidata, and 2 others: qunit test broken without explicitly setting $wgResourceLoaderMaxQueryLength - https://phabricator.wikimedia.org/T90453#1073364 (10JanZerebecki) Test run without that setting: https://integration.wikimedia.... [14:11:11] 10VisualEditor, 10MediaWiki-General-or-Unknown, 10RESTBase, 6Services, 7Performance: Use RESTBase from the MediaWiki Virtual Rest Service - https://phabricator.wikimedia.org/T89066#1073374 (10mobrovac) a:3mobrovac [14:24:38] 10MediaWiki-Page-editing: Difference between timestamps in signature and site interface. - https://phabricator.wikimedia.org/T84843#1073397 (10MaxBioHazard) [14:25:07] hey guys [14:26:15] i plan to start working on using restbase as a backend for VE instead of Parsoid (https://phabricator.wikimedia.org/T89066) but I have a question [14:26:37] to your knowledge, is mediawiki-vagrant used in conjunction with VE? [14:26:48] i.e. do people test/use it there actively? [14:49:52] (03PS1) 10Esanders: Make align widget work when config is undefined [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193367 [14:49:54] (03PS1) 10Esanders: Remove absolute positioning from description [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193368 [14:49:56] (03PS1) 10Esanders: Provide isAlignable checks for alignable nodes [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193369 [14:49:58] (03PS1) 10Esanders: Create AlignableContextItem to quickly adjust AlignableNodes [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193370 [14:51:04] (03CR) 10jenkins-bot: [V: 04-1] Provide isAlignable checks for alignable nodes [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193369 (owner: 10Esanders) [14:54:11] (03CR) 10Esanders: "recheck" [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193369 (owner: 10Esanders) [14:56:30] (03CR) 10jenkins-bot: [V: 04-1] Make align widget work when config is undefined [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193367 (owner: 10Esanders) [15:22:06] (03PS1) 10Esanders: Files for special character inserter [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193374 [15:27:15] (03CR) 10jenkins-bot: [V: 04-1] Files for special character inserter [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193374 (owner: 10Esanders) [15:29:30] (03CR) 10Esanders: [C: 04-1] "I still get an exception when editing a basic reference:" (031 comment) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 (owner: 10Trevor Parscal) [15:36:48] 10VisualEditor, 10Continuous-Integration, 5§ VisualEditor Q3 Blockers: Concurrent builds using local Chromium/Firefox browsers on Linux host fail - https://phabricator.wikimedia.org/T90673#1073556 (10Krinkle) Today I investigated this on integration-slave1010. I set up a MediaWiki by running the build manual... [15:38:59] 10VisualEditor, 10Collaboration-Team-Sprint-R-2015-03-11, 10Flow: R1. Spike: Add relevant MW features to VE on Flow - https://phabricator.wikimedia.org/T90760#1073576 (10matthiasmullie) a:3matthiasmullie [16:10:59] * werdna waves MatmaRex [16:11:42] hi [16:16:04] I'm looking to add the possibility to add extra CSS filters to resource loader (specifically, a filter that replaces colours to simulate colour blindness) for certain requests. Any idea how I might go about that? [16:20:05] (03PS2) 10Esanders: Create AlignableContextItem to quickly adjust AlignableNodes [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193370 [16:23:57] (03CR) 10Mvolz: Make zotero.js an object (031 comment) [services/citoid] - 10https://gerrit.wikimedia.org/r/192197 (https://phabricator.wikimedia.org/T78389) (owner: 10Mvolz) [16:24:11] (03PS11) 10Mvolz: Make zotero.js an object [services/citoid] - 10https://gerrit.wikimedia.org/r/192197 (https://phabricator.wikimedia.org/T78389) [16:24:16] werdna: there doesn't seem to be a way to do this, you'll need to add a new hook somewhere in core [16:24:30] (03PS8) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [16:24:45] (03PS3) 10Mvolz: Add ability to set requesting User-Agent [services/citoid] - 10https://gerrit.wikimedia.org/r/193134 (https://phabricator.wikimedia.org/T89757) [16:25:40] werdna: probably in ResourceLoaderFileModule::readStyleFile() for a simple solution working for almost all cases [16:25:59] MatmaRex: I found a filter() function in ResourceLoader.php used for minifying [16:26:05] so I thought maybe I could hook into that [16:26:43] oh, hmm. that would probably also work [16:29:27] (03CR) 10Mvolz: Make zotero.js an object (031 comment) [services/citoid] - 10https://gerrit.wikimedia.org/r/192197 (https://phabricator.wikimedia.org/T78389) (owner: 10Mvolz) [16:32:55] (03PS12) 10Mvolz: Make zotero.js an object [services/citoid] - 10https://gerrit.wikimedia.org/r/192197 (https://phabricator.wikimedia.org/T78389) [16:34:14] 10VisualEditor, 10MediaWiki-General-or-Unknown, 10RESTBase, 6Services, 7Performance: Use RESTBase from the MediaWiki Virtual Rest Service - https://phabricator.wikimedia.org/T89066#1073712 (10GWicke) [16:39:38] (03PS9) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [16:40:36] (03PS4) 10Mvolz: Add ability to set requesting User-Agent [services/citoid] - 10https://gerrit.wikimedia.org/r/193134 (https://phabricator.wikimedia.org/T89757) [16:40:46] (03PS2) 10Mvolz: [WIP] User Agent Config [services/citoid] - 10https://gerrit.wikimedia.org/r/193154 [17:33:07] (03PS10) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [17:35:26] (03PS11) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [17:36:16] James_F: howdy [17:36:47] TrevorParscal: How are you? [17:36:51] yeah, ok [17:36:56] kidlets are falling apart [17:36:59] :-( [17:37:02] Ill? [17:37:03] but, otherwise I'm well [17:37:05] yeah [17:37:10] aw! [17:37:32] * James_F hugs. At a safe, non-infectious distance. [17:37:54] Aurora was sick yesterday, seems to be able to keep food down today (guess it's a 24hr thing) and then we were up really late with Blaise who seems to have got it too [17:38:08] so, are you planning on doing the metrics thing? [17:38:14] (03PS1) 10Esanders: Fix size of context item icon [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193391 [17:38:16] should I ignore that? or do you want me to do it? [17:39:01] (03CR) 10Trevor Parscal: [C: 032] Fix size of context item icon [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193391 (owner: 10Esanders) [17:39:07] We should work together on it. :-) [17:39:13] I've been out walking a bunch. [17:39:21] Need to knuckle down. [17:41:02] (03Merged) 10jenkins-bot: Fix size of context item icon [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193391 (owner: 10Esanders) [17:42:51] TrevorParscal: You seen edsanders's comments on https://gerrit.wikimedia.org/r/192972 about it not working? [17:43:44] (03CR) 10Jforrester: "Is this to replace I40ab227ac ?" [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193370 (owner: 10Esanders) [17:44:22] (03PS2) 10Jforrester: [PULL THROUGH] Files for special character inserter [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193374 (owner: 10Esanders) [17:45:23] (03CR) 10Esanders: "Looks like it does the same thing, so yes." [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193370 (owner: 10Esanders) [17:46:01] (03Abandoned) 10Jforrester: [WIP] Provide move left/right quick action buttons for images [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/141091 (owner: 10Jforrester) [17:49:29] (03CR) 10Jforrester: [C: 032] i18n for edit button in context item [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193346 (owner: 10Esanders) [17:50:56] (03CR) 10jenkins-bot: [V: 04-1] [PULL THROUGH] Files for special character inserter [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193374 (owner: 10Esanders) [17:51:31] (03Merged) 10jenkins-bot: i18n for edit button in context item [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193346 (owner: 10Esanders) [17:54:01] James_F: Ugh, so I've "narrowed" down that Firefox/Chrome disconnecting is not caused by concurrency but could in fact be caused by anything. [17:54:13] Krinkle: … helpful. [17:54:18] At least I can consistently reproduce it (see bug for details) [17:54:38] (03CR) 10Jforrester: "Needs rebasing…" [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [17:54:53] I'll need upstream to provide some debugging tools (or patch karma locally), as even their loglevel=debug is insufficient to state why or how it was disconnected. [17:55:16] Getting screenshots from integration slaves was exciting though :) [17:55:29] Cool to see chromium and firefox pop up and do their work [17:55:49] 20 at once [17:55:59] but tests passed [17:56:01] :( [17:56:15] (with 20x chromium+firefox on one server) [17:58:02] hm, did we update ooui in mw yesterday'ish ? [17:58:10] hopefully [17:58:27] I am still getting the window bug locally with master MW and master VE [17:58:46] hm, nope, still broken [17:59:04] Fixing now. [17:59:10] awesomesauce [17:59:22] RoanKattouw_away: Thanks for taking care of that like I asked. :-P [17:59:24] ok, going to see if I can set up the standup by myself.... [18:02:16] edsanders: Actually I'm not sure if that check makes sense at all, if extension has empty extsrc it does not mean that it will render to something "empty". It can render based on attrs. [18:02:53] James_F: standup? [18:02:57] TrevorParscal: Am in it… [18:03:12] cool story bro [18:03:54] waiting for you man [18:03:57] TrevorParscal: Is this Google's split-brain issue again? [18:04:04] TrevorParscal: I've been in it for 10 minutes waiting… [18:04:05] maybe? [18:04:37] I've reloaded and still it's empty. [18:04:42] Did you go to the wrong URL? [18:05:06] google [18:05:13] Aha. Now there are others. [18:10:31] (03PS2) 10Bartosz Dziewoński: [BREAKING CHANGE] TextInputWidget: Remove 'icon' and 'indicator' events [oojs/ui] - 10https://gerrit.wikimedia.org/r/190570 [18:10:35] (03PS1) 10Jforrester: Update OOjs UI to v0.8.2 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193399 [18:11:34] (03CR) 10Bartosz Dziewoński: [C: 032] "Per Trevor" [oojs/ui] - 10https://gerrit.wikimedia.org/r/190570 (owner: 10Bartosz Dziewoński) [18:13:09] (03Merged) 10jenkins-bot: [BREAKING CHANGE] TextInputWidget: Remove 'icon' and 'indicator' events [oojs/ui] - 10https://gerrit.wikimedia.org/r/190570 (owner: 10Bartosz Dziewoński) [18:13:46] (03CR) 10jenkins-bot: [V: 04-1] Update OOjs UI to v0.8.2 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193399 (owner: 10Jforrester) [18:16:02] Eurgh. [18:16:36] so when are we enabling manual merges? [18:16:56] TrevorParscal: https://gerrit.wikimedia.org/r/#/c/193282/ is the scrollbar squishing that i need you to look at [18:17:06] will look [18:17:36] MatmaRex: That's a real failure. Stop trolling. [18:17:47] (03PS14) 10Paladox: Adds svg to css file [extensions/WikiEditor] - 10https://gerrit.wikimedia.org/r/181788 (https://phabricator.wikimedia.org/T37342) [18:18:06] meh [18:18:36] did we not update ve/ve to 0.8.1? huh. [18:19:25] if we didn't, then it doesn't need emergency update to 0.8.2, by the way. [18:20:18] Hi, I was wondering about methods like bindMouseDownListener( ) bindKeyDownListener()... should they be marked protected/private in the docs? [18:20:52] kirstenMA: probably protected [18:21:03] thanks. will do. [18:21:15] (i think we override and use them in subclasses) [18:22:23] (03PS2) 10Jforrester: Update OOjs UI to v0.8.2 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193399 [18:22:46] 10VisualEditor, 10MediaWiki-General-or-Unknown, 10RESTBase, 6Services, 7Performance: Use RESTBase from the MediaWiki Virtual Rest Service - https://phabricator.wikimedia.org/T89066#1074102 (10greg) Where are we on the timeline for this? (Deployment calendar says "late feb early march") [18:22:48] okay. how about something like chooseItem() in selectWidget? We say all over not to modify 'choose' programmatically. Should that be marked? [18:23:05] MatmaRex: We did; https://gerrit.wikimedia.org/r/#/c/193033/ never got fixed or merged. [18:23:14] MatmaRex: Another thing for me to grumble at RoanKattouw about. ;-) [18:23:55] WTF is 'OO.ui.HtmlSnippet [18:24:10] (03Abandoned) 10Jforrester: Update OOjs UI to v0.8.1 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193033 (owner: 10Jforrester) [18:24:34] RoanKattouw: Added as part of the Infuse stuff. Just merge it already. [18:25:00] RoanKattouw: Also you'll need to ask Greg for an emergency deploy slot. [18:25:04] (03CR) 10Catrope: [C: 032] Update OOjs UI to v0.8.2 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193399 (owner: 10Jforrester) [18:25:09] Yeah will do [18:25:13] Thanks. [18:25:47] 10VisualEditor, 10MediaWiki-General-or-Unknown, 10RESTBase, 6Services, 7Performance: Use RESTBase from the MediaWiki Virtual Rest Service - https://phabricator.wikimedia.org/T89066#1074120 (10mobrovac) @greg should be right on time. We are contemplating a possible multi-step solution where the first step... [18:26:21] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: ↵ is shown when wikicode contains single newline, which is not very WYSIWYG - https://phabricator.wikimedia.org/T50290#1074123 (10Whatamidoing-WMF) I like the idea of showing it as a line break. This might make more sense to less-technical people t... [18:26:42] Yay, 0.8 also includes all the new wonderful documentation updates from kirstenMA :) [18:26:57] :) [18:27:04] (03Merged) 10jenkins-bot: Update OOjs UI to v0.8.2 [VisualEditor/VisualEditor] - 10https://gerrit.wikimedia.org/r/193399 (owner: 10Jforrester) [18:27:40] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: ↵ is shown when wikicode contains single newline, which is not very WYSIWYG - https://phabricator.wikimedia.org/T50290#1074130 (10Jdforrester-WMF) >>! In T50290#1074123, @Whatamidoing-WMF wrote: > I like the idea of showing it as a line break. This... [18:28:43] Krinkle: Some of them are in 0.8.1 too. kirstenMA is prodigious. :-) [18:28:46] 10VisualEditor, 10VisualEditor-ContentEditable, 5§ VisualEditor Q3 Blockers: VisualEditor: Hidden templates should display as an icon in-page so they can be interacted with (e.g. a puzzle piece?) - https://phabricator.wikimedia.org/T51806#1074133 (10Whatamidoing-WMF) [18:29:56] Well, James_F, I had a great gerrit reviewer [18:30:18] (03CR) 10Jforrester: [C: 032] "v0.9.0 ahoy." [oojs/ui] - 10https://gerrit.wikimedia.org/r/189478 (owner: 10Bartosz Dziewoński) [18:30:21] I did that wrong... I don't do irc.. why is your name not linked? [18:30:31] (03CR) 10Jforrester: [C: 032] "v0.9.0 ahoy." [oojs/ui] - 10https://gerrit.wikimedia.org/r/185257 (https://phabricator.wikimedia.org/T86851) (owner: 10Bartosz Dziewoński) [18:30:33] (03CR) 10jenkins-bot: [V: 04-1] [BREAKING CHANGE] Remove deprecated LookupInputWidget [oojs/ui] - 10https://gerrit.wikimedia.org/r/185257 (https://phabricator.wikimedia.org/T86851) (owner: 10Bartosz Dziewoński) [18:30:35] (03CR) 10jenkins-bot: [V: 04-1] [BREAKING CHANGE] Remove deprecated GridLayout [oojs/ui] - 10https://gerrit.wikimedia.org/r/189478 (owner: 10Bartosz Dziewoński) [18:31:10] kirstenMA: It's highlighted here; maybe your client only links when it's the first item on the line? [18:31:30] ah, okay. thanks. [18:32:21] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: ↵ is shown when wikicode contains single newline, which is not very WYSIWYG - https://phabricator.wikimedia.org/T50290#1074137 (10Jaredzimmerman-WMF) Unless I'm misunderstanding Whatamidoing, I think they mean that we copy line breaks in as actual l... [18:35:07] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: ↵ is shown when wikicode contains single newline, which is not very WYSIWYG - https://phabricator.wikimedia.org/T50290#1074156 (10Jdforrester-WMF) >>! In T50290#1074137, @Jaredzimmerman-WMF wrote: > Unless I'm misunderstanding Whatamidoing, I think... [18:36:35] (03PS6) 10Jforrester: [BREAKING CHANGE] Remove deprecated LookupInputWidget [oojs/ui] - 10https://gerrit.wikimedia.org/r/185257 (https://phabricator.wikimedia.org/T86851) (owner: 10Bartosz Dziewoński) [18:40:41] (03PS1) 10Kmenger: PopupElement: Add description [oojs/ui] - 10https://gerrit.wikimedia.org/r/193405 [18:40:49] kirstenMA: that sounds like a public method to me, we call it from elsewhere [18:41:05] okay. thanks. [18:41:07] kirstenMA: or "private friend" or something, but we don't do these :) [18:41:12] lol [18:41:53] RoanKattouw: HtmlSnippet in JS is a sign that internals of our PHP and JS implementations of OOUI have diverged initially, and now we've forcibly brought them back together [18:42:44] RoanKattouw: we now have at least five different ways to specify that some text should be shown inside a button [18:43:19] (03CR) 10Jforrester: [C: 032] "PS6 is a rebase." [oojs/ui] - 10https://gerrit.wikimedia.org/r/185257 (https://phabricator.wikimedia.org/T86851) (owner: 10Bartosz Dziewoński) [18:43:42] haha [18:44:40] i need to file some bugs about it [18:45:10] (03PS3) 10Jforrester: [BREAKING CHANGE] Remove deprecated GridLayout [oojs/ui] - 10https://gerrit.wikimedia.org/r/189478 (owner: 10Bartosz Dziewoński) [18:45:12] (03Merged) 10jenkins-bot: [BREAKING CHANGE] Remove deprecated LookupInputWidget [oojs/ui] - 10https://gerrit.wikimedia.org/r/185257 (https://phabricator.wikimedia.org/T86851) (owner: 10Bartosz Dziewoński) [18:45:25] (03CR) 10Jforrester: [C: 032] "PS3 is a rebase." [oojs/ui] - 10https://gerrit.wikimedia.org/r/189478 (owner: 10Bartosz Dziewoński) [18:47:18] (03Merged) 10jenkins-bot: [BREAKING CHANGE] Remove deprecated GridLayout [oojs/ui] - 10https://gerrit.wikimedia.org/r/189478 (owner: 10Bartosz Dziewoński) [18:48:03] MatmaRex: so... this squishing change [18:48:20] (03PS2) 10Catrope: [WIP] Factor out loading code into TargetLoader [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193026 [18:48:22] (03PS1) 10Catrope: Make generateCitationFeatures() idempotent [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193407 [18:48:25] (03CR) 10jenkins-bot: [V: 04-1] [WIP] Factor out loading code into TargetLoader [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193026 (owner: 10Catrope) [18:48:37] Krinkle|detached: So hopefully https://gerrit.wikimedia.org/r/193026 will give you a good idea of what I'm trying to do [18:48:58] yeah? kinda meh, isn't it? [18:50:00] (03CR) 10jenkins-bot: [V: 04-1] Make generateCitationFeatures() idempotent [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/193407 (owner: 10Catrope) [18:53:53] Ugh, WTF happened to jshint [18:55:04] James_F: There's no point rechecking the OOUI change because https://integration.wikimedia.org/ci/job/mediawiki-core-npm/3982/console is a "real" failure [18:55:33] RoanKattouw: Yeah, but doesn't happen locally; I assumed it was a transient CI muck-up. [18:55:44] It does happen for me locally [18:55:49] RoanKattouw: Those files pass in master for me… [18:55:54] Did someone bypass CI? [18:55:58] James_F: What does "npm ls jshint" return in your MW core checkout? [18:56:08] James_F: No I think jshint broke something in a minor version release [18:56:14] Oh. Fun. [18:56:15] You probably have 2.6.0 [18:56:27] I ran npm install and now I have 2.6.1 and JSON isn't recognized any more [18:56:30] Yeah. [18:56:33] Ah. [18:56:34] * James_F sighs. [18:56:40] jshint considered harmful. [18:57:13] 2.6.1 doesn't come up when I `npm install`. [18:57:49] What comes up when you run "npm ls jshint" ? [18:57:58] I get: [18:58:00] mediawiki@0.0.0 /home/catrope/git/mediawiki/core [18:58:01] " Yeah". [18:58:02] └─┬ grunt-contrib-jshint@0.11.0 [18:58:03] └── jshint@2.6.1 [18:58:13] Oh so 2.6.0? [18:58:24] mediawiki@0.0.0 /Users/jdforrester/Documents/git/vagrant/mediawiki [18:58:24] └─┬ grunt-contrib-jshint@0.11.0 [18:58:24] └── jshint@2.6.0 [18:58:25] Maybe it's because I installed from scratch that I have 2.6.1 [18:58:26] TrevorParscal, https://gerrit.wikimedia.org/r/#/c/193370/ [18:58:35] * James_F wipes and re-installs [18:59:00] The mockup I gave you was meant to convey, not that things should squish automatically to save space, but that we should be able to make adjacent groups render as if they are joined for organizational purposes (and also perhaps it will save some space as well) [18:59:23] 10VisualEditor, 10VisualEditor-ContentEditable: VisualEditor: ↵ is shown when wikicode contains single newline, which is not very WYSIWYG - https://phabricator.wikimedia.org/T50290#1074247 (10Jaredzimmerman-WMF) @Jdforrester-WMF let me try to rephrase to see if I understand, the carriage return symbol is shown... [18:59:28] RoanKattouw: Yup, now I have 2.6.1 and it's broken. [18:59:29] * James_F sighs. [18:59:42] OK I have one possible fix already [18:59:45] But let me try another [18:59:49] * James_F nods. [18:59:55] TrevorParscal, huh? [19:00:19] ??? [19:00:36] was that last comment in response to my patch? [19:00:51] no, MatmaRex's [19:01:05] OK so I can't pin jshint to 2.6.0 [19:01:14] Because it's installed as a dependency of grunt-jshint-contrib 0.11.0 [19:01:20] And its version number didn't change [19:03:04] TrevorParscal: okay, i missed that then. rendering different groups as if they were merged together doens't look very feasible, though. [19:03:25] lol... [19:03:30] RoanKattouw: We can just add JSON as a global. [19:03:36] RoanKattouw: It's a hack, but… [19:03:39] sorry I guess I must have done a terrible job explaining this [19:04:16] we were hoping to get the general effect of a tool tree structure, without having to actually implement it [19:04:45] using CSS hacks or something... [19:05:33] (03PS1) 10Kmenger: SelectWidget: Marked protected methods and clarified choose/press descriptions [oojs/ui] - 10https://gerrit.wikimedia.org/r/193413 [19:06:31] TrevorParscal: it can't be done CSS-only because of the hover effects on the group [19:07:06] TrevorParscal: it possibly can be done with JS, but actually supporting this would really suck, and there's no sane way to structure the "configuration" [19:07:14] so we could maybe do this as one-off in VE [19:07:33] if you specify what exactly needs to be implemented [19:07:33] what if we had grouping for groups? [19:07:55] Tool, ToolGroup, and ToolGroupGroup? eww [19:08:00] by default they are in their own group (normal behavior we have now [19:08:05] I know man [19:08:07] believe me [19:08:11] uhm, for Hackathon projects, do I just add a phabricator task with Wikimania-Hackathon-2015 project in them? [19:08:14] anyone knows? [19:08:20] but I'm trying to put off the major toolbar rewrite a little longer [19:08:28] but also achieve some of the benefits [19:08:52] ToolSection [19:08:59] sections have groups, groups have tools [19:09:16] sections are only at the bar level, and are what actually produce those outlines on hover [19:09:47] thoughts? [19:10:44] basically, we add another level of structure, so instead of 2 we have 3, by adding the section level, and we move the outline/hover effect to the section level [19:10:57] sections will be very simple, only one kind (they are all bar-style) [19:11:25] hm. [19:13:37] 10VisualEditor, 10Wikimedia-Hackathon-2015: Create an extension/gadget that prompts the user to add citation when they edit in VisualEditor - https://phabricator.wikimedia.org/T91101#1074319 (10Mooeypoo) 3NEW a:3Mooeypoo [19:13:44] TrevorParscal: ToolGrouping maybe? [19:13:52] * James_F is just style and no substance. [19:14:19] MatmaRex's point is, without the DOM changing, we can't really get the hover effect to work correctly [19:14:41] Right. :-( [19:14:48] by introducing a level of grouping above groups (I'm suggesting we call ToolSection) we get that [19:15:01] but, it means we need to adjust the toolbar configurations a bit [19:15:07] * James_F nods. [19:15:19] yeah, that would be somewhat backawrds-incompatible, i think? [19:15:35] what if we made a ToolGroupTool? [19:15:42] a tool that wraps a tool group [19:15:49] One or more groups? [19:15:53] i mean, "ewww", of course [19:16:27] but assuming that we're going to dithc it in a few months, that's less code to write and update now, if it can work [19:20:41] OK, I've got to run. [19:20:52] OK I'm starting on the Lyon spreadsheet [19:21:01] Meanwhile Quim is already asking people to fill out a travel request form :S [19:21:03] RoanKattouw: In your Copious Free Time™ can you make sure TrevorParscal and edsanders|away work on getting https://gerrit.wikimedia.org/r/#/c/192972/ fixed and merged? [19:21:11] But we have to get manager approval anyway and Tomasz is on vacation [19:21:14] RoanKattouw: Indeed. And I need to get the lawyers to OK my travel. Fun! [19:21:19] Yay [19:23:52] so, I need to get Citoid going so I can review mooeypoo's stuff [19:24:09] TrevorParscal, apparently I was told by RoanKattouw that I installed it wrong [19:24:24] despite the fact I went by these instructions: https://www.mediawiki.org/wiki/Citoid [19:24:30] RoanKattouw, so, uh, what's the right way? [19:24:41] but I can change gears and focus on https://gerrit.wikimedia.org/r/#/c/192972/ for now [19:24:41] I haven't finished, but I'm sort of lost now [19:24:41] I got Citoid installed [19:24:41] but nothing is happening [19:24:49] lookin [19:25:55] holy crap that's complicated [19:26:06] TrevorParscal, :\ a little [19:26:11] i think I need a cookie before I begin [19:26:13] and by that I mean yes [19:28:37] (03PS3) 10Jforrester: Make icon and indicator container sizes consistent [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [19:28:56] (03CR) 10Jforrester: [C: 032] "PS3 is a rebase. +2 per Trevor." [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [19:29:12] 10OOjs-UI, 5OOjs-UI-next-release, 5Patch-For-Review: Icon containers should always be the same size so we can use background-size: contain - https://phabricator.wikimedia.org/T85139#1074379 (10Jdforrester-WMF) 5Open>3Resolved [19:29:48] (03CR) 10Jforrester: [C: 032] PopupElement: Add description [oojs/ui] - 10https://gerrit.wikimedia.org/r/193405 (owner: 10Kmenger) [19:30:16] (03Abandoned) 10Bartosz Dziewoński: [WIP] Scrollbar squishing [oojs/ui] - 10https://gerrit.wikimedia.org/r/193282 (https://phabricator.wikimedia.org/T90815) (owner: 10Bartosz Dziewoński) [19:30:38] (03CR) 10Jforrester: SelectWidget: Marked protected methods and clarified choose/press descriptions (033 comments) [oojs/ui] - 10https://gerrit.wikimedia.org/r/193413 (owner: 10Kmenger) [19:30:49] (03Merged) 10jenkins-bot: Make icon and indicator container sizes consistent [oojs/ui] - 10https://gerrit.wikimedia.org/r/181617 (https://phabricator.wikimedia.org/T85139) (owner: 10Esanders) [19:31:04] 10MediaWiki-Page-editing: Pressing "Show changes" doesn't show "Preview of edit summary" - https://phabricator.wikimedia.org/T84883#1074394 (10TheDJ) [19:31:16] 10OOjs-UI, 10VisualEditor: Implement a way to nest toolbar groups without implementing nesting of toolbar groups - https://phabricator.wikimedia.org/T90815#1074395 (10matmarex) [19:32:03] (03Merged) 10jenkins-bot: PopupElement: Add description [oojs/ui] - 10https://gerrit.wikimedia.org/r/193405 (owner: 10Kmenger) [19:34:01] 10OOjs-UI, 5OOjs-UI-next-release, 10VisualEditor, 10VisualEditor-MediaWiki, and 2 others: "Nested" dialogs (template inside a basic reference) break the OOUI hack to prevent scrolling while dialog is open - https://phabricator.wikimedia.org/T89613#1074413 (10Jdforrester-WMF) 5Open>3Resolved [19:34:54] 10OOjs-UI, 5OOjs-UI-next-release, 5Patch-For-Review: OO.ui.ActionFieldLayout doesn't properly accept a jQuery for its label config value - https://phabricator.wikimedia.org/T90936#1074418 (10Jdforrester-WMF) 5Open>3Resolved p:5Triage>3Normal [19:39:20] Krinkle: You missed some fun :) https://github.com/jshint/jshint/issues/2213 [19:40:20] 10VisualEditor, 6Community-Liaison: VisualEditor translathon at Wikimania Mexico - https://phabricator.wikimedia.org/T91108#1074450 (10Elitre) 3NEW a:3Elitre [19:43:42] RoanKattouw: I noticed it on facebook, that one came in earlier while I was afk [19:43:45] (your fb) [19:43:55] haha [19:44:01] Oh right Twitter syncs to FB [19:44:01] RoanKattouw: We auto-update? [19:44:09] Oh, grunt-contrib-jshint [19:44:15] grunt-contrib-jshint 0.11 appears to depend on 2.6.* [19:44:17] So yeah [19:44:31] For that reason I couldn't even pin in package.json [19:44:32] so, we are now using the composer oojs-ui lib for the client as well as the server I see [19:44:41] Adding "jshint": "2.6.0" just adds another copy of jshint at the top level [19:44:43] TrevorParscal: We shouldn't be [19:44:45] Nested dependency handling etc [19:44:53] why is OOjs UI still in resources/core [19:45:03] oh.. well, it appears that's what's going on [19:45:09] TrevorParscal: No it's not [19:45:39] resources/lib/oojs-ui is what js/css uses [19:46:11] I had to live-patch the vendor/oojs/oojs-ui stuff because https://gerrit.wikimedia.org/r/#/c/193163/ is in the core resources/ lib but no the composer provided /vendor lib [19:46:37] I went to resources/ first, that was already fixed - but I was still getting the problem [19:46:49] TrevorParscal: probably cache [19:46:54] TrevorParscal: mediawiki or ve standalone? [19:46:56] went and fixed it in vendor/ (where it was indeed broken) and it started working [19:46:59] (03PS2) 10Kmenger: SelectWidget: Marked protected methods and clarified choose/press descriptions [oojs/ui] - 10https://gerrit.wikimedia.org/r/193413 [19:47:01] mediawiki [19:47:04] localhost [19:47:07] not a cache issue [19:47:55] i don't think [19:47:56] hmm [19:48:28] maybe it is [19:48:34] i hate caching [19:48:39] :) [19:49:10] (03PS9) 10Trevor Parscal: Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 [19:49:40] 10OOjs-UI: OOjs UI: Toolbar should collapse items rather than span multiple lines when the window is narrow - https://phabricator.wikimedia.org/T52227#1074492 (10matmarex) Something like https://gerrit.wikimedia.org/r/#/c/193282/ could possibly help here. [19:53:03] (03CR) 10jenkins-bot: [V: 04-1] Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 (owner: 10Trevor Parscal) [19:57:04] (03PS10) 10Trevor Parscal: Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 [19:57:12] edsanders|away: fixed that [19:57:36] I forgot the view.destroy() so it was still listening to things and freaking out because it had no surface [20:00:07] (03CR) 10jenkins-bot: [V: 04-1] Update VE core submodule to master (2e1a0bb) [extensions/VisualEditor] - 10https://gerrit.wikimedia.org/r/192972 (owner: 10Trevor Parscal) [20:02:29] TrevorParscal, in actionProcess, there's this.actions.setAbilities to enable/disable buttons, and this.actions.setMode to show/hide buttons -- what is the method to trigger an action? I've been searching for the code and I can't find it [20:04:40] 10MediaWiki-Page-editing, 10MediaWiki-RfCs, 7JavaScript, 7Tracking: Live preview (requires JavaScript) feature bugs (tracking) - https://phabricator.wikimedia.org/T41272#1074562 (10TheDJ) [20:04:56] TrevorParscal, is there a way to trigger a specific action outside of the button clicks ? [20:11:56] TrevorParscal: If you suspect it's using vendor/ in some way, I'd be interested in (later) having you try and reproduce that. That sounds bad :) - It doesn't do that for me though. [20:19:25] mooeypoo: executeAction [20:19:37] OO.ui.ProcessDialog.prototype.executeAction [20:19:40] (03PS1) 10Bartosz Dziewoński: demo: Call Toolbar#initialize in toolbar demo [oojs/ui] - 10https://gerrit.wikimedia.org/r/193427 [20:19:42] (03PS1) 10Bartosz Dziewoński: demo: Add PopupTool to toolbar demo [oojs/ui] - 10https://gerrit.wikimedia.org/r/193428 [20:19:58] Krinkle|detached: I tried, it didn't work - i was fooled [20:23:30] brb, lunch [20:26:36] (03PS1) 10Bartosz Dziewoński: PopupTool: Tool constructor takes a toolGroup, not a toolbar [oojs/ui] - 10https://gerrit.wikimedia.org/r/193430 [20:33:03] Hey RoanKattouw, we have not yet done pull through on this right? https://phabricator.wikimedia.org/T90858 [20:44:55] mooeypoo: Hi. Do you know which code is responsibly for choosing to load oojs-ui-apex.svg.css or oojs-ui-apex.css? [20:45:57] actually.. nevermind [20:55:52] (03PS12) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [20:57:53] (03PS13) 10Mvolz: Convert scrape.js to Scraper.js [services/citoid] - 10https://gerrit.wikimedia.org/r/192702 [20:58:26] (03PS5) 10Mvolz: Add ability to set requesting User-Agent [services/citoid] - 10https://gerrit.wikimedia.org/r/193134 (https://phabricator.wikimedia.org/T89757) [21:04:20] InezK, that's what the rendersEmpty property is for [21:05:04] if you have an extension that can render without contents you set that property to true [21:06:32] (03PS1) 10Bartosz Dziewoński: [WIP] Fake toolbar group nesting [oojs/ui] - 10https://gerrit.wikimedia.org/r/193484 [21:06:40] TrevorP|Away: ^ [21:06:53] somebody poke trevor and have him look at this when he's not away [21:07:20] i am away myself, brb [21:08:14] ryasmeen: I think we have by now? [21:08:19] (03CR) 10jenkins-bot: [V: 04-1] [WIP] Fake toolbar group nesting [oojs/ui] - 10https://gerrit.wikimedia.org/r/193484 (owner: 10Bartosz Dziewoński) [21:08:57] Hmm but it's not fixed yet in beta labs ... [21:09:00] I wonder why [21:09:21] RoanKattouw: yeah, I am still seeing everything broken there [21:18:34] RoanKattouw: ryasmeen: beta is broken [21:19:02] at least in debug mode, it's serving old content [21:19:45] https://phabricator.wikimedia.org/T90983 [21:20:57] In non-debug mode too [21:21:03] I'll see if I can fix it in a little bit [21:21:11] * RoanKattouw is still spreadsheeting [21:37:33] (03PS1) 10Kmenger: PopupWidget: Add description, example, and mark private methods [oojs/ui] - 10https://gerrit.wikimedia.org/r/193490 [21:41:13] 10OOjs-UI: OO.ui.DropdownWidget doesn't respond to typing like