[00:00:15] Slaide: what's your favorite languages for general purpose scripts? [00:00:30] Dereckson yes that is a good idea .. I've looked into the api I'm still fairly new to mediawiki [00:01:06] I can manipulate the data into a text format its just cutting up 1000 rows [00:01:08] awjr: Consider the following diagram http://pastebin.com/aHEQNYTv [00:01:21] k [00:01:25] it is considered [00:01:35] Let's say F is your change, E is the first version of Jon's change, and B is the new version of Jon's change [00:01:42] and D is the tip of master [00:02:07] Slaide: http://www.mediawiki.org/wiki/Manual:Pywikipediabot is popular in Python, http://dotnetwikibot.sourceforge.net/ works very well in .Net. [00:02:11] sounds complicated [00:02:24] awjr: What he had you do is functionally equivalent to "git rebase master && git rebase --skip", if I understand properly. Just less manual. [00:02:36] Dereckson thanks I'll take a look [00:02:37] (the last page homepage gives a sample to load, edit and save a page) [00:03:03] So ordinarily, when you're on F and you run git rebase D (i.e. git rebase master in your case), git rebase will track down where D and F converge (which is at A), then takes the commits between A and F (i.e. E and F), and transplants those on top of D [00:03:18] Such that the result would be A -- B -- C -- D -- E -- F [00:03:43] Normally this is fine, but in your case, E was actually an outdated version of B [00:04:15] So E and B are duplicative and you're trying to rebase them in the wrong order, which is asking for a lot of trouble. Instead, you wanted to discard E in favor of B, and end up with A -- B -- C -- D -- F [00:04:33] wow, that makes total sense [00:04:36] New patchset: MarkTraceur; "Don't use getDoc anymore" [wikimedia/orgchart] (master) - https://gerrit.wikimedia.org/r/47041 [00:04:50] Or, in some cases, you want F to be based on B rather than E (I can't draw that in one line) [00:04:50] so RoanKattouw would what marktraceur was suggesting (git rebase master && git rebase —skip) done the same thing? [00:04:56] Yes [00:05:05] So here's what my rebase command did [00:05:11] git rebase --onto [00:05:30] "Rebase my current branch onto , but discard and everything before it" [00:05:40] i see [00:05:41] You're essentially overriding git's detection of where the convergence point it [00:05:42] *is [00:05:45] right [00:05:48] cool [00:05:49] thanks :) [00:05:53] In Mark's case [00:06:03] You would have instructed it to perform a rebase you knew would fail [00:06:09] Then, it would fail and git would complain [00:06:22] Because it rebases E on to D first, then F onto the result of that (rebases are sequential like that) [00:06:43] Hooray for foreseeable failure [00:06:44] ohh so —skip would have skipped rebasing E onto D [00:06:46] It's the best kind. [00:06:55] When it fails to rebase E on top of D, git says "well, fuck, what do you want me to do now?" and you say git rebase --skip which means "just forget about E". So then it moves on to F [00:07:03] cool [00:07:07] fanc [00:07:07] y [00:07:10] and F successfully gets rebased onto D and everyone is happy [00:07:23] thanks everyone, i feel smarter now :) [00:07:36] In general, when I'm dealing with an outdated dependency, I tend to use the following command: [00:07:39] saper, marktraceur, RoanKattouw ^^ [00:07:43] New review: MarkTraceur; "Ah, results from a refactor. Very good." [wikimedia/orgchart] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/47041 [00:07:43] Change merged: MarkTraceur; [wikimedia/orgchart] (master) - https://gerrit.wikimedia.org/r/47041 [00:07:49] New patchset: Kaldari; "New web preferences for Echo" [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/47042 [00:07:53] bsitu ^^ [00:07:56] git rebase --onto [00:08:24] And in most cases, the latter parameter is just HEAD~1 (the commit immediately before the current one) [00:08:30] RoanKattouw: is that something you need to do only when the dependency is outdated and the dependent changeset has been emrged? [00:09:06] No, it's something you always need to do when the dependency is outdated [00:09:09] interesting [00:09:10] However, if the newer dependency is unmerged, Gerrit's rebase button can generally figure things out (unless there are bona fide conflicts) [00:09:22] Another trick: [00:09:23] i've always just done git rebase master and fixed conflicts when gerrit can't figure it out [00:09:59] If Jon was aware of your change (or the same person had owned both changes), he could have used git rebase --interactive to amend his change and automatically rebase your change to account for the amend [00:10:15] in one operation [00:10:27] ah in spite of the fact that the previous commit had been merged? [00:10:38] No, I mean at the time when he was amending his change [00:10:46] ah yeah [00:11:12] Instead of just amending it and screwing up your commit, he could have used an interactive rebase which would have amended his commit *and* updated yours to account for it, all in one operation [00:11:27] yeah that makes sense [00:11:28] With inter-author dependencies, this is usually difficult [00:11:37] :p [00:11:40] But just today I was working with a stack of 6 inter-dependent changes that were all mine [00:11:48] and I needed to amend the bottom one [00:12:04] they were actually both jon's commits but i was trying to merge the second one and was feeling nice enough to try and fix the dependency problem for him :) [00:12:07] so then this trick works great [00:12:21] Oh, I see [00:12:25] Right, then Jon should have used an interactive rebase :) [00:12:39] in theor [00:12:46] when updating the parent [00:12:51] Yes [00:12:52] yah [00:13:04] it's hard to keep track of this stuff [00:13:32] It is, and you often find yourself having to fix broken dependencies [00:14:19] I can maintain 6-deep stacks of changes that I all own, but then when a team member goes in and amends the 3rd change without touching the others... :) [00:14:20] New patchset: Krinkle; "(bug 43915) Implement deleteEqualMessages.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/43671 [00:14:38] hehehe [00:15:04] ok, well thanks as always for your tutelage, RoanKattouw! [00:15:12] You're welcome :) [00:16:42] 03(mod) en.wikipedia.beta.wmflabs.org takes 10-20 seconds to load - 10https://bugzilla.wikimedia.org/44565 normal->major; +comment (10Andre Klapper) [00:17:21] New review: Krinkle; "Rebased, once again (resolving merge conflicts of other more loved commits)" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/43671 [00:17:26] Dereckson thanks for your help I have some more ideas now [00:17:39] You're welcome Slaide. [00:18:44] Don't hesitate to write a blog post or a quick tutorial to explain the solution you will choose when you'll have something working: this documentation would be a nice addition. [00:19:13] my attempt is going to be totally backyard hahah [00:20:25] I'm going to use a few tooks to automate the formatting another tool to chop it up and then use the api to upload it [00:20:29] 03(mod) Axiata XL configuration needs entry in translateWiki - 10https://bugzilla.wikimedia.org/44325 +comment (10aklapper) [00:20:32] until I [00:20:39] Oh hey Dereckson [00:20:45] Did you get in touch with terrrydactyl? [00:20:55] (and if you haven't yet you bloody well have now) [00:21:10] Yes, 2 hours ago. [00:21:13] Great! [00:21:30] get a bit better at doing it all programatically [00:21:31] Thank you a lot to have help her meanwhile. [00:21:47] * terrrydactyl ties Dereckson to something so he can't run away again. [00:22:36] It's my pleasure [00:23:00] Dereckson: I don't know what was up, but if you can foresee an absence, let me know and I can hop in sooner :) [00:23:18] oh marktraceur! i didn't remember to ask you, but did you notice if the debug messages worked when you were running my code? [00:23:27] 03(mod) Error Messages from maint scripts should be clearer when db connection type doesn't exist for CLI - 10https://bugzilla.wikimedia.org/44564 +comment (10Andre Klapper) [00:23:27] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Andre Klapper) [00:23:36] terrrydactyl: I didn't notice, my local instance isn't set up for debugging sadly [00:24:00] 03(mod) spurious username "0" in some dump revisions - 10https://bugzilla.wikimedia.org/44558 (10Andre Klapper) [00:24:05] ah, okay! as far as i know, i'm implementing it correctly, it just shows up once and then doesn't anymore. :\ [00:24:17] 03(mod) Use token for reseting the update markers on the watchlist - 10https://bugzilla.wikimedia.org/44563 (10Andre Klapper) [00:24:37] 03(mod) Another Upload Request - 10https://bugzilla.wikimedia.org/42427 +comment (10Fastily) [00:25:58] 03(mod) Hide bots from Logs - 10https://bugzilla.wikimedia.org/19322 (10Andre Klapper) [00:26:06] 03(mod) Allow hiding of bot actions in [[Special:Log]] - 10https://bugzilla.wikimedia.org/44549 +comment (10Andre Klapper) [00:26:08] 03(mod) Hide bots from Logs - 10https://bugzilla.wikimedia.org/19322 +comment (10Andre Klapper) [00:26:29] terrrydactyl: Sorry I can't be more helpful, maybe I'll find some time to debug later but not now. Sorry! [00:26:46] marktraceur: it's okay. it works so that's all that really matters. [00:26:48] 03(mod) Wikidata search problems (tracking) - 10https://bugzilla.wikimedia.org/44529 (10Andre Klapper) [00:27:02] terrrydactyl: it works on mediawiki.dereckson.be/index.php?title=Sandbox:Git2Pages [00:27:20] New review: Kaldari; "Not sure why this is useful, but doesn't look harmful." [mediawiki/extensions/Echo] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/45931 [00:27:21] Change merged: Kaldari; [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/45931 [00:27:49] wfShellExec: git clone '/home/dereckson/dev/mediawiki/extension/Git2Pages' /tmp/966a4628b3b6c295cc33c419161266f0 / Git2Pages: Cloned a git repository. / wfShellExec: ls [00:28:19] oh okay! thanks for checking Dereckson [00:29:27] By the way, I see there is a PHP 5 related issue: Strict Standards: Only variables should be passed by reference in /usr/home/dereckson/dev/mediawiki/extensions/Git2Pages/Git2Pages.body.php on line 50 Sandbox:Git2Pages [00:30:49] Er no, in this case, just a small code issue. [00:30:59] wfShellExec(..., $limit=1000000 ); [00:31:06] ah yeah! i needed help with that [00:31:37] so mark tested out my code, and the reason for it sometimes not cloning is because of the limit defaults in wfShellExec [00:31:51] so we need to increase it to be able to clone it. [00:31:58] but i'm not sure what a good size would be. [00:32:17] the size referring to the size of the git repository. [00:32:58] Yes, but PHP doesn't support this particular named parameters syntax scheme. [00:33:33] so it executed $limits = 10000 [00:33:55] and the call becomes wfShellExec($command, 10000) [00:34:35] hmm, so how do i make sure it's $limits = 10000? [00:34:40] the parameter $limits stays at its default value, and you send 10000 number to &$retval (so the error message) [00:34:43] there are other optional parameters [00:35:03] do i have to define all the parameters then? [00:35:19] Like this:wfShellExec($cmd, null, array, $limits) [00:35:35] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 normal->major (10Andre Klapper) [00:35:52] Reading the method signature and put default values to these parameters. [00:35:59] 03(mod) "commonswiki:allpages:ns:*" keys too long - 10https://bugzilla.wikimedia.org/44523 +patch-in-gerrit (10Andre Klapper) [00:36:00] Yes. [00:36:17] okay [00:36:21] I see $limits isn't expected to be an integer but an, array of 4 values: filesize, memory, time, walltime [00:36:40] so i should send in an array. [00:36:48] would i only have to modify filesize? [00:37:19] I don't know what's the bad limit. [00:38:30] During the debug, did you try to $result = wfShellExec( $cmd ) ; wgDebug($result) (or echo or die($result) or anything else) to see the exact issue? [00:40:02] i didn't personally look at the issue. marktraceur ran it and found that it cloned after setting the limits to something high. [00:40:23] at the time i had an issue with my vm that was unique to me so i ended up doing a clean install for MAMP again. [00:40:26] *sound of marktraceur banging on the numpad for five seconds* [00:40:57] New patchset: Kaldari; "New web preferences for Echo" [mediawiki/extensions/Echo] (master) - https://gerrit.wikimedia.org/r/47042 [00:43:16] The issue is the quotes. [00:43:21] Cloning into '/tmp/966a4628b3b6c295cc33c419161266f0'... [00:43:22] done. [00:43:29] with a manual git clone /home/dereckson/dev/mediawiki/extensions/Git2Pages /tmp/966a4628b3b6c295cc33c419161266f0 [00:43:41] but if I single-quote it: git clone '/home/dereckson/dev/mediawiki/extension/Git2Pages' /tmp/966a4628b3b6c295cc33c419161266f0 [00:43:44] fatal: repository '/home/dereckson/dev/mediawiki/extension/Git2Pages' does not exist [00:43:45] 03(mod) grammatical error(s) in message MediaWiki:Permissionserrors - 10https://bugzilla.wikimedia.org/44507 (10Andre Klapper) [00:43:46] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Andre Klapper) [00:44:04] Debug tip: output the command and try to run in from the console to see how that works [00:44:20] to run it [00:44:44] did you send the git url with quotes when you did {{#snippet}}? [00:44:52] 03(mod) Fix link to archive.org - 10https://bugzilla.wikimedia.org/44464 (10Andre Klapper) [00:45:08] quotes are added by wfEscapeShellArg [00:45:11] i didn't have a problem with single quotes. [00:45:16] oh, is it? [00:47:24] 03(mod) Language link does not appear - 10https://bugzilla.wikimedia.org/44528 +comment (10jefft0) [00:49:53] 03(mod) Edit on double click does not work on Wikimania 2013 - 10https://bugzilla.wikimedia.org/44522 +comment (10aklapper) [00:50:07] Oh no. Last week, I introduced a typo in the sample to see how it behaves when the repo didn't exist, it misses a s. [00:50:17] Sorry, it works well with ''. [00:50:21] New patchset: Alex Monk; "(bug 14862) WIP - Global user renaming" [mediawiki/extensions/CentralAuth] (master) - https://gerrit.wikimedia.org/r/39171 [00:50:31] /extension/ vs /extensions/ [00:50:43] Cloning into '/tmp/966a4628b3b6c295cc33c419161266f0'... [00:50:44] Yes. [00:51:00] so.. it works? [00:51:39] It works on my machine, yes. [00:52:00] also don't have a problem when trying to clone without setting $limits. i'm not sure why mark had problems, but he said it worked on his machine after he set the $limits to something higher. [00:56:29] To raise limits seems a good idea, especially for the execution time. [00:56:54] I need 2 minutes on a machine to clone MediaWiki repo from ssh. [00:57:21] using this command or just in general? [00:57:49] New review: Kaldari; "Needs a rebase." [mediawiki/extensions/Echo] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/44192 [01:00:30] in general [01:01:01] New patchset: Mattflaschen; "(bug 44459) Ensure jqueryMsg treats plain messages as plain, with tests." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47044 [01:01:29] i'm not very well versed in computer resources. i can understand what file size means, but memory, time, and walltime isn't very clear to me. [01:01:32] Here how you can do a quick and dirty wfShellExec debug -> http://dpaste.com/902811/ [01:01:46] oh okay, thanks [01:01:55] memory is the maximal RAM the script can use [01:02:19] time the maximal execution time in seconds [01:02:41] so if it passes the time limit, does it just abort? [01:02:41] Let's see if there is some doc for walltime. What file size means? [01:02:47] Right. [01:04:10] hmm, maybe i don't know what file size means, i thought it might be how big a file can be, but what file in relationship to wfShellExec? [01:04:10] That's tricky. [01:04:25] Do you have the MediaWiki core code on your computer? [01:04:41] 03(NEW) phpcs fails on JS-only changes - 10https://bugzilla.wikimedia.org/44567 normal; Wikimedia: Git/Gerrit; () [01:04:54] yes [01:04:57] you'll find a bin/ulimit5.sh script [01:05:24] this script call ulimit with your parameters [01:05:26] then the command [01:06:06] so [01:06:18] sorry, i didn't get that. i found the file though. [01:06:29] The time isn't the execution time, but according manpage -> the maximum amount of cpu time in seconds. [01:06:57] New patchset: Mattflaschen; "(bug 44459) Ensure jqueryMsg treats plain messages as plain, with tests." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47044 [01:06:58] and walltime is the maximal allowed execution time [01:07:07] send to timeout command: http://swoolley.org/man.cgi/timeout [01:07:10] sent [01:07:30] And we've got a new linuxism winner. [01:07:49] (this code wouldn't have worked at all on old Mac OS X versions) [01:08:28] If you use limits, please add in the Git2Pages documentation, your extension requires bash. [01:08:53] okay [01:09:14] but what am i sending to the timeout command? the shell file? [01:09:17] I'm fixing the script to call bash in path and not /bin/bash [01:09:55] 03(mod) phpcs fails on JS-only changes - 10https://bugzilla.wikimedia.org/44567 +comment (10Chad H.) [01:13:18] 03(NEW) bin/ulimit5.sh isn't UNIX compliant - 10https://bugzilla.wikimedia.org/44568 trivial; MediaWiki: General/Unknown; () [01:13:27] Thank you to have allowed to notice this bug. [01:13:40] 03(mod) bin/ulimit5.sh isn't UNIX compliant - 10https://bugzilla.wikimedia.org/44568 +comment (10Dereckson) [01:14:21] i don't think i noticed the bug, haha. i'm very lost right now. [01:14:42] ah, but i allowed you to notice the bug, huzzah! [01:22:07] New patchset: Dereckson; "(bug 44568) Fix shebang path to bash" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47045 [01:22:17] 03(mod) Axiata XL configuration needs entry in translateWiki - 10https://bugzilla.wikimedia.org/44325 (10Dan Foy) [01:26:07] New patchset: Dereckson; "(bug 44568) Fix shebang path to bash in bin/ulimit5.sh" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47045 [01:28:31] New patchset: Katie Horn; "Logging Cleanup: Searched for log lines that deserved to be qualified as LOG_ERR or something more severe, and added what I feel is a vaguely appropriate log level. Added a setting that will, when unset, suppress the avalanche of LOG_DEBUG level statement" [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/47046 [01:29:52] 03(mod) VisualEditor: Unexpected behavior when line starts with space - 10https://bugzilla.wikimedia.org/44478 +comment (10jforrester) [01:35:44] New review: Pgehres; "Assuming that you chose all of those levels for reasons, I am not going to question those. Other th..." [mediawiki/extensions/DonationInterface] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/47046 [01:35:44] Change merged: Pgehres; [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/47046 [01:41:11] New review: Dereckson; "PS2: Fixed commit message" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/47045 [01:41:37] 03(mod) bin/ulimit5.sh isn't UNIX compliant - 10https://bugzilla.wikimedia.org/44568 +comment (10dereckson) [01:42:46] watching Dereckson go through the steps of fixing a bug is pretty fascinating. [01:56:27] New patchset: Tim Starling; "Made nextJobDB.php respect $wgJobTypesExcludedFromDefaultQueue." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46900 [01:56:43] Change merged: Tim Starling; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46900 [01:59:03] New review: Pgehres; "A few things. I am not sure any of these are blockers to deployment though. Maybe?" [mediawiki/extensions/DonationInterface] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/23027 [02:00:39] 03(mod) Strip markers exposed in anchor links with ==[[Link|text]]== - 10https://bugzilla.wikimedia.org/18295 +comment (10Gadget850) [02:02:26] 03(NEW) Venus planet software doesn't support accents in URLs - 10https://bugzilla.wikimedia.org/44569 minor; Wikimedia: Planet; () [02:03:17] New patchset: Liangent; "Refactor ipboptions and Xml::listDropDown()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/22699 [02:05:23] 03(mod) Venus planet software doesn't support accents in URLs - 10https://bugzilla.wikimedia.org/44569 +comment (10Dereckson) [02:13:24] 03(mod) Venus planet software doesn't support accents in URLs - 10https://bugzilla.wikimedia.org/44569 +comment (10Dereckson) [02:14:01] 03(mod) [Planet] Link to post in feeds is missing, makes aggregator load the planet instead - 10https://bugzilla.wikimedia.org/38837 (10Dereckson) [02:14:27] 03(mod) GitHub in bugzilla's see also - 10https://bugzilla.wikimedia.org/41903 (10Dereckson) [02:23:08] 03(mod) Edit on double click does not work on Wikimania 2013 - 10https://bugzilla.wikimedia.org/44522 +comment (10Danny B.) [02:23:57] 03(mod) Edit on double click does not work on Wikimania 2013 - 10https://bugzilla.wikimedia.org/44522 +comment (10danny.b) [02:26:50] New patchset: Aaron Schulz; "[LockManager] Updated DBLockManager for cross-wiki support." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47049 [02:34:20] New patchset: Dereckson; "(bug 41903) Adding GitHub support to Bugzilla see also field." [wikimedia/bugzilla/modifications] (master) - https://gerrit.wikimedia.org/r/47050 [02:34:48] 03(mod) GitHub in bugzilla's see also - 10https://bugzilla.wikimedia.org/41903 +patch-in-gerrit +upstream; +comment (10Dereckson) [02:35:25] hi there, I use a multiple instanced wiki, where LocalSettings.php calls LocalSettinge-wiki2.php. I once was able to rename the LocalSettings.php file, then go to http://wiki/config and create a new instance. [02:36:36] now, when I open wiki/config, i get this: http://imgur.com/aNFYUkT [02:36:47] halp plez! [02:39:05] New review: Dereckson; "GitHub has been considered for inclusion in this extension, but it's finally merged in core instead ..." [wikimedia/bugzilla/modifications] (master) - https://gerrit.wikimedia.org/r/44393 [02:41:12] andre__: gift for you ↑ [02:47:39] New review: Nischayn22; "Agree, I think you can have an optional parameter for this" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/33040 [02:52:38] i have a fully functional multiple instanced mediawiki installation with 3 seperate wikis running on the same server [02:52:43] I'm trying to create the 4th [02:53:20] New patchset: Liangent; "Refactor ipboptions and Xml::listDropDown()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/22699 [02:53:30] but it's hanged when I go to http://mywiki/mw-config (says i need to select language, but I see no options) [02:53:49] no options but to restart installation, which i tried, and it doesn't work. [02:59:22] New patchset: Liangent; "Refactor ipboptions and Xml::listDropDown()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/22699 [03:05:43] EPiSKiNG-: [03:05:59] what does it say when you try http://mywiki ? [03:06:00] yes? [03:06:09] that LocalSettings.pho isn't set up [03:06:11] and to configure [03:06:21] links me to wiki/mw-config [03:07:44] http://localhost/mw/mw-config/index.php shows me the interface to select a language [03:07:54] exactly [03:08:02] but I see no language options [03:08:33] take a screenshot and file a bug then [03:08:47] only clickable item is the Restart Installation hyperlink... [03:09:31] I've done this before though [03:09:34] with no problems... [03:09:43] what version of MW? [03:09:47] possibly on an earlier version... but only like 1.15 [03:09:52] now i'm on 1.17.2 [03:10:05] http://imgur.com/aNFYUkT [03:10:07] screenshot [03:10:42] I think your PHP script dies midway [03:10:49] not sure why [03:10:52] i made some mods to the skin recently [03:11:07] that might be the reason then :p [03:11:14] does the installation use a skin other than monobook? [03:11:17] don't file a bug then [03:11:24] it might, not sure [03:11:33] unzip the skins directory and overwrite? [03:11:35] hmm [03:11:41] from 1.17.2 [03:14:05] New patchset: Liangent; "Refactor ipboptions and Xml::listDropDown()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/22699 [03:19:36] Dereckson, uh yay, thanks! [03:20:14] YAY! [03:20:14] That was it! [03:20:14] thanks! [03:20:52] 03(mod) Disable tooltip pointing to MoodBar (for now) - 10https://bugzilla.wikimedia.org/44482 +comment (10Steven Walling) [03:24:05] New patchset: Mattflaschen; "Hide X button." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47051 [03:25:42] New review: Mattflaschen; "The main question is, "Do we want to do this?"" [mediawiki/extensions/GuidedTour] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/47051 [03:27:33] New patchset: Mattflaschen; "Don't show X button." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47051 [03:31:22] New review: Mattflaschen; "We should also consider changing the text to "hide these", or any better alternative we come up with..." [mediawiki/extensions/GuidedTour] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/47051 [03:43:10] New patchset: Liangent; "Refactor ipboptions and Xml::listDropDown()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/22699 [03:46:11] New patchset: Krinkle; "(bug 43915) Implement deleteEqualMessages.php" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/43671 [03:49:03] New patchset: Mattflaschen; "Various jshint fixes:" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47052 [03:49:45] Change merged: Tim Starling; [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/46289 [03:57:21] New review: Liangent; "@Nikerabbit: if so, maybe merge it into class XmlSelect?" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/22699 [04:04:40] 03(mod) jqueryMsg should not parse plain messages as HTML - 10https://bugzilla.wikimedia.org/44459 +patch-in-gerrit +patch-need-review; +comment (10Matthew Flaschen) [04:33:23] New patchset: Mattflaschen; "Various jshint fixes:" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47052 [04:38:59] Hi everyone! [04:39:04] Hi! [04:40:13] Can we lock a special page preventing users to edit it without our confirm?! [04:41:18] HRezaei: you might want to look at http://www.mediawiki.org/wiki/Extension:PendingChanges and http://www.mediawiki.org/wiki/Help:Protecting_pages [04:41:29] Does anyone know the fundamental difference between using xml.sax and ElementTree.iterparse() is in python? [04:42:19] ksikka: http://stackoverflow.com/questions/192907/xml-parsing-elementtree-vs-sax-and-dom does. [04:42:29] Thanks! [04:44:15] HRezaei: "Edit" a special page? Which page? [04:46:47] PleaseStand: not exactly "special page"! some pages I want users couldn't modify, or their modification wouldn't publish until I review them. [04:49:16] New review: Ori.livneh; "> That seems dead simple to me. I don't think they're going to remove" [mediawiki/extensions/EventLogging] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46910 [04:49:34] HRezaei: Wikipedia implements "pending changes" using the FlaggedRevs extension. You might want to take a look at that. [04:49:43] !e FlaggedRevs [04:49:43] https://www.mediawiki.org/wiki/Extension:FlaggedRevs [04:49:49] New review: Mattflaschen; "See inline." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47052 [04:50:34] I saw 4 options in the installation process, and I selected classic mode, what was three others? can I switch to another? [04:51:37] HRezaei: Sure, you just have to edit LocalSettings.php. [05:01:24] See https://www.mediawiki.org/wiki/Manual:User_rights . [05:02:00] If you just want to protect specific pages, see https://www.mediawiki.org/wiki/Help:Protecting_and_unprotecting_pages . [05:04:57] 03(NEW) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 critical; Wikimedia: General/Unknown; () [05:05:04] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 04CRIT->major (10Krinkle) [05:07:52] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 +code-update-regression; +comment (10Krinkle) [05:13:21] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 (10Liangent) [05:59:18] New patchset: Lalei; "(bug 14230) Add a button to request a new fancy captcha" [mediawiki/extensions/ConfirmEdit] (master) - https://gerrit.wikimedia.org/r/44376 [06:07:23] New patchset: Aaron Schulz; "[FileBackend] Added more documentation." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47053 [06:08:04] New review: Mattflaschen; "Looks good. The next step is to update E3Experiments." [mediawiki/extensions/ConfirmEdit] (master) C: 1; - https://gerrit.wikimedia.org/r/44376 [06:17:35] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46910 [06:23:09] I'm trying to install Extension:FlaggedRevs, but How can I run maintenance/update.php from command line on my host provider?!! [06:26:49] PleaseStand: Thanks to your previous guides, should I run all sql scripts in FlaggedRevs\backend\schema\mysql on my remote mysql db? [06:30:26] New patchset: Aaron Schulz; "[LockManager] Split QuorumLockManager into its own file." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47055 [06:33:59] HRezaei: No, you only need to run FlaggedRevs.sql. [06:34:07] However, I'd try the web updater first. [06:34:09] https://www.mediawiki.org/wiki/Manual:Upgrading#Web_updater [06:34:20] Just make sure to back up your database before doing anything. [06:51:49] New patchset: Pastakhov; "fix problems with resources loader" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47056 [06:52:40] New patchset: Brian Wolff; "Initial checkin of CharRangeSpan, version 0.9." [mediawiki/extensions/CharRangeSpan] (master) - https://gerrit.wikimedia.org/r/35401 [06:54:03] New patchset: Amire80; "We have messages where whitespace is significant" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46972 [06:54:45] New review: Amire80; "Looks good to me, tested. Put the rules on separate lines." [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46972 [06:56:36] New review: Brian Wolff; "I found an issue with this extension on how it handles attributes of html tags." [mediawiki/extensions/CharRangeSpan] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/35401 [07:00:19] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46972 [07:00:33] New patchset: Amire80; "Ajaxify message filters" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46915 [07:03:18] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46915 [07:08:16] New patchset: Amire80; "Search integration in message table" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46683 [07:29:00] 03(mod) Language link does not appear - 10https://bugzilla.wikimedia.org/44528 (10Lydia Pintscher) [07:32:30] New patchset: Ori.livneh; "Establish and implement UUID convention for events" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46961 [07:38:54] 03(mod) Create Wikivoyage Polish - 10https://bugzilla.wikimedia.org/44414 (10azareb) [08:20:09] New patchset: Raimond Spekking; "GuidedTour was enabled on enwiki last night" [translatewiki] (master) - https://gerrit.wikimedia.org/r/47057 [08:20:09] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/47057 [08:20:13] 03(mod) jqueryMsg should not parse plain messages as HTML - 10https://bugzilla.wikimedia.org/44459 +comment (10Matthew Flaschen) [08:20:14] New patchset: VitaliyFilippov; "Fix E_NOTICE and remove error suppression operators" [mediawiki/extensions/WikiCategoryTagCloud] (master) - https://gerrit.wikimedia.org/r/34216 [08:20:14] New review: VitaliyFilippov; "Okaaay, then I remove all @ from the original extension code ... :)" [mediawiki/extensions/WikiCategoryTagCloud] (master) C: 0; - https://gerrit.wikimedia.org/r/34216 [08:29:29] New patchset: Pastakhov; "fix problems with use resources loader" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47056 [08:32:39] Change merged: Pastakhov; [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47056 [08:37:48] Good morning. I have a mediawiki running on my webserver under www.mydomain.org/wiki and I'd like to move it to wiki.mydomain.org. Aside from configuring the virtual host properly in Apache, do I need to make configuration changes to the wiki itself? [08:39:59] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46923 [08:40:22] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46961 [08:43:33] 03(NEW) addcontributions:; table name prefix leads to invalid SQL statement - 10https://bugzilla.wikimedia.org/44571 critical; MediaWiki extensions: DynamicPageList2; () [08:54:44] jem^: yes [08:56:12] New patchset: Santhosh; "Show unset as workflow status if no workflow set" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47058 [08:56:34] 03(mod) jqueryMsg should not parse plain messages as HTML - 10https://bugzilla.wikimedia.org/44459 +comment (10listenleser) [09:02:32] 03(NEW) Change $wgUploadNavigationUrl for en.wikivoyage - 10https://bugzilla.wikimedia.org/44572 normal; Wikimedia: Site requests; () [09:04:00] http://wikiapiary.com/wiki/Extension:Nuke [09:04:15] New patchset: Pastakhov; "remove $egMultiMapsDefaultService_showmap" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47059 [09:10:09] Change merged: Pastakhov; [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47059 [09:10:37] 03(mod) jqueryMsg should not parse plain messages as HTML - 10https://bugzilla.wikimedia.org/44459 +comment (10mflaschen) [09:11:58] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/46683 [09:17:06] 03(mod) Resource loader should allow loading messages in nonstandard ways (e.g. raw, forcontent, parsed, ...) - 10https://bugzilla.wikimedia.org/25349 +comment (10Matthew Flaschen) [09:17:07] 03(mod) Use ResourceLoader for message delivery - 10https://bugzilla.wikimedia.org/43409 (10Matthew Flaschen) [09:19:10] 03(mod) Update repo on page move - 10https://bugzilla.wikimedia.org/36729 +comment (10Nemo) [09:21:10] 03(mod) Update repo on page move - 10https://bugzilla.wikimedia.org/36729 +comment (10Legoktm) [09:21:14] New patchset: Santhosh; "Code cleanup" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47060 [09:27:19] 03(mod) Update repo on page move - 10https://bugzilla.wikimedia.org/36729 +comment (10federicoleva) [09:30:22] New patchset: Rfaulk; "Add. revert() functionality." [sartoris] (master) - https://gerrit.wikimedia.org/r/47061 [09:30:22] New patchset: Rfaulk; "Add. method _get_latest_deploy_tag to fetch the latest deploy tag.." [sartoris] (master) - https://gerrit.wikimedia.org/r/47062 [09:30:22] New patchset: Rfaulk; "Fix. Supply correct number of args to _sync." [sartoris] (master) - https://gerrit.wikimedia.org/r/47063 [09:30:23] New patchset: Rfaulk; "Mod. raise error for bad returncode in _get_latest_deploy_tag." [sartoris] (master) - https://gerrit.wikimedia.org/r/47064 [09:30:40] 03(NEW) [Interwiki] Links should use HTTP or HTTPS URL protocol relative to current page - 10https://bugzilla.wikimedia.org/44573 enhancement; MediaWiki extensions: Interwiki (extension); () [09:38:04] hi [09:38:30] can someone tell me how to hide a specialpage from the List of all Specialpages? [09:40:33] New patchset: Raimond Spekking; "[PageImages] was black deployed somewhere in 2012" [translatewiki] (master) - https://gerrit.wikimedia.org/r/47065 [09:40:58] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/47065 [09:43:21] 03(mod) [Interwiki] Links should use HTTP or HTTPS URL protocol relative to current page - 10https://bugzilla.wikimedia.org/44573 +comment (10fastgoldfish) [09:45:05] 03(mod) Account creation interface should not be using helvetica/arial when the rest of the skin does not - 10https://bugzilla.wikimedia.org/44394 +comment (10zhorishna) [09:46:37] 03(mod) Abuse filter regex \b considers unicode characters as word boundaries - 10https://bugzilla.wikimedia.org/22761 +comment (10Jérémie Roquet) [09:51:59] 03(mod) Account creation interface should not be using helvetica/arial when the rest of the skin does not - 10https://bugzilla.wikimedia.org/44394 (10Legoktm) [09:53:38] only needed to change wgScriptPath it seems [09:57:58] New patchset: Pastakhov; "add map elements line, polygon, rectangle" [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47066 [10:02:50] Change merged: Pastakhov; [mediawiki/extensions/MultiMaps] (master) - https://gerrit.wikimedia.org/r/47066 [10:10:11] 03(mod) phpcs-HEAD should skip if there is no file to process - 10https://bugzilla.wikimedia.org/44567 summary; +comment (10Antoine "hashar" Musso) [10:17:04] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 +comment (10sam) [10:17:12] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 +comment (10sam) [10:18:02] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 (10Sam Reed (reedy)) [10:24:00] New patchset: Daniel Kinzler; "Log profiling info from maintenance scripts." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46941 [10:29:04] I've followed the instructions here: https://www.mediawiki.org/wiki/Template:Lowercase , but my main page initial letter is still uppercase and a "Template:Lowercase" link is visible on it [10:29:19] the extension is showing as installed in Special:Version [10:29:27] what might I have done wrong? [10:29:33] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 +comment (10Andre Klapper) [10:32:08] New review: Hashar; "/bin/bash is also hardcoded some lines below :-D" [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/47045 [10:34:24] jem^: sounds like you di9dn't create the actual template on your system [10:35:20] 03(mod) Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind - 10https://bugzilla.wikimedia.org/44570 +comment (10sam) [10:36:29] can someone tell me how to hide a Specialpage from the List of all Specialpages? [10:40:05] lbenedix: it'S the third parameter in SpecialPage's constructor [10:41:14] parent::_construct('Foobar'); ? [10:45:22] New patchset: Santhosh; "Code cleanup" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47060 [10:47:43] DanielK_WMDE: the instructions made no mention of that [10:47:45] but never mind, I've set wgCapitalLinks = false instead [10:47:54] i think i found it: http://www.mediawiki.org/wiki/Manual:Special_pages#Constructor [10:51:02] New patchset: Daniel Kinzler; "Profiling for hook calls." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46943 [10:52:35] but where is the Constructor called? [10:52:36] New review: Daniel Kinzler; "looks fine, but needs a rebase." [mediawiki/core] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/27255 [10:52:36] in my Foobar.php i have $wgSpecialPages['Foobar'] = 'SpecialFoobar'; [10:52:51] perhaps I'm not understanding the template mechanism properly [10:53:45] from reading the mediawiki wiki, it looks like templates are basically include files [10:54:09] so if i need to create a "lowercase" template, it's not clear when I need to put in it [10:57:22] hmmm ? is it possible that some pages don't have any history in mediawiki ? [10:57:28] eg: http://commons.wikimedia.org/w/index.php?title=MediaWiki:Sidebar/fr ? [10:58:01] esby: Specialpages have no History too... [10:58:51] but http://www.mediawiki.org/wiki/MediaWiki:Sidebar shows an history [10:59:23] http://commons.wikimedia.org/w/index.php?title=MediaWiki:Sidebar too [11:06:26] esby: the page doesn't exist most likely and its pulling a default translation [11:06:33] p858snake|l: thx [11:06:34] 03(NEW) Special:EntityData should support old revisions - 10https://bugzilla.wikimedia.org/44574 normal; MediaWiki extensions: WikidataRepo; () [11:07:11] the upload 'button' dissappeared from commons for a while ? any idea of what could have caused it ? (it's located in the participate menu); in fact the whole menu dissappeared then went back... any idea of what happened ? [11:07:38] 03(mod) Special:EntityData should support old revisions - 10https://bugzilla.wikimedia.org/44574 +comment (10Daniel Kinzler) [11:07:39] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [11:09:39] New patchset: Nischayn22; "(bug 44426) Don't add rationale into the mfd tag" [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/47069 [11:10:51] 03(NEW) Special:EntityData should support "pretty" syntax for document names - 10https://bugzilla.wikimedia.org/44575 normal; MediaWiki extensions: WikidataRepo; () [11:11:03] 03(mod) Special:EntityData should support "pretty" syntax for document names - 10https://bugzilla.wikimedia.org/44575 (10Daniel Kinzler) [11:11:04] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [11:11:15] 03(mod) Special:EntityData should support "pretty" syntax for document names - 10https://bugzilla.wikimedia.org/44575 +comment (10daniel.kinzler) [11:13:27] 03(mod) disable update.php on beta - 10https://bugzilla.wikimedia.org/37941 +comment (10Antoine "hashar" Musso) [11:13:54] 03(mod) PageTriage extension incorrectly inserting deletion rationale into "miscellany for deletion" (MFD) tag - 10https://bugzilla.wikimedia.org/44426 +comment (10Nischay Nahata) [11:14:05] 03(mod) Edit on double click does not work on Wikimania 2013 - 10https://bugzilla.wikimedia.org/44522 +comment (10NordNordWest) [11:14:08] 03(NEW) Special:EntityData should apply content negotiation - 10https://bugzilla.wikimedia.org/44576 normal; MediaWiki extensions: WikidataRepo; () [11:14:31] 03(mod) Special:EntityData should apply content negotiation - 10https://bugzilla.wikimedia.org/44576 (10Daniel Kinzler) [11:14:31] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [11:15:10] 03(mod) http://labs.wikimedia.beta.wmflabs.org does not redirect - 10https://bugzilla.wikimedia.org/36412 +comment (10Antoine "hashar" Musso) [11:16:04] 03(mod) [OPS] puppetize poolcounter - 10https://bugzilla.wikimedia.org/36892 +comment (10Antoine "hashar" Musso) [11:17:02] 03(NEW) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 normal; MediaWiki extensions: WikidataRepo; () [11:17:15] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [11:17:17] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [11:19:08] 03(mod) [OPS] exim config points to mchenry.wmflabs.org - 10https://bugzilla.wikimedia.org/36996 +comment (10hashar) [11:21:18] 03(mod) recover /etc from -feed - 10https://bugzilla.wikimedia.org/38611 +comment (10Antoine "hashar" Musso) [11:21:44] 03(mod) Buttons for editing entity are not disabled in JS-UI if user has no rights - 10https://bugzilla.wikimedia.org/44553 +comment (10wikidata-bugs) [11:21:50] 03(NEW) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 normal; MediaWiki extensions: WikidataRepo; () [11:22:14] 03(mod) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [11:22:15] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [11:24:42] 03(mod) Install Jenkins Artifactory Plugin to distribute MWDumper as a Maven Artifact - 10https://bugzilla.wikimedia.org/34394 +comment (10Antoine "hashar" Musso) [11:26:31] 03(mod) [upstream] Dependency graph points to localhost:8080 - 10https://bugzilla.wikimedia.org/35982 +comment (10Antoine "hashar" Musso) [11:27:38] 03(mod) http/https protocols not handled correctly in image links - 10https://bugzilla.wikimedia.org/44226 +comment (10Nischay Nahata) [11:27:59] 03(mod) Jenkins should use the minimum PHP version supported by MediaWiki - 10https://bugzilla.wikimedia.org/40978 +comment (10Antoine "hashar" Musso) [11:28:57] !g If10a9b6df967130838a253d986b2ed623d8e3b0a [11:28:57] https://gerrit.wikimedia.org/r/#q,If10a9b6df967130838a253d986b2ed623d8e3b0a,n,z [11:29:22] 03(mod) Blocked merges because of test time outs - 10https://bugzilla.wikimedia.org/42904 +comment (10Antoine "hashar" Musso) [11:29:33] New review: Hashar; "Fixed bug https://bugzilla.wikimedia.org/show_bug.cgi?id=42904" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46503 [11:30:24] 03(NEW) Low-level RDF serialization library - 10https://bugzilla.wikimedia.org/44579 normal; MediaWiki extensions: WikidataRepo; () [11:31:07] 03(mod) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [11:31:09] 03(mod) Low-level RDF serialization library - 10https://bugzilla.wikimedia.org/44579 (10Daniel Kinzler) [11:32:30] 03(NEW) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 normal; MediaWiki extensions: WikidataRepo; () [11:32:46] New review: Dereckson; "+another issue with timeout command" [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/47045 [11:32:53] 03(mod) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 (10Daniel Kinzler) [11:32:55] 03(mod) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [11:35:05] 03(mod) bin/ulimit5.sh isn't UNIX compliant - 10https://bugzilla.wikimedia.org/44568 +comment (10dereckson) [11:36:13] 03(NEW) Partial RDF dumps - 10https://bugzilla.wikimedia.org/44581 normal; MediaWiki extensions: WikidataRepo; () [11:42:28] 03(mod) Partial RDF dumps - 10https://bugzilla.wikimedia.org/44581 (10Daniel Kinzler) [11:42:30] 03(mod) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 (10Daniel Kinzler) [11:42:39] 03(mod) Reports of bits.wikimedia.org taking too long - 10https://bugzilla.wikimedia.org/31541 +comment (10Antoine "hashar" Musso) [11:47:43] 03(mod) Remove/Correct sep11.wikipedia domain - 10https://bugzilla.wikimedia.org/30261 +comment (10Antoine "hashar" Musso) [11:47:53] 03(NEW) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 normal; MediaWiki extensions: WikidataRepo; () [11:49:12] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [11:49:13] 03(mod) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [11:49:19] 03(mod) [OPS] Consider DNSSec - 10https://bugzilla.wikimedia.org/24413 +ops; summary (10Antoine "hashar" Musso) [11:50:01] 03(mod) [OPS] SPF (Sender Policy Framework) anti-forgery DNS record - 10https://bugzilla.wikimedia.org/1609 +ops; summary; +comment (10Antoine "hashar" Musso) [11:52:16] 03(mod) Please remove the wrong codes for Danish (redirect from dk to da) - 10https://bugzilla.wikimedia.org/23157 +comment (10Antoine "hashar" Musso) [11:56:54] 03(mod) [OPS] stats.wikimedia.org not HTTPS enabled - 10https://bugzilla.wikimedia.org/32143 +ops; summary; +comment (10Antoine "hashar" Musso) [11:58:00] 03(mod) EtherPad 1.1 sucks - 10https://bugzilla.wikimedia.org/28601 +comment (10Antoine "hashar" Musso) [11:58:06] 03(mod) EtherPad 1.1 sucks - 10https://bugzilla.wikimedia.org/28601 (10Antoine "hashar" Musso) [11:58:37] 03(mod) Upgrade EtherPad to 1.1.17 - 10https://bugzilla.wikimedia.org/29822 +comment (10Antoine "hashar" Musso) [11:59:16] 03(mod) Support optimized WebP thumbnails as alternative to JPEG - 10https://bugzilla.wikimedia.org/25611 (10Marco) [11:59:47] New patchset: Matthias Mullie; "Bug 42057 - Feedback link on article pages" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/35168 [11:59:56] 03(mod) Etherpad load/connection issues - 10https://bugzilla.wikimedia.org/30176 +comment (10Antoine "hashar" Musso) [12:01:48] 03(mod) Use SSL for the etherpad lite instance on Labs - 10https://bugzilla.wikimedia.org/43404 (10Antoine "hashar" Musso) [12:01:48] 03(mod) Etherpad does not work on https - 10https://bugzilla.wikimedia.org/35637 (10Antoine "hashar" Musso) [12:01:57] 03(mod) Move Statements out of experimental state - 10https://bugzilla.wikimedia.org/44544 (10tobias.gritschacher) [12:03:56] 03(mod) Buttons for editing entity are not hidden in JS-UI in diff view - 10https://bugzilla.wikimedia.org/44554 +comment (10wikidata-bugs) [12:04:16] 03(mod) Move Statements out of experimental state - 10https://bugzilla.wikimedia.org/44544 +comment (10wikidata-bugs) [12:05:25] New patchset: Matthias Mullie; "Post without comment" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/37229 [12:05:44] 03(mod) Buttons for editing entity are not hidden in JS-UI in diff view - 10https://bugzilla.wikimedia.org/44554 (10tobias.gritschacher) [12:05:48] 03(mod) Buttons for editing entity are not disabled in JS-UI if user has no rights - 10https://bugzilla.wikimedia.org/44553 (10tobias.gritschacher) [12:08:11] hi, could you please give me some guidance on where should I proceed if the following URL returnes malformed XML? [12:08:11] http://lyrics.wikia.com/api.php?action=lyrics&artist=%D0%9A%D0%B8%D0%BD%D0%BE&song=%D0%9A%D1%83%D0%BA%D1%83%D1%88%D0%BA%D0%B0&fmt=xml [12:08:11] the last symbol of the lyrics block is cut in half, ergo invalid UTF-8, ergo invalid XML. [12:08:46] ah [12:09:08] Kino, with Viktor Coj? [12:09:18] yes :-) [12:10:02] New patchset: Rjain; "(bug 34336) location entry tooltip should link to geocoding page" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/46960 [12:11:30] I've seen similar bug in LiquidThreads and also somewhere else, looks like simple string truncation [12:11:52] saper: yeah, byte-wise [12:12:30] but i have no idea how and where it should really be reported [12:12:55] maybe here http://wiki.peacocktech.com/wiki/LyricExtension, checking... [12:14:39] New patchset: Matthias Mullie; "(bug 43419) Remove reader tools for editors in feedback page" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/43203 [12:17:12] saper: that seems to be html only module, i see no xml/json/etc formats [12:17:18] Crazy_Hopper: http://www.seancolombo.com/ might be the guy to talk to [12:24:04] the extension code does not seem to be open source, so I am not sure anyone here can help [12:25:12] Crazy_Hopper: or, I would start asking Wikia guys [12:26:26] saper: seems like lyricwiki has its own support contacts, sorry for bothering. [12:26:43] no problem [12:27:57] mw 1.19.3, since a few days started logging " PHP Strict Standards" for Preprocessor_Hash.php on line 644 at an alarming rate (1GB log per day) [12:28:12] PHP Strict Standards: Only variables should be passed by reference in ....includes/parser/Preprocessor_Hash.php on line 644 [12:28:35] Crazy_Hopper: I've seen https://bugzilla.wikimedia.org/show_bug.cgi?id=29564 and old https://bugzilla.wikimedia.org/show_bug.cgi?id=332 [12:28:57] Alfwyn: upgraded PHP recently? [12:30:18] doesn't look like it, has date from aug 2011 (can write mw installation, but not system files) [12:31:26] md5sum of php file showed it is unmodified [12:31:35] (Preprocessor_Hash.php) [12:32:25] extract( $stack->getFlags() ); is the offending line [12:34:25] duh - probably it is the LocalSetting.php error_reporting(E_ALL | E_STRICT); [12:35:11] might not want to do that, will see who did that - thanks for listening anway [12:35:14] not recommended [12:39:25] Hi. I'm trying to get short urls working but am having trouble. I have my wiki hosted at /wiki. Do you think that's conflicting with the instructions on your site? As it assumes it's hosts at /w... unless I'm reading it wrong. [12:40:38] *hosted at [12:40:55] if your installation is at /wiki, pretty URLs can't use that path [12:42:09] oh well, they can - with a couple pages of rewrite rules and a few quirks, but there are much more fun ways to shoot yourself on the foot [12:42:32] ok thanks just wanted to check before I moved it. Thanks [12:43:22] am I right in reading that the .htaccess should go in / and not /w/ ? [12:50:04] 03(mod) Install Q&A system at ask.wikimedia.org - 10https://bugzilla.wikimedia.org/29923 +comment (10Hydra) [12:59:33] 03(mod) SVG client side rendering - 10https://bugzilla.wikimedia.org/3593 (10Marco) [13:01:36] 03(mod) Etherpad load/connection issues - 10https://bugzilla.wikimedia.org/30176 (10Nemo) [13:01:56] 03(mod) EtherPad 1.1 sucks - 10https://bugzilla.wikimedia.org/28601 (10Nemo) [13:03:41] 03(mod) Write docu/how-to for Windows with a GUI client - 10https://bugzilla.wikimedia.org/35467 normal->15enhancement; +comment (10Antoine "hashar" Musso) [13:03:45] 03(mod) Documentation is out of date, incomplete (tracking) - 10https://bugzilla.wikimedia.org/1 (10Antoine "hashar" Musso) [13:06:23] wow, 1 turned to be tracking? [13:06:35] 03(mod) Move svn.wikimedia.org/doc/ - 10https://bugzilla.wikimedia.org/35663 +comment (10Antoine "hashar" Musso) [13:07:34] Danny_B: subject of bug 1 been changed by hexmode back in Feb 2011 [13:07:50] Danny_B: and tracking keyword been in place since July 2009 :-] [13:08:31] that should have happened to bug 20k [13:08:57] 1 should have stayed prominenetly as it was ;-) [13:09:27] 03(mod) Create Wikipedia Minangkabau - 10https://bugzilla.wikimedia.org/44462 (10luthfi.indra.yudha.official) [13:10:44] 03(mod) Git review trying to push old commits - 10https://bugzilla.wikimedia.org/35951 +comment (10Antoine "hashar" Musso) [13:11:22] 03(mod) Git review trying to push old commits - 10https://bugzilla.wikimedia.org/35951 (10Antoine "hashar" Musso) [13:14:08] 03(mod) Could not write file due to insufficient permissions or missing directories/containers. - 10https://bugzilla.wikimedia.org/37687 +comment (10Antoine "hashar" Musso) [13:17:25] 03(mod) Upgrade Semantic MediaWiki and related extensions - 10https://bugzilla.wikimedia.org/30949 +comment (10hashar) [13:17:26] 03(mod) Add "Select all" and "Select none" checkboxes, when presenting list of BibTeX references to import - 10https://bugzilla.wikimedia.org/30700 +comment (10hashar) [13:17:27] 03(mod) Deprecated: Function split() is deprecated in ... - 10https://bugzilla.wikimedia.org/34390 +comment (10hashar) [13:17:27] 03(mod) Can't upload an image on user registration - 10https://bugzilla.wikimedia.org/34294 +comment (10hashar) [13:17:30] 03(mod) Set up SemanticForms on AcaWiki - 10https://bugzilla.wikimedia.org/39843 +comment (10hashar) [13:17:31] that is me [13:17:31] 03(mod) problems with Literature Review browse: no items appear - 10https://bugzilla.wikimedia.org/30986 +comment (10hashar) [13:17:31] 03(mod) Implement sentence case in BibTeX import - 10https://bugzilla.wikimedia.org/30699 +comment (10hashar) [13:21:12] 03(mod) https://secure.wikimedia.org should redirect to the new same-domain SSL sites - 10https://bugzilla.wikimedia.org/31563 +comment (10Jan Zerebecki) [13:22:22] 03(mod) $wgDBuser not set explicitly in wmf-config but relies on DefaultSettings - 10https://bugzilla.wikimedia.org/44251 +comment (10Antoine "hashar" Musso) [13:22:28] 03(mod) $wgDBuser not set explicitly in wmf-config but relies on DefaultSettings - 10https://bugzilla.wikimedia.org/44251 (10Antoine "hashar" Musso) [13:25:25] 03(mod) [OPS] migrate to Etherpad Lite - 10https://bugzilla.wikimedia.org/34953 (10Nemo) [13:26:41] 03(mod) Wikimedia Toolbar - 10https://bugzilla.wikimedia.org/3392 +comment (10Antoine "hashar" Musso) [13:29:03] 03(mod) Gerrit fails on IE 10 - 10https://bugzilla.wikimedia.org/41559 (10Chad H.) [13:29:03] 03(mod) Upgrade Gerrit to 2.6 - 10https://bugzilla.wikimedia.org/39589 (10Chad H.) [13:31:08] 03(mod) make Wikimedia configuration file management sane with Puppet - 10https://bugzilla.wikimedia.org/17768 +comment (10Antoine "hashar" Musso) [13:31:56] New patchset: Santhosh; "Expose mw.translate.getGroup" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47075 [13:31:57] New patchset: Santhosh; "WIP - Dynamic rendering and selection of workflow states" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47076 [13:31:57] New patchset: Santhosh; "Show unset as workflow status if no workflow set" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/47058 [13:32:22] New review: Santhosh; "incomplete" [mediawiki/extensions/Translate] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/47076 [13:33:07] 03(mod) Unexpected whitespace on the wikipedia.org portal in IE7 - 10https://bugzilla.wikimedia.org/19079 +comment (10Antoine "hashar" Musso) [13:33:15] le métro jusque Anderlues [13:35:05] 03(mod) Expand IPv6-to-IPv4 proxy on upload. to rr. and other domains - 10https://bugzilla.wikimedia.org/22182 +comment (10Antoine "hashar" Musso) [13:36:15] 03(mod) ethnio notice cookie isn't remembered properly - 10https://bugzilla.wikimedia.org/22874 +comment (10Antoine "hashar" Musso) [13:36:30] 03(mod) Dirty background shown on scaled GIF images - 10https://bugzilla.wikimedia.org/43454 +comment (10maic274) [13:40:26] 03(mod) Investigate ways to make wikimediafoundation.org more open - 10https://bugzilla.wikimedia.org/27006 +comment (10Antoine "hashar" Musso) [13:42:13] 03(mod) Rewrite Wikimedia's sync scripts (scap, sync-file, etc.) - 10https://bugzilla.wikimedia.org/27294 +comment (10Antoine "hashar" Musso) [13:42:14] 03(mod) Dev tasks related to git-deploy migration - 10https://bugzilla.wikimedia.org/43338 (10Antoine "hashar" Musso) [13:43:43] 03(mod) Install Q&A system at ask.wikimedia.org - 10https://bugzilla.wikimedia.org/29923 (10Antoine "hashar" Musso) [13:43:45] 03(mod) Wikimedia wikis need better issue reporting system - 10https://bugzilla.wikimedia.org/27852 (10Antoine "hashar" Musso) [13:49:35] 03(mod) Integrate OpenStreetMap data within Wikimedia projects - 10https://bugzilla.wikimedia.org/25139 (10Antoine "hashar" Musso) [13:49:37] 03(mod) Wikimedia-hosted OpenStreetMap (OSM) / mapnik tileservers wanted for mobile usage - 10https://bugzilla.wikimedia.org/33980 (10Antoine "hashar" Musso) [13:50:48] 03(mod) Wikimedia Toolbar - 10https://bugzilla.wikimedia.org/3392 +design; +comment (10Nemo) [13:51:29] hashar: are you cleaning up Wikimedia>General? :) [13:52:59] 03(mod) Kill secure.wikimedia.org landing page - 10https://bugzilla.wikimedia.org/35207 +comment (10Antoine "hashar" Musso) [13:53:00] Nemo_bis: yeah [13:53:05] Nemo_bis: it is a huge mess [13:53:13] some year olds bugs have been fixed [13:53:15] +1 [13:53:20] or just impacted one person like 7 years ago [13:53:28] so I am being bold and wont fixing a bunch of them [13:53:31] I did some cleanup a few months ago [13:53:34] or and checking whether they are fine [13:53:50] we let bug rot for too long [13:54:28] 03(mod) Wikimedia Toolbar - 10https://bugzilla.wikimedia.org/3392 (10Nemo) [13:54:45] like that one [13:55:03] it's almost valid ;) [13:55:10] yeah it is valid [13:55:25] jorm is trying to do something like that I think? [13:55:31] but I don't see the point of keep a ticket open for years and years if it is not actually used as a place where the idea is debated / discussed etc [13:55:35] maybe [13:55:36] no idea [13:56:36] well, it sometimes serves as a repository of valid ideas [13:56:41] (not that one) [13:57:11] oh [13:57:25] we do not have a mobile version of mediawiki.org [13:58:21] 03(mod) Create a mobile homepage for mediawiki.org - 10https://bugzilla.wikimedia.org/36009 +comment (10Antoine "hashar" Musso) [13:58:22] 03(mod) Special:BrowseData with SQL error browsing a category having filters - 10https://bugzilla.wikimedia.org/43260 +accessibility; +comment (10Andreas Plank) [13:59:31] 03(mod) Create a mobile homepage for mediawiki.org - 10https://bugzilla.wikimedia.org/36009 +comment (10hashar) [13:59:33] 03(mod) Investigate ways to make wikimediafoundation.org more open - 10https://bugzilla.wikimedia.org/27006 +comment (10b) [13:59:59] 03(mod) Code merged for core without verified score shown - 10https://bugzilla.wikimedia.org/43485 +comment (10Chad H.) [14:02:17] 03(mod) a page in the Yiddish Wikipedia can't be loaded in Webkit-based browsers on Mac OS X - 10https://bugzilla.wikimedia.org/36154 +comment (10Antoine "hashar" Musso) [14:02:18] 03(mod) Integrate OpenStreetMap data within Wikimedia projects - 10https://bugzilla.wikimedia.org/25139 (10Nemo) [14:02:24] Nemo_bis: I haven't done such a bug triage for quiet a looong time [14:02:26] 03(mod) Wikimedia-hosted OpenStreetMap (OSM) / mapnik tileservers wanted for mobile usage - 10https://bugzilla.wikimedia.org/33980 (10Nemo) [14:02:29] that is a lot of fun :_] [14:03:06] hashar: that's the funniest component [14:03:07] <^demon> I'll be going through https://bugzilla.wikimedia.org/buglist.cgi?list_id=177180&resolution=---&resolution=LATER&query_format=advanced&component=Git%2FGerrit&product=Wikimedia soon :) [14:03:16] <^demon> We're on track to upgrade now. [14:03:22] hear hear [14:03:24] !! [14:03:24] A red exclamation mark (!) in the recent changes or on your watchlist means that edit is not patrolled yet. Read more about patrolling at https://www.mediawiki.org/wiki/Help:Patrolled_edits and configuration at https://www.mediawiki.org/wiki/Manual:$wgUseRCPatrol [14:03:30] grrrrrr wm-bot [14:03:38] seriously [14:03:46] @del ! [14:03:49] @del !! [14:03:53] lol [14:03:59] /ignore wm-bot [14:04:03] +1 [14:04:07] !! [14:04:07] A red exclamation mark (!) in the recent changes or on your watchlist means that edit is not patrolled yet. Read more about patrolling at https://www.mediawiki.org/wiki/Help:Patrolled_edits and configuration at https://www.mediawiki.org/wiki/Manual:$wgUseRCPatrol [14:04:13] apparently that fixed it [14:04:35] Heh. [14:04:47] !! del [14:04:47] Successfully removed ! [14:04:49] <^demon> So yeah, right now we've pencilled in the 11th (week from Monday) for the update. Once we pick a firm date/time I'll send out the usual annoucements. [14:04:53] !! [14:04:54] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:05:04] <^demon> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! [14:05:05] Stop using so many exclamation marks ! [14:05:11] Lawlz. [14:05:12] <^demon> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! [14:05:12] Stop using so many exclamation marks ! [14:05:20] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! del [14:05:21] Unable to find the specified key in db [14:05:22] 03(mod) https://secure.wikimedia.org should redirect to the new same-domain SSL sites - 10https://bugzilla.wikimedia.org/31563 (10Jérémie Roquet) [14:05:26] omg [14:05:29] what's going on [14:05:32] o.o What is happening?! [14:05:38] what ? [14:05:40] Too much excitement in here. [14:05:45] cool game [14:05:47] Or rather, too much excitement in here! [14:05:50] Im gonna do special and use question marks [14:05:51] ?????? [14:05:53] <^demon> Susan: Dance party! [14:05:59] !!! [14:05:59] Stop using so many exclamation marks ! [14:06:03] ???!!! [14:06:03] <(^^)> [14:06:06] wm-bot: shut up [14:06:06] (>^)> [14:06:12] (><) [14:06:22] <(^<) [14:06:26] <(^^)> [14:06:28] !ping [14:06:28] Pong. [14:06:31] ^(^^)^ [14:06:35] v(^^)v [14:06:47] >-(^^)-< [14:06:47] Susan: Hahah your Whois Username: Sex [14:06:49] and so on [14:06:52] <^demon> I'm not sure I recognize hashar's dance. Is that the tango? [14:07:06] meh, why ur removing random keys :o [14:07:13] @infobot-snapshot hashar [14:07:13] Snapshot snapshots/#mediawiki/hashar was created for current database as of 2/1/2013 2:07:13 PM [14:07:25] * petan make a backup [14:07:34] !! [14:07:34] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:07:41] lol [14:07:42] !! [14:07:42] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:07:45] too lazy to read manual , is there a way to force media wiki to use SSL when accessing special/login pages? [14:07:45] cause we want to be able to use the double exclamation mark [14:07:46] We ought to fix that, petan. ^^ [14:07:50] without having the bot to output a message :D [14:07:54] Susan fix what [14:07:54] !! del [14:07:54] Unable to find the specified key in db [14:08:01] !! unalias [14:08:02] That. ^ [14:08:05] what that [14:08:07] <^demon> !! [14:08:07] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:08:12] !! [14:08:12] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:08:24] !! I want it with bot [14:08:24] petan: The bot should be silent when "!!" is said. [14:08:24] !! | wm-bot [14:08:24] * hybirdd wats for my message to scroll off screen... [14:08:24] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:08:25] There are multiple keys, refine your input: !!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, [14:08:29] Heh. [14:08:32] Value false was stored into infobot-auto-complete to config [14:08:37] !! [14:08:37] There is no such key, you probably want to try: !, !!!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, !?>, !1.17wmf1, !anonnotice, !bom, !cms, !console, !cooluris, !credit, !css, !exclamation, !export, !fail, !firebug, !footer, !fu, !hello, !help, !hidetabs, !hss, !iamabot, !iframe, !images, !import, !important, !install, !lockdown, !lst, !lucene, !mainpagetitle, !maps, !math, !maxlag, !MediaWiki:exporttext, !MediaWiki:fileexists, !MediaWiki:fileexists-extension, !MediaWiki:fileexists-forbidden, !MediaWiki:fileexists-shared-forbidden, !MediaWiki:fileexists-thumbnail-yes, !MediaWiki:filepageexists, !MediaWiki:mainpage, !MediaWiki:metadata-fields, !MediaWiki:newarticletext, !MediaWiki:statistics-users, !MediaWiki:uploadtext, !moin, !mwdumper, !namespaces, !next, !nosql, !omgevilbug, !oracle, !parserfunctions, !pipetrick, !ppp, !queue, !readonly, !releasedate, !requestcontext, !resetpass, !rewriteproblems, !secrets, !shorturl, !shorturls, !sitenotice, !sm, !tabcompletion, !templates, !tooquiet, !ts, !tss, !unicorn, !vector, !welcome, !wikibugs, !wikimedia, [14:08:43] oh my god [14:08:45] !! [14:08:45] There is no such key, you probably want to try: !, !!!, !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!, !?>, !1.17wmf1, !anonnotice, !bom, !cms, !console, !cooluris, !credit, !css, !exclamation, !export, !fail, !firebug, !footer, !fu, !hello, !help, !hidetabs, !hss, !iamabot, !iframe, !images, !import, !important, !install, !lockdown, !lst, !lucene, !mainpagetitle, !maps, !math, !maxlag, !MediaWiki:exporttext, !MediaWiki:fileexists, !MediaWiki:fileexists-extension, !MediaWiki:fileexists-forbidden, !MediaWiki:fileexists-shared-forbidden, !MediaWiki:fileexists-thumbnail-yes, !MediaWiki:filepageexists, !MediaWiki:mainpage, !MediaWiki:metadata-fields, !MediaWiki:newarticletext, !MediaWiki:statistics-users, !MediaWiki:uploadtext, !moin, !mwdumper, !namespaces, !next, !nosql, !omgevilbug, !oracle, !parserfunctions, !pipetrick, !ppp, !queue, !readonly, !releasedate, !requestcontext, !resetpass, !rewriteproblems, !secrets, !shorturl, !shorturls, !sitenotice, !sm, !tabcompletion, !templates, !tooquiet, !ts, !tss, !unicorn, !vector, !welcome, !wikibugs, !wikimedia, [14:08:47] !!! [14:08:48] Stop using so many exclamation marks ! [14:08:49] alrighty /ignore time [14:08:51] <^demon> Hahaha. [14:08:56] bots [14:09:00] you tell em, wm-bot [14:09:02] making me laugh since 1995 [14:09:07] ;-D [14:09:09] Value false was stored into infobot-help to config [14:09:12] !! [14:09:15] !! [14:09:15] here we go [14:09:15] There [14:09:17] now [14:09:18] ahhh [14:09:23] ooh relief [14:09:25] <^demon> !!! [14:09:25] Stop using so many exclamation marks ! [14:09:25] let me mark the bug as fixed [14:09:30] noooo [14:09:33] !!! del [14:09:34] Successfully removed !! [14:09:38] !!!! [14:09:42] !!! [14:09:43] !! [14:09:43] <^demon> !!!!! [14:09:50] <^demon> Yay :D [14:09:52] !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! [14:09:52] Stop using so many exclamation marks ! [14:09:52] you can also do this [14:09:55] I will not talk in here until you disable this [14:09:58] (mod) wm-bot does not let me !! in channels - https://bugzilla.wikimedia.org/37 (Antoine "hashar" Musso) [14:10:11] hashar: really now xD [14:10:12] thanks pet an :] [14:10:15] Output will be no longer suppressed now [14:10:18] Auto-correct, heh. [14:10:21] well, but u need to be admin lol [14:10:26] <^demon> Make me admin. [14:10:31] @trusted [14:10:32] I trust: petan\|w!.*@wikimedia/Petrb (2admin), .*@wikimedia/.* (2trusted), .*@wikipedia/.* (2trusted), .*@mediawiki/..* (2trusted), .*@wikipedia/MZMcBride (2admin), .*@wikimedia/Krinkle (2admin), .*@fsf/.* (2trusted), [14:10:32] Say please. [14:10:36] <^demon> please :) [14:10:56] Successfuly added .*@mediawiki/demon [14:10:56] @trustadd .*@mediawiki/demon admin [14:11:04] type @whoami [14:11:08] You are admin identified by name .*@mediawiki/demon [14:11:12] ok it works :D [14:11:14] \o/ [14:11:15] Alrighty, can i have some of your attention now please? ////^//// [14:11:25] hybirdd no, this channel is for typing !!!!!!!!! [14:11:29] nothing else [14:11:31] Oh god [14:11:33] hybirdd: Did you have a question? [14:11:41] Susan: yes :) [14:11:55] too lazy to read manual , is there a way to force media wiki to use SSL when accessing special/login pages? [14:12:05] Yes. [14:12:18] Wikimedia Commons should support searching by color [14:12:30] that would be a funny feature https://bugzilla.wikimedia.org/show_bug.cgi?id=37534 [14:12:32] hashar: You're looking through my bugs. :D [14:12:51] like looking for all: [Bikes____] color: [Blue___] [14:12:52] Susan: closing them all [14:12:53] hashar: Google can do it. It'd be super-helpful. [14:13:06] we could get a script that analyzes the pictures [14:13:09] <^demon> We should use graph search. "pictures like cats with purple bows" [14:13:16] xD [14:13:19] try to find its nearest color and then save that in the db [14:13:24] Susan: Alrighty; let me look in the manual [14:13:29] * hashar wants a green unicorn [14:13:29] hybirdd: There's a configuration variable for just securing login. [14:13:38] hybirdd: It's called $wgSecureLogin or something stupid. [14:13:46] A green invisible unicorn. [14:13:54] Susan: I know [14:13:59] Susan: Im just looking for a way to SSL special pages, [14:14:11] All Special pages? [14:14:11] but notting too important right now [14:14:16] Or just UserLogin? [14:14:28] https://www.mediawiki.org/wiki/Manual:$wgSecureLogin BTW. [14:15:06] Susan: Not all of them [14:15:09] <^demon> You could do something with mod_rewrite in your apache config if you're wanting all special pages. [14:15:15] http://sketses.deviantart.com/art/Green-unicorn-165409030 [14:15:31] <^demon> Like a rewritecond where port != 443, redirect certain urls. [14:15:32] hybirdd: That variable sounds like exactly what you want. :-) [14:15:34] 03(mod) Note that scribunto.wmflabs.org is using an old/different version of Scribunto if that's the case - 10https://bugzilla.wikimedia.org/39655 +comment (10Antoine "hashar" Musso) [14:15:41] ^demon: Good idea [14:16:04] European law is just a bitch wanting us to do all reasonable efforts to protect private/personal data [14:16:44] Thanks for all the inputs by the way [14:16:49] Most Special pages have nothing to do with private/personal data. [14:16:52] back to you exclamation mark [14:21:10] 03(NEW) PHP Warning: Parameter 1 to Language::findVariantLink() expected to be a reference, value given - 10https://bugzilla.wikimedia.org/44583 normal; MediaWiki: General/Unknown; () [14:21:10] 03(mod) Bugs affecting translatewiki.net (errors from MediaWiki master) (tracking) - 10https://bugzilla.wikimedia.org/39480 (10Nemo) [14:30:15] 03(mod) Create a mobile homepage for mediawiki.org - 10https://bugzilla.wikimedia.org/36009 +comment (10Max Semenik) [14:32:53] ugh [14:32:54] 03(mod) test2.wikipedia.org reportedly slow - 10https://bugzilla.wikimedia.org/39961 +comment (10Antoine "hashar" Musso) [14:32:58] weird [14:35:56] alrighty so that we got working, is there a way to get some basic wiki templates over from wikipedia/wikimedia [14:36:16] 03(mod) Create a mobile homepage for mediawiki.org - 10https://bugzilla.wikimedia.org/36009 +comment (10hashar) [14:38:26] mitevam: hi [14:42:22] hi sumanah [14:42:48] mitevam: how are you doing? [14:44:59] sumanah: im fine [14:45:36] 03(mod) wikimedia [[Special:Search]] randomly slow - 10https://bugzilla.wikimedia.org/42425 summary; +comment (10Antoine "hashar" Musso) [14:45:52] sumanah: they are letting me home for the weekend and then I need to be back on monday and i still dont know for how long... [14:45:58] Wow [14:46:08] I'm surprised they are letting you go home for the weekend [14:46:40] sumanah: thank you for the reading ! it's perfect , it keeps me occupied but doesnt require as much attention :) [14:46:50] Good, good!! [14:46:55] 03(mod) wikimedia [[Special:Search]] randomly slow - 10https://bugzilla.wikimedia.org/42425 +comment (10hashar) [14:47:18] sumanah: yes, because they are waiting for some test results that come out on monday and they dont know how to treat me until then so they decided to let me go for a bit [14:47:23] These are things where I didn't want to overload you with a month of reading at the start, I wanted to just give you the reading that would help you immediately or was a very good foundation for you [14:47:31] this stuff is also good to have as context [14:47:59] 03(mod) Size limit for labels and descriptions - 10https://bugzilla.wikimedia.org/43278 +comment (10wikidata-bugs) [14:48:31] sumanah: yes but a lot of it is actually very relevant to what I'm doing, a lot about the community , so it's good [14:48:34] yes! [14:48:35] great. [14:48:42] have I talked to you about spiral learning? [14:48:52] You have context now so you can get more out of certain reading [14:48:53] no you havent [14:49:10] the idea is that you come across an idea several times as you learn and do [14:49:25] like coming across the same angle if you spiral outwards from a point [14:49:31] and the first time you just learn the name of the concept [14:49:42] and the second time you understand it more and in more depth [14:49:49] and the next time you say "oh this can help me!" and you use it [14:49:56] yes ! if you read a book as a kid its very different from reading it as an adult [14:49:57] and the next time you think "oh but there's a problem with this" etc [14:50:20] back in a moment [14:50:29] hahaha yes i see what you mean [14:54:17] 03(mod) Add git date to Special:Version - 10https://bugzilla.wikimedia.org/38783 +comment (10dasch) [14:55:17] sumanah: i need to go, they are coming to take me home, i will probably come back online soon [14:58:18] New patchset: SuchetaG; "(Bug 39424) The feature of having multiple pad per page is removed" [mediawiki/extensions/EtherEditor] (master) - https://gerrit.wikimedia.org/r/43100 [15:04:55] 03(mod) Request feature: Subpages of Shortcuts - 10https://bugzilla.wikimedia.org/12980 (10Chad H.) [15:06:10] 03(NEW) API data push/pull guidelines - 10https://bugzilla.wikimedia.org/44584 normal; MediaWiki: API; () [15:06:14] 03(mod) Allow WYSIWIG editing - 10https://bugzilla.wikimedia.org/5398 +comment (10Antoine "hashar" Musso) [15:06:29] New patchset: Parent5446; "Cleaned up Hooks code, comments, and documentation." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/27255 [15:06:45] New review: Parent5446; "Rebase (only a conflict in documentation)." [mediawiki/core] (master) C: 1; - https://gerrit.wikimedia.org/r/27255 [15:08:48] New patchset: SuchetaG; "(Bug 39424) The feature of having multiple pad per page is removed" [mediawiki/extensions/EtherEditor] (master) - https://gerrit.wikimedia.org/r/43100 [15:09:16] I see a bunch of folks will be missing in action today because of FOSDEM :-) [15:10:43] New patchset: Jeroen De Dauw; "Use language object from local context rather then global one" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/47081 [15:11:33] 03(NEW) refactor Database::duplicateTableStructure() to get a separate Database::createTemporaryTable() - 10https://bugzilla.wikimedia.org/44585 enhancement; MediaWiki: Database; () [15:14:54] dudes (and dudettes) ... it anyone's got a minute i've got an MW unrelated issue (pplz on ##php got no ideas) ... same version of php on two servers ... on one, code works (checked gazillion times), on the other it's throwing me syntax error, unexpected stuff ... changing the length of the file by appending spaces changes the thing the syntax error is unexpecting [15:15:02] anyone ... anything ... [15:16:30] <^demon> freakolowsky: pastebin your error :) [15:16:39] <^demon> "unexpected stuff" is vague ;-) [15:17:16] http://pastebin.com/94ETas7h [15:17:40] i'm a vaguetarian :D [15:18:00] we've seen php dumping core recently [15:18:04] <^demon> Weird. [15:18:05] New patchset: Daniel Kinzler; "Add return to HttpError::getStatusCode." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47083 [15:18:10] <^demon> freakolowsky: Is the script something you can pastebin? [15:18:14] freakolowsky, different libraries? butterfly effect? viruses? borky RAM? hard to tell w/o sources:) [15:19:08] broken mmap()? [15:19:15] hard to give you the source ... iz shitloads of files [15:19:46] same OS on both machines? [15:19:53] <^demon> freakolowsky: I was mainly just thinking the index.php. [15:19:56] and which php [15:20:26] php 4.2 on both [15:20:30] hi PleaseStand! [15:20:35] php-fpm + nginx [16:42:13] * saper stands up [16:42:13] fpm bridge making fun? [16:42:13] freakolowsky, rm -rf / [16:42:13] format C: [16:42:13] JUST NOT PHP 4!!!!111 [16:42:13] AAAAAAAAAAAAAAAAAA [16:42:13] is there a problem with importdump.php it always throws this for me for a reason http://pastebin.com/AVtuu9uC [16:42:13] ^demon: http://pastebin.com/RvbJtB5C [16:42:13] MaxSem: ...wasn't my call [16:42:13] <^demon> freakolowsky: 4.x? We're not friends anymore :( [16:42:13] you to ... wasn't my call ... [16:42:13] <^demon> :( [16:42:13] i'm b***h-slappin anyone who asks me to put that on my boxes, but i can't order other ppl around ... not that high in the food-chain [16:42:13] this scripts is only 14 lines while your error messages mention lines 17-18 [16:42:14] pastebin truncates [16:42:14] interesting, maybe php truncates sometimes too? :) [16:42:14] saper: well i get the point that php is getting wrong file size or something ... just don't have a slightest about why [16:42:14] 03(mod) API data push/pull guidelines - 10https://bugzilla.wikimedia.org/44584 +comment (10bjorsch) [16:42:14] the thing is ... if you add just the right ammount of spaces ... the thing works ... [16:42:15] one of those issues where i'm just about to throw everything away and start working as a plumber [16:42:15] <^demon> Well, maybe you should add just the right amount of spaces? [16:42:16] <^demon> And put comments around it saying "DONT FREAKING CHANGE THE SPACING. CREEPY ANCIENT PHP4 BUG" [16:42:16] Change merged: Raimond Spekking; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47083 [16:42:16] yeah ... did that ... but then i realized this same issue appears in various points in the source ... and i just don't have the month it would take to find and fix all of these locations [16:42:16] and NASA said it's not black-hole activity related [16:42:16] checked [16:42:16] 03(NEW) Multiple fatal exception of type MWException on ptwiki - 10https://bugzilla.wikimedia.org/44586 major; MediaWiki: History/Diffs; () [16:42:16] so i guess no magical "just flip that switch and it will play" solutions?! thanks for listening anyway :D [16:42:17] sure there is [16:42:17] the flip you need to switch is called "use PHP 5" [16:42:17] is there a bug? and do you know which page/rev it's reading when it does this? [16:42:17] oh righ tphph4 [16:42:17] I'm not even in a position to poke at it [16:42:17] oh crap ... [16:42:17] meg [16:42:17] *meh [16:42:17] typo [16:42:17] if it isn't up to you, tell everyone else they are retarded and php 4 has been EOL for ages [16:42:17] possibly not the first part [16:42:17] PHP is 5.4 [16:42:17] oh [16:42:18] <^demon> apergos: I don't think most of us (maybe Tim) still have PHP4 installed ;-) [16:42:18] >_> [16:42:18] there is a huge difference between php 4.2 and php 5.4 [16:42:18] just sayin' [16:42:18] i was talking to somone else about some sother SW version ... which is 4.2 ... so i misstyped ... [16:42:18] so my guess is a config difference between the two PHP's [16:42:18] grab the phpinfo() of each and compare them [16:42:18] 03(mod) Multiple fatal exception of type MWException on ptwiki - 10https://bugzilla.wikimedia.org/44586 (10mybugs.mail) [16:42:18] (or the php.ini's) [16:42:18] ok well php 5.4, different story [16:42:18] look for zend_extensions in particular I think [16:42:18] but could be anything really [16:42:18] no diff in php.ini other than paths [16:42:19] and both are php-fpm+nginx? [16:42:19] yup [16:42:19] does adding ?> after all the spaces/newlines make it work? [16:42:20] nope [16:42:20] I have no idea then :( [16:42:20] * freakolowsky goes for a walk ... there's a cliff with a rather long drop nearby [16:42:22] New review: Jeroen De Dauw; "Done with https://gerrit.wikimedia.org/r/#/c/47081/" [mediawiki/extensions/EducationProgram] (master) - https://gerrit.wikimedia.org/r/43473 [16:42:22] New review: Jeroen De Dauw; "This addressed a comment posted on https://gerrit.wikimedia.org/r/#/c/43473/" [mediawiki/extensions/EducationProgram] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/47081 [16:42:22] freakolowsky: please take care [16:42:23] sumanah: no worriez ... just kidding [16:42:23] ok :-) [16:42:23] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/44940 [16:42:24] New review: Nischayn22; "Please add documentation for the new message." [mediawiki/extensions/UploadWizard] (master) C: 0; - https://gerrit.wikimedia.org/r/46960 [16:42:24] 03(mod) Special:GlobalUsers pagination broken (incorrectly links to Special:ListUsers) - 10https://bugzilla.wikimedia.org/31638 (10jeremyb) [16:42:25] 03(mod) Allow opening search results (either via form submission or items in SearchSuggest dropdown) in a new tab with Ctrl-click - 10https://bugzilla.wikimedia.org/35974 +comment (10bjorsch) [16:42:27] 03(mod) Undefined index repoScriptPath and repoUrl - 10https://bugzilla.wikimedia.org/44548 +comment (10Krenair) [16:42:27] 03(mod) Redirects to Education Program: pages results in fatal error - 10https://bugzilla.wikimedia.org/44490 +comment (10Krenair) [16:42:27] 03(mod) Special:StudentActivity gives internal error: "Fatal exception of type MWException" - 10https://bugzilla.wikimedia.org/43786 +comment (10Krenair) [16:42:27] 03(mod) Students table should be included in the Table of Contents on course pages - 10https://bugzilla.wikimedia.org/43999 +comment (10Krenair) [16:42:27] 03(mod) Login on https doesn't log you in on http - 10https://bugzilla.wikimedia.org/44330 +comment (10Krenair) [16:42:28] !ping [16:42:28] wtf [16:42:28] http://bots.wmflabs.org/~wm-bot/dump/%23mediawiki.htm [16:42:29] sumanah: hi [16:42:29] hi mitevam [16:42:29] ok you're home now [16:42:29] ? [16:42:29] yes [16:42:29] finally :) [16:42:30] Pong. [16:50:53] lol [16:50:53] this is what I call a lag [16:50:53] 20 minutes? [16:50:53] not, 40 minutes [16:50:53] :D [16:50:53] !ping [16:50:54] Pong. [16:50:55] o.o [16:50:55] bots.wmflabs.org is not resolving for me :S [16:50:55] hi, i'm trying to fid ot if there is a form of extension dat would add text from (short) oter pages into the page with for instance a + sign? [16:50:55] other* [16:50:55] maybe wm-bot is trying to access it somehow and getting timeouts [16:50:56] ruben-ikmaak: do you want to inserting text from an existing wiki page on another one? [16:50:56] lol, find out* (my keyboard is shit, but i hope someone recognises my question) [16:50:56] Vulpix: yes, i would like to make it like iḿ zooming in on a subject [16:50:56] like [16:50:56] Ifo 101 with a plus that opened 102 [16:50:56] 03(NEW) Please implement the following changes for tr.wiki - 10https://bugzilla.wikimedia.org/44587 normal; Wikimedia: Site requests; () [16:50:56] 03(mod) Please implement the following changes for tr.wiki - 10https://bugzilla.wikimedia.org/44587 (10Vito Genovese) [16:52:00] which could contain even another plus for even more advanced info. and preferrably that you could have memoty of the parts you already grasp, so whenever you meet one of those sectiosn, they would stay closed. [16:52:29] ruben-ikmaak: still I'm not sure if I'm understanding your question, but take a look at http://www.mediawiki.org/wiki/Help:Templates [16:53:43] 03(mod) Trail of bread crumbs self links to the article itself - 10https://bugzilla.wikimedia.org/43660 +comment (10Carl Austin Bennett) [16:54:08] 03(mod) Allow to create multiple accounts for en-Wikipedia workshop - 10https://bugzilla.wikimedia.org/44472 +comment (10Krenair) [16:54:48] !ping | Vulpix [16:54:48] Vulpix: Pong. [16:54:56] New patchset: Matthias Mullie; "Refactor AFT backend" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/46797 [16:55:04] !brain [16:55:04] Hello, I'm wm-bot. The database for this channel is published at http://bots.wmflabs.org/~petrb/db/%23mediawiki.htm More about WM-Bot: https://meta.wikimedia.org/wiki/wm-bot [16:55:32] New patchset: Matthias Mullie; "Refactor AFT backend" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/46797 [16:55:43] bots.wmflabs.org is now accessible [16:57:40] Vulpix, thanks, this could maybe solve my problems, i never thought about templates this way. [17:00:12] 03(NEW) Prefilled 'http://' in URL field makes it harder to copy and paste in URLs - 10https://bugzilla.wikimedia.org/44588 normal; Wikimedia: Bugzilla; () [17:00:43] 03(mod) Please implement the following changes for tr.wiki - 10https://bugzilla.wikimedia.org/44587 +comment (10Krenair) [17:00:56] New patchset: Kipcool; "Added a preference allowing the user to select the languages that should be displayed, instead of showing all languages (by defaults)" [mediawiki/extensions/WikiLexicalData] (master) - https://gerrit.wikimedia.org/r/46621 [17:01:26] Change merged: Kipcool; [mediawiki/extensions/WikiLexicalData] (master) - https://gerrit.wikimedia.org/r/46621 [17:01:39] 03(mod) Special:BrowseData with SQL error browsing a category having filters - 10https://bugzilla.wikimedia.org/43260 +comment (10yaron57) [17:02:10] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10Tyler Romeo) [17:02:11] 03(mod) Set $wgSecureLogin = true; on Wikimedia wikis - 10https://bugzilla.wikimedia.org/39380 (10Tyler Romeo) [17:02:29] 03(mod) Please implement the following changes for tr.wiki - 10https://bugzilla.wikimedia.org/44587 +comment (10vitomedia) [17:02:45] New patchset: Matthias Mullie; "New actions, filters & UX" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/46947 [17:03:41] 03(NEW) Red Xs in account creation interface are misleading - 10https://bugzilla.wikimedia.org/44589 normal; MediaWiki extensions: E3 Experiments; () [17:07:39] Does anyone have experience with the Rss extension? [17:07:52] 03(mod) FlaggedRevs, patroller and autoreview changes for tr.wiki - 10https://bugzilla.wikimedia.org/44587 summary (10Nemo) [17:09:03] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10Chris Steipp) [17:16:18] 03(mod) Change $wgUploadNavigationUrl for en.wikivoyage - 10https://bugzilla.wikimedia.org/44572 (10Peter Fitzgerald) [17:18:44] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10krenair) [17:30:12] 03(NEW) GeoCrumbs doesn't handle cases where a destination on a region boundary #isIn: more than one region - 10https://bugzilla.wikimedia.org/44590 normal; MediaWiki extensions: GeoCrumbs; () [17:32:58] 03(mod) GeoCrumbs doesn't handle cases where a destination on a region boundary #isIn: more than one region - 10https://bugzilla.wikimedia.org/44590 (10Carl Austin Bennett) [17:32:59] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 (10Carl Austin Bennett) [17:35:02] New review: Hoo man; "I didn't even know ArticleFeedback is using AbuseFilter this way... I'm a bit scared by that" [mediawiki/extensions/ArticleFeedbackv5] (master) C: -1; - https://gerrit.wikimedia.org/r/47086 [17:43:03] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 (10Carl Austin Bennett) [17:44:46] 03(mod) PageTriage: the review action is incompatible with the presence of Pending Changes - 10https://bugzilla.wikimedia.org/44065 +comment (10nischayn22) [17:53:05] New patchset: Parent5446; "(bug 31323) Add option for requiring HTTPS for certain groups." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47089 [17:54:15] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +patch-in-gerrit; +comment (10Tyler Romeo) [17:57:48] New review: Aaron Schulz; "If the case of possible duplicates is just re-inserted on recovery then that seems relatively infreq..." [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46961 [17:58:28] 03(mod) PageTriage: the review action is incompatible with the presence of Pending Changes - 10https://bugzilla.wikimedia.org/44065 +comment (10okeyes) [17:59:26] New review: Aaron Schulz; "*re-insertion" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/46961 [17:59:40] ^demon: https://gerrit.wikimedia.org/r/#/c/47055/ [18:00:17] <^demon> This was just a copy+paste, right? [18:00:26] yeah [18:00:29] <^demon> Ok, didn't feel like going line-by-line ;-) [18:01:05] \o/ [18:01:08] ^demon: and a tiny fix here https://gerrit.wikimedia.org/r/#/c/47049/1 [18:02:12] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46941 [18:04:15] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47055 [18:05:12] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10jroquet) [18:05:46] ^demon: is self-merging comment changes ok? :D [18:06:06] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47049 [18:06:13] <^demon> Depends on who you ask. I'm always a fan of "let someone else at least glance" [18:06:23] ^demon: ok, https://gerrit.wikimedia.org/r/#/c/47053/1 [18:07:09] is consensus still needed to install extensions on WMF wikies? [18:07:41] I don't think it ever was (not for all, only for some) [18:08:01] it surely was at least for LQT [18:08:19] sure, usually when its invasive [18:08:27] *it's [18:08:32] * AaronSchulz can't type [18:08:33] <^demon> I think we like to see consensus for those sorts of things. [18:09:09] <^demon> Doesn't have to be a massive months-long endeavor, but at least something showing that this isn't someone acting alone. [18:09:18] there is an interesting discussion on AFTv5 :) [18:09:21] ^demon: https://gerrit.wikimedia.org/r/#/c/46982/ is also tiny [18:09:33] * AaronSchulz wishes there was a way to tag and highlight "easy" patches ;) [18:09:51] <^demon> Wouldn't sha1() be longer than the original in this case? [18:10:10] I am about to communicate Scribunto extension installation to various wikies to support Lua scripting... so do I need to ask them to show consensus? I guess so... [18:10:24] from/to are page titles [18:10:42] <^demon> Kozuch: Oh, for Scribunto? Probably not, since the plan is eventually to deploy everywhere. [18:10:52] ^demon: I suppose sometimes the hash is longer, but the point is that the key doesn't get ridiculous [18:11:07] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47053 [18:11:36] <^demon> AaronSchulz: Yeah, I just figured a sha1() of the title would be longer than most titles. [18:11:42] <^demon> But I have no data to support that assumption. [18:11:56] well there was some funny stuff in the memcached error log [18:12:27] <^demon> *nod* [18:12:42] <^demon> This is fine. Was just wondering out loud more than anything. [18:13:22] Hey AaronSchulz, can lockmanger be used for other stuff than files... like usernames? [18:13:46] for other stuff, yes...but depends on the use [18:13:48] (I'm guessing that's not really intended... but was looking for a locking solution for global renames) [18:14:16] Global rename needs a lock that starts in one web request, and gets removed from a job. [18:14:43] And really needs to work (so memcached is a little sketchy) [18:14:58] New patchset: Mwjames; "SMWAPI dataItem type hinting during parseJSON()" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/47090 [18:14:58] New patchset: Mwjames; "SMW DataItem JavaScript Prototype class" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/46933 [18:15:02] csteipp: Why can't you jsut lock the global account? That prevents logins as well [18:15:03] Test [18:15:34] hoo: the account may already be locked... so it gets complicated. [18:15:38] csteipp: it would not be good for that sort of thing [18:16:11] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46982 [18:16:15] Mhm, that would need some extra logic but I guess that's bearable, no? [18:16:35] hoo: yep.. is that field a bit? Or an int.. [18:17:33] | gu_locked | tinyint(1) | NO | | 0 | | [18:18:12] Grr... " gu_locked bool not null default 0," [18:18:41] New review: Mwjames; "It starts to get messy here with all the dependencies, I really need those get passed rather quickly. " [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/47090 [18:22:19] hoo: how's your monster-patch for multi-diff patrolling? [18:23:05] Nemo_bis: I've split it up on my machine, created a big mess and noticed that without anyone from WMF commenting on performance that's totally pointless [18:23:52] I can upload an altered version of the first phase tonight but as told as long as no one from WMF comments on the performance/ memcached aspects that's pointless [18:23:53] hoo: well it's hard to get comments *before* you submit it :D [18:24:07] Nemo_bis: the logic already is on gerrit [18:24:09] ah [18:24:30] I've split it up in two parts: Kill &rcid parameters and multi patrol [18:24:41] Which is an awful mess [18:25:11] Cause the second depends heavily on the first on [18:25:13] e [18:25:25] https://gerrit.wikimedia.org/r/#/c/41196/ you mean? [18:28:33] Nemo_bis: Yep, I renamed that to patrolOverhaulPhase1 on my machine [18:28:49] all the multi patrolling stuff will follow by the time that's merged [18:28:58] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10tylerromeo) [18:29:42] But without the help of WMF I can't really finish taht [18:30:01] New patchset: J; "Add support for audio derivatives" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39363 [18:30:12] I don't know what's the recommended approach here [18:30:33] you could submit the second patch as dependent on that one and start gathering some comments [18:30:44] they could influence each other I guess [18:31:34] Nemo_bis: For the sake of my nerves, no... that will create heave conflicts each time I have to update any of those [18:31:51] That's why I decided to freeze the multi patrol till that one's in [18:32:24] That will probably stay on gerrit for months [18:35:32] 03(mod) Red Xs in account creation interface are misleading - 10https://bugzilla.wikimedia.org/44589 +comment (10swalling) [18:35:37] 03(mod) Header of vector is messed up in extremely narrow browser window - 10https://bugzilla.wikimedia.org/29333 +comment (10marcin.cieslak) [18:35:41] Change merged: Kaldari; [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/45787 [18:35:43] sigh [18:35:58] I guess owrking with the wikidata team feels more productive [18:36:24] Nemo_bis: heh, yes... I'm a bit blocked over here [18:36:26] I saw you're working on the interface to add interwikis locally? it.wiki folks will love you ;) [18:36:49] Change merged: jenkins-bot; [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/39363 [18:37:15] 03(mod) Header of vector is messed up in extremely narrow browser window - 10https://bugzilla.wikimedia.org/29333 (10Bartosz Dziewoński) [18:37:17] 03(mod) Vector breaks down on small resolutions - 10https://bugzilla.wikimedia.org/44386 (10Bartosz Dziewoński) [18:37:18] Change merged: Kaldari; [mediawiki/extensions/PageTriage] (master) - https://gerrit.wikimedia.org/r/47069 [18:37:35] Nemo_bis: I hope so... it already works but still needs quite some love ;) [18:37:57] saper: have you seen https://gerrit.wikimedia.org/r/#/c/44859/ ? [18:38:08] saper: and sub=bugs of https://bugzilla.wikimedia.org/show_bug.cgi?id=44386 ? [18:38:15] Luckily wikibase code review is more agile than core one :) [18:40:10] 03(mod) VisualEditor: Unexpected behavior when line starts with space - 10https://bugzilla.wikimedia.org/44478 +comment (10cmcmahon) [18:40:56] New patchset: Aaron Schulz; "[LockManager] Generallized wiki field to a domain field." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47092 [18:41:00] 03(mod) Mandate only-SSL for accounts with access to private information - 10https://bugzilla.wikimedia.org/31323 +comment (10jroquet) [18:41:17] New review: Mwjames; "I do -1 for now since as of today, Change Ia8a9c50c is required where object type hinting is needed ..." [mediawiki/extensions/SemanticResultFormats] (master); V: 2 C: -1; - https://gerrit.wikimedia.org/r/46650 [18:41:31] 03(mod) VisualEditor: Unexpected behavior when line starts with space - 10https://bugzilla.wikimedia.org/44478 +comment (10cmcmahon) [18:41:35] ^demon: https://gerrit.wikimedia.org/r/#/c/47092/1 is mostly S&R [18:42:08] 03(mod) VisualEditor: Unexpected behavior when line starts with space - 10https://bugzilla.wikimedia.org/44478 +comment (10cmcmahon) [18:46:22] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47092 [18:46:31] 03(mod) Change $wgUploadNavigationUrl for en.wikivoyage - 10https://bugzilla.wikimedia.org/44572 (10Carl Austin Bennett) [18:46:34] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 (10Carl Austin Bennett) [18:47:38] New patchset: Aaron Schulz; "[FileJournal] Refactored wiki ID handling into the base class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45897 [18:50:24] 03(mod) PageTriage extension incorrectly inserting deletion rationale into "miscellany for deletion" (MFD) tag - 10https://bugzilla.wikimedia.org/44426 +comment (10Nischay Nahata) [18:50:36] New patchset: J; "Only enable async if file is larger 10Mb" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/47093 [18:51:22] 03(mod) Wrong error message when uploading Invalid Flickr set - 10https://bugzilla.wikimedia.org/44336 +comment (10Nischay Nahata) [18:53:29] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/46943 [18:55:24] New patchset: Aaron Schulz; "[LockManager] Renamed getBucketFromKey() -> getBucketFromPath()." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47094 [18:56:37] Change merged: Aaron Schulz; [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/47093 [18:56:38] New patchset: Kipcool; "sorting language list in preferences, and corrected wrong message used." [mediawiki/extensions/WikiLexicalData] (master) - https://gerrit.wikimedia.org/r/47095 [18:56:57] Change merged: Kipcool; [mediawiki/extensions/WikiLexicalData] (master) - https://gerrit.wikimedia.org/r/47095 [19:02:44] Change merged: Demon; [mediawiki/extensions/timeline] (master) - https://gerrit.wikimedia.org/r/46975 [19:04:28] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47094 [19:20:07] 03(mod) Red Xs in account creation interface are misleading - 10https://bugzilla.wikimedia.org/44589 +comment (10zhorishna) [19:20:50] sumanah: u there? [19:21:07] hi Kozuch! yes, I'm here, but I'm in a meeting for the next 40 min or so so I will be slow to respond [19:21:50] 03(mod) phantom log entries for "course updates" that haven't happened - 10https://bugzilla.wikimedia.org/44561 +comment (10ragesoss) [19:23:10] sumanah, ok. i started posting messages to wikies... just how about Lua implementation on English Wikipedia? can I post a message there too? [19:23:17] Why not [19:23:24] go ahead! seems good to me [19:23:28] ok [19:24:16] seems like Scribunto is already quite stable and realy to launch soon? [19:24:20] Kozuch: maybe for that specific email you could send me & RobLa & Tim-away a draft first [19:24:51] 03(mod) Cross-wiki userrights reflects groups on local wiki, not target wiki - 10https://bugzilla.wikimedia.org/12518 +comment (10quentinv57) [19:25:52] Kozuch: I'm not sure what the current stability level of Scribunto is. [19:26:05] Kozuch: Tim-away and Rob know that better than I do. [19:26:21] New patchset: Matmarex; "omit the .ttf extension in default font name" [mediawiki/extensions/timeline] (master) - https://gerrit.wikimedia.org/r/47098 [19:27:34] sumanah, see http://en.wikipedia.org/wiki/User:Kozuch/Lua [19:28:14] Thanks for already messaging en.wikisource & fr and hu wikipedias! [19:28:42] do you all want to review the message or is it ok? [19:28:44] Kozuch: I'm just going to quickly email Tim & RobLa with a link to this to ask whether they have any comment [19:28:50] Kozuch: Rob is in this meeting too [19:28:53] ok [19:28:58] it's gonna be another 35 min [19:29:43] ok no problem. another thing is we have to change the videochat date, I posted a note [19:30:21] thanks Kozuch I saw that note [19:32:06] !class RebuildLocalisationCache [19:32:07] See http://svn.wikimedia.org/doc/classRebuildLocalisationCache.html [19:36:05] 03(NEW) Add a label or icon to the page tools cactions dropdown menu in Vector - 10https://bugzilla.wikimedia.org/44591 normal; MediaWiki: Interface; () [19:38:54] 03(mod) Add a label or icon to the page tools cactions dropdown menu in Vector - 10https://bugzilla.wikimedia.org/44591 +design (10Jesús Martínez Novo (Ciencia Al Poder)) [19:39:28] 03(mod) On protected pages, the message in its latest protection log should be displayed about the view-source box/edit box - 10https://bugzilla.wikimedia.org/38764 +comment (10zhorishna) [19:42:55] New patchset: Aaron Schulz; "[Database] Added support for lock/unlock in Postgres." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47099 [19:43:22] New patchset: Umherirrender; "fix some spacing" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47100 [19:43:24] New review: Aaron Schulz; "Haven't tested yet" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/47099 [19:43:33] !core [19:43:33] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=tree [19:45:17] New patchset: Aaron Schulz; "Add column job_attempts and index job_cmd_token_id to PostgreSQL." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40558 [19:49:01] New patchset: Aaron Schulz; "Add column job_attempts and index job_cmd_token_id to PostgreSQL." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40558 [19:49:09] New review: Aaron Schulz; "Tweaked summary" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/40558 [19:51:42] sumanah, please drop me a note after you check the message [19:52:12] Sure, will do, thanks Kozuch - you mean the date change? [19:52:34] no I mean the Lua message [19:53:27] New patchset: Umherirrender; "fix some spacing" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47100 [19:53:42] New review: Umherirrender; "fixed more spacing in the same files" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/47100 [19:54:45] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/40558 [19:56:51] New review: Aaron Schulz; "Index name are inconsistent and also do not match the mysql ones. This makes FORCE INDEX statements ..." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/45079 [19:57:13] New review: Aaron Schulz; "For example some indexes have "site_" while others have "sites_"." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/45079 [20:00:23] 03(mod) Header of vector is messed up in extremely narrow browser window - 10https://bugzilla.wikimedia.org/29333 (10Marcin Cieślak) [20:01:34] ok! hi Kozuch [20:01:37] meeting has ended [20:01:46] Kozuch: I believe RobLa is now eating lunch [20:01:53] ok [20:02:06] I don't know enough to check that message myself but I have sent an email asking Tim and RobLa to check it [20:02:15] ok [20:03:12] I intentionally did not offer a lot of help (actually any at all :D ) with the scripting itself... not sure if that is a problem for you [20:03:31] I meant no at all probably [20:04:53] I can setup a Wikipedia:Lua page on EN wiki [20:10:01] New patchset: Ori.livneh; "Explicitly UTF-8-encode strings before DB insert" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47105 [20:10:02] New patchset: Ori.livneh; "Database tests and test fixtures" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47106 [20:10:14] New patchset: Brent Garber; "Include Postgres tables and maintenance scripts for Change I23c47c2c" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/45079 [20:10:38] chrismcmahon- Hi. I was "tester" the last time we chatted. I have been reading through all the documentation around the browser testing, very interesting! And now I thought I would configure my environment with the tools you listed. [20:10:54] hi rachel99 [20:11:19] Should I just follow what is in the README to download everything? [20:12:13] rachel99: probably. what OS do you have? [20:13:06] chrismchmahon: I'm actually on an older PC with Windows XP. Would that work? [20:13:35] rachel99: do you already have Ruby installed? [20:14:46] Yes, I do. I was playing around with it yesterday, learning it a little. I know some Java and batch scripting, etc, so I am pretty familiar with learning new languages. [20:16:02] rachel99: you're going to want 1.9.x if you don't already have it. http://rubyinstaller.org/ Some of the syntax in the tests won't work on 1.8 I think. [20:16:53] Yup. I installed the latest version of 1.9,x, so that should work. [20:16:56] rachel99: (it's been a really long time since I've used Ruby on Windows I'm afraid) [20:17:11] hashar: so for some reasons the build is sortof subtly corrupted when done via maven, works fine otherwise. [20:17:14] * YuviPanda is very confuse [20:17:15] d [20:17:18] (Android commons app) [20:18:15] chrismcmahon: Isn't it the same on Windows as Linux? BTW, as far as my background I have Linux sys admin, QA, release engineer, and Tech support for [20:18:44] rachel99: sounds good. you should be able to do the steps in the README at this point then [20:20:54] chrismcmahon: OK, I will do that. Also, I looked at the backlog page. Is there anything specific that would be good for me to focus on? [20:23:25] rachel99: the "Design" section of this page has some guidelines: http://www.mediawiki.org/wiki/Qa/test_backlog [20:23:53] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 (10Marius Hoch) [20:24:23] New patchset: Ori.livneh; "Database tests and test fixtures" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47106 [20:24:24] New patchset: Ori.livneh; "Explicitly UTF-8-encode strings before DB insert" [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47105 [20:26:28] New review: Brent Garber; "1) The PG indexes are already a mishmash of either using the full table name, or the table prefix. S..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/45079 [20:26:57] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 +comment (10Legoktm) [20:27:27] chrismcmahon: Yes, I did see that. Should I just start with one of the the features you have listed for testing - such as hyperlinks in footer for mobile testing? Or is mobile testing different? [20:28:13] rachel99: mobile is a little different. is that an interest of yours? [20:28:31] New review: Mattflaschen; "Minor item, up to you." [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47106 [20:29:02] is it possible to execute sql-statements containing a join with mediawikis select()-function? [20:30:42] 03(NEW) Get Jenkins to rekey its secret - 10https://bugzilla.wikimedia.org/44592 minor; Wikimedia: Testing Infrastructure; () [20:30:56] 03(mod) Get Jenkins to rekey its secret - 10https://bugzilla.wikimedia.org/44592 (10Antoine "hashar" Musso) [20:31:05] chrismcmahon: Not really, as I don't know much about mobile. The backlog looked as though most already are in progress. Should I look at the bugzilla bugs [20:31:19] New patchset: Aaron Schulz; "[FileBackend] Set ignore_user_abort() in file operations." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47107 [20:32:14] chrismcmahon: Or do you have any others from that backlog page that would be good for me to work on? [20:32:24] rachel99: I have an idea, one moment [20:32:42] lbenedix: that's the sixth parameter, join conditions, also words in the conds param [20:32:53] lbenedix: http://svn.wikimedia.org/doc/classDatabaseBase.html# [20:34:32] anyone to help with bug #2679? [20:35:06] 03(NEW) Deploy GuidedTour to mediawiki.org - 10https://bugzilla.wikimedia.org/44593 normal; Wikimedia: Extension setup; () [20:35:10] 03(mod) Deploy GuidedTour to mediawiki.org - 10https://bugzilla.wikimedia.org/44593 (10Matthew Flaschen) [20:35:28] is it better to do a join, or to denormalize and make 2 Write operations? [20:35:32] 03(mod) Deploy GuidedTour to mediawiki.org - 10https://bugzilla.wikimedia.org/44593 (10Matthew Flaschen) [20:35:52] That, I couldn't say :) [20:36:35] rachel99: it would be useful if you could get a start on a test for this page: http://test2.wikipedia.org/wiki/Special:NewPagesFeed . I'd like to have a browser test for that, I'm waiting for an update on https://bugzilla.wikimedia.org/show_bug.cgi?id=44065 before completing it though. [20:36:41] i have 2 tables, the second one contains a status which i want to be archived [20:36:55] 03(mod) Deploy GuidedTour to mediawiki.org - 10https://bugzilla.wikimedia.org/44593 (10spage) [20:37:48] the denormalization would be writing the actual status to table one and insert a new row into table two to have the old states saved [20:38:53] rachel99: so it would be super helpful to have a backlog item for that page using Cucumber's Given/When/Then format, even if it's not 100% complete. [20:39:19] !bug 2679 [20:39:20] https://bugzilla.wikimedia.org/2679 [20:40:06] Hello. [20:40:52] chrismcmahon:Ok, I can work on doing that. I'm not understanding the bug , but I think I could do some research on it. You're looking for the given/when/then statements? [20:42:34] rachel99: you need to have special privileges to see the bug in action. since you don't have those privileges, it would be super to have a backlog item for what a non-privileged user should see on that page. [20:43:10] rachel99: then we could make the rest of the test when the bug is addressed [20:43:15] 03(mod) Red Xs in account creation interface are misleading - 10https://bugzilla.wikimedia.org/44589 +comment (10mflaschen) [20:44:48] chrismcmahone: ok. so test for what I am supposed to see on the special page- (which is the page you linked me to)? [20:45:21] 03(mod) Validate Zuul with Gerrit 2.6 - 10https://bugzilla.wikimedia.org/43976 +comment (10Antoine "hashar" Musso) [20:48:59] rachel99: right, for example "Given I am on the NewPagesFeed page/When I click Set filters/Then I should see a checkbox for Unreviewed pages/And I should see a checkbox for Reviewed pages", like that [20:50:43] chrismcmahon: Sure, sounds good. I can work on it. [20:51:41] hi.. how can i put a text blinking ? [20:52:08] like IMPORTANT WARNING or something to can see 1st at all [20:52:38] thanks rachel99! [20:52:48] !sitenotice [20:52:48] Sitenotice is a wiki-wide message that appears at the top of the page for all users. It is editable by users in the sysop usergroup at [[MediaWiki:Sitenotice]]. See also: !anonnotice [20:53:33] chrismcmahon: Thank you! I'm really enjoying this. :) [20:53:52] how do I adress the colums? $row->foobar.col1 ?? [20:54:11] rachel99: when you get a little further along you'll want to have access to the code, http://www.mediawiki.org/wiki/Git/Tutorial should be helpful [20:54:59] chrismcmahon: ok, will look at that too. thanks again [20:55:04] lbenedix, what do you mean by the columns? [20:55:20] it would be like $row->col1 [20:55:24] what would be foobar? [20:55:33] i have two tables i join [20:55:45] foobar and snafu [20:55:53] both have a colums col1... [20:56:08] rename them [20:56:17] (I mean, in the query) [20:56:34] col1 as col1_foo, okay [20:56:46] New patchset: Anomie; "Add incrementExpensiveFunctionCount() methods" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/47108 [20:57:25] New patchset: Anomie; "Add mw.site library" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/47109 [20:57:31] you can also use an array for vars [20:57:41] what do you mean? [20:58:13] array('foocol1' => 'foobar.col1', 'snafcol1' => 'snafu.col1', 'whatever' ...) [20:59:02] is that any different to foobar.col1 as foocol1? [20:59:25] not really [20:59:36] it just expands to the foobar.col1 as foocol1 syntax [20:59:40] rachel99: if you get stuck, take a look at some of the .feature files we already have https://github.com/wikimedia/qa-browsertests/tree/master/features [21:00:48] chrismcmahon:ok, will do [21:00:55] New review: Jeroen De Dauw; ":0 You committed a lot of new code recently - going to take me a few days to get through that :)" [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/44573 [21:02:19] New patchset: Subramanya Sastry; "New list and table attr. tests based on recent Parsoid bug fixes." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47110 [21:02:28] JeroenDeDauw: get the code covered by tests and merge! :-D [21:04:09] J^: are you involved with timed text stuff? [21:05:39] 03(mod) Upgrade Gerrit to 2.6 - 10https://bugzilla.wikimedia.org/39589 15enhancement->04BLOCKER; +comment (10Chad H.) [21:06:18] J^: if you are there's a thread on commons:COM:VP about it not working for some files [21:09:19] hashar: mhhh, easier said then done [21:17:52] New review: Jeroen De Dauw; "Neat :)" [mediawiki/extensions/SemanticMediaWiki] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/46933 [21:22:29] 03(NEW) In Vector, move page-specific tools out of the toolbox into the cactions menu or another dropdown - 10https://bugzilla.wikimedia.org/44594 normal; MediaWiki: Interface; () [21:23:05] another qustion to the join-statement. I want a left join, how is that possible/ [21:23:06] ? [21:23:44] New patchset: Mattflaschen; "(bug 44459) Ensure jqueryMsg treats plain messages as plain, with tests." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47044 [21:26:20] 03(mod) In Vector, move page-specific tools out of the toolbox into the cactions menu or another dropdown - 10https://bugzilla.wikimedia.org/44594 +design (10Isarra) [21:27:51] New patchset: Raimond Spekking; "[TimedMediaHandler] Add new optional message keys" [translatewiki] (master) - https://gerrit.wikimedia.org/r/47112 [21:28:04] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/47112 [21:29:51] Reedy: around [21:29:56] ? [21:30:37] New review: Mattflaschen; "Patch set 3 changes to the message text for categorytree-collapse-bullet that was actually problematic." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/47044 [21:30:47] 03(mod) Upgrade Gerrit to 2.6 - 10https://bugzilla.wikimedia.org/39589 (10Antoine "hashar" Musso) [21:31:08] 03(mod) Deploy GuidedTour to mediawiki.org - 10https://bugzilla.wikimedia.org/44593 +comment (10Steven Walling) [21:32:01] 03(mod) jqueryMsg should not parse plain messages as HTML - 10https://bugzilla.wikimedia.org/44459 +comment (10mflaschen) [21:38:02] New patchset: Raimond Spekking; "[TimedMediaHandler] Disbaling for now. Some synax error" [translatewiki] (master) - https://gerrit.wikimedia.org/r/47113 [21:38:10] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/47113 [21:40:48] New patchset: Raimond Spekking; "[TimedMediaHandler] Fixing..." [translatewiki] (master) - https://gerrit.wikimedia.org/r/47114 [21:41:01] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/47114 [21:59:24] Hi all I'm trying to install mediawiki 1.20.2 but im getting the following: MediaWiki 1.20 requires at least PHP version 5.3.2, you are using PHP 5.2.17. But according to phpinfo i have 5.3.8 installed [22:00:14] Eyecu: Have you restarted apache? [22:00:58] Eyecu: what os are you using? i had a problem once of two different php paths. [22:01:30] not sure testing on a shared host for now, until we get a dedicated server setup for everything :( [22:03:07] and of course uname tells me jack shit [22:04:03] Eyecu, phpinfo() run through the server in the same way as mediawiki is? [22:04:11] yup [22:04:18] it doesn't make much sense :s [22:04:26] just created an info.php file in the same directory as mediawiki [22:04:32] wiki.irchainscriptz.net [22:04:39] wiki.irchainscriptz.net/info.php [22:04:47] what does `which php` say? [22:04:57] Hello [22:05:04] hi Dereckson ! [22:05:09] mediawiki gets the php version from php itself [22:05:15] I don't think it could get confused there [22:05:37] hmm i see the problem [22:05:37] hehehe [22:05:41] try http://wiki.irchainscriptz.net/index.php [22:05:43] stupid flippen host [22:06:03] seems another version was taken by http://wiki.irchainscriptz.net/ [22:06:03] from bash if i run php --version [22:06:05] it's returning 5.2.17 [22:06:17] maybe .php5 extension linked to 5.2.17? [22:06:48] maybe [22:06:57] damn host can kiss my royal canadian [22:07:04] according to them the default is 5.3 [22:18:43] a reminder -- https://wikimania2013.wikimedia.org/wiki/Submissions Wikimania call for talks is open. Deadline is in April, and it's now February [22:20:03] not even for 24h xD [22:21:00] Eyecu: you could comment in the installer code the PHP version check [22:21:39] Dereckson, if the php version he is running reports to be a lower version [22:21:59] then he will likely hit some 5.3-only php code later [22:22:17] Platonides: http://wiki.irchainscriptz.net/info.php [22:22:26] he only needs to use http://wiki.irchainscriptz.net/mw-config/index.php to run [22:22:32] Dereckson, I saw [22:22:40] but how could php lie on its own version? [22:22:40] Platonides: php-cgi called by the webserver is 5.3.8, php executable from the path is 5.2 [22:22:51] because you can have several php installed on the same system [22:23:18] Dereckson, but the installer is not launching a new php executable [22:23:24] it can simply check PHP_VERSION [22:23:29] For example, on a staging server, I've PHP 5.4 in production (/usr/local/bin/php), and 5.5 installed in /usr/local/php55 [22:23:38] the trick was: http://wiki.irchainscriptz.net/index.php5 -> 5.2.17 [22:23:53] the trick was: http://wiki.irchainscriptz.net/index.php -> 5.3.8 [22:24:03] I've two nginx vhosts configured to connect to php-fpm 5.5 instead of 5.4 [22:24:46] so ".php5" would be "legacy code" and ".php" "up-to-date code" for the host? [22:25:25] probably [22:25:35] I suspect they used .php -> php4, .php5 -> php5 [22:25:52] then installed a newer php, and linked it to .php [22:26:00] Platonides: so comment seems a good solution, we use .php files [22:26:01] leaving .php5 to the 5.2 version [22:26:23] we also have .php5 files for people who have .php linked to php4 [22:26:44] and in this case, .php5 seemed to have more priority in apache index, than .php [22:27:26] this is only 9 files [22:27:35] seems manageable [22:29:07] hi all how do i tell if a given js file has been loaded by RL? I put an alert in there, and it does not occur.... any hints? thans [22:30:52] Eyecu: I would do a test with the detection code commented at install, then a rm *.php5. With that, you should be fine. [22:31:00] But browse your wiki, do edits, play with it to be sure. [22:31:17] hypergrove: There's a ?debug= URL parameter you can toggle to disable minification. [22:31:20] 03(mod) API data push/pull guidelines - 10https://bugzilla.wikimedia.org/44584 +comment (10Umherirrender) [22:31:27] Somewhere in the blob of JS is a list of modules that are loaded. [22:31:43] Then you can pass the specific module to the &module= URL parameter to see what's being loaded. [22:31:52] Debugging JS has become a nightmare in MediaWiki. [22:33:17] will do [22:33:28] that's why im doing it on a test install first :P [22:33:50] susan - thx - [22:34:27] oops - not clear on how to incorporate that [22:35:12] www.bestpracticeswiki.net/index.php?title=Special:UserBoard&user=WikiSysop&conv=Terry+Gardiner&debug=?????? [22:35:26] debug is a URL parameter to load.php, not index.php. [22:35:40] RL routes everything through load.php. [22:35:46] So look for that string in your HTML page source. [22:35:48] It also works as a parameter to index.php though [22:36:00] And it does what you expect [22:36:49] so would i say: http://www.bestpracticeswiki.net/index.php?title=Special:UserBoard&user=WikiSysop&conv=Terry+Gardiner&debug [22:36:50] RoanKattouw: I'm not sure what I'd expect there. [22:36:55] &debug=true [22:36:58] ah [22:36:59] Yes, &debug=true [22:37:10] It causes all RL invocations on the page to also have &debug=true [22:37:26] RoanKattouw: Once you find the list of modules, is there any way to view the code for a specific module, other than URL manipulation? [22:37:29] So it causes raw JS files to be loaded [22:37:41] Like I usually get to &modules=startup or something, then I have to fuck with the URL. [22:37:52] Susan: If you're debugging, just set &debug=true on the main request and RL will serve you the saw files, if that's what you're after [22:38:25] yes - perfect and thx [22:38:25] Viewing the code for a specific module you would either craft a load.php URL, or look at resources/Resources.php to see which files it contains [22:38:41] (or what code generates it -- not all modules are file-based) [22:38:43] https://www.mediawiki.org/wiki/MediaWiki?debug=true [22:38:49] The page source still contains only... [22:38:58] [22:39:02] Yes [22:39:03] New patchset: Katie Horn; "Shunting the final status log line off to a gateway-indifferent syslog bucket of its very own, so we can tail everything at once." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/47176 [22:39:18] Right, I fail to see how that's a debug mode. [22:39:26] It doesn't provide any useful information. [22:39:33] Well, look at Firebug's Net tab (or Chrome's Network tab) while the page is loading [22:39:55] and you'll see it's downloading individual files, raw, unminified and uncombined [22:39:59] 03(NEW) Test LanguageTest::testIsSupportedLanguage fails on windows machine - 10https://bugzilla.wikimedia.org/44595 normal; MediaWiki: Unit tests; () [22:40:42] Hmmm. [22:40:46] Yeah, I see it. [22:40:53] I have no idea how anyone is supposed to figure that out. [22:40:56] kinda wish i could see errors that RL encounters, partic the url for the retrieved files when they're not found [22:41:02] Oh it's probably poorly documented [22:41:03] * Susan kidnaps Roan. [22:41:28] hypergrove: File not found errors should be transparent in debug mode [22:41:43] Change merged: Mwalker; [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/47176 [22:41:47] Unless your web server is misconfigured [22:44:23] 03(mod) Audit salt scripts for completeness (checking against scap/sync-file/sync-dir) - 10https://bugzilla.wikimedia.org/43615 (10Rob Lanphier) [22:44:26] 03(mod) "commonswiki:allpages:ns:*" keys too long - 10https://bugzilla.wikimedia.org/44523 (10Aaron Schulz) [22:46:17] 03(mod) PublishStashedFile.php logs limited uploader information - 10https://bugzilla.wikimedia.org/44080 +comment (10Rob Lanphier) [22:47:23] 03(mod) Handle thumbnail purges when thumbnails are in cache but not in the backend - 10https://bugzilla.wikimedia.org/44428 (10Rob Lanphier) [22:47:37] interesting - when i run &debug=true then I get about 30 errors. When I don't, I get zero [22:48:06] What do the errors look like? [22:49:11] New review: Adamw; "Cool! Just make sure that _payment_init lines also get copied to the default log stream." [mediawiki/extensions/DonationInterface] (master) - https://gerrit.wikimedia.org/r/47176 [22:50:28] many are: SyntaxError: syntax error [22:50:28] [Break On This Error] [22:50:28] [22:50:56] location is jquery.client.js (line 1) [22:51:27] that obviously means that it's not js but html, most probably 404 error msg [22:52:35] strange it's not a problem when debug is off [22:55:08] 03(mod) VisualEditor: Bold and Italic UI buttons need to be internationalisable - 10https://bugzilla.wikimedia.org/38551 +comment (10jforrester) [22:59:34] New patchset: Mattflaschen; "Use community portal message, remove obsolete comment." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/47179 [23:00:01] Change merged: GWicke; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/47110 [23:00:09] New review: Ori.livneh; "@superm401: Actually, I'm going to decline the last suggestion. A forthcoming patch will contain lot..." [mediawiki/extensions/EventLogging] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/47106 [23:01:31] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47106 [23:01:32] Change merged: jenkins-bot; [mediawiki/extensions/EventLogging] (master) - https://gerrit.wikimedia.org/r/47105 [23:05:22] Change abandoned: Mattflaschen; "I'm going to abandon this, and do it off upstream's 2.0 branch instead." [mediawiki/extensions/GuidedTour/guiders] (closeOnClickOutside) - https://gerrit.wikimedia.org/r/45299 [23:07:45] 03(NEW) Relative links do not work anymore - 10https://bugzilla.wikimedia.org/44596 normal; MediaWiki: Parser; () [23:11:08] 03(mod) Relative links do not work anymore - 10https://bugzilla.wikimedia.org/44596 +comment (10Marius Hoch) [23:11:09] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 +comment (10Marius Hoch) [23:13:35] then there's $wgResourceLoaderDebug [23:13:37] 03(mod) Nested refs fail inside references block - 10https://bugzilla.wikimedia.org/20707 (10Bartosz Dziewoński) [23:22:39] New patchset: MarkTraceur; "Move all the document-handling functions" [wikimedia/orgchart] (master) - https://gerrit.wikimedia.org/r/47181 [23:27:38] happy week-end, all [23:27:58] is it possible to verify, that a database-update was successful? [23:33:57] New review: Dereckson; "This commit contains trailing spaces. This come from upstream." [wikimedia/bugzilla/modifications] (master) C: 0; - https://gerrit.wikimedia.org/r/47050 [23:37:19] anyone here to help with git? I get ssh "permission denied (publickey)" message. more info at http://www.mediawiki.org/wiki/Thread:Talk:Git/Workflow/Permission_denied_(publickey) [23:39:14] have you added you public key? [23:39:35] Kozuch: Use -p 29418 [23:40:34] RoanKattouw, i used this type of command: git clone ssh://USERNAME@gerrit.wikimedia.org:29418/mediawiki/core.git [23:40:50] RoanKattouw, there is a port too right? [23:41:44] Kozuch: you need to upload your public ssh key to gerrit [23:41:55] I did all that [23:42:00] oh ok [23:42:12] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 +comment (10lambdav) [23:43:26] 03(mod) Special:BrowseData with SQL error browsing a category having filters - 10https://bugzilla.wikimedia.org/43260 +comment (10andreas.plank) [23:44:23] Kozuch: have you tried to log to shell? [23:44:47] lazowik, no [23:44:50] it won't allow you, but should show a message if you'll pass auth [23:45:01] (at least I think so) [23:45:11] it should be metioned in some guide [23:45:17] I'll try to find it [23:47:19] 03(mod) Add timestamp/time to complete each entry in update.php - 10https://bugzilla.wikimedia.org/28278 +easy (10Antoine "hashar" Musso) [23:49:04] 03(mod) Subpage transclusion / linking is broken - 10https://bugzilla.wikimedia.org/44546 +comment (10lambdav) [23:49:48] Fulax: ce serait de contexte, vu que c'est avec ZONE qu'il présente qu'il l'a gagné [23:49:51] w/w [23:49:57] Kozuch: try ssh -p 29418 USERNAME@gerrit.wikimedia.org [23:51:14] New patchset: Terrrydactyl; "Switch branch and check of file is valid." [mediawiki/extensions/Git2Pages] (master) - https://gerrit.wikimedia.org/r/47187 [23:51:19] lazowik, partial success! :) [23:51:39] now, that's strange [23:52:03] lazowik, ssh works but wont let me do anything [23:52:09] yeah [23:52:13] Dereckson: https://gerrit.wikimedia.org/r/47187 [23:52:21] and it shouldn't [23:52:35] i refactored the code to make it more readable, can you check that it still looks good [23:52:57] Kozuch: did you get the message? [23:53:03] yes [23:53:12] "interactive shells are not supported" etc.? [23:53:18] yes [23:53:41] how long do you have dev access? [23:53:59] few months, but did not use gerrit yet [23:54:01] or git [23:55:02] what repo are you trying to clone? [23:55:11] can you give me the exact command? [23:55:28] ^ heh exactly the same number of chars :D [23:55:34] lazowik, i am all set already [23:55:51] clone works? [23:56:07] lazowik, i might have used uppercase in my username [23:56:11] ok [23:56:29] I took "partial success" as "ssh works, gerrit doesn't" [23:57:17] * Dereckson is checking that. [23:57:24] yes it did not unless first try of the command the shell message told me :) [23:57:34] untill [23:58:06] right [23:58:20] glad it works [23:58:21] terrrydactyl: wfDebug( 'Git2Pages: git repository exists, didn\'t clone.' ); -> when you have long sentences with several quotes, don't hesitate to use double quotes, you will avoid to espace every '. [23:58:38] lazowik, is actually gerrit needed on desktop for commiting? [23:58:49] I failed to set up gerrit on Windows... [23:59:11] you need git review (linux) or git-review (win) [23:59:20] to create commit ID's [23:59:31] ok i meant git-review :) [23:59:42] yep, you need that