[00:00:02] you know, suppose somebody provides you a new patchset for you in master -> how to bring changes again? [00:00:35] i guess this branch will be more like a separate repo with frequent pulls from master [00:00:45] but that won't be destined to be merged [00:00:53] aha [00:01:46] but that's a separate issue, can you help with even trying to sync it up to the master [00:01:54] :) [00:01:56] maybe [00:02:00] either the branch was created incorrectly [00:02:06] or i'm really dumb :) [00:02:15] no, it's fine [00:02:22] do you know how rebase really works? [00:02:33] ? [00:02:39] you mean git review? [00:02:43] I would recommend trying doing "rebase" by hand and see how it feels [00:02:47] no, git rebase [00:02:54] forget about git review for a moment :) [00:02:56] right, but that's my point - it fails on commit [00:03:23] now that i have api_ver behind master by several versions (btw, is there a way to check that?) [00:03:27] $ git rebase master [00:03:27] First, rewinding head to replay your work on top of it... [00:03:27] Fast-forwarded API_Versioning to master. [00:04:03] could my db be messed up [00:04:04] saper: before i do the rebase, can i see how far behind api_Ver is ? [00:04:05] this is what happened to me when I tried to rebase 1ea3840 [00:04:10] New patchset: Siebrand; "Simplify 'wminc-fs-settings-text' and improve link" [mediawiki/extensions/WikimediaIncubator] (master) - https://gerrit.wikimedia.org/r/41192 [00:04:12] yes [00:04:12] @marktraceur: Thanks, you're VERY helpful! :) So, it's about collation (alphanumeric sorting of text and/or numbers). Does MediaWiki provide a way to sort table cell contents using http://cldr.unicode.org/? I've seen the page http://meta.wikimedia.org/wiki/Help:Sorting, but it's not the same thing at first look... Any thoughts on this? [00:04:12] just cant seem to fix the page [00:04:17] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki%2Fcore.git;a=commit;h=b69da9ad53743b9e66123d8363e26902e719ec80 [00:04:24] Where was that change reviewed? [00:04:36] I can't find it at Special:Code/MediaWiki or in Gerrit. [00:04:40] git log master ^API_Versioning [00:05:06] ("give me all revisions starting from "master" but not (^) covered by API_Versioning) [00:05:16] Change merged: Siebrand; [mediawiki/extensions/WikimediaIncubator] (master) - https://gerrit.wikimedia.org/r/41192 [00:05:30] thanks :) [00:05:37] some-guy-from-Ea: Something about that rings a bell, actually. There may be a patchset for it. [00:05:39] which is a shortcut of "git log 8543b735ef5afaabaf021deced3030ac7dad5f14 ^1ea3840983d60dfb77b2fa9e1537cf619ac1e7c4" :) [00:05:54] ok, so now i'm rebasing [00:05:56] Ah, no, no such luck [00:06:18] some-guy-from-Ea: I don't know if that's possible, but it certainly sounds like something we'd like to support. [00:06:19] and that works, but now i can't push [00:06:35] rebase gave 8543b73 [00:06:54] can you try [00:07:10] New review: Siebrand; "Cool beans." [mediawiki/extensions/Echo] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/41189 [00:07:46] "git push gerrit HEAD:refs/heads/API_Versioning ? [00:07:52] @marktraceur: Thanks for your reply. I guess adding support for CLRD-based collation/sorting isn't going to be easy, but I guess that this also means having to add an option in the MediaWiki settings for the selection of collation/sorting method. ;D [00:08:22] some-guy-from-Ea: True, but I've definitely seen i18n people working with cldr before, so it's not totally far-fetched [00:09:56] getting "can not update the reference as a fast forward" which is what you've had before, probably [00:10:05] yep [00:10:14] saper: just redid with yoru command, same err [00:13:07] Yurik: not sure there are permissions set to do that for you [00:13:28] can someone change that? [00:13:38] Yurik: ^demon for example [00:13:39] i thought branches are more open than master [00:13:54] do you have a project defined in gerrit? [00:14:04] * Yurik chooses DeamonHunter class [00:14:15] frankly I am not sure I would bother with gerrit for my local branch [00:14:36] i don't want it local - i would rather share progress and get some feed back [00:14:50] plus pull from labs [00:15:02] which is a pain to setup directly from local [00:15:13] New patchset: Jarry1250; "Add Special:TranslateNewSvg" [mediawiki/extensions/TranslateSvg] (master) - https://gerrit.wikimedia.org/r/19767 [00:15:52] Yurik: https://review.openstack.org/#/q/owner:saper%2540saper.info,n,z here's how I did this for openstack, I submitted a set of changesets, which depend on each other, but this is pain as well [00:16:14] Yurik: I think that review in master and work in branch won't work together well [00:16:37] you might end up like wikidata guys [00:16:43] ok, so do we use server branches at all for core? [00:16:55] Yurik: rarely I think [00:17:20] what would try to do is [00:17:24] get current master [00:17:29] create local branch [00:17:35] copy your changes you want to do [00:17:49] 03(mod) {{[[a]]}} is not parsed correctly - 10https://bugzilla.wikimedia.org/42773 +comment (10Gabriel Wicke) [00:17:59] use "git add -p" to select change 1 [00:18:15] then git branch -b ChangeOne && git commit [00:18:20] 03(NEW) Summary field with 4 edits gets warning - 10https://bugzilla.wikimedia.org/43496 normal; MediaWiki extensions: LiquidThreads; () [00:18:28] 03(mod) Summary field with 4 tiles gets warning - 10https://bugzilla.wikimedia.org/43496 summary (10Siebrand) [00:18:32] then "git reset --soft master" [00:18:35] 03(mod) Summary field with 4 tildes gets warning - 10https://bugzilla.wikimedia.org/43496 summary (10Siebrand) [00:18:47] "git add -p" second INDEPENDENT change [00:19:10] (sorry git checkout -b ChangeOne on "branch") [00:19:14] not "branch" [00:19:39] "git checkout -b SecondChange && git commit" [00:20:01] if something depends on ChangeOne, switch to that branch, "git add -p" again and commit, and so on [00:20:13] keeping independent changes directly off master [00:20:58] gerrit works best with mastering of single (larger?) commits, not branches (chains of commits) [00:21:21] that's fine, but the thing is that there will be a large set of changes and experimentations (hopefully) going on on the labs instance [00:21:37] where we will play around various APIv2 structuring [00:22:00] and where people can already try their frameworks against [00:22:35] welll you can always "git cherry-pick -n" your changes on top of the master and submit that for review [00:23:16] but i don't want that reviewed just yet - what i'm looking for is a parallel dev branch. I'm begining to think of github to host this until i merge it back [00:23:49] i mean if i can't have a branch without gerrit that can be pulled from master, what's the point? [00:24:03] this will be an experimental branch [00:24:20] sure [00:24:23] history is not very important, what's important is to be able to do pulls all the time [00:24:34] you can just use the gerrit branch (provided your permissions are okay) [00:24:38] and once we decide that this is it, i will start pushing it as patches to master [00:24:43] which will feel the same like github [00:25:08] sigh, and no !admins around :( [00:25:13] hmmm? [00:25:20] to change the permissions :) [00:25:29] 2nd day... or is it 3rd [00:25:38] i'm just wining [00:25:42] I don't think ! a d m i n will be very useful on #mediawiki. [00:25:48] winning [00:26:05] is this https://gerrit.wikimedia.org/r/#/c/41014/ what you want to work on your branches? [00:26:12] I guess the people having that at highlight is because they are sysop on other projects. [00:26:22] Try to ask Ryan_Lane or demon. [00:26:54] pinging on mwdev [00:27:15] 03(mod) Some contributions show as empty list items on Special:Contributions - 10https://bugzilla.wikimedia.org/39062 +patch-need-review; +comment (10Isarra) [00:28:06] saper: #wikimedia-dev [00:28:07] Yurik: there are some tricks, like for example this I just tried: "git fetch gerrit refs/changes/14/41014/*:refs/chanes/14/41014/*" [00:32:37] 03(mod) Loading of Edit Page occasionally incomplete on ml.wikipedia - 10https://bugzilla.wikimedia.org/41802 +comment (10Marius Hoch) [00:39:09] New patchset: Siebrand; "Remove message keys related to uploading text files" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/41193 [00:43:28] 03(mod) Add "Developer" or "API" link to footer of Wikimedia wikis - 10https://bugzilla.wikimedia.org/33464 +comment (10MZMcBride) [00:45:15] lol. [00:45:24] damnnn [00:45:57] Reedy: Can you do me a favour on the DB once again? [00:46:07] ? [00:46:26] New review: Yurik; "replied inline to Reedy." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/41014 [00:46:27] Can you run mysql> DESCRIBE abuse_filter_log; and look whether alf_deleted is there? [00:46:34] On any live wiki [00:46:35] Where? [00:46:47] afl_deleted, surely? ;) [00:47:20] | afl_deleted | tinyint(1) | NO | | 0 | | [00:47:26] ah [00:47:35] crappy toolserver just fooled me again, thank goda [00:47:45] already thought we messed up db schemes [00:47:45] Reedy: thx for the review, replied [00:47:52] don't think its an issue [00:48:10] valid parameter lists do not need to be generated at all [00:52:55] 03(NEW) Change name of {{noexternallanglinks}} - 10https://bugzilla.wikimedia.org/43497 normal; MediaWiki extensions: WikidataClient; () [01:15:06] Change merged: Mdale; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/38665 [01:16:05] Change merged: Mdale; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39042 [01:35:46] New patchset: Mdale; "Bug 43201: explicit order of control elements" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39055 [01:38:53] New review: Mdale; "Looks good. Good that we get the webm default encode format in there as well now that TMH is on." [mediawiki/extensions/UploadWizard] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/39035 [01:40:51] 03(NEW) Implement basic wikilink parsing (wlink) in jqueryMsg - 10https://bugzilla.wikimedia.org/43498 normal; MediaWiki: JavaScript; () [01:40:59] 03(mod) Implement basic wikilink parsing (wlink) in jqueryMsg - 10https://bugzilla.wikimedia.org/43498 (10Matthew Flaschen) [01:43:36] 03(mod) Loading of Edit Page occasionally incomplete on ml.wikipedia - 10https://bugzilla.wikimedia.org/41802 +comment (10sunil) [01:44:15] 03(NEW) Move wikitext parsing from jqueryMsg to server - 10https://bugzilla.wikimedia.org/43499 normal; MediaWiki: ResourceLoader; () [01:46:33] New review: Mdale; "Did an initial pass. Looks good, but I should probably test it more before a merge." [mediawiki/extensions/TimedMediaHandler] (master); V: 1 C: 1; - https://gerrit.wikimedia.org/r/39363 [01:50:07] 03(mod) Non-admins can see contents of deleted pages when viewing abusefilter details - 10https://bugzilla.wikimedia.org/42734 +comment (10Marius Hoch) [01:56:13] New review: Reedy; "I might aswell also say upfront, I don't particularly like the action=foobarN format. It feels very ..." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41014 [01:58:50] Reedy: can't do it the other way :( [01:59:00] Can't? [01:59:07] won't work well [01:59:17] there was some discussion http://lists.wikimedia.org/pipermail/mediawiki-api/2012-December/002797.html [01:59:35] basically, because you have multiple independent extensions, they can't all share the same version number [02:00:03] because people might choose to update their MW core and extensions at different time [02:00:08] breaking the expectations [02:00:26] we would have a nightmare with ver=NN [02:00:34] at first that is exactly how i wanted to do it [02:00:47] but after spending tons of time thinking about it, that's the only solution i can see [02:01:13] (i don't claim to be allseeing) [02:02:42] Reedy: take a look at this one http://lists.wikimedia.org/pipermail/mediawiki-api/2012-December/002808.html [02:02:49] it explains it the best IMHO [02:04:45] New review: Yurik; "This wasn't my initial inclination either, but after thinking it through it was the only option that..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/41014 [02:07:42] Yurik: I think you should have an RFC for this. [02:07:59] So that the plans can be laid out and brainstormed about before code is written. [02:08:06] Because it sucks to throw out code. [02:08:36] true, but i think by writing it in two days i came up with more ideas than I would in a week with RFC text :) [02:08:42] Heh. [02:08:45] :-) [02:08:50] plus there was a mailing list discussion [02:09:01] people objected, and the arguments cristalised [02:09:20] btw, after all this talk i'm seriously thinking of this api extension mechanism: [02:10:04] in config 'action=query2+prop=mylist2' => 'MyClass' [02:10:59] this way a submodule could be attached to any complex module [02:11:01] like query [02:11:22] i now feel like that creepy "i'm invincible" character... [02:16:45] 03(mod) Delete mediawiki-codereview list - 10https://bugzilla.wikimedia.org/40049 +comment (10Thehelpfulone) [02:18:50] 03(mod) Wikimedia-l messages have different ids than in Foundation-l archive - 10https://bugzilla.wikimedia.org/36364 +comment (10Thehelpfulone) [02:19:48] mixing differnt modules and versions in api queries will no doubt just lead to issues with compatability. it would just be easier to have a core api version, and then any extensions w/ api modules etc can just declare what versions they work against [02:20:06] 03(NEW) Rename {{int:mycontris}} - 10https://bugzilla.wikimedia.org/43500 normal; MediaWiki: Interface; () [02:21:13] p858snake|l: possibly - at the submodule level (query list / props), but since each action is totally independent, why would it cause any problems? [02:21:14] 03(mod) Rename {{int:mycontris}} - 10https://bugzilla.wikimedia.org/43500 +i18n (10p858snake) [02:21:27] 03(NEW) {{int:allmessagestext}} and {{int:editinginterface}} - 10https://bugzilla.wikimedia.org/43501 normal; MediaWiki: Interface; () [02:22:08] you would be surprised what people can whip up with their api queries [02:22:11] 03(mod) {{int:allmessagestext}} and {{int:editinginterface}} - 10https://bugzilla.wikimedia.org/43501 (10Hazard-SJ) [02:22:15] 03(NEW) Use of {{int:allpagessubmit}} - 10https://bugzilla.wikimedia.org/43502 normal; MediaWiki: Interface; () [02:22:20] they can - but it is still just one action [02:22:45] action=query1 vs action=query2 will never intersect [02:22:54] two different apis, two different results [02:23:21] assuming it is both a mix of query1 and query2 [02:23:32] you can't mixe them :) [02:23:41] there is only one action parameter [02:24:09] this is really identical to action=query & version=1 [02:40:32] New patchset: Mattflaschen; "(bug 43498) Implement two main wikilink types." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41195 [02:48:20] 03(mod) Implement basic wikilink parsing (wlink) in jqueryMsg - 10https://bugzilla.wikimedia.org/43498 +patch-in-gerrit +patch-need-review; +comment (10Matthew Flaschen) [02:52:07] New patchset: Ori.livneh; "Raw varnish log -> schema-validated JSON stream" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/41017 [02:59:17] New patchset: Hoo man; "(bug 15936) New page's patrol button should always be visible" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41196 [03:02:03] 03(mod) New page's patrol button should always be visible - 10https://bugzilla.wikimedia.org/15936 +patch-in-gerrit; +comment (10Marius Hoch) [03:04:08] New patchset: Mattflaschen; "Remove dead custom CSS import, and minor cleanup." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/41019 [03:04:36] New patchset: Ori.livneh; "Raw varnish log -> schema-validated JSON stream" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/41017 [03:05:02] New patchset: Hoo man; "(bug 15936) New page's patrol button should always be visible" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41196 [03:05:53] New patchset: Hoo man; "(bug 15936) New page's patrol button should always be visible" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41196 [03:20:22] Change merged: Mattflaschen; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/39074 [03:30:30] Change merged: Ori.livneh; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/41017 [03:32:00] New patchset: Mwjames; "Update qtip2 tooltip v2.0.0 - 2012-12-21" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41197 [03:33:02] New patchset: Yurik; "APIv2: module manager and help rewrite" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41198 [03:37:37] New patchset: Mwjames; "Enhance SRF eventcalendar with filter option" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/41199 [03:38:13] Change abandoned: Yurik; "I have created a new smaller patch without the versioning part at https://gerrit.wikimedia.org/r/#/..." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41014 [03:47:57] @marktraceur: It's nice to hear that. :) Again, thanks for your reply! [03:51:27] New patchset: Hoo man; "(bug 15936) New page's patrol button should always be visible" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41196 [03:56:30] uh, dumb question but how do i amend a commit? [03:56:44] New review: Mwjames; "Anyone is free to merge it otherwise I'll do it in 2013. It can be merged with 1.8 as well." [mediawiki/extensions/SemanticMediaWiki] (master); V: 1 C: 0; - https://gerrit.wikimedia.org/r/41197 [04:01:34] Thai: which os? [04:02:03] ubuntu [04:02:53] http://www.mediawiki.org/wiki/Git/Workflow#Improving_a_change [04:02:54] New review: Mwjames; "Works as advertised." [mediawiki/extensions/SemanticResultFormats] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/41199 [04:03:05] git commit --amend [04:03:29] under windows i use git commit tool, very nice [04:03:36] and then i "git review -R"? [04:04:06] do you mean http://windows.github.com? [04:05:06] New review: Santhosh; "Can you add a few qunit tests also?" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41195 [04:09:09] New patchset: Thaiphan; "Added file backend support for Windows Azure" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41035 [04:15:53] 03(mod) hewiki asks to change default image sizes for thumb and gallery - 10https://bugzilla.wikimedia.org/41712 +comment (10Sumana Harihareswara) [04:31:32] New patchset: Thaiphan; "Added file backend support for Windows Azure" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41035 [04:34:42] Thai: depends what you want to do [04:35:13] New patchset: Ori.livneh; "JSON logs -> SQL" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/41201 [04:35:17] if you are changing an already submitted patch, you need to do git review -d NNN, change, commit with --amend, and git review -R [04:35:21] i think it worked [04:36:09] with git you should always copy your local files to a temp dir before doing any shell "git" command ;) [04:38:26] New review: Ori.livneh; "Acknowledged flaws:" [mediawiki/extensions/EventLogging] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41201 [04:39:56] yeah some guy yesterday was lamenting that he lost all his stuff [04:43:01] i was the guy [04:43:12] by some miracle eclipse saved some history [04:48:42] i normally use webmatrix when i'm on windows [04:58:44] New patchset: Mwjames; "(Bug 43205) temporary fix for display/non-display issue" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41202 [05:04:02] New review: Mwjames; "Only to be used in 1.9 branch, and as long no one has a better idea on how to fix this issue." [mediawiki/extensions/SemanticMediaWiki] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/41202 [05:05:20] 03(mod) Content/User language mix ups leading to visual distortion - 10https://bugzilla.wikimedia.org/43205 +comment (10MWJames) [05:08:08] hi all [05:09:51] just upgraded from 1.16 to 1.20.2 - the support for ExtensionFunctions.php was removed, and pretty tables do not work anymore. how can i get this pretty table stuff back, since we got 2500+ of pages using that table definitions... [05:11:18] 03(mod) extend parser function #info - 10https://bugzilla.wikimedia.org/34782 +comment (10MWJames) [05:27:30] New patchset: Mwjames; "Add SRF Mediaplayer m4v/m4a support" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/41203 [05:29:01] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/41019 [05:30:52] 03(mod) Move Special:Disambiguations and relevant messages out of core to an extension - 10https://bugzilla.wikimedia.org/35981 (10Chad H.) [05:33:59] New review: Matmarex; "Looked at the JS. (Not a full review, just a glance; I don't have time right now, sorry, I'll try to..." [mediawiki/extensions/TranslateSvg] (master) C: 0; - https://gerrit.wikimedia.org/r/20007 [05:36:13] hi .. would someone know what calls this "/load.php?debug=false&lang=en&modules=site&only=styles&skin=customskin&*" ? [05:36:25] I see it in my varnish stat log ... and it's not being cached [05:36:33] wondering if I can cache this somehow [05:37:35] just upgraded from 1.16 to 1.20.2 - the support for ExtensionFunctions.php was removed, and pretty tables do not work anymore. how can i get this pretty table stuff back, since we got 2500+ of pages using that table definitions... [05:39:41] hello,i want to contribute to mediawiki,should i volunteer first or fork the codebase? [05:41:10] Niktator: be a bit more descriptive about "pretty tables" [05:43:11] rihen: volunteer, we use git and access is pretty easy these days [05:43:20] no need to fork us at all [05:43:44] i personally had a lot of trouble setting up git to work with gerrit [05:44:07] Change merged: Mwjames; [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/41203 [05:44:44] Thai: Did you follow our guides? [05:44:49] p858snake|l: does mediaiwiki makes use of cakephp,codeigniter like frameworks ? [05:45:01] rihen: no [05:45:19] yeah, I did. I got there in the end [05:45:20] 03(mod) Can't link to files and upload - "Fatal exception of type MWException" - 10https://bugzilla.wikimedia.org/43469 +comment (10Bawolff (Brian Wolff)) [05:45:27] We have our own php style, and we use jsquery or whatever its called for js [05:45:58] p858snake|l: well, this is the old version, tables are working fine: http://wiki.rc-network.de/index.php/B-25_Mitchell_von_Ziroli now it looks like this: http://hadeswiki.rc-network.de/index.php/B-25_Mitchell_von_Ziroli - The definitions should be these: http://hadeswiki.rc-network.de/index.php/MediaWiki:Common.css [05:47:10] Niktator: couldn't you just make a new template and redirect the old one to it? [05:47:21] Niktator: you are missing extensions, not a css issue :p [05:47:45] well the old extension is not working anymore. [05:48:06] get the upto date version of ParserFunctions [05:48:51] it`s discontinued [05:49:07] and i got no idea how to "extract" the needed stuff [05:49:10] ParserFunctions isn't [05:49:41] !e ParserFunctions | Niktator [05:49:41] Niktator: https://www.mediawiki.org/wiki/Extension:ParserFunctions [05:50:25] thats all i need? weeeee [05:51:05] New review: Brian Wolff; "I was not aware of the existence of that bug when I made this change, but sure why not" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/40778 [05:51:28] http://hadeswiki.rc-network.de/index.php/B-25_Mitchell_von_Ziroli [05:51:34] thank you so much! ;) [05:52:20] i would also recommend making sure any other extensions you have are up to date and not running ~2008 versions [05:53:16] good point ;) [05:53:52] but we don`t have so much extensions i think [05:54:26] New patchset: Brian Wolff; "(bug 39062) Show revs without rev_parent_id in Special:Contributions." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40778 [05:56:32] 03(mod) [ReplaceText] Incorrect error: You must select at least one namespace. - 10https://bugzilla.wikimedia.org/38170 normal->04CRIT; +comment (10badon) [05:58:21] 03(mod) [ReplaceText] page limit option to circumvent server limitations that will inevitably cause the incorrect error: You must select at least one namespace - 10https://bugzilla.wikimedia.org/43472 15enhancement->04CRIT; +comment (10badon) [06:05:59] New patchset: Brian Wolff; "(bug 39062) Show revs without rev_parent_id in Special:Contributions." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40778 [06:06:34] New review: Brian Wolff; "PS3: is just adding the bug number" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/40778 [06:06:40] can i help mediawiki,in web development sector? [06:06:49] rihen: Yes! [06:06:57] i think i should first finish up with the beginner section listed at mediawiki's developer site . [06:07:13] What sort of things do you want to help with? [06:08:27] 03(mod) Some contributions show as empty list items on Special:Contributions - 10https://bugzilla.wikimedia.org/39062 -patch-need-review +patch-in-gerrit (10Bawolff (Brian Wolff)) [06:08:50] i can write scripts for searching databases,making schema diagrams,normalization [06:13:14] cool! I think we already have a db diagram at https://www.mediawiki.org/wiki/File:MediaWiki_database_schema_latest.svg - but its a couple versions old [06:15:50] New patchset: Brian Wolff; "(bug 5346) Make cats which are redirects italic in category links." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40781 [06:16:18] rihen: btw, if you have any questions about anything, please don't hesitate to ask [06:17:16] New review: Brian Wolff; "PS2: Fixed trailing whitespace in release notes." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40781 [06:30:12] New patchset: Mwjames; "Add top loading position to avoid screen distortion" [mediawiki/extensions/SemanticDrilldown] (master) - https://gerrit.wikimedia.org/r/41207 [06:46:19] 03(mod) Use ResourceLoaderWikiModule subclass to inject custom.css - 10https://bugzilla.wikimedia.org/43223 -patch-need-review ; +comment (10Matthew Flaschen) [06:56:57] 03(mod) Mobile browser autodetection doesn't work - 10https://bugzilla.wikimedia.org/36894 +comment (10Quim Gil) [06:58:21] hi, there! I used the importDump.php to import xml.bz2 data dumps into my local mediawiki, the machine crashed while my importing process was running, now i want to continue my work without start over again, could anybody give me some hints? Thank you! [06:59:30] my mediawiki version is 1.20.2 [07:01:12] cusion: I'm looking; it doesn't look like there's a particularly easy way [07:01:48] 03(mod) Add "Developer" or "API" link to footer of Wikimedia wikis - 10https://bugzilla.wikimedia.org/33464 +comment (10Quim Gil) [07:03:18] ori-l: so your suggestion is ? [07:04:55] how long would it take to start over? [07:09:16] i have been running it for about a week or more [07:10:54] yikes [07:11:13] okay, what do you know about how far you got? do you know which page ID? better yet, do you know the byte offset? [07:11:26] i've never done it myself, so I don't know what the output is, exactly [07:11:28] could i just change the pageCount and revCount value in the php script? [07:11:36] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40778 [07:12:07] no, those values are just used for reporting progress to the user [07:12:14] i have checked mysql tables, there is 1033907 items [07:13:20] Can someone tell me how to get rid of these errors? [07:13:25] http://www.userspace.org/index.php/Main_Page [07:13:28] 03(mod) A strict and correct Git workflow document is needed - 10https://bugzilla.wikimedia.org/36437 (10Matthew Flaschen) [07:13:30] Warning: Cannot modify header information - headers already sent by (output started at /home/u230929679/public_html/extensions/Flickrslideshow/flickrslides.php:99) in /home/u230929679/public_html/includes/WebResponse.php on line 37 [07:13:38] even though it works. [07:13:47] just want to get rid of the error messages [07:13:59] !BOM [07:13:59] There is no such key, you probably want to try: !?>, !bom, !morbo, [07:14:00] they are just warnings and the widget is working fine [07:14:15] 03(mod) Some contributions show as empty list items on Special:Contributions - 10https://bugzilla.wikimedia.org/39062 +comment (10Alexandre Emsenhuber [IAlex]) [07:14:16] oh i should read the error message first [07:14:29] sorry, there are 1033907 items in text , revision and page table [07:15:10] factor: That sounds like a faulty extension. Commonly caused by someone making a code mistake on an extension, and accidentally outputting a space [07:15:36] factor: check what's on line 99 of flickerslides.php [07:15:39] ok just getting rid of the warn messesges for now, will get back to it later [07:16:41] ori-l: are there any changes i can do to set the import process to exact page ID? [07:17:18] bawolff, the program is only 93 lines long [07:17:28] oh well, that's interesting [07:17:42] error message says line 93 [07:17:46] *99 [07:18:41] i will recopy the file back up, although just did [07:18:55] cusion: do you know the last page ID that was inserted? [07:21:13] ori-l: i ran it with nohup command, so i've no idea about the last scenario, all i got is what the "select count(*) from text[page/revision]" command told me [07:23:22] bawolff, I made the program 99 lines long and it works now. [07:23:27] was onyl 93 though [07:23:42] hmm, beats me [07:25:08] lugDB widget is doing the same. wonder if something was trying to append it self to the files. [07:25:13] just a hunch. [07:25:37] ori-l: is there any other way to get what you want? sorry for my limited knowledge... [07:26:06] are you using a free hosts that ammends things to files? [07:26:08] trying to think of the least awful way :) [07:26:18] bawolff, yes my lugDB widget is only 27 lines long but the error reads past the file [07:26:43] :( [07:26:57] or perhaps something prepends stuff, making the line numbers all move down a bunch [07:27:28] oh ok. but if I make the program longer with empty lines it works [07:30:14] cusion: can you 'select max(page_id) from page;' ? [07:33:12] factor: do the files have a ?> at the end? removing those can fix this sort of issue [07:33:48] well, another question, i previously followed a tutorial which mentions nothing about an AdminSettings.php file, but after i have start up the importing, i got another tutorial said that there should exist such a file under the installation dir in order to use the "php importDump.php xxx.xml.bz2" [07:34:28] we killed off AdminSettings years ago... nothing should be using that anymore... [07:34:43] are there any difference between exist and non-exist? [07:35:06] All it did was define the db user, name and pass, and we just use the localsettings file in most cases directly these days for that [07:35:09] bawolff, yes they do have [07:35:24] bawolff, will check that out later or if it happens again [07:35:40] p858snake|l: I thought the maintinance class still looked for it, we just reccomend people don't use it [07:37:14] ori-l: select max(page_id) from page; returns 1033896 [07:40:07] cusion: what's the revision id of that page? [07:40:17] bawolff: how to use or not use it ? [07:40:57] cusion: use what? [07:41:24] p858snake|l: I thought the maintinance class still looked for it, we just reccomend people don't use it [07:41:34] what u just said [07:42:06] 03(NEW) Need nagios alert for failures in authorized_keys creation script - 10https://bugzilla.wikimedia.org/43503 normal; Wikimedia Labs: Infrastructure; () [07:42:23] oh, I don't reccomend you use it, my point was that it still probably works [07:42:53] Just put whatever you wanted to put in that file In LocalSettings.php [07:44:31] ori-l: how to find the rev_id corresponding to exact page_id? [07:45:03] select max(rev_id) from revision where page_id = 1033896; [07:45:56] bawolff: there is no such Admin file under my installation dir, if i want to use it, should it mean that i need to creat such file? [07:46:08] 03(mod) Wikimedia-l messages have different ids than in Foundation-l archive - 10https://bugzilla.wikimedia.org/36364 +comment (10Nemo) [07:46:29] yes, you would - but again I would reccomend just putting whatever settings you want in AdminSettings to be just in LocalSettings.php [07:47:07] see https://www.mediawiki.org/wiki/Manual:AdminSettings.php for info [07:47:15] page_id does not exist in table revision as far as the desc command told me [07:47:47] uh, sorry, my bad: 'rev_page' [07:48:04] bawolff: thanks for your advices, i am just curious about it [07:48:16] cusion: select max(rev_id) from revision where rev_page = 1033896; [07:48:31] New review: Brian Wolff; "I don't think this fixes the bug." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/41196 [07:48:43] ori-l: 1033907 [07:49:15] ok, so here's my idea [07:49:28] keep in mind that this could break, i'm not responsible if it does, have a backup, etc. [07:50:21] in importDump.php, at the end of the function 'handleRevision' [07:50:33] ori-l: ok, got it, and what's next ? [07:50:51] add the following line: [07:51:56] lines, rather: [07:52:10] if ( $rev->mId == 1033907 ) { [07:52:23] echo 'Found offset!'; [07:52:43] $this->dryRun = false; [07:52:44] } [07:53:12] and run importDump.php with the --dry-run switch [07:53:35] it will switch out of dry run mode when it encounters that revision [07:53:53] which will still take a while, but hopefully much less [07:55:04] that's all ? [07:55:08] (it will still read and parse every revision before the one you need, but it will not try to insert them into the database) [07:55:11] 03(mod) 'allmessagestext' and 'editinginterface' messages are in en-gb - 10https://bugzilla.wikimedia.org/43501 normal->trivial; summary; +comment (10Nemo) [07:55:12] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Nemo) [07:57:14] ori-l: again, i am curious about what --dry-run exactly does... [07:58:27] 03(mod) Move Special:Disambiguations and relevant messages out of core to an extension - 10https://bugzilla.wikimedia.org/35981 +comment (10Nemo) [08:09:26] i tried to access my local mediawiki while the importDump.php was running, then i finally reached the en.wikipedia.org, what's happening ? [08:10:45] 03(NEW) add link to an extensions portal onto last installation screen - 10https://bugzilla.wikimedia.org/43504 enhancement; MediaWiki: Installer; () [08:20:30] 03(mod) make category redirects appear as italics or different colored links - 10https://bugzilla.wikimedia.org/5346 +comment (10Bawolff (Brian Wolff)) [08:27:11] cusion: umm, that's very odd [08:27:58] Only way that should really happen is if you put $wgServer in LocalSettings.php to be wikipedia [08:28:37] bawolff: somebody told me to run php refreshLinks.php, i am trying it [08:29:00] That's important. It make category pages and Special:whatlinkshere work properly [08:29:05] but it will take a very long time [08:29:33] i know and i am waiting for the result [08:29:42] If you're importing a dump from a wikimedia wiki, we provide most of the link tables also, so you don't need to refresh links the long way [08:30:12] by long time - i mean really long time. If the wiki is big, we're talking days [08:30:52] you mean i could download the link tables and import it without refreshing ? [08:30:58] yes [08:31:23] yes, you probably ant to refresh the recentchanges (I forget what piece does that for you) [08:31:35] but you can get by without refreshlinks [08:31:45] (just happened to be passing through) [08:32:12] wow, that's cool, but i have start it, could i just stop it then download the link tables? [08:32:28] I think so [08:32:32] New review: Ori.livneh; "Self-+2ing because the change is trivial." [mediawiki/extensions/CodeEditor] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/36343 [08:32:33] Change merged: Ori.livneh; [mediawiki/extensions/CodeEditor] (master) - https://gerrit.wikimedia.org/r/36343 [08:32:37] errrr [08:32:47] cusion: out of curiosity, what wiki are you importing? [08:32:48] do those sql files ahve drop table in them I wonder [08:33:03] wikipedia [08:33:09] figures [08:33:12] current or with history? [08:33:26] Change abandoned: Ori.livneh; "Doesn't work well for section edits, as Massaf notes." [mediawiki/extensions/PostEdit] (master) - https://gerrit.wikimedia.org/r/31733 [08:33:37] cusion: english I suppose? [08:34:17] DROP TABLE IF EXISTS `pagelinks`; [08:34:21] w00t! [08:34:44] so yes you can shove the tables in after interrupting this rebuild job [08:35:02] i got confused with bawolff and apergos, sorry [08:35:24] current version, but a part of it [08:35:46] say 400MB approximatly [08:35:50] ok. If you were doing the entire thing, I imagine refreshLinks.php would take a couple months [08:36:32] no, not the entire enwiki [08:37:17] any notion of how many pages? [08:37:27] that's easier for me to get a handle on than a size estimate [08:38:04] (hmm if only sme pages go in, the various sql tables are going to be less than useful, you'd want to get the entries just for the pages being imported) [08:39:05] maybe 2M pages, the name with the file shows "p11125004 - p13324998" [08:39:49] ok [08:39:52] hmm, I wonder how well mediawiki works with extra entries in the page tables [08:39:54] so a while but not forever [08:40:57] 03(mod) Poem extension exposes strip markers with long Chinese texts - 10https://bugzilla.wikimedia.org/38087 +comment (10Coiby) [08:40:57] New review: Ori.livneh; "The $tabindex mirrors commit be8f6ca3 to Scribunto by Tim. I don't love the use of pre-increment ope..." [mediawiki/extensions/Drafts] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/25627 [08:40:58] Change merged: Ori.livneh; [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25627 [08:41:22] bawolff: pardon me , but what's your point? [08:42:07] I'm just trying to think if you imported the link table dumps, would things break if you didn't have all the corresponding pages [08:42:32] the rebuildlinks phase should be giving you a progress report... can you get a sense of how many it's done in how much time? [08:42:54] I feel like most of MediaWiki joins against the page table, so it may actually work, but I wouldn't count on it (plus you would have a lot of extra fluff in your db) [08:43:19] because we are talkng about a partial import, if the rebuild is going to finish in say a few days I would let it continue [08:46:50] ok ,for the sake of safety, i would let it continue, but i was wondering if you could give me a more detailed steps to follow in case that i would import a very large data dump someday [08:47:08] I need to clean up the list at [08:47:32] https://meta.wikimedia.org/wiki/Data_dumps sometime soon (it's actually near the top of my todo list so it might be soon) [08:47:47] steps about refreshing links [08:48:58] ok, that would be nice , and would help many beginners like me, many thanks [08:49:19] yep, there's stuff on that page from years ago [08:49:48] bawolff: thanks for your concern [08:50:04] this use case of importing just some pages is pretty common [08:50:08] apergos: and thank you for your todos [08:50:10] I should think about tools for that [08:50:15] heh you're welcome [08:50:57] yeah, that's why i am now trying mwdumper [08:51:36] apergos: do you have any other recommends? [08:52:07] well mwdumper to sql and then sql into mysql is the best route [08:52:28] or if mwimport is fast enough for you, you could work with that (just updated for the latest schema) [08:52:41] which is also 'writ the sql file and then import that) [08:52:44] *write [08:53:43] you can usually find me in here, though not so repsonsive on the weekends, and there are other people areound who can help too [08:54:03] the interwiki links will be another fun piece, I can use you as a guineau pig though :-D [08:54:16] hmm, thank you very much [08:56:00] well, i volunteered to be [08:56:28] 03(mod) Default thumb image for a category - 10https://bugzilla.wikimedia.org/15087 (10Bawolff (Brian Wolff)) [08:57:44] 03(mod) Bug and feature requests related to Wikimedia Commons (tracking) - 10https://bugzilla.wikimedia.org/37883 (10Bawolff (Brian Wolff)) [08:57:59] hmm, why is wikibugs spamming for just cc changes... [09:05:24] 03(mod) New extension: EXIF parser functions - 10https://bugzilla.wikimedia.org/41498 +comment (10Bawolff (Brian Wolff)) [09:09:16] Is the svn commit (to subversion) now disabled ? I wanted to update my https://www.mediawiki.org/wiki/Extension:AJAX_Poll there [09:10:07] I think it was, not 100% sure [09:10:16] Try. if it is you'll get an error [09:12:10] Transmitting file data ..svn: Commit failed (details follow): [09:12:12] svn: Access denied [09:12:24] (ssh key is okay, because I could do svn up) [09:12:39] so it seems to be "closed now" [09:13:04] moving to Github... [09:16:38] 03(mod) Make MediaWiki:Sharedupload point to Commons with lang setting of that wiki - 10https://bugzilla.wikimedia.org/10827 +comment (10Bawolff (Brian Wolff)) [09:28:56] So yesterday was Linus'es 43rd b-day.. what are we celebrating today ? [09:29:22] Linus'es 43rd b-day, celebration day no. 2 ? [09:31:05] 03(mod) Make MediaWiki:Sharedupload point to Commons with lang setting of that wiki - 10https://bugzilla.wikimedia.org/10827 +comment (10Nemo) [11:12:55] 03(NEW) Two spaces in One Message - 10https://bugzilla.wikimedia.org/43505 minor; MediaWiki extensions: DonationInterface; () [11:17:36] 03(mod) Two spaces in One Message - 10https://bugzilla.wikimedia.org/43505 (10Siebrand) [11:19:48] 03(mod) 'allmessagestext' and 'editinginterface' messages are in en-gb - 10https://bugzilla.wikimedia.org/43501 +comment (10Siebrand) [11:20:09] 03(mod) Donate interface-error-msg no longer used? - 10https://bugzilla.wikimedia.org/42898 (10Siebrand) [11:20:09] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Siebrand) [11:20:41] 03(mod) Two spaces in 'donate interface-bank transfer message' - 10https://bugzilla.wikimedia.org/43505 summary (10Siebrand) [11:20:42] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Siebrand) [11:27:39] New review: Siebrand; "You write it will be merged with master in 2013, but this looks like you merged it in master already." [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41202 [11:36:21] New review: Mwjames; "See the status attached to this commit which states "Review in Progress" which means it is not merge..." [mediawiki/extensions/SemanticMediaWiki] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/41202 [11:49:52] 03(NEW) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 normal; MediaWiki: Special pages; () [11:51:49] 03(mod) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 +code-update-regression (10Maarten Dammers) [11:52:20] 03(mod) hewiki asks to change default image sizes for thumb and gallery - 10https://bugzilla.wikimedia.org/41712 +comment (10Dereckson) [11:52:39] 03(mod) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 +comment (10Sumurai8 (NL)) [12:18:47] 03(mod) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 +comment (10Maarten Dammers) [12:23:14] New review: Tpt; "Minor change." [mediawiki/extensions/ProofreadPage] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/37636 [12:23:15] Change merged: Tpt; [mediawiki/extensions/ProofreadPage] (master) - https://gerrit.wikimedia.org/r/37636 [12:23:38] Change merged: J; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/41051 [12:23:57] Change merged: J; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/41193 [12:27:10] New review: Siebrand; "Oh, confusing... If I see two green check marks, I assume merged." [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41202 [12:44:14] New patchset: Nischayn22; "first commit" [mediawiki/extensions/PageCreationNotif] (master) - https://gerrit.wikimedia.org/r/41208 [12:44:46] New review: Nischayn22; "Awesome" [mediawiki/extensions/PageCreationNotif] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/41208 [12:44:47] Change merged: Nischayn22; [mediawiki/extensions/PageCreationNotif] (master) - https://gerrit.wikimedia.org/r/41208 [13:20:03] 03(mod) PageTriage uses server rather than local time - 10https://bugzilla.wikimedia.org/43365 (10Nischay Nahata) [13:30:20] 03(mod) SecurePoll doesn-t work on it.wikivoyage - 10https://bugzilla.wikimedia.org/43457 +comment (10Snowolf) [13:39:48] yuvipanda: Blm! [13:40:07] sucheta: blm! [13:40:38] finally! [13:41:39] sucheta: did any more gadgets work? [13:45:39] yuvipanda: I am just LOLing at some email right now :D [13:45:49] ah [13:45:53] lolable emails are always fun yes [13:47:21] yuvipanda: You should read it too you know :D [13:47:30] sucheta: forward it? [13:48:34] yuvipanda: You are subscribed to LOL-mailinglists na? ;-) [13:48:52] * yuvipanda goes to look [13:49:07] ah [13:49:36] New review: Martineznovo; "All works as expected. I did some tests on my page http://www.mediawiki.org/w/?oldid=621920" [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/7536 [13:50:08] sucheta: ah [13:50:10] it shall tide over, etc [13:55:04] yuvipanda: Hi [13:55:21] harshkothari: hi [13:55:35] so read that funny mail yuvipanda ? :P [13:55:43] which one? [13:55:49] Srikanth ka [13:56:09] it's all okay guys. Don't worry about it, etc [13:56:26] I suppose they just didn't read about mw groups before (they're probably not on wikitech-l) [13:56:27] that is all [13:56:37] agree :) [13:56:52] but very funny yuvipanda :D [13:57:05] :) it's ok [14:11:28] yuvipanda: gtalk? [14:11:34] sure [14:11:58] 03(mod) PageTriage uses server rather than local time - 10https://bugzilla.wikimedia.org/43365 +comment (10Oliver Keyes) [14:14:47] New patchset: Liangent; "Do correct average year length arithmetic." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41209 [14:19:51] New patchset: Liangent; "Do correct average year length arithmetic." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41209 [14:21:04] New patchset: Merlijn van Deen; "Test 1: not being added as reviewer" [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/41210 [14:22:06] New patchset: Merlijn van Deen; "Test 2: being added as reviewer" [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/41211 [14:22:13] cool :-) [14:29:11] New patchset: Merlijn van Deen; "Test 3: being added as reviewer via catch-all" [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/41212 [14:32:15] New patchset: Merlijn van Deen; "Test 4: being added as reviewer via catch-all" [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/41213 [14:35:08] New patchset: Merlijn van Deen; "Test 5: being added as reviewer via catch-all" [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/41214 [14:35:14] New patchset: Aude; "(bug 43506) Fix pager in Special:Categories, make offset default param" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41215 [14:36:29] 03(mod) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 +comment (10Aude) [14:36:39] 03(mod) Special:Categories navigation is broken when using Special:Categories/ - 10https://bugzilla.wikimedia.org/43506 (10Aude) [14:41:05] aude: Thanks for the fix, but I don't currently have a MediaWiki instance running where I can check your commit :-( [14:49:04] 03(mod) PageTriage uses server rather than local time - 10https://bugzilla.wikimedia.org/43365 +comment (10Nischay Nahata) [14:52:21] multichill: that's okay [14:57:02] 03(mod) PageTriage uses server rather than local time - 10https://bugzilla.wikimedia.org/43365 +comment (10Oliver Keyes) [15:01:15] 03(mod) Upload from Flickr only fetches the first 50 items of a set - 10https://bugzilla.wikimedia.org/42979 (10Nischay Nahata) [15:12:22] 03(mod) [ReplaceText] Incorrect error: You must select at least one namespace. - 10https://bugzilla.wikimedia.org/38170 +comment (10Woozle) [15:13:10] 03(mod) [ReplaceText] Incorrect error: You must select at least one namespace. - 10https://bugzilla.wikimedia.org/38170 (10Woozle) [15:18:45] New review: Jeroen De Dauw; "James, are you able to +2 on verified?" [mediawiki/extensions/SemanticResultFormats] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41199 [15:20:17] New patchset: Nischayn22; "bug 43480 change pagetriage-no-patrol-right message." [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/41216 [15:21:31] New patchset: Amire80; "Doc fixes" [mediawiki/extensions/TranslationNotifications] (master) - https://gerrit.wikimedia.org/r/38439 [15:21:40] Change merged: Amire80; [mediawiki/extensions/TranslationNotifications] (master) - https://gerrit.wikimedia.org/r/38439 [15:22:50] 03(mod) MediaWiki:Pagetriage-no-patrol-right is confusing - 10https://bugzilla.wikimedia.org/43480 +patch-in-gerrit; +comment (10Nischay Nahata) [15:25:19] New patchset: Amire80; "(bug 42019) Find common range box must always flow left-to-right" [mediawiki/extensions/CheckUser] (master) - https://gerrit.wikimedia.org/r/32920 [15:29:57] New review: Nemo bis; "I've not checked the extension myself, but the new language seems to be correct." [mediawiki/extensions/PageTriage] (master) C: 1; - https://gerrit.wikimedia.org/r/41216 [15:31:12] Change merged: Amire80; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/41024 [15:37:30] 03(mod) PHP Fatal moving Semantic pages - 10https://bugzilla.wikimedia.org/43474 +comment (10Nischay Nahata) [15:37:31] 03(mod) PHP Fatal moving Semantic pages - 10https://bugzilla.wikimedia.org/43080 +comment (10Nischay Nahata) [15:39:13] 03(mod) PHP Fatal moving Semantic pages - 10https://bugzilla.wikimedia.org/43080 -patch-in-gerrit -patch-need-review ; +comment (10Nischay Nahata) [15:43:50] New patchset: Amire80; "Add missing parameters" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40814 [15:43:56] Change merged: Amire80; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40814 [15:44:22] New patchset: Amire80; "Update docs" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40815 [15:48:01] Change merged: Amire80; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40815 [15:48:25] New patchset: Amire80; "Add FIXME for missing parameter" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40816 [15:48:35] 03(mod) Special:WhatLinksHere should allow invert namespace selection - 10https://bugzilla.wikimedia.org/16848 (10Robin Pepermans (SPQRobin)) [15:48:36] 03(mod) enable namespace inversion (&invert=1) for other special: pages - 10https://bugzilla.wikimedia.org/14485 (10Robin Pepermans (SPQRobin)) [15:51:02] New patchset: IAlex; "Use Html::rawElement() instead of hardcoded string in Special:Contributions" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41217 [15:52:03] New patchset: Amire80; "(bug 42676) [Project Selector] Numbers visible in Opera" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/41025 [15:52:20] New review: Jeroen De Dauw; "Heh what... two different 2.0.0 versions?" [mediawiki/extensions/SemanticMediaWiki] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/41197 [15:52:20] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41197 [16:01:41] New review: Jeroen De Dauw; "Agree, this is a bit confusing. I suggest not doing +1 or +2 on CR yourself unless when you want to ..." [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41202 [16:06:27] 03(mod) File extensions should be automatically decided by MIME type at upload - 10https://bugzilla.wikimedia.org/40479 normal->15enhancement (10Andre Klapper) [16:06:52] 03(mod) Two spaces in 'donate interface-bank transfer message' - 10https://bugzilla.wikimedia.org/43505 minor->trivial; +easy (10Andre Klapper) [16:18:28] New patchset: Nischayn22; "bug 43080 renaming a method as a follow-up." [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41218 [16:19:02] New patchset: Amire80; "(bug 42676) [Project Selector] Numbers visible in Opera" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/41025 [16:21:02] New review: Amire80; "In StatsBar.php in the initial patch set the elements came outside the
element, which c..." [mediawiki/extensions/Translate] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41025 [16:22:27] 03(mod) PHP Fatal moving Semantic pages - 10https://bugzilla.wikimedia.org/43080 +patch-in-gerrit +patch-need-review; +comment (10Nischay Nahata) [16:34:47] 03(mod) "There are [numeral] errors above. Please fix and try again." (or something like that) - 10https://bugzilla.wikimedia.org/43478 (10jsayre64) [16:36:03] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41218 [16:36:36] New review: Liangent; "Keyboard navigation is done." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/7536 [16:37:31] New patchset: Liangent; "Allow custom togglers to be specified by children with a certain class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/7536 [16:54:06] New review: Mwjames; "I can do +2 here but in the past this was somehow simpler. Someone played with those statues and is ..." [mediawiki/extensions/SemanticResultFormats] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/41199 [16:58:21] New patchset: Raimond Spekking; "[TimedMediaHandler] Remove deleted message key" [translatewiki] (master) - https://gerrit.wikimedia.org/r/41219 [16:58:39] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/41219 [16:58:59] New review: Jeroen De Dauw; "That change was discussed on wikitech. TL;DR: +1 is for lint/style checks. +2 is for tests passing (..." [mediawiki/extensions/SemanticResultFormats] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/41199 [16:59:37] New review: Amire80; "Looks good to me after fixing the PHP, but I didn't actually test on Opera." [mediawiki/extensions/Translate] (master); V: 1 C: 1; - https://gerrit.wikimedia.org/r/41025 [17:04:25] New review: Mwjames; "In this case +2. I checkout the non-critical but missing 'smw-ui-tooltip-title-legend' with a follow..." [mediawiki/extensions/SemanticResultFormats] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/41199 [17:12:00] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41202 [17:21:36] 03(mod) Enable CodeEditor extension on Schema namespace on Meta-Wiki - 10https://bugzilla.wikimedia.org/42561 +comment (10Dereckson) [18:04:52] sucheta: there? [18:19:40] 03(mod) Vector skin search "Go" button uses fulltext search button tooltip - 10https://bugzilla.wikimedia.org/24248 +easy; +comment (10Lejonel) [18:54:20] New patchset: Jeroen De Dauw; "style improvements" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41220 [19:12:01] !tables.sql | Isarra [19:12:01] Isarra : https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=blob;f=maintenance/tables.sql;hb=HEAD [19:13:13] You do realise if I understood that, I'd probably also understand how to just look at the structure in the database itself, right? [19:13:45] As it is I'm just staring at it going hrrrm and wondering why there are so many duplicates of the ar_rev_ids in the other table. [19:14:46] New review: Nikerabbit; "wikiScript has "index" as default value, so the change is not needed. It's normal to omit parameters..." [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40814 [19:18:08] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41209 [19:32:57] New review: Alex Monk; "Can't test right now, but looks good." [mediawiki/extensions/Echo] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/41189 [19:34:20] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41031 [19:48:21] someone online? [19:48:25] some idiot online? [19:49:12] aaaaaaaaaaaaaaaaaaaaaaaaaaaawwwwwww [19:49:24] porra [19:49:35] fuck [19:49:45] VAO A MERDA [19:49:48] SEUS PORRAS [19:50:10] fuck [19:50:19] nobody tells anything? [19:50:29] i gotta go [19:50:45] ... [19:51:16] New patchset: Isarra; "Changes, I dont even remember." [mediawiki/extensions/MediaWikiAuth] (master) - https://gerrit.wikimedia.org/r/41352 [19:51:52] lol, Isarra [19:52:31] ...Obviously I'm going to need to get someone to look at that and actually sort out what the hell we did. [19:52:45] * Isarra wonders how busy ashley is. [19:54:36] btw, Isarra, trailing whitespaces... [19:55:15] I won't review it, but you know someone else will :) [19:56:23] Isarra: ashley is moderately busy, reading or something like that, or atleast, should be reading, so I was told :P [19:57:14] also, lol at if ( strpos( $result, 'Your e-mail address was authenticated' ) ) ... [19:58:00] Vulpix: Eh, that'll get fixed when the patches are added. [19:58:20] He should be reading, but it doesn't mean he is! [19:58:54] Vulpix: Hmm, looks like I forgot to add the force to make the remote language lolcat. [20:01:55] If my test server doesn't have access to gerrit, is there any good way to make it easier to git review stuff beyond copying the stuff to the one that does have access? [20:02:14] New patchset: Adamw; "Fully expand templates before scanning banner for fields" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/28913 [20:03:02] Isarra: Get your test server access to gerrit? :P [20:03:34] It's a shared server, though. o.o [20:04:33] ...it's not actually a test server. I'm using the production server for testing. >.> [20:04:33] ... urrmmm [20:04:43] heh [20:05:09] Whats the problem with that? :P [20:05:16] Also, would you happen to have the mediawikiauth 1.19 patch? Since I understand shoutwiki was the source of that one... [20:05:32] I dunno, actually. I'm just somewhat confused and paranoid. [20:05:49] Isarra: I'm quite sure I gave that patch to you a (fair) while ago ;-) [20:06:01] I haven't touched MediaWikiAuth since like 1.15, and that was a long time before I joined ShoutWiki... [20:06:02] (and no, I'm not studying even though I'm supposed to be doing that...) [20:06:07] You... gave me something. It was full of line numbers. [20:06:21] Okay, do you have a version without line numbers? >.< [20:06:30] What are patches, anyway? How do you make a patch? [20:06:53] just manually remove the line numbers :> [20:07:01] >__> [20:07:32] Patches are applyable changesets/diffs or atleast, thats the whole idea, svn is easy to make patches from... svn diff >> foo.patch or something like that [20:08:00] Isarra: on windows you can generate a patch with the WinMerge program. I'm pretty sure that on linux the gnu diff can generate one [20:08:23] So it's just a diff? [20:08:34] of course, between two or more files on the filesystem. If you ask for git... I don't know [20:08:40] yes [20:08:52] with a specific format, but a diff [20:09:02] How do you get that format? [20:09:05] Magic? [20:09:21] 03(mod) Vector skin search "Go" button uses fulltext search button tooltip - 10https://bugzilla.wikimedia.org/24248 +comment (10Daniel Friesen) [20:09:41] on winmerge there's a menu item for creating a patch. On gnu diff it should be a command argument for outputting the diff in a patch format [20:11:13] I suppose it couldn't be as simple as git diff > patchythingy.patch [20:11:25] New patchset: Adamw; "Banner "translate for" messages are multiline (textarea)" [mediawiki/extensions/CentralNotice] (master) - https://gerrit.wikimedia.org/r/41358 [20:11:32] Isarra: how many times do I have to tell you: [20:11:33] >git [20:11:35] >simple [20:11:36] PICK ONE [20:11:51] you can't have cake and eat it, too [20:11:54] * Dantman slaps ashley [20:12:45] * Isarra makes two cakes. [20:12:54] Did I tell you about the time I fried an svn repository? [20:13:12] rofl [20:14:34] Isarra: https://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git [20:17:07] Oik. [20:24:44] New patchset: Raimond Spekking; "[PageCreationNotif] Register extension" [translatewiki] (master) - https://gerrit.wikimedia.org/r/41359 [20:24:57] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/41359 [20:27:20] New patchset: btongminh; "Dump unit tests no longer fail if gzip is not available" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41360 [20:27:42] good [20:27:50] now the next gazillion broken unit tests\ [20:36:50] Are there any wikis that really do use the language lolcat? [20:37:01] New review: Jack Phoenix; "I'm mostly OK with this, just a few DB queries need cleaning up." [mediawiki/extensions/MediaWikiAuth] (master) C: 0; - https://gerrit.wikimedia.org/r/41352 [20:37:15] My thumbnails can't be saved on a frech 1.20.2 Install [20:37:24] Isarra: http://www.shoutwiki.com/?uselang=en-lolcat [20:37:27] New patchset: Raimond Spekking; "[PageCreationNotif] Disable for now. .gitreview is missing :-(" [translatewiki] (master) - https://gerrit.wikimedia.org/r/41361 [20:37:28] ashley: Can you do that? I don't understand the queries. Seriously. O_o [20:37:39] That's en-lolcat. Any actual lolcat? [20:37:41] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/41361 [20:37:51] Such that uselang=lolcat might result in actual lolcat? [20:39:04] Isarra: I wrote most of the queries (along w/ explanations) there for you :) (also, TWN doesn't want to support lolcat or Pig Latin or any other language w/o an ISO code for some reason, hence the en-lolcat translation being an unofficial -- and somewhat outdated, too -- one) [20:39:07] se result on http://blechschaden.bplaced.net/wiki/index.php?title=Projekt:Gemeinschaftsportal [20:39:18] Okay, good. [20:39:34] Lolcat is just a random language to force it to fall back to defaults. [20:39:41] * Isarra blames wikia. [20:40:09] New patchset: btongminh; "wfMerge() now works if $wgDiff3 contains spaces" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41362 [20:40:33] Isarra: en-x-lolcat!!! [20:41:17] New patchset: Mwjames; "Add SMWAPI meta information (result hash key etc.)" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/41363 [20:43:27] 03(mod) Messages are missing message documentation (/qqq) - 10https://bugzilla.wikimedia.org/43473 +comment (10[[kgh]]) [20:46:57] carchaias: be sure http://www.mediawiki.org/wiki/Manual:$wgTmpDirectory is set appropiately, and is writable by the server [20:48:10] whoot [20:48:16] all unit tests finally pass again [20:48:28] for the first time in ages [20:50:05] Vulpix: I installed another one with 1.18 before on the same host and did not have to set these parameters.$wgTempDirectory is not set in LocalSettings.php [20:50:05] New patchset: Amire80; "(bug 42676) [Project Selector] Numbers visible in Opera" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/41025 [20:51:13] carchaias: it has a default value of "{$wgUploadDirectory}/tmp" [20:51:21] be sure it's server writeable [20:51:38] carchaias: http://blechschaden.bplaced.net/wiki/thumb.php?f=Info48.png&w=20&uselang=en [20:52:55] Vulpix: $wgUploadDirectory is not set, so shall be standard, right [20:53:45] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/41025 [20:53:57] carchaias: $wgUploadDirectory defaults to "{$IP}/images" [20:54:14] New review: Jeroen De Dauw; "&legend and &filter are introducing new syntax no?" [mediawiki/extensions/SemanticResultFormats] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/41199 [20:54:14] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/41199 [20:55:09] Vulpix: Right, the Upload works - File is already there and can be shown on the File:page , but thumbnails don't. [20:55:11] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/40816 [20:57:21] how can i volunteer here [20:58:14] to wikipedia [20:58:16] New review: Siebrand; "One more thing: In MediaWiki 1.19 the log for a was updated to allow better localisation, wrt gender..." [mediawiki/extensions/SpecialNamespaces] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39720 [20:58:56] carchaias: if everything else fails, http://www.mediawiki.org/wiki/Manual:How_to_debug. Be sure {$wgUploadDirectory}/tmp exists on your server [20:59:42] and it probably should be writable by the webserver and PHP's idiot_mode (err, I mean safe_mode) should be turned off, and so on [21:00:27] New review: Matmarex; "I really should have gotten around to this earlier, sorry." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/7536 [21:01:25] Vulpix: No it is not there but it should be created by mw right. /images always only contains README and .htaccess at start. [21:03:00] Vulpix: there is a lockdir dierectory that i've never seen before - it is empty [21:03:22] carchaias: just to be sure, create that tmp folder [21:03:34] and set appropiate permissions [21:04:45] Vulpix: I created but can't set permissions - no root access. [21:05:16] wat? if you have permissions to create, you have permissions to change permissions [21:05:33] since you're the owner [21:06:34] is there a way to see a list of pages use DPL on a given wiki [21:07:41] c: Special:TagsReport (I don't know if that specialpage is core or needs an extension BTW) [21:08:19] at least wikia has it [21:08:38] New review: Siebrand; "Some more review." [mediawiki/extensions/SpecialNamespaces] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39720 [21:08:52] Vulpix: I created by nautilus via ftp. It says owner: create and delete group:open other: open files [21:09:41] New review: Mwjames; "As to &legend and &filter" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/41199 [21:09:56] carchaias: set same permissions as the upload directory [21:10:04] Vulpix: it's an extension (and IMHO while the idea is great, the code...not so much) and interestingly enough, there are no initialization script(s) or anything on their git repository, effectively rendering it unusable for third parties [21:10:07] owner & permissions [21:10:09] New review: Siebrand; "See http://www.mediawiki.org/wiki/Version_lifecycle : all versions of MediaWiki before 1.19 are end ..." [mediawiki/extensions/SpecialNamespaces] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39720 [21:11:12] Vulpix: That is the same, as i could see. [21:13:11] Vulpix: aha, found it in their svn, doesn't seem to work out of the box [21:13:35] what ashley said [21:13:49] oh, missed that [21:14:07] ashley: is there an easier way to see DPL usage on a wiki? [21:14:40] I asked about the initialization script some years ago and they replied something along the lines of "we have no interest in publishing that script"... [21:14:59] c: not that I know of, sorry :-/ well, you could try searching for "dpl" or "" and see what it returns... [21:14:59] doing a select on text table where old_text like ' or that ;) [21:15:23] * '% what if a page uses something like #explode: [21:16:29] filter by only the latest revision, otherwise you'll get many dupes [21:17:42] alternatively, extract an xml dump of latest revisions and search there, if you care about the performance of the database server [21:19:37] heelp [21:19:44] sorry [21:38:20] dir [21:39:50] help [21:47:25] New patchset: Hoo man; "(bug 15936) New page's patrol button should always be visible" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41196 [21:48:37] Krenair: would you be able some time to add these info to all extension pages with your bot? https://www.mediawiki.org/wiki/Extension_Matrix/Hooks#Extensions_--.3E_Hooks [21:48:48] Regularly if possible, to keep them always up to date. [21:49:15] hoo|away has a bot too. :) [21:49:30] Nemo_bis: huh? :D [21:50:15] hoo: I'd like the {{Extension}} infoboxes to be automatically updated with some info like used hooks [21:50:39] Alterego just made the code to update a central list with the info [21:51:41] Nemo_bis: :P I've did enough today... just spend ages hacking around missing database indexes [21:52:19] But if that patch gets merged the patrolling functionality of MW can finally be considered major, I guess (together with Ajax patrolling which I wrote earlier) [21:53:36] wow [21:54:09] we've hoped for this bug to be fixed for quite a long while [21:54:10] I didn't even think about single pages having several thousand edits/ month... damn enwiki [21:54:19] hehe [21:54:22] But now it should be fine :) [22:01:03] 03(NEW) afl_log_id index on abuse_filter_log table should be unique - 10https://bugzilla.wikimedia.org/43507 trivial; MediaWiki extensions: AbuseFilter; () [22:02:07] New review: Dereckson; "Issue reported as bug 43507, should be another change imho." [mediawiki/extensions/AbuseFilter] (master) C: 0; - https://gerrit.wikimedia.org/r/40329 [22:02:41] 03(mod) Impossible to install AbuseFilter with SQLite - 10https://bugzilla.wikimedia.org/38371 (10Dereckson) [22:02:42] 03(mod) afl_log_id index on abuse_filter_log table should be unique - 10https://bugzilla.wikimedia.org/43507 (10Dereckson) [22:02:53] MEDIAWIKI I SMASH YOU. [22:02:57] 03(mod) Support optimized WebP thumbnails as alternative to JPEG - 10https://bugzilla.wikimedia.org/25611 +comment (10cesar) [22:02:59] * Isarra drops a large boulder on it. [22:03:00] New review: Hoo man; "@Brian Wolff: MediaWiki does a lot of database queries per page view even when the parser cache is u..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/41196 [22:11:39] 03(NEW) Run a script to add all members of the shell mediawiki group to the bastion project - 10https://bugzilla.wikimedia.org/43508 normal; Wikimedia Labs: Infrastructure; () [22:20:51] 03(mod) Support optimized WebP thumbnails as alternative to JPEG - 10https://bugzilla.wikimedia.org/25611 +comment (10cesar) [22:23:01] can i delete the files in the /archive directory? I have run deleteArchivedFiles.php, but it did not empty the /archive directory as I expected... [22:23:43] 03(mod) Enable Article Feedback Tool v4 on it.wikivoyage - 10https://bugzilla.wikimedia.org/43328 +comment (10Emanuele Raoli) [22:23:45] Is it me, or on https://en.wikipedia.org/w/index.php?title=Special:WhatLinksHere/Abacus can you not get back to where you started once you've clicked "next" more than once? [22:24:10] (Well, by pressing the "prev" button anyway) [22:25:43] Jarry1250: confirming. lol. [22:26:08] It's weird, I can't find a bug about it anywhere. [22:26:32] it looks like somebody used a wrong variable somewhere [22:26:44] as the from= and back= on the "previous N" link is the same [22:26:49] New patchset: Isarra; "Changes, I dont even remember." [mediawiki/extensions/MediaWikiAuth] (master) - https://gerrit.wikimedia.org/r/41352 [22:26:50] but not sore on the "next N" [22:27:03] not so* [22:27:07] I think it's because it doesn't store what the previous id was [22:27:09] File::transform: Doing stat for mwstore://local-backend/local-thumb/b/be/DSCN2966.JPG/800px-DSCN2966.JPG [22:27:11] FileBackendStore::getFileStat: File mwstore://local-backend/local-thumb/b/be/DSCN2966.JPG/800px-DSCN2966.JPG does not exist. [22:27:13] File::transform: Doing stat for mwstore://local-backend/local-thumb/b/be/DSCN2966.JPG/800px-DSCN2966.JPG [22:27:41] Jarry1250: the links without back= work correctly. [22:27:48] Matmarex: Well, the one-before-last id. [22:28:04] can i delete the files in the /archive directory? I have run deleteArchivedFiles.php, but it did not empty the /archive directory as I expected... [22:28:15] thats what my debug say. I cant get thumbs working [22:28:29] Jarry1250: yeah, i got you, you're right [22:29:56] brb [22:31:11] /images/thumb exists. chmod is 755. I did nothing to the file-upoad config. The installation is fresh 1.20.2 [22:33:40] the upload itself works [22:42:31] How would one go about diffing a file between two major releases? [22:43:15] git diff commit1 commit2 -- filename, IIRC [22:43:33] But how do you even know what commits they are? [22:43:54] well, you can use the names of the branches as commit1/2? [22:43:55] so e.g. [22:44:35] git diff origin/REL1_18 origin/REL1_19 -- index.php [22:44:47] to compare index.php between MW 1.18 and 1.19 [22:45:06] So for 1.20.0 and 1.20.2... [22:45:30] ah, so you actually mean minor version [22:45:37] let me figure it out [22:45:43] Oh. [22:45:47] Sorry. [22:45:52] I don't understand this stuff. [22:45:58] they should have tags or something, i think [22:46:12] so that you don't have to actually scan the list ofcommit to find the right one [22:46:46] haha, yeah [22:46:50] git diff 1.20.0 1.20.2 -- RELEASE-NOTES-1.20 [22:46:54] this simple :D [22:47:15] (you might have to be on the REL1_20 branch for this to work) [22:48:15] (nevermind, this always works) [22:52:25] Agh, crap. [22:52:32] It's been changed. [22:52:59] * Isarra burrows under a vent and cowers in fear. [22:54:22] New review: btongminh; "Well, in that case you should make the key in abusefilter.tables.sqlite.sql non-unique, otherwise yo..." [mediawiki/extensions/AbuseFilter] (master) C: -1; - https://gerrit.wikimedia.org/r/40329 [22:56:01] MatmaRex: Thanks for the JS review by the way. Yes, your prize for being helpful with one review request is more :) [22:58:41] * Isarra pokes MatmaRex. [22:59:29] I have a change in 1.20.0. Is there any good way to merge that with changes to 1.20.2? [22:59:40] Jarry1250: happy to help :) i think i'll add you to some of my own changesets in exchange :D [22:59:48] It's all one file, and the file only had one real change in that time. [22:59:49] * MatmaRex pokes back [23:00:08] 03(mod) Support optimized WebP thumbnails as alternative to JPEG - 10https://bugzilla.wikimedia.org/25611 +comment (10Bryan Tong Minh) [23:00:14] MatmaRex: Sneaky, well you can try. [23:00:30] :) [23:00:37] Isarra: it'd help if we could see the real thing. there probably is [23:00:54] git usually handles merging code pretty well by itself [23:01:04] I... don't know to use it. [23:01:24] I was making changes on 1.20. Branch was checked out or something and I just kind of... made changes, you know? [23:01:32] ah [23:01:34] happens [23:01:36] But now the current is 1.20.2. [23:01:40] So what do I do? [23:01:49] The thing is still checked out to 1.20.0. [23:01:52] Or... whatever. [23:01:55] do you want to apply these actually on 1.20.2 or on master? [23:02:06] I want them on 1.20.2. [23:02:22] Then I want a patch file of them. [23:02:26] For 1.20.2. [23:02:31] Or something. [23:02:33] great. find out the sha1 for that commit you made [23:02:41] I don't know what that means. [23:02:58] Nor am I entirely sure what has been committed where. There were other things committed. [23:03:14] the thing that looks like ad81af4 [23:03:26] argh [23:03:27] I think this was actually committed in 1.19 or something and then we updated and kept the changes around, excpet the guy who was handling that isn't here now. [23:03:33] do you have any GUI commit viewer? [23:03:37] No. [23:03:57] get one :P you can probably install gitk with apt-get or whatever it is your distro is using [23:04:10] Well, this is all on a remote server. Would that even work? [23:04:16] gitk is basically a gui interface to git log + git diff [23:04:16] ah [23:04:24] well, probably not, then. can't you clone the repo? [23:04:31] If I knew how... [23:05:00] ... you could always just get the files via FTP or whatever. [23:05:07] (including the .git directory with its contents) [23:05:16] That's a lot of files. O_o [23:05:28] let's not do it now, then [23:06:07] uhhh, let's get the sha1 thing out of the door first. sha1 is the commit identifier, the forty characters from 0-9a-f thta uniquely identify a commit [23:06:16] these sha1 or their parts are shown everywhere [23:06:29] usually git uses first 7 chars, as that's usually enough [23:06:57] so. you need to find out what is this sha1 thing for the commit you made [23:07:08] Erp. [23:07:33] i think it's even shown after committing [23:07:35] 03(NEW) Special:Whatlinkshere pagination broken - 10https://bugzilla.wikimedia.org/43509 normal; MediaWiki: Special pages; () [23:07:54] you have no idea what happened to it, do you. alright, this won;t stop us [23:08:04] >.> [23:08:20] New review: Platonides; "I first had some concerns about $wgDiff3 being a command with parameters, but such instances would h..." [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/41362 [23:08:21] do you know what `git reflog` is? run it anyway :P [23:08:38] this is sort of a log of things that happened to your repo recently [23:08:45] your commit should be there, somewhere [23:08:48] probably near the top [23:09:20] These are definitely my commits. [23:09:33] Their summaries are completely useless. [23:09:37] Changes and stuff, hell if I know. [23:09:46] COMMITTING EVERYTHING! [23:10:06] Am I doing this right? [23:10:10] ...and so on. [23:10:27] allllright. but you've got to have a few commits there that might be the one you're looking for? [23:10:53] `git show commit_sha1` will show you the full commit message and the diff for the given commit. try it for these few. [23:10:57] Perhaps I could checkout 1.20.0 on another install, copy the file to that one, and then just use that? [23:11:00] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/41362 [23:11:15] if you know what hte changes were, you could just reapply them by hand [23:11:27] but i assumed we ewre digging for that commit you made [23:11:38] Well, I have the changed file. [23:11:42] So... [23:11:56] I dunno what the changes were, but that seems like a faster way to find out. >.< [23:12:04] haha, maybe [23:12:21] this makes sense, try it [23:13:07] (you can pipe output from `git diff` to a file, and then pipe that file to `git apply`, to generate and apply patches - this will probably come in handy here) [23:13:40] So the git diff is the patch? [23:14:27] basically, yes [23:14:48] there are a few formats for patches and TBH i'm not sure what the differences are [23:15:04] but output from git diff is definitely one of them [23:18:10] Okay, so I'm checked out to 1.20.0. I changed the file. [23:18:33] To keep the file and update to 1.20.2, do I... what, commit it and checkout 1.20.2? [23:18:49] Well, keep and merge. [23:18:56] Urgh. [23:19:21] you could commit the changes on your current branch (1.20.0), then checkout 1.20.2, and cherry-pick the commit you made on 1.20.0 [23:19:47] Would that be easiest? [23:19:48] `git cherry-pick` is essentially the same as generating a patch with `git diff` and applying it in a different place with `git apply` [23:20:22] you could just generate the patch, and apply it on 1.20.2 [23:20:28] like this: [23:20:40] (assuming you haven't committed the changes yet) [23:21:04] git diff > patch.txt; git checkout 1.20.2; git apply patch.txt [23:21:10] (command suntested) [23:21:19] (commands untested)* [23:21:43] error: You have local changes to 'includes/specials/SpecialUserlogin.php'; cannot switch branches. [23:22:09] ah, well [23:22:17] you od have those changes :P they're the ones you just made [23:22:25] just reset them with git reset --hard [23:22:46] (this won't touch files git doesn't lnow about, like your patch file) [23:27:19] New patchset: Jarry1250; "(bug #20789) What links here pager falsely says "No pages link to"" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37685 [23:27:42] Okay. [23:27:50] How do I tell... if this actually worked? >.> [23:28:19] uh [23:28:27] open the file in your favorite text editor? [23:28:35] i don't know what you ended up doing [23:29:48] is this channel recorded in order to see history ? [23:30:29] Tomekk_: yes, see the channel topic [23:30:32] Tomekk_: http://bit.ly/Ks9kYa [23:30:48] ok perfect [23:31:16] Right. [23:31:25] MatmaRex: You are awesome, thank you. [23:32:46] i know. ;) [23:33:25] Unfortunately I still don't know how to update in general. [23:33:41] * Isarra mumbles something about folks going on holiday. [23:33:58] "update in general"? [23:34:48] I... don't even know. o__o [23:39:33] MatmaRex: Why aren't we serving suggestions as a