[00:10:32] From array_map( array( $this, 'listMergedWikiItem' ), $list ) ), I don't understand the "array( $this, 'listMergedWikiItem' )" [00:12:04] techman224: In PHP, when you have to pass a callback, you can pass 'nameOfGlobalFunction' to call a global function, or array( $object, 'nameOfMethod' ) to call an object method [00:12:25] So the statement you copied means "apply $this->listMergedWikiItem() to every element of $list" [00:12:56] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46640 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46637 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46636 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46635 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46634 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46633 [00:12:57] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46555 [00:18:47] RoanKattouw, I replaced "array( $this, 'listMergedWikiItem' )" with just $this->listMergedWikiItem(), but it didn't work [00:18:59] ^demon: is there a good collection of sample lua script you test with? [00:19:16] <^demon> I run the tests in the scribunto extension. [00:19:21] <^demon> A larger test suite would be nice. [00:19:59] techman224: No that doesn't work [00:20:23] techman224: The syntax you quoted initially is correct syntax, I was just explaining what it does [00:21:23] $newArr = array_map( array( $this, 'foo' ), $oldArr ); is roughly equivalent to $newArr = array(); foreach ( $oldArr as $oldElem ) { $newArr[] = $this->foo( $oldElem ); } [00:21:25] Does that clarify? [00:24:00] ^demon: what about when you manually test? [00:24:20] <^demon> I've written a few snippets locally. [00:24:27] <^demon> I don't really have a collection of good scripts. [00:27:04] RoanKattouw, when I called another array as a parameter, you call two items, the $object and the name of the method, but how do they link together? [00:27:31] They should be two separate things [00:27:40] What do you mean by "how do they link together"? [00:27:49] techman224: are you talking about hooks? [00:28:06] Jasper_Deng: Callback param to array_map() [00:30:23] techman224: Did you mean, given an array that looks like array( $obj, 'methodname' ), how do I get PHP to call $obj->methodname() for me? [00:30:50] there's a method for that [00:30:54] it's on the hooks page on mw.org [00:31:01] (built in to PHP) [00:31:03] Cause if so, the answer is http://php.net/call-user-func [00:31:18] ^^ [00:32:09] call_user_func was not called though [00:32:26] array_map() has its own built-in stuff that does the same [00:33:56] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 (10Legoktm) [00:34:18] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 (10Jasper Deng) [00:35:21] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 (10Legoktm) [00:41:13] RoanKattouw, are you saying that when you use array( $obj, 'methodname' ), that php has $obj->methodname() built in? [00:44:10] No, I'm saying that there is built-in functionality in PHP that, when you give it an array that looks like array( $obj, 'methodname' ) , will call $obj->methodname() for you [00:44:23] array_map() uses that internally, and you can use it via call_user_func() [00:44:32] ^demon: what does "as well as PHP" mean in http://www.mediawiki.org/wiki/Extension:Scribunto#LuaSandbox ? [00:44:49] You would still have to create $obj and write a method for it [00:44:56] <^demon> AaronSchulz: php-dev, probably. [00:45:03] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 +comment (10Legoktm) [00:45:04] <^demon> You need to be able to phpize and such. [00:45:21] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 +comment (10Daniel Zahn) [00:45:41] Heh [00:45:42] ^demon: guess I already did that [00:45:53] ^demon: No package 'luajit' found [00:46:10] that's the problem (after installing luajit) [00:46:14] * AaronSchulz double checks stuff [00:46:19] <^demon> luajit-dev? [00:46:43] <^demon> I dunno. I built on osx. [00:47:38] ^demon: did you use http://luajit.org/install.html ? [00:47:57] <^demon> No, some brew packages. [00:48:15] <^demon> I had lua and luajit. [00:49:31] New patchset: Ori.livneh; "Recursively validate events." [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46656 [00:49:32] New patchset: Ori.livneh; "JSON-relational mapping. You saw it here first." [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46657 [00:49:33] RoanKattouw, where is array( $obj, 'methodname' ) built in to $obj->methodname()? [00:49:59] It's not. It's syntax to express that you want $obj->methodname() to be called [00:50:27] ^demon: I think there's an open bug for OSX support [00:50:46] <^demon> It works well enough to run tests on osx, with the expected timer failures. [00:51:29] maybe this is Aaron's problem? https://bugzilla.wikimedia.org/show_bug.cgi?id=43819 [00:52:22] 03(mod) Special:JavaScriptTest/qunit doesn't fail broken ResourceLoader modules - 10https://bugzilla.wikimedia.org/44488 +comment (10krinklemail) [00:52:47] 03(NEW) Only log from tours on request - 10https://bugzilla.wikimedia.org/44489 normal; MediaWiki extensions: GuidedTour; () [00:53:35] gah, error: 'LUAI_MAXCALLS' undeclared (first use in this function) [00:53:35] 03(mod) pagetriage-del-talk-page-notify-summary parse error $1 - 10https://bugzilla.wikimedia.org/44459 +comment (10Krenair) [00:53:51] RoanKattouw, From what i see, array( $this, 'listMergedWikiItem' ), contains $this class, and a string called listMergedWikiItem [00:54:11] It does not call methods [00:54:20] That's right [00:54:27] 03(mod) MediaWiki should not refer to password reset e-mails as reminders - 10https://bugzilla.wikimedia.org/44486 normal->minor (10Andre Klapper) [00:54:30] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Andre Klapper) [00:54:31] 03(mod) Account creation interface should not be using helvetica/arial when the rest of the skin does not - 10https://bugzilla.wikimedia.org/44394 +comment (10tparscal) [00:54:41] But when you pass it to certain built-in PHP functions, those PHP functions will use the information in that array to call the method [00:54:51] array_map() is one of the functions that has that behavior [00:54:59] 03(mod) Search autocomplete incorrectly fills search box - 10https://bugzilla.wikimedia.org/24706 +comment (10Andre Klapper) [00:55:35] I don't see it in http://php.net/manual/en/function.array-map.php [00:55:38] TimStarling: the older version works [00:56:17] it's easy enough to fix though [00:56:27] I'm trying to add links in my photo description that link to an existing wikipedia page. [00:56:49] However, when I choose the link to existing wiki page option under links, only a very limited amount of pages are returned. [00:57:22] It seems to omit pages I know to exist. In this instance I tried to link it to the existing page for "Astoria, Oregon [00:57:59] But I didn't get past "Astor" before it told me that no such page existed. [00:58:17] 03(mod) fatalmonitor is broken - 10https://bugzilla.wikimedia.org/44485 +comment (10Andre Klapper) [00:59:46] RoanKattouw, both array_may() and call_user_func() have a callback parameter [01:00:29] Yes [01:02:13] TimStarling: so is https://www.mediawiki.org/wiki/Extension:Scribunto/Deployment_priorities the main list? [01:02:26] New patchset: preilly; "fix development status classifiers" [sartoris] (master) - https://gerrit.wikimedia.org/r/46659 [01:03:54] 03(mod) Consolidate user tool links into a popover or dropdown - 10https://bugzilla.wikimedia.org/44448 (10James Forrester) [01:03:58] https://www.mediawiki.org/wiki/Extension:Scribunto/Tim%27s_draft_roadmap [01:04:09] New review: preilly; "Skipping code review (self merging to master)." [sartoris] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/46659 [01:04:10] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46659 [01:04:16] not Deployment_priorities [01:04:33] RoanKattouw, I'm starting to see it, a callback is a Pseudo-type [01:05:47] New patchset: Tim Starling; "Bug 43819: Fix LuaJIT compatibility (LUAI_MAXCALLS)" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/46660 [01:05:47] AaronSchulz: can you test that? [01:05:52] heh, a natural first thing I suppose [01:06:18] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46656 [01:08:45] New patchset: Alex Monk; "(bug 44486) Rephrase password reset messages to remove 'reminder' language" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46661 [01:11:08] techman224: Yes [01:13:14] 03(mod) MediaWiki should not refer to password reset e-mails as reminders - 10https://bugzilla.wikimedia.org/44486 +patch-in-gerrit; +comment (10Krenair) [01:14:03] TimStarling: Has there been any further thought about global (Wikimedia-wide) Lua modules? I saw that Chad poked at using Git, but then that was dropped. [01:14:28] RoanKattouw, thanks for helping understand :) [01:14:35] we're going to deploy it first [01:14:45] Blergh. [01:14:54] 03(mod) Current version of LuaSandbox is incompatible with LuaJIT - 10https://bugzilla.wikimedia.org/43819 +comment (10tstarling) [01:15:25] Well, I think that's a mistake, but I needn't beat a dead horse. [01:16:28] New patchset: Anomie; "(bug 33304) Fix ApiQueryAllPages and old indef protections" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46662 [01:16:31] There's an open question here, if you're interested: https://bugzilla.wikimedia.org/show_bug.cgi?id=39610#c8 [01:19:52] <^demon> Susan: That's probably the general "Extension versions don't show up properly" bug. [01:19:55] It's become a real pain in the ass to debug shit around here. [01:20:03] Between RL and a lack of versioning. [01:20:28] I never know what version is running of VE or Scribunto. [01:20:40] And when I try to delve into page source for JS issues, it's a fucking maze. [01:20:45] Not to vent or anything. [01:20:59] <^demon> Or ParserFunctions, or Cite. It's an issue with scap syncing out the correct .git/* crap or not. [01:21:22] Right, but ParserFunctions and Cite haven't changed much since like 2008. [01:21:26] VE changes daily. [01:21:34] Though I understand it's not a confined issue. [01:21:40] 03(NEW) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 normal; MediaWiki extensions: EducationProgram; () [01:21:43] I'm a little confused how that's supposed to make me feel better. ;-) [01:22:11] TimStarling: I had to git clean -f -x to repro, ok now I can actually test that [01:22:23] <^demon> Susan: Well, you can rest assured it's not a conspiracy to hide versions from Scribunto and VE ;-) [01:22:38] RL is a separate issue. [01:22:53] I hope minification is really cutting those server costs, because Jesus it's annoying. [01:22:56] * AaronSchulz was leaving out the -x [01:24:06] New review: Aaron Schulz; "Works for me." [mediawiki/php/luasandbox] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/46660 [01:24:06] Change merged: Aaron Schulz; [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/46660 [01:25:15] preserving line breaks would increase the file size by like 1% [01:25:48] and what percentage of the hosting budget do you suppose goes on sending JS files? [01:25:52] * AaronSchulz never was sold on that [01:26:46] not a per object cost, so you can't count varnish CPU or anything like that [01:26:48] just network cost [01:26:49] Susan: Do you know about ?debug=true ? [01:27:36] RoanKattouw: you get different versions of all the files that way, and any bug involving the module loading system goes away because debug=true doesn't have a module loader [01:27:48] RoanKattouw: I do. Does anyone else? [01:28:00] There's a huge lack of discoverability. [01:28:16] Honestly, minification harms the open Web. [01:28:53] In the case of huge sites, it may make sense. [01:29:10] <^demon> I wonder if anyone's ever profiled resourceloader on a default install w/o any caching. [01:29:19] * ^demon hasn't, honestly wondering [01:29:35] There were a number of complaints when 1.17 was introduced about performance degradation. [01:29:41] I'm not sure if those were resolved in future versions. [01:29:47] New patchset: preilly; "add empty test suite directory" [sartoris] (master) - https://gerrit.wikimedia.org/r/46664 [01:30:16] New review: preilly; "Skipping code review (self merging to master)." [sartoris] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/46664 [01:30:16] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46664 [01:31:04] 03(NEW) http://wikitech.wikimedia.org/view/SearchShards results in an HTTP 500 error - 10https://bugzilla.wikimedia.org/44491 normal; Wikimedia: General/Unknown; () [01:32:20] 03(mod) http://wikitech.wikimedia.org/view/SearchShards results in an HTTP 500 error - 10https://bugzilla.wikimedia.org/44491 +comment (10Tim Starling) [01:32:33] Does anyone know offhand what Mediawiki message, if any, sets the contents of the title tag on the main page? [01:32:55] there is one [01:35:49] pagetitle [01:35:49] 03(mod) Current version of LuaSandbox is incompatible with LuaJIT - 10https://bugzilla.wikimedia.org/43819 (10Aaron Schulz) [01:35:49] YairRand: Pagetitle-view-mainpage [01:35:49] bawolff: thanks [01:35:49] ^demon: We should try improving the browser caching a bit more... I don't see any timestamp in the url that would make long Expires: a possibility. [01:35:49] New patchset: Anomie; "(bug 33304) Fix ApiQueryAllPages duplicate rows in protection query" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46665 [01:35:50] TimStarling: Would you make me an admin there? http://wikitech.wikimedia.org/view/Special:UserRights/MZMcBride [01:36:07] Rob H. cleaned house. [01:38:55] 03(mod) Redirect File: page directly to Wikimedia Commons in case file is streamed from there - 10https://bugzilla.wikimedia.org/44471 +comment (10bawolff+wn) [01:39:28] 03(mod) Fatal error in fatalmonitor - 10https://bugzilla.wikimedia.org/44485 summary (10Krinkle) [01:40:04] lol at that bug name [01:43:09] 03(mod) Inconsistencies in how lists of protected pages are found via API - 10https://bugzilla.wikimedia.org/33304 +comment (10Brad Jorsch) [01:43:52] New patchset: Catrope; "Make jquery.client recognize Iceweasel" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46666 [01:45:11] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 normal->04CRIT (10Sage Ross) [01:48:26] 03(mod) Disable $wgBlockDisablesLogin for wikimediafoundation.org - 10https://bugzilla.wikimedia.org/44473 (10jeremyb) [01:48:38] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 (10jeremyb) [01:50:04] 03(mod) Special:JavaScriptTest/qunit doesn't fail broken ResourceLoader modules - 10https://bugzilla.wikimedia.org/44488 (10spage) [01:50:58] 03(mod) Commons iOS app needs detail dialog to input title, description, categories - 10https://bugzilla.wikimedia.org/44435 +comment (10Brion Vibber) [01:51:27] 03(NEW) MediaWiki:Pagetitle-view-mainpage is not localizable - 10https://bugzilla.wikimedia.org/44492 normal; MediaWiki: Internationalization; () [01:53:12] New review: Krinkle; "Needs unit tests. Fine other wise." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/46666 [02:00:36] New patchset: Catrope; "Make jquery.client recognize Iceweasel" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46666 [02:03:46] 03(mod) MediaWiki:Pagetitle-view-mainpage is a content message, should be user language msg - 10https://bugzilla.wikimedia.org/44492 +easy; summary; +comment (10Bawolff (Brian Wolff)) [02:15:04] 03(mod) Request to host openzim.org wiki at the WMF - 10https://bugzilla.wikimedia.org/44465 +comment (10erik) [02:31:45] New patchset: Reedy; "Fixup some old badly built SQL queries" [mediawiki/extensions/CentralAuth] (master) - https://gerrit.wikimedia.org/r/46195 [02:31:52] 03(mod) Request to host openzim.org wiki at the WMF - 10https://bugzilla.wikimedia.org/44465 (10MZMcBride) [02:37:51] 03(mod) Fatal error in fatalmonitor - 10https://bugzilla.wikimedia.org/44485 04CRIT->normal (10Sam Reed (reedy)) [02:41:27] 03(mod) Support OpenID extension on all wikimedia projects - 10https://bugzilla.wikimedia.org/9604 (10T. Gries) [02:41:27] 03(mod) OpenID: when logging in as "Name" with wiki/Special:OpenIDServer/id , the OpenID should be restamped to wiki/User:Name - 10https://bugzilla.wikimedia.org/44416 (10T. Gries) [02:45:45] New patchset: Adamw; "widget to jam globalcollect history files into the db" [wikimedia/fundraising/tools] (master) - https://gerrit.wikimedia.org/r/46488 [02:58:21] 03(NEW) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 normal; Wikimedia: General/Unknown; () [02:59:15] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 +comment (10hazard_sj) [03:00:12] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 +comment (10bawolff+wn) [03:08:39] 03(mod) Allow bureaucrats to remove translation administrator privileges on Wikidata - 10https://bugzilla.wikimedia.org/44395 (10Roan Kattouw) [03:21:13] 03(mod) Try harder to validate link protocols in tokenizer, and support $wgUrlProtocols - 10https://bugzilla.wikimedia.org/44449 (10James Forrester) [03:25:58] 03(mod) Invalidation of Varnish thumbnail cache sometimes doesn't work - 10https://bugzilla.wikimedia.org/41130 +comment (10bawolff+wn) [03:26:05] 03(mod) VisualEditor: Support Internet Explorer - 10https://bugzilla.wikimedia.org/42847 +comment (10James Forrester) [03:26:18] 03(mod) VisualEditor: Support Internet Explorer - 10https://bugzilla.wikimedia.org/42847 (10James Forrester) [03:39:48] I need to find where blocks options are handled [03:39:59] What do you mean? [03:40:28] Like a way to get a user's block options [03:40:36] anon only, auto block etc [03:44:30] ipblocks table? [03:44:41] bawolff, yes [03:44:59] or do you mean where in the php code is it deal with? [03:45:13] which would presumably be the block class [03:45:22] and a tiny bit in the User class [03:50:09] Here what I want, the block options formatted like it would in the logs [03:57:14] hmm, I think that's just done in SpecialBlock::blockLogFlags, and then gets sticked into a blocklogentry message, but I'm not 100% sure [03:57:46] New patchset: Mwjames; "SRF\DataTables (DataTables 1.9.4) implemented as SMWAPI Printer" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/46650 [03:59:35] bawolff, I need to get the flags from an already blocked user [04:01:16] 03(NEW) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 enhancement; MediaWiki extensions: Makebot; () [04:03:12] Why not just take it directly out of the logs. log_params is usually formatted as either json or a serialized php array (can't remember if we got rid of the array format, i think we did) [04:03:23] Makebot? [04:04:06] bawolff, I need the current block options only [04:04:18] You have to wonder what was going through his mind when he chose "MediaWiki extensions" and then "Makebot." [04:05:43] Use the last log entry (I think each entry has the current version. Don't know off the top of my head). Otherwise, use the block class to load a block object, and then use its methods to test for each option, and create the list manually [04:07:35] 03(mod) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 (10Bawolff (Brian Wolff)) [04:10:28] In server-side code, what's the best way to tell if the request was for a preview? [04:11:04] superm401: depends on where in the server side code. If you have a parser object handy, you should look in the ParserOptions [04:11:33] bawolff, onBeforePageDisplay. It will be one factor in adding a module. [04:12:40] 03(mod) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 +comment (10Legoktm) [04:16:01] superm401: hmm, you could maybe look at request variables (Something similar to OutputPage::userCanPreview, or even just call that method) but i'm not sure what the best way to do that is [04:16:30] You could also add the module to all edit pages, and detect on the js side if the page is a preview [04:16:48] bawolff, rather not do the latter for perf. [04:17:12] Yeah, spagewmf suggested the same thing (the clear approach of action==submit && wpPreview). [04:17:24] I just wanted to see if there's a isPreview hidden somewhere. [04:17:27] Thank you, though. [04:18:06] Of course there could always be a magic isPreview I just don't know about :) [04:18:34] bawolff, well, no one else even chimed in. [04:18:37] So good enough for now. :) [04:19:31] Anyone have any idea how I might be able to associate a bug number (or even revision number ) of a php bug, to what version the bug is fixed in? [04:20:12] specificly wondering about https://bugs.php.net/bug.php?id=54561 [04:20:15] Yeah, git branch --contains [04:20:26] Oh, thought you meant MW. Does PHP use git now? [04:20:26] PHP uses git? [04:20:40] I think so [04:20:41] I have a git checkout [04:20:48] the bug report i'm looking at says svn [04:20:52] Right. [04:21:20] oh wait, php has a NEWS file listing fixes for each version [04:21:22] d'oh ;) [04:21:57] Susan, it is git now, though. http://git.php.net/?p=php-src.git [04:22:03] bawolff, if the release notes don't work, let me know. [04:22:25] You can grep through the commit messages and go from there. [04:22:30] I found it, its php 5.3.7 [04:23:06] the git branch --contains thing is cool looking (the result was only master though) [04:29:16] 03(mod) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 +comment (10My76Strat) [04:31:38] bawolff, maybe they don't cut branches (just tag). [04:31:56] New patchset: Mattflaschen; "Style JSON Schema on preview." [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46674 [04:31:59] maybe, in any case I found the version number I was looking for [04:36:01] Bugzilla seems down. [04:36:06] Change merged: Santhosh; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46623 [04:38:25] Susan: yep, -operations is showing problems w/ kaulen [04:38:36] Gay. [04:43:58] New review: Mwjames; "Works as advertised with FF10, IE9, and C10." [mediawiki/extensions/SemanticResultFormats] (master); V: 2 C: 0; - https://gerrit.wikimedia.org/r/46650 [04:44:12] Does Kaulen host gerrit too? because git review does not seem to be working for me... [04:44:52] New patchset: Brian Wolff; "(bug 43801) add getters for intl and ICU version to ICUCollation" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/44733 [04:44:57] No, Gerrit is on manganese [04:45:01] oh works now [04:45:18] probably the internet I'm stealing is just crappy [04:49:49] New review: Brian Wolff; "I added a code comment documenting at what version of php this constant started working." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44733 [05:00:41] New patchset: Brian Wolff; "(bug 43804) fix docs in generateCollationData.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/44734 [05:01:09] New review: Brian Wolff; "Some nitpicks about the error message." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44734 [05:07:03] I'm still stuck on getting the block options for a currently blocked user [05:07:53] I'm trying to get the block options directly from the database, then formatting it like a log entry [05:09:40] New review: Tim Starling; "Regarding static functions in MWServer:" [mediawiki/extensions/Scribunto] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46475 [05:10:13] I'm trying to display the block options under SpecialCentralAuth::formatBlockStatus [05:15:09] New review: Tim Starling; "What testing did you do?" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/45941 [05:42:51] New review: Spage; "C'mon Jenkins, do your thang." [mediawiki/extensions/E3Experiments] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/46203 [05:44:08] New review: Tim Starling; "In SecurePoll, command line scripts go in the cli directory and include cli.inc." [mediawiki/extensions/SecurePoll] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/45696 [05:45:30] New patchset: Spage; "remove obsolete schemas and functions" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46203 [05:46:09] New review: Spage; "I only changed the commit message to get Jenkins to show up." [mediawiki/extensions/E3Experiments] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/46203 [05:47:49] New patchset: Tim Starling; "(bug 43529) Hide private data after election" [mediawiki/extensions/SecurePoll] (master) - https://gerrit.wikimedia.org/r/45697 [05:47:54] Change merged: Tim Starling; [mediawiki/extensions/SecurePoll] (master) - https://gerrit.wikimedia.org/r/45697 [05:50:25] New review: Mattflaschen; "No, look at https://gerrit.wikimedia.org/r/#/c/46203/3..4/experiments/openTask.js ." [mediawiki/extensions/E3Experiments] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/46203 [05:58:33] New patchset: Spage; "remove obsolete schemas and functions" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46203 [06:00:12] Change merged: Mattflaschen; [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46203 [06:09:01] 03(mod) Allow to create multiple accounts for en-Wikipedia workshop - 10https://bugzilla.wikimedia.org/44472 +comment (10nsbelavate) [06:12:00] New review: Tim Starling; "Rebase fails." [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/45117 [06:18:52] New patchset: J; "add index to image table to query by type" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/35139 [06:19:00] 03(NEW) Implement lc, lcfirst, uc, and ucfirst magic words in jqueryMsg - 10https://bugzilla.wikimedia.org/44495 normal; MediaWiki: JavaScript; () [06:19:50] 03(mod) Implement lc, lcfirst, uc, and ucfirst magic words in jqueryMsg - 10https://bugzilla.wikimedia.org/44495 (10Matthew Flaschen) [06:21:07] New review: Tim Starling; "See inline comment. Otherwise fine." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/44832 [06:29:52] 03(mod) JS GroupSelector language on Special:Translate should match PHP side - 10https://bugzilla.wikimedia.org/42675 (10Amir E. Aharoni) [06:36:06] 03(mod) Support OpenID extension on all wikimedia projects - 10https://bugzilla.wikimedia.org/9604 +comment (10Ryan Lane) [06:37:15] 03(NEW) Error in ApiSetReference and/or ApiSetReferenceTest and/or support libs - 10https://bugzilla.wikimedia.org/44496 normal; MediaWiki extensions: WikidataRepo; () [06:44:56] New review: J; "transcodes might be a bit long but can not think of another name, will push patch with "transcodes" ..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/45102 [06:47:44] New patchset: Mattflaschen; "Use latest GettingStarted wording." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46677 [06:49:06] New patchset: J; "Bug 43343 add zone "transcodes" for audio/video" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45102 [07:05:48] New patchset: J; "Bug 43343 store derivatives in "transcodes" zone" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/45101 [07:06:38] 03(NEW) Simplify and remove jargon from protection level - 10https://bugzilla.wikimedia.org/44497 normal; MediaWiki: Page protection; () [07:08:25] New patchset: Mattflaschen; "Use latest GettingStarted wording." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46677 [07:18:35] 03(NEW) Template in table - 10https://bugzilla.wikimedia.org/44498 normal; VisualEditor: User Interface; () [07:26:17] New patchset: Rfaulk; "Add. log_deploys() functionality." [sartoris] (master) - https://gerrit.wikimedia.org/r/46678 [07:28:44] New patchset: Mattflaschen; "Skip the first step if they are editing." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46679 [07:36:59] New review: Mattflaschen; "Steven marked this done on Trello, so presumably it's working (it has been for me) consistently." [mediawiki/extensions/GuidedTour] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46491 [07:37:18] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46491 [07:38:28] New review: Ori.livneh; "Works! Awesome, thanks." [mediawiki/extensions/EventLogging] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/46674 [07:38:29] Change merged: Ori.livneh; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46674 [07:42:26] 03(mod) Ensure accurate placement of tooltips pointing to page elements - 10https://bugzilla.wikimedia.org/44091 +comment (10mflaschen) [07:56:56] New review: Raimond Spekking; "i18n review" [mediawiki/extensions/GuidedTour] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46677 [08:14:46] New patchset: Mattflaschen; "Add configuration field (default true) for showing tooltip." [mediawiki/extensions/MoodBar] (master) - https://gerrit.wikimedia.org/r/46682 [08:16:02] New review: Mattflaschen; "To use the new field on WMF servers, we'll add it to wmf-config." [mediawiki/extensions/MoodBar] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46682 [08:23:18] New patchset: Santhosh; "Search integration in message table" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46683 [08:30:07] 03(mod) Redirect File: page directly to Wikimedia Commons in case file is streamed from there - 10https://bugzilla.wikimedia.org/44471 +comment (10garbage5) [08:32:26] 03(mod) Redirect File: page directly to Wikimedia Commons in case file is streamed from there - 10https://bugzilla.wikimedia.org/44471 +comment (10garbage5) [08:35:50] 03(mod) Redirect File: page directly to Wikimedia Commons in case file is streamed from there - 10https://bugzilla.wikimedia.org/44471 +comment (10garbage5) [08:37:18] New patchset: Mattflaschen; "Add configuration field (default true) for showing tooltip." [mediawiki/extensions/MoodBar] (master) - https://gerrit.wikimedia.org/r/46682 [08:37:42] New review: Mattflaschen; "Patch set 2 fixes the comment." [mediawiki/extensions/MoodBar] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46682 [08:38:20] 03(mod) Transclude categories and annotations of files from shared repository to local File: page - 10https://bugzilla.wikimedia.org/44471 summary (10Jan Kucera (Kozuch)) [08:39:03] 03(mod) Transclude categories and annotations of files from shared repository to local File: page - 10https://bugzilla.wikimedia.org/44471 (10Jan Kucera (Kozuch)) [08:39:03] 03(mod) Show categorization on shared repository on local file page. - 10https://bugzilla.wikimedia.org/18752 (10Jan Kucera (Kozuch)) [08:39:04] 03(mod) Mirror Commons annotation to Wikipedias - 10https://bugzilla.wikimedia.org/38786 (10Jan Kucera (Kozuch)) [08:40:53] New patchset: Raimond Spekking; "Consistency tweaks in description message" [mediawiki/extensions/GoogleCustomWikiSearch] (master) - https://gerrit.wikimedia.org/r/46685 [08:41:12] New patchset: Pastakhov; "Display markers on leaflet maps (in the development)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [08:45:14] New patchset: Mattflaschen; "Add configuration field (default true) for showing tooltip." [mediawiki/extensions/MoodBar] (master) - https://gerrit.wikimedia.org/r/46682 [08:47:38] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46679 [08:48:59] ah guidedtour [08:49:19] we have sooo many extensions [08:49:42] New review: Pastakhov; "Add 'Done' comments." [mediawiki/extensions/MultiMaps] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46201 [08:50:33] New review: Pastakhov; "Add 'done' comments" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [08:51:18] New review: Pastakhov; "Thanks for review" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [08:55:43] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46677 [09:01:39] 03(mod) Implement first version of simple transclusion syntax - 10https://bugzilla.wikimedia.org/43998 +comment (10wikidata-bugs) [09:01:40] New review: Ori.livneh; "I'm sorry: I merged before giving Matt a chance to comment and deliberate on Raimond's comments. Ple..." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46677 [09:10:43] New patchset: Hashar; "Default entry point for Jenkins tests" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46688 [09:11:15] ori-l: I have added a default PHP entry point to E3Experiments extension : https://gerrit.wikimedia.org/r/#/c/46688/ [09:11:20] ori-l: not sure how bad it is for ya [09:12:08] Change merged: Ori.livneh; [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46688 [09:12:42] hashar: yeah, stupid mistake on my part; I had just gotten started w/MediaWiki development. [09:13:11] thanks for the patch. [09:13:14] ori-l: not much of a trouble [09:24:37] 03(NEW) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 normal; Wikimedia Labs: General; () [09:25:00] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 (10Peter Bena) [09:25:33] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 +comment (10benapetr) [09:25:44] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 normal->04BLOCKER (10Peter Bena) [09:26:02] New patchset: Raimond Spekking; "Add special page to the "media" section on Special:SpecialPages" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/46689 [09:32:09] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 04BLOCKER->normal; +comment (10Peter Bena) [09:32:34] New patchset: Raimond Spekking; "Add special page to the "users" section on Special:SpecialPages" [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/46699 [09:34:28] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/46700 [09:39:22] New patchset: Hashar; "support for SQLite" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/46701 [09:40:18] @seen ^demon [09:40:18] petan: Last time I saw ^demon they were quitting the network with reason: Remote host closed the connection N/A at 1/30/2013 2:36:10 AM (07:04:08.2262870 ago) [09:41:06] New review: Hashar; "Then we have to adapt the sql patches:" [mediawiki/extensions/CentralNotice] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46701 [09:43:02] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/46700 [09:44:07] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/46702 [09:44:39] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/46702 [09:45:29] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46704 [09:48:08] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/GoogleCustomWikiSearch] (master) - https://gerrit.wikimedia.org/r/46705 [09:48:51] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46706 [09:49:25] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/MoodBar] (master) - https://gerrit.wikimedia.org/r/46707 [09:49:56] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46708 [09:50:49] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/46709 [09:56:01] New patchset: Ori.livneh; "Delete flapping tests; declare 'medium' test group." [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46710 [09:59:13] New patchset: Amire80; "Make translatewiki.net's {{Identical}} work" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46711 [10:00:42] New review: Amire80; "Mingle task: https://mingle.corp.wikimedia.org/projects/internationalization/cards/2339 ." [mediawiki/extensions/Translate] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46711 [10:04:21] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/SecurePoll] (master) - https://gerrit.wikimedia.org/r/46713 [10:04:55] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/ZeroRatedMobileAccess] (master) - https://gerrit.wikimedia.org/r/46714 [10:05:05] 03(NEW) #ask queries ignore format= directives - 10https://bugzilla.wikimedia.org/44500 normal; MediaWiki extensions: SemanticResultFormats; () [10:06:48] 03(mod) Pathological amount of DB queries, and redundant DB queries, on some custom templates - 10https://bugzilla.wikimedia.org/39519 +comment (10patrick.lauer) [10:06:51] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/ZeroRatedMobileAccess] (master) - https://gerrit.wikimedia.org/r/46714 [10:06:54] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/SecurePoll] (master) - https://gerrit.wikimedia.org/r/46713 [10:06:59] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/46709 [10:07:03] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46708 [10:07:07] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/MoodBar] (master) - https://gerrit.wikimedia.org/r/46707 [10:07:11] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46706 [10:07:16] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/GoogleCustomWikiSearch] (master) - https://gerrit.wikimedia.org/r/46705 [10:07:21] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46704 [10:08:41] New patchset: Pastakhov; "Display markers on leaflet maps (in the development)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [10:12:50] New patchset: Ori.livneh; "Delete flapping tests; declare 'medium' test group." [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46710 [10:13:01] 03(mod) Disable tooltip pointing to MoodBar (for now) - 10https://bugzilla.wikimedia.org/44482 +patch-in-gerrit; +comment (10Steven Walling) [10:13:17] 03(mod) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 (10Andre Klapper) [10:15:17] 03(mod) Transclude categories and annotations of files from shared repository to local File: page - 10https://bugzilla.wikimedia.org/44471 (10Andre Klapper) [10:20:15] Change merged: jenkins-bot; [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46710 [10:23:05] New patchset: Hashar; "Jenkins job validation (DO NOT SUBMIT)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46717 [10:23:39] Change abandoned: Hashar; "(no reason)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46717 [10:23:49] New review: Hashar; "recheck" [mediawiki/extensions/MultiMaps] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46201 [10:26:29] New patchset: Hashar; "Log userNotShownCAPTCHA client-side" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/43200 [10:29:26] New patchset: Ori.livneh; "Drop yet another flapping test" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/46719 [10:30:55] New review: Nikerabbit; "Why are we doing this in JS when we have a search backend?" [mediawiki/extensions/Translate] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/46683 [10:32:49] New patchset: Amire80; "Correct event binding and update api.parse call" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46720 [10:35:01] gerrit down.. [10:35:42] New patchset: Amire80; "Correct event binding and update api.parse call" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46720 [10:36:07] Nikerabbit: works for me :-D [10:37:03] hashar: probably was restarting again [10:37:11] 03(NEW) description should be shown in the search results in repo - 10https://bugzilla.wikimedia.org/44501 normal; MediaWiki extensions: WikidataRepo; () [10:43:00] New patchset: Pastakhov; "Display markers on leaflet maps (in the development)" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [10:52:23] 03(NEW) Special:Log type=liquidthreads display zero results when target is an IP address - 10https://bugzilla.wikimedia.org/44502 normal; MediaWiki extensions: LiquidThreads; () [10:52:39] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 (10Hydra) [10:54:25] New patchset: Santhosh; "Make the inline editor functional" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46723 [11:04:00] New patchset: Aude; "backport --max-time patch for wikibase dispatching changes" [mediawiki/core] (wmf/1.21wmf8) - https://gerrit.wikimedia.org/r/46724 [11:04:28] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 +comment (10hydra) [11:05:18] New review: Aude; "This can be merged and deployed anytime. " [mediawiki/core] (wmf/1.21wmf8) - https://gerrit.wikimedia.org/r/46724 [11:12:34] New patchset: Santhosh; "Remove an outdated FIXME" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46725 [11:13:22] 03(mod) problems with 0 as a label - 10https://bugzilla.wikimedia.org/43585 +comment (10Stryn) [11:13:31] 03(NEW) Have Android app build on every push, rather than be triggered manually - 10https://bugzilla.wikimedia.org/44503 normal; Commons App: General; () [11:17:53] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 (10Andre Klapper) [11:24:06] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 +comment (10aklapper) [11:27:10] 03(mod) Simple English Wiktionary's sidebar is not what is on MediaWiki:Sidebar - 10https://bugzilla.wikimedia.org/44493 +comment (10hydra) [11:33:19] New patchset: Raimond Spekking; "Revert "Revert "Revert "[GuidedTour] Ignore messages for now"""" [translatewiki] (master) - https://gerrit.wikimedia.org/r/46728 [11:34:13] Change abandoned: Raimond Spekking; "will commit a fresh patch set" [translatewiki] (master) - https://gerrit.wikimedia.org/r/46728 [11:35:34] 03(mod) problems with 0 as a label - 10https://bugzilla.wikimedia.org/43585 +comment (10denny vrandecic) [11:37:48] New patchset: Raimond Spekking; "[GuidedTour] Remove ignored messages" [translatewiki] (master) - https://gerrit.wikimedia.org/r/46729 [11:38:02] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/46729 [11:39:03] New patchset: Daniel Kinzler; "Better way for extensions to add to ParserOutput." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45117 [11:41:45] New review: Daniel Kinzler; "rebased" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/45117 [11:46:10] Change merged: jenkins-bot; [mediawiki/extensions/WikiEditor] (master) - https://gerrit.wikimedia.org/r/44989 [11:46:31] New review: Matthias Mullie; "I have +2'ed, but have not yet merged, so you feel free to revert the change in patch set 2 before m..." [mediawiki/extensions/WikiEditor] (master) - https://gerrit.wikimedia.org/r/44989 [11:46:38] New patchset: Daniel Kinzler; "Better way for extensions to add to ParserOutput." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45117 [11:46:55] New review: Daniel Kinzler; "improved documentation" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/45117 [11:50:27] New patchset: Raimond Spekking; "Fix syntax error from Ibfce8dda" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46730 [11:50:55] Change merged: Raimond Spekking; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46730 [11:57:47] New review: Raimond Spekking; "Syntax error fixed with I27d77d52" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/46677 [12:11:01] 03(NEW) MediaWiki message with tracking category and - 10https://bugzilla.wikimedia.org/44504 normal; MediaWiki: Categories; () [12:12:44] 03(mod) Deployment of Wikidata to Wikimedia wikis (tracking) - 10https://bugzilla.wikimedia.org/38975 (10mybugs.mail) [12:17:51] 03(mod) mediawiki-core-regression-phpcs should not check extensions / language files - 10https://bugzilla.wikimedia.org/44249 +comment (10Antoine "hashar" Musso) [12:18:24] 03(mod) mediawiki-core-regression-phpcs should not check extensions / language files - 10https://bugzilla.wikimedia.org/44249 (10Antoine "hashar" Musso) [12:19:14] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45117 [12:21:46] 03(NEW) CAPTCHA module is activated by tag - 10https://bugzilla.wikimedia.org/44505 normal; MediaWiki: General/Unknown; () [12:21:55] 03(mod) CAPTCHA module is activated by tag - 10https://bugzilla.wikimedia.org/44505 (10Strainu) [12:28:30] 03(mod) get python-tox backported on Precise - 10https://bugzilla.wikimedia.org/44443 (10Antoine "hashar" Musso) [12:29:12] New patchset: Santhosh; "Get workflow state related information from APIs" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46505 [12:31:46] 03(mod) Database functions should type cast values automaticaly - 10https://bugzilla.wikimedia.org/26139 +comment (10Antoine "hashar" Musso) [12:33:12] 03(mod) [OPS] IRC bots process need nagios monitoring - 10https://bugzilla.wikimedia.org/26784 +comment (10Antoine "hashar" Musso) [12:34:14] 03(mod) wgLogo should be globally Wiki.png - 10https://bugzilla.wikimedia.org/26993 +comment (10Antoine "hashar" Musso) [12:37:42] 03(mod) test special pages SQL queries against supported Open Source DB (sqlite, mysql, pgsql) - 10https://bugzilla.wikimedia.org/32118 normal->15enhancement (10Antoine "hashar" Musso) [12:38:20] 03(mod) Turkish needs lc / uc methods - 10https://bugzilla.wikimedia.org/33643 normal->15enhancement; summary (10Antoine "hashar" Musso) [12:41:01] New patchset: MaxSem; "Update GeoData to master" [mediawiki/core] (wmf/1.21wmf8) - https://gerrit.wikimedia.org/r/46735 [12:41:41] 03(mod) Create Wikipedia Minangkabau - 10https://bugzilla.wikimedia.org/44462 +comment (10Ramzy Muliawan) [12:41:47] 03(mod) [statements-ui] Editing existing references (consisting of one Snak only) of a Statement - 10https://bugzilla.wikimedia.org/43292 +comment (10wikidata-bugs) [12:43:38] 03(mod) Request new magic word {{PAGECREATOR}} - 10https://bugzilla.wikimedia.org/44494 +comment (10bawolff+wn) [12:43:43] 03(mod) glusterfs log files are not rotated - 10https://bugzilla.wikimedia.org/41104 (10Antoine "hashar" Musso) [12:44:05] 03(mod) Invalidation of Varnish thumbnail cache sometimes doesn't work - 10https://bugzilla.wikimedia.org/41130 +comment (10mr.heat) [12:45:11] New patchset: MaxSem; "Update GeoData to master" [mediawiki/core] (wmf/1.21wmf7) - https://gerrit.wikimedia.org/r/46736 [12:45:46] New patchset: Mwjames; "SMWAPI Serializer add namespace information" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/46737 [12:45:47] Change merged: MaxSem; [mediawiki/core] (wmf/1.21wmf8) - https://gerrit.wikimedia.org/r/46735 [12:47:01] Change merged: MaxSem; [mediawiki/core] (wmf/1.21wmf7) - https://gerrit.wikimedia.org/r/46736 [12:48:38] 03(mod) prevents Jenkins from conflicting on release note files - 10https://bugzilla.wikimedia.org/37942 +comment (10Antoine "hashar" Musso) [12:53:02] hi [12:53:27] my mediawiki is sending X-Frame-Options:DENY as a Header and i have no idea why... any suggestions? [12:54:26] lbenedix, to prevent everyone from stealing your users' passwords [12:54:44] its not on every page [12:56:13] is it possible to overwrite that for a specialpage? [12:58:03] what i want is sending POST-data to that specialpage into a frame [12:59:22] New patchset: Hashar; "Jenkins test (adding a BOM)" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46739 [13:01:52] 03(mod) Jenkins: fail on BOM in submitted files - 10https://bugzilla.wikimedia.org/38233 +comment (10hashar) [13:02:09] Change abandoned: Hashar; "(no reason)" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46739 [13:05:55] is there a better way to handle post-data in my extension? [13:07:34] doesn't ajax request work? [13:07:49] or rather, use the WebAPI if possible [13:08:14] frame breaking is done for security reasons [13:11:16] ahh... i remember why i wanted a frame... i had an file-upload in the form... now when this is gone i can do it with ajax [13:13:38] New review: Mwjames; "Well, one could do:" [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/46737 [13:17:03] 03(mod) [Regression] Thumbnail cache should be invalidated on re-upload - 10https://bugzilla.wikimedia.org/31680 +comment (10maic274) [13:21:48] 03(NEW) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 normal; Wikimedia: Site requests; () [13:22:07] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +shell (10Tomer A.) [13:25:16] hi, is it possible to add my own module for Special:Preferences? In theory I could modify 'resources/mediawiki.special/mediawiki.special.preferences.js', but modifying mediawiki itself is not a good way for me [13:33:10] 03(mod) Page number attribute for tags - 10https://bugzilla.wikimedia.org/13127 +comment (10dasch) [13:33:39] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10Andre Klapper) [13:35:15] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10wiki.tomer) [13:36:53] 03(mod) [Regression] Thumbnail cache should be invalidated on re-upload - 10https://bugzilla.wikimedia.org/31680 +comment (10aklapper) [13:37:15] 03(mod) Create Wikipedia Minangkabau - 10https://bugzilla.wikimedia.org/44462 (10Andre Klapper) [13:39:34] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10aklapper) [13:41:09] 03(mod) CAPTCHA module is activated by tag - 10https://bugzilla.wikimedia.org/44505 normal->minor (10Andre Klapper) [13:43:20] 03(mod) MediaWiki message with tracking category and - 10https://bugzilla.wikimedia.org/44504 +comment (10Andre Klapper) [13:44:19] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10wiki.tomer) [13:47:18] 03(mod) MediaWiki message with tracking category and - 10https://bugzilla.wikimedia.org/44504 +comment (10jan.dudik) [13:54:34] mitevam: hi there [13:55:23] hi sumanah [13:55:32] sumanah: how are you [13:55:36] mitevam: how are YOU feeling!! [13:55:38] I'm fine [13:55:40] 03(mod) RTL/bidirectional issues (tracking) - 10https://bugzilla.wikimedia.org/745 (10Runa Bhattacharjee) [13:56:08] Hello - I am trying to use VisualEditor, but in Parsoid it says the API requires logged-in access. It wont work for this Wiki. How do I work around that? I guess anonymous API access would work, but I'd rather log in to the API. Anybody that can help me out from here? [13:56:52] sumanah: I'm fine but they will probably keep me here for a while [13:57:01] sumanah: at least I have some internet now [13:57:11] hey TheAvatar - I don't know the answer but I can tell you that most of the people who work on Parsoid or VE are not awake yet - they will be in within the next 4 hours probably [13:57:16] mitevam: are you feeling comfortable? [13:58:08] I saw that about 2 hours ago you sent a note to mediawiki-enterprise [14:00:09] mitevam: I want to scope down what we have been planning for you to do in the next, say, week [14:00:22] to give you more ability to rest (if you want) [14:00:23] sumanah: yes I am comfortable, in bed with IV on most of the time but fine otherwise, I tried to catch up on email a little bit [14:00:31] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10Antoine "hashar" Musso) [14:01:53] Hi. I had a little doubt regarding bug fixing culture on MediaWiki. [14:01:55] 03(mod) [statements-ui] Editing existing references (consisting of one Snak only) of a Statement - 10https://bugzilla.wikimedia.org/43292 +comment (10wikidata-bugs) [14:01:59] sumanah: yes it will probably have to be the case while I'm here as there is always something going on and a doctor I need to meet or something, I hope I will know tomorrow how long its gonna be for [14:02:00] 03(mod) [statements-ui] Editing existing references (consisting of one Snak only) of a Statement - 10https://bugzilla.wikimedia.org/43292 +comment (10wikidata-bugs) [14:02:12] sumanah, okay, thanks - I'll see if I can fit that in [14:02:42] Rtdwivedi: hi! sure, go ahead and ask your question (and just so you know, "doubt" has the wrong connotations for what you mean to ask, in international English) [14:03:03] On any bug report there are a few comments by developers which I prefer to read as they help in understanding how to fix it. [14:03:40] But sometimes the comments conflict with each other, while some would want it to be implemented others would not. [14:04:14] So how do I decide which way I must use to conform to MediaWiki coding norms? [14:04:15] mitevam: you're probably waiting on me on some questions to be answered, in email. am I right? [14:04:23] Rtdwivedi: You can always ask in a comment in the bug. [14:04:49] Rtdwivedi: Or here, in IRC. [14:05:11] sumanah: thanks! [14:05:20] Rtdwivedi: can you give an example of one of the bug reports you're looking at, where there does not seem to be consensus in the comments? [14:05:24] sumanah: yes you promised me an email last time we talked :) [14:05:40] sumanah; sorry need to go for 5 minutes, brb [14:05:44] no prob. [14:07:01] sumanah: https://bugzilla.wikimedia.org/show_bug.cgi?id=39389 . [14:07:01] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10wiki.tomer) [14:08:24] Rtdwivedi: also, read http://webchick.net/embrace-the-chaos [14:08:49] it's about Drupal but it applies reasonably well to MediaWiki development as well [14:09:03] 03(mod) [statements-ui] Adding references (consisting of one Snak only) to an existing Statement - 10https://bugzilla.wikimedia.org/43291 (10Daniel Werner) [14:09:06] 03(mod) [statements-ui] Removal of References - 10https://bugzilla.wikimedia.org/43293 (10Daniel Werner) [14:09:10] 03(mod) Special:Log type=liquidthreads display zero results when target is an IP address - 10https://bugzilla.wikimedia.org/44502 (10Andre Klapper) [14:09:15] sumanah: i am back [14:09:19] 03(mod) [statements-ui] Editing existing references (consisting of one Snak only) of a Statement - 10https://bugzilla.wikimedia.org/43292 (10Daniel Werner) [14:09:54] 03(mod) Simplify and remove jargon from protection level - 10https://bugzilla.wikimedia.org/44497 (10Andre Klapper) [14:09:54] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Andre Klapper) [14:10:24] 03(mod) "LocalSettings.php" is inside a plain-text wrapper - 10https://bugzilla.wikimedia.org/44475 (10Andre Klapper) [14:11:10] 03(mod) MediaWiki:Pagetitle-view-mainpage is a content message, should be user language msg - 10https://bugzilla.wikimedia.org/44492 (10Andre Klapper) [14:13:52] 03(mod) [statements-ui] Removal of References - 10https://bugzilla.wikimedia.org/43293 +comment (10daniel.werner) [14:14:09] Uh - how about these Language: en da etc bars. How do I make them? Does it require some additional setup or? On mediawiki.org there's some extra functions at the bottom when editing. [14:14:54] sumanah: i will try to conform to MediaWiki development. It was a nice read. [14:15:20] Rtdwivedi: :-) Glad you enjoyed reading it. [14:15:49] Rtdwivedi: also check out https://www.mediawiki.org/wiki/API/Tutorial which has a video [14:15:55] I had one more question. [14:16:20] Go ahead! [14:16:37] I had applied for outreach program for women but did not get selected. I still want to contribute to the code. [14:17:02] Is it possible to watch the repository of the project I had chosen. [14:17:25] Just to chip in a few commits. [14:17:51] Rtdwivedi: OF COURSE YOU CAN COMMIT AND WATCH [14:17:58] THIS IS OPEN SOURCE [14:17:59] ANYONE CAN JUST DROP IN!!!!! [14:18:09] you don't need to ask permission! [14:18:32] http://english.stackexchange.com/questions/2429/can-doubt-sometimes-mean-question might be helpful to you, by the way [14:18:50] regarding the word "doubt" [14:19:46] please do not wait for permission to watch repositories, put changesets into Gerrit, comment on bugs, edit the wiki, etc. [14:19:48] be bold!! [14:20:08] thanks. :-) [14:21:01] So, to watch a repository, you go into your Gerrit preferences -- do you know where those are? [14:21:15] Rtdwivedi: https://gerrit.wikimedia.org/r/#/settings/ [14:22:49] yes, i got the projects list. [14:26:48] 03(mod) Edit conflict detection for claims still having some issues - 10https://bugzilla.wikimedia.org/44101 +comment (10jeroen_dedauw) [14:31:27] New patchset: Hashar; "style: fix up commas in function arguments" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46753 [14:31:27] New patchset: Hashar; "style: normalize end of files" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46754 [14:34:29] hi sucheta, how are you? [14:34:38] mitevam: I am working on a monster email to you [14:34:53] mitevam: real quick: check out https://www.mediawiki.org/wiki/Wikimedia_Engineering/2012-13_Goals#Milestones_by_quarter_14 especially the configuration database [14:36:30] by the way, did I ever make you read Karl Fogel's "Producing Open Source Software" mitevam ? http://producingoss.com/ If I didn't, it's okay, you don't have to start now, but it's something to keep in mind in case you have days when you can't really write anything but you can read [14:37:53] 03(mod) Edit conflict detection for claims still having some issues - 10https://bugzilla.wikimedia.org/44101 +comment (10jeroen_dedauw) [14:38:21] sumanah, Hey I am better now. I have been having a terrible internet connection for some days now. Fought with the service providers so much. [14:38:40] * Nikerabbit eyes sumanah's CAPS [14:38:45] ok sumanah waiting for that, I am working on a quick blog post meanwhile [14:38:50] cool [14:39:09] sucheta: who's the provider? AirTel? BSNL? Other? [14:40:13] sumanah, Reliance. They said they are having some 'technical difficulties' with my number. [14:40:23] arrrgh. [14:40:52] that must have been annoying. I'm curious -- when someone absolutely positively needs a reliable internet connection in your area, what do they do? [14:43:01] And to get this weird answer, which did not help at all. I had to fight with them for two days. One customer care executive would make me talk to some other weird person and this would go on. Finally they would hang up the phone. [14:46:24] sumanah, Reliance is pretty reliable I thought. Speed and all are fine. Else I had a BSNL connection, whose server would be down in every alternate days. And also, wifi didn't used to work during power-cuts. Which are much common over here. [14:47:18] So, if someone really needs a connection, what do they do? Have 2 or 3 providers and just hope that they all don't go down at the same time? [14:47:52] sucheta: try MTS [14:48:39] Rtdwivedi, MTS is good? I never tried it [14:49:17] sumanah, Now I have. Learned my lesson. :( [14:49:40] yep. When I stay in Durgapur, W.B. I use it. [14:50:04] sumanah: what about onfiguration database did you want me to look at? There is not much on that page [14:50:11] Rtdwivedi, You are from DGP? wow :D [14:50:51] yeah :) [14:51:15] Rtdwivedi, And a bengali too? [14:51:20] I am currently in Roorkee (college). [14:51:55] I see. Which project are you working on? :) [14:51:58] pseudo-bengali [14:52:14] Just fixing some bugs. [14:52:21] Ah, nice [14:52:50] Rtdwivedi: is Rtdwivedi your username on Gerrit & mediawiki.org as well? [14:53:00] mitevam: https://www.mediawiki.org/wiki/Requests_for_comment/Configuration_database has more info although it is not complete [14:53:12] sumanah: yes [14:53:26] mitevam: I just wanted you to see that there are plans in the current fiscal year to make the configuration database [14:56:23] Rtdwivedi: Google has not announced whether they will be running Google Summer of Code 2013 but we predict that they will and we predict that https://www.mediawiki.org/wiki/Summer_of_Code_2013 [14:56:35] we predict that MediaWiki will participate [14:58:03] cool. I'll add my name. [14:58:39] I have to leave for dinner. See you later. [14:58:44] 03(mod) MediaWiki message with tracking category and - 10https://bugzilla.wikimedia.org/44504 (10Andre Klapper) [15:00:05] mitevam: email sent! [15:05:32] 03(mod) Page number attribute for tags - 10https://bugzilla.wikimedia.org/13127 +comment (10Andre Klapper) [15:09:33] Change merged: jenkins-bot; [mediawiki/extensions/CentralAuth] (master) - https://gerrit.wikimedia.org/r/46195 [15:14:16] New patchset: Anomie; "Fix LuaStandalone nil handling" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/46475 [15:14:17] 03(NEW) grammatical error(s) in message MediaWiki:Permissionserrors - 10https://bugzilla.wikimedia.org/44507 trivial; MediaWiki: Interface; () [15:14:59] New patchset: Hashar; "misc style issues" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46760 [15:15:34] New review: MZMcBride; "This looks good to me. Thanks for working on this, Alex." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/46661 [15:17:09] TheAvatar: Morning! Did someone help you with Parsoid? [15:17:14] New review: Anomie; "PS3: Address comments." [mediawiki/extensions/Scribunto] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46475 [15:17:30] TheAvatar: Currently we don't support APIs that require read access, but there's a bug and everything [15:25:31] 03(mod) [statements-ui] Adding references (consisting of one Snak only) to an existing Statement - 10https://bugzilla.wikimedia.org/43291 (10abraham.taherivand) [15:27:05] 03(mod) Page number attribute for tags - 10https://bugzilla.wikimedia.org/13127 +comment (10bjorsch) [15:28:51] 03(mod) [statements-ui] Editing existing references (consisting of one Snak only) of a Statement - 10https://bugzilla.wikimedia.org/43292 (10abraham.taherivand) [15:29:12] 03(mod) [statements-ui] Removal of References - 10https://bugzilla.wikimedia.org/43293 (10abraham.taherivand) [15:30:31] 03(mod) ReferencedEntitiesFinder::findClaimLinks should consider Statement's references - 10https://bugzilla.wikimedia.org/44440 (10abraham.taherivand) [15:33:03] 03(mod) ReferencedEntitiesFinder::findClaimLinks should consider Statement's references - 10https://bugzilla.wikimedia.org/44440 (10abraham.taherivand) [15:33:28] Change merged: Pastakhov; [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46201 [15:33:43] 03(mod) [statements-ui] Save-button should stay disabled until added statement is valid - 10https://bugzilla.wikimedia.org/42997 (10abraham.taherivand) [15:34:00] 03(mod) [statements-ui] Save-button should stay disabled until added statement is valid - 10https://bugzilla.wikimedia.org/42997 (10abraham.taherivand) [15:35:55] 03(mod) Translatewiki.net message synchronization broken (only Engl. available in both client and lib) - 10https://bugzilla.wikimedia.org/44337 (10abraham.taherivand) [15:36:22] TheAvatar: If you wanted to play with fixing the bug, it should be *possible* if not trivial. You may need to add a way for the API to accept authentication headers. I'm not sure of the best way, currently. [15:36:24] 03(mod) Implement Diff:ToArray - 10https://bugzilla.wikimedia.org/44288 (10abraham.taherivand) [15:38:34] 03(mod) Allow bureaucrats to remove translation administrator privileges on Wikidata - 10https://bugzilla.wikimedia.org/44395 +comment (10Antoine "hashar" Musso) [15:39:06] 03(mod) Blue link to "Previous pages" for categories though there are none - 10https://bugzilla.wikimedia.org/12060 summary; +comment (10Andre Klapper) [15:40:21] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10Antoine "hashar" Musso) [15:41:45] 03(mod) Please temporary lift the IP cap in fr.wiki - 10https://bugzilla.wikimedia.org/44506 +comment (10wiki.tomer) [15:43:11] 03(mod) MediaWiki message with tracking category and - 10https://bugzilla.wikimedia.org/44504 (10Bawolff (Brian Wolff)) [15:43:15] 03(mod) Add references entities to page links - 10https://bugzilla.wikimedia.org/44287 (10abraham.taherivand) [15:43:44] Change merged: J; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/46689 [15:47:05] 03(mod) Uncaught TypeError: Object # has no method 'isAnon' - 10https://bugzilla.wikimedia.org/44051 (10abraham.taherivand) [15:48:02] 03(mod) pagetriage-del-talk-page-notify-summary parse error $1 - 10https://bugzilla.wikimedia.org/44459 (10Krenair) [15:48:42] New patchset: J; "add major_mime to query to use index" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/42749 [15:50:45] New patchset: J; "Cleanup Firefogg integration" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/39035 [15:52:08] Change merged: jenkins-bot; [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/46699 [15:52:10] New patchset: Mdale; "Add support for audio derivatives" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39363 [15:56:15] 03(mod) AddTermSearchKey.sql fails on sqlite - 10https://bugzilla.wikimedia.org/42688 (10abraham.taherivand) [15:58:06] 03(mod) FlaggedRevs: Call to undefined method PageStabilityProtectForm::setReason() - 10https://bugzilla.wikimedia.org/44468 (10Andre Klapper) [15:58:08] 03(mod) Make AbuseFilter aware of different content models. - 10https://bugzilla.wikimedia.org/42064 (10abraham.taherivand) [15:58:35] 03(mod) Failure to install Math Extension / TeX - 10https://bugzilla.wikimedia.org/44469 +comment (10aklapper) [15:59:01] 03(mod) Sort "What links here" by most recent linking action - 10https://bugzilla.wikimedia.org/44466 summary (10Andre Klapper) [16:00:01] Change merged: jenkins-bot; [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/45500 [16:01:19] 03(mod) Deployment of Wikidata to Wikimedia wikis (tracking) - 10https://bugzilla.wikimedia.org/38975 (10abraham.taherivand) [16:03:50] Change merged: Mdale; [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/39035 [16:06:21] 03(mod) Coalesce change events before injecting them into the recentchanges table - 10https://bugzilla.wikimedia.org/42189 (10abraham.taherivand) [16:06:32] New patchset: Mdale; "Add support for audio derivatives" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39363 [16:09:19] New patchset: Mdale; "Add support for audio derivatives" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39363 [16:09:43] 03(mod) Clicking on save with invalid value - 10https://bugzilla.wikimedia.org/44291 (10abraham.taherivand) [16:11:40] 03(mod) id-xor-wikititle error message confusing - 10https://bugzilla.wikimedia.org/44207 (10abraham.taherivand) [16:12:02] 03(mod) id-xor-wikititle error message confusing - 10https://bugzilla.wikimedia.org/44207 (10abraham.taherivand) [16:16:27] Does jeblad use IRC? [16:16:55] 03(mod) Add a time datatype - 10https://bugzilla.wikimedia.org/44000 (10abraham.taherivand) [16:20:07] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 (10Jeroen De Dauw) [16:20:16] Krenair: yeah [16:20:34] what's his username? [16:20:49] He's online in #wikimedia-wikidata [16:21:00] Jeblad_WMDE [16:21:43] 03(mod) WikibaseClient: array_key_exists() expects parameter 2 to be array, boolean given - 10https://bugzilla.wikimedia.org/43978 (10abraham.taherivand) [16:21:49] 03(mod) Switch EducationProgram pages to ContentHandler (tracking) - 10https://bugzilla.wikimedia.org/43975 (10Jeroen De Dauw) [16:21:50] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 (10Jeroen De Dauw) [16:22:01] 03(mod) WikibaseClient: array_key_exists() expects parameter 2 to be array, boolean given - 10https://bugzilla.wikimedia.org/43978 (10abraham.taherivand) [16:22:39] 03(NEW) htcp cache purges for images do not seem to clear europe upload squid caches - 10https://bugzilla.wikimedia.org/44508 critical; Wikimedia: General/Unknown; () [16:22:40] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10jeroen_dedauw) [16:22:41] 03(mod) Invalidation of Varnish thumbnail cache sometimes doesn't work - 10https://bugzilla.wikimedia.org/41130 (10Bawolff (Brian Wolff)) [16:22:43] 03(mod) Thumbnail/imagescaler (tracking) - 10https://bugzilla.wikimedia.org/41371 (10Bawolff (Brian Wolff)) [16:23:34] 03(mod) Invalidation of Varnish thumbnail cache sometimes doesn't work - 10https://bugzilla.wikimedia.org/41130 +comment (10bawolff+wn) [16:23:48] 03(mod) htcp cache purges for images do not seem to clear europe upload squid caches - 10https://bugzilla.wikimedia.org/44508 (10Bawolff (Brian Wolff)) [16:25:36] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10ragesoss) [16:27:45] 03(mod) SpecialPage for setting aliases in non-JS UI - 10https://bugzilla.wikimedia.org/43871 (10tobias.gritschacher) [16:27:55] 03(mod) SpecialPage for setting aliases in non-JS UI - 10https://bugzilla.wikimedia.org/43871 (10tobias.gritschacher) [16:27:59] New review: Alex Monk; "Actually I checked the outputs, this seems fine." [mediawiki/extensions/LiquidThreads] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/44632 [16:28:15] Change merged: jenkins-bot; [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/44632 [16:28:16] 03(mod) SpecialPage for setting description in non-JS UI - 10https://bugzilla.wikimedia.org/43872 (10tobias.gritschacher) [16:28:53] 03(mod) SpecialPage for setting aliases in non-JS UI - 10https://bugzilla.wikimedia.org/43871 (10abraham.taherivand) [16:29:14] 03(mod) SpecialPage for setting description in non-JS UI - 10https://bugzilla.wikimedia.org/43872 (10abraham.taherivand) [16:30:26] 03(mod) Periodical run of currently disabled special pages - 10https://bugzilla.wikimedia.org/15434 +comment (10sam) [16:31:19] Change merged: jenkins-bot; [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/44633 [16:31:25] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10jeroen_dedauw) [16:32:06] New patchset: Pastakhov; "fix phpunit LeafletTest" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46777 [16:32:27] 03(mod) Article Feedback Tool difficult to use for screen reader users do to use of non-standard form controls - 10https://bugzilla.wikimedia.org/33081 +comment (10Liz Henry) [16:33:01] New patchset: Jeroen De Dauw; "(bug 44490) Prevent fatal error when making a redirect to an education page" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/46778 [16:33:25] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10jeroen_dedauw) [16:33:45] Change merged: jenkins-bot; [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/44634 [16:34:41] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10ragesoss) [16:36:01] Change merged: jenkins-bot; [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/46777 [16:37:28] 03(mod) Special:EducationProgram times out when not cached - 10https://bugzilla.wikimedia.org/42923 +comment (10jeroen_dedauw) [16:37:52] 03(mod) Only log edits by students enrolled in a course - 10https://bugzilla.wikimedia.org/43880 (10Jeroen De Dauw) [16:37:57] 03(mod) "Add myself as reviewer" button is grayed out on cached course pages - 10https://bugzilla.wikimedia.org/43875 (10Jeroen De Dauw) [16:38:14] 03(mod) Personal tools "Courses" link to Special:MyCourses should appear for instructors, students and volunteers by default - 10https://bugzilla.wikimedia.org/43709 (10Jeroen De Dauw) [16:38:17] 03(mod) Special:MyCourses should include Planned as well as Current courses - 10https://bugzilla.wikimedia.org/43707 (10Jeroen De Dauw) [16:38:22] 03(mod) No default is selected for language in the "Adding course" interface - 10https://bugzilla.wikimedia.org/43785 (10Jeroen De Dauw) [16:38:43] 03(mod) Periodical run of currently disabled special pages - 10https://bugzilla.wikimedia.org/15434 +comment (10federicoleva) [16:38:46] 03(mod) remove the entry field for "real name" when students enroll in a course - 10https://bugzilla.wikimedia.org/43885 (10Jeroen De Dauw) [16:38:48] 03(mod) Special:Courses and other lists of courses should show both Current and Planned by default - 10https://bugzilla.wikimedia.org/43947 (10Jeroen De Dauw) [16:39:59] 03(mod) Special:EducationProgram times out when not cached - 10https://bugzilla.wikimedia.org/42923 +comment (10ragesoss) [16:41:08] 03(mod) text entered for a student article should be reformatted if it's the url of the article - 10https://bugzilla.wikimedia.org/44397 summary (10Sage Ross) [16:41:12] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10jeroen_dedauw) [16:42:31] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10ragesoss) [16:46:02] 03(NEW) notification about missing rights comes too late when creating a new property - 10https://bugzilla.wikimedia.org/44509 normal; MediaWiki extensions: WikidataRepo; () [16:47:11] New review: Alex Monk; "Can you rebase this onto master? I don't want to touch Iaefe3870..." [mediawiki/extensions/LiquidThreads] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44643 [16:50:33] New patchset: Alex Monk; "JSHint: Write some things in dot notation instead" [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/46781 [16:53:50] 03(mod) Failure to install Math Extension / TeX - 10https://bugzilla.wikimedia.org/44469 +comment (10steve) [16:57:39] MaxSem: is geo stuff life? would love to see it [16:58:01] yurik, https://en.m.wikipedia.org/wiki/Special:Nearby [16:58:30] well, it was live for more than a month, it simply was experimental [16:58:43] wow MaxSem , it gave me a list of my friends nearby! I didn't know we are turning into facebook! [16:59:12] actually its blank :( [16:59:25] will try on my phone [17:00:49] yeah, there is a bug with it on desktop vrowsers [17:07:43] what is the right way to adress a specialpage in php? is there something like mw.util.wikiGetlink('Special:Foobar')? [17:08:11] For now that seems about right [17:08:28] mw.util.... is javascript [17:09:30] ./Special:Foobar is not working because sometimes the links are /index.php?title= [17:09:54] ..of course [17:10:19] i dont want to set the link with javascript [17:10:21] You should never use relative urls anywhere in MW... except for css. [17:10:51] and how do i get the url for a specialpage in php?\ [17:11:02] ...system/skin/ext stylesheets that is. Site styles should be absolute too. [17:11:22] i dont want to link to a stylesheet [17:11:41] lbenedix: Get the title with SpecialPage::getTitleFor( '...' ) [17:12:38] New review: Matmarex; "Thanks." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/44733 [17:12:48] MaxSem: moblie also showed blank, and didn't ask for location permissions [17:12:51] 03(mod) "others" (in Credits) points to invalid link - 10https://bugzilla.wikimedia.org/44160 +comment (10das.abhshk) [17:13:06] will poke Jon about it today [17:13:42] why would only one of my pages give the error: [17:13:44] Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading. (Can't contact the database server: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) (localhost)) [17:14:17] lbenedix: Actually `(new mw.Title( 'Foobar', -1 )).getUrl();` might be better. [17:14:17] Change merged: Jeroen De Dauw; [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/46528 [17:14:38] I thought the page might be too big but it is only ~150kb (and i have a larger page that does work) [17:15:12] Dantman: mw.Title... is Javascript, isnt it? [17:15:22] lbenedix: Yes [17:15:44] Dantman: but i want to get the URL to a Specialpage with php [17:16:05] Aric_: The database could be offline or getting too many requests. [17:16:17] Dantman: in JS there is mw.util.wikiGetlink('Special:Foobar') [17:16:51] Dantman: the rest of the wiki works fine [17:17:03] and i can browse around and every time i go to a specific page it does that [17:17:36] New review: Matmarex; "I think your inline comments somehow got lost, or at least I don't see them. Maybe you left them on ..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/44734 [17:17:52] lbenedix: You started talking about js, got confusing... As js goes `(new mw.Title( 'Foobar', -1 )).getUrl();` is actually better than `mw.util.wikiGetlink('Special:Foobar')` [17:18:06] i'll be back in 30min [17:18:16] lbenedix: For php use `SpecialPage::getTitleFor( '...' )->getFullURL();` [17:18:55] thx [17:19:08] ...we need to add the alias/i18n handling for special pages to JS. [17:20:32] Special:... [17:24:03] 03(NEW) properties in references are not linked - 10https://bugzilla.wikimedia.org/44510 major; MediaWiki extensions: WikidataRepo; () [17:24:10] New patchset: Anomie; "Fix package.loaded and other cleanups" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/45601 [17:24:24] New patchset: Anomie; "Lua module support functions" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/46289 [17:24:37] New patchset: Anomie; "Scribunto language module" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/42050 [17:24:44] New patchset: Anomie; "Add mw.uri module" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/46478 [17:24:53] New patchset: Anomie; "Lua ustring implementation" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/38013 [17:25:49] 03(mod) Cancel Button saves text, Publish Button does nothing - 10https://bugzilla.wikimedia.org/42198 -patch-in-gerrit ; +comment (10Bartosz Dziewoński) [17:26:21] New review: Matmarex; "Looks like jenkins helpfully merged this anyway. Both solutions are fine with me, and the current on..." [mediawiki/extensions/WikiEditor] (master) - https://gerrit.wikimedia.org/r/44989 [17:28:11] 03(NEW) Installer aborts on outdated sqlite module - 10https://bugzilla.wikimedia.org/44511 normal; MediaWiki: Installer; () [17:29:35] New patchset: Jeroen De Dauw; "Skip test that required SQLStore3 when not using SQLStore3" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/46786 [17:30:21] 03(mod) 45 SMW tests failing due to table 'sandwiki.unittest_smw_prop_stats' doesn't exist - 10https://bugzilla.wikimedia.org/44305 +comment (10Jeroen De Dauw) [17:30:48] New patchset: UnwashedMeme; "Ignore 'Auth' directory generated by make" [mediawiki/extensions/OpenID] (master) - https://gerrit.wikimedia.org/r/45334 [17:47:17] 03(mod) Periodical run of currently disabled special pages - 10https://bugzilla.wikimedia.org/15434 +comment (10dcduring) [17:51:23] 03(NEW) Have option for noreferrer on external links. - 10https://bugzilla.wikimedia.org/44512 enhancement; MediaWiki: Parser; () [17:51:45] 03(mod) CORE repo broken ? git pull fails: fatal: pack has 14 unresolved deltas - fatal: index-pack failed - 10https://bugzilla.wikimedia.org/44129 (10silke.meyer) [17:54:04] New patchset: Aude; "Backport --max-time patch for wikibase dispatching changes" [mediawiki/core] (wmf/1.21wmf8) - https://gerrit.wikimedia.org/r/46724 [17:55:07] 03(mod) CORE repo broken ? git pull fails: fatal: pack has 14 unresolved deltas - fatal: index-pack failed - 10https://bugzilla.wikimedia.org/44129 +comment (10innocentkiller) [17:57:01] 03(mod) Have option for noreferrer on external links. - 10https://bugzilla.wikimedia.org/44512 (10Daniel Friesen) [17:57:37] 03(mod) Have Android app build on every push, rather than be triggered manually - 10https://bugzilla.wikimedia.org/44503 +comment (10Yuvi Panda) [18:01:27] New patchset: Jeroen De Dauw; "(bug 43786) Fix query error when there no orgs to select on" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/46789 [18:04:29] New patchset: Parent5446; "(bug 44512) Config for adding rel="noreferrer" to external links." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46790 [18:04:35] 03(mod) Special:StudentActivity gives internal error: "Fatal exception of type MWException" - 10https://bugzilla.wikimedia.org/43786 +comment (10Jeroen De Dauw) [18:05:16] 03(mod) Have option for noreferrer on external links. - 10https://bugzilla.wikimedia.org/44512 +patch-in-gerrit; +comment (10Tyler Romeo) [18:08:25] 03(mod) admins who are not campus/online volunteers should not be able to create Ambassador profiles - 10https://bugzilla.wikimedia.org/44322 (10Jeroen De Dauw) [18:13:32] New patchset: Hashar; "JSHint: Too many var statements" [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/44643 [18:13:48] New review: Hashar; "rebased :)" [mediawiki/extensions/LiquidThreads] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44643 [18:13:59] New patchset: Jeroen De Dauw; "(bug 44322) admins who are not campus/online volunteers should not be able to create Ambassador profiles" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/46791 [18:14:10] 03(mod) admins who are not campus/online volunteers should not be able to create Ambassador profiles - 10https://bugzilla.wikimedia.org/44322 +comment (10jeroen_dedauw) [18:14:18] New patchset: Hashar; "JSHint: unescaped square brackets in regex" [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/44635 [18:14:38] 03(mod) Maps not loading at all - 10https://bugzilla.wikimedia.org/44224 (10Jeroen De Dauw) [18:14:51] New review: Hashar; "I guess we want to carefully verify that code path still works properly." [mediawiki/extensions/LiquidThreads] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44635 [18:15:32] New patchset: Jeroen De Dauw; "(bug 43861) Move description field below title and name fields." [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/43473 [18:15:38] New patchset: Jeroen De Dauw; "bug 43882: replace menu by customizable header on course pages" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/43573 [18:18:14] 03(mod) Move "Description" section to the top of course pages, and remove its title - 10https://bugzilla.wikimedia.org/43860 (10Jeroen De Dauw) [18:19:41] 03(mod) Page number attribute for tags - 10https://bugzilla.wikimedia.org/13127 +comment (10matma.rex) [18:24:52] techfiz: Hello [18:25:11] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46720 [18:25:28] New review: Brian Wolff; "Huh. Yay for gerrit usability. I think I got them saved to ps 5 now." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/44734 [18:27:57] harshkothari: hey... [18:28:14] techfiz: Good to see you in mediawiki :) [18:31:31] harshkothari: Thank you. Looking forward to all possible collaborations! [18:32:12] New patchset: Parent5446; "(bug 44512) Config for adding rel="noreferrer" to external links." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46790 [18:34:21] New patchset: Parent5446; "(bug 44512) Config for adding rel="noreferrer" to external links." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46790 [18:34:31] techfiz: yeah sure [18:35:48] techlife: take a look here http://gu.wikipedia.org/wiki/સભ્ય:Harsh4101991/sandbox [18:35:57] Is there any way to populate/update old-format logging params to new? [18:36:04] Would that be possible? [18:36:21] Isarra: print them all out, and hire a bunch of Indians to type it back in [18:36:23] New review: Parent5446; "A quick note. I do *not* agree/disagree with the actual usage of this on enwiki (or any other WMF wi..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/46790 [18:36:41] 03(mod) Have option for noreferrer on external links. - 10https://bugzilla.wikimedia.org/44512 +comment (10tylerromeo) [18:36:49] YuviPanda: Would that work? [18:36:59] given enough Indians, yes [18:37:51] YuviPanda: Sounds like Web 0.2 [18:37:56] 03(NEW) deleteAllData does not clear wb_changes_dispatch table - 10https://bugzilla.wikimedia.org/44513 normal; MediaWiki extensions: WikidataRepo; () [18:39:06] 03(mod) properties in references are not linked - 10https://bugzilla.wikimedia.org/44510 (10Daniel Werner) [18:39:46] If there is any way to create a form on wikipage? [18:40:04] Change merged: jenkins-bot; [mediawiki/extensions/LiquidThreads] (master) - https://gerrit.wikimedia.org/r/46781 [18:41:47] New patchset: Jeroen De Dauw; "(bug 42204) Creating or editing an ambassador profile prompts "leave page" warning" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/46793 [18:41:58] 03(mod) Creating or editing an ambassador profile prompts "leave page" warning - 10https://bugzilla.wikimedia.org/42204 +comment (10jeroen_dedauw) [18:43:50] 03(mod) MediaWiki:Course_description does not preload as the Description for new courses - 10https://bugzilla.wikimedia.org/44006 (10Jeroen De Dauw) [18:44:09] 03(NEW) tracking bug for deployment on English Wikipedia - 10https://bugzilla.wikimedia.org/44514 normal; MediaWiki extensions: WikidataClient; () [18:44:12] 03(NEW) tracking bug for deployment on all Wikipedias (except hu, he, it, en) - 10https://bugzilla.wikimedia.org/44515 normal; MediaWiki extensions: WikidataClient; () [18:44:58] 03(mod) Deployment of Wikidata to Wikimedia wikis (tracking) - 10https://bugzilla.wikimedia.org/38975 +comment (10Lydia Pintscher) [18:45:46] 03(mod) Deployment of Wikidata to Wikimedia wikis (tracking) - 10https://bugzilla.wikimedia.org/38975 (10Lydia Pintscher) [18:46:44] 03(NEW) Client fails hard if sites table is not populated - 10https://bugzilla.wikimedia.org/44516 normal; MediaWiki extensions: WikidataClient; () [18:46:48] New patchset: Matthias Mullie; "Refactor AFT backend" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/46797 [18:48:00] New patchset: CSteipp; "(bug 14862) WIP - Global user renaming" [mediawiki/extensions/CentralAuth] (master) - https://gerrit.wikimedia.org/r/39171 [18:50:43] New patchset: Rfaulk; "Add. log_deploys() functionality." [sartoris] (master) - https://gerrit.wikimedia.org/r/46678 [18:51:20] New review: CSteipp; "This might be the wrong way to go about this, but it seems like it's working for me. Hope that helps..." [mediawiki/extensions/CentralAuth] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39171 [18:53:20] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 +comment (10rlane32) [18:56:01] New review: Nikerabbit; "Can't test right now but should improve things." [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/46786 [18:56:20] 03(mod) Getting Could not acquire 'labswiki:messages:en:status' lock - 10https://bugzilla.wikimedia.org/44499 +comment (10Ryan Lane) [18:56:20] 03(mod) memcache on labsconsole.wikimedia.org craps out pretty often - 10https://bugzilla.wikimedia.org/42127 +comment (10rlane32) [18:57:03] 03(mod) tracking bug for deployment on all Wikipedias (except hu, he, it, en) - 10https://bugzilla.wikimedia.org/44515 (10Sam Reed (reedy)) [18:57:06] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10Sam Reed (reedy)) [18:57:07] 03(mod) tracking bug for deployment on English Wikipedia - 10https://bugzilla.wikimedia.org/44514 (10Sam Reed (reedy)) [18:57:08] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10Sam Reed (reedy)) [18:57:54] 03(mod) memcache on labsconsole.wikimedia.org craps out pretty often - 10https://bugzilla.wikimedia.org/42127 +comment (10rlane32) [18:58:25] 03(mod) Enable rollbacker and patroller groups, change days and edits for the Autoconfirmed group, and the sysop group have the ability of grant patroller and rollbacker permissions on eswikivoyage - 10https://bugzilla.wikimedia.org/44285 +comment (10master_carlos11) [18:59:06] 03(mod) Enable rollbacker and patroller groups, change days and edits for the Autoconfirmed group, and the sysop group have the ability of grant patroller and rollbacker permissions on eswikivoyage - 10https://bugzilla.wikimedia.org/44285 (10Carlos Mora (White Master King)) [19:00:10] 03(mod) Enabling import source on eswikivoyage - 10https://bugzilla.wikimedia.org/43863 +comment (10Carlos Mora (White Master King)) [19:00:11] New patchset: Rfaulk; "Add. log_deploys() functionality." [sartoris] (master) - https://gerrit.wikimedia.org/r/46800 [19:00:51] New patchset: Matmarex; "(bug 43801) add a getter for ICU version to ICUCollation" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/44733 [19:00:51] New patchset: Matmarex; "(bug 43804) fix docs in generateCollationData.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/44734 [19:01:13] Change merged: preilly; [sartoris] (master) - https://gerrit.wikimedia.org/r/46800 [19:01:44] 03(mod) properties in references are not linked - 10https://bugzilla.wikimedia.org/44510 +comment (10wikidata-bugs) [19:01:46] New review: Matmarex; "Updated per comment and rebased." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/44734 [19:01:48] 03(mod) properties in references are not linked - 10https://bugzilla.wikimedia.org/44510 +comment (10wikidata-bugs) [19:01:51] 03(mod) properties in references are not linked - 10https://bugzilla.wikimedia.org/44510 +comment (10wikidata-bugs) [19:02:02] New review: Matmarex; "I got rid of the other getter." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/44733 [19:04:27] 03(mod) Use instead of