[00:06:13] (03CR) 10Brian Wolff: [C: 032] "+2'ing based on Skizzerz's review." [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [00:07:08] (03CR) 10jenkins-bot: [V: 04-1] Name implicitly created CHECK constraints [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [00:14:18] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c1 (10Prateek Saxena) The following commit addressed this issue - https://gerrit.wikimedia.org/r/#/c/135759/ Have you upgraded and still facing this p... [00:25:17] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c2 (10Laurence 'GreenReaper' Parry) Yes, we are running on the current HEAD. That commit removed parentheses and the material within them. It left the... [00:25:19] (03PS1) 10Brian Wolff: Do thumb attempt-failures limitting via sha1 instead of name. [core] - 10https://gerrit.wikimedia.org/r/142977 [00:30:17] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c3 (10Prateek Saxena) Understood. I'll add failing test cases for the example you mentioned and look into this. Thank you! [00:35:26] (03CR) 10Brian Wolff: "Should MimeMagicCustomInfo and MimeMagicCustomTypes be combined to one hook (Say MimeMagicInit), since in both cases they are used to call" [core] - 10https://gerrit.wikimedia.org/r/141240 (owner: 10Rillke) [00:37:47] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c4 (10Laurence 'GreenReaper' Parry) Cool! If you do make changes, it might also be worth revisiting the name of the function and the accompanying commen... [00:48:48] 3MediaWiki extensions / 3Scribunto: HHVM: Assertion in Scribunto_LuaEngine::callParserFunction() during uksort() call - 10https://bugzilla.wikimedia.org/66943#c4 (10Tim Starling) 5NEW>3RESO/FIX Fix also submitted at https://github.com/facebook/hhvm/pull/3049 [00:53:02] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c5 (10Prateek Saxena) > I know (...now, per https://en.wikipedia.org/wiki/Bracket ) that parentheses are technically a type of bracket, but in that case... [01:04:03] 3MediaWiki extensions / 3Popups: Hovercards: Space before removed parentheses should also be removed in the extract - 10https://bugzilla.wikimedia.org/67225#c6 (10Prateek Saxena) > This patch corrected the name of the function and some variable names too. Sorry! Forgot to add the link - https://gerrit.wikim... [01:04:18] (03PS13) 10Brian Wolff: Name implicitly created CHECK constraints [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [01:04:56] (03CR) 10Brian Wolff: [C: 032] Name implicitly created CHECK constraints [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [01:08:43] (03Merged) 10jenkins-bot: Name implicitly created CHECK constraints [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [01:09:32] 3Wikimedia / 3Site requests: Create "suppressredirect" user group on ckb.wikipedia - 10https://bugzilla.wikimedia.org/67278#c1 (10This, that and the other) 5UNCO>3NEW Calak, I gave you editbugs rights, so now you can file bugs as "NEW" instead of "UNCONFIRMED". [01:20:08] TimStarling: question about the parser: why does it have all sorts of limits like post-expand include size and expensive parser function count, rather than just having a simple time limit? (and is that the direction you want to move in, or am i remembering something else?) [01:21:30] the basic problem is that you don't want an article to look fine on preview and then to fail a few hours later for an anonymous reader [01:22:08] complexity limits are fairly stable and will give the same result across a homogeneous cluster of the kind that we have traditionally had [01:22:21] s/homogeneous/heterogeneous/ [01:23:08] but with Lua, I judged that approach to be infeasible and so used time limits instead [01:23:17] time limits can be managed to avoid the problem of hidden errors [01:23:31] but that is not done yet, so it probably is a problem in practice [01:23:51] the only protection we have is that the amount of time you have used towards the limit is more visible than it used to be [01:24:48] my concern is things like {{collapse top}} and {{collapse bottom}} produce unbalanced wikitext, because those are "cheap" by our standards, whereas a single template that takes big content as a parameter is "expensive", even though we all agree that for various reasons the former would actually be better [01:25:39] s/former/latter/ [01:26:45] You could cheat and make {{#collapse:}} maybe? [01:26:57] but there's tons of templates that all do stuff like that [01:27:01] (03CR) 10Springle: Initial commit of AdvancedMeta version 3.0.1 removed all $_POST, removed preg replace for extending the editform, removed a few globals (031 comment) [extensions/AdvancedMeta] - 10https://gerrit.wikimedia.org/r/142502 (owner: 10Swidmann) [01:27:05] Yeah. [01:27:14] Isn't this Parsoid's problem? [01:27:17] and there's other kinds of nastiness like my {{#ifeq:{{:foo}}|[[:foo]]|no|yes}} instead of {{#ifexist:foo|yes|no}}, since the former is "cheaper" [01:27:21] and you are saying the post-expand include size is the main reason for this? [01:27:23] that partially is, but the underlying issue is our fault [01:27:36] TimStarling: afaik, that's the major reason wyh [01:27:37] why [01:27:46] I thought you were discussing unbalanced markup. [01:27:52] Like opening and closing templates. [01:28:03] Carmela: we're discussing bad things that people do because of the parser's limits [01:28:20] I don't think people use open and close templates due to parser limits. [01:28:30] why do they then? [01:28:44] Lots of content inside two matching {{ and }} is pretty annoying. [01:28:55] Plus you've gotta use 1=. [01:29:04] If you have any equals sign in the content. [01:29:05] my location map module also does the same thing, and i did it for the limits, because i hit them without it [01:30:08] what if we did something like pages have 30 seconds to render when you're saving, but 60 seconds otherwise (or something)? [01:32:49] (also, if lua ever gets uargs, the 1='s won't be necessary anymore) [01:33:01] that is what I would like to do for lua, yes [01:33:07] not sure how feasible it is for the parser... [01:33:19] what would you show if the time limit expired? [01:33:52] how would you even know if it expired? [01:34:05] run just the stuff necessary for security (like html sanitization) on whatever's left, and tack on a big red error and tracking cat [01:34:29] (and if it happened during save, deny the save) [01:35:17] it's not like there is a single loop where a check can be inserted [01:35:55] assuming that we did find a way to see when time ran out, would that be feasible? [01:36:04] you could add checks in every loop [01:36:29] but the checks themselves might slow down execution significantly [01:36:52] but there's a lot of different loops, some called recursively [01:37:25] really you would have to throw an exception if the time limit expires, it is hard to imagine the parser stopping by itself [01:37:56] but there's no output buffer where results are accumulated [01:38:25] and template expansion would be the most common place for time limits to expire, in which case you haven't got any output at all by that point [01:39:41] one way to do it would be to fork and to kill the entire process when the time limit expires [01:39:48] then just display an error message [01:40:46] what if when the time limit hit, assuming it happened during the preprocess, switch on RECOVER_ORIG for the rest of the expansion? [01:41:41] and then what? it could still run for minutes in the main pass [01:42:02] 3Wikimedia / 3Site requests: namespace alias on chinese wikivoyage - 10https://bugzilla.wikimedia.org/60086#c3 (10This, that and the other) 5NEW>3RESO/INV No evidence of consensus. [01:42:06] how much text do you suppose the preprocessor can generate in 30 seconds, if it was trying hard? [01:42:59] i've always known the preprocessor to be slow at generating text. but in case it were fast, what if it did RECOVER_ORIG and switched to sanitizer-only after that was done? [01:43:11] (and regarding where to put timer checks, just put them where counter checks are now) [01:43:32] 3Wikimedia / 3Site requests: Notification emails should link to https, not http - 10https://bugzilla.wikimedia.org/32769#c8 (10This, that and the other) 5RESO/LAT>3RESO/FIX Notification e-mails now use HTTPS [01:43:56] or even not run the real sanitizer, just run htmlspecialchars on it all? [01:45:02] you could have a size limit applied to the final preprocessor output, instead of incremented along the way [01:45:19] that would help prevent the preprocessor from attacking the main pass too badly [01:45:46] would that make nested templates not increase their cost exponentially each level? [01:45:48] well, it would be as good as what we have already, more or less [01:46:08] that is what I am suggesting, yes [01:46:19] that would go a good way toward fixing it [01:46:29] because right now i do notice that the limits aren't really correlated with performance [01:46:42] i know pages that render in 10-15 seconds that hit a limit, and pages that render for 50 seconds that don't [01:46:58] then there is the issue of memory... [01:47:09] the expansion limits are memory limits as well as time limits [01:47:32] 3Wikimedia / 3Site requests: {{BASEPAGENAME}} & {{SUBPAGENAME}} don't work properly in the fr.Wikiversity templates namespace - 10https://bugzilla.wikimedia.org/57487#c8 (10This, that and the other) It seems that I forgot about this bug. Sorry! [01:47:34] oh, they are correlated for certain test cases [01:47:47] 3Wikimedia / 3Site requests: {{BASEPAGENAME}} & {{SUBPAGENAME}} don't work properly in the fr.Wikiversity templates namespace - 10https://bugzilla.wikimedia.org/57487 (10This, that and the other) [01:47:57] we can always add more limits to catch those slow pages you are seeing [01:48:16] it's not really an argument against the whole idea of complexity limits [01:48:31] what could we limit for [[List of PlayStation 3 games]] (which is the 50-second one)? [01:49:07] that's not a question I can answer at a glance [01:49:29] what other things are there to limit that we don't currently limit? [01:50:04] 3MediaWiki extensions / 3Collection: Book tool incompatible with ProofreadPage extension, again - 10https://bugzilla.wikimedia.org/66597#c2 (10555) a:3PediaPress Development Team Assigning dev@pediapress.com as on bug 21653 [01:50:51] number of table cells [02:01:12] number of style attributes [02:01:28] it has 9000 of those [02:08:17] 3MediaWiki extensions / 3Popups: Hovercards: Blue text appearing in textextract - 10https://bugzilla.wikimedia.org/67181#c4 (10Quiddity) 5NEW>3RESO/INV Ah, this was [[User:Anomie/linkclassifier]] interfering. My mistake! [02:17:04] 3Wikimedia / 3General/Unknown: Schema change for page content language - 10https://bugzilla.wikimedia.org/67223 (10Sean Pringle) a:3Sean Pringle [02:18:02] 3MediaWiki extensions / 3Popups: Hovercards: Punctuation should not prevent the title from being bolded in an extract - 10https://bugzilla.wikimedia.org/67227#c2 (10Laurence 'GreenReaper' Parry) A related consideration: while article.getProcessedHtml requires space (or the article start/end) before and after... [02:23:02] 3MediaWiki extensions / 3CirrusSearch: should include link URLs in search? - 10https://bugzilla.wikimedia.org/52905#c13 (10Quiddity) Now that insource: is available, it is at least possible to find the desired content. E.g. https://test2.wikipedia.org/w/index.php?title=Special%3ASearch&profile=default&search... [02:46:12] (03CR) 10Hoo man: [C: 04-1] "Ah, damn... the logic for logging out a user during the renaming is broken now :/" [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) (owner: 10Legoktm) [02:50:18] 3MediaWiki extensions / 3Scribunto: HHVM: assertion in Scribunto_LuaLanguageLibrary::convertPlural() - 10https://bugzilla.wikimedia.org/67187#c1 (10Tim Starling) Fixed in my dev branch and submitted upstream at https://github.com/facebook/hhvm/pull/3065 [02:50:18] 3MediaWiki / 3User login and signup: Remove "Remember my login"-option from the preferences - 10https://bugzilla.wikimedia.org/52342 (10Quiddity) [02:50:18] 3MediaWiki / 3User login and signup: $wgDefaultUserOptions['rememberpassword'] = 1 stopped working in 1.23 - 10https://bugzilla.wikimedia.org/67133 (10Quiddity) [02:50:32] 3MediaWiki extensions / 3Scribunto: HHVM: assertion in Scribunto_LuaLanguageLibrary::convertPlural() - 10https://bugzilla.wikimedia.org/67187 (10Tim Starling) 5NEW>3RESO/FIX [02:57:02] (03CR) 10Hoo man: "To be a little more specific:" [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) (owner: 10Legoktm) [03:08:17] (03PS1) 10Gnosygnu: v1.6.5.1 [xowa] - 10https://gerrit.wikimedia.org/r/142981 [03:17:02] 3MediaWiki extensions / 3EducationProgram: User's IP is shown as ' is a student in Intellectual Freedom - LIS 493 (course talk).' on all IP editors' contributions - 10https://bugzilla.wikimedia.org/66624#c21 (10Kunal Mehta (Legoktm)) Andrew, is this fixed now? [03:21:13] (03CR) 10Gnosygnu: [C: 032 V: 032] "approving own commit" [xowa] - 10https://gerrit.wikimedia.org/r/142981 (owner: 10Gnosygnu) [04:32:46] how can I invalidate $wgMemc? [04:44:33] (03PS1) 10Wctaiwan: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 [04:47:01] (03CR) 10MarkAHershberger: [C: 032] Enable WikiEditor toolbar on iOS [extensions/WikiEditor] (REL1_23) - 10https://gerrit.wikimedia.org/r/142871 (https://bugzilla.wikimedia.org/63277) (owner: 10Paladox) [04:47:05] (03Merged) 10jenkins-bot: Enable WikiEditor toolbar on iOS [extensions/WikiEditor] (REL1_23) - 10https://gerrit.wikimedia.org/r/142871 (https://bugzilla.wikimedia.org/63277) (owner: 10Paladox) [04:48:03] 3MediaWiki extensions / 3WikiEditor: Wikieditor shows old toolbar on non-mobile interface on en.wp on iOS 7 with Apple Safari - 10https://bugzilla.wikimedia.org/63277 (10Mark A. Hershberger) [04:48:20] (03PS2) 10Wctaiwan: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 [04:52:33] 3Wikimedia / 3Site requests: Create "suppressredirect" user group on ckb.wikipedia - 10https://bugzilla.wikimedia.org/67278#c3 (10Calak) Thank you very much TTO! [04:56:02] (03PS1) 10MarkAHershberger: Fix initSiteStats.php maintenance script [core] (REL1_23) - 10https://gerrit.wikimedia.org/r/142987 (https://bugzilla.wikimedia.org/65214) [04:57:29] (03CR) 10MarkAHershberger: [C: 032] Fix initSiteStats.php maintenance script [core] (REL1_23) - 10https://gerrit.wikimedia.org/r/142987 (https://bugzilla.wikimedia.org/65214) (owner: 10MarkAHershberger) [05:00:37] (03Merged) 10jenkins-bot: Fix initSiteStats.php maintenance script [core] (REL1_23) - 10https://gerrit.wikimedia.org/r/142987 (https://bugzilla.wikimedia.org/65214) (owner: 10MarkAHershberger) [05:02:34] 3MediaWiki / 3Maintenance scripts: initSiteStats.php calls undefined/protected functions - 10https://bugzilla.wikimedia.org/65214#c9 (10This, that and the other) 5PATC>3RESO/FIX (In reply to Andyrom75 from comment #6) > Question: > 1) Is it normal this error message: To answer your question, yes, it is... [05:09:03] 3MediaWiki / 3Maintenance scripts: initSiteStats.php calls undefined/protected functions - 10https://bugzilla.wikimedia.org/65214#c10 (10Mark A. Hershberger) Error was caused by a full disk: > Error: 13 database or disk is full Adding Hashar since he manages Jenkins. [06:20:04] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c9 (10Juan de Vojníkov) Created attachment 15777 --> https://bugzilla.wikimedia.org/attachment.cgi?id=15777&action=edit Screenshot of cs:v:Italština/Materiály/Slovesa/Lavare upright 0.5 [06:20:32] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c10 (10Juan de Vojníkov) Created attachment 15778 --> https://bugzilla.wikimedia.org/attachment.cgi?id=15778&action=edit Screenshot of cs:v:Italština/Materiály/Slovesa/Lavare upright 1 [06:21:02] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c11 (10Juan de Vojníkov) Created attachment 15779 --> https://bugzilla.wikimedia.org/attachment.cgi?id=15779&action=edit Screenshot of cs:v:Italština/Materiály/Slovesa/Lavare upright 1.75 [06:27:17] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c12 (10Juan de Vojníkov) So, I have uploaded 3 screenshots of the same page in the row. The first image is of this revision: https://cs.wikiversity.org/w/index.php?title=Ital%C5%A1tina/Mater... [06:28:41] (03CR) 10Nemo bis: "What does that imply, i.e. what can one do if login doesn't fail? As long as no accounts are created, IMHO it's not a tragedy." [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) (owner: 10Legoktm) [06:34:48] (03PS2) 10Nikerabbit: Vector: Remove translations for non-existent message 'vector-desc' [core] - 10https://gerrit.wikimedia.org/r/142968 (owner: 10Bartosz Dziewoński) [06:35:02] (03CR) 10Nikerabbit: [C: 032] Vector: Remove translations for non-existent message 'vector-desc' [core] - 10https://gerrit.wikimedia.org/r/142968 (owner: 10Bartosz Dziewoński) [06:35:19] (03CR) 10Raimond Spekking: [C: 032] Vector: Remove translations for non-existent message 'vector-desc' [core] - 10https://gerrit.wikimedia.org/r/142968 (owner: 10Bartosz Dziewoński) [06:36:16] :o [06:37:32] (03CR) 10Florianschmidtwelzow: [C: 04-1] mediawiki.searchSuggest: Enable for iPhone and iPod touch (031 comment) [core] - 10https://gerrit.wikimedia.org/r/139809 (owner: 10Paladox) [06:39:17] (03Merged) 10jenkins-bot: Vector: Remove translations for non-existent message 'vector-desc' [core] - 10https://gerrit.wikimedia.org/r/142968 (owner: 10Bartosz Dziewoński) [06:41:09] (03CR) 10Legoktm: [C: 04-1] Change PF handling; include site in getTargets (033 comments) [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 (owner: 10Wctaiwan) [06:51:47] (03CR) 10Nikerabbit: [C: 04-1] Handle invalid language code gracefully in Language::fetchLanguageNames (031 comment) [core] - 10https://gerrit.wikimedia.org/r/142974 (https://bugzilla.wikimedia.org/60629) (owner: 10Brian Wolff) [06:53:47] 3Wikimedia / 3General/Unknown: Increase "remember me" login cookie expiry from 30 days to 1 year on Wikimedia wikis - 10https://bugzilla.wikimedia.org/66699#c34 (10Martin von Gagern) (In reply to Krinkle from comment #24) > Hm.. also relevant is that we invalidate existing sessions when a new > session start... [06:57:47] 3MediaWiki / 3Maintenance scripts: initSiteStats.php calls undefined/protected functions - 10https://bugzilla.wikimedia.org/65214#c11 (10Andyrom75) Thanks to both of you for the answer and good to know. [07:09:02] 3MediaWiki extensions / 3WikidataRepo: Additional javascript:void() introduced by new suggester - 10https://bugzilla.wikimedia.org/66438#c1 (10Henning) 5NEW>3RESO/FIX https://github.com/wmde/ValueView/pull/77 [07:14:18] (03CR) 10Hydriz: [C: 032 V: 032] Remove now duplicate license information [extensions/HostStats] - 10https://gerrit.wikimedia.org/r/142896 (owner: 10Kghbln) [07:23:20] (03CR) 10Nemo bis: "Thanks for working on this. It can maybe deduced from the current commit message, but it would be nice to formulate what makes Special:Blo" [core] - 10https://gerrit.wikimedia.org/r/129944 (owner: 10Umherirrender) [07:23:27] (03CR) 10Florianschmidtwelzow: [C: 031] Remove 'webkit-backface-visibility' rule which made iPads super blurry [core] - 10https://gerrit.wikimedia.org/r/142975 (https://bugzilla.wikimedia.org/67286) (owner: 10Brion VIBBER) [07:30:35] (03CR) 10Florianschmidtwelzow: "I think i know, for which problem the rule is, for example, see here:" [core] - 10https://gerrit.wikimedia.org/r/142975 (https://bugzilla.wikimedia.org/67286) (owner: 10Brion VIBBER) [07:42:40] (03PS3) 10Wctaiwan: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 [07:42:50] (03CR) 10jenkins-bot: [V: 04-1] Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 (owner: 10Wctaiwan) [07:44:03] (03PS4) 10Wctaiwan: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 [07:48:27] (03CR) 10Legoktm: Change PF handling; include site in getTargets (031 comment) [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 (owner: 10Wctaiwan) [07:49:19] (03Abandoned) 10Prtksxna: [wip] add viewbox [extensions/Popups] - 10https://gerrit.wikimedia.org/r/141893 (owner: 10Prtksxna) [08:00:14] (03PS5) 10Wctaiwan: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 [08:03:30] (03CR) 10Legoktm: [C: 032] Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 (owner: 10Wctaiwan) [08:03:39] (03Merged) 10jenkins-bot: Change PF handling; include site in getTargets [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/142986 (owner: 10Wctaiwan) [08:17:51] 3MediaWiki extensions / 3ContentTranslation: [Data loss] Emptying a section by holding backspace navigates away - 10https://bugzilla.wikimedia.org/67288 (10Niklas Laxström) 3NEW p:3Unprio s:3major a:3None 1) Go to https://dev.translatewiki.net/w/i.php?title=Special:ContentTranslation&from=fi&to=en&pa... [08:20:20] 3MediaWiki extensions / 3ContentTranslation: Whitespace buildup in Special:CX - 10https://bugzilla.wikimedia.org/67289 (10Niklas Laxström) 3NEW p:3Unprio s:3normal a:3None 1) Go to https://dev.translatewiki.net/w/i.php?title=Special:ContentTranslation&from=fi&to=en&page=rahasto&debug=true (any CX ins... [08:25:06] 3MediaWiki extensions / 3ContentTranslation: Publishing fails if invalid target title is given - 10https://bugzilla.wikimedia.org/67290 (10Niklas Laxström) 3NEW p:3Unprio s:3normal a:3None 1) Go to any CX instance 2) Input Foo[]| as page name 3) Click publish Observer: JavaScript error from MediaWik... [08:27:47] 3MediaWiki extensions / 3ContentTranslation: Image size calculation error cause wrong alignment - 10https://bugzilla.wikimedia.org/66411 (10Santhosh Thottingal) 5PATC>3RESO/FIX [08:39:02] 3MediaWiki / 3Installer: MSSQL installer broken; updateRowExists returns always false - 10https://bugzilla.wikimedia.org/65813 (10Rainer Rillke @commons.wikimedia) 5PATC>3RESO/FIX [08:39:17] 3MediaWiki / 3Database: Explicitly name check constraints for Microsoft SQL Server schema - 10https://bugzilla.wikimedia.org/65757 (10Rainer Rillke @commons.wikimedia) 5PATC>3RESO/FIX [08:56:34] (03CR) 10Rillke: [C: 04-1] "> Should MimeMagicCustomInfo and MimeMagicCustomTypes ..." [core] - 10https://gerrit.wikimedia.org/r/141240 (owner: 10Rillke) [09:02:24] (03CR) 10PleaseStand: [C: 04-1] "I also see no problem with the current wording, which can go away once PHP 5.3 support is dropped. (register_globals was removed in 5.4.0." [core] - 10https://gerrit.wikimedia.org/r/142814 (owner: 10Withoutaname) [09:06:39] (03CR) 10Hashar: [C: 04-1] "I guess the modification to JavaScript files are unrelated are they? =)" [extensions/Math] - 10https://gerrit.wikimedia.org/r/142739 (https://bugzilla.wikimedia.org/67148) (owner: 10Physikerwelt) [09:13:35] (03PS6) 10Foxtrott: Fix CSSMin url() remapping when comments in CSS contain curly braces [core] - 10https://gerrit.wikimedia.org/r/139268 (https://bugzilla.wikimedia.org/60077) [09:13:37] (03CR) 10jenkins-bot: [V: 04-1] Fix CSSMin url() remapping when comments in CSS contain curly braces [core] - 10https://gerrit.wikimedia.org/r/139268 (https://bugzilla.wikimedia.org/60077) (owner: 10Foxtrott) [09:14:12] (03PS7) 10Foxtrott: Fix CSSMin url() remapping when comments in CSS contain curly braces [core] - 10https://gerrit.wikimedia.org/r/139268 (https://bugzilla.wikimedia.org/60077) [09:22:24] (03CR) 10Hashar: [C: 04-1] "I guess that means adding a mathoid table on the Wikimedia production server isn't it? If so you want to follow https://wikitech.wikimedi" [extensions/WikimediaMaintenance] - 10https://gerrit.wikimedia.org/r/135522 (https://bugzilla.wikimedia.org/65793) (owner: 10Physikerwelt) [09:23:02] (03CR) 10Hashar: [C: 031] Added missing Cucumber tags to Selenium tests [core] - 10https://gerrit.wikimedia.org/r/142802 (owner: 10Zfilipin) [09:23:33] (03CR) 10Hashar: "What about merging this change with the previous one https://gerrit.wikimedia.org/r/#/c/142635/ ?" [core] - 10https://gerrit.wikimedia.org/r/142703 (owner: 10MaxSem) [09:24:10] (03CR) 10Hashar: "You might want to squash the child change https://gerrit.wikimedia.org/r/#/c/142703/" [core] - 10https://gerrit.wikimedia.org/r/142635 (owner: 10MaxSem) [09:24:29] (03CR) 10Hashar: [C: 031] Use HTMLForm to generate the form on Special:ListFiles [core] - 10https://gerrit.wikimedia.org/r/142876 (owner: 10IAlex) [09:25:55] (03PS3) 10Hashar: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [09:26:19] (03CR) 10Hashar: "Removed reference to bug 52274, patch and bug are unrelated" [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [09:26:33] 3MediaWiki extensions / 3WikidataRepo: Better support for exact values in Quantity DataType - 10https://bugzilla.wikimedia.org/66580#c3 (10Henning) Still unclear to me why there is any "margin of uncertainty" by default at all. The quantity value is extracted from a reference. It is each particular reference... [09:26:49] 3Wikimedia / 3Site requests: Create "suppressredirect" user group on ckb.wikipedia - 10https://bugzilla.wikimedia.org/67278 (10Calak) a:3This, that and the other [09:29:35] (03PS2) 10Hashar: mwconf: wgShowDBErrorBacktrace = true [integration/jenkins] - 10https://gerrit.wikimedia.org/r/142291 [09:30:20] (03CR) 10jenkins-bot: [V: 04-1] Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [09:31:16] (03CR) 10Hashar: [C: 032] mwconf: wgShowDBErrorBacktrace = true [integration/jenkins] - 10https://gerrit.wikimedia.org/r/142291 (owner: 10Hashar) [09:31:19] (03Merged) 10jenkins-bot: mwconf: wgShowDBErrorBacktrace = true [integration/jenkins] - 10https://gerrit.wikimedia.org/r/142291 (owner: 10Hashar) [09:36:46] (03Abandoned) 10Hashar: test [test/mediawiki/extensions/examples] - 10https://gerrit.wikimedia.org/r/142865 (owner: 10Gerrit Patch Uploader) [09:36:49] (03Abandoned) 10Hashar: test [test/mediawiki/extensions/examples] - 10https://gerrit.wikimedia.org/r/142866 (owner: 10Gerrit Patch Uploader) [09:36:53] (03Abandoned) 10Hashar: test2 [test/mediawiki/extensions/examples] - 10https://gerrit.wikimedia.org/r/142867 (owner: 10Gerrit Patch Uploader) [09:40:02] 3Wikimedia / 3Site requests: $wgCategoryCollation for sh.wikipedia.org - 10https://bugzilla.wikimedia.org/67287#c2 (10Kolega2357) https://sh.wikipedia.org/wiki/Wikipedia:Pijaca-%D0%9F%D0%B8%D1%98%D0%B0%D1%86%D0%B0#.24wgCategoryCollation I am started consensus at the wiki. Please wait. [09:41:02] 3MediaWiki extensions / 3WikidataRepo: Entity suggester for Wikidata - 10https://bugzilla.wikimedia.org/46555#c19 (10Lydia Pintscher) 5PATC>3RESO/FIX Deployed on test now \o/ Time to close this. [09:41:36] (03Abandoned) 10Hashar: Cleanup [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/88798 (owner: 10TK-999) [09:41:40] (03Abandoned) 10Hashar: Refactor front-end logic [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/88799 (owner: 10TK-999) [09:41:44] (03Abandoned) 10Hashar: Caps [extensions/Tabber] - 10https://gerrit.wikimedia.org/r/88800 (owner: 10TK-999) [09:42:02] 3MediaWiki extensions / 3WikidataRepo: aggregate list of non user-friendly messages on Wikidata - 10https://bugzilla.wikimedia.org/62778 (10Lydia Pintscher) 5PATC>3RESO/FIX [09:42:05] (03Abandoned) 10Hashar: version 0.2 [extensions/HSTS] - 10https://gerrit.wikimedia.org/r/82643 (owner: 10Seb35) [09:42:40] (03Abandoned) 10Hashar: Readding all files so I can review them [extensions/SignupAPI] - 10https://gerrit.wikimedia.org/r/8002 (owner: 10Kaldari) [09:42:49] (03Abandoned) 10Hashar: Clean up [extensions/SignupAPI] - 10https://gerrit.wikimedia.org/r/22861 (owner: 10Akshay) [09:42:56] (03Abandoned) 10Hashar: More clean up [extensions/SignupAPI] - 10https://gerrit.wikimedia.org/r/23031 (owner: 10Akshay) [09:43:02] 3MediaWiki extensions / 3Translate: Undefined index: help in GlobalFunctions.php on line 289 - 10https://bugzilla.wikimedia.org/66410 (10Lydia Pintscher) 5PATC>3RESO/FIX [09:44:17] 3MediaWiki extensions / 3WikidataRepo: Unexpected non-MediaWiki exception encountered, of type "InvalidArgumentException" in Special:SetSiteLink Exception from line 78 of ChangeOpSiteLink.php - 10https://bugzilla.wikimedia.org/63391 (10Lydia Pintscher) 5PATC>3NEW [09:47:34] 3MediaWiki extensions / 3ContentTranslation: Creating a link to TitleCase page changes text to titlecase - 10https://bugzilla.wikimedia.org/67291 (10Niklas Laxström) 3NEW p:3Unprio s:3normal a:3None 1) Go to any Special:CX page with article 2) In translation column, type in Finland 3) Select the word... [10:01:47] 3MediaWiki / 3API: API warning "Action 'patrol' is not allowed for the current user" is misleading in api.php?action=query&list=r ecentchanges&rctoken=patrol - 10https://bugzilla.wikimedia.org/47348#c8 (10Liangent) 5RESO/INV>3REOP I got trapped by this again until I read ApiQueryRecentChanges.php myself.... [10:02:17] 3MediaWiki / 3API: API warning "Action 'patrol' is not allowed for the current user" is misleading in api.php?action=query&list=recentchanges&rctoken=patrol - 10https://bugzilla.wikimedia.org/47348 (10Liangent) s:5normal>3minor [10:11:47] 3MediaWiki extensions / 3WikidataRepo: Regular expression in data-model-javascript resources file causes stack trace on Windows - 10https://bugzilla.wikimedia.org/67078 (10Lydia Pintscher) 5PATC>3RESO/FIX [10:13:47] 3MediaWiki extensions / 3Translate: Failed to deserialize - 10https://bugzilla.wikimedia.org/47628 (10Lydia Pintscher) 5PATC>3RESO/FIX [10:16:47] 3MediaWiki extensions / 3WikidataRepo: Migrate current special-page selenium tests to cucumber - 10https://bugzilla.wikimedia.org/53846 (10Lydia Pintscher) 5PATC>3NEW [10:18:02] 3MediaWiki / 3General/Unknown: Title::getTitleValue() fails because ContentHandlerDefaultModelFor() is called for interwiki page. - 10https://bugzilla.wikimedia.org/66555 (10Lydia Pintscher) 5PATC>3NEW [10:18:17] 3MediaWiki / 3API: Exception Caught: Internal error in ApiFormatXml::recXmlPrint - 10https://bugzilla.wikimedia.org/67246 (10Lydia Pintscher) 5PATC>3RESO/FIX [10:18:47] 3MediaWiki extensions / 3WikidataRepo: Adding site links is broken - 10https://bugzilla.wikimedia.org/67244 (10Lydia Pintscher) p:5Unprio>3Highes s:5normal>3critic [10:21:24] (03CR) 10Raimond Spekking: [C: 032 V: 032] Implemented changes for translatewiki [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/140905 (owner: 10Smuggli) [10:24:12] (03CR) 10Hashar: "check experimental" [core] - 10https://gerrit.wikimedia.org/r/92621 (owner: 10Hashar) [10:34:19] 3MediaWiki extensions / 3Collection: Book tool incompatible with ProofreadPage extension, again - 10https://bugzilla.wikimedia.org/66597#c3 (10Andre Klapper) a:5PediaPress Development Team>3None 555: That account was already CC'ed here. As long as there's no clear statement by that account that they plan... [10:34:47] 3MediaWiki extensions / 3WikidataRepo: Factor diff logic out of EntityContent - 10https://bugzilla.wikimedia.org/67238 (10Lydia Pintscher) p:5Unprio>3High [10:35:32] 3MediaWiki extensions / 3WikidataClient: Time formatting incorrect for Hebrew - 10https://bugzilla.wikimedia.org/67194#c1 (10Lydia Pintscher) 5NEW>3RESO/DUP *** This bug has been marked as a duplicate of bug 48962 *** [10:35:32] 3MediaWiki extensions / 3WikidataRepo: localize display of time values - 10https://bugzilla.wikimedia.org/48962#c7 (10Lydia Pintscher) *** Bug 67194 has been marked as a duplicate of this bug. *** [10:36:47] 3MediaWiki extensions / 3WikidataRepo: Add link to merge summary - 10https://bugzilla.wikimedia.org/67281 (10Lydia Pintscher) p:5Unprio>3Normal [10:37:47] 3Wikimedia / 3Site requests: $wgCategoryCollation for sh.wikipedia.org - 10https://bugzilla.wikimedia.org/67287 (10Andre Klapper) 5UNCO>3NEW p:5Unprio>3Normal s:5normal>3enhanc [10:37:47] 3MediaWiki extensions / 3WikidataRepo: Wikidata properties linking media should show up in GlobalUsage - 10https://bugzilla.wikimedia.org/46358#c14 (10Lydia Pintscher) My hope is that we will solve this with showing the actual images in the new design being worked on. [10:40:18] 3Wikimedia / 3Bugzilla: Fake Wikimedia Bugzilla bugmeister emails sent from lbl.gov server - 10https://bugzilla.wikimedia.org/67275#c10 (10Andre Klapper) 5NEW>3RESO/FIX Awesome. That was fast. Thank you! Closing ticket as FIXED; anybody please reopen if you still receive such mail. [10:46:47] 3MediaWiki / 3Special pages: Special:RandomInCategory : there is a point (full stop character) after the button - 10https://bugzilla.wikimedia.org/67253 (10Andre Klapper) p:5Unprio>3Low [10:47:38] (03PS16) 10Hashar: (WIP) Experiment zuul-cloner with extensions [integration/jenkins-job-builder-config] - 10https://gerrit.wikimedia.org/r/141846 [10:47:47] 3MediaWiki / 3General/Unknown: Extensions missing REL1_23 branches - 10https://bugzilla.wikimedia.org/67270 (10Andre Klapper) p:5Unprio>3High [10:48:13] (03CR) 10Hashar: "Dropped Translate: fatal errors with spyc_load()" [integration/jenkins-job-builder-config] - 10https://gerrit.wikimedia.org/r/141846 (owner: 10Hashar) [10:49:32] 3MediaWiki / 3Page deletion: special page delete revision tabindex order incorrect - 10https://bugzilla.wikimedia.org/67271 (10Andre Klapper) p:5Unprio>3Normal [10:50:02] 3Wikimedia / 3OTRS: different merge methods produce different results (extra articles?) - 10https://bugzilla.wikimedia.org/67264 (10Andre Klapper) p:5Unprio>3Normal [10:50:18] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c13 (10Andre Klapper) Ah. Thanks. :) [10:52:19] 3MediaWiki / 3Installer: Installer doesn't offer Simple English even though simple is included in the tarball. - 10https://bugzilla.wikimedia.org/49395 (10Andre Klapper) a:5Anjana S>3None [10:52:34] (03PS4) 10Physikerwelt: Fix MathDatabaseTest [extensions/Math] - 10https://gerrit.wikimedia.org/r/142739 (https://bugzilla.wikimedia.org/67148) [10:53:01] (03PS8) 10Physikerwelt: Update modules/ext.math.css [extensions/Math] - 10https://gerrit.wikimedia.org/r/139120 (owner: 10Frédéric Wang) [10:54:32] 3MediaWiki / 3Parser: PAGESINCATEGORY should decode HTML entities of input - if {{PAGENAME}} contains ' it will display 0 - 10https://bugzilla.wikimedia.org/67196 (10Andre Klapper) p:5Unprio>3Normal [10:54:47] 3MediaWiki extensions / 3Spam Blacklist: Enabling SpamBlacklist breaks EditPageTest in core - 10https://bugzilla.wikimedia.org/67043 (10Andre Klapper) p:5Unprio>3High [10:55:31] (03PS4) 10Physikerwelt: Add table for new math renderer Mathoid [extensions/WikimediaMaintenance] - 10https://gerrit.wikimedia.org/r/135522 (https://bugzilla.wikimedia.org/65793) [10:56:17] 3Wikimedia / 3Bugzilla: Create a MediaWiki extensions component for ZeroPortal - 10https://bugzilla.wikimedia.org/67143#c5 (10Andre Klapper) Waiting for input from Arthur. (To do: Bug 67142 should be moved afte deciding.) [10:57:11] (03CR) 10Physikerwelt: "@Hashar: Thanks, I realized that the hard way in the mean time." [extensions/WikimediaMaintenance] - 10https://gerrit.wikimedia.org/r/135522 (https://bugzilla.wikimedia.org/65793) (owner: 10Physikerwelt) [11:06:07] (03CR) 10Physikerwelt: [C: 032] Update modules/ext.math.css [extensions/Math] - 10https://gerrit.wikimedia.org/r/139120 (owner: 10Frédéric Wang) [11:06:32] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL calls [extensions/UserStatus] - 10https://gerrit.wikimedia.org/r/142771 (owner: 10Umherirrender) [11:06:34] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL calls [extensions/PollNY] - 10https://gerrit.wikimedia.org/r/142773 (owner: 10Umherirrender) [11:06:36] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL calls [extensions/PictureGame] - 10https://gerrit.wikimedia.org/r/142775 (owner: 10Umherirrender) [11:06:38] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL calls [extensions/QuizGame] - 10https://gerrit.wikimedia.org/r/142776 (owner: 10Umherirrender) [11:06:40] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL call [extensions/VoteNY] - 10https://gerrit.wikimedia.org/r/142779 (owner: 10Umherirrender) [11:06:42] (03CR) 10Jack Phoenix: [C: 032 V: 032] Replace deprecated Title::escapeFullURL call [extensions/RandomUsersWithAvatars] - 10https://gerrit.wikimedia.org/r/142782 (owner: 10Umherirrender) [11:10:02] 3Wikimedia / 3General/Unknown: Add mathoid database table - 10https://bugzilla.wikimedia.org/66492 (10physikerwelt) 5PATC>3RESO/FIX [11:14:02] 3MediaWiki / 3User login and signup: $wgDefaultUserOptions['rememberpassword'] = 1 stopped working in 1.23 - 10https://bugzilla.wikimedia.org/67133 (10Andre Klapper) p:5Unprio>3Normal [11:14:18] 3MediaWiki / 3API: Remove API action=parse&prop=languageshtml in 1.24 - 10https://bugzilla.wikimedia.org/67149 (10Andre Klapper) p:5Unprio>3Normal [11:14:32] 3MediaWiki / 3Database: Drop column recentchanges.rc_cur_time in MSSQL in 1.24 - 10https://bugzilla.wikimedia.org/67151 (10Andre Klapper) p:5Unprio>3Low [11:17:52] (03PS1) 10Hashar: Register SwiftMailer [extensions] - 10https://gerrit.wikimedia.org/r/143002 [11:18:07] (03PS2) 10Hashar: Register SwiftMailer [extensions] - 10https://gerrit.wikimedia.org/r/143002 [11:18:13] (03CR) 10Hashar: [C: 032 V: 032] Register SwiftMailer [extensions] - 10https://gerrit.wikimedia.org/r/143002 (owner: 10Hashar) [11:19:02] 3MediaWiki / 3Installer: update.php --schema runs post-db update maintenance scripts - 10https://bugzilla.wikimedia.org/67163 (10Andre Klapper) p:5Unprio>3Normal [11:19:17] 3MediaWiki / 3Special pages: Send 404 status code for special pages without contents - 10https://bugzilla.wikimedia.org/67182 (10Andre Klapper) p:5Unprio>3Low s:5normal>3enhanc [11:20:29] (03PS1) 1001tonythomas: Added SwiftMailer Extension to provide an alternate for UserMailer [extensions/SwiftMailer] - 10https://gerrit.wikimedia.org/r/143004 [11:21:02] 3Wikimedia / 3General/Unknown: If one attempts a file upload in Commons, and the file name has unacceptable characters, there is an upload failure but no appropriate error message indicting why. - 10https://bugzilla.wikimedia.org/67197#c1 (10Andre Klapper) 5NEW>3UNCO Hi Lane! Thanks for taking the time t... [11:22:17] 3MediaWiki extensions / 3RandomRootPage: [[Special:RandomRootPage]] returning pages that are subpages due to overriding from elastic search - 10https://bugzilla.wikimedia.org/66879#c9 (10Andre Klapper) 5PATC>3RESO/FIX All patches merged into the codebase; closing again as fixed. [11:22:40] (03PS1) 10Hashar: Default entry point for Jenkins tests [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 [11:25:02] 3MediaWiki / 3General/Unknown: Inconsistent behavior of User::isIP between IPv4 and IPv6 ranges - 10https://bugzilla.wikimedia.org/67203 (10Andre Klapper) p:5Unprio>3Normal [11:32:41] (03Restored) 10Hashar: provide default entry point [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 (owner: 10Hashar) [11:32:44] (03PS3) 10Hashar: provide default entry point [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 [11:32:52] (03CR) 10jenkins-bot: [V: 04-1] provide default entry point [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 (owner: 10Hashar) [11:36:28] (03PS1) 10Lokal Profil: Clarifying English i18n messages Changed the following: * timezoneselector-desc * timezoneselector-show-pref * timezoneselector-show-temp Mainly changed temporarily -> temporarily changed [extensions/TimezoneSelector] - 10https://gerrit.wikimedia.org/r/143008 [11:37:12] (03PS1) 10AndyRussG: ConnectionType, getOrCreateCampaignEnsureUrlKey() [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/143009 [11:46:46] (03PS1) 10Hashar: Sqlite compatibility [extensions/AccountAudit] - 10https://gerrit.wikimedia.org/r/143011 (https://bugzilla.wikimedia.org/65875) [11:47:52] (03CR) 10AndyRussG: "For the roots of getOrCreateCampaignEnsureUrlKey(): see the patch sets 6 to 10 of https://gerrit.wikimedia.org/r/#/c/119258/." [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/143009 (owner: 10AndyRussG) [11:51:52] (03PS2) 10Hashar: Sqlite compatibility [extensions/AccountAudit] - 10https://gerrit.wikimedia.org/r/143011 (https://bugzilla.wikimedia.org/65875) [11:53:04] (03CR) 10Hashar: "I have forgot /*$wgDBPrefix*/ in the CREATE INDEX statements." [extensions/AccountAudit] - 10https://gerrit.wikimedia.org/r/143011 (https://bugzilla.wikimedia.org/65875) (owner: 10Hashar) [11:53:14] (03PS11) 10AndyRussG: WIP Participation on create account via campaign url [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/119258 [11:54:20] (03CR) 10AndyRussG: "Rebaseeeee" [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/119258 (owner: 10AndyRussG) [11:54:32] (03PS1) 10Hashar: Sqlite compatibility [extensions/CommunityVoice] - 10https://gerrit.wikimedia.org/r/143012 (https://bugzilla.wikimedia.org/65876) [11:56:20] 3MediaWiki extensions / 3Translate: Upon completed translation you end up at api - 10https://bugzilla.wikimedia.org/67292 (10Lokal_Profil) 3NEW p:3Unprio s:3minor a:3None Created attachment 15780 --> https://bugzilla.wikimedia.org/attachment.cgi?id=15780&action=edit Screencast of bug (On Translate... [11:59:03] (03PS1) 10Hashar: Sqlite compatibility [extensions/CreditsSource] - 10https://gerrit.wikimedia.org/r/143014 (https://bugzilla.wikimedia.org/65877) [11:59:51] (03CR) 10Hashar: [C: 031] "The test job pass, which mean the extension installs just fine with Sqlite :-]" [extensions/CreditsSource] - 10https://gerrit.wikimedia.org/r/143014 (https://bugzilla.wikimedia.org/65877) (owner: 10Hashar) [12:04:34] (03PS12) 10AndyRussG: Participation on create account via campaign url [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/119258 [12:06:37] (03CR) 10AndyRussG: "Most logic that was here (in preceding patch sets) has been improved and pushed down a layer, and now lives in https://gerrit.wikimedia.or" [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/119258 (owner: 10AndyRussG) [12:15:12] (03PS1) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [12:16:51] (03CR) 10jenkins-bot: [V: 04-1] Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [12:20:55] (03PS2) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [12:22:31] (03CR) 10jenkins-bot: [V: 04-1] Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [12:22:45] (03PS14) 10AndyRussG: Query API modules for campaigns and participants [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/117380 [12:23:07] (03PS1) 10Jack Phoenix: Replace usage of SpecialPage::getTitle with getPageTitle [extensions/CodeReview] - 10https://gerrit.wikimedia.org/r/143016 [12:23:28] (03CR) 10AndyRussG: "Rebased and removed "WIP" tag." [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/117380 (owner: 10AndyRussG) [12:27:20] (03PS13) 10AndyRussG: WIP Inform user about campaign and allow opt-out [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/125360 [12:28:02] (03CR) 10AndyRussG: "Rebased :)" [extensions/Campaigns] (wip/editorcampaigns) - 10https://gerrit.wikimedia.org/r/125360 (owner: 10AndyRussG) [12:29:00] (03PS1) 10Florianschmidtwelzow: Use mw-ui button in RecentChanges [core] - 10https://gerrit.wikimedia.org/r/143018 (https://bugzilla.wikimedia.org/66373) [12:30:05] 3MediaWiki extensions / 3ContentTranslation: Incorrect cursor placement after deleting list item on a particular list - 10https://bugzilla.wikimedia.org/67293 (10Niklas Laxström) 3NEW p:3Unprio s:3normal a:3None 1) Go to https://dev.translatewiki.net/w/i.php?title=Special:ContentTranslation&from=fi&t... [12:32:09] (03CR) 10Bartosz Dziewoński: [C: 032] Replace usage of SpecialPage::getTitle with getPageTitle [extensions/CodeReview] - 10https://gerrit.wikimedia.org/r/143016 (owner: 10Jack Phoenix) [12:32:15] (03Merged) 10jenkins-bot: Replace usage of SpecialPage::getTitle with getPageTitle [extensions/CodeReview] - 10https://gerrit.wikimedia.org/r/143016 (owner: 10Jack Phoenix) [12:34:58] (03CR) 10Hashar: "Same issue unfortunately :-(" [extensions/Math] - 10https://gerrit.wikimedia.org/r/142739 (https://bugzilla.wikimedia.org/67148) (owner: 10Physikerwelt) [12:43:47] 3Wikimedia / 3General/Unknown: Error 503 trying to access watchlist on Serbo-Croatian Wikipedia - 10https://bugzilla.wikimedia.org/67123#c8 (10Kolega2357) (In reply to Marius Hoch from comment #7) > (In reply to Kolega2357 from comment #6) > > Also I am reporting, i cant reset my watchlist on sh wiktionary >... [12:46:51] (03PS3) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [12:48:26] (03CR) 10jenkins-bot: [V: 04-1] Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [12:48:49] 3MediaWiki extensions / 3WikidataRepo: Snak type selection (e.g. novalue) sticks when canceling - 10https://bugzilla.wikimedia.org/67294 (10Thiemo Mättig) 3NEW p:3Unprio s:3normal a:3Wikidata bugs 1. Try to edit a value. 2. Change it to "novalue" but don't save. 3. Click "cancel". Result: The "noval... [12:49:17] 3MediaWiki extensions / 3WikidataRepo: Snak type selection (e.g. novalue) sticks when canceling - 10https://bugzilla.wikimedia.org/67294 (10Thiemo Mättig) p:5Unprio>3Highes [12:50:32] 3MediaWiki extensions / 3WikidataRepo: not possible to add no-value and some-value snaks in languages other than English - 10https://bugzilla.wikimedia.org/66626 (10Thiemo Mättig) 5ASSI>3RESO/FIX [12:53:06] (03CR) 10Hashar: "The extension loads properly but the parser tests do not pass." [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 (owner: 10Hashar) [12:54:47] 3MediaWiki extensions / 3Translate: Upon completed translation you end up at api - 10https://bugzilla.wikimedia.org/67292#c1 (10Andre Klapper) Are there any JavaScript errors in your browser's javascript console? [12:54:59] (03CR) 10Physikerwelt: "Is there a way to reproduce the problem locally or on a wikitech test instance?" [extensions/Math] - 10https://gerrit.wikimedia.org/r/142739 (https://bugzilla.wikimedia.org/67148) (owner: 10Physikerwelt) [12:58:04] 3MediaWiki extensions / 3Translate: Fatal error: Call to a member function getMessage() on a non-object in /mediawiki/extensions/Translate/tag/TranslatablePage.p hp on line 253 - 10https://bugzilla.wikimedia.org/67295 (10Antoine "hashar" Musso) 3NEW p:3Unprio s:3normal a:3None Created attachment 1578... [12:58:17] 3MediaWiki extensions / 3Translate: Fatal error: Call to a member function getMessage() on a non-object in /mediawiki/extensions/Translate/tag/TranslatablePage.php on line 253 - 10https://bugzilla.wikimedia.org/67295 (10Antoine "hashar" Musso) [13:02:56] (03CR) 10CSteipp: [C: 04-1] ""Requires.. if you can" doesn't really make sense. Feel free to make the language stronger, but it needs to be accurate." [core] - 10https://gerrit.wikimedia.org/r/142814 (owner: 10Withoutaname) [13:10:02] 3MediaWiki / 3Search: PowerSearchBox stopped respecting custom search namespace names from SearchableNamespaces hook - 10https://bugzilla.wikimedia.org/67234#c2 (10Jeremy) (In reply to Andre Klapper from comment #1) > Pardon my ignorance, but what exactly in the code is "PowerSearchBox" and > what does it do... [13:14:03] 3MediaWiki / 3Database: SQLite support (tracking) - 10https://bugzilla.wikimedia.org/20257 (10Antoine "hashar" Musso) [13:14:04] 3MediaWiki extensions / 3OAuth: oauth_registered_consumer table not created under sqlite - 10https://bugzilla.wikimedia.org/67296 (10Antoine "hashar" Musso) 3NEW p:3Unprio s:3normal a:3None Wikimedia Jenkins uses sqlite as a backend. The OAuth database updater does not register any schema for sqlite,... [13:14:32] 3MediaWiki extensions / 3OAuth: oauth_registered_consumer table not created under sqlite - 10https://bugzilla.wikimedia.org/67296#c1 (10Antoine "hashar" Musso) switch depends and blocks [13:14:33] 3MediaWiki / 3Database: SQLite support (tracking) - 10https://bugzilla.wikimedia.org/20257 (10Antoine "hashar" Musso) [13:14:47] 3MediaWiki extensions / 3Semantic MediaWiki: Subobjects missing on Special:ExportRDF - 10https://bugzilla.wikimedia.org/48708#c2 (10Nischay Nahata) Can you try exporting "XYZ#_6ceb..." and let me know if that works for you? [13:15:54] (03PS1) 10Hashar: Supports sqlite [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/143021 (https://bugzilla.wikimedia.org/67296) [13:19:32] 3MediaWiki extensions / 3WikidataRepo: When merging two items, reuse conflicting labels as aliases - 10https://bugzilla.wikimedia.org/65990 (10Lydia Pintscher) 5UNCO>3NEW [13:21:47] 3MediaWiki / 3Database: SQLite support (tracking) - 10https://bugzilla.wikimedia.org/20257 (10Antoine "hashar" Musso) [13:21:49] 3MediaWiki extensions / 3OATHAuth: unittest_oathauth_users table not created under sqlite - 10https://bugzilla.wikimedia.org/67297 (10Antoine "hashar" Musso) 3NEW p:3Unprio s:3normal a:3Ryan Lane Wikimedia Jenkins uses sqlite as a backend. The OAuth database updater does not register any schema for s... [13:22:11] (03PS3) 10Hashar: Only manage logged users [extensions/OATHAuth] - 10https://gerrit.wikimedia.org/r/142252 (https://bugzilla.wikimedia.org/67138) [13:22:13] (03PS1) 10Hashar: Supports sqlite [extensions/OATHAuth] - 10https://gerrit.wikimedia.org/r/143023 (https://bugzilla.wikimedia.org/67297) [13:22:18] 3MediaWiki extensions / 3Translate: Fatal error: Call to a member function getMessage() on a non-object in /mediawiki/extensions/Translate/tag/TranslatablePage.php on line 253 - 10https://bugzilla.wikimedia.org/67295#c1 (10Niklas Laxström) On first guess there seems to be a lot of interference from other tes... [13:22:18] 3MediaWiki extensions / 3WikidataClient: Proposal transform the "Close dialog and reload page" dialog to notification bar - 10https://bugzilla.wikimedia.org/59156 (10Lydia Pintscher) [13:22:32] 3MediaWiki extensions / 3WikidataClient: Proposal transform the "Close dialog and reload page" dialog to notification bar - 10https://bugzilla.wikimedia.org/59156 (10Lydia Pintscher) 5UNCO>3NEW [13:23:26] (03CR) 10Hashar: "OATHAuth has the same issue: https://gerrit.wikimedia.org/r/#/c/143023/" [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/143021 (https://bugzilla.wikimedia.org/67296) (owner: 10Hashar) [13:23:41] (03CR) 10Hashar: "OAuth has the same issue https://gerrit.wikimedia.org/r/#/c/143021/" [extensions/OATHAuth] - 10https://gerrit.wikimedia.org/r/143023 (https://bugzilla.wikimedia.org/67297) (owner: 10Hashar) [13:27:17] 3MediaWiki extensions / 3WikidataRepo: debug=true parameter doesn't work with Windows in Firefox - 10https://bugzilla.wikimedia.org/64897 (10Lydia Pintscher) 5UNCO>3NEW [13:27:59] (03CR) 10Nemo bis: Exclude external RC entries (e.g. Wikidata) from Special:ActiveUsers (031 comment) [core] - 10https://gerrit.wikimedia.org/r/125246 (https://bugzilla.wikimedia.org/63769) (owner: 10Brian Wolff) [13:29:20] 3Wikimedia / 3Bugzilla: Create Semantic Rating and Title Icon components in MediaWiki extensions product - 10https://bugzilla.wikimedia.org/67299 (10Cindy Cicalese) 3UNCO p:3Unprio s:3normal a:3None Please add components in the MediaWiki extensions product for the following two MediaWiki extensions:... [13:29:32] 3MediaWiki extensions / 3WikidataRepo: Improve localizable error messages for API calls - 10https://bugzilla.wikimedia.org/45277 (10Lydia Pintscher) 5RESO/?>3VERI [13:29:47] 3MediaWiki extensions / 3Translate: Failed to deserialize - 10https://bugzilla.wikimedia.org/47628 (10Lydia Pintscher) 5RESO/?>3VERI [13:30:35] 3MediaWiki extensions / 3GlobalBlocking: GlobalBlocking is lacking a database installer/updater - 10https://bugzilla.wikimedia.org/67300 (10Antoine "hashar" Musso) 3NEW p:3Unprio s:3normal a:3None A globalblocking.sql is provided, but it is never registered with MediaWiki updater. That prevents Jenki... [13:33:15] (03PS3) 10Kunalgrover05: Fix loading from DB multiple times [core] - 10https://gerrit.wikimedia.org/r/137915 [13:33:49] 3MediaWiki extensions / 3WikidataRepo: allow statements on properties - 10https://bugzilla.wikimedia.org/49554#c16 (10Lydia Pintscher) 5RESO/?>3VERI (In reply to Zell Faze from comment #15) > Is there a patch or series of patches in Gerrit for this that I can monitor > to see how review is progressing?... [13:33:50] (03PS9) 10Bartosz Dziewoński: mediawiki.api: Remove deprecated function parameters [core] - 10https://gerrit.wikimedia.org/r/118733 [13:34:03] 3MediaWiki extensions / 3[other]: Semantic Rating extension new version 1.2 generates bad html - 10https://bugzilla.wikimedia.org/67010#c6 (10Cindy Cicalese) Thank you for the suggestion. I will try to add this feature soon. [13:34:03] 3MediaWiki extensions / 3WikidataRepo: Use standard DataValue validators for labels, descriptions and aliases - 10https://bugzilla.wikimedia.org/49583 (10Lydia Pintscher) 5RESO/?>3VERI [13:34:17] 3MediaWiki extensions / 3WikidataRepo: wblinktitles id in api response does not start with a q, it is a raw int id - 10https://bugzilla.wikimedia.org/52732 (10Lydia Pintscher) 5RESO/?>3VERI [13:34:32] 3MediaWiki extensions / 3WikidataRepo: UI for Simple Query - 10https://bugzilla.wikimedia.org/55593 (10Lydia Pintscher) 5RESO/?>3VERI [13:34:47] 3MediaWiki / 3Recent changes: Recent changes table locked and causing "Database error" when many deletions happen - 10https://bugzilla.wikimedia.org/56776 (10Lydia Pintscher) 5RESO/?>3VERI [13:35:03] 3MediaWiki extensions / 3WikidataRepo: size of rank icon is different from value snak icon - 10https://bugzilla.wikimedia.org/57663 (10Lydia Pintscher) 5RESO/?>3VERI [13:35:03] 3MediaWiki / 3Search: PowerSearchBox stopped respecting custom search namespace names from SearchableNamespaces hook - 10https://bugzilla.wikimedia.org/67234#c3 (10Nik Everett) Jeremy - I've never called it that but I imagine your usage predates mine. Can you post a sample of LocalSettings.php that creates... [13:35:35] 3MediaWiki extensions / 3WikidataRepo: Implement DB schema for query indexes - 10https://bugzilla.wikimedia.org/60127 (10Lydia Pintscher) 5RESO/?>3VERI [13:35:44] (03CR) 10jenkins-bot: [V: 04-1] mediawiki.api: Remove deprecated function parameters [core] - 10https://gerrit.wikimedia.org/r/118733 (owner: 10Bartosz Dziewoński) [13:36:02] 3MediaWiki extensions / 3WikidataRepo: Format errors consistently in claim html - 10https://bugzilla.wikimedia.org/62495 (10Lydia Pintscher) 5RESO/?>3VERI [13:36:02] 3MediaWiki extensions / 3WikidataRepo: Remove save(), getPage() and related methods from EntityContent - 10https://bugzilla.wikimedia.org/62493 (10Lydia Pintscher) 5RESO/?>3VERI [13:36:18] 3MediaWiki extensions / 3WikidataRepo: term validation via changeop - 10https://bugzilla.wikimedia.org/62643 (10Lydia Pintscher) 5RESO/?>3VERI [13:36:32] 3MediaWiki extensions / 3WikidataRepo: aggregate list of non user-friendly messages on Wikidata - 10https://bugzilla.wikimedia.org/62778 (10Lydia Pintscher) 5RESO/?>3VERI [13:36:47] 3MediaWiki extensions / 3WikidataRepo: "Wikibase\DataModel\Entity\EntityIdParsingException" in SpecialSetSiteLink - 10https://bugzilla.wikimedia.org/63036 (10Lydia Pintscher) 5RESO/?>3VERI [13:37:03] 3MediaWiki extensions / 3WikidataRepo: Clean up and expand Wikibase page on mediawiki.org - 10https://bugzilla.wikimedia.org/63226 (10Lydia Pintscher) 5RESO/?>3VERI [13:37:04] 3MediaWiki / 3API: Discrepancy in editcount and recenteditcount - 10https://bugzilla.wikimedia.org/67301 (10billinghurst) 3NEW p:3Unprio s:3normal a:3None I was doing some checking on activity using the API at a WMF wiki, and found that the wiki was reporting that in some cases that the recentedit co... [13:37:17] 3MediaWiki extensions / 3WikidataRepo: prevent import of items - 10https://bugzilla.wikimedia.org/63228 (10Lydia Pintscher) 5RESO/?>3VERI [13:37:32] 3MediaWiki extensions / 3WikidataRepo: Snak formatter should handle mismatches between Snak's DataType and actual type of the DataValue - 10https://bugzilla.wikimedia.org/63299 (10Lydia Pintscher) 5RESO/?>3VERI [13:37:47] 3MediaWiki extensions / 3WikidataRepo: UI Icons file 404 Not Found - 10https://bugzilla.wikimedia.org/63363 (10Lydia Pintscher) 5RESO/?>3VERI [13:38:02] 3MediaWiki extensions / 3WikibaseQueryEngine: Add DVHandler for Time values - 10https://bugzilla.wikimedia.org/63476 (10Lydia Pintscher) 5RESO/?>3VERI [13:38:32] 3MediaWiki extensions / 3OATHAuth: Database tables not created on Postgres: ERROR: relation "oathauth_users" does not exist - 10https://bugzilla.wikimedia.org/65658#c4 (10Andre Klapper) Tyler's patch has one -1 in Gerrit because Jeff had issues with merging. Rhiannon: Did you have a chance to test Tyler's p... [13:38:32] 3MediaWiki / 3Database: PostgreSQL/pgsql support (tracking) - 10https://bugzilla.wikimedia.org/384 (10Andre Klapper) [13:38:32] 3MediaWiki extensions / 3WikibaseQueryEngine: Catch exception thrown when no suitable handler available for some data value type - 10https://bugzilla.wikimedia.org/64296 (10Lydia Pintscher) 5RESO/?>3VERI [13:41:17] (03PS1) 10Kunalgrover05: API method for setting page language [core] - 10https://gerrit.wikimedia.org/r/143025 [13:41:34] (03PS4) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [13:42:17] 3MediaWiki / 3General/Unknown: Exception Caught: Internal error in ApiFormatXml::recXmlPrint - 10https://bugzilla.wikimedia.org/67246 (10Brad Jorsch) [13:42:58] (03CR) 10jenkins-bot: [V: 04-1] API method for setting page language [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [13:44:03] 3MediaWiki extensions / 3AbuseFilter: Joins on INTEGER and TEXT fail with PostgreSQL - 10https://bugzilla.wikimedia.org/40757#c2 (10Andre Klapper) p:5High>3Normal Lowering priority - PostgreSQL support is maintained by volunteers and patches are welcome... [13:44:03] 3MediaWiki extensions / 3WikidataRepo: Also return new serialization in dumps when stored format is the old one - 10https://bugzilla.wikimedia.org/66719 (10Thiemo Mättig) 5ASSI>3RESO/FIX [13:44:06] (03CR) 10jenkins-bot: [V: 04-1] Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [13:44:44] (03CR) 10Yaron Koren: "Hi - in the composer.json file, why is the extension name "enterprisemediawiki/admin-links" and not just something like "admin-links"?" [extensions/AdminLinks] - 10https://gerrit.wikimedia.org/r/142763 (owner: 10Jamesmontalvo3) [13:45:00] (03CR) 10Nikerabbit: "What are these mysterious magic numbers 0 and 1?" [core] - 10https://gerrit.wikimedia.org/r/137915 (owner: 10Kunalgrover05) [13:45:03] 3MediaWiki extensions / 3WikidataRepo: Implement Redirects in ItemContent - 10https://bugzilla.wikimedia.org/57744 (10Thiemo Mättig) 5ASSI>3RESO/FIX [13:45:34] 3MediaWiki extensions / 3[other]: [News] extension fails on 1.22. Feed page says "no feed found on page" - 10https://bugzilla.wikimedia.org/63716 (10Andre Klapper) p:5Unprio>3Low [13:46:18] 3Wikimedia / 3Wikidata: Gadgets not purged on wikidata.org - 10https://bugzilla.wikimedia.org/65340#c3 (10Andre Klapper) Is this still a problem? (Plus wondering if this problem is a "blocker" for something.) [13:48:02] 3MediaWiki extensions / 3WikidataRepo: Snak type selection (e.g. novalue) sticks when canceling - 10https://bugzilla.wikimedia.org/67294 (10Lydia Pintscher) s:5normal>3major [13:48:37] (03PS8) 10Smuggli: Implemented changes for translatewiki [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/141684 [13:49:17] 3MediaWiki extensions / 3[other]: Semantic Rating extension new version 1.2 generates bad html - 10https://bugzilla.wikimedia.org/67010 (10Cindy Cicalese) 5UNCO>3RESO/FIX [13:49:38] (03PS1) 10Kunalgrover05: Changing language does action=purge to page [core] - 10https://gerrit.wikimedia.org/r/143026 [13:51:14] (03CR) 10jenkins-bot: [V: 04-1] Changing language does action=purge to page [core] - 10https://gerrit.wikimedia.org/r/143026 (owner: 10Kunalgrover05) [13:51:41] (03PS9) 10Smuggli: Implemented changes for translatewiki [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/141684 [13:52:51] (03PS2) 10Kunalgrover05: API method for setting page language [core] - 10https://gerrit.wikimedia.org/r/143025 [13:57:17] 3Wikimedia / 3Wikidata: Gadgets not purged on wikidata.org - 10https://bugzilla.wikimedia.org/65340#c4 (10Marius Hoch) 5NEW>3RESO/FIX (In reply to Andre Klapper from comment #3) > Is this still a problem? I don't think so... if this reoccurs, we might reopen (also there's no way to debug this right now). [13:57:19] (03CR) 10Ottomata: "Dan, don't worry about reviewing the code, but you can +1 verified that it worked." [vagrant] - 10https://gerrit.wikimedia.org/r/142698 (owner: 10Ottomata) [13:58:14] (03PS10) 10Smuggli: Implemented changes for translatewiki [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/141684 [13:59:39] (03PS1) 10Aude: Update Wikidata, backport change needed for property suggester [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/143027 [14:00:11] (03PS2) 10Kunalgrover05: Changing language does action=purge to page [core] - 10https://gerrit.wikimedia.org/r/143026 [14:03:28] (03PS5) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [14:03:47] 3Wikimedia / 3Site requests: Changing the technical rights on ruwiki - 10https://bugzilla.wikimedia.org/66871#c8 (10MaxBioHazard) 5RESO/FIX>3REOP Hello again. During further discussion, a local solution was adjusted. Please, remove rights "suppressredirect" and "move-categorypages" from "editors" group (... [14:05:02] 3Wikimedia / 3Site requests: Changing the technical rights on ruwiki - 10https://bugzilla.wikimedia.org/66871#c9 (10Tomasz W. Kozlowski) 5REOP>3RESO/FIX Please file another bug for your request. Thank you! [14:05:33] 3Wikimedia / 3Wikidata: Gadgets not purged on wikidata.org - 10https://bugzilla.wikimedia.org/65340#c5 (10Thiemo Mättig) 5RESO/FIX>3REOP s:5blocke>3major (In reply to Andre Klapper from comment #3) > Is this still a problem? As always it magically faded away and nobody knows what happened. So we ha... [14:08:48] 3MediaWiki extensions / 3BetaFeatures: AutoEnrollmentTest produce a fatal error with OATHAuth extension - 10https://bugzilla.wikimedia.org/67138#c3 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progressio... [14:09:03] 3MediaWiki extensions / 3ZeroRatedMobileAccess: ZeroPortal unit tests throws Warning: JsonConfig: Invalid $wgJsonConfigs['JsonZeroConfig']['url']: API URL is not set ... - 10https://bugzilla.wikimedia.org/67142#c4 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extens... [14:09:04] 3MediaWiki extensions / 3OAuth: oauth_registered_consumer table not created under sqlite - 10https://bugzilla.wikimedia.org/67296#c3 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HH... [14:09:04] 3MediaWiki extensions / 3BetaFeatures: BetaFeatures unit tests trigger notices in MobileFrontend - 10https://bugzilla.wikimedia.org/67139#c3 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression towar... [14:09:05] 3MediaWiki extensions / 3Spam Blacklist: Enabling SpamBlacklist breaks EditPageTest in core - 10https://bugzilla.wikimedia.org/67043#c1 (10Antoine "hashar" Musso) We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHVM migrating. Rai... [14:09:05] 3MediaWiki extensions / 3Translate: Fatal error: Call to a member function getMessage() on a non-object in /mediawiki/extensions/Translate/tag/TranslatablePage.php on line 253 - 10https://bugzilla.wikimedia.org/67295#c2 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf... [14:09:08] (03PS1) 10PleaseStand: findHooks.php, importSiteScripts.php: Use format=json [core] - 10https://gerrit.wikimedia.org/r/143028 [14:09:18] 3MediaWiki extensions / 3GlobalBlocking: GlobalBlocking is lacking a database installer/updater - 10https://bugzilla.wikimedia.org/67300#c1 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward... [14:09:18] 3MediaWiki extensions / 3Gadgets: Gadgets: Fix failing unit test "GadgetsTest::testPreferences: isset( $options['<gadget-section-keep-section2>'] )" - 10https://bugzilla.wikimedia.org/67060#c1 (10Antoine "hashar" Musso) p:5Normal>3High We really need tests to pass when all wmf extensions are instal... [14:09:18] 3MediaWiki extensions / 3Math: Math tests dies when run with the Echo extensions - 10https://bugzilla.wikimedia.org/67148#c5 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHVM migra... [14:09:18] 3MediaWiki extensions / 3OATHAuth: unittest_oathauth_users table not created under sqlite - 10https://bugzilla.wikimedia.org/67297#c2 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the H... [14:09:57] (03CR) 10Kunalgrover05: "$mPageLanguage is an array(it is reqd to be for unit tests)" [core] - 10https://gerrit.wikimedia.org/r/137915 (owner: 10Kunalgrover05) [14:10:07] (03CR) 10Nemo bis: [C: 04-1] "This is not how it works, you're hardcoding meanings that groups and statuses don't have. You should check that userCan edit the page." [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [14:10:15] (03PS11) 10Smuggli: Implemented changes for translatewiki [extensions/BlueSpiceExtensions] - 10https://gerrit.wikimedia.org/r/141684 [14:13:02] 3MediaWiki extensions / 3[other]: CommunityVoice does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65876 (10Antoine "hashar" Musso) [14:13:03] 3MediaWiki extensions / 3[other]: AccountAudit does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65875 (10Antoine "hashar" Musso) [14:13:03] 3MediaWiki extensions / 3CreditsSource: CreditsSource does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65877 (10Antoine "hashar" Musso) [14:13:17] 3MediaWiki extensions / 3OAI: OAI does not pass Jenkins tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65895 (10Antoine "hashar" Musso) [14:13:17] 3MediaWiki extensions / 3TitleKey: TitleKey does not pass Jenkins unit tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65896 (10Antoine "hashar" Musso) [14:13:17] (03CR) 10Kunalgrover05: "So, should I be using something like checking if user has permission to edit a protected page?" [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [14:14:17] 3MediaWiki extensions / 3[other]: CommunityVoice does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65876#c4 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHVM mig... [14:14:17] 3MediaWiki extensions / 3[other]: AccountAudit does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65875#c4 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHVM migrat... [14:14:18] 3MediaWiki extensions / 3CreditsSource: CreditsSource does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65877#c4 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHV... [14:14:18] 3MediaWiki extensions / 3OAI: OAI does not pass Jenkins tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65895#c5 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression toward the HHVM m... [14:14:19] 3MediaWiki extensions / 3TitleKey: TitleKey does not pass Jenkins unit tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65896#c3 (10Antoine "hashar" Musso) p:5Unprio>3High We really need tests to pass when all wmf extensions are installed together. That is preventing us from progression to... [14:19:03] 3MediaWiki / 3Search: PowerSearchBox stopped respecting custom search namespace names from SearchableNamespaces hook - 10https://bugzilla.wikimedia.org/67234#c4 (10Jeremy) (In reply to Nik Everett from comment #3) > Jeremy - I've never called it that but I imagine your usage predates mine. > Can you post a... [14:19:45] (03CR) 10Cmcmahon: [C: 032] Added missing Cucumber tags to Selenium tests [core] - 10https://gerrit.wikimedia.org/r/142802 (owner: 10Zfilipin) [14:20:05] 3Wikimedia / 3Site requests: Technical rights on ruwiki - 10https://bugzilla.wikimedia.org/67304 (10MaxBioHazard) 3NEW p:3Unprio s:3enhanc a:3None After the bug 66871. During further discussion, a local solution was adjusted. Please, remove rights "suppressredirect" and "move-categorypages" from "edi... [14:21:47] 3MediaWiki / 3API: The protorel attribute in the siteinfo API is set to "true", not "". - 10https://bugzilla.wikimedia.org/66723 (10Brad Jorsch) 5PATC>3RESO/FIX [14:23:18] (03Merged) 10jenkins-bot: Added missing Cucumber tags to Selenium tests [core] - 10https://gerrit.wikimedia.org/r/142802 (owner: 10Zfilipin) [14:25:18] (03CR) 10Manybubbles: [C: 031] "Ok with me." [core] (wmf/1.24wmf10) - 10https://gerrit.wikimedia.org/r/142856 (owner: 10Jforrester) [14:25:48] (03CR) 10Reedy: "FYI, this changed some file permissions (presumably accidentally)" [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [14:27:29] (03CR) 10Anomie: [C: 031] "Looks ok to me." [php/luasandbox] - 10https://gerrit.wikimedia.org/r/142585 (owner: 10Faidon Liambotis) [14:28:03] 3MediaWiki extensions / 3WikidataClient: Keep getEntity in cache for all modules and wikidata-templates in a page - 10https://bugzilla.wikimedia.org/66539#c2 (10Daniel Kinzler) As far as I am aware, getEntity should be handled via an CachingEntity(Revision)Lookup, which does caching (two layers, actually: in... [14:28:21] (03CR) 10Manybubbles: [C: 031] Update VisualEditor to Iba4e6b32 [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/142855 (https://bugzilla.wikimedia.org/66863) (owner: 10Jforrester) [14:29:03] (03CR) 10Manybubbles: [C: 031] Update Wikidata, backport change needed for property suggester [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/143027 (owner: 10Aude) [14:29:47] 3MediaWiki extensions / 3WikidataClient: Keep getEntity in cache for all modules and wikidata-templates in a page - 10https://bugzilla.wikimedia.org/66539#c3 (10Daniel Kinzler) On a second thought: the Lua version of getEntity needs to convert the entity to a Lua object (or meta-table or whatever). I don't k... [14:29:59] (03CR) 10Anomie: "> This looks like it would also solve bug 25909 / bug 21383." [core] - 10https://gerrit.wikimedia.org/r/142668 (owner: 10Anomie) [14:31:34] 3MediaWiki extensions / 3WikidataClient: no language links on client and notification jobs not executed - 10https://bugzilla.wikimedia.org/67305 (10Aude) 3NEW p:3Unprio s:3normal a:3Wikidata bugs on master, I no longer have 'language' links in my sidebar and change notification jobs don't appear to b... [14:33:02] 3MediaWiki extensions / 3WikidataClient: Keep getEntity in cache for all modules and wikidata-templates in a page - 10https://bugzilla.wikimedia.org/66539#c4 (10Marius Hoch) (In reply to Daniel Kinzler from comment #3) > On a second thought: the Lua version of getEntity needs to convert the > entity to a Lua... [14:33:28] (03PS1) 10Reedy: Fix file permissions from Ic7fc3bd836241dce8f296237bbd80ed3e4d1ee0d [core] - 10https://gerrit.wikimedia.org/r/143030 [14:39:37] Hi, I have a question about the loading of javascript files when debug=false. Scenario: Chrome, Incognito mode, Network tab. I load http://en.wikipedia.org: why I can't find all the jquery plugins (concatenated and minified) in the network tab? It is as if they were not logged. [14:40:26] Aren't they lazy loaded? [14:40:47] 3Wikimedia / 3General/Unknown: Error 503 trying to access watchlist on Serbo-Croatian Wikipedia - 10https://bugzilla.wikimedia.org/67123#c9 (10Marius Hoch) 5REOP>3RESO/FIX (In reply to Kolega2357 from comment #8) > Marius Hoch I forgot to say delete my watchlist on war.wikipedia.org. Also done: hoo@ter... [14:41:54] ok, but shouldn't be they logged anyway? [14:47:03] How, if they're not downloaded? [14:48:12] (03PS27) 10Paladox: mediawiki.searchSuggest: Enable for iPhone and iPod touch [core] - 10https://gerrit.wikimedia.org/r/139809 [14:49:17] 3MediaWiki extensions / 3WikidataRepo: localize display of time values - 10https://bugzilla.wikimedia.org/48962#c8 (10Eran Roz) In some languages, such as Hebrew it isn't correct to write "27 June" but instead "27th of June" [in Hebrew: 27 יוני - wrong 27 ביוני - correct ] The correct way to define format... [14:49:44] (03PS2) 10Rohan013: Disables upload by url option for users without the necessary permissions [core] - 10https://gerrit.wikimedia.org/r/142000 (https://bugzilla.wikimedia.org/39507) [14:50:05] (03PS1) 10Cmcmahon: QA: add missing login tags [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143031 [14:50:56] (03CR) 10Cmcmahon: [C: 032] "maintenance" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143031 (owner: 10Cmcmahon) [14:51:06] it's better with an example, just a second [14:51:31] (03Merged) 10jenkins-bot: QA: add missing login tags [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143031 (owner: 10Cmcmahon) [14:51:47] 3MediaWiki extensions / 3WikidataClient: no language links on client and notification jobs not executed - 10https://bugzilla.wikimedia.org/67305#c1 (10Aude) 5NEW>3RESO/WOR problem was my settings... not a bug :) [14:54:02] 3Wikimedia / 3General/Unknown: If one attempts a file upload in Commons, and the file name has unacceptable characters, there is an upload failure but no appropriate error message indicting why. - 10https://bugzilla.wikimedia.org/67197#c2 (10Lane Rasberry) Hello! I live in the United States and use a standa... [14:54:47] 3MediaWiki extensions / 3Math: Math tests dies when run with the Echo extensions - 10https://bugzilla.wikimedia.org/67148#c6 (10physikerwelt) does the problem disappear if you disable the Echo module? Are those tests using sqlite? [14:56:09] Deskana: just fyi: Talked with Chris about global rename... there are several edge cases that need some attention still. We'll try to figure that later on today [14:56:22] instead of http://en.wikipedia.org let's load http://it.wikipedia.org/wiki/Utente:Rotpunkt/OneCollapsible. There is just one table using mw-collapsible. It works, so jquery.makeCollapsible.js is surely loaded. Why I can't find jquery.makeCollapsible.js in any Chrome log? [14:56:27] hoo: Great. :) [14:56:29] (03PS1) 10Thiemo Mättig (WMDE): Fix deprecated hooks not having a non-deprecated alternative [core] - 10https://gerrit.wikimedia.org/r/143032 [14:57:05] Deskana: Well, I'd rather not have to worry about these edge cases and be able to push it forward instead :P [14:58:19] surely is a loader noob question but I can't find yet an answer [14:59:11] rotpunkt: I see it (I clicked, though) [14:59:22] see what? [14:59:45] makeCollapsible [14:59:50] the source code? [15:00:00] the download [15:00:14] (03CR) 10jenkins-bot: [V: 04-1] Fix deprecated hooks not having a non-deprecated alternative [core] - 10https://gerrit.wikimedia.org/r/143032 (owner: 10Thiemo Mättig (WMDE)) [15:00:17] can you cut and paste the log? [15:00:29] it's an hour I am looking at it [15:01:19] just that line [15:03:02] (03CR) 10Manybubbles: [C: 032] Update ProofreadPage to I82390599 [core] (wmf/1.24wmf10) - 10https://gerrit.wikimedia.org/r/142856 (owner: 10Jforrester) [15:06:34] (03Merged) 10jenkins-bot: Update ProofreadPage to I82390599 [core] (wmf/1.24wmf10) - 10https://gerrit.wikimedia.org/r/142856 (owner: 10Jforrester) [15:06:36] (03CR) 10Anomie: [C: 032] Show ScribuntoExceptions in content language [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/142841 (owner: 10Jackmcbarn) [15:07:20] rotpunkt: only now I see you said debug=false not debug=true [15:07:26] Why would you see a single module there? [15:08:00] If you click "filter" you can see a request like: https://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=ext.eventLogging%2CnavigationTiming%7Cext.eventLogging.subscriber%7Cext.uls.eventlogger%2Cinterlanguage%7Cjquery.checkboxShiftClick%2Chidpi%2ChighlightText%2CmakeCollapsible%2Cmw-jump%2Cplaceholder%2Csuggestions%7Cmediawiki.action.view.postEdit%7Cmediawiki.cookie%2Chidpi%2CsearchSuggest%7Cmediawiki.page.ready%7Cmobi [15:08:24] (03PS2) 10Thiemo Mättig (WMDE): Fix deprecated hooks not having a non-deprecated alternative [core] - 10https://gerrit.wikimedia.org/r/143032 [15:09:01] uff [15:09:03] (03Merged) 10jenkins-bot: Show ScribuntoExceptions in content language [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/142841 (owner: 10Jackmcbarn) [15:09:36] I mean: somewhere in the log I should find the jquery.makeCollapsible.js code (minified and concatenated) but I can't find it [15:09:45] where is it? [15:15:26] rotpunkt: let's start over. what is it that you want to achieve ? [15:15:56] you want to know from which url the collapsible JS code is loaded when minified ? [15:18:13] rotpunkt: for me, just now it was from the url on this pastbin: http://pastebin.com/QTUdXsdi [15:19:02] just a second, it is possible I am becoming blind :) [15:23:21] Can someone point me to info on how the WMF does mobile detection for MF? [15:23:32] rotpunkt: the whole jquery.makeCollapsible file is wrapped inside: [15:23:37] mw.loader.implement("jquery.makeCollapsible", function($, jQuery) {} [15:24:04] when it comes minified from RL [15:24:44] Lcawte: sak MaxSem [15:25:02] 3MediaWiki / 3API: list=allusers "recenteditcount" result property is inaccurately named - 10https://bugzilla.wikimedia.org/67301#c1 (10Brad Jorsch) "editcount" counts edits, specifically the creation of new revisions. "recenteditcount" counts all actions in recent changes; in the case of the user you mentio... [15:26:00] So either you are missing a c, or your s and a need swapping around YuviPanda :P [15:26:21] Lcawte: ah [15:26:28] Lcawte: typing in one hand :) [15:26:32] (03CR) 10SPQRobin: [C: 04-1] "Minor inline comments." (033 comments) [core] - 10https://gerrit.wikimedia.org/r/135197 (https://bugzilla.wikimedia.org/34467) (owner: 10Umherirrender) [15:27:47] 3MediaWiki extensions / 3WikidataClient: Keep getEntity in cache for all modules and wikidata-templates in a page - 10https://bugzilla.wikimedia.org/66539#c5 (10Daniel Kinzler) @Marius: we have a caching TermIndex service. The interface isn't pretty, but perhaps it could be polished for use in Lua. [15:28:00] @thedj, nope. When I filter the requests for load.php I get these requests: [15:28:03] 3Wikimedia / 3Site requests: Set $wgEnableUploads false for ms.wiktionary - 10https://bugzilla.wikimedia.org/67152#c3 (10Tomasz W. Kozlowski) 5PATC>3RESO/FIX This has now been merged and deployed by Nik (thank you!). [15:28:10] Hm, so I think I just found something useful in the varnish config, now to follow it through and see what happens. [15:28:11] http://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=ext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles&only=styles&skin=vector&* [15:28:11] http://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=site&only=styles&skin=vector&* [15:28:11] http://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=startup&only=scripts&skin=vector&* [15:28:11] http://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=site&only=scripts&skin=vector&* [15:28:14] http://bits.wikimedia.org/it.wikipedia.org/load.php?debug=false&lang=it&modules=jquery%2Cmediawiki%2CSpinner%7Cjquery.triggerQueueCallback%2CloadingSpinner%2CmwEmbedUtil%7Cmw.MwEmbedSupport&only=scripts&skin=vector&version=20140630T023457Z [15:28:28] (03CR) 10Manybubbles: [C: 032] Update VisualEditor to Iba4e6b32 [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/142855 (https://bugzilla.wikimedia.org/66863) (owner: 10Jforrester) [15:28:47] 3MediaWiki / 3JavaScript: jQuery UI 1.9.2 autocomplete makes triggers content vanishing in Chrome, Opera next - 10https://bugzilla.wikimedia.org/67243#c3 (10Andre Klapper) Created attachment 15783 --> https://bugzilla.wikimedia.org/attachment.cgi?id=15783&action=edit Screenshot from Google Chrome 35 Raine... [15:29:17] 3MediaWiki / 3JavaScript: jQuery UI 1.9.2 autocomplete makes triggers content vanishing in Chrome, Opera next - 10https://bugzilla.wikimedia.org/67243 (10Andre Klapper) p:5Unprio>3High [15:30:28] Ok, so are mobile views still primarily served from lang.m.project.org ? [15:31:41] (03Merged) 10jenkins-bot: Update VisualEditor to Iba4e6b32 [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/142855 (https://bugzilla.wikimedia.org/66863) (owner: 10Jforrester) [15:32:36] Lcawte: increasingly so [15:32:51] (well, except apps) [15:34:00] (03PS6) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [15:35:23] (03PS7) 10Kunalgrover05: Check permissions for Protected and semi protected pages [core] - 10https://gerrit.wikimedia.org/r/143015 [15:35:52] (03CR) 10Manybubbles: [C: 032] Update Wikidata, backport change needed for property suggester [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/143027 (owner: 10Aude) [15:37:13] (03PS7) 10BryanDavis: Fix GitInfo cache file path computation and storage location [core] - 10https://gerrit.wikimedia.org/r/142319 (https://bugzilla.wikimedia.org/53972) [15:40:26] (03Merged) 10jenkins-bot: Update Wikidata, backport change needed for property suggester [core] (wmf/1.24wmf11) - 10https://gerrit.wikimedia.org/r/143027 (owner: 10Aude) [15:40:34] 3MediaWiki extensions / 3SyntaxHighlight (GeSHi): LaTeX: curly bracket highlighting mismatch if parameter is a command name - 10https://bugzilla.wikimedia.org/67307 (10LWChris) 3NEW p:3Unprio s:3trivia a:3None If a command is the parameter of another command, the bracket matcher does seem to get conf... [15:41:17] 3MediaWiki extensions / 3SyntaxHighlight (GeSHi): LaTeX: curly bracket highlighting mismatch if parameter is a command name - 10https://bugzilla.wikimedia.org/67307 (10LWChris) [15:41:52] jackmcbarn: Up for fixing an easy Scribunto bug along the lines of your change 142841, so I can review and merge it right away? [15:42:07] anomie: sure [15:42:12] jackmcbarn: The displayname for the article namespace in mw.site needs to be in the content language too. [15:42:27] jackmcbarn: e.g. https://en.wikipedia.org/w/api.php?action=scribunto-console&clear=true&format=jsonfm&question=%3D%22This%20should%20not%20be%20German:%20%22,%20mw.site.namespaces[0].displayName&title=Module:Bananas&uselang=de [15:44:41] (03PS1) 10Jackmcbarn: Show blanknamespace in content language [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143041 [15:45:18] 3MediaWiki extensions / 3BetaFeatures: AutoEnrollmentTest produce a fatal error with OATHAuth extension - 10https://bugzilla.wikimedia.org/67138#c4 (10Antoine "hashar" Musso) A similar issue happens with the OpenStackManager. Both extensions are registered the GetPreferences hook. [15:45:32] 3MediaWiki / 3JavaScript: jQuery UI 1.9.2 autocomplete makes triggers content vanishing in Chrome, Opera next - 10https://bugzilla.wikimedia.org/67243#c4 (10Andre Klapper) Trevor, Timo: ping Wondering how much impact this has and in how many places (popular gadgets etc) we use jQuery UI 1.9.2 autocomplete,... [15:46:09] (03CR) 10Anomie: [C: 032] Show blanknamespace in content language [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143041 (owner: 10Jackmcbarn) [15:46:16] jackmcbarn: Thanks [15:46:22] anomie: np [15:46:54] (03PS3) 10Kunalgrover05: API method for setting page language [core] - 10https://gerrit.wikimedia.org/r/143025 [15:47:04] anomie: btw, a concern came up on enwiki about script errors. why isn't the error message displayed right next to the words "Script error", instead of having to click on it? [15:47:39] (03Merged) 10jenkins-bot: Show blanknamespace in content language [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143041 (owner: 10Jackmcbarn) [15:47:51] jackmcbarn: That I don't really know, although some of the errors can be long and might confuse nontechnical users. [15:48:05] actually, the problem is the way it is now confuses nontechnical users [15:48:23] they think "Script error" means "the module I'm using is broken" rather than "I did something wrong in one of my parameters" [15:50:04] 3MediaWiki / 3Skin and page rendering: Subpixel antialiasing disabled because of -webkit-backface-visibility: hidden - 10https://bugzilla.wikimedia.org/67308 (10Nicolas Grilly) 3UNCO p:3Unprio s:3normal a:3None I've noticed that text on Wikipedia is rendered without subpixel antialiasing since a few... [15:51:15] (03CR) 10Nemo bis: "Looks better now :)" [core] - 10https://gerrit.wikimedia.org/r/143015 (owner: 10Kunalgrover05) [15:51:28] (03PS1) 10Hashar: Avoid extensions conflicts by hook GetPreferences [extensions/BetaFeatures] - 10https://gerrit.wikimedia.org/r/143042 (https://bugzilla.wikimedia.org/67138) [15:52:18] (03CR) 10Nemo bis: "I think you're expected to make the special page rely on the API itself, and of course to avoid code duplication." [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [15:54:33] 3MediaWiki extensions / 3Translate: Upon completed translation you end up at api - 10https://bugzilla.wikimedia.org/67292#c2 (10Lokal_Profil) Ah. Good catch: TypeError: mw.translateHooks is undefined Line 164 of ext.translate.quickedit.js https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FTranslate.git... [15:54:36] (03CR) 10Hashar: "Should be safe for production. The modifications are in the test classes and the only worthwhile to production change is a new entry in th" (031 comment) [extensions/BetaFeatures] - 10https://gerrit.wikimedia.org/r/143042 (https://bugzilla.wikimedia.org/67138) (owner: 10Hashar) [15:55:20] (03CR) 10Kunalgrover05: "Yes, that is what I was thinking of doing :)" [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [15:59:15] (03CR) 10Jforrester: [C: 031] Avoid extensions conflicts by hook GetPreferences [extensions/BetaFeatures] - 10https://gerrit.wikimedia.org/r/143042 (https://bugzilla.wikimedia.org/67138) (owner: 10Hashar) [15:59:44] (03PS15) 10Paladox: Update jquery.hoverintent to r7 [core] - 10https://gerrit.wikimedia.org/r/139687 [16:00:02] (03PS10) 10Paladox: Update jQuery Cookie to v1.4.1 [core] - 10https://gerrit.wikimedia.org/r/139686 [16:00:20] (03PS2) 1001tonythomas: Added SwiftMailer Extension to provide an alternate for UserMailer [extensions/SwiftMailer] - 10https://gerrit.wikimedia.org/r/143004 [16:00:27] (03PS9) 10Paladox: Update jQuery.appear.js [core] - 10https://gerrit.wikimedia.org/r/139470 [16:00:44] (03PS7) 10Paladox: Update jquery.form.js [core] - 10https://gerrit.wikimedia.org/r/139688 [16:00:56] (03PS11) 10Paladox: Update jquery.mockjax.js to v1.5.3 [core] - 10https://gerrit.wikimedia.org/r/139693 [16:01:02] 3MediaWiki extensions / 3Translate: Upon completed translation you end up at api - 10https://bugzilla.wikimedia.org/67292#c3 (10Lokal_Profil) (In reply to Lokal_Profil from comment #2) > Ah. Good catch: > TypeError: mw.translateHooks is undefined > > Line 164 of ext.translate.quickedit.js > https://git.wiki... [16:01:03] 3MediaWiki extensions / 3BetaFeatures: BetaFeatures: AutoEnrollmentTest produce a fatal error with OATHAuth extension - 10https://bugzilla.wikimedia.org/67138#c6 (10James Forrester) This is a false positive issue, because OATHAuth and BetaFeatures aren't enabled on the same wikis, but let's get this fixed. [16:01:15] (03PS13) 10Paladox: Update jquery.validate from 1.8.1 to 1.12.0 [core] - 10https://gerrit.wikimedia.org/r/139697 [16:01:57] (03PS9) 10Paladox: Update jquery.chosen folder and files [core] - 10https://gerrit.wikimedia.org/r/139699 [16:05:03] 3MediaWiki extensions / 3Translate: Upon completed translation you end up at api - 10https://bugzilla.wikimedia.org/67292#c4 (10Lokal_Profil) And since I had the console up... quickedit.js also seems to include the deprecated tooltipAccessKeyPrefix-call [16:05:47] 3MediaWiki extensions / 3BetaFeatures: BetaFeatures: AutoEnrollmentTest produce a fatal error with OATHAuth extension - 10https://bugzilla.wikimedia.org/67138#c7 (10Antoine "hashar" Musso) I talked with James about comment #6. The idea is to run tests with all wmf extensions installed regardless of configura... [16:08:02] 3MediaWiki / 3Database: SQLite support (tracking) - 10https://bugzilla.wikimedia.org/20257 (10Antoine "hashar" Musso) [16:08:03] 3MediaWiki extensions / 3CreditsSource: CreditsSource does not pass Jenkins unit tests - 10https://bugzilla.wikimedia.org/65877 (10Antoine "hashar" Musso) [16:08:03] 3MediaWiki / 3JavaScript: jQuery UI 1.9.2 autocomplete makes triggers content vanishing in Chrome, Opera next - 10https://bugzilla.wikimedia.org/67243#c5 (10Krinkle) Is there an upstream jQuery bug report? I don't think it's worth investigating this from our end. Duplicative effort and rather inefficient as... [16:08:17] 3MediaWiki extensions / 3CreditsSource: CreditsSource does not pass Jenkins unit tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65877 (10Antoine "hashar" Musso) [16:08:48] 3MediaWiki extensions / 3[other]: CommunityVoice does not pass Jenkins unit tests (sqlite compatibility) - 10https://bugzilla.wikimedia.org/65876 (10Antoine "hashar" Musso) [16:08:48] 3MediaWiki / 3Database: SQLite support (tracking) - 10https://bugzilla.wikimedia.org/20257 (10Antoine "hashar" Musso) [16:10:14] (03PS5) 10Florianschmidtwelzow: Add feature to restrict E-Maildomains [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/142741 (https://bugzilla.wikimedia.org/67220) [16:10:16] (03CR) 10jenkins-bot: [V: 04-1] Add feature to restrict E-Maildomains [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/142741 (https://bugzilla.wikimedia.org/67220) (owner: 10Florianschmidtwelzow) [16:13:26] (03PS6) 10Florianschmidtwelzow: Add feature to restrict E-Maildomains [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/142741 (https://bugzilla.wikimedia.org/67220) [16:13:29] (03CR) 10EBernhardson: [C: 032] QA: Fix for browser tests in Chrome [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142574 (owner: 10Jdlrobson) [16:13:49] (03Merged) 10jenkins-bot: QA: Fix for browser tests in Chrome [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142574 (owner: 10Jdlrobson) [16:14:34] (03CR) 10EBernhardson: [C: 04-1] "needs to remove the relevant php in includes/TemplateHelper.php as well" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142598 (owner: 10Jdlrobson) [16:14:41] (03PS2) 10EBernhardson: Remove dead helper code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142598 (owner: 10Jdlrobson) [16:14:57] (03PS7) 10Florianschmidtwelzow: Add feature to restrict E-Maildomains [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/142741 (https://bugzilla.wikimedia.org/67220) [16:15:40] (03PS3) 10EBernhardson: Remove dead helper code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142598 (owner: 10Jdlrobson) [16:15:52] (03CR) 10EBernhardson: [C: 032] Remove dead helper code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142598 (owner: 10Jdlrobson) [16:15:55] (03PS1) 10Physikerwelt: WIP:First node only mathoid protype [services/mathoid] - 10https://gerrit.wikimedia.org/r/143043 [16:16:10] (03Merged) 10jenkins-bot: Remove dead helper code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142598 (owner: 10Jdlrobson) [16:16:40] (03CR) 10Nikerabbit: "I was thinking of server side purge. Do other reviewers have opinions on this?" [core] - 10https://gerrit.wikimedia.org/r/143026 (owner: 10Kunalgrover05) [16:16:52] (03CR) 10Chad: "This is kind of a nitpick, but I don't think that our Jenkins setup is a good reason for adding standardized entry points. I think they sh" [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [16:20:54] (03CR) 10Hashar: "Jenkins has a very lame auto included based on that convention because almost all extensions are respecting it. I agree Jenkins is not th" [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [16:21:56] and I am off, see you later this evening [16:25:13] (03Abandoned) 10Hashar: Only manage logged users [extensions/OATHAuth] - 10https://gerrit.wikimedia.org/r/142252 (https://bugzilla.wikimedia.org/67138) (owner: 10Hashar) [16:25:54] (03PS3) 10EBernhardson: Simplify linkWithReturnTo helper [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142600 (owner: 10Jdlrobson) [16:26:05] (03CR) 10EBernhardson: [C: 032] Simplify linkWithReturnTo helper [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142600 (owner: 10Jdlrobson) [16:26:26] (03Merged) 10jenkins-bot: Simplify linkWithReturnTo helper [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142600 (owner: 10Jdlrobson) [16:26:27] 3MediaWiki extensions / 3Math: Math tests dies when run with the Echo extensions - 10https://bugzilla.wikimedia.org/67148#c7 (10Antoine "hashar" Musso) Sure! See comment 1. Install a stock MediaWiki core with extensions Echo and Math. That should trigger the issue. [16:26:57] 3MediaWiki / 3Skin and page rendering: Large number of CSS rules for external links - 10https://bugzilla.wikimedia.org/54604#c67 (10Gabriel Wicke) (In reply to Bartosz Dziewoński from comment #66) > As I said before, I'm okay with doing this either way (we can revert the old > patch that removed this feature... [16:27:13] (03CR) 10Hashar: "Yup was described at https://bugzilla.wikimedia.org/show_bug.cgi?id=67148#c1 :-)" [extensions/Math] - 10https://gerrit.wikimedia.org/r/142739 (https://bugzilla.wikimedia.org/67148) (owner: 10Physikerwelt) [16:28:14] (03CR) 10EBernhardson: [C: 032] Fix (hist) text [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142524 (owner: 10Matthias Mullie) [16:28:33] (03Merged) 10jenkins-bot: Fix (hist) text [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142524 (owner: 10Matthias Mullie) [16:28:36] (03PS2) 10EBernhardson: Hygiene: Improve JSHint coverage [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142440 (owner: 10Jdlrobson) [16:29:00] (03CR) 10EBernhardson: [C: 032] Hygiene: Improve JSHint coverage [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142440 (owner: 10Jdlrobson) [16:29:17] (03Merged) 10jenkins-bot: Hygiene: Improve JSHint coverage [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142440 (owner: 10Jdlrobson) [16:30:15] (03CR) 10Hashar: [C: 031] "> @Hashar: Thanks, I realized that the hard way in the mean time." [extensions/WikimediaMaintenance] - 10https://gerrit.wikimedia.org/r/135522 (https://bugzilla.wikimedia.org/65793) (owner: 10Physikerwelt) [16:30:18] (03PS1) 10EBernhardson: Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 [16:30:22] (03CR) 10jenkins-bot: [V: 04-1] Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 (owner: 10EBernhardson) [16:30:37] (03Abandoned) 10EBernhardson: Replace occupation w/ ContentHandler integration. [extensions/Flow] (frontend-rewrite) - 10https://gerrit.wikimedia.org/r/131043 (owner: 10Werdna) [16:31:15] 3Wikimedia / 3Bugzilla: Create Semantic Rating and Title Icon components in MediaWiki extensions product - 10https://bugzilla.wikimedia.org/67299 (10Tyler Romeo) 5UNCO>3NEW p:5Unprio>3Normal a:3Tyler Romeo [16:32:34] (03PS2) 10EBernhardson: Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 [16:33:27] 3Wikimedia / 3Bugzilla: Create Semantic Rating and Title Icon components in MediaWiki extensions product - 10https://bugzilla.wikimedia.org/67299#c1 (10Tyler Romeo) 5NEW>3RESO/FIX Done! [16:34:39] (03PS2) 10Anomie: API: Fix queries for list=allusers&auactiveusers [core] - 10https://gerrit.wikimedia.org/r/130093 (https://bugzilla.wikimedia.org/64505) [16:35:02] (03PS1) 10Anomie: Add $wgDebugDumpSqlLength [core] - 10https://gerrit.wikimedia.org/r/143046 [16:38:32] (03CR) 10Dduvall: [C: 04-1] "Looks good aside from one spacing issue." (031 comment) [core] - 10https://gerrit.wikimedia.org/r/142720 (owner: 10Cmcmahon) [16:39:27] 3Wikimedia / 3General/Unknown: Increase "remember me" login cookie expiry from 30 days to 1 year on Wikimedia wikis - 10https://bugzilla.wikimedia.org/66699#c35 (10James Forrester) (In reply to Martin von Gagern from comment #34) > (In reply to Krinkle from comment #24) > > Hm.. also relevant is that we inva... [16:39:31] (03PS1) 10Wctaiwan: Tidy preview function and comments [extensions/MassMessage] (contenthandler) - 10https://gerrit.wikimedia.org/r/143047 [16:39:54] (03CR) 10Nemo bis: "As I commented this morning on https://gerrit.wikimedia.org/r/125246 , why not instead make "recenteditcount" respect its name by filterin" [core] - 10https://gerrit.wikimedia.org/r/130093 (https://bugzilla.wikimedia.org/64505) (owner: 10Anomie) [16:40:46] (03CR) 10Nemo bis: "API feature parity followup: I461e92819188c311cbb3853bc6bfad45962c8d7b" [core] - 10https://gerrit.wikimedia.org/r/125246 (https://bugzilla.wikimedia.org/63769) (owner: 10Brian Wolff) [16:44:29] 3Analytics / 3EventLogging: EL needs process alerts - 10https://bugzilla.wikimedia.org/67309 (10nuria) 3NEW p:3Unprio s:3normal a:3None We need to set up a process nanny alert for EL processes running on hafnium and vanadium. Just recently processes on halfnium died, they were not restarted and we l... [16:47:21] (03PS2) 10Pcoombe: Convert from tag to includable special page, revamp tracking [extensions/Petition] - 10https://gerrit.wikimedia.org/r/142561 [16:49:41] (03PS4) 10Pcoombe: Prevent blocked users from signing petitions [extensions/Petition] - 10https://gerrit.wikimedia.org/r/142737 (https://bugzilla.wikimedia.org/65850) [16:51:17] (03CR) 10Reedy: "Per IRC, is there really any reason to truncate it at all?" [core] - 10https://gerrit.wikimedia.org/r/143046 (owner: 10Anomie) [16:51:45] (03PS1) 10Kunalgrover05: Use API method in special page [core] - 10https://gerrit.wikimedia.org/r/143049 [16:54:45] (03PS2) 10Kunalgrover05: Use API method in Special:PageLanguage to change language [core] - 10https://gerrit.wikimedia.org/r/143049 [16:57:25] (03CR) 10Umherirrender: [C: 031] "That is the right change." [core] - 10https://gerrit.wikimedia.org/r/142000 (https://bugzilla.wikimedia.org/39507) (owner: 10Rohan013) [16:57:51] (03CR) 10Kunalgrover05: "Btw How to do that?" [core] - 10https://gerrit.wikimedia.org/r/143026 (owner: 10Kunalgrover05) [16:57:55] (03PS1) 10EBernhardson: generateUID wasnt quite dead [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143050 [16:58:36] (03PS2) 10Cmcmahon: Make Preferences tests language-agnostic [core] - 10https://gerrit.wikimedia.org/r/142720 [16:59:20] (03CR) 10Cmcmahon: "Fixed the space issue" [core] - 10https://gerrit.wikimedia.org/r/142720 (owner: 10Cmcmahon) [17:00:50] (03CR) 10Florianschmidtwelzow: [C: 031] Disables upload by url option for users without the necessary permissions [core] - 10https://gerrit.wikimedia.org/r/142000 (https://bugzilla.wikimedia.org/39507) (owner: 10Rohan013) [17:02:44] (03CR) 10Jackmcbarn: "I agree with Nikerabbit." [core] - 10https://gerrit.wikimedia.org/r/143026 (owner: 10Kunalgrover05) [17:04:38] (03CR) 10Umherirrender: "Special:Block has no tabindex, so I am not sure, what you are refering for. But I would prefer a autofocus over a tabindex, because that a" [core] - 10https://gerrit.wikimedia.org/r/129944 (owner: 10Umherirrender) [17:07:55] (03PS1) 10Florianschmidtwelzow: [DO NOT MERGE] Enable keep logged in [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/143053 (https://bugzilla.wikimedia.org/67136) [17:08:26] (03PS2) 10Florianschmidtwelzow: [DO NOT MERGE] Enable keep logged in [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/143053 (https://bugzilla.wikimedia.org/67136) [17:08:28] 3MediaWiki extensions / 3GoogleLogin: Enable "keep login" in GoogleLogin Settings - 10https://bugzilla.wikimedia.org/67136 (10Florian) 5PATC>3ASSI [17:08:32] (03CR) 10Florianschmidtwelzow: [C: 04-2] [DO NOT MERGE] Enable keep logged in [extensions/GoogleLogin] - 10https://gerrit.wikimedia.org/r/143053 (https://bugzilla.wikimedia.org/67136) (owner: 10Florianschmidtwelzow) [17:08:56] (03CR) 10Cmcmahon: [C: 032] "Fixed space, merging" [core] - 10https://gerrit.wikimedia.org/r/142720 (owner: 10Cmcmahon) [17:12:26] (03Merged) 10jenkins-bot: Make Preferences tests language-agnostic [core] - 10https://gerrit.wikimedia.org/r/142720 (owner: 10Cmcmahon) [17:12:32] (03CR) 10Chad: [C: 032] Fix file permissions from Ic7fc3bd836241dce8f296237bbd80ed3e4d1ee0d [core] - 10https://gerrit.wikimedia.org/r/143030 (owner: 10Reedy) [17:12:44] 3Analytics / 3Wikistats: Explain why some tables show monthly data other quarterly - 10https://bugzilla.wikimedia.org/67314 (10Erik Zachte) 3NEW p:3Unprio s:3normal a:3None For many wikistats tables producing monthly metrics seems over the top, given that this would result in about 150 lines and grow... [17:13:57] 3Analytics / 3Wikistats: Explain why some tables show monthly data other quarterly - 10https://bugzilla.wikimedia.org/67314 (10Erik Zachte) 5NEW>3RESO/FIX [17:17:08] (03Merged) 10jenkins-bot: Fix file permissions from Ic7fc3bd836241dce8f296237bbd80ed3e4d1ee0d [core] - 10https://gerrit.wikimedia.org/r/143030 (owner: 10Reedy) [17:18:09] (03PS1) 10Reedy: chmod 644 [core] - 10https://gerrit.wikimedia.org/r/143054 [17:18:32] 3Analytics / 3Wikistats: Always show all months for wikistats tables with data for all wikis/projects - 10https://bugzilla.wikimedia.org/67315 (10Erik Zachte) 3NEW p:3Unprio s:3normal a:3None Do no longer use concise format for these global tables as data may be needed for further analysis (and raw c... [17:19:15] 3Analytics / 3Wikistats: Always show all months for wikistats tables with data for all wikis/projects - 10https://bugzilla.wikimedia.org/67315 (10Erik Zachte) 5NEW>3RESO/FIX [17:19:20] (03CR) 10Anomie: "If Special:ActiveUsers is changed to do that, then this should also be changed to match. But I don't know how people use Special:ActiveUse" [core] - 10https://gerrit.wikimedia.org/r/130093 (https://bugzilla.wikimedia.org/64505) (owner: 10Anomie) [17:21:45] 3Wikimedia / 3General/Unknown: Google Chrome doesnt respect upright of images - 10https://bugzilla.wikimedia.org/65889#c14 (10Juan de Vojníkov) Even FF. Now I was testing the bug in FF. So not just Google Chrome as set in the title of this bug. [17:22:06] (03CR) 10Anomie: "I wouldn't mind just removing the truncation entirely, but I don't know if the truncation is there for a reason either." [core] - 10https://gerrit.wikimedia.org/r/143046 (owner: 10Anomie) [17:23:28] (03CR) 10Bartosz Dziewoński: [C: 032] chmod 644 [core] - 10https://gerrit.wikimedia.org/r/143054 (owner: 10Reedy) [17:24:48] 3MediaWiki extensions / 3EducationProgram: EducationProgram: An admin was able to add an anon to a course - 10https://bugzilla.wikimedia.org/66631 (10Andrew Green) [17:27:00] (03Merged) 10jenkins-bot: chmod 644 [core] - 10https://gerrit.wikimedia.org/r/143054 (owner: 10Reedy) [17:28:22] (03PS1) 10Reedy: chmod 644 [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/143057 [17:28:33] 3Wikimedia / 3Bugzilla: Create a MediaWiki extensions component for ZeroPortal - 10https://bugzilla.wikimedia.org/67143#c6 (10Arthur Richards) Adam, let me know when the Bugzilla components are finalized and set in BZ and I can help get things set up for you with Bugello. [17:29:29] (03PS1) 10Reedy: Drop execute bit [extensions/Petition] - 10https://gerrit.wikimedia.org/r/143058 [17:32:20] (03CR) 10Hoo man: [C: 032] chmod 644 [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/143057 (owner: 10Reedy) [17:32:27] (03Merged) 10jenkins-bot: chmod 644 [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/143057 (owner: 10Reedy) [17:32:31] (03CR) 10Anomie: [C: 04-1] "Yes, do the purge server-side." [core] - 10https://gerrit.wikimedia.org/r/143026 (owner: 10Kunalgrover05) [17:33:03] 3MediaWiki extensions / 3EducationProgram: User's IP is shown as ' is a student in Intellectual Freedom - LIS 493 (course talk).' on all IP editors' contributions - 10https://bugzilla.wikimedia.org/66624#c22 (10Andrew Green) Almost! The change that prevents it happening is merged on the cluster. The main... [17:37:30] (03CR) 10Aaron Schulz: "I'd lean towards just removing the limit." [core] - 10https://gerrit.wikimedia.org/r/143046 (owner: 10Anomie) [17:38:49] 3MediaWiki / 3Skin and page rendering: Subpixel antialiasing disabled because of -webkit-backface-visibility: hidden - 10https://bugzilla.wikimedia.org/67308#c1 (10Bartosz Dziewoński) 5UNCO>3RESO/DUP *** This bug has been marked as a duplicate of bug 67286 *** [17:38:49] 3MediaWiki / 3Skin and page rendering: Recent regression caused blurry content text on iPad (desktop/Vector skin) - 10https://bugzilla.wikimedia.org/67286#c3 (10Bartosz Dziewoński) *** Bug 67308 has been marked as a duplicate of this bug. *** [17:39:45] (03CR) 10Bartosz Dziewoński: [C: 032] "A duplicate bug report was just filed, too. It looks like the issue this is a workaround for is a much lesser problem than the broken rend" [core] - 10https://gerrit.wikimedia.org/r/142975 (https://bugzilla.wikimedia.org/67286) (owner: 10Brion VIBBER) [17:40:08] (03PS1) 10Jackmcbarn: Display the full error message in wikitext [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143061 [17:40:49] 3MediaWiki / 3Skin and page rendering: Recent regression caused blurry content text on iPad (desktop/Vector skin) - 10https://bugzilla.wikimedia.org/67286 (10Bartosz Dziewoński) 5PATC>3RESO/FIX a:3Brion Vibber [17:41:04] 3MediaWiki extensions / 3OAuth: oauth_registered_consumer table not created under sqlite - 10https://bugzilla.wikimedia.org/67296#c4 (10Chris Steipp) I think that fix should work, I'll try and test it out. Good to have regardless. Do you have a link to the failing tests? None of the tests should be using a... [17:41:35] (03CR) 10Brian Wolff: "When i made them they worked from the old parser test runner but not phpunit. They are probably really delicate." [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 (owner: 10Hashar) [17:42:17] (03CR) 10jenkins-bot: [V: 04-1] Display the full error message in wikitext [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143061 (owner: 10Jackmcbarn) [17:43:15] (03PS2) 10Jackmcbarn: Display the full error message in wikitext [extensions/Scribunto] - 10https://gerrit.wikimedia.org/r/143061 [17:43:17] (03Merged) 10jenkins-bot: Remove 'webkit-backface-visibility' rule which made iPads super blurry [core] - 10https://gerrit.wikimedia.org/r/142975 (https://bugzilla.wikimedia.org/67286) (owner: 10Brion VIBBER) [17:43:33] 3MediaWiki / 3Skin and page rendering: Subpixel antialiasing disabled because of -webkit-backface-visibility: hidden - 10https://bugzilla.wikimedia.org/67308#c2 (10Nicolas Grilly) Thanks a lot! [17:43:59] (03CR) 10Rohan013: "Well, it wasn't mentioned in the UploadBase::IsAllowed that the return value could be a string, so i got confused." [core] - 10https://gerrit.wikimedia.org/r/142000 (https://bugzilla.wikimedia.org/39507) (owner: 10Rohan013) [17:44:04] 3Wikimedia / 3General/Unknown: Rewrite jobs-loop.sh in a proper programming language - 10https://bugzilla.wikimedia.org/46770 (10Aaron Schulz) a:5Rob Lanphier>3Aaron Schulz [17:46:37] 3Wikimedia / 3General/Unknown: Upright of images does not work on several browsers - 10https://bugzilla.wikimedia.org/65889 (10Florian) [17:47:38] anomie: can you take another look at https://gerrit.wikimedia.org/r/#/c/132730/ ? [17:48:07] jackmcbarn: I'll try to get to it this afternoon [17:48:44] kk [17:50:02] ori, are there any issues holding the URL patch? Also, pls +2 the zero role patch when you have some time )) [17:50:33] 3Wikimedia / 3Bugzilla: Create a MediaWiki extensions component for ZeroPortal - 10https://bugzilla.wikimedia.org/67143#c7 (10dr0ptp4kt) (In reply to Arthur Richards from comment #6) > Adam, let me know when the Bugzilla components are finalized and set in BZ > and I can help get things set up for you with B... [17:50:49] (03CR) 10Bsitu: [C: 032] generateUID wasnt quite dead [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143050 (owner: 10EBernhardson) [17:51:06] (03Merged) 10jenkins-bot: generateUID wasnt quite dead [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143050 (owner: 10EBernhardson) [17:56:50] 3MediaWiki / 3Skin and page rendering: messages from skin i18n not loaded for $wgLanguageCode != en - 10https://bugzilla.wikimedia.org/67318 (10Umherirrender) 3NEW p:3Unprio s:3normal a:3None I have $wgLanguageCode = "de" and see a plain "" in my gui. Problem exists since gerrit... [17:56:54] (03CR) 10Umherirrender: "Now bug 67318" [core] - 10https://gerrit.wikimedia.org/r/135413 (owner: 10Bartosz Dziewoński) [17:58:03] 3MediaWiki / 3API: The protorel attribute in the siteinfo API is set to "true", not "". - 10https://bugzilla.wikimedia.org/66723#c9 (10C. Scott Ananian) Sorry, Brad, when I file a bug, and it is assigned to me, and the issue applies to both Parsoid and core I usually use the same bug # for both components an... [17:58:56] (03CR) 10Ori.livneh: [C: 032] Add apache::mod::expires for role::simple_performant [vagrant] - 10https://gerrit.wikimedia.org/r/142813 (owner: 10BryanDavis) [17:59:15] (03Merged) 10jenkins-bot: Add apache::mod::expires for role::simple_performant [vagrant] - 10https://gerrit.wikimedia.org/r/142813 (owner: 10BryanDavis) [17:59:20] (03CR) 10Anomie: [C: 04-1] "> I think you're expected to make the special page rely on the API itself, and of course to avoid code duplication." (0314 comments) [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [18:02:17] (03CR) 10CSteipp: [C: 032] "Working in dev" [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/143021 (https://bugzilla.wikimedia.org/67296) (owner: 10Hashar) [18:02:24] (03Merged) 10jenkins-bot: Supports sqlite [extensions/OAuth] - 10https://gerrit.wikimedia.org/r/143021 (https://bugzilla.wikimedia.org/67296) (owner: 10Hashar) [18:03:03] 3MediaWiki / 3API: The protorel attribute in the siteinfo API is set to "true", not "". - 10https://bugzilla.wikimedia.org/66723#c10 (10Brad Jorsch) (In reply to C. Scott Ananian from comment #9) > I probably should have changed the component of the bug over to Parsoid > after the core patch landed. That wo... [18:05:00] (03CR) 10Nikerabbit: "It is useful if you are having LocalisationCache in sql I think." [core] - 10https://gerrit.wikimedia.org/r/143046 (owner: 10Anomie) [18:06:05] (03PS3) 10Bsitu: Get rid of termsOfuse hook and helper function [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 [18:06:58] (03PS3) 10EBernhardson: Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 [18:07:22] (03CR) 10EBernhardson: [C: 032] Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 (owner: 10EBernhardson) [18:07:39] (03Merged) 10jenkins-bot: Replace occupation w/ ContentHandler integration. [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143045 (owner: 10EBernhardson) [18:09:03] 3Wikimedia / 3Wikidata: Gadgets not purged on wikidata.org - 10https://bugzilla.wikimedia.org/65340#c6 (10Andre Klapper) 5REOP>3RESO/WOR p:5High>3Normal Still sounds like nobody knows if it still happens. Setting to WORKSFORME, please reopen if there is any indication that we can actually investigate... [18:10:19] 3Wikimedia / 3Site requests: Technical rights on ruwiki - 10https://bugzilla.wikimedia.org/67304 (10Andre Klapper) p:5Unprio>3Normal [18:10:25] (03PS4) 10Bsitu: Get rid of termsOfuse hook and helper function [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 [18:10:30] (03CR) 10jenkins-bot: [V: 04-1] Get rid of termsOfuse hook and helper function [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 (owner: 10Bsitu) [18:10:48] 3Wikimedia / 3SSL related: Enable HSTS on Wikimedia wikis - 10https://bugzilla.wikimedia.org/38516#c21 (10Andre Klapper) *** Bug 67303 has been marked as a duplicate of this bug. *** [18:13:30] (03PS11) 10Umherirrender: Add dynamic maxlength to Special:RevisionDelete [core] - 10https://gerrit.wikimedia.org/r/135197 (https://bugzilla.wikimedia.org/34467) [18:13:47] (03CR) 10EBernhardson: "is there a way to only check the messages when necessary, rather than every time mediawiki initializes?" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 (owner: 10Bsitu) [18:13:49] 3MediaWiki extensions / 3OAuth: oauth_registered_consumer table not created under sqlite - 10https://bugzilla.wikimedia.org/67296#c6 (10Antoine "hashar" Musso) 5PATC>3RESO/FIX Some other extension tests (maybe OATHAuth) ends up hitting the oauth_registered_consumer table and thus a stack trace. All good... [18:14:35] (03CR) 10Umherirrender: "Patch Set 11: Addressed inline comments" (033 comments) [core] - 10https://gerrit.wikimedia.org/r/135197 (https://bugzilla.wikimedia.org/34467) (owner: 10Umherirrender) [18:16:16] (03CR) 10Hashar: "Seems the elements are yield in different order, or inserted differently. So if a test does not have any ordering, we end up with some err" [extensions/intersection] - 10https://gerrit.wikimedia.org/r/54460 (owner: 10Hashar) [18:16:49] (03CR) 10Katie Horn: [C: 032] Amazon can convert into any currency [core] (fundraising/REL1_22) - 10https://gerrit.wikimedia.org/r/142973 (owner: 10Awight) [18:29:03] (03PS5) 10Bsitu: Get rid of termsOfuse hook and helper function [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 [18:30:20] (03PS36) 10Alex Monk: Cross-wiki user rights UI should show target wiki groups instead of local [core] - 10https://gerrit.wikimedia.org/r/36330 (https://bugzilla.wikimedia.org/12518) [18:31:47] (03CR) 10jenkins-bot: [V: 04-1] Cross-wiki user rights UI should show target wiki groups instead of local [core] - 10https://gerrit.wikimedia.org/r/36330 (https://bugzilla.wikimedia.org/12518) (owner: 10Alex Monk) [18:31:48] 3MediaWiki / 3General/Unknown: Extensions missing REL1_23 branches - 10https://bugzilla.wikimedia.org/67270#c1 (10Greg Grossmeier) Is there a list of remaining extensions without REL1_23 branches? [18:35:54] (03CR) 10SG: mw-ui-button: Revamp the LESS to be simpler, and improve cross-browser support (031 comment) [core] - 10https://gerrit.wikimedia.org/r/123804 (owner: 10SG) [18:37:54] (03PS3) 10Divec: DONT MERGE: Apertium interface client module [services/cxserver] - 10https://gerrit.wikimedia.org/r/141641 [18:38:40] (03CR) 10jenkins-bot: [V: 04-1] DONT MERGE: Apertium interface client module [services/cxserver] - 10https://gerrit.wikimedia.org/r/141641 (owner: 10Divec) [18:39:22] 3MediaWiki / 3User login and signup: In automated browser tests, browser loses token or logs out when switching from VE to wikitext edit mode, and various other failures - 10https://bugzilla.wikimedia.org/65709#c9 (10James Forrester) s:5minor>3normal a:3None Given this is a duplicate of non-VE bugs, it... [18:40:23] (03PS4) 10Divec: DONT MERGE: Apertium interface client module [services/cxserver] - 10https://gerrit.wikimedia.org/r/141641 [18:42:21] 3MediaWiki / 3User login and signup: In automated browser tests, browser loses token or logs out when switching from VE to wikitext edit mode, and various other failures - 10https://bugzilla.wikimedia.org/65709 (10James Forrester) 5ASSI>3NEW [18:46:24] (03CR) 10Ori.livneh: [C: 032] Fix CSSMin url() remapping when comments in CSS contain curly braces [core] - 10https://gerrit.wikimedia.org/r/139268 (https://bugzilla.wikimedia.org/60077) (owner: 10Foxtrott) [18:46:52] 3MediaWiki / 3Documentation: CORS docs for MediaWiki Web API? - 10https://bugzilla.wikimedia.org/55928#c4 (10PiRSquared17) https://www.mediawiki.org/wiki/API:Cross-site_requests https://www.mediawiki.org/wiki/Manual:CORS https://www.mediawiki.org/wiki/Snippets/Cross-wiki_editing_with_CORS https://www.mediawi... [18:46:57] (03CR) 10CSteipp: "@Nemo, it's not the end of the world, but if they do any edits, then the logs/revisions might have the old name (depending on the timing)." [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) (owner: 10Legoktm) [18:50:17] (03Merged) 10jenkins-bot: Fix CSSMin url() remapping when comments in CSS contain curly braces [core] - 10https://gerrit.wikimedia.org/r/139268 (https://bugzilla.wikimedia.org/60077) (owner: 10Foxtrott) [18:53:46] (03PS1) 10Jdlrobson: Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 [18:56:15] (03PS1) 10Awight: update DonationInterface submodule [core] (fundraising/REL1_22) - 10https://gerrit.wikimedia.org/r/143074 [18:56:18] (03PS4) 10Hashar: (WIP) Experiment with language bundle exts (WIP) [integration/jenkins-job-builder-config] - 10https://gerrit.wikimedia.org/r/142421 [18:56:23] (03PS2) 10Hashar: (WIP) zuul-cloner always fallback to ZUUL_BRANCH (WIP) [integration/jenkins-job-builder-config] - 10https://gerrit.wikimedia.org/r/142433 [18:56:26] (03CR) 10SG: [C: 04-1] "Per IRC. Let's make it more clear WHERE this stuff is being used by putting them into subdirectories. eg. /board/* for files that style a " [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 (owner: 10Jdlrobson) [18:56:29] (03CR) 10Awight: [C: 032] update DonationInterface submodule [core] (fundraising/REL1_22) - 10https://gerrit.wikimedia.org/r/143074 (owner: 10Awight) [18:56:33] (03PS37) 10Alex Monk: Cross-wiki user rights UI should show target wiki groups instead of local [core] - 10https://gerrit.wikimedia.org/r/36330 (https://bugzilla.wikimedia.org/12518) [18:59:59] atus [19:01:24] (03CR) 10Ori.livneh: [C: 032 V: 032] Support overriding the default claimTTL/attempts settings [services/jobrunner] - 10https://gerrit.wikimedia.org/r/142760 (owner: 10Aaron Schulz) [19:02:37] (03CR) 10Ori.livneh: [C: 04-1] "You append "\n" in the logging methods themselves, so don't include it in the message, too." [services/jobrunner] - 10https://gerrit.wikimedia.org/r/142757 (owner: 10Aaron Schulz) [19:04:29] ori: some of those messages had \n\n [19:04:40] oh [19:04:43] if it's deliberate, fine [19:04:48] so they went to \n...kind of ugly though [19:04:48] sorry [19:05:03] yeah, either formatting is the job of the methods or it isn't [19:05:38] i think the logic of moving \n to the methods is: logging calls shouldn't be concerned with the formatting of text [19:05:43] manybubbles: did you see my last email to you? [19:05:52] they should convey information rather than worry about how to present it [19:05:57] Nikerabbit: sorry, about speed? [19:06:06] AaronSchulz: anyways it's an academic point, not a reason to hold up the patch [19:06:11] (03CR) 10Ori.livneh: [C: 032 V: 032] Hide spammy output behind --verbose flag [services/jobrunner] - 10https://gerrit.wikimedia.org/r/142757 (owner: 10Aaron Schulz) [19:06:19] (03PS1) 10EBernhardson: Fix constructor typo [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143076 [19:06:34] manybubbles: yeah the same boostrapping thread... I was wondering whether I just need more resources to run elasticsearch [19:07:22] Nikerabbit: llet me reread [19:14:28] (03PS1) 10Cmcmahon: Porting file test from browsertests [core] - 10https://gerrit.wikimedia.org/r/143079 [19:20:09] (03CR) 10Hashar: "So you guys write code without tests nor jenkins jobs? =) Let me know what is needed here!" [services/jobrunner] - 10https://gerrit.wikimedia.org/r/142757 (owner: 10Aaron Schulz) [19:22:36] (03CR) 10CSteipp: [C: 031] Salt the "nsToken" used for Special:Search namespace remembering [core] - 10https://gerrit.wikimedia.org/r/142900 (https://bugzilla.wikimedia.org/67210) (owner: 10Brian Wolff) [19:24:21] (03CR) 10Chad: [C: 032] Salt the "nsToken" used for Special:Search namespace remembering [core] - 10https://gerrit.wikimedia.org/r/142900 (https://bugzilla.wikimedia.org/67210) (owner: 10Brian Wolff) [19:24:51] 3MediaWiki / 3Search: nsToken GET parameter to Special:Search should be a salted version of the edit token instead of just plain edit token - 10https://bugzilla.wikimedia.org/67210 (10Chad H.) 5PATC>3RESO/FIX [19:26:11] (03PS2) 10Jdlrobson: Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 [19:28:00] (03Merged) 10jenkins-bot: Salt the "nsToken" used for Special:Search namespace remembering [core] - 10https://gerrit.wikimedia.org/r/142900 (https://bugzilla.wikimedia.org/67210) (owner: 10Brian Wolff) [19:28:51] 3Wikimedia / 3lucene-search-2: Lucene search for DOI prefixes fails on several wikis - 10https://bugzilla.wikimedia.org/37319#c3 (10Chad H.) 5NEW>3RESO/WON We handle this much better in Cirrus. Marking as WONTFIX since lsearchd has been end-of-lifed, but adding cirrus-fixed tag. [19:29:30] (03PS1) 10Bsitu: Add action object for no-js support [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143082 [19:30:23] manybubbles: thanks for the reply... I will do more digging [19:31:18] (03CR) 10SG: [C: 031] "+1 assuming you fix the random .txt. Feel free to +2 yourself and merge once it's fixed." [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 (owner: 10Jdlrobson) [19:33:06] 3Wikimedia / 3lucene-search-2: Valid Page name resulting in backend search error - 10https://bugzilla.wikimedia.org/66259#c9 (10Chad H.) It's an issue the old search is having with punctuation in search queries. It's been like this for weeks (months?) now and I've never managed to run it down. Nothing to do... [19:33:36] 3MediaWiki / 3ResourceLoader: CSSMin url() value remapping not working in certain obscure cases (braces in comments inside declarations: background: /*{test}*/ url(image.png) ) - 10https://bugzilla.wikimedia.org/60077#c17 (10Bartosz Dziewoński) 5PATC>3RESO/FIX I hope this works better now. Thanks again! [19:34:15] thanks indeed, I'm curious to see ES on twn soon again :) [19:40:38] is there a reliable way to clear localisation cache? [19:40:53] (03CR) 10Jamesmontalvo3: "I had to pick a Packagist account I can access in order to test composer support worked properly. I guess since it works it makes sense to" [extensions/AdminLinks] - 10https://gerrit.wikimedia.org/r/142763 (owner: 10Jamesmontalvo3) [19:41:01] i'm trying to reproduce a bug that depends on localisation cache being empty. https://bugzilla.wikimedia.org/show_bug.cgi?id=67318 [19:42:26] MatmaRex: truncate table l10n_cache;? [19:42:51] 3MediaWiki / 3Page editing: Auto-Edit Summary: if few changes ("smaller" than a threshold) have been made, automatically create an Edit Summary from diff results - 10https://bugzilla.wikimedia.org/1307 (10James Forrester) 5REOP>3NEW [19:43:14] Vulpix: can't the cache be stored in a bunch of other thingies? [19:43:30] hmmm, probably [19:43:42] but if you don't use memcached nor file cache, it shouldn't [19:45:06] (03PS3) 10IAlex: Do not show user blocked warning on included Special:Contributions page [core] - 10https://gerrit.wikimedia.org/r/136308 (https://bugzilla.wikimedia.org/65781) (owner: 10devunt) [19:46:00] (03CR) 10IAlex: [C: 032] Do not show user blocked warning on included Special:Contributions page [core] - 10https://gerrit.wikimedia.org/r/136308 (https://bugzilla.wikimedia.org/65781) (owner: 10devunt) [19:46:08] 3Wikimedia / 3Site requests: Technical rights on ruwiki - 10https://bugzilla.wikimedia.org/67304 (10John F. Lewis) 5NEW>3ASSI a:3John F. Lewis [19:49:28] (03Merged) 10jenkins-bot: Do not show user blocked warning on included Special:Contributions page [core] - 10https://gerrit.wikimedia.org/r/136308 (https://bugzilla.wikimedia.org/65781) (owner: 10devunt) [19:52:16] (03PS1) 10IAlex: Don't use isset() to check for null [core] - 10https://gerrit.wikimedia.org/r/143085 [19:53:51] 3MediaWiki / 3Skin and page rendering: messages from skin i18n not loaded for $wgLanguageCode != en - 10https://bugzilla.wikimedia.org/67318#c1 (10Bartosz Dziewoński) I still can't reproduce this after changing $wgLanguageCode a few times (maybe it depends on the kind of localisation cache used?), but your e... [19:56:04] (03PS1) 10Manybubbles: Configure cache warmers [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) [19:56:44] (03CR) 10Manybubbles: [C: 04-1] "Running a full regression suite after configuring cache warming. Will clear -1 when it passes." [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) (owner: 10Manybubbles) [19:57:02] (03PS3) 10Jdlrobson: Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 [19:57:08] (03CR) 10Milimetric: [V: 031] "This worked in vagrant when I enabled the analytics role. I was able to use hive and hdfs." [vagrant] - 10https://gerrit.wikimedia.org/r/142698 (owner: 10Ottomata) [19:58:49] (03PS4) 10Ottomata: Now using CDH5 for role::analytics [vagrant] - 10https://gerrit.wikimedia.org/r/142698 [19:58:51] (03PS4) 10Jdlrobson: Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 [19:58:54] (03CR) 10Ottomata: [C: 032 V: 032] Now using CDH5 for role::analytics [vagrant] - 10https://gerrit.wikimedia.org/r/142698 (owner: 10Ottomata) [19:59:55] (03PS1) 10Hashar: Add default php entry point [extensions/Oversight] (REL1_23) - 10https://gerrit.wikimedia.org/r/143092 [20:00:05] (03PS1) 10Hashar: Add default php entry point [extensions/PoolCounter] (REL1_23) - 10https://gerrit.wikimedia.org/r/143093 [20:01:10] (03CR) 10Jdlrobson: [C: 032] Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 (owner: 10Jdlrobson) [20:01:32] (03Merged) 10jenkins-bot: Hygiene: Componentise interactive.less [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143071 (owner: 10Jdlrobson) [20:01:35] (03CR) 10Hashar: "Rationale: will need tests run on REL1_23 which is the LTS. No point in back porting to previous releases though since we will not run all" [extensions/Oversight] (REL1_23) - 10https://gerrit.wikimedia.org/r/143092 (owner: 10Hashar) [20:01:41] (03CR) 10Hashar: "Rationale: will need tests run on REL1_23 which is the LTS. No point in back porting to previous releases though since we will not run all" [extensions/PoolCounter] (REL1_23) - 10https://gerrit.wikimedia.org/r/143093 (owner: 10Hashar) [20:01:45] (03CR) 10Kunalgrover05: "Actually, a string is converted to a title in this case." [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [20:02:28] (03CR) 10Chad: "Indeed, I think we're all on the same page as to the benefits here. I'm just nitpicking over the commit summary we should use :)" [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [20:04:47] (03CR) 10Hashar: "Great! I am not very creative with commit summary, will be happy to use something different such as:" [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [20:07:13] (03CR) 10Jdlrobson: [C: 032] "\o/" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 (owner: 10Bsitu) [20:07:35] (03Merged) 10jenkins-bot: Get rid of termsOfuse hook and helper function [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142626 (owner: 10Bsitu) [20:07:56] (03CR) 10Jdlrobson: [C: 032] Add more flow terms of use message and remove Flow hook [extensions/WikimediaMessages] - 10https://gerrit.wikimedia.org/r/142628 (owner: 10Bsitu) [20:08:06] (03Merged) 10jenkins-bot: Add more flow terms of use message and remove Flow hook [extensions/WikimediaMessages] - 10https://gerrit.wikimedia.org/r/142628 (owner: 10Bsitu) [20:10:25] (03CR) 10Legoktm: [C: 031] "Looks fine, but are we going to have to do this for every extension that registers a GetPreferences hook?" [extensions/BetaFeatures] - 10https://gerrit.wikimedia.org/r/143042 (https://bugzilla.wikimedia.org/67138) (owner: 10Hashar) [20:10:53] legoktm: Apparently. :-( [20:11:11] (03CR) 10Legoktm: [C: 032 V: 032] Add default php entry point [extensions/Oversight] (REL1_23) - 10https://gerrit.wikimedia.org/r/143092 (owner: 10Hashar) [20:11:18] (03CR) 10Legoktm: [C: 032] Add default php entry point [extensions/PoolCounter] (REL1_23) - 10https://gerrit.wikimedia.org/r/143093 (owner: 10Hashar) [20:11:20] (03Merged) 10jenkins-bot: Add default php entry point [extensions/PoolCounter] (REL1_23) - 10https://gerrit.wikimedia.org/r/143093 (owner: 10Hashar) [20:16:53] 3MediaWiki / 3General/Unknown: JS injection vulnerability in Html::element()? - 10https://bugzilla.wikimedia.org/64183 (10Chris Steipp) a:5security>3None [20:21:12] (03CR) 10EBernhardson: [C: 032] Add action object for no-js support [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143082 (owner: 10Bsitu) [20:21:33] (03Merged) 10jenkins-bot: Add action object for no-js support [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143082 (owner: 10Bsitu) [20:25:49] (03CR) 10Bartosz Dziewoński: [C: 032] qunit.completenessTest: Unbreak regular functions with static methods [core] - 10https://gerrit.wikimedia.org/r/140651 (owner: 10Krinkle) [20:26:08] (03CR) 10Bartosz Dziewoński: [C: 032] qunit.completenessTest: Suppress mw.log.warn in walkTheObject [core] - 10https://gerrit.wikimedia.org/r/140652 (owner: 10Krinkle) [20:26:18] (03CR) 10Bartosz Dziewoński: [C: 032] qunit.completenessTest: Ignore mw.loader.moduleRegistry [core] - 10https://gerrit.wikimedia.org/r/140653 (owner: 10Krinkle) [20:26:36] what's the worst that could happen? [20:27:45] (03CR) 10Chad: [C: 04-1] Configure cache warmers (036 comments) [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) (owner: 10Manybubbles) [20:28:47] every time i hear 'cache warmers', all i can think about is hand warmers [20:29:06] and i hear it all the time recently. stop it, you guys [20:30:16] (03Merged) 10jenkins-bot: qunit.completenessTest: Unbreak regular functions with static methods [core] - 10https://gerrit.wikimedia.org/r/140651 (owner: 10Krinkle) [20:30:41] (03Merged) 10jenkins-bot: qunit.completenessTest: Suppress mw.log.warn in walkTheObject [core] - 10https://gerrit.wikimedia.org/r/140652 (owner: 10Krinkle) [20:30:54] (03Merged) 10jenkins-bot: qunit.completenessTest: Ignore mw.loader.moduleRegistry [core] - 10https://gerrit.wikimedia.org/r/140653 (owner: 10Krinkle) [20:31:14] MatmaRex: I guess they're related [20:31:19] more related is house warming [20:31:29] just initialising all the variables, warming it all up, testing it all [20:31:54] heh [20:31:56] A house warming isn't a success without also stress testing the place [20:32:25] (03CR) 10TheDJ: "It's not that special. For instance Special:UserLogin also uses the autofocus attribute." [core] - 10https://gerrit.wikimedia.org/r/129944 (owner: 10Umherirrender) [20:35:13] (03CR) 10Manybubbles: "Fixing. All the "done" comments I'm just doing locally and will push soon." (036 comments) [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) (owner: 10Manybubbles) [20:36:48] (03PS1) 10Jdlrobson: Hygiene: Make Flow mixins and colors globals [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143113 [20:36:51] (03PS1) 10Jdlrobson: Hygiene: Add todo notes to helpers, kill misc code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143114 [20:41:23] (03CR) 10Anomie: [C: 04-1] "Ugh, no. Do what I suggested on I74482d5c instead: have a backend method that both the special page and the API can call." [core] - 10https://gerrit.wikimedia.org/r/143049 (owner: 10Kunalgrover05) [20:41:47] (03CR) 10Anomie: "> Is the way it is done here a bad idea? https://gerrit.wikimedia.org/r/#/c/143049/" [core] - 10https://gerrit.wikimedia.org/r/143025 (owner: 10Kunalgrover05) [20:42:13] (03CR) 10Nikerabbit: [C: 04-1] "I don't like the array thing. The documentation of that variable currently claims it is a bool and a string at the same time, but it is us" [core] - 10https://gerrit.wikimedia.org/r/137915 (owner: 10Kunalgrover05) [20:45:14] (03CR) 10Rillke: "Was not intentionally. I guess it happens due to VirtualBox shared folder-magic." [core] - 10https://gerrit.wikimedia.org/r/135714 (https://bugzilla.wikimedia.org/65757) (owner: 10Rillke) [20:45:54] 3MediaWiki extensions / 3CodeEditor: Add support for mobile - 10https://bugzilla.wikimedia.org/67328 (10paladox2015) 3UNCO p:3Unprio s:3normal a:3None Hi could so one add codes for touch screens from https://github.com/ajaxorg/ace/tree/touch_handler into ace.js because it does not work very well and... [20:46:36] 3MediaWiki extensions / 3CirrusSearch: Malayalam chillu characters in the query doesn't appear bold in results. - 10https://bugzilla.wikimedia.org/60009#c5 (10Chad H.) Still a problem in CirrusSearch, moving to there. [20:47:21] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c42 (10Sam Reed (reedy)) -shell, this needs reviewing for deployment etc... [20:47:30] (03PS1) 10Bsitu: Fix incorrect param & add 'topicTitle' to summary API output [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143148 [20:47:33] (03CR) 10Kunalgrover05: "The code was there for caching, and the array is required for unit tests. Using the same variables for DB here." [core] - 10https://gerrit.wikimedia.org/r/137915 (owner: 10Kunalgrover05) [20:48:21] (03PS2) 10Bsitu: Fix incorrect param & add 'topicTitle' to summary API output [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143148 [20:48:42] greg-g: Have you seen https://bugzilla.wikimedia.org/show_bug.cgi?id=13712 ? [20:48:56] Think this might need some triaging [20:49:51] (03PS2) 10Manybubbles: Configure cache warmers [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) [20:49:53] (03CR) 10Swalling: "I think this patch would be easier to review if it was clear what the intended designs were for the new button styles. Are there design ex" [core] - 10https://gerrit.wikimedia.org/r/123804 (owner: 10SG) [20:50:09] (03CR) 10Brian Wolff: Handle invalid language code gracefully in Language::fetchLanguageNames (031 comment) [core] - 10https://gerrit.wikimedia.org/r/142974 (https://bugzilla.wikimedia.org/60629) (owner: 10Brian Wolff) [20:50:31] (03PS48) 10CSteipp: Allow for global renaming of users [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) (owner: 10Legoktm) [20:50:51] 3Wikimedia / 3lucene-search-2: Article pages made from index pages not listed in wikisource search results. - 10https://bugzilla.wikimedia.org/43681#c5 (10Chad H.) The issue reported in the initial comment 0 seems to be fixed for en.wikisource using Cirrus. I'm less sure about mlwiki. [20:51:47] (03PS1) 10Aaron Schulz: Various cleanups and fixes [services/jobrunner] - 10https://gerrit.wikimedia.org/r/143149 [20:51:52] (03PS2) 10Brian Wolff: Handle invalid language code gracefully in Language::fetchLanguageNames [core] - 10https://gerrit.wikimedia.org/r/142974 (https://bugzilla.wikimedia.org/60629) [20:52:37] (03PS1) 10Jack Phoenix: Commented out the "share via email" link for the time being. [skins/BlueSky] - 10https://gerrit.wikimedia.org/r/143150 [20:52:45] Reedy: /me looks [20:52:58] huh, uh, no [20:53:08] (03CR) 10Jack Phoenix: [C: 032 V: 032] Commented out the "share via email" link for the time being. [skins/BlueSky] - 10https://gerrit.wikimedia.org/r/143150 (owner: 10Jack Phoenix) [20:53:11] Reedy: will do post-meeting [20:53:27] I think we need to clarify what needs doing going forward [20:53:31] * greg-g nods [20:53:32] I think it might be a deploy of 2 extensions [20:53:40] :/ [20:53:51] The Josa extension is a mess though [20:55:36] (03CR) 10Bsitu: [C: 032] Fix constructor typo [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143076 (owner: 10EBernhardson) [20:55:54] (03Merged) 10jenkins-bot: Fix constructor typo [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143076 (owner: 10EBernhardson) [20:56:23] I've heard rumors that there has been work on a viewer for historical page revisions, where the templates are pulled using their historical contents and not the newer versions. [20:56:36] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c43 (10Bawolff (Brian Wolff)) This could also easily be accomplished with lua, no extension required [20:57:08] awight: There's a guy working on something called the momento extension [20:57:18] bawolff: aha, thanks for the lead [20:57:32] awight: As it stands, very unlikely to get deployed to Wikimedia, but the guy working on it is very nice [20:57:43] memento [20:58:11] right. That makes much more sense than momento :) [20:58:52] my movie knowledge is already taxed [20:59:06] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c44 (10Sam Reed (reedy)) Can someone clarify what actually needs doing here? Do we want both hanp and josa installing? Just Josa? One into core? Both into core? Either way, Jos... [20:59:51] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c45 (10Sam Reed (reedy)) (In reply to Bawolff (Brian Wolff) from comment #43) > This could also easily be accomplished with lua, no extension required (In reply to Chong-Dae Par... [20:59:51] 3MediaWiki-Vagrant: VisualEditor fails to provision with rbenv error - 10https://bugzilla.wikimedia.org/66764#c5 (10Dan Duvall) Can you verify the working commit of VE and its submodules? i.e. Please provide the output of `git status`, `git show-ref HEAD`, and `git submodule` under the mediawiki/extensions/Vis... [21:01:22] 3MediaWiki extensions / 3GlobalBlocking: GlobalBlocking is lacking a database installer/updater - 10https://bugzilla.wikimedia.org/67300 (10Antoine "hashar" Musso) [21:10:35] (03PS1) 10Reedy: GlobalBlocking is lacking a database installer/updater [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143154 (https://bugzilla.wikimedia.org/67300) [21:10:39] hashar: ^^ [21:10:42] (03CR) 10jenkins-bot: [V: 04-1] GlobalBlocking is lacking a database installer/updater [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143154 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:10:56] Reedy: was about to ask you :-D [21:11:08] oh jenkins, I hate you [21:11:11] thedj, around? [21:11:28] Reedy: yeah AUTOINCREMENT doesn't work for sqlite :/ [21:11:40] haha [21:11:43] I should really get a mysql backend in addition [21:11:50] let me make it mysql only for this stage [21:11:58] well Jenkins uses sqlite [21:12:13] Right [21:12:17] But that's a different task ;) [21:13:02] is there a way that i could convince someone to run a one-time manual update of a special page that currently has updates disabled on enwiki? [[Special:MostTranscludedPages]] specifically [21:13:20] (03PS49) 10Legoktm: Allow for global renaming of users [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/92468 (https://bugzilla.wikimedia.org/14862) [21:13:36] I thought all those got un-disabled [21:13:58] (03PS2) 10Reedy: GlobalBlocking is lacking a database installer/updater [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143154 (https://bugzilla.wikimedia.org/67300) [21:14:05] " [21:14:05] Updates for this page are currently disabled. Data here will not presently be refreshed. [21:14:05] " [21:14:19] Smaller wikis? [21:14:19] Nemo_bis: ^^ [21:15:13] The special page "lies". [21:15:19] jackmcbarn: Its supposed to be run on the 13th of every month [21:15:32] That line only means it's cached, MediaWiki can't know about crontabs. [21:15:44] it hasn't ran since 21 april [21:15:56] (or is that also a lie?) [21:16:05] !git 770bc645 [21:16:05] MediaWiki development is using git, a distributed source control manager, starting on March 21st, 2012; details: https://www.mediawiki.org/wiki/Git_happens Instructions for using it: https://www.mediawiki.org/wiki/Git/Workflow To get an account: https://www.mediawiki.org/wiki/Project:Labsconsole_accounts [21:16:09] !gerrit 770bc645 [21:16:09] https://gerrit.wikimedia.org/r/#q,770bc645,n,z [21:16:14] (no it isn't) [21:16:21] hashar: Seriously. AUTOINCREMENT vs AUTO_INCREMENT? [21:17:12] (03PS5) 10Bartosz Dziewoński: Add SpecialPagesWithProp::prefixSearchSubpages [core] - 10https://gerrit.wikimedia.org/r/139455 (owner: 10Umherirrender) [21:17:22] 3Wikimedia / 3lucene-search-2: Valid Page name resulting in backend search error - 10https://bugzilla.wikimedia.org/66259#c10 (10Adam Hyland) (In reply to Chad H. from comment #9) > It's an issue the old search is having with punctuation in search queries. > It's been like this for weeks (months?) now and I'... [21:17:34] bawolff: according to that file, the one i want only runs in april and october [21:18:35] Reedy: no it just does not exist iirc [21:18:48] Reedy: so you do a int primary key, in sqlite that autoincrements [21:19:10] https://www.sqlite.org/autoinc.html [21:19:25] oh [21:19:36] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c46 (10Nemo) Only Josa, not Hanp. Modules are not very portable, but it's ko.wiki's call whether they're satisfied or not. Core or not doesn't matter so much, the code refactorin... [21:19:36] https://www.sqlite.org/lang_createtable.html [21:19:59] It doesn't like the PRIMARY KEY def below either, does it? [21:20:23] abusefilter has af_id BIGINT unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT, [21:20:38] 3Wikimedia / 3SSL related: Rename wikis with multiple subdomains - 10https://bugzilla.wikimedia.org/31335#c13 (10Casey Brown) 5RESO/FIX>3REOP The Norwegian chapter's board site looks to be broken after this bug was fixed, see and 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c4 (10Technical 13) This would allow template editors to edit templates and modules that happen to be cascade protected (because they are transcluded on a c... [21:21:06] jackmcbarn: oh, I was looking at the line for MostLinkedPages. whoops [21:21:21] 3MediaWiki / 3Page editing: Creating a Draft article should automatically add {{Draft article}} - 10https://bugzilla.wikimedia.org/67207#c2 (10Sumana Harihareswara) Steven, you are totally right. Thank you and thanks to the team for already thinking through this so thoroughly! If I want to follow up further... [21:21:37] who would be the best person for me to bug about that? [21:21:57] (03CR) 10Bartosz Dziewoński: [C: 032] Add SpecialPagesWithProp::prefixSearchSubpages [core] - 10https://gerrit.wikimedia.org/r/139455 (owner: 10Umherirrender) [21:21:58] Reedy: ah some old change I made https://gerrit.wikimedia.org/r/#/c/43828/ [21:22:22] I'm making a changeset for sqlite... [21:22:36] 3Wikimedia / 3General/Unknown: Creating a Draft article should automatically add {{Draft article}} - 10https://bugzilla.wikimedia.org/67207 (10Kunal Mehta (Legoktm)) [21:22:58] jackmcbarn: Well Nemo_bis was the one who pushed to make sure that special pages were updated at all. He probably knows best [21:23:10] Reedy: beside that bug, there is a whole lot bugs that we have to fix to allow running tests with all extensions [21:23:19] Reedy: we should talk about it together tomorrow :D [21:24:21] 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c5 (10Jackmcbarn) The whole point of cascading protection is its "collateral damage". Setting this on Template, Module, or any other namespace that isn't re... [21:24:54] (03Merged) 10jenkins-bot: Add SpecialPagesWithProp::prefixSearchSubpages [core] - 10https://gerrit.wikimedia.org/r/139455 (owner: 10Umherirrender) [21:25:11] jackmcbarn: one thing you can do is checking on ganglia how the DB servers load was around the time the query should have run [21:25:37] 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c6 (10Technical 13) (In reply to Jackmcbarn from comment #5) > The whole point of cascading protection is its "collateral damage". Setting > this on Templat... [21:25:48] If it went on for very long, it might have been caught by the query killer. [21:25:53] (03PS1) 10Reedy: SQLite support? [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 [21:25:58] (03CR) 10jenkins-bot: [V: 04-1] SQLite support? [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 (owner: 10Reedy) [21:26:09] And anyone with access to terbium can look up the logs. [21:26:21] (Plus, this discussion should be on #wikimedia-tech.) [21:26:49] CRATE INDEX [21:26:51] 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c7 (10Jackmcbarn) If you want that, you do it by letting that group edit cascade-protected pages, not by turning off cascading protection for everyone (whic... [21:27:11] (03PS2) 10Reedy: SQLite support? [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 [21:27:21] 3Wikimedia / 3lucene-search-2: CJKFilter wrongly tokenize a CJK and non-CJK mixed string. - 10https://bugzilla.wikimedia.org/26997#c10 (10Chad H.) 5NEW>3RESO/WON I don't see this issue in Cirrus/Elastic. Marking WONTFIX since lsearchd is end of life but adding cirrus-fixed tag. [21:28:36] hashar: hashar_ I think that's fixed up... [21:28:36] (03PS1) 10Chad: PageTextBuilder: Remove unused function [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143160 [21:28:59] Nemo_bis: I was looking at the wrong line earlier. That query is only scheduled to run on april 21, and october 21, so its working fine. jackmcbarn just wants it to be run more often [21:29:06] 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c8 (10Technical 13) (In reply to Jackmcbarn from comment #7) > If you want that, you do it by letting that group edit cascade-protected > pages, not by turn... [21:29:15] Reedy: not yet https://integration.wikimedia.org/ci/job/mwext-GlobalBlocking-testextensions-master/2/console :D [21:29:24] bawolff: not more often, just a one-time extra run because the query changed [21:29:44] bawolff: yes, we just concluded so on #wikimedia-tech as well [21:29:44] Oh right, I forgot about that [21:29:58] Ah. I should be in that channel then [21:31:18] jackmcbarn: What's the underlying name for MostTranscludedPages? [21:31:28] (03PS1) 10Amire80: Resolve redirects in newSection in mediawiki.api.edit [core] - 10https://gerrit.wikimedia.org/r/143163 [21:31:37] (03CR) 10Manybubbles: [C: 032] PageTextBuilder: Remove unused function [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143160 (owner: 10Chad) [21:31:55] hashar: https://gerrit.wikimedia.org/r/#/c/143158/ PS2 successes [21:32:51] (03Merged) 10jenkins-bot: PageTextBuilder: Remove unused function [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143160 (owner: 10Chad) [21:33:53] (03CR) 10Ori.livneh: [C: 032 V: 032] Various cleanups and fixes [services/jobrunner] - 10https://gerrit.wikimedia.org/r/143149 (owner: 10Aaron Schulz) [21:34:12] (03PS1) 10EBernhardson: Reduce the number of extra Title objects generated [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143164 [21:38:02] hashar_: It works MERGE MERGE MERGE ;) [21:38:52] 3MediaWiki / 3General/Unknown: Add a $wgNamespaceCascade similar to the deprecated $wgEnableCascadingProtection - 10https://bugzilla.wikimedia.org/54081#c9 (10Brad Jorsch) Nothing much has changed here. If you don't want things cascade-protected, then don't use cascading protection. There's little point in r... [21:41:36] (03CR) 10Bartosz Dziewoński: [C: 04-1] "Doesn't work for me. http://i.imgur.com/Ujf7Xmr.png The "Go" is visible, and the entire search box area is covered by the button. (This is" [core] - 10https://gerrit.wikimedia.org/r/127371 (owner: 10Gerrit Patch Uploader) [21:43:19] (03PS1) 10Bartosz Dziewoński: mediawiki.feedback: Don't use deprecated calling convention for mw.Api#newSection [core] - 10https://gerrit.wikimedia.org/r/143166 [21:43:32] Reedy: does it work on mysql? :-D [21:45:29] (03CR) 10Reedy: "mysql> CREATE TABLE /*$wgDBprefix*/globalblocks (" [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 (owner: 10Reedy) [21:45:36] hashar_: Yup :) [21:45:56] (03CR) 10Hashar: [C: 032] "You are awesome." [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143154 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:46:09] (03Merged) 10jenkins-bot: GlobalBlocking is lacking a database installer/updater [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143154 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:46:59] (03PS3) 10Hashar: Update sql schema for sqlite [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:47:12] Reedy: I have updated commit message https://gerrit.wikimedia.org/r/#/c/143158/ [21:47:20] Reedy: confirm and I +2 :] [21:47:32] Haha, yeah [21:47:38] Mine was a bit useless :P [21:47:52] merging it :] [21:47:55] (03CR) 10Hashar: [C: 032] Update sql schema for sqlite [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:48:01] (03Merged) 10jenkins-bot: Update sql schema for sqlite [extensions/GlobalBlocking] - 10https://gerrit.wikimedia.org/r/143158 (https://bugzilla.wikimedia.org/67300) (owner: 10Reedy) [21:48:04] Reedy: ping me tomorrow [21:48:15] oook [21:48:19] Reedy: we have a ton of such issues that prevents running tests with all wmf extensions enabled [21:48:28] I got an experimental job in jenkins to test it out https://integration.wikimedia.org/ci/job/mediawiki-core-extensions-integration/ [21:48:39] 3MediaWiki-Vagrant / 3labs-vagrant: labs-vagrant: centralauth role doesn't work, tries to load from wmftest.net - 10https://bugzilla.wikimedia.org/67331 (10Kunal Mehta (Legoktm)) 3NEW p:3Unprio s:3normal a:3None mw.config.get( 'wgCentralAuthCheckLoggedInURL' ); "//login.wiki.local.wmftest.net:/wiki/... [21:48:42] will be able to use it to validate HHVM hopefully [21:49:42] Reedy: https://integration.wikimedia.org/ci/job/mediawiki-core-extensions-integration/50/consoleFull :-D [21:53:24] hashar_: Did you see the transaction spam? [21:53:48] (03PS2) 10EBernhardson: Reduce the number of extra Title objects generated [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143164 [21:54:33] 21:52:39 ..........................................EEEEEEEEEEEEEEEEEEE 2074 / 2820 ( 73%) [21:54:33] 21:52:42 EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE 2135 / 2820 ( 75%) [21:54:33] 21:52:43 EEEEEEEEEEEEEEEEEEEEEEEEEEEEEE............................... 2196 / 2820 ( 77%) [21:55:23] Jeees that's noisy :) [21:55:48] yeah there is bunch of errors [21:56:03] would be nice to have the tests suite to run entirely first though [21:56:36] Reedy: in this case, there is no globalblocking database :D [21:57:23] (03PS1) 10Bartosz Dziewoński: mediawiki.feedback: Resolve redirects when posting [core] - 10https://gerrit.wikimedia.org/r/143171 [21:57:26] but that is all because of the global blocking hooks being triggered by some other extension when checking permissions [21:57:32] (03CR) 10Jforrester: [C: 032] mediawiki.feedback: Don't use deprecated calling convention for mw.Api#newSection [core] - 10https://gerrit.wikimedia.org/r/143166 (owner: 10Bartosz Dziewoński) [22:02:02] (03PS1) 10Jack Phoenix: New ResourceLoader module for external links to facilitate the creation of third-party skins. [core] - 10https://gerrit.wikimedia.org/r/143173 [22:02:17] (03Abandoned) 10Jack Phoenix: [WIP] New ResourceLoader module for external links to facilitate the creation of third-party skins. [core] - 10https://gerrit.wikimedia.org/r/137250 (owner: 10Jack Phoenix) [22:02:23] (03Merged) 10jenkins-bot: mediawiki.feedback: Don't use deprecated calling convention for mw.Api#newSection [core] - 10https://gerrit.wikimedia.org/r/143166 (owner: 10Bartosz Dziewoński) [22:04:52] Reedy: I am out to bed. Talk to you tomorrow :-] [22:06:51] 3Wikimedia / 3Extension setup: Install Josa extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/13712#c47 (10Revi) (In reply to Sam Reed (reedy) from comment #45) > (In reply to Bawolff (Brian Wolff) from comment #43) > > This could also easily be accomplished with lua, no extens... [22:08:26] (03PS1) 10Cmcmahon: QA: port PDF test from /qa/browsertests repo [extensions/PdfHandler] - 10https://gerrit.wikimedia.org/r/143175 [22:11:04] (03CR) 10Catrope: [C: 032] If there's no main block on the page, show one automatically below the content [extensions/Cite] - 10https://gerrit.wikimedia.org/r/141583 (https://bugzilla.wikimedia.org/66860) (owner: 10Alex Monk) [22:11:13] (03Merged) 10jenkins-bot: If there's no main block on the page, show one automatically below the content [extensions/Cite] - 10https://gerrit.wikimedia.org/r/141583 (https://bugzilla.wikimedia.org/66860) (owner: 10Alex Monk) [22:13:23] (03CR) 10Daniel Friesen: "Previous discussion:" [core] - 10https://gerrit.wikimedia.org/r/143173 (owner: 10Jack Phoenix) [22:14:57] (03CR) 10Bartosz Dziewoński: "I don't like that this makes it impossible to choose not to follow redirects. Different approach: https://gerrit.wikimedia.org/r/143171" [core] - 10https://gerrit.wikimedia.org/r/143163 (owner: 10Amire80) [22:15:39] (03PS1) 10EBernhardson: Remove unused methods in TopicBlock [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143177 [22:16:29] (03CR) 10Kaldari: [C: 04-1] New hook, AfterParserFetchFileAndTitle (031 comment) [core] - 10https://gerrit.wikimedia.org/r/140256 (https://bugzilla.wikimedia.org/66510) (owner: 10MaxSem) [22:19:13] (03PS1) 10EBernhardson: Dont include empty result for moderated revisions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143178 [22:20:42] (03PS1) 10Bsitu: Some more fix to flowActions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143179 [22:21:22] 3MediaWiki extensions / 3Cite: Cite: If there's no block on the page, show one automatically below the content rather than showing an error - 10https://bugzilla.wikimedia.org/66860 (10James Forrester) 5PATC>3RESO/FIX [22:26:53] 3MediaWiki extensions / 3GlobalBlocking: GlobalBlocking is lacking a database installer/updater - 10https://bugzilla.wikimedia.org/67300#c6 (10Antoine "hashar" Musso) 5PATC>3RESO/FIX a:3Sam Reed (reedy) Fixed by Reedy. The tests do not run properly because they lookup in a non existent database though.... [22:27:29] (03PS2) 10Bsitu: Some more fix to flowActions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143179 [22:34:18] (03CR) 10Worden.lee: "So what's the situation with this patchset? Do I have to rewrite it to reduce id queries in order to move forward? Do other reviewers ha" [core] - 10https://gerrit.wikimedia.org/r/67173 (https://bugzilla.wikimedia.org/48581) (owner: 10Worden.lee) [22:37:28] (03PS1) 10Isarra: Add line to make it actually work [extensions/SkinPerPage] - 10https://gerrit.wikimedia.org/r/143181 [22:41:29] (03PS1) 10EBernhardson: Normalize uuid's to lowercase [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143182 [22:42:48] (03CR) 10Legoktm: [C: 04-1] Add line to make it actually work (031 comment) [extensions/SkinPerPage] - 10https://gerrit.wikimedia.org/r/143181 (owner: 10Isarra) [22:43:18] (03PS2) 10Jdlrobson: Hygiene: Remove unused methods in TopicBlock [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143177 (owner: 10EBernhardson) [22:43:22] (03CR) 10Jdlrobson: [C: 032] Hygiene: Remove unused methods in TopicBlock [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143177 (owner: 10EBernhardson) [22:43:25] (03PS1) 10EBernhardson: Rename flow-board to flow-workflow [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143183 [22:43:36] 3MediaWiki extensions / 3Cite: Cite: If there's no block on the page, insert the wikitext for one automatically in the right place - 10https://bugzilla.wikimedia.org/30763#c3 (10James Forrester) p:5Normal>3Low Bug 66860 means that this a references list now /shown/ if there is no who do I complain to to add channels to wikibugs announcements? [22:45:13] greg-g: submit a patch https://github.com/wikimedia/labs-tools-pywikibugs [22:45:19] greg-g: Or I can. [22:45:34] greg-g: What channel do you want what bugs to go to? [22:45:45] (03CR) 10Jdlrobson: [C: 031] "Will let someone else judge this. Not 100% sure what is going on with the static variable." (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143164 (owner: 10EBernhardson) [22:45:54] 3MediaWiki extensions / 3Babel: Babel extension categories - 10https://bugzilla.wikimedia.org/67334 (10Metrónomo) 3UNCO p:3Unprio s:3minor a:3None Can the templates of Babel extension categorize only in user spaces? (ns:2 or ns:3). See, i.e. https://es.wikipedia.org/wiki/Wikipedia:Babel [22:47:19] (03CR) 10Jdlrobson: [C: 032] Dont include empty result for moderated revisions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143178 (owner: 10EBernhardson) [22:47:39] (03Merged) 10jenkins-bot: Dont include empty result for moderated revisions [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143178 (owner: 10EBernhardson) [22:48:03] (03CR) 10Jdlrobson: "http://localhost:8080/w/index.php?title=Talk:Flow_Qa is different from http://localhost:8080/w/index.php?title=Talk:Flow_QA ... how will t" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143182 (owner: 10EBernhardson) [22:49:03] (03PS4) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [22:49:26] (03CR) 10Jdlrobson: [C: 04-1] "board-workflow or flow-board ?" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143183 (owner: 10EBernhardson) [22:51:45] (03CR) 10EBernhardson: "This won't affect anything there, but it does affect the incoming versions:" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143182 (owner: 10EBernhardson) [22:52:53] (03CR) 10jenkins-bot: [V: 04-1] Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [22:52:55] (03PS2) 10EBernhardson: Rename flow-board to flow-workflow [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143183 [22:53:39] (03PS5) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [22:54:03] James_F: Wikimedia Labs / deployment-prep to go to -qa [22:54:07] (03PS4) 10Jdlrobson: Split WorkflowLoader into multiple classes [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142399 (owner: 10EBernhardson) [22:54:19] James_F: I'll look later, need to catch a bus now [22:54:40] (03PS1) 10Iowajason: Initial delivery of new extension including revisions for I18N suggested on previous push. Had gerrit problems with amending so new branch consolidates both. [extensions/WebCache] - 10https://gerrit.wikimedia.org/r/143185 [22:54:47] (03CR) 10EBernhardson: "Updated commit message, it was wrong. The original parameter that is changing is 'board-workflow' into 'flow-workflow'" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143183 (owner: 10EBernhardson) [22:55:47] (03CR) 10EBernhardson: "That static variable in Templating is because the class is going away , not worth working out a full solution so it can be deleted imo." (031 comment) [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143164 (owner: 10EBernhardson) [22:56:49] greg-g: OK, I'll do. [22:56:51] (03PS1) 10EBernhardson: [WIP] Enable Topic namespace [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143186 [22:57:28] (03CR) 10jenkins-bot: [V: 04-1] Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [22:58:48] (03PS3) 10EBernhardson: Reduce the number of extra Title objects generated [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143164 [22:58:56] (03PS2) 10Chad: WIP: Begin indexing file metadata [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/142692 [22:58:58] (03CR) 10jenkins-bot: [V: 04-1] WIP: Begin indexing file metadata [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/142692 (owner: 10Chad) [22:59:19] (03PS3) 10Chad: WIP: Begin indexing file metadata [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/142692 [23:00:57] (03PS2) 10Isarra: Update to use setSkin and ignore capitalisation [extensions/SkinPerPage] - 10https://gerrit.wikimedia.org/r/143181 [23:04:00] Reedy: Mostlinkedtemplates/MostlinkedTemplates [23:04:00] [23:04:16] It's been running since I !log'd it ;) [23:04:24] got 2000 rows in 1h 28m 7.41s [23:04:26] oh, it's done [23:04:49] Reedy: thanks, it worked as expected [23:06:09] (03CR) 10Legoktm: [C: 032] Update to use setSkin and ignore capitalisation [extensions/SkinPerPage] - 10https://gerrit.wikimedia.org/r/143181 (owner: 10Isarra) [23:06:15] (03Merged) 10jenkins-bot: Update to use setSkin and ignore capitalisation [extensions/SkinPerPage] - 10https://gerrit.wikimedia.org/r/143181 (owner: 10Isarra) [23:07:18] (03CR) 10Chad: [C: 032] Configure cache warmers [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) (owner: 10Manybubbles) [23:07:28] (03Merged) 10jenkins-bot: Configure cache warmers [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/143089 (https://bugzilla.wikimedia.org/67094) (owner: 10Manybubbles) [23:08:35] (03CR) 10Chad: "Brian, can you take a look at the metadata bit and make sure I'm doing things right there?" [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/142692 (owner: 10Chad) [23:12:04] (03PS1) 10CSteipp: Add cookie path for CentralAuth cookies [extensions/CentralAuth] - 10https://gerrit.wikimedia.org/r/143192 [23:15:33] (03CR) 10EBernhardson: "iirc shahyar added this helper specifically to fix issues where whitespace matters, i have to assume if hes using it there then the white" [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142599 (owner: 10Jdlrobson) [23:16:21] (03CR) 10SG: [C: 04-2] "Precisely." [extensions/Flow] - 10https://gerrit.wikimedia.org/r/142599 (owner: 10Jdlrobson) [23:20:10] shahyar: so what's the deal with that whitespace? Can't you just use basic HTML? [23:20:30] < I mean this does the same thing no? [23:20:56] yeah, but we get to keep the line breaks and keep the templates neater this way [23:21:14] (03PS6) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:24:56] (03CR) 10jenkins-bot: [V: 04-1] Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [23:25:36] (03PS2) 10Chad: Default entry point StrategyWiki [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [23:25:40] (03CR) 10EBernhardson: [C: 032] Hygiene: Make Flow mixins and colors globals [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143113 (owner: 10Jdlrobson) [23:25:51] (03PS3) 10Chad: Default entry point for StrategyWiki [extensions/StrategyWiki] - 10https://gerrit.wikimedia.org/r/143005 (owner: 10Hashar) [23:26:01] (03Merged) 10jenkins-bot: Hygiene: Make Flow mixins and colors globals [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143113 (owner: 10Jdlrobson) [23:26:49] (03PS2) 10EBernhardson: Hygiene: Add todo notes to helpers, kill misc code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143114 (owner: 10Jdlrobson) [23:28:26] (03CR) 10Mattflaschen: mw-ui-button: Revamp the LESS to be simpler, and improve cross-browser support (031 comment) [core] - 10https://gerrit.wikimedia.org/r/123804 (owner: 10SG) [23:30:55] (03PS7) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:31:21] 3MediaWiki-Vagrant: VisualEditor fails to provision with rbenv error - 10https://bugzilla.wikimedia.org/66764#c6 (10Matthew Flaschen) Sure. matthew@matthew-t520: ~/Code/Wikimedia/vagrant-ruby-visualeditor/mediawiki/extensions/VisualEditor (master|✔)% git status # On branch master nothing to commit (working di... [23:31:23] 3MediaWiki-Vagrant: Add kss role to vagrant - 10https://bugzilla.wikimedia.org/67336 (10spage) 3NEW p:3Unprio s:3enhanc a:3Ori Livneh We use kss-node to build our living style guide, e.g. http://tools.wmflabs.org/styleguide/desktop/ cd /vagrant/mediawiki/docs/kss && make It would be nice to have a ro... [23:31:35] (03PS8) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:32:00] * AaronSchulz debugs [23:32:22] (03CR) 10EBernhardson: [C: 032] Hygiene: Add todo notes to helpers, kill misc code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143114 (owner: 10Jdlrobson) [23:33:39] (03Merged) 10jenkins-bot: Hygiene: Add todo notes to helpers, kill misc code [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143114 (owner: 10Jdlrobson) [23:34:38] 3MediaWiki / 3General/Unknown: interwiki links not working at office.wikimedia.org - 10https://bugzilla.wikimedia.org/67337 (10Anna Koval) 3NEW p:3Unprio s:3normal a:3None please see: https://office.wikimedia.org/wiki/User:AKoval_(WMF)/Sandbox does not work: [[outreach:Education/About/WEP_Coop]] d... [23:36:46] (03CR) 10Tim Starling: [C: 031] "I think "version 2 or later" is accurate, since part of the code was ported from MediaWiki, which is also "version 2 or later". I personal" [php/wikidiff2] - 10https://gerrit.wikimedia.org/r/142582 (owner: 10Faidon Liambotis) [23:37:33] (03PS9) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:38:23] 3MediaWiki / 3User preferences: Special:Preferences buttons Save/Restore all default settings (in all sections) is confusing - 10https://bugzilla.wikimedia.org/67338 (10WhatamIdoing) 3NEW p:3Unprio s:3minor a:3None This is related to bug 18961 and might be solved by some version of the idea proposed... [23:40:51] 3MediaWiki / 3Skin and page rendering: Use mediawiki.ui Constructive style button for [Save] in preferences - 10https://bugzilla.wikimedia.org/65317#c1 (10WhatamIdoing) I like the idea of right-aligning the controls and swapping the order. I'm uncertain about "Update Preferences". Perhaps "Save changes"?... [23:41:06] 3MediaWiki / 3User preferences: Special:Preferences buttons Save/Restore all default settings (in all sections) is confusing - 10https://bugzilla.wikimedia.org/67338 (10WhatamIdoing) [23:42:53] Wow, there's a regex option for cirrus search! I could like run a regex over the entire enwikipedia? (That sounds really cool) [23:42:55] (03PS10) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:43:02] It's pretty new ;) [23:43:12] How is that even remotely efficient [23:43:20] (03PS11) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:43:30] As in, taking less than a month [23:43:34] Better than page_text LIKE '%FOO%' [23:43:37] Ask manybubbles :) [23:43:56] it's capped to not run more than a few queries at a time or something [23:44:28] still, I'd expect the sheer amount of text it would have to go through to cause a very high latency (like a days worth) [23:44:31] YuviPanda, So it waits for an existing 'slow-query' slot to be empty? [23:44:34] Or just errors? [23:44:44] I think it waits for it to be empty, but I don't know. [23:48:45] (03CR) 10Bartosz Dziewoński: "I think Krinkle mostly meant that you should do:" [core] - 10https://gerrit.wikimedia.org/r/67173 (https://bugzilla.wikimedia.org/48581) (owner: 10Worden.lee) [23:49:51] bawolff: it's fast when you can keep half a terabyte of data in RAM ;) [23:50:18] I guess that helps [23:50:22] bawolff: i assume it's fast when you can keep half a terabyte of data in RAM ;) * [23:54:50] (03PS12) 10Aaron Schulz: Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 [23:55:05] (03CR) 10Brian Wolff: WIP: Begin indexing file metadata (032 comments) [extensions/CirrusSearch] - 10https://gerrit.wikimedia.org/r/142692 (owner: 10Chad) [23:57:42] (03PS1) 10Cmcmahon: QA: porting login test from /qa/browsertests [core] - 10https://gerrit.wikimedia.org/r/143199 [23:58:03] (03PS1) 10EBernhardson: Dont include empty result for moderated revisions part duex [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143200 [23:58:16] (03PS7) 10Withoutaname: If $wgEnableEmail is false, disable other email settings [core] - 10https://gerrit.wikimedia.org/r/132348 (https://bugzilla.wikimedia.org/63678) [23:58:38] (03CR) 10jenkins-bot: [V: 04-1] Improved DB handling in LCStoreDB [core] - 10https://gerrit.wikimedia.org/r/138740 (owner: 10Aaron Schulz) [23:58:41] (03PS2) 10EBernhardson: [WIP] Enable Topic namespace [extensions/Flow] - 10https://gerrit.wikimedia.org/r/143186