[00:08:55] jdlrobson, the HTTPS link icon (the lock) doesn't seem to take effect on VectorBeta (it shows the external icon instead). [00:08:58] Wasn't sure if that was intentional. [00:09:51] StevenW: Am I supposed to be deploying VectorBeta to wmf8, wmf9, or both? [00:11:29] why is $wgLBFactoryConf giving deprecation notices? arg [00:11:46] I mean easy to update, but seems silly [00:21:52] (03PS1) 10EBernhardson: Dont try and do sane things, like generalizing specific exceptions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/106165 [00:22:52] (03CR) 10EBernhardson: [C: 032] Revert "Utilize BufferedCache in TreeRepository" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/106159 (owner: 10EBernhardson) [00:22:58] (03Merged) 10jenkins-bot: Revert "Utilize BufferedCache in TreeRepository" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/106159 (owner: 10EBernhardson) [00:22:59] kaldari: I think just wmf9 [00:23:06] (03PS1) 10EBernhardson: Revert "Utilize BufferedCache in TreeRepository" [extensions/Flow] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106167 [00:23:10] let me check [00:23:40] yeah, wmf9 [00:23:42] kaldari: ^ [00:23:50] thanks [00:24:34] (03CR) 10Bsitu: [C: 032] Revert "Utilize BufferedCache in TreeRepository" [extensions/Flow] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106167 (owner: 10EBernhardson) [00:24:39] (03Merged) 10jenkins-bot: Revert "Utilize BufferedCache in TreeRepository" [extensions/Flow] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106167 (owner: 10EBernhardson) [00:24:55] (03PS1) 10Kaldari: Update VectorBeta to master [core] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106168 [00:25:16] (03CR) 10Kaldari: [C: 032] Update VectorBeta to master [core] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106168 (owner: 10Kaldari) [00:25:42] (03CR) 10Kaldari: [V: 032] Update VectorBeta to master [core] (wmf/1.23wmf9) - 10https://gerrit.wikimedia.org/r/106168 (owner: 10Kaldari) [00:32:09] (03CR) 10Ori.livneh: [C: 031] "I think FastCGI is a hard requirement -- the point of running HHVM behind Apache on Vagrant (rather than expose the built-in server direct" [vagrant] - 10https://gerrit.wikimedia.org/r/105834 (owner: 10EBernhardson) [00:33:23] greg-g: CategoryTree bug reopened... [00:33:24] (03CR) 10Kaldari: "Oh, I didn't realize that VectorBeta totally replaced Vector either. Nevermind :)" [extensions/VectorBeta] - 10https://gerrit.wikimedia.org/r/106153 (owner: 10Kaldari) [00:33:38] (03Abandoned) 10Kaldari: Removing 3 lines that are identical to those already in Vector [extensions/VectorBeta] - 10https://gerrit.wikimedia.org/r/106153 (owner: 10Kaldari) [00:34:14] Uncaught ReferenceError: categoryTreeLoadChildren is not defined [00:35:04] Looks like a typo to me [00:35:10] categoryTree.loadChildren [00:37:07] categoryTreeLoadChildren is only used one [00:37:09] *once [00:37:57] Hmm. If https://gerrit.wikimedia.org/r/#/c/88897/ had been merged more recently.. [00:39:52] backport! [00:40:40] Backport what? :P [00:41:10] Have we made any javascript scoping changes? [00:44:15] ori: Busy? [00:44:52] Reedy: about to head out in a few but i can look at something if it's quick [00:44:53] what's up? [00:45:31] console is complaining about categoryTreeLoadChildren not being defined [00:45:41] Looking at the code, it doesn't seem to be done so as a global function [00:45:55] there is however other places using categoryTree.loadChildren [00:46:18] I just changed [00:46:19] $html .= 'categoryTreeLoadChildren("' . Xml::escapeJsString( $title->getDBkey() ) . '", ' [00:46:20] for [00:46:26] $html .= 'categoryTree.LoadChildren("' . Xml::escapeJsString( $title->getDBkey() ) . '", ' [00:46:35] Now it's Uncaught ReferenceError: categoryTree is not defined [00:47:25] Noting CategoryTreet code hasn't been changed in a while.. So presumably it's a change in core [00:47:43] where are you seeing this? [00:47:56] https://meta.wikimedia.org/wiki/Grants:PEG/Index/Reports [00:48:00] sometimes ReferenceErrors are a red herring [00:48:28] if there's a syntax error and a dependent script fails to parse [00:48:29] The categoryTreeLoadChildren looks very odd when there's only one usage anywhere in the code [00:48:56] could be a load-order issue too [00:49:21] what extension is this coming from? [00:49:26] CategoryTree [00:50:15] it's also included in the page source so it has to load syncronously [00:50:15] https://github.com/wikimedia/mediawiki-extensions-CategoryTree/commits/master [00:50:27] No code changes since November [00:50:39] And that was CSS [00:54:03] it gets defined in a closure and yet the attempt to reference it is in global scope in a