[00:00:40] New patchset: GWicke; "Use relative links in wikilinks, work in progress Mk2" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18441 [00:00:58] ah. it's been renamed [00:02:20] hi [00:03:19] Semantic extension seems to be consuming more than 100% CPU usages and creating deadlocks on Mysql in my environment [00:03:43] Does anyone know about this by chance? [00:04:00] wel: this is a normal occurance for SMW [00:04:12] you should ask in #semantic-mediawiki, though [00:04:24] right [00:05:11] thanks mate [00:35:33] Ryan_Lane: includes/GlobalFunctions.php [00:35:42] yeah. found it. it was renamed in 1.20 [00:35:47] ?! [00:35:52] I thought I saw it in master [00:36:38] it is [00:36:43] I'm using 1.20wmf2 [00:36:45] ;) [00:37:36] What was it renamed from/to? [00:37:43] Cause IIRC it's existed for years [00:38:43] CGI -> Cgi [00:40:44] Aaah [00:44:57] New patchset: Siebrand; "Collection maintenance." [mediawiki/extensions/Collection] (master) - https://gerrit.wikimedia.org/r/18443 [00:45:31] New patchset: GWicke; "Use relative links in wikilinks" [mediawiki/extensions/Parsoid] (master) - https://gerrit.wikimedia.org/r/18441 [00:50:37] New patchset: Krinkle; "Make use of new jshint options" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17930 [00:52:25] New review: Helder.wiki; "I think those \r should be removed from the end of the lines." [mediawiki/extensions/GeoGebra] (master) - https://gerrit.wikimedia.org/r/18231 [00:57:15] 03(NEW) Parsoid: Over-eager wikitext escaping introduces dirty diff for dds - 10https://bugzilla.wikimedia.org/39216 normal; Parsoid: JS/serialiser; (gwicke) [00:57:35] 03(mod) Parsoid: Over-eager wikitext escaping introduces dirty diff for dds - 10https://bugzilla.wikimedia.org/39216 (10Gabriel Wicke) [00:59:33] 03(NEW) Parsoid: components in bugzilla mis-spelled - 10https://bugzilla.wikimedia.org/39217 normal; Parsoid: General; (gwicke) [01:00:11] 03(ASSIGNED) Parsoid: components in bugzilla mis-spelled - 10https://bugzilla.wikimedia.org/39217 (10Gabriel Wicke) [01:04:21] 03(mod) Parsoid: components in bugzilla mis-spelled - 10https://bugzilla.wikimedia.org/39217 (10Krinkle) [01:07:35] New patchset: Ryan Lane; "Compatibility with OpenStack Nova Essex" [mediawiki/extensions/OpenStackManager] (master) - https://gerrit.wikimedia.org/r/18209 [01:07:45] 03(mod) Footnotes content should appear in a tooltip - 10https://bugzilla.wikimedia.org/7908 (10mybugs.mail) [01:07:57] RoanKattouw: I commented the places where I felt I didn't need to escape [01:08:20] or places where I escaped that you thought were weird [01:08:26] OK [01:08:47] I also fixed the $a["$b"] things every spot in the code. Same with == and != [01:08:56] Rawr [01:09:00] heh [01:09:03] You rebased and made changes in the same commit [01:09:10] should I not have? [01:09:12] * RoanKattouw fetches both patchsets and diffs locally [01:09:23] No, because it screws up inter-patchset diffs in Gerrit with rebase noise [01:09:29] Although in this case I suppose the only noise is i18n [01:09:45] what should I have done? [01:09:50] Yup, just 1 i18n commit [01:09:55] When amending, use git review -R [01:10:06] what's the -R do? [01:10:09] (-R = --no-rebase) [01:10:11] ah [01:10:13] ok [01:10:15] good to know [01:10:18] Prevents the automatic rebase from happening [01:10:22] * Ryan_Lane nods [01:10:26] In mediawiki/core's .gitreview we have defaultrebase=0 [01:11:20] I need to pull this and re-test, now too [01:12:07] how in the hell did I get a merge conflict by pulling that? [01:12:08] heh [01:13:01] reset -> pull worked :) [01:13:43] New review: Krinkle; "This commit has a (possibly incorrect) dependency through git-parent on Ic54a9df8f63e96379fcfb968af9..." [mediawiki/extensions/EducationProgram] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18260 [01:15:53] If you just use git review -d 18209 it Just Works [01:16:08] well, this is on labs [01:16:12] Ryan_Lane: So what about the static-ness of getAttachmentMime() ? [01:16:14] Oh OK [01:16:31] heh [01:16:31] yeah [01:16:40] it didn't need to be called staticly. that's when I was going to support ec2 and nova apis, and moved it to a parent class [01:16:50] though I guess even then it didn't need to be static [01:16:59] let's just chalk that up to bad decisions :) [01:22:07] Oh I see, you're calling it with $this-> now [01:22:13] yeah [01:23:30] Is there any reason you're running shell account names through strtoupper() before checking them against isCreatableName() ? [01:24:06] oh [01:24:07] sorry [01:24:14] I forgot to publish those inline comments [01:24:15] yes [01:24:24] that function returns false otherwise [01:24:42] because an all lowercase name isn't a valid mediawiki user name [01:24:50] Right [01:24:56] So maybe you wanted ucfirst() instead? [01:25:06] Or $wgLang->ucfirst() [01:25:07] ah. yes. that would be better [01:25:15] ugh, globals [01:25:28] it doesn't need to be internationalized [01:25:31] // Actions are predefined and don't need to be escaped [01:25:34] Where are they predefined? [01:25:34] it's alpha-numeric only [01:25:38] Oh, OK [01:25:41] Then ucfirst() is fine [01:25:57] BTW we have RequestContext now so if you're in a special page you can use stuff like $this->getLanguage() instead of $wgLang [01:26:17] ah. cool [01:26:21] good to know [01:26:29] * Ryan_Lane hates using globals [01:27:57] bleh. associate_address seems to be broken in nova [01:28:21] it returns 202, but never actually associates it :( [01:28:26] :S [01:28:33] Where does the pre-definition of actions occur? [01:28:53] If you're assuming they're HTML-safe that should be documented there [01:29:23] in list [01:29:31] they are defined directly in the code [01:29:44] well, crap [01:29:45] I say that [01:29:55] I better check that for sure [01:30:06] Yeah [01:30:26] yeah, they are links [01:30:34] that are generated in safe ways [01:30:47] so, predefined is incorrect [01:30:49] I'm not a fan of things like "this is special for such reason so it's fine" but I'll accept it as long as it's made clear [01:30:53] I better add an additional warning [01:31:09] for instance: $regionactions = Array( 'sysadmin' => Array( $this->createActionLink( 'openstackmanager-createinstance', array( 'action' => 'create', 'project' => $projectName, 'region' => $region ) ) ) ); [01:31:23] createActionLink escapes [01:31:58] because it's using Linker::link( [01:32:09] Well, that escapes certain things yes [01:32:13] link() doesn't escape the link text [01:32:19] it escapes the params, right? [01:32:22] Yes [01:32:30] Query string params are escaped [01:32:33] createActionLink pulls a title [01:32:55] return Linker::link( $title, wfMsgHtml( $msg ), array(), $params ); [01:33:04] Yeah that's fine [01:35:40] ok. I removed the inline comments and better documented the function [01:35:53] * RoanKattouw looks around for gerrit-wm [01:36:01] want me to push in the new one? [01:36:04] Sure [01:36:45] New patchset: Ryan Lane; "Compatibility with OpenStack Nova Essex" [mediawiki/extensions/OpenStackManager] (master) - https://gerrit.wikimedia.org/r/18209 [01:37:10] thanks for the review btw. I thought for sure no one would touch this one with a 10ft pole :) [01:37:21] You still have $self:: in there, that'll break [01:37:28] where? [01:37:29] OSNovaController line 296 [01:37:46] why will that break? [01:37:52] _get_property is static [01:37:56] *$*self:: [01:38:01] ugh [01:38:03] it's self:: [01:38:06] Yes [01:38:15] It's valid syntax, though, it'll just be a runtime error [01:38:34] I despise warnings and info messages [01:38:57] $self isn't defined locally, so it'll be created on the fly and set to null, which is then cast to a string to become the empty string, so then it looks for a class named empty string, which doesn't exist [01:39:14] heh [01:39:50] What's more disturbing is that calling self::notAStaticFunction() actually wokrs [01:40:02] ew [01:40:15] It works quite well if the function doesn't use $this, or if you're calling it from within the same class (in which case it behaves as $this->func() ) [01:41:02] It gets more interesting if you're calling it from a different class that's not compatible (i.e. not like a subclass or something), you get a warning "Calling non-static function statically, assuming $this from incompatible context" and then it continues anyway [01:41:38] yay php [01:41:40] Which is just ... wrong [01:41:42] Yeah [01:41:53] I'd prefer my language to fail hard and fast :) [01:42:09] OK code looks good, I +1ed it [01:42:14] great. thanks [01:42:16] Didn't merge because you may want to test it still [01:42:21] And well it's got that $self:: in there [01:42:24] yeah. I need to test [01:42:30] I need to push a couple more minor fixes in, too [01:43:01] all of this only added one feature. heh [01:43:21] I did get to eliminate 36k lines of code, though :) [01:43:25] Change merged: Catrope; [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/17930 [01:45:19] New review: Ryan Lane; "Reedy: No, the API is simply REST calls now. I'm implementing from scratch. There's no PHP library a..." [mediawiki/extensions/OpenStackManager] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18209 [01:59:11] hi. is git supposed to contain all extensions that are in the SVN, or only the ones that are actively maintained? [01:59:52] I was unable to find DynamicPageList (the third-party one) in git [02:16:45] JanSch, not all extensions are in Git [02:17:07] All the ones used by WMF are in Git [02:17:20] And developers can request their extensions be imported from SVN [02:17:32] Krenair: thanks. I just noticed the wiki page pointing to a non-existing git repo and was confused [02:17:57] Can you link me to the page with the broken link please? [02:21:39] JanSch? [02:21:47] sure [02:22:24] well, not anymore, it seems to be fixed. sorry [02:22:27] was http://www.mediawiki.org/wiki/Extension:DynamicPageList_%28third-party%29 [02:23:09] New patchset: Tim Starling; "Check the status of Nova requests, don't just assume they succeed" [mediawiki/extensions/OpenStackManager] (master) - https://gerrit.wikimedia.org/r/18445 [02:23:24] thanks Krenair! [02:25:23] It was fixed a few hours ago: https://www.mediawiki.org/w/index.php?title=Extension:DynamicPageList_(third-party)&diff=570683&oldid=569777 [02:27:49] New review: Krinkle; "Removing myself as reviewer. I know nothing of UploadWizard. If really needed I could dig into it, b..." [mediawiki/extensions/UploadWizard] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/10130 [04:07:44] <_Meow> There's someone flooding on #wikipedia-zh, and no admin here to help. What should I do? [04:08:41] Panic. [04:09:19] <_Meow> Brooke: OK. I'll do that. Thanks [04:09:46] 03(mod) PHP Warning: Invalid argument supplied for foreach() in /www/w/includes/Uri.php on line 262 - 10https://bugzilla.wikimedia.org/39099 +comment (10daniel) [04:10:06] _Meow: or you can try #wikimedia-ops [04:10:27] <_Meow> Jasper_Deng: Thanks. The flooder left for now [04:15:09] <_Meow> Jasper_Deng: Oh, no... He/She came back, and continued his/her work [04:15:26] <_Meow> Nobody at #wikimedia-ops responded [04:54:21] <_Meow> (Problem solved, thanks for your help.) [04:54:45] np [04:55:28] New review: Krinkle; "FIXME" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/18421 [05:01:45] * jeremyb waves TimStarling good morning [05:02:00] or i guess maybe it's even afternoon by now [05:02:23] yes, 15:02 [05:02:48] TimStarling: did you see how to get at all 4 of those wikidata commits? (bug 38622) [05:23:25] delete everything and reclone? [05:25:04] New patchset: Aaron Schulz; "[FileBackend] Added option for copy script to skip non-UTF8 filenames." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18447 [05:29:33] 03(mod) Make page move reason text box single lined - 10https://bugzilla.wikimedia.org/39215 summary (10jeremyb) [05:29:47] TimStarling: no. just click the links [05:30:05] what links? [05:30:56] TimStarling: the links from the bugzilla notif email dated Date: Sun, 05 Aug 2012 05:19:58 +0000 [05:31:03] the email not the web UI [05:31:04] if you mean comment 8 and 9, those links are all broken [05:31:42] which is the mail for comment 8 [05:32:00] TimStarling: or i'll help you figure out how to get it from your local clone [05:33:41] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18435 [05:34:59] anyway, here they are: [05:34:59] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=commitdiff;h=906a1ba51f149d659e270597e4b964cc8c550357 [05:35:03] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=commitdiff;h=38828a93a17e63abb85442c90f04f6cac20034ec [05:35:06] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=commitdiff;h=8d280dde9b405880d9d4a3a724c6b0872ef03dc1 [05:35:09] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=commitdiff;h=c8e633f1e38d8fee671fc5453536adccaee616be [05:35:23] I'm not going to review it using gitweb [05:35:33] you don't have to... [05:35:34] what do you have for refs/heads/Wikidata? [05:35:49] 176119237607de5ed6659296b08209270b26b84a? [05:37:04] cat .git/refs/heads/Wikidata [05:37:47] $ git log --pretty=oneline --decorate -n 1 [05:37:47] 176119237607de5ed6659296b08209270b26b84a (HEAD, origin/Wikidata, Wikidata) Merge "add Article::setParserOptions" into Wikidata [05:39:17] we should just use subversion, it'd save a lot of time [05:40:32] * jeremyb disagrees [05:41:03] $ for i in 906a1ba51f149d659e270597e4b964cc8c550357 38828a93a17e63abb85442c90f04f6cac20034ec 8d280dde9b405880d9d4a3a724c6b0872ef03dc1 c8e633f1e38d8fee671fc5453536adccaee616be; do git branch -av --contains "$i"; done | uniq -c 4 remotes/origin/Wikidata 1761192 Merge "add Article::setParserOptions" into Wikidata [05:41:15] TimStarling: so what do you have locally then? [05:41:50] (there was a \n between '-c' and '4') [05:44:04] is there any way to find out what commits are the children of a given commit? [05:44:19] O(N) I guess [05:44:44] err, let me think [05:45:10] there is a git log --children apparently [05:45:31] what did you have in mind? [05:47:07] Hallo. Usually I do `git clean -fX' to remove unneeded files. It's good for extensions, but in core it also deletes LocalSettings.php (it just happened, luckily it was simple to restore). [05:47:26] New patchset: IAlex; "Use Message class where possible." [mediawiki/extensions/ConfirmAccount] (master) - https://gerrit.wikimedia.org/r/17702 [05:47:47] Does anybody know a trick to do a `git clean' that wouldn't do that? Couldn't find it in `git help clean'. [05:48:07] no -X ? ;) [05:48:19] New review: IAlex; "Fixed an undefined variable notice." [mediawiki/extensions/ConfirmAccount] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/17702 [05:48:19] Change merged: IAlex; [mediawiki/extensions/ConfirmAccount] (master) - https://gerrit.wikimedia.org/r/17702 [05:48:19] git clean -f; git status -sb [05:48:25] manually review the output [05:49:09] or just store LocalSettings.php outside the working dir [05:49:18] maybe a hardlink or symlink to somewhere else [05:49:53] also, moin moin ;) [05:51:29] TimStarling: please hilight me if there are more questions / etc. (won't be paying much attention here and sleeping soon anyway. but i'll see it in the morning at least) [06:02:48] jeremyb: git log --children doesn't appear to do anything useful [06:03:22] what I want to do is 1) work out exactly what Daniel did, and then 2) fix it [06:05:43] how do you see the reflog of a remote repo? [06:05:44] TimStarling: he pushed directly to branch instead of to the review queue for the branch [06:05:51] i doubt you can [06:05:59] --children looks normal to me [06:06:11] you could add a --pretty=raw to really see the gory details [06:07:26] (i doubt it even has a reflog in fact? that would be nice to have) [06:07:34] let me check the gerrit-dev server [06:09:18] TimStarling: there's no reflog AFAICT (checked the labs project) [06:09:48] no output from GIT_DIR=/var/lib/gerrit2/review_site/git/testing.git git reflog [06:09:55] jeremyb: moin moin? [06:10:24] aharoni: "hi" kinda. related to "morning" somewhat but can be used all day long [06:10:37] aharoni: there's an article on it i think [06:10:47] aharoni: it's also the name of a wiki! [06:12:17] TimStarling: anyway, I think there's nothing terribly unusual about this situation. (but it's not good either) devs and ops introduce new commits like this daily. see puppet and mediawiki-config repos [06:12:25] I'm seeing the relevant revisions now in the log [06:12:32] wooot [06:12:36] after deleting the local branch and recreating it [06:12:41] huh [06:12:57] maybe he amended a commit to change its parents or something [06:13:04] so, did you run the --contains i pasted above on your original local branch? [06:13:12] TimStarling: huh? [06:13:21] I guess not [06:13:35] changed parents == changed commit id [06:16:18] New patchset: Santhosh; "Fix Bug 38666 - When searching no specific region should be highlighted in the map" [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/18448 [06:17:08] TimStarling: are you set you think? [06:17:15] 03(mod) Black/striped thumbnails of CMYK JPEGs - 10https://bugzilla.wikimedia.org/24854 +comment (10Kevin J Morgan) [06:18:05] I guess so [06:18:50] there will be more challenges, even last time I was reviewing this I was finding it difficult to work out how to find all the code [06:19:29] mmm, "gitk Wikidata ^master" [06:20:43] jeremyb: oh. [06:21:01] 03(ASSIGNED) When searching no specific region should be highlighted in the map - 10https://bugzilla.wikimedia.org/38666 +comment (10Santhosh Thottingal) [06:21:22] i thought about no -X etc., but I would something more automatic. Like some kind of an exclusion. Apparently not all ignored files are equal. [06:22:23] aharoni: store it out of tree. symlink or hardlink. make a script (or git alias even) that does `git clean -fX` and then restores the link for you [06:23:00] git aliases can be arbitrary shell invocations [06:23:07] 03(mod) ULS Search auto-complete suggestions over write the input in Indic - 10https://bugzilla.wikimedia.org/39101 +i18n; +comment (10Santhosh Thottingal) [06:23:37] ok, /me has to close eyes, back in quite a few hours ;0 [06:23:41] ;) * [06:23:43] jeremyb: That's probably what i'll do. (maybe I'll also throw git gc in.) [06:24:05] aharoni: gc happens automatically. but as you wish :) [06:25:05] jeremyb: where? its man page says that it should be run manually. or did i miss something? [06:25:40] aharoni: i did a pull sometime in the last week and it decided it was time for a gc so it did one without asking me [06:25:49] oh. [06:25:52] well, good night :) [06:25:54] aharoni: idk what the criteria are and i assume they are configurable [06:39:25] New patchset: Santhosh; "Add langnames.ser" [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/18449 [07:03:17] I have a question... has anybody used jqgrid with jquery that mediawiki provides, like in their extension? [07:11:20] New review: Freakolowsky; "remember to remove the commented old code in your next update" [mediawiki/extensions/ConventionExtension] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/14051 [07:11:20] Change merged: Freakolowsky; [mediawiki/extensions/ConventionExtension] (master) - https://gerrit.wikimedia.org/r/14051 [07:27:51] 03(mod) Error creating thumbnail: convert: Insufficient memory (case 4) (High resolution JPG) - 10https://bugzilla.wikimedia.org/37367 +comment (10Marco) [07:33:41] 03(mod) Memory problem with large progressive jpegs (on Commons and other wikis) - 10https://bugzilla.wikimedia.org/24228 +comment (10Marco) [07:41:12] 03(mod) Process: Call to undefined method SMWDIWikiPage::getTypeID() - 10https://bugzilla.wikimedia.org/35003 (10jjbustor) [07:50:11] New patchset: Henning Snater; "focussing add button after adding a new site link" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18450 [07:53:30] New patchset: Raimond Spekking; "Add i18n file" [mediawiki/extensions/GeoGebra] (master) - https://gerrit.wikimedia.org/r/18451 [07:54:38] 03(mod) Merge the Wikidata ContentHandler branch - 10https://bugzilla.wikimedia.org/38622 +comment (10Tim Starling) [07:55:04] New patchset: Raimond Spekking; "Add i18n file" [mediawiki/extensions/GeoGebra] (master) - https://gerrit.wikimedia.org/r/18451 [07:57:10] Change merged: Siebrand; [mediawiki/extensions/GeoGebra] (master) - https://gerrit.wikimedia.org/r/18451 [08:01:34] New review: Tpt; "Jdlrobson has made a + 1, this patch is waiting for a long time and has been tested. I think that I ..." [mediawiki/extensions/ProofreadPage] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/6808 [08:01:34] Change merged: Tpt; [mediawiki/extensions/ProofreadPage] (master) - https://gerrit.wikimedia.org/r/6808 [08:11:36] New patchset: Tobias Gritschacher; "added forced sleep for all browsers to ajax-wait to avoid random failures" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18452 [08:11:47] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18452 [08:12:52] New patchset: Raimond Spekking; "Register GeoGebra extension" [translatewiki] (master) - https://gerrit.wikimedia.org/r/18453 [08:13:10] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/18453 [08:30:13] 03siebrand * 10/trunk/extensions/OpenID/OpenID.i18n.php: Fix typos. [08:31:39] New review: Nikerabbit; "What's conflicting here?" [mediawiki/extensions/Translate] (translatesvg); V: 1 C: 2; - https://gerrit.wikimedia.org/r/18276 [08:33:03] New review: Nikerabbit; "Why only add @since 1.17 to few of the functions? The whole class is @since 1.17, so shouldn't it be..." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18253 [08:35:22] 03(NEW) Create the My best KB layout for Gurumukhi Punjabi in Narayam - 10https://bugzilla.wikimedia.org/39218 normal; MediaWiki extensions: Narayam; (shijualex) [08:38:12] 03(mod) Create the My best KB layout for Gurumukhi Punjabi in Narayam - 10https://bugzilla.wikimedia.org/39218 +comment (10Shiju Alex) [08:40:05] New review: Nikerabbit; "Since the test is failing now we need to fix the issue with high priority. Could have removed the wo..." [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/17905 [08:48:48] New patchset: Tobias Gritschacher; "added WIKI_CLIENT_URL config-var to selenium tests and renamed WIKI_URL config-var to WIKI_REPO_URL" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18454 [08:50:07] 03(NEW) Research and Update Gurumukhi Inscript Layout - 10https://bugzilla.wikimedia.org/39219 normal; MediaWiki extensions: Narayam; (shijualex) [08:50:20] New review: John Erling Blad; "Still gets a strange failure on this one." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17057 [08:50:42] 03(mod) Tweak message 'wb-special-createitem-new-item-notification' - 10https://bugzilla.wikimedia.org/37768 +i18n (10Aude) [08:52:23] New patchset: Siebrand; "Fix typo: occured -> occurred." [mediawiki/extensions/Configure] (master) - https://gerrit.wikimedia.org/r/18455 [08:52:40] Change merged: Siebrand; [mediawiki/extensions/Configure] (master) - https://gerrit.wikimedia.org/r/18455 [08:55:17] New patchset: Tobias Gritschacher; "added WIKI_CLIENT_URL config-var to selenium tests and renamed WIKI_URL config-var to WIKI_REPO_URL" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18454 [08:55:53] Change merged: Henning Snater; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18454 [08:58:45] 03(mod) SpecialItemByLabel should/should not redirect to the ordinary item page - 10https://bugzilla.wikimedia.org/39201 (10jeblad) [09:00:44] New patchset: Siebrand; "Fix typo: occured -> occurred." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18456 [09:09:19] 03(mod) Create the My best KB layout for Gurumukhi Punjabi in Narayam - 10https://bugzilla.wikimedia.org/39218 (10Srikanth Logic) [09:09:30] 03(mod) SpecialItemByLabel should/should not redirect to the ordinary item page - 10https://bugzilla.wikimedia.org/39201 (10jeblad) [09:19:20] New review: Santhosh; "We can remove dialog from the names. just ext.uls.languagesettings.css/js" [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/18446 [09:24:21] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18456 [09:25:45] 03(NEW) A bad filename should be changed silently instead of stopping the upload with "unknown-warning" - 10https://bugzilla.wikimedia.org/39220 normal; MediaWiki extensions: UploadWizard; (raimond.spekking) [09:26:26] 03(mod) Gurumukhi LLA should have dot to the left of Gurumukhi LA - 10https://bugzilla.wikimedia.org/39219 +upstream; summary; +comment (10Srikanth Logic) [09:26:39] New patchset: Amire80; "Change assertTrue() to ok() and fix some whitespace" [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/18457 [09:28:35] 14(DUP) Make page move reason text box single lined - 10https://bugzilla.wikimedia.org/39215 +comment (10Alexandre Emsenhuber [IAlex]) [09:28:35] 03(mod) The move reason field should be one line only - 10https://bugzilla.wikimedia.org/13627 +comment (10Alexandre Emsenhuber [IAlex]) [09:30:25] 03(mod) Curation Toolbar Deletion Tag Wizard: Additional Requirements - 10https://bugzilla.wikimedia.org/39090 +comment (10Heather Walls) [09:38:47] Change merged: Nikerabbit; [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/18457 [09:40:22] New patchset: Amire80; "Fix deprecated QUnit functions" [mediawiki/extensions/WebFonts] (master) - https://gerrit.wikimedia.org/r/18458 [09:45:31] Change merged: Nikerabbit; [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/18449 [09:46:40] Change merged: Nikerabbit; [mediawiki/extensions/WebFonts] (master) - https://gerrit.wikimedia.org/r/18458 [09:51:03] 03(mod) Parsoid: components in bugzilla mis-spelled - 10https://bugzilla.wikimedia.org/39217 +comment (10Andre Klapper) [09:51:35] New review: Nikerabbit; "Type slowly: for?aen" [mediawiki/extensions/UniversalLanguageSelector] (master); V: -1 C: 0; - https://gerrit.wikimedia.org/r/18247 [09:52:34] New review: Platonides; "I find this annoying. From one short word up to 5. The revision actions should be short and lean." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/16932 [09:55:08] New patchset: John Erling Blad; "Removed url args for usekeys/nousekeys, and also setting through config" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18258 [09:57:18] New review: Nikerabbit; "Why does it clear the map selection only after some timeout?" [mediawiki/extensions/UniversalLanguageSelector] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18448 [09:58:06] Change merged: Tobias Gritschacher; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18258 [10:01:05] New patchset: Tpt; "JavaScript refactoring: page quality buttons." [mediawiki/extensions/ProofreadPage] (master) - https://gerrit.wikimedia.org/r/6064 [10:05:37] 03(mod) Allow user to specify block settings from CU form - 10https://bugzilla.wikimedia.org/16306 +comment (10Marco Aurelio) [10:06:32] 03(mod) Add AWB to list of products - 10https://bugzilla.wikimedia.org/39072 +comment (10Andre Klapper) [10:06:52] 03(mod) Remove the nousekeys parameter from the API - 10https://bugzilla.wikimedia.org/39145 (10jeblad) [10:07:22] 03(mod) Checkuser mass blocker should "block e-mail" by default - 10https://bugzilla.wikimedia.org/24482 +comment (10Marco Aurelio) [10:18:53] New patchset: IAlex; "Follow-up I62ba23bd (a47892a): update AutoLoader comment." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18459 [10:19:52] 03(FIXED) CheckUser mass blocker unexpectedly blocks talk page access - 10https://bugzilla.wikimedia.org/24894 +comment (10Marco Aurelio) [10:20:16] New review: Santhosh; "because clearing the maps is done in success, error handler of language filter. the delay is search ..." [mediawiki/extensions/UniversalLanguageSelector] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18448 [10:24:08] New patchset: Daniel Werner; "'usecheckboxes' option implemented for HTMLMultiSelectField." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/8924 [10:25:47] 03(mod) wbgetitems to return revid (2) - 10https://bugzilla.wikimedia.org/39140 (10jeblad) [10:28:00] 03(mod) Add AWB to list of products - 10https://bugzilla.wikimedia.org/39072 +comment (10Marios Magioladitis) [10:29:03] New patchset: Tpt; "(bug 37840) add of quality level CSS in order to doesn't have to set them by hand in common.css" [mediawiki/extensions/ProofreadPage] (master) - https://gerrit.wikimedia.org/r/18460 [10:30:57] 03(ASSIGNED) ProofreadPage extension should provide css - 10https://bugzilla.wikimedia.org/37840 +comment (10Tpt) [10:36:47] 03(mod) PNG cannot display thumbnails if the original over 12.5 megapixels - 10https://bugzilla.wikimedia.org/18826 +comment (10Marco) [10:38:42] 03(mod) Allow blocking open proxies based on X-Forwarded-For header - 10https://bugzilla.wikimedia.org/23343 +comment (10Marco Aurelio) [10:38:56] New patchset: Alex Monk; "Use wfMessage instead of deprecated wfMsg*" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/16464 [10:48:53] hi there [10:48:57] im new here [10:49:36] anyone here [10:49:43] HELL [10:49:51] HELLO [10:50:36] hi kenn [10:53:37] Are there any good examples of API modules which take a JSON input? [10:54:56] New review: Henning Snater; "Reviewed the code changes, have had all unit tests run without any abnormalities and manually tested..." [mediawiki/core] (master) C: 1; - https://gerrit.wikimedia.org/r/8924 [11:07:08] 03(mod) Add an edit link to the languages (3) - 10https://bugzilla.wikimedia.org/37633 +comment (10denny vrandecic) [11:13:33] I have tried to change my email on bugzill two times already, just doesn't work even after clicking the confirmation link sent to the new mail. Is this known to be broken? [11:18:00] 03(NEW) Inconsistent state within the internal storage backends - 10https://bugzilla.wikimedia.org/39221 normal; Wikimedia: Media storage; (yannfo) [11:18:56] 03(mod) Allow users to scroll to the next region - 10https://bugzilla.wikimedia.org/38696 normal->15enhancement; +comment (10Daniel Werner) [11:21:23] New patchset: Liangent; "(bug 26342) Tutorial language should use the usual language fallback mechanisms" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/18461 [11:21:55] 03(ASSIGNED) Tutorial language should use the usual language fallback mechanisms - 10https://bugzilla.wikimedia.org/26342 +comment (10Liangent) [11:25:30] 03(NEW) In "Worldwide", scrolling shouldn't remove the focus from "Worldwide" - 10https://bugzilla.wikimedia.org/39222 normal; MediaWiki extensions: UniversalLanguageSelector; (Danweetz) [11:30:44] Danny_B|backup: ping [11:30:58] or someone with admin rights on mediawiki wiki? [11:32:29] New patchset: Aude; "adding and updating qqq messages for autocomment stuff" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18462 [11:35:16] New review: Henning Snater; "Tested the patchset on Windows in recent versions of FF, IE, Chrome, Opera and Safari. Just having s..." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/18234 [11:35:44] aude: me [11:37:52] hm, why labs phabricator instance doesn't have fb login? [11:37:54] but has google? [11:38:24] 03(mod) In "Worldwide", scrolling shouldn't remove the focus from "Worldwide" - 10https://bugzilla.wikimedia.org/39222 +design (10Srikanth Logic) [11:42:27] aharoni: can i get auto approve pending changes rights? [11:42:34] on mediawiki.org? [11:42:36] New patchset: John Erling Blad; "Added the fields that also the usual API uses" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18463 [11:42:37] let me see [11:42:49] * aude thinks i'm trusted enough ;) [11:44:08] domas: odd [11:44:45] aude: https://www.mediawiki.org/wiki/Project:Editor , right? [11:45:10] google = login for wmf staff i think [11:45:32] aharoni: i think so [11:45:50] enjoy. [11:46:29] hi [11:46:43] yay ) [11:46:46] :) [11:47:19] {{#babel|lang}} does not add a page to User-lang category on plwikisource [11:47:24] OOPS [11:47:32] {{#babel:lang}} does not add a page to User-lang category on plwikisource [11:47:44] unlike plwiki or frwikisource [11:47:52] any hints how to fix it? [11:48:35] 03(mod) wbgetitems to return revid (2) - 10https://bugzilla.wikimedia.org/39140 (10jeblad) [11:49:45] New review: John Erling Blad; "This is a patchset for https://bugzilla.wikimedia.org/show_bug.cgi?id=39140" [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18463 [11:50:48] New review: Aude; "See https://translatewiki.net/wiki/Thread:Support/msg-mw:Wikibase-item-summary-wbsetsitelink-set/en_..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18462 [11:55:00] New patchset: Matmarex; "(bug 25830) fix JS preview causing the page to "jump"" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18234 [11:59:04] New patchset: Jeroen De Dauw; "Updating caching code of the client [DO NOT MERGE]" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18107 [12:03:31] 03(NEW) Clicking "Worldwide" after clicking some other area first doesn't show all languages - 10https://bugzilla.wikimedia.org/39223 major; MediaWiki extensions: UniversalLanguageSelector; (Danweetz) [12:08:15] 03(NEW) Scrolling in languages when one of the three areas is selected makes the selection jump - 10https://bugzilla.wikimedia.org/39224 normal; MediaWiki extensions: UniversalLanguageSelector; (Danweetz) [12:12:07] ankry: my guess is that you have to define $wgBabelCategoryNames. Can you open a bug in Bugzilla, please? [12:12:57] 03(mod) Memory problem with large progressive jpegs (on Commons and other wikis) - 10https://bugzilla.wikimedia.org/24228 +comment (10Bawolff) [12:13:57] which is the best page to keep track of when we are having internal releases of MW WMF ? [12:17:56] sDrewth: does this help? - http://www.mediawiki.org/wiki/MediaWiki_1.20/Roadmap#Schedule_for_the_deployments [12:18:30] yep amir, that will be sweet [12:18:34] thx [12:20:15] 14(DUP) Edit toolbar link tool shows "Page exists" for a non-existing page - 10https://bugzilla.wikimedia.org/38999 +comment (10Eran Roz) [12:20:16] 03(mod) [Regression] Link dialog flags all pages as existing and breaks on invalid titles - 10https://bugzilla.wikimedia.org/38820 +comment (10Eran Roz) [12:20:46] New review: Jeroen De Dauw; "If there are no concrete objections against merging it, I will do so (two days from now). We can the..." [mediawiki/extensions/SemanticResultFormats] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17165 [12:27:43] New review: Amire80; "Seems to work as advertised." [mediawiki/extensions/cldr] (master); V: 1 C: 1; - https://gerrit.wikimedia.org/r/18415 [12:46:22] 03(mod) Clicking "Worldwide" after clicking some other area first doesn't show all languages - 10https://bugzilla.wikimedia.org/39223 +comment (10Srikanth Logic) [12:56:11] Can I makeit where a standalone php file has to be ran from a mediawiki instance. [12:58:14] Reedy: I got some cluster related questions for WD, got some time? [12:58:59] Let's ask at the operations channel instead... [13:01:31] 03(mod) Allow users to scroll to the next region - 10https://bugzilla.wikimedia.org/38696 +comment (10Pau Giner) [13:11:47] 03(NEW) #babel does not add a page to User-lang category - 10https://bugzilla.wikimedia.org/39225 normal; MediaWiki extensions: Babel; (ankry) [13:13:00] aharoni: [[bugzilla:39225]] [13:14:05] 03(NEW) Special:Articles is blank - 10https://bugzilla.wikimedia.org/39226 normal; MediaWiki extensions: EducationProgram; (ragesoss) [13:20:09] 03(mod) #babel does not add a page to User-lang category - 10https://bugzilla.wikimedia.org/39225 (10Amir E. Aharoni) [13:21:32] 03(mod) #babel does not add a page to User-lang category - 10https://bugzilla.wikimedia.org/39225 +shell; +comment (10Amir E. Aharoni) [13:21:53] 03(mod) Special:OnlineAmbassadors gives internal error message - 10https://bugzilla.wikimedia.org/39205 +comment (10Sage Ross) [13:22:47] 14(DUP) Special:Articles is blank - 10https://bugzilla.wikimedia.org/39226 +comment (10Sam Reed (reedy)) [13:22:48] 03(mod) Special:Articles should at least have a message on it - 10https://bugzilla.wikimedia.org/37595 +comment (10Sam Reed (reedy)) [13:25:44] 03(mod) Special:Articles should at least have a message on it - 10https://bugzilla.wikimedia.org/37595 +comment (10Sage Ross) [13:37:35] 03(mod) Add portal namespace at sewiki - 10https://bugzilla.wikimedia.org/39206 normal->15enhancement (10Sam Reed (reedy)) [13:38:56] 03(mod) Clicking "Worldwide" after clicking some other area first doesn't show all languages - 10https://bugzilla.wikimedia.org/39223 +comment (10Daniel Werner) [13:43:40] 03(NEW) action=mobileview override parameter is not described - 10https://bugzilla.wikimedia.org/39227 trivial; MediaWiki extensions: MobileFrontend; (sam) [13:49:13] I have a wiki with lots of seemingly obsolete customized messages in the MediaWiki namespace. [13:50:38] A list of obsolete message names would be quite handy for cleaning them up. Is something like that avaiable? [13:51:01] Not really [13:51:10] Theres messages.inc which is a list of all currently used core messages [13:51:33] Oh [13:51:37] Special:AllMessages [13:51:44] select modified [13:52:57] Reedy: so the ones that will show up are used, and the others are unused? [13:53:59] I think so. Though I'm not sure how messages that don't have messages defined in mediawiki show up [13:54:25] New review: John Erling Blad; "This is due to a bug, but needs to be handled slightly different. I'll make a fix to a file first an..." [mediawiki/extensions/Wikibase] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/18462 [13:55:38] 03(mod) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +comment (10Sam Reed (reedy)) [13:56:51] Reedy: yep, unfortunately, gadget files etc seem to be out of scope of the feature. [13:59:02] New patchset: Reedy; "jQuery 1.8" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17455 [14:00:40] 03(FIXED) Update jquery.tablesorter to work with jQuery 1.8 - 10https://bugzilla.wikimedia.org/39156 +comment (10Sam Reed (reedy)) [14:04:47] 03(NEW) mediawiki.api qunit test failures - 10https://bugzilla.wikimedia.org/39228 normal; MediaWiki: Unit tests; (sam) [14:05:54] 03(NEW) mediawiki.user getGroups qunit tests fail - 10https://bugzilla.wikimedia.org/39229 normal; MediaWiki: Unit tests; (sam) [14:06:15] New review: Reedy; "Seems ok to me, bar bug 39229 and bug 39228, but those occur with or without jQuery 1.8" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17455 [14:09:43] New patchset: John Erling Blad; "Fix for erroneous message from lang attribute module" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18465 [14:24:19] New patchset: Reedy; "Deglobali[sz]ation!" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/15506 [14:25:58] Change abandoned: Reedy; "Abandoning due to many conflicts rebasing" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/15506 [14:31:05] New review: Yaron Koren; "Isn't my objection concrete?" [mediawiki/extensions/SemanticResultFormats] (master) C: 0; - https://gerrit.wikimedia.org/r/17165 [14:33:37] 03(FIXED) "(last change)" in new messages box should link to combined diff of all changes since last visit - 10https://bugzilla.wikimedia.org/12701 +comment (10Liangent) [14:34:18] 03(NEW) Autocompletion does not get cleared on region change - 10https://bugzilla.wikimedia.org/39230 normal; MediaWiki extensions: UniversalLanguageSelector; (pginer) [14:34:27] 03(mod) Autocompletion does not get cleared on region change - 10https://bugzilla.wikimedia.org/39230 +i18n (10Pau Giner) [14:40:40] 03(NEW) Use full area names instead of shorthands - 10https://bugzilla.wikimedia.org/39231 normal; MediaWiki extensions: UniversalLanguageSelector; (Danweetz) [14:40:43] MaxSem: hex core cpu, windows sees it as 12 cores, AWB on thread priority normal is using a grand total of 17% of my cpu capacity... [14:41:20] Reedy, for dump scan? [14:41:24] ya [14:41:48] it's now decided it's going ot be around 7800 minutes... [14:42:03] 5.5 days or so :/ [14:43:23] can you look at the number of threads actually running? [14:43:44] windows lists 24 [14:43:52] Steam is using 60 and VS2010 92 :p [14:43:55] let me check in VS [14:45:01] New review: Siebrand; "Thanks a lot, Katie, even though John doesn't want this merged. Evil John!" [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18462 [14:45:28] New patchset: Liangent; "(Bug 35987) Clarify change password on Special:ChangeEmail" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/17690 [14:45:32] Which shows nothing in the window [14:45:33] grr [14:46:49] Change merged: Siebrand; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18459 [14:47:35] 03(ASSIGNED) Ambiguous "Password:" header on Special:ChangeEmail - 10https://bugzilla.wikimedia.org/35987 (10Liangent) [14:48:46] New review: Jeroen De Dauw; "Yaron: your objection is concrete yes. However we do not reject changes as soon as someone has a con..." [mediawiki/extensions/SemanticResultFormats] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17165 [14:51:19] 03(mod) Use full area names instead of shorthands - 10https://bugzilla.wikimedia.org/39231 +comment (10Niklas Laxström) [14:53:24] 03(mod) Add link to user page for anonymous user on contribsub message (subtitle of Special:Contributions) - 10https://bugzilla.wikimedia.org/38466 +comment (10Liangent) [14:56:42] MaxSem: most of them are SecondaryThreads [14:57:25] mhm, does AWB work from VS epress these days? [14:57:55] It should, if you don't load kingbotk plugin [14:59:32] 03(mod) SpecialItemByLabel should/should not redirect to the ordinary item page - 10https://bugzilla.wikimedia.org/39201 +comment (10Daniel Kinzler) [15:00:34] New review: Daniel Kinzler; "@john: i can't reproduce this. " [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17057 [15:03:06] New patchset: Liangent; "Do correct path detection in NoLocalSettings.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18466 [15:03:44] 03(WONTFIX) Add link to user page for anonymous user on contribsub message (subtitle of Special:Contributions) - 10https://bugzilla.wikimedia.org/38466 +comment (10Nemo_bis) [15:06:18] Change abandoned: Liangent; "Fails when a directory is called something.php..." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18466 [15:07:30] 03(NEW) Incorrect path detection in NoLocalSettings.php - 10https://bugzilla.wikimedia.org/39232 normal; MediaWiki: Installer; (liangent) [15:11:39] 03(mod) RTL/bidirectional issues (tracking) - 10https://bugzilla.wikimedia.org/745 (10Amir E. Aharoni) [15:11:42] 03(NEW) direction of justtranslated is not set according to the language - 10https://bugzilla.wikimedia.org/39233 normal; MediaWiki extensions: Translate; (amir.aharoni) [15:12:11] New patchset: Daniel Werner; "use __DIR__ instead of dirname(__FILE__)" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18467 [15:13:39] New patchset: Liangent; "Trim $dbSupport in WebInstallerPage.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18468 [15:14:49] New patchset: Siebrand; "Fix typo." [mediawiki/extensions/Validator] (master) - https://gerrit.wikimedia.org/r/18469 [15:15:39] New review: Yaron Koren; "I don't understand - what's the rush? The patch has only been around for a little over a week; the n..." [mediawiki/extensions/SemanticResultFormats] (master) C: 0; - https://gerrit.wikimedia.org/r/17165 [15:15:46] what is a dump scan ? [15:15:55] hi OrenBo [15:16:00] New review: John Erling Blad; "Found it, my fault, the Diff extension wasn't updated. But that imply that the tests for the diff so..." [mediawiki/extensions/Wikibase] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/17057 [15:16:37] hi Nikerabbit: [15:16:47] 03siebrand * 10/trunk/extensions/Storyboard/Storyboard.i18n.php: Fix typo. [15:17:31] New patchset: Amire80; "(bug 39233) Apply dir="auto" to justtranslated" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/18470 [15:19:08] 03(NEW) no courses are listed in the "current courses" column of Special:Students - 10https://bugzilla.wikimedia.org/39234 normal; MediaWiki extensions: EducationProgram; (ragesoss) [15:19:14] OrenBo: scanning an xml database dump [15:19:17] New patchset: Amire80; "(bug 39233) Apply dir="auto" to justtranslated" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/18470 [15:19:35] New patchset: Liangent; "(bug 38388) Add documentation for MediaWiki:Config-support-info" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18471 [15:19:42] what for ? [15:19:49] 03(ASSIGNED) MediaWiki:Config-support-info is confusing, needs rewording - 10https://bugzilla.wikimedia.org/38388 +comment (10Liangent) [15:20:09] New patchset: Siebrand; "Fix typos." [mediawiki/extensions/Maps] (master) - https://gerrit.wikimedia.org/r/18472 [15:21:18] Change merged: Jeroen De Dauw; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18467 [15:21:39] New patchset: Siebrand; "Fix typo." [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/18473 [15:22:14] http://dumps.wikimedia.org/backup-index.html [15:22:19] Change merged: Siebrand; [mediawiki/extensions/Validator] (master) - https://gerrit.wikimedia.org/r/18469 [15:22:30] Change merged: Siebrand; [mediawiki/extensions/Maps] (master) - https://gerrit.wikimedia.org/r/18472 [15:22:42] are you cheking the dump or searching for something in them [15:22:43] Change merged: Siebrand; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/18473 [15:25:15] yeah, typos [15:25:17] New patchset: Siebrand; "Fix typos." [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18474 [15:25:53] 03(mod) MediaWiki:Config-support-info is confusing, needs rewording - 10https://bugzilla.wikimedia.org/38388 +comment (10Nemo_bis) [15:26:46] New patchset: Siebrand; "Fix typos." [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18475 [15:27:11] Change merged: Siebrand; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18474 [15:27:30] New review: Nikerabbit; "We should also remove the language code (or set the correct one) and do the same stuff also for embe..." [mediawiki/extensions/Translate] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18470 [15:27:35] Change merged: Siebrand; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/18475 [15:29:56] New review: Nikerabbit; "I think the sorting is better done in callers. This way we force the sort for everyone, even if they..." [mediawiki/extensions/cldr] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/18415 [15:31:03] New patchset: Tobias Gritschacher; "added selenium test checking wikidata-client-repo connection." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/18476 [15:34:20] Change merged: Siebrand; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/18471 [15:38:46] New patchset: Siebrand; "Fix typos and tweak messages." [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/18477 [15:39:12] Change merged: Siebrand; [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/18477 [15:41:56] New review: Subramanya Sastry; "I have 7 additional RT failures with this change." [mediawiki/extensions/Parsoid] (master); V: -1 C: 0; - https://gerrit.wikimedia.org/r/18441 [15:47:15] New review: Amire80; "Do you refer to the