[00:00:09] the query would seem fast until you actually deployed the change [00:00:25] and then the start of that index would have this big gap in it and it would become very slow [00:00:34] hashar, shall I move hartman above ialex then? [00:01:14] the random offset probably does help, compared to the old situation [00:01:25] Krenair: probably :-] [00:01:31] OFFSET 255 would be the worst case, with performance equivalent to the old query [00:01:40] TimStarling: I'm looking at ganglia to see if cpu is up again [00:01:44] but smaller offsets would have proportionally reduced costs [00:01:46] Krenair: then get people from the cabal to +1 the change and after enough +1 I guess one would merge it [00:01:50] it went from 100% to little after the order by was removed [00:02:34] now that it is implicitly alternating between index end/start, you'd expect it to go up again according to your theory, right? [00:02:52] yes, if there was a snapshot open [00:03:19] you mean a long running query or REPEATABLE-READ trx? [00:03:31] just a transaction open [00:03:34] hashar, from the cabal? You mean other devs and WMF staff? :P [00:03:40] maybe an image scaler deadlock would do it [00:03:57] Krenair: I guess so. I am not sure how we can trust people :-] [00:04:20] well since we use repeatable-read, I guess that would be any trx [00:04:28] hmm, that is a nasty dependency [00:04:31] Krenair: as I said on wikitech-l this week, there is no process yet. But we have a nice tool to let user request addition: Gerrit which you just did. [00:04:36] hashar: Aren't merge rights on a deployed ext. enough? [00:04:44] Krenair: feel free to ask on wikitech-l about how we could add people to that list. [00:04:50] hoo|away: I guess so [00:04:52] "distant effects" [00:04:58] 03(NEW) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 normal; Wikimedia: Site requests; () [00:05:00] Gerrit seems like a good way really [00:05:09] You're expected to use it as part of the whitelisting [00:05:19] People can +1/-1 and comment, etc [00:05:24] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 (10Emanuele Raoli) [00:06:01] hoo|away: Krenair : please be bold and talk about it on wikitech. Already having merge right on an extension deployed on the WMF cluster seems to be enough to me. [00:07:19] New review: Hashar; "+1 ing before going in vacations. The change is fine to me and I am stopping bike shedding." [mediawiki/core] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/37052 [00:07:24] TimStarling: is there anyway to get an idea of purged row counts for a table? [00:07:27] AaronSchulz: +1ed your UUID Generator [00:07:32] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 +shell (10Emanuele Raoli) [00:07:33] hashar: Ayez des bonnes vacances! [00:07:41] marktraceur: merci! [00:07:43] some rough trick [00:08:16] hashar: You can go ahead and merge now.... got the order fixed [00:08:17] Ah, non. Passez. Sorry. [00:08:18] :) [00:08:30] * marktraceur will stick to English now [00:08:37] I wonder if EXPLAIN SELECT * FROM job; would show it [00:08:58] hmm, that might be part of the index size [00:09:00] * AaronSchulz tries [00:09:01] i.e. are statistics gathered using unpurged rows? [00:09:50] yes [00:10:57] hashar, sent [00:11:01] TimStarling: http://bugs.mysql.com/bug.php?id=29162 ;) [00:11:19] handy [00:11:21] bugs can be features [00:14:02] enwiki job table seems fine atm [00:14:22] the order by has been gone for some time [00:15:46] * AaronSchulz shouldn't get happy yet [00:16:37] well those Row counts are based off the clustered index I'd assume, doesn't say much about the secondary ones [00:16:57] though maybe doing a select and forcing some specific index with explain would work [00:20:49] Krenair: thanks! [00:22:05] TimStarling: anyway, do have some recommendation? [00:22:23] AaronSchulz: MongoDB [00:22:29] Heh. [00:22:42] domas would agree on this [00:22:57] * AaronSchulz always thinks of the times people benchmark single servers and nosql ones are worse [00:23:03] * AaronSchulz hugs the innodb buffer pool [00:23:20] enwiki job queue does look a lot lot happier [00:23:31] of course redis is awesome to avoid any doubt ;) [00:23:39] we just have to make sure that rows are purged [00:24:12] New patchset: Umherirrender; "Trim spaces on user supplied comments" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/36359 [00:24:14] can we put the job queue on a separate server? then it wouldn't share transactions with the rest of the app [00:24:23] hehe, I though of adding code for that [00:24:42] I thought you might think it overengineering or something ;) [00:25:09] would not be hard though, the get*DB() function would just be tweaked and some config options added [00:25:24] it's not overengineering if there's a concrete justification for it [00:25:36] TimStarling: I think it is a good idea though [00:25:39] the worst case would be if there were, say, 10 real rows and 1M deleted rows [00:25:54] then the job_random query would scan 100K rows, right? [00:26:26] if there are 1M deleted rows and 1M real rows, you would think that the job_random query would only scan 2 rows [00:27:02] so it seems like a better solution than ORDER BY job_id to me [00:27:15] New review: Umherirrender; "Asher, have you time to look at this schema change? Thanks." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/35659 [00:27:39] hmmm [00:27:49] TimStarling: do you want to try just adding the ORDER BY back and using another server then? [00:28:10] yes, that is what I am thinking [00:28:31] is there hardware for this? [00:28:34] I don't know why removing the ORDER BY would make a permanent positive difference [00:28:37] maybe a box and two replicas [00:29:04] we'll have to ask asher about it [00:30:52] TimStarling: want to make the gerrit change for that? [00:30:58] or am I doing that? [00:31:34] you can do it [00:32:19] but anything I can do you can do better, right? [00:32:36] New patchset: Umherirrender; "(bug 22471) show local image usage of foreign file redirects" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37709 [00:34:32] * AaronSchulz expected some clever retort [00:35:13] *insert retort here* [00:36:17] New review: Umherirrender; "Rebased" [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/37709 [00:36:36] New patchset: Aaron Schulz; "[JobQueue] Added a JobQueueRedis class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39174 [00:36:39] TimStarling: fine, I'll add it to my todo list then :) [00:38:46] New patchset: Aaron Schulz; "[JobQueue] Increment stats for jobs ignored as duplicates." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39714 [00:41:36] TimStarling: would you want it to use externalloads or DB::factory() directly? [00:42:44] * AaronSchulz starts to lean towards the former [00:43:17] maybe construct a new LoadBalancer object? that's what I was thinking about for SqlBagOStuff [00:43:57] why not use getExternalLB()? [00:44:25] I guess [00:44:36] very enthusiastic :) [00:45:09] and just configure the external cluster name? [00:45:14] yes [00:45:33] same with whatever aft5 is going to do (I hope) [00:45:38] ok [00:45:55] I can see that that would have some advantages [00:47:51] The Internet is desperately missing feedback, see. [00:48:33] new nickname! [00:48:40] sorry if I'm a bit behind [00:48:51] * AaronSchulz thinks of Susan Bell, wife of some philosopher guy [00:50:49] Wikipedia can only hope that one day its article comments feature matches the intelligence and maturity of YouTube's video comments feature. [00:52:03] I re-read Randall Munroe's "YouTube" comic today (). If only he could begin to capture how much worse comments on the site actually are... [00:52:04] you are referring to AFT? [00:52:07] Yes. [00:52:15] [19:45] same with whatever aft5 is going to do (I hope) [00:52:19] I was replying to that, mostly. [00:53:23] I think a tagging feature similar to TED's would be cool for articles. [00:53:32] Where you could mark them as interesting or inspirational or whatever. [00:53:57] Free-form comments are a curse on humanity. [00:54:00] 03(mod) Special:PasswordReset could use some design love - 10https://bugzilla.wikimedia.org/40040 +comment (10Matthew Flaschen) [01:02:42] TimStarling: it might be nice if reuseConnection() could have some RAII type logic [01:03:42] hmm [01:03:44] some sort of Database proxy object that reuses the connection on __destruct? [01:03:49] yeah [01:03:54] I guess I can abstract over it [01:16:18] 03(mod) Bundle anti-spam extensions in distribution packages - 10https://bugzilla.wikimedia.org/9034 (10Tom Morris) [01:17:06] WTF, posix timer api? Why do you allow the timer to continue firing after it is stopped and deleted? [01:34:38] New patchset: Mattflaschen; "(bug 43255) Don't show GettingStarted after creation on mobile." [mediawiki/extensions/GettingStarted] (master) - https://gerrit.wikimedia.org/r/39715 [01:37:03] 03(mod) Don't serve Special:GettingStarted to mobile users - 10https://bugzilla.wikimedia.org/43255 +patch-in-gerrit; +comment (10Matthew Flaschen) [01:39:04] New patchset: Aaron Schulz; "[JobQueue] Added support for using an external DB." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39716 [01:39:46] TimStarling: lots of stuff on https://gerrit.wikimedia.org/r/#/dashboard/16 :) [02:18:33] 03(NEW) Did you mean runaround - 10https://bugzilla.wikimedia.org/43311 normal; MediaWiki extensions: DidYouMean; () [02:47:16] New patchset: Anomie; "Work around deficiencies in POSIX timers" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39718 [02:49:50] New patchset: Anomie; "Work around deficiencies in POSIX timers" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39718 [03:14:43] New patchset: Tim Starling; "Add LuaSandbox::wrapPhpFunction" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/38249 [03:18:28] Change merged: Tim Starling; [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/38249 [03:19:18] New patchset: Tim Starling; "Get luasandbox to compile on systems without CLOCK_REALTIME" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39593 [03:19:24] Change merged: Tim Starling; [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39593 [03:20:16] New review: Spage; "I verified this works (add MobileFrontEnd to LocalSettings.php, then set the cookie mf_mobileFormat ..." [mediawiki/extensions/GettingStarted] (master); V: 2 C: -1; - https://gerrit.wikimedia.org/r/39715 [03:22:37] New review: Tim Starling; "The extra files are deleted for tests that pass. I would suggest using the same .gitignore patterns ..." [mediawiki/php/luasandbox] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39589 [03:35:15] New patchset: Mattflaschen; "(bug 43255) Don't show GettingStarted after creation on mobile." [mediawiki/extensions/GettingStarted] (master) - https://gerrit.wikimedia.org/r/39715 [03:41:55] 03(NEW) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 normal; MediaWiki extensions: TemplateSandbox; () [04:00:14] New review: Santhosh; "In ULS, we have a front end preferences API, that abstract anonymous and loggen users. We have a num..." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/37395 [04:03:35] New patchset: Carlb; "Special:Namespaces using CanonicalNamespaces hook in MediaWiki 1.17+" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39719 [04:04:17] New patchset: Carlb; "Namespaces using CanonicalNamespaces hook in MediaWiki 1.17+" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39719 [04:06:23] Change restored: Carlb; "(no reason)" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39537 [04:14:35] New review: Parent5446; "API options aren't being used at all right now, primarily considering they don't exist yet. Regardle..." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/37395 [04:16:57] 03(mod) Special:PasswordReset could use some design love - 10https://bugzilla.wikimedia.org/40040 +comment (10MZMcBride) [04:17:30] New patchset: Carlb; "Initial checkin of Special:Namespaces for MW1.17+ only" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39720 [04:18:23] 03(mod) Don't offer meaningless protection levels (e.g., move=autoconfirmed with moves restricted to autoconfirmed) - 10https://bugzilla.wikimedia.org/16791 (10MZMcBride) [04:18:50] 03(mod) Drop the term "autoconfirmed" from user interface - 10https://bugzilla.wikimedia.org/43302 (10MZMcBride) [04:19:40] Change abandoned: Carlb; "superseded by https://gerrit.wikimedia.org/r/#/c/39720/" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39537 [04:20:08] Change abandoned: Carlb; "superseded by https://gerrit.wikimedia.org/r/#/c/39720/" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39719 [04:20:49] New review: Tim Starling; "Why do you think this bug only affects the profiling timer? Wouldn't it affect the other two timers ..." [mediawiki/php/luasandbox] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39718 [04:24:01] New patchset: Carlb; "Change tabs to spaces." [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39721 [04:59:24] 03(mod) gitweb: grep needle is not encoded correctly when echoed back - 10https://bugzilla.wikimedia.org/37655 +comment (10Liangent) [05:00:52] 03(mod) gitweb: grep needle is not encoded correctly when echoed back - 10https://bugzilla.wikimedia.org/37655 +comment (10Liangent) [05:15:39] New patchset: Santhosh; "Rearrange javascript and css file" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39722 [05:19:08] New patchset: Santhosh; "Rearrange javascript and css file" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39722 [05:21:51] New patchset: Mattflaschen; "Fix bug in older versions of Firefox." [mediawiki/extensions/PostEdit] (master) - https://gerrit.wikimedia.org/r/39723 [05:22:48] New review: Tim Starling; "mw.alltostring should be mw.allToString(). Otherwise looks good." [mediawiki/extensions/Scribunto] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39591 [05:45:47] 03(mod) invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes) - 10https://bugzilla.wikimedia.org/43221 +comment (10bianjiang) [05:55:26] New patchset: Mattflaschen; "Only create div if we're going to show it." [mediawiki/extensions/PostEdit] (master) - https://gerrit.wikimedia.org/r/39725 [05:57:14] 03(mod) Drop the term "autoconfirmed" from user interface - 10https://bugzilla.wikimedia.org/43302 (10Robin Pepermans (SPQRobin)) [06:21:38] 03(NEW) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 normal; MediaWiki extensions: GeoCrumbs; () [06:22:56] 03(mod) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 (10Carl Austin Bennett) [06:22:56] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 (10Carl Austin Bennett) [06:22:57] 03(mod) [GeoCrumbs] Crumbs are shown even on project/special pages - 10https://bugzilla.wikimedia.org/42946 (10Carl Austin Bennett) [06:24:57] New review: Ori.livneh; "Excellent idea." [mediawiki/extensions/PostEdit] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/39725 [06:24:57] Change merged: Ori.livneh; [mediawiki/extensions/PostEdit] (master) - https://gerrit.wikimedia.org/r/39725 [06:33:21] New patchset: Carlb; "Suppress (disambiguators) in names which duplicate existing trail" [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39728 [06:35:45] New patchset: Carlb; "re-enable getBaseTitle()" [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39729 [06:36:18] New review: Tim Starling; "You merged it accidentally?" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/36496 [06:37:16] 03(mod) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 +patch-in-gerrit +patch-need-review; +comment (10Carl Austin Bennett) [06:37:43] Change merged: Ori.livneh; [mediawiki/extensions/PostEdit] (master) - https://gerrit.wikimedia.org/r/39723 [06:38:52] 03(mod) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 (10Carl Austin Bennett) [06:43:00] Change merged: Ori.livneh; [mediawiki/extensions/GettingStarted] (master) - https://gerrit.wikimedia.org/r/39715 [06:43:33] 03(NEW) Update Lohit Bengali font - 10https://bugzilla.wikimedia.org/43314 normal; MediaWiki extensions: WebFonts; () [06:57:51] New patchset: Santhosh; "Add a link to use suggestion as translation for the message" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39730 [06:59:00] 03(mod) invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes) - 10https://bugzilla.wikimedia.org/43221 +comment (10Marius Hoch) [07:02:53] New review: Ori.livneh; "In some cases -- you'll be able to guess which -- I added comments for things that seemed merely not..." [mediawiki/extensions/GuidedTour] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/39182 [07:13:00] New patchset: Spage; "Rename test file, improve tests slightly." [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/38817 [07:36:54] Hello all, anyone around? [07:39:29] New patchset: Spage; "Avoid use of deprecated wfMsg" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/38818 [07:39:37] Does anyone here have any experience with creating a clone of the vector skin? I want to use it as a base for a custom skin, just tweak the colors mostly, but leave Vector alone. I found instructions online but they refer to a file that doesn't seem to exist and when completing all instructions that don't use that file, the site doesn't load any images or stylesheets. [07:39:41] New patchset: Spage; "Avoid use of deprecated wfMsg" [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/38818 [07:43:45] I think this just might be the most silent IRC channel [07:44:00] you picked a time when its dead [07:44:08] its very active during US daytime [07:44:20] Ah, alrighty then [07:44:35] I can try back later, just figured someone would say something ;p [07:44:45] Thanks for the head's up [07:46:02] yeah i have no idea how skins work in mw :P [07:46:03] Is there by any chance a debug mode I can turn on? [07:46:08] uh yes [07:46:14] lemme find it [07:46:17] https://www.mediawiki.org/wiki/Debug [07:46:21] Maybe it will tell me why nothing happens ;p [07:47:03] thanks for that [07:47:14] I'll do that and try repeating everything and see what I see [07:47:47] jonbartus: Dantman is your best bet, i think [07:48:58] Alright, thanks for the info [07:49:31] Followed this page to no avail http://www.mediawiki.org/wiki/Manual:Skinning/Vector [07:51:30] anyhow, gonna go try to see if debug finds anything [07:51:44] have a good night, and enjoy the end of the world everyone! :P [07:52:22] Change merged: Ori.livneh; [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/38818 [07:52:55] wait, I thought the end of the world already happened [07:53:26] this is world v2.0 isn't it? how can I check the version number? where are the release notes? [07:55:36] Ask the Mayans, they set up this patch rollout ;p [07:56:24] well we're talking about code that's long since been abandoned [07:56:35] I hate when people don't stick around for deployments :-P [08:01:02] I know, vaporware really grinds me gears. :P [08:05:11] Bah, no errors thrown, no CSS loaded [08:05:23] This thing hates me :P [08:12:15] 03(mod) Special:BrowseData with SQL error browsing a category having filters - 10https://bugzilla.wikimedia.org/43260 +comment (10Andreas Plank) [08:13:27] Interesting. Resources.php didn't update to reflect the new skin [08:13:39] I wonder if I am supposed to add it and it was left out of the instructions [08:16:19] New patchset: IAlex; "Move logentry-* messages from newusers and rights log near the other ones" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39731 [08:21:41] yuvipanda_: hi [08:23:37] 03(mod) Please upload a video file to Wikimedia Commons 1.81 GB - 10https://bugzilla.wikimedia.org/41823 +comment (10Jeanne Menjoulet) [08:28:38] New patchset: MaxSem; "Update GeoData to master" [mediawiki/core] (wmf/1.21wmf6) - https://gerrit.wikimedia.org/r/39732 [08:30:09] New patchset: MaxSem; "Update GeoData to master" [mediawiki/core] (wmf/1.21wmf5) - https://gerrit.wikimedia.org/r/39733 [08:31:46] New patchset: IAlex; "Use wfWikiID() instead of $wgDBname in wfIncrStats()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39735 [08:41:20] New patchset: MaxSem; "Throw away everything not needed per our current requirements" [mediawiki/extensions/PageImages] (master) - https://gerrit.wikimedia.org/r/39076 [08:43:31] Change merged: MaxSem; [mediawiki/core] (wmf/1.21wmf6) - https://gerrit.wikimedia.org/r/39732 [08:43:51] Change merged: MaxSem; [mediawiki/core] (wmf/1.21wmf5) - https://gerrit.wikimedia.org/r/39733 [08:49:24] New patchset: Santhosh; "Expand the text area height as content grows" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39736 [08:51:12] 03(mod) Drop the term "autoconfirmed" from user interface - 10https://bugzilla.wikimedia.org/43302 (10Nemo) [09:13:49] New review: Pginer; "Looks good but it has some limitations:" [mediawiki/extensions/Translate] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/39736 [09:29:13] 03(mod) Add support for deploying per-datacenter config variances - 10https://bugzilla.wikimedia.org/39082 +comment (10Antoine "hashar" Musso) [09:33:05] New review: Hashar; "Awesome, thanks Alexandre." [mediawiki/core] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/39614 [09:35:47] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39614 [09:45:16] Hi there, please excuse the newbieness of this question, but how do I create a link to another page, not an external one [09:45:25] [[Pagename]] [09:45:34] ah [09:45:38] 2 of [[ [09:45:42] yup [09:45:48] :) [09:45:49] I've been doing one, muppet ;) [09:46:17] alos can I create side menu to show ALL pages as a list [09:47:36] New patchset: Grunny; "Replacing deprecated wfMsg* with $this->msg" [mediawiki/extensions/BatchUserRights] (master) - https://gerrit.wikimedia.org/r/39738 [09:48:40] Change merged: Grunny; [mediawiki/extensions/BatchUserRights] (master) - https://gerrit.wikimedia.org/r/39738 [09:49:43] 03(NEW) Cursor in watchlist is shown as hand even if the line can't be expanded/collapsed - 10https://bugzilla.wikimedia.org/43315 normal; MediaWiki: Watchlist; () [09:50:18] I've been looking, but I'm struggling, is there a wysiwyg editor available? [09:51:10] one is in progress [09:51:23] https://www.mediawiki.org/wiki/Extension:VisualEditor [09:51:32] better link is https://www.mediawiki.org/wiki/VisualEditor [10:01:20] New patchset: Liangent; "Use proper function recursiveConvertTopLevel() in recursive conversion" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39740 [10:06:44] hi hashar [10:07:06] for whitelisted people (including me), mediawiki-core-merge and mediawiki-core-lint are run twive [10:07:19] one in Patch Set 1: Checked and another in Patch Set 1: Verified [10:07:37] maybe this can be improved by disabling Patch Set 1: Checked for whitelisted people [10:10:38] liangent: hi :) [10:10:47] liangent: yeah I noticed that, not really sure how to fix it up :( [10:11:09] liangent: the way Zuul works we have indeed two pipelines triggered on each changes [10:11:27] slightly annoying, will eventually look at it [10:18:09] 03(NEW) action=info broken on non-existent pages - 10https://bugzilla.wikimedia.org/43316 normal; MediaWiki: General/Unknown; () [10:18:28] 03(mod) action=info broken on non-existent pages - 10https://bugzilla.wikimedia.org/43316 (10Legoktm) [10:19:42] 03(mod) "WikidataRepo" and "WikidataClient" should be renamed in "Wikibase Repo" and Wikibase Client" on Bugzilla - 10https://bugzilla.wikimedia.org/43294 +comment (10Daniel Werner) [10:26:35] 03(mod) System for creating links to entities by their IDs within JavaScript - 10https://bugzilla.wikimedia.org/43003 summary; +comment (10Daniel Werner) [10:29:56] 03(mod) System for creating links to entities by their IDs within JavaScript - 10https://bugzilla.wikimedia.org/43003 (10Daniel Werner) [10:30:36] 03(mod) System for creating links to entities by their IDs within JavaScript - 10https://bugzilla.wikimedia.org/43003 normal->15enhancement; +need-volunteer (10Daniel Werner) [10:32:20] 03(mod) [statements-ui] pressing enter doesn't trigger API call but retransform claim to non-edit mode - 10https://bugzilla.wikimedia.org/43202 +comment (10Daniel Werner) [10:32:35] 03(mod) [statements-ui] pressing enter doesn't trigger API call but retransform claim to non-edit mode - 10https://bugzilla.wikimedia.org/43202 (10Daniel Werner) [10:33:05] 03(mod) System for creating links to entities by their IDs within JavaScript - 10https://bugzilla.wikimedia.org/43003 (10Daniel Werner) [10:33:32] 03(mod) InfoAction doesn't take namespace protection into account - 10https://bugzilla.wikimedia.org/43283 minor->normal (10Legoktm) [10:41:07] 03(mod) Redirect category (Rcat) templates on redirect pages no longer render text on Diff pages of redirect - 10https://bugzilla.wikimedia.org/42642 +comment (10Chris McKenna) [10:43:13] New patchset: Siebrand; "Rearrange javascript and css file" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39722 [10:45:06] 03(mod) Creating Claim with Snak using wikibase-item type needs validation - 10https://bugzilla.wikimedia.org/43004 +comment (10Daniel Werner) [10:45:50] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39722 [10:47:46] hey [10:47:59] does this sql query look familiar to anyone .. [10:48:01] SELECT /* LCStore_DB::get 157.55.33.113 */ lc_value FROM `l10n_cache` WHERE lc_lang = 'en' AND lc_key = 'magicWords' LIMIT 1 ", 135 [10:48:35] I get certain set of requests from the MSN abuse network that keeps taking down my wiki [10:48:48] Im trying to figure what those requests were [10:50:06] Joel_re: That's part of the i18n system... its run on basically every request. [10:50:41] Well... unless you have proper caching [10:52:37] http://sprunge.us/LjHU [10:53:36] Dantman: well it seems like each request was recieved twice [10:53:46] thats the squid proxy sitting in the front [10:54:56] what happens is those requests end up getting php to use up 100% cpu [10:57:37] New patchset: Siebrand; "Expand the text area height as content grows" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39736 [11:00:59] New patchset: Siebrand; "Add a link to use suggestion as translation for the message" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39730 [11:01:19] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39736 [11:02:30] 03(mod) Wikibase\EntityContentFactory not found during phpunit tests - 10https://bugzilla.wikimedia.org/43289 (10Anja Jentzsch) [11:02:52] New patchset: Siebrand; "Begin to fix lang and dir attributes" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39365 [11:03:51] New review: Siebrand; "Merging. Has been reviewed and consulted on by outside party (Pieter)." [mediawiki/extensions/Translate] (master); V: 0 C: 2; - https://gerrit.wikimedia.org/r/39224 [11:04:45] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39365 [11:06:12] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39224 [11:09:27] 03(mod) Change the description of the primary sources tag - 10https://bugzilla.wikimedia.org/43239 +comment (10Andre Klapper) [11:09:28] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Andre Klapper) [11:15:29] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 +comment (10Andre Klapper) [11:17:12] 03(mod) Warn when user selects resolved later (deprecated option) using JavaScript - 10https://bugzilla.wikimedia.org/43306 (10Andre Klapper) [11:26:56] 03(mod) Clicking "Did you mean" proposal brings up another "Did you mean" proposal - 10https://bugzilla.wikimedia.org/43311 normal->minor; summary (10Andre Klapper) [11:28:52] 03(mod) Update Lohit Bengali font - 10https://bugzilla.wikimedia.org/43314 (10Andre Klapper) [11:31:03] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 (10Andre Klapper) [11:31:57] 03(mod) Cursor in watchlist is shown as hand even if the line can't be expanded/collapsed - 10https://bugzilla.wikimedia.org/43315 normal->minor; +code-update-regression (10Andre Klapper) [11:35:55] 03(mod) Categorize {{#babel}} on sv-wikt - 10https://bugzilla.wikimedia.org/42288 +patch-in-gerrit; +comment (10Dereckson) [11:38:47] 03(mod) Navigation/Toolbox side panel is not collapsible/expandable when being logged out - 10https://bugzilla.wikimedia.org/43227 +code-update-regression; summary; +comment (10Andre Klapper) [11:39:15] 03(mod) Fatal error for action=info on non-existent pages - 10https://bugzilla.wikimedia.org/43316 normal->major; +code-update-regression; summary (10Andre Klapper) [11:47:18] New patchset: Umherirrender; "Trim spaces on user supplied comments" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/36359 [11:49:48] New patchset: Siebrand; "Bump version" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39749 [11:51:15] 03(mod) New component: MediaWiki extensions > Git2Pages - 10https://bugzilla.wikimedia.org/43276 +comment (10Andre Klapper) [11:51:49] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39749 [11:53:57] 03(mod) Moving generating of HTML from EntityView into more modular views for each data type - 10https://bugzilla.wikimedia.org/40885 +comment (10Daniel Werner) [11:54:09] 03(mod) InfoAction doesn't take namespace protection into account - 10https://bugzilla.wikimedia.org/43283 +comment (10Legoktm) [12:01:29] New patchset: Liangent; "(bug 43316) Don't fetch revision ID when a page doesn't exist." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39751 [12:02:04] 03(mod) Fatal error for action=info on non-existent pages - 10https://bugzilla.wikimedia.org/43316 +comment (10Liangent) [12:07:03] New patchset: Liangent; "zhtable maintenance" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39054 [12:07:06] New patchset: Liangent; "Use getPageViewLanguage() instead of getPageLanguage() in firstHeading." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37218 [12:35:24] 03(mod) Get rid of HTML messages in MobileFrontend - 10https://bugzilla.wikimedia.org/36109 (10Jon) [12:45:48] 03(mod) Get rid of HTML messages in MobileFrontend - 10https://bugzilla.wikimedia.org/36109 +comment (10Jon) [13:04:47] 03(mod) Footer gets two arrows on edit page no arrows on non-existance page - 10https://bugzilla.wikimedia.org/43246 +comment (10Jon) [13:06:25] 03(mod) gitweb: grep needle is not encoded correctly when echoed back - 10https://bugzilla.wikimedia.org/37655 +comment (10Chad H.) [13:08:26] 03(mod) Meta-Wiki mobile site has errant trademark symbol (™) in footer - 10https://bugzilla.wikimedia.org/41141 +comment (10Jon) [13:11:42] I looked at the books extension but is there anything that allows me to make routing be wiki.com/bookname/chapter1/paragraph1 show the paragraph if i tag it a certain way.. or just navigate to wiki.com/bookname/chapter1 and then it would show the whole chapter etc.. [13:15:30] i would like even more if i could tag something to be the 100th paragraph of the book or the 3rd paragraph or the 5th chapter so i could go to that paragraph by: wiki.com/bookname/100 (or wiki.com/bookname/#100 or something) or wiki.com/bookname/5/3 [13:15:57] 03(mod) BiDi: minimize the mess in MediaWiki messages caused by BiDi-characters when using a RTL user interface at a LTR wiki and viceversa - 10https://bugzilla.wikimedia.org/3954 +comment (10Andre Klapper) [13:16:10] it's a reference book so being able to link to things and have it properly searchable and tagged.. each paragraph will also have categories whether it deals with finance, marriage, death, etc [13:17:18] 03(mod) Bulk request properties for search results - 10https://bugzilla.wikimedia.org/42587 (10Jon) [13:19:18] 03(mod) a magic word for getting the content language's direction is needed [PATCH] - 10https://bugzilla.wikimedia.org/30919 +comment (10Andre Klapper) [13:19:19] 03(mod) Gray out or hide reference tags - 10https://bugzilla.wikimedia.org/31066 +comment (10Andre Klapper) [13:19:22] 03(mod) Add user right which allow only suppress of log entry - 10https://bugzilla.wikimedia.org/40412 +comment (10Andre Klapper) [13:19:40] 03(mod) Selective enabling of HTML on a per-page basis - 10https://bugzilla.wikimedia.org/261 +comment (10Andre Klapper) [13:19:48] 03(mod) automatic edit summary for categorizing pages - 10https://bugzilla.wikimedia.org/931 +comment (10Andre Klapper) [13:19:57] 03(mod) "What links here" should show only the template linking, not all pages containing the template. Same for "pages that use this image". - 10https://bugzilla.wikimedia.org/1392 +comment (10Andre Klapper) [13:19:59] 03(mod) Group pages by templates in list of file links on Image page - 10https://bugzilla.wikimedia.org/4588 (10Andre Klapper) [13:20:01] 03(mod) Transclusion should produce tree-like results in "What links here" - 10https://bugzilla.wikimedia.org/3241 (10Andre Klapper) [13:28:10] 03(NEW) jQuery.entityselector widget returns wrong selected entity information (label set to ID if no label) - 10https://bugzilla.wikimedia.org/43317 normal; MediaWiki extensions: WikidataRepo; () [13:31:03] 03(mod) jQuery.entityselector widget returns wrong selected entity information (label set to ID if no label) - 10https://bugzilla.wikimedia.org/43317 +comment (10Daniel Werner) [13:32:45] 03(mod) Warn when user selects resolved later (deprecated option) using JavaScript - 10https://bugzilla.wikimedia.org/43306 +comment (10Rainer Rillke @commons.wikimedia) [13:37:55] I just updated my wiki to 1.20.2 and now image uploads aren't working can anyone help? [13:37:57] 03(mod) Please upload a video file to Wikimedia Commons 1.81 GB - 10https://bugzilla.wikimedia.org/41823 +comment (10Krenair) [13:38:20] ok maybe i'll try these questions again later [13:39:48] 03(mod) invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes) - 10https://bugzilla.wikimedia.org/43221 +comment (10Krenair) [13:41:48] 03(mod) Please upload a video file to Wikimedia Commons 1.81 GB - 10https://bugzilla.wikimedia.org/41823 +comment (10Jeanne Menjoulet) [13:45:06] 03(mod) superscript text breaks the line-spacing in he.wikipedia - 10https://bugzilla.wikimedia.org/24130 (10Andre Klapper) [13:45:53] 03(mod) superscript text breaks the line-spacing in he.wikipedia - 10https://bugzilla.wikimedia.org/24130 +comment (10Andre Klapper) [13:46:04] New patchset: Pginer; "CSS for Message editor size adaptation" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39756 [13:46:19] 03(mod) Implement @uris and @alternateURIs - 10https://bugzilla.wikimedia.org/24222 +comment (10Andre Klapper) [13:46:23] 03(mod) API: add minsize/maxsize param to list=filearchive - 10https://bugzilla.wikimedia.org/27922 +comment (10Andre Klapper) [13:46:24] 03(mod) No del/undel links for current version of filearchive lists - 10https://bugzilla.wikimedia.org/20742 minor->15enhancement; +comment (10Andre Klapper) [13:46:27] 03(mod) migration of names.php to a relational model using ISO-639-3, ISO 15924, directionality, variants, etc. - 10https://bugzilla.wikimedia.org/21791 +comment (10Andre Klapper) [13:46:30] 03(mod) Many Special pages need constant width date, else columns won't line up - 10https://bugzilla.wikimedia.org/19187 trivial->15enhancement; +comment (10Andre Klapper) [13:46:32] 03(mod) Bold text that includes line breaks creates incorrect rendering - 10https://bugzilla.wikimedia.org/18607 summary; +comment (10Andre Klapper) [13:47:00] Wynthyst, what does "not working" mean? [13:47:06] any errors? what are the steps to reproduce? [13:47:22] 03(mod) Please upload a video file to Wikimedia Commons 1.81 GB - 10https://bugzilla.wikimedia.org/41823 (10Andre Klapper) [13:47:25] 03(mod) Enable user to select a list of languages in the preferences - 10https://bugzilla.wikimedia.org/36425 +comment (10Daniel Werner) [13:48:46] 03(mod) Zuul: stop voting code-review -2 on unit test failure - 10https://bugzilla.wikimedia.org/43300 +comment (10Antoine "hashar" Musso) [13:49:47] when I try to upload an image, it finds it, loads the thumbnail, and i click on upload, and it just goes back to the normal special:upload page [13:50:45] I've checked all my config paths, and made sure the file permissions are correct on the server [13:51:45] 03(mod) Zuul: stop voting code-review -2 on unit test failure - 10https://bugzilla.wikimedia.org/43300 +comment (10Antoine "hashar" Musso) [13:52:07] it doesn't give me any error, it just goes back to the basic upload page [13:54:06] 03(mod) MediaWiki:Dberr-usegoogle requires html markup - 10https://bugzilla.wikimedia.org/17296 +comment (10Andre Klapper) [13:54:26] 03(mod) have Jenkins build Debian packages for us - 10https://bugzilla.wikimedia.org/36443 normal->15enhancement; +comment (10Antoine "hashar" Musso) [13:54:55] 03(mod) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 (10Andre Klapper) [13:57:05] 03(mod) Bulk request properties for search results - 10https://bugzilla.wikimedia.org/42587 +comment (10Jon) [13:58:16] 03(mod) more "jump to" accessibility links needed - 10https://bugzilla.wikimedia.org/13765 +comment (10Andre Klapper) [13:58:42] New patchset: Umherirrender; "(bug 43315) Cursor of enhancedchangelist wrong for non-toggle lines" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39759 [14:00:03] 03(mod) Cursor in watchlist is shown as hand even if the line can't be expanded/collapsed - 10https://bugzilla.wikimedia.org/43315 +comment (10Umherirrender) [14:02:06] 03(mod) API: logevents do not have a namespace filter - 10https://bugzilla.wikimedia.org/14712 +comment (10Andre Klapper) [14:02:08] 03(mod) Special:Newpages won't honor &hidepatrolled=1 for logged out users - 10https://bugzilla.wikimedia.org/16377 +comment (10Andre Klapper) [14:02:51] New review: Alex Monk; "Please see https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP#Spaces" [mediawiki/extensions/GeoCrumbs] (master) C: -1; - https://gerrit.wikimedia.org/r/39728 [14:04:00] New review: Alex Monk; "Why did you submit a new change for this instead of amending I7f682e97? Please abandon." [mediawiki/extensions/GeoCrumbs] (master) C: -1; - https://gerrit.wikimedia.org/r/39729 [14:05:15] New review: Alex Monk; "This should be done in Icf9ffe7f instead. Please abandon." [mediawiki/extensions/SpecialNamespaces] (master) C: -1; - https://gerrit.wikimedia.org/r/39721 [14:06:08] New review: Alex Monk; "https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP#Spaces" [mediawiki/extensions/Listings] (master) C: -1; - https://gerrit.wikimedia.org/r/39394 [14:07:00] New review: IAlex; "I would prefer using $this->page->getLatest() which will return 0 on non-existing page instead of cr..." [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39751 [14:07:34] New patchset: Andru; "Extracted MultipleTemplate logic from FormPrinter into it's own class to facilitate templating hooks and custom MultipleTemplate output" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/39761 [14:09:03] 03(mod) The API should not return the SHA1 for revisions with the DELETED_TEXT attribute - 10https://bugzilla.wikimedia.org/43137 +comment (10Umherirrender) [14:09:43] 03(mod) WebRequest: remove magic_quotes cruft after requiring PHP 5.4 - 10https://bugzilla.wikimedia.org/11558 -patch +newphp; summary; +comment (10Andre Klapper) [14:09:44] 03(mod) Add User Preference Option to hide reverted edits from Watchlist and Page History - 10https://bugzilla.wikimedia.org/11664 +comment (10Andre Klapper) [14:09:47] 03(mod) Code quality issues (tracking) - 10https://bugzilla.wikimedia.org/700 (10Andre Klapper) [14:11:31] 03(mod) Languages broken on dynamically loaded pages - 10https://bugzilla.wikimedia.org/42962 +comment (10Max Semenik) [14:13:59] 03(mod) have Jenkins build Debian packages for us - 10https://bugzilla.wikimedia.org/36443 +comment (10Mark A. Hershberger) [14:17:31] 03(mod) Feature change: extra blank lines should not insert more whitespace - 10https://bugzilla.wikimedia.org/9651 +comment (10Andre Klapper) [14:17:33] 03(mod) API JSON formatter returns [] as an empty return value - inconsistent with {} for non-empty values - 10https://bugzilla.wikimedia.org/10887 normal->trivial; summary; +comment (10Andre Klapper) [14:17:36] 03(mod) Provide RSS feeds for log entries and user contributions - 10https://bugzilla.wikimedia.org/10094 +comment (10Andre Klapper) [14:19:42] New patchset: Andru; "Extracted MultipleTemplate logic from FormPrinter into it's own class to facilitate templating hooks and custom MultipleTemplate output" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/39761 [14:20:17] New patchset: Hashar; "jenkins test: file with trailing whitepsaces" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39762 [14:24:31] New review: Hashar; "recheck" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39762 [14:24:36] New patchset: Pginer; "CSS for Message editor size adaptation" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39756 [14:24:57] 03(mod) Make clear that RESOLVED LATER is deprecated - 10https://bugzilla.wikimedia.org/43306 summary; +comment (10Andre Klapper) [14:25:40] New patchset: Pginer; "CSS for Message editor size adaptation" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39756 [14:26:47] New review: Hashar; "recheck" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39762 [14:27:31] 03(mod) invalid XML response ("4::olduser", "5::newuser", "6::edits" appears as node attributes) - 10https://bugzilla.wikimedia.org/43221 +comment (10Brad Jorsch) [14:27:50] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 +comment (10Krenair) [14:28:44] 03(mod) Preference section index links do not work even though anchor names exist. - 10https://bugzilla.wikimedia.org/9515 +comment (10Andre Klapper) [14:32:07] New patchset: Hashar; "jenkins test: file WITHOUT trailing whitepsaces" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39762 [14:32:53] 03(mod) Template sandbox doesn't follow redirects - 10https://bugzilla.wikimedia.org/42559 +comment (10Brad Jorsch) [14:35:36] 03(mod) fail on whitespace error in submitted files - 10https://bugzilla.wikimedia.org/42628 +comment (10Antoine "hashar" Musso) [14:35:56] 03(mod) Usability issue with pressing enter from edit page on inputbox for preview with other page - 10https://bugzilla.wikimedia.org/42558 +comment (10Brad Jorsch) [14:40:18] hashar: so maybe blacklist the same group of people in the Checked pipeline? though that may require a duplication of configuration lines [14:43:45] New patchset: Zfilipin; "Updated Ruby gems" [qa/browsertests] (master) - https://gerrit.wikimedia.org/r/39764 [14:44:03] liangent: the Check pipeline runs linting test, not actually executing any code [14:44:13] liangent: so that is fine to have it running on anything submitted :) [14:44:50] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 +easy; +comment (10MZMcBride) [14:55:14] Change abandoned: Hashar; "(no reason)" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39762 [14:56:41] 03(NEW) South Azerbaijani (azb)'s fallback language - 10https://bugzilla.wikimedia.org/43318 normal; MediaWiki extensions: WikimediaIncubator; () [14:57:24] New patchset: Andru; "Extracted MultipleTemplate logic from FormPrinter into it's own class to facilitate templating hooks and custom MultipleTemplate output" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/39761 [14:58:27] New patchset: Hashar; "API: option to split debug log per action" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37430 [14:58:28] Susan, for some reason I can't get this to work on localhost [14:58:55] var_dump( wfMessage( 'templatesandbox-editform-legend' )->plain() ); says string(31) "Preview page with this template" [14:59:08] But I made "MediaWiki:Templatesandbox-editform-legend" with "Preview page with this template ([[mw:Extension:TemplateSandbox|what's this?]])" [14:59:45] Krenair: maybe you created that page while your interface language was not english? [14:59:58] check what MediaWiki:Templatesandbox-editform-legend/en is [15:00:13] if that doesn't fix it, try rebuilding the localization cache [15:01:07] huh there we go [15:01:11] changed all my en-GB settings to en [15:01:56] hashar: can I help you build debian packages? [15:02:39] hexmode: oh I did a quick update on the bug related to having Jenkins build deb packages [15:03:00] I think the idea is to have Jenkins to listen for changes in operations/debs/* [15:03:11] fetch the merged change and build the package automatically for us [15:03:15] not sure what the commands would be though [15:03:31] if you end up with a nice script that does that, I will be more than happy to copy paste it in jenkins :-] [15:03:50] 03(mod) Preference section index links do not work even though anchor names exist. - 10https://bugzilla.wikimedia.org/9515 (10jidanni) [15:03:52] hexmode: Faidon (paravoid) is our Debian guru nowadays. Might want to have him mentoring [15:03:57] mentoring/checking .. [15:04:37] hashar: yeah, I'm supposed to use him for my bz package (which I can also work on now :) ) [15:04:53] 03(mod) Edit link shows on protected pages - 10https://bugzilla.wikimedia.org/41518 +comment (10Jon) [15:05:18] hashar: but I've been through the debian packaging process before. Are you just unfamiliar with the process? [15:05:20] hexmode: ah nice to know you are working on a bz package. I guess Mozilla we love that too :) [15:05:40] well I did build a few packages [15:06:04] the root issue is mainly lack of time and other things to fix first :) [15:07:22] kk ... what is the general place I nneed to look for adding the build? [15:07:34] hexmode: note I am on vacations for two weeks starting tonight :-D [15:07:52] 03(NEW) disable adding label, aliases and description in de-formal - 10https://bugzilla.wikimedia.org/43319 major; Wikimedia: Wikidata; () [15:08:31] 03(mod) South Azerbaijani (azb)'s fallback language is English but in some cases it changes to Persian - 10https://bugzilla.wikimedia.org/43318 +shell; summary; +comment (10Andre Klapper) [15:09:17] 03(mod) disable adding label, alias and description in de-formal - 10https://bugzilla.wikimedia.org/43319 summary (10merl) [15:09:33] hexmode: well Jenkins would fetch a copy of one of the operations/deb/* project, run some shell script that will eventually generate the package and then copy that in some public directory [15:09:57] hexmode: the problem is more about figuring out the commands needed. I think we only have the Debian directory, so need a way to find out which source to download [15:10:01] 03(mod) South Azerbaijani (azb)'s fallback language is English but in some cases it changes to Persian - 10https://bugzilla.wikimedia.org/43318 +comment (10Dereckson) [15:10:14] hexmode: presumably, Debian has some tools to find out the upstream tar.gz and download it for us [15:10:29] hashar: it does [15:10:36] New patchset: Alex Monk; "(bug 43312) Parse Templatesandbox-editform-legend message" [mediawiki/extensions/TemplateSandbox] (master) - https://gerrit.wikimedia.org/r/39767 [15:10:37] hexmode: and since I am unfamiliar with all of that, that would take me a few days to have a working shell script [15:10:41] New patchset: Anomie; "(bug 43312) Add messages for explanatory text to editpage form" [mediawiki/extensions/TemplateSandbox] (master) - https://gerrit.wikimedia.org/r/39768 [15:11:01] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 +comment (10Krenair) [15:11:06] if you end up with a script that does that, I will be more than happy to peer work with you to get that integrated in our Jenkins setup :-] [15:11:13] :) [15:11:23] nice. saving above. [15:12:31] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 +comment (10Brad Jorsch) [15:14:21] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 +comment (10Brad Jorsch) [15:14:22] New patchset: Demon; "Ignore tests" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39589 [15:16:21] 03(NEW) Flickr sets not uploading - 10https://bugzilla.wikimedia.org/43320 normal; MediaWiki extensions: UploadWizard; () [15:17:12] New patchset: Daniel Kinzler; "(minor) Make ORMTable handle failed queries nicely." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37233 [15:18:00] 03(mod) Add a Select All button for Flickr sets - 10https://bugzilla.wikimedia.org/42112 +comment (10Russavia) [15:19:15] 03(mod) Review LaTeXML branch of Extension:Math for deployment - 10https://bugzilla.wikimedia.org/43222 +comment (10physikerwelt) [15:19:21] 03(mod) Flickr sets not uploading - 10https://bugzilla.wikimedia.org/43320 (10Krenair) [15:19:36] Change merged: Anomie; [mediawiki/extensions/TemplateSandbox] (master) - https://gerrit.wikimedia.org/r/39767 [15:20:38] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39756 [15:22:03] New patchset: Anomie; "(bug 43312) Add messages for explanatory text to editpage form" [mediawiki/extensions/TemplateSandbox] (master) - https://gerrit.wikimedia.org/r/39768 [15:22:17] hashar: I mean blacklisting people for Checked, who are whitelisted for the Verified pipeline [15:22:17] New review: Anomie; "PS2: Rebased" [mediawiki/extensions/TemplateSandbox] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39768 [15:22:21] 03(NEW) show label, alias, description of de if user language is de-formal - 10https://bugzilla.wikimedia.org/43321 normal; MediaWiki extensions: WikidataRepo; () [15:22:21] 03(mod) disable adding label, alias and description in de-formal - 10https://bugzilla.wikimedia.org/43319 (10merl) [15:22:33] or the Checked part is run twice [15:22:39] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39538 [15:23:28] New patchset: Carlb; "Correct formatting." [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39728 [15:23:59] liangent: there is no blacklist system yet nor a template system to avoid the list duplication. [15:25:10] New patchset: Liangent; "(bug 43316) Don't fetch revision ID when a page doesn't exist." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39751 [15:25:28] New review: Jeroen De Dauw; "I like the general idea here but there are many naming and other coding style issues here. Not sure ..." [mediawiki/extensions/SemanticForms] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39761 [15:25:39] Change abandoned: Carlb; "amended to https://gerrit.wikimedia.org/r/#/c/39728/2/GeoCrumbs.class.php - abandoning as duplicate" [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39729 [15:26:47] New patchset: Anomie; "Allow mw.log and console to handle multiple values" [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/39591 [15:27:34] New review: Anomie; "PS2: Change "alltostring" to "allToString"" [mediawiki/extensions/Scribunto] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39591 [15:28:04] Change merged: IAlex; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39751 [15:29:03] 03(mod) Fatal error for action=info on non-existent pages - 10https://bugzilla.wikimedia.org/43316 +comment (10Alexandre Emsenhuber [IAlex]) [15:29:55] Change merged: Demon; [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/39591 [15:30:27] Change merged: preilly; [mediawiki/extensions/ZeroRatedMobileAccess] (master) - https://gerrit.wikimedia.org/r/39702 [15:32:26] New review: Anomie; "I wanted to do my Ustring module in the same style you used here, so I rebased it on top of this. Bu..." [mediawiki/extensions/Scribunto] (master) - https://gerrit.wikimedia.org/r/36496 [15:33:06] 03(NEW) flickr - 10https://bugzilla.wikimedia.org/43322 normal; MediaWiki extensions: UploadWizard; () [15:33:10] hashar: what about an email_filter: ^(?!(who\.ever@is\.trusted|.*@wikimedia\.org)$) [15:33:29] for Check [15:33:40] liangent: still code duplication [15:33:57] New patchset: Santhosh; "Image path correction in css" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39769 [15:34:01] 03(mod) flickr - 10https://bugzilla.wikimedia.org/43322 +comment (10Russavia) [15:34:04] liangent: I want to write some code in Zuul so it supports templates / macro. [15:34:04] New review: Yaron Koren; "Overall, this looks great! (Other than the coding convention issues Jeroen noted.) I'll try this out..." [mediawiki/extensions/SemanticForms] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39761 [15:34:18] liangent: so we could define our list of users somewhere and reuse it in several place [15:34:25] 03(mod) flickr - 10https://bugzilla.wikimedia.org/43322 (10Alexandre Emsenhuber [IAlex]) [15:34:35] liangent: also probably want the email filtering feature to be able to either white or black list [15:35:36] hashar: regex negative lookaround is a blacklist :) [15:35:48] but you will still have to dupe the list [15:36:01] yeah [15:37:22] New patchset: Carlb; "Suppress (disambiguators) in names which duplicate existing trail." [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39728 [15:38:13] New review: Anomie; "Makes sense now" [mediawiki/php/luasandbox] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/39589 [15:38:14] Change merged: Anomie; [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39589 [15:38:49] New patchset: Carlb; "Suppress (disambiguators) in names which duplicate existing trail" [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/39728 [15:45:39] Change merged: jenkins-bot; [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39769 [15:55:57] 03(mod) Update Lohit Bengali font - 10https://bugzilla.wikimedia.org/43314 (10Santhosh Thottingal) [15:57:27] New patchset: Carlb; "bug 43220: Modify mw:extension:listings to look for mediawiki:listings-template as the name of a template to be used to format individual listings instead of using the built-in defaults." [mediawiki/extensions/Listings] (master) - https://gerrit.wikimedia.org/r/39394 [15:58:58] New patchset: Carlb; "bug 43220: use mediawiki:listings-template to override formatting" [mediawiki/extensions/Listings] (master) - https://gerrit.wikimedia.org/r/39394 [16:00:24] 03(mod) flickr - 10https://bugzilla.wikimedia.org/43322 +comment (10Andre Klapper) [16:00:25] 03(mod) Flickr sets not uploading - 10https://bugzilla.wikimedia.org/43320 +comment (10Andre Klapper) [16:01:54] hashar, the whitespace check you mean? [16:01:57] not whitelist [16:02:51] 03(mod) fail on whitespace error in submitted files - 10https://bugzilla.wikimedia.org/42628 +comment (10Antoine "hashar" Musso) [16:03:30] Krenair: oh [16:03:52] Krenair: I guess it is time for me to get in vacations :-] [16:03:56] Krenair: I have removed the check btw [16:04:00] * hashar waves [16:04:10] New patchset: Santhosh; "(Bug 43314) Update Lohit Bengali and Assamese to latest version" [mediawiki/extensions/WebFonts] (master) - https://gerrit.wikimedia.org/r/39772 [16:05:06] 03(mod) Update Lohit Bengali font - 10https://bugzilla.wikimedia.org/43314 +comment (10Santhosh Thottingal) [16:12:30] 03(NEW) PHP Fatal error: Call to undefined method Title::getEditNotices() in extensions/VisualEditor/ApiVisualEditor.php - 10https://bugzilla.wikimedia.org/43323 normal; VisualEditor: General; () [16:13:19] 03(mod) Upgrade Gerrit to 2.6 - 10https://bugzilla.wikimedia.org/39589 +comment (10Andre Klapper) [16:16:21] New patchset: VitaliyFilippov; "Fix a bug: drafts didn't show up when creating new pages" [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25629 [16:18:15] 03(mod) Article Feedback Tool difficult to use for screen reader users do to use of non-standard form controls - 10https://bugzilla.wikimedia.org/33081 (10Andre Klapper) [16:18:16] 03(mod) ArticleFeedbackv5: Phase 1.0 (tracking) - 10https://bugzilla.wikimedia.org/39042 (10Andre Klapper) [16:18:16] 03(mod) ArticleFeedbackv5: Phase 1.5 (tracking) - 10https://bugzilla.wikimedia.org/39043 (10Andre Klapper) [16:18:19] New patchset: Carlb; "Initial check-in of Special:Namespaces for MW 1.17-1.20 Change-Id: Icf9ffe7f008fa5033ed2ef79f8b117630a4c63a7" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39720 [16:18:19] New patchset: VitaliyFilippov; "Add a dependency on mediawiki.legacy.wikibits." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39369 [16:18:19] 03(mod) The vertical feedback button doesn't appear on the right of the article page - 10https://bugzilla.wikimedia.org/32941 (10Andre Klapper) [16:18:20] 03(mod) ArticleFeedbackv5: Phase 1.0 (tracking) - 10https://bugzilla.wikimedia.org/39042 (10Andre Klapper) [16:18:22] 03(mod) ArticleFeedbackv5: Phase 1.5 (tracking) - 10https://bugzilla.wikimedia.org/39043 (10Andre Klapper) [16:18:38] 03(mod) ArticleFeedbackv5: Phase 1.0 (tracking) - 10https://bugzilla.wikimedia.org/39042 (10Andre Klapper) [16:19:38] Change abandoned: Carlb; "Merged to https://gerrit.wikimedia.org/r/#/c/39720/ - abandoning as duplicate." [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39721 [16:20:06] New patchset: VitaliyFilippov; "Clear timer to null." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39774 [16:21:45] New review: VitaliyFilippov; "Is it SO important to move such trivial change to its own commit? :-X" [mediawiki/extensions/Drafts] (master) C: 1; - https://gerrit.wikimedia.org/r/25629 [16:21:51] 03(mod) PHP Fatal error: Call to undefined method Title::getEditNotices() in extensions/VisualEditor/ApiVisualEditor.php - 10https://bugzilla.wikimedia.org/43323 +comment (10Krenair) [16:21:57] qgil_: argh, I sent stuff to your private email address. I guess I should delete that one from my address book, sorry :-/ [16:22:23] np I'll check [16:27:01] New review: VitaliyFilippov; "Personally I think MW should not pass $this by reference at all." [mediawiki/extensions/Drafts] (master) C: 0; - https://gerrit.wikimedia.org/r/25627 [16:27:41] New patchset: Carlb; "Initial check-in of Special:Namespaces for MW 1.17-1.20" [mediawiki/extensions/SpecialNamespaces] (master) - https://gerrit.wikimedia.org/r/39720 [16:29:07] New patchset: VitaliyFilippov; "Fix a bug: drafts didn't show up when creating new pages" [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25629 [16:29:07] New patchset: VitaliyFilippov; "Always display user's drafts on the edit form." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25628 [16:29:07] New patchset: VitaliyFilippov; "Clear timer to null." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39774 [16:29:08] New patchset: VitaliyFilippov; "Fix for PHP 5.4: add & to function prototype" [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25627 [16:29:08] New patchset: VitaliyFilippov; "Add a dependency on mediawiki.legacy.wikibits." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39369 [16:33:28] New patchset: VitaliyFilippov; "Fix for PHP 5.4: add & to function prototype" [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25627 [16:34:23] New patchset: VitaliyFilippov; "Fix a bug: drafts didn't show up when creating new pages" [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25629 [16:34:44] 03(mod) Allow Special:Log to be filtered by log_action as well as log_type - 10https://bugzilla.wikimedia.org/18954 +comment (10Rd232) [16:34:58] fatal: You are on a branch yet to be born [16:35:00] ugh, what [16:35:38] <^demon> http://stackoverflow.com/questions/11887203/you-are-on-a-branch-yet-to-be-born-when-adding-git-submodule [16:35:42] <^demon> Google is your friend. [16:35:54] <^demon> Or http://stackoverflow.com/questions/7083272/what-does-fatal-you-are-on-a-branch-yet-to-be-born-mean-in-this-context [16:36:07] 03(mod) Specific log_action for revision deletions - 10https://bugzilla.wikimedia.org/17806 +comment (10Rd232) [16:36:24] New patchset: VitaliyFilippov; "Add a dependency on mediawiki.legacy.wikibits." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39369 [16:37:26] New patchset: VitaliyFilippov; "Clear timer to null." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39774 [16:38:43] New patchset: VitaliyFilippov; "Always display user's drafts on the edit form." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25628 [16:39:28] Adding existing repo at 'SpecialNamespaces' to the index [16:39:28] fatal: Not a git repository: SpecialNamespaces/../.git/modules/SpecialNamespaces [16:39:28] Failed to add submodule 'SpecialNamespaces' [16:42:15] Ah, had to delete the submodule dir again... Fixed. Thanks ^demon [16:47:38] New review: Dereckson; "Concerns in PS1, PS3 are addressed." [mediawiki/extensions/Drafts] (master) C: 1; - https://gerrit.wikimedia.org/r/25629 [16:48:48] New review: Alex Monk; "More code style stuff." [mediawiki/extensions/SpecialNamespaces] (master) C: -1; - https://gerrit.wikimedia.org/r/39720 [16:49:21] 03(mod) Apache errors for '/usr/local/apache/common/docroot/wikipedia.org/w/mobileRedirect.php' not found - 10https://bugzilla.wikimedia.org/42748 (10Andre Klapper) [16:49:28] 03(mod) Write redirect rules for GitBlit - 10https://bugzilla.wikimedia.org/41961 (10Andre Klapper) [16:49:58] 03(mod) The search box's 'title' argument is "Search Wikipedia" - 10https://bugzilla.wikimedia.org/40910 (10Andre Klapper) [16:50:05] 03(mod) blog post says "3 responses", but none or fewer are shown - 10https://bugzilla.wikimedia.org/39755 (10Andre Klapper) [16:51:20] 03(mod) Blog comment form should be protocol-relative - 10https://bugzilla.wikimedia.org/37229 (10Andre Klapper) [16:51:20] 03(mod) Wikimedia blog with https doesn't link to secure wikis - 10https://bugzilla.wikimedia.org/39539 (10Andre Klapper) [16:51:29] 03(mod) Wikimedia blog with https doesn't link to secure wikis - 10https://bugzilla.wikimedia.org/39539 (10Andre Klapper) [16:51:46] 03(mod) No IPv6 addresses on Wikimedia nameservers ns(0-2).wikimedia.org - 10https://bugzilla.wikimedia.org/41270 (10Andre Klapper) [16:52:05] 03(mod) Make be-x-old.wikisource.org point to be.wikisource.org - 10https://bugzilla.wikimedia.org/41755 (10Andre Klapper) [16:53:24] 03(mod) In Etherpad error messages, replace contact for support by Wikimedia specific one - 10https://bugzilla.wikimedia.org/41049 summary (10Andre Klapper) [16:54:17] 03(mod) Apache errors for '/usr/local/apache/common/docroot/wikipedia.org/w/mobileRedirect.php' not found - 10https://bugzilla.wikimedia.org/42748 +comment (10Chad H.) [16:54:52] 03(mod) Upgrade EtherPad to 1.1.17 - 10https://bugzilla.wikimedia.org/29822 +comment (10Andre Klapper) [17:00:33] New patchset: VitaliyFilippov; "Clear timer to null." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39774 [17:01:58] New patchset: VitaliyFilippov; "Add a dependency on mediawiki.legacy.wikibits." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/39369 [17:02:03] 03(NEW) Magic word {{SITEID}} - 10https://bugzilla.wikimedia.org/43325 normal; MediaWiki extensions: WikidataRepo; () [17:03:39] New patchset: Matthias Mullie; "Refactor AFT backend" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/24264 [17:04:31] New patchset: Matthias Mullie; "DataModel" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/27981 [17:06:21] 03(mod) Exception thrown on donate.wikimedia.org due to non-existing "monthly-link" element ID - 10https://bugzilla.wikimedia.org/40152 +comment (10Andre Klapper) [17:06:36] 03(mod) Banner doesn't work with Konqueror/KHTML - 10https://bugzilla.wikimedia.org/42087 (10Andre Klapper) [17:06:43] New patchset: Matthias Mullie; "DataModel" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/27981 [17:07:22] 03(mod) Add /fundraising to dumps.wikimedia.org - 10https://bugzilla.wikimedia.org/40847 (10Andre Klapper) [17:07:51] 03(mod) IRCD source code on Gerrit - 10https://bugzilla.wikimedia.org/42789 (10Andre Klapper) [17:08:27] 03(mod) need for all projects to have common DOI citation templates... - 10https://bugzilla.wikimedia.org/39487 normal->15enhancement (10Andre Klapper) [17:08:43] 03(mod) Wikimedia M�xico (mx) interwiki not working - 10https://bugzilla.wikimedia.org/43027 (10Andre Klapper) [17:12:19] 03(mod) Creating new accounts causes database error on PostgreSQL - 10https://bugzilla.wikimedia.org/38925 +comment (10Chris) [17:16:44] 03(mod) Creating new accounts causes uninformative "dberrortext" error on PostgreSQL 9.1 - 10https://bugzilla.wikimedia.org/38925 normal->major; summary; +comment (10Andre Klapper) [17:20:16] 03(mod) Creating new accounts causes uninformative "dberrortext" error on PostgreSQL 9.1 - 10https://bugzilla.wikimedia.org/38925 +comment (10Chris) [17:20:49] 03(mod) Default font size for commit message and diff not readable - 10https://bugzilla.wikimedia.org/40941 (10Andre Klapper) [17:20:51] 03(mod) Upgrade Gerrit to 2.6 - 10https://bugzilla.wikimedia.org/39589 (10Andre Klapper) [17:21:18] 03(mod) Trailing slashes in Gerrit URLs are kind of nasty - 10https://bugzilla.wikimedia.org/42419 (10Andre Klapper) [17:21:32] New patchset: Andru; "Extracted MultipleTemplate logic from FormPrinter into it's own class to facilitate templating hooks and custom MultipleTemplate output" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/39761 [17:21:43] 03(mod) [ and ] shortkeys not working in Gerrit - 10https://bugzilla.wikimedia.org/40640 (10Andre Klapper) [17:21:54] 03(mod) Inconsistent commit dependencies - 10https://bugzilla.wikimedia.org/40454 (10Andre Klapper) [17:22:05] 03(mod) Gerrit doesn't highlight "elseif" - 10https://bugzilla.wikimedia.org/40241 normal->minor (10Andre Klapper) [17:22:40] 03(NEW) Cleanup EntityDiff - 10https://bugzilla.wikimedia.org/43326 normal; MediaWiki extensions: WikidataRepo; () [17:22:58] 03(mod) EntityDiff must include claims - 10https://bugzilla.wikimedia.org/43021 (10Jeroen De Dauw) [17:22:59] 03(mod) Cleanup EntityDiff - 10https://bugzilla.wikimedia.org/43326 (10Jeroen De Dauw) [17:23:17] 03(mod) Blank page on comparing a file over two commits - 10https://bugzilla.wikimedia.org/40021 +comment (10Andre Klapper) [17:23:27] 03(mod) wbcreateclaim overwrites existing claims when revision ID is used - 10https://bugzilla.wikimedia.org/43200 (10Jeroen De Dauw) [17:23:31] 03(mod) Cleanup EntityDiff - 10https://bugzilla.wikimedia.org/43326 (10Jeroen De Dauw) [17:23:49] 03(mod) gerrit-wm bot doesn't post notification on IRC if the primary "Cover Message" edit field was left blank during review - 10https://bugzilla.wikimedia.org/40020 (10Andre Klapper) [17:24:02] 03(mod) Delayed merge + mechanical rebase = anonymous merge - 10https://bugzilla.wikimedia.org/40019 (10Andre Klapper) [17:24:05] 03(mod) Cleanup EntityDiff - 10https://bugzilla.wikimedia.org/43326 +comment (10Jeroen De Dauw) [17:24:17] New patchset: Andru; "Extracted MultipleTemplate logic from FormPrinter into it's own class to facilitate templating hooks and custom MultipleTemplate output" [mediawiki/extensions/SemanticForms] (master) - https://gerrit.wikimedia.org/r/39761 [17:24:26] 03(mod) git clone fail with an RPC error - 10https://bugzilla.wikimedia.org/39737 (10Andre Klapper) [17:24:28] 03(mod) MobileFrontend alpha: picking one of the 'random' suggestions doesn't update URL - 10https://bugzilla.wikimedia.org/43241 (10Jon) [17:24:38] 03(mod) Gerrit extensions repository: updates fail - 10https://bugzilla.wikimedia.org/39270 (10Andre Klapper) [17:24:45] 03(mod) Git review fails if branch name matches file/dir name - 10https://bugzilla.wikimedia.org/38951 (10Andre Klapper) [17:25:15] 03(mod) MobileFrontend alpha: picking one of the 'random' suggestions doesn't update URL - 10https://bugzilla.wikimedia.org/43241 +comment (10Jon) [17:25:16] 03(mod) Signing into gerrit should leave you at the page you were visiting - 10https://bugzilla.wikimedia.org/38760 (10Andre Klapper) [17:25:27] 03(mod) Intraline difference not working - 10https://bugzilla.wikimedia.org/38700 (10Andre Klapper) [17:25:48] 03(mod) Gerrit emails sent two months after the fact - 10https://bugzilla.wikimedia.org/38550 (10Andre Klapper) [17:25:59] 03(mod) "Old Version History" is not set properly when jumping between changesets (via dependency only?) - 10https://bugzilla.wikimedia.org/37373 (10Andre Klapper) [17:26:43] New review: Carlb; "I do have a local copy of en.Wikivoyage here as a test bed for other changes (bugzilla:43313) and di..." [mediawiki/extensions/GeoCrumbs] (master) C: 1; - https://gerrit.wikimedia.org/r/33288 [17:29:13] 03(mod) Bhojpuri wikipedia should start with 'bho' instead of 'bh' to avoid confusion with Bihari - 10https://bugzilla.wikimedia.org/39968 (10Andre Klapper) [17:30:27] 03(mod) Japanese filenames do not appear in search results if file extension dropped - 10https://bugzilla.wikimedia.org/40612 summary (10Andre Klapper) [17:31:25] 03(mod) Update tidy to a version that knows the latest HTML5 tricks - 10https://bugzilla.wikimedia.org/39525 +comment (10Andre Klapper) [17:31:26] 03(mod) Fix usage of tidy to work cleanly with html5 - 10https://bugzilla.wikimedia.org/31871 +comment (10Andre Klapper) [17:33:09] 03(mod) Complete list description for every Wikimedia mailing list instead of "[no description available]" - 10https://bugzilla.wikimedia.org/37537 normal->minor; summary (10Andre Klapper) [17:33:31] Could somebody forward me (as attachment) an OTRS notification email please? [17:33:44] 03(mod) Modernize the look and usability of page histories - 10https://bugzilla.wikimedia.org/28131 (10Robin Pepermans (SPQRobin)) [17:33:54] <^demon> Holy bugspam batman. [17:33:56] New review: Andru; "Made modifications as suggested, and also made some slight improvements to the way HTML is construct..." [mediawiki/extensions/SemanticForms] (master) C: 0; - https://gerrit.wikimedia.org/r/39761 [17:34:11] <^demon> Walk away from my computer for 10 minutes and 16 of my gerrit bugs are changed :\ [17:34:29] Can someone please merge https://gerrit.wikimedia.org/r/#/c/33288/ ? [17:34:46] It's a one line fix [17:34:49] hello all - i am interested in deleting the database entries of the deletion log - so it does not appear in the special:log i have done it before - but it was years ago. [17:34:53] And has 3 +1s [17:35:03] Change merged: Demon; [mediawiki/extensions/GeoCrumbs] (master) - https://gerrit.wikimedia.org/r/33288 [17:35:06] anno1404, why do you want to do that? [17:35:34] 03(mod) Ext-TranslationNotifications needs Translate as dependency - 10https://bugzilla.wikimedia.org/39950 +comment (10Andre Klapper) [17:35:49] 03(mod) Install and enable Tidy on Jenkins box - 10https://bugzilla.wikimedia.org/40029 (10Andre Klapper) [17:36:06] hi krenair, thank you for responding. Its convoluted but basically a private wiki was somehow connected to this public wiki, and now the public wiki has the logs of private wiki [17:36:08] Thanks ^demon [17:36:13] ^demon, yeah, I'm setting priorities. [17:36:21] <^demon> I noticed. [17:36:28] anno1404, so go and revdel all the entries which are supposed to be private [17:36:34] so i just want to remove the stuff in the special:log [17:36:36] No need to deliberately break your database [17:36:46] revdel? [17:36:53] 03(mod) [GeoCrumbs] Crumbs are shown even on project/special pages - 10https://bugzilla.wikimedia.org/42946 +comment (10Krenair) [17:36:56] revision delete [17:37:02] It's used to hide revisions and log entries [17:37:13] ok one sec thank you [17:37:21] anno1404: if you don't have this option, you probably should upgrade your MW version :) [17:37:27] Since 1.20 you should be able to select multiple entries and press the button to go to the hide form [17:37:32] anno1404: (or you might have turned it off) [17:37:40] http://www.mediawiki.org/wiki/Manual:RevisionDelete [17:37:47] ok [17:39:15] 03(mod) https://en.wikipedia.com and similar throw certificate warning - 10https://bugzilla.wikimedia.org/40998 (10Andre Klapper) [17:39:28] 03(mod) Our *.wikimedia.org cert doesn't properly cover https://pa.us.wikimedia.org/ - 10https://bugzilla.wikimedia.org/38763 (10Andre Klapper) [17:39:43] 03(mod) m.wikinews.org has incorrect certificate (for *.wikipedia.org) - 10https://bugzilla.wikimedia.org/37650 (10Andre Klapper) [17:41:30] 03(mod) Wikimedia public key list needs moving from singer - 10https://bugzilla.wikimedia.org/38384 (10Andre Klapper) [17:41:36] 03(NEW) Enable the "autopatrolled" group on it.wikivoyage - 10https://bugzilla.wikimedia.org/43327 normal; Wikimedia: Site requests; () [17:42:23] 03(mod) Enable the "autopatrolled" group on it.wikivoyage - 10https://bugzilla.wikimedia.org/43327 +shell (10Emanuele Raoli) [17:42:23] hello krenair, http://wilddc.com/w/index.php/Special:RevisionDelete does not show up [17:42:50] i added $wgGroupPermissions['user']['deleterevision'] = true; to localsettings.php [17:43:11] .. Um yeah I wouldn't let every user revdelete if I were you [17:43:22] yes [17:43:24] i agree [17:43:31] i am just trying to get it to work now [17:43:31] Anyway, you're getting an error on that page? [17:43:39] nothing shows up page is blank [17:43:43] That's my fault lol. It should be fixed in the latest version of the code though [17:44:01] oh you created the program? thats cool [17:44:07] No, I broke the program [17:44:11] All it's hiding is an error telling you that you need to specify the entries though [17:44:36] You'll need this: $wgGroupPermissions['sysop']['deletelogentry'] = true; [17:44:43] Then go to Special:Log and select the entries you want to hide [17:45:11] ok :) [17:45:13] i will try [17:45:43] For some reason a change I made to that area of the code (which hadn't been approved into master) got out in the 1.20 tarball [17:45:52] New patchset: Hoo man; "Add hooks to AF that allow altering User and Title specific vars" [mediawiki/extensions/AbuseFilter] (master) - https://gerrit.wikimedia.org/r/39781 [17:45:56] It was slightly broken though [17:46:34] ok [17:46:42] Then when you've ticked the checkboxes next to each entry you want to hide, hit "Show/hide selected log entries" [17:46:45] 03(mod) Please enable FlaggedRevs on eswikibooks - 10https://bugzilla.wikimedia.org/38806 +comment (10Andre Klapper) [17:47:25] 03(mod) Empty watchlists show no message - 10https://bugzilla.wikimedia.org/42745 +comment (10Jon) [17:47:29] New patchset: Hoo man; "Add hooks to AF that allow altering User and Title specific vars" [mediawiki/extensions/AbuseFilter] (master) - https://gerrit.wikimedia.org/r/39781 [17:47:42] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 (10Emanuele Raoli) [17:47:51] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 (10Emanuele Raoli) [17:47:57] so cool kenair, thank you [17:48:38] you're welcome [17:48:49] 03(mod) Enable MP4/H.264 transcode target support on Wikimedia's TimedMediaHandler setup - 10https://bugzilla.wikimedia.org/39869 +comment (10Andre Klapper) [17:48:51] I prefer this so much more than removing entries from the DB tables [17:49:36] New patchset: Hoo man; "Add hooks to AF that allow altering User and Title specific vars" [mediawiki/extensions/AbuseFilter] (master) - https://gerrit.wikimedia.org/r/39781 [17:50:01] 03(mod) Log in form not centered in Firefox for Android - 10https://bugzilla.wikimedia.org/43247 +comment (10Jon) [17:50:17] New review: Hoo man; "Sorted hooks in hooks.txt alphabetically" [mediawiki/extensions/AbuseFilter] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39781 [17:50:23] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 +comment (10Emanuele Raoli) [17:50:29] 03(mod) Review and deploy CodeEditor extension - 10https://bugzilla.wikimedia.org/42577 (10Andre Klapper) [17:51:01] Change abandoned: Dereckson; "Test change." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/38799 [17:51:47] Change abandoned: Dereckson; "Cleanup - abandoning test changes to decrease Gerrit open changes amount." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/34674 [17:51:53] Change abandoned: Dereckson; "Cleanup - abandoning test changes to decrease Gerrit open changes amount." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/34673 [17:51:57] 03(mod) Add /fundraising to dumps.wikimedia.org - 10https://bugzilla.wikimedia.org/40847 +comment (10Matt Walker) [17:51:57] Change abandoned: Dereckson; "Cleanup - abandoning test changes to decrease Gerrit open changes amount." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/34667 [17:52:44] 03(mod) Enable WebFonts for Persian Wikipedia (fa.wp) - 10https://bugzilla.wikimedia.org/42280 +comment (10Andre Klapper) [17:53:16] 03(mod) Re-enable Extension:CrossNamespaceLinks on Wikimedia wikis - 10https://bugzilla.wikimedia.org/42179 (10Andre Klapper) [17:53:50] 03(mod) Review and deploy FormatNum extension - 10https://bugzilla.wikimedia.org/40422 (10Andre Klapper) [17:54:53] thanks again krenair, have a great weekend. [17:54:55] Change abandoned: Dereckson; "Cleanup - abandoning test changes to decrease Gerrit open changes amount." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/27665 [17:55:13] Change abandoned: Dereckson; "Cleanup - abandoning test changes to decrease Gerrit open changes amount." [test/mediawiki/extensions/examples] (master) - https://gerrit.wikimedia.org/r/32199 [17:55:44] 03(mod) cannot write to or create its output directory - 10https://bugzilla.wikimedia.org/40116 +comment (10Andre Klapper) [17:56:40] 03(mod) Wikilove for it.wikivoyage - 10https://bugzilla.wikimedia.org/43274 (10Andre Klapper) [17:56:50] 03(mod) Install Page Curation on id.wp - 10https://bugzilla.wikimedia.org/42322 (10Andre Klapper) [17:58:36] Would someone know if this Namespaced sample - https://gerrit.wikimedia.org/r/#/c/33351/ - exists somewhere? [17:58:49] 03(mod) Configure MathJax for en.wikibooks - 10https://bugzilla.wikimedia.org/42061 +comment (10Andre Klapper) [17:59:19] (if someone has *every* Gerrit stuff on his computer, "find . | grep Namespaced" would be nice) [18:00:34] Dereckson: i can check mw/extnsions for you [18:01:24] 03(mod) Extension:WikiTimeLine for en.wikipedia - 10https://bugzilla.wikimedia.org/29530 -patch-need-review ; summary; +comment (10Andre Klapper) [18:01:25] 03(NEW) Enable Article Feedback Tool on it.wikivoyage - 10https://bugzilla.wikimedia.org/43328 normal; Wikimedia: Extension setup; () [18:01:45] 03(mod) Enable Article Feedback Tool on it.wikivoyage - 10https://bugzilla.wikimedia.org/43328 +shell (10Emanuele Raoli) [18:04:26] 03(mod) Review and deploy CollaborativeWatchlist extension - 10https://bugzilla.wikimedia.org/30051 -patch-need-review ; +comment (10Andre Klapper) [18:04:26] 03(NEW) Enable SearchExtraNs extension on Commons - 10https://bugzilla.wikimedia.org/43329 enhancement; Wikimedia: Extension setup; () [18:05:06] Dereckson: "Namespaced", case sensitive, only greps in some random comments [18:05:27] 03(mod) Activating Upload Wizard Extension in fa.wiki - 10https://bugzilla.wikimedia.org/31070 +comment (10Andre Klapper) [18:05:33] Thank you. [18:05:45] Dereckson: i'm `git pull`ing right now and will recheck [18:06:16] Dereckson: `git pull`ing mediawiki/extensions * [18:06:50] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Jon) [18:08:04] 03(mod) Enable NewUserMessage extension on four th projects - 10https://bugzilla.wikimedia.org/31600 +comment (10Andre Klapper) [18:08:15] 03(mod) Activating Upload Wizard Extension in fa.wiki - 10https://bugzilla.wikimedia.org/31070 +comment (10Huji) [18:08:46] 03(mod) UploadWizard deployment (tracking) - 10https://bugzilla.wikimedia.org/31071 (10Andre Klapper) [18:08:47] 03(mod) UploadWizard for el.wikipedia - 10https://bugzilla.wikimedia.org/30044 (10Andre Klapper) [18:09:56] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Chad H.) [18:10:04] 03(mod) Activating StringFunctions in fa.wikipedia.org - 10https://bugzilla.wikimedia.org/32310 -patch-need-review ; summary (10Andre Klapper) [18:10:22] 03(mod) activating Extension:FormatNum in fa.wiki - 10https://bugzilla.wikimedia.org/32311 (10Andre Klapper) [18:10:29] 03(mod) Enable Narayam on Urdu Wikipedia - 10https://bugzilla.wikimedia.org/32515 (10Andre Klapper) [18:10:58] 03(mod) Enable SearchExtraNs extension on Commons - 10https://bugzilla.wikimedia.org/43329 +shellpolicy; +comment (10Dereckson) [18:11:35] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Jon) [18:11:51] New patchset: Siebrand; "Add rally statistics page." [translatewiki] (master) - https://gerrit.wikimedia.org/r/39784 [18:13:41] 03(mod) Enable Article Feedback Tool v4 on it.wikivoyage - 10https://bugzilla.wikimedia.org/43328 summary (10Andre Klapper) [18:14:26] 03(mod) Difference in Currencies being displayed - 10https://bugzilla.wikimedia.org/40925 (10Andre Klapper) [18:14:34] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Chad H.) [18:14:34] 03(mod) MF beta high-DPI/responsive images don't trigger in sections beyond the summary - 10https://bugzilla.wikimedia.org/41288 +comment (10Jon) [18:15:09] 03(mod) WebM video served as text/plain - 10https://bugzilla.wikimedia.org/43215 (10Andre Klapper) [18:15:31] 03(mod) Regexp failed to match URI - 10https://bugzilla.wikimedia.org/41320 (10Andre Klapper) [18:16:05] 03(mod) chunked uploads on Commons cannot replace existing files... - 10https://bugzilla.wikimedia.org/40893 (10Andre Klapper) [18:17:24] 03(mod) Ext-TranslationNotifications needs Translate as dependency - 10https://bugzilla.wikimedia.org/39950 +comment (10Siebrand) [18:17:31] New patchset: IAlex; "Use wfWikiID() instead of $wgDBname in wfIncrStats()" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39735 [18:18:06] 03(mod) Wikilove for it.wikivoyage - 10https://bugzilla.wikimedia.org/43274 +comment (10Emanuele Raoli) [18:18:18] 03(mod) Enable the "autopatrolled" group on it.wikivoyage - 10https://bugzilla.wikimedia.org/43327 +comment (10Dereckson) [18:19:23] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39226 [18:19:37] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39784 [18:19:37] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39381 [18:19:54] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39651 [18:20:51] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 -shell +shellpolicy; +comment (10Dereckson) [18:24:07] 03(mod) Moving files results in broken descriptions and deleted images - 10https://bugzilla.wikimedia.org/40927 (10Andre Klapper) [18:24:07] 03(mod) 1205: Lock wait timeout exceeded; try restarting transaction (tracking) - 10https://bugzilla.wikimedia.org/28499 (10Andre Klapper) [18:26:08] 03(mod) Function: LocalFile::lock: Lock wait timeout exceeded - 10https://bugzilla.wikimedia.org/40843 summary; +comment (10Andre Klapper) [18:26:09] 03(mod) 1205: Lock wait timeout exceeded; try restarting transaction (tracking) - 10https://bugzilla.wikimedia.org/28499 (10Andre Klapper) [18:26:36] 03(mod) Missing file in swift - 10https://bugzilla.wikimedia.org/40437 normal->major (10Andre Klapper) [18:27:22] 03(mod) Notice of pics doesn't show up - 10https://bugzilla.wikimedia.org/39837 summary; +comment (10Andre Klapper) [18:27:44] 03(mod) Missing image on Wikimedia Commons - 10https://bugzilla.wikimedia.org/38469 normal->major (10Andre Klapper) [18:28:58] 03(mod) Special:Nuke on Commons creates Error: ERR_READ_TIMEOUT, errno [No Error] - 10https://bugzilla.wikimedia.org/38028 summary; +comment (10Andre Klapper) [18:29:33] 03(mod) Could not write file due to insufficient permissions or missing directories/containers. - 10https://bugzilla.wikimedia.org/37687 (10Andre Klapper) [18:30:50] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Jon) [18:31:32] 03(mod) Ext-TranslationNotifications needs Translate as dependency - 10https://bugzilla.wikimedia.org/39950 (10Andre Klapper) [18:33:09] 03(mod) Bugs found by WTA (tracking) - 10https://bugzilla.wikimedia.org/37139 (10Andre Klapper) [18:33:40] 03(mod) Recreated articles aren't patrollable - 10https://bugzilla.wikimedia.org/37349 (10Andre Klapper) [18:34:12] 03(mod) templatelinks corruption - 10https://bugzilla.wikimedia.org/37417 (10Andre Klapper) [18:34:31] 03(mod) Re-evaluate librsvg as SVG renderer on Wikimedia wikis - 10https://bugzilla.wikimedia.org/38010 normal->15enhancement (10Andre Klapper) [18:35:07] 03(mod) Position of Main Page upon first opening - 10https://bugzilla.wikimedia.org/38593 +comment (10Andre Klapper) [18:35:57] 03(mod) unable to make edits to wikipedia entries "stick" - 10https://bugzilla.wikimedia.org/39065 (10Andre Klapper) [18:38:21] 03(mod) Some older revisions reported to be empty in page history although containing text - 10https://bugzilla.wikimedia.org/39340 normal->minor; summary (10Andre Klapper) [18:38:34] 03(mod) Interwiki redirects shouldn't make up domains which are not configured as working - 10https://bugzilla.wikimedia.org/43123 +comment (10Chad H.) [18:38:56] 03(mod) Divide wikis into database lists by approximate size for performance engineering - 10https://bugzilla.wikimedia.org/39667 normal->15enhancement (10Andre Klapper) [18:39:04] <^demon> Susan: Ping. [18:39:41] 03(mod) Suspiciously high pageviews for "undefined" pages in all wikimedia projects - 10https://bugzilla.wikimedia.org/38604 normal->minor (10Andre Klapper) [18:40:35] 03(mod) WMF logo in wikimedia.org should be moved to the footer - 10https://bugzilla.wikimedia.org/39842 normal->minor (10Andre Klapper) [18:41:49] 03(mod) Scap doesn't build use correct extension versions on deployment of new versions - 10https://bugzilla.wikimedia.org/39944 +comment (10Andre Klapper) [18:42:02] 03(mod) test2.wikipedia.org reportedly slow - 10https://bugzilla.wikimedia.org/39961 (10Andre Klapper) [18:42:11] 03(mod) or.wiktionary.org Special:Statistics not updated - 10https://bugzilla.wikimedia.org/39978 (10Andre Klapper) [18:42:23] 03(mod) Some improvements for the deployment scripts (aka fenari /usr/local/bin) - 10https://bugzilla.wikimedia.org/40025 (10Andre Klapper) [18:43:02] New patchset: Siebrand; "Fix undefined $dbr." [translatewiki] (master) - https://gerrit.wikimedia.org/r/39787 [18:43:04] 03(mod) Kill/deprecate/stop using /home/wikipedia/htdocs - 10https://bugzilla.wikimedia.org/40168 normal->minor (10Andre Klapper) [18:43:32] 03(mod) Wikimedia API makes no mention of terms of use or licensing information - 10https://bugzilla.wikimedia.org/40459 (10Andre Klapper) [18:44:02] 03(mod) geoiplookup returns empty for IPv6 users - 10https://bugzilla.wikimedia.org/40572 +ipv6 (10Andre Klapper) [18:44:29] 03(mod) Passing minus sign (x2215) to the magicword formatnum blanks pages on Malayalam WIkipedia - 10https://bugzilla.wikimedia.org/40587 +i18n (10Andre Klapper) [18:45:33] 03(mod) Cannot download from HTTPS sources using copy upload via url-downloader - 10https://bugzilla.wikimedia.org/40596 (10Andre Klapper) [18:45:42] 03(mod) Latin characters are displayed as Cyrillic on kkwiki when not being logged in - 10https://bugzilla.wikimedia.org/40800 (10Andre Klapper) [18:46:22] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39787 [18:48:11] 03(mod) Cached UA agent failures cause broken CSS due to Varnish caching - 10https://bugzilla.wikimedia.org/40856 summary (10Andre Klapper) [18:51:32] 03(mod) HTTP/1.1 504 Gateway Time-out on http://www.wikipedia.org/wiki/ when 'User-Agent: iPhone' is set - 10https://bugzilla.wikimedia.org/41224 (10Andre Klapper) [18:51:42] New patchset: Christian; "Triple-Click Detection for IE" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/39788 [18:52:05] 03(mod) api returns wrong langlinks - 10https://bugzilla.wikimedia.org/41387 +comment (10Andre Klapper) [18:52:10] Dereckson, 'community propaganda section' - heh, very blatant [18:53:23] 03(mod) Closed (ang, ht) Wikisources do not show missing.php script - 10https://bugzilla.wikimedia.org/41408 summary; +comment (10Andre Klapper) [18:53:43] Change merged: Spage; [mediawiki/extensions/E3Experiments] (master) - https://gerrit.wikimedia.org/r/38817 [18:54:05] 03(mod) Auto-login to other Wikimedia Foundation projects is funky (icons not always loading) - 10https://bugzilla.wikimedia.org/41610 (10Andre Klapper) [18:54:05] New patchset: Christian; "Triple-Click Detection for IE" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/39788 [18:54:31] 03(mod) Loading of Edit Page occasionally incomplete on ml.wikipedia - 10https://bugzilla.wikimedia.org/41802 normal->major; +ops (10Andre Klapper) [18:55:13] 03(mod) Interwiki links from Wikitravel/Voyage need to go in our interwiki map - 10https://bugzilla.wikimedia.org/41942 +comment (10Andre Klapper) [18:55:32] 03(mod) [[Wikivoyage_talk:User_account_migration]] message seems to be truncated - 10https://bugzilla.wikimedia.org/41946 normal->trivial (10Andre Klapper) [18:56:03] 03(mod) Wikipedia, commons interwiki link and others are broken by custom JS on Wikivoyage - 10https://bugzilla.wikimedia.org/41943 +comment (10Andre Klapper) [18:56:25] 03(mod) Get an "Error: Request failed" message on first loading of [[Wikivoyage:User_account_migration]] and hitting edit tab - 10https://bugzilla.wikimedia.org/41945 +comment (10Andre Klapper) [18:56:37] 03(mod) Our *.wikimedia.org cert doesn't properly cover https://pa.us.wikimedia.org/ - 10https://bugzilla.wikimedia.org/38763 +comment (10Daniel Zahn) [18:56:57] 03(mod) A bunch of little things that need fixing - 10https://bugzilla.wikimedia.org/41950 (10Andre Klapper) [18:57:22] 03(mod) Wikivoyage: footer contains a second spurious attribution link, the same for all pages in a language - 10https://bugzilla.wikimedia.org/41981 (10Andre Klapper) [18:57:40] 03(mod) Link to WikiTravel in the attribution footer on Wikivoyage lacks nofollow; also make link not clickable? - 10https://bugzilla.wikimedia.org/41983 (10Andre Klapper) [18:57:54] 03(mod) Strange diff on the English Wikipedia - 10https://bugzilla.wikimedia.org/43281 (10Andre Klapper) [18:58:03] 03(mod) Search button uses deprecated attributes width and height - 10https://bugzilla.wikimedia.org/39521 +comment (10Bartosz Dziewoński) [18:58:04] 03(mod) Contributions list for "Conversion script" account on the English Wikipedia is wonky - 10https://bugzilla.wikimedia.org/43212 (10Andre Klapper) [18:58:05] 03(mod) HTML validation: Attribute width/height not allowed on element button at this point - 10https://bugzilla.wikimedia.org/40384 +comment (10Bartosz Dziewoński) [18:58:37] yay for open bugs which have actually been fixed in september ^ [18:58:46] 03(mod) Add labsconsole extensions to make-wmf-branch - 10https://bugzilla.wikimedia.org/42756 (10Andre Klapper) [18:58:50] yay! [18:58:51] 03(mod) Multimedia support (tracking) - 10https://bugzilla.wikimedia.org/42725 (10Andre Klapper) [18:59:15] good thing we have andre now to manage this mess :D [18:59:22] 03(mod) en.wikipedia.org page load takes 12+ seconds because bits.wikimedia.org/.../load.php times out - 10https://bugzilla.wikimedia.org/42653 +comment (10Andre Klapper) [18:59:34] MatmaRex, heh, like which ones? [18:59:48] I sometimes try to reproduce reports, but it's just too many. Plus huge backlog. [19:00:00] andre__: https://bugzilla.wikimedia.org/show_bug.cgi?id=39521 :) [19:00:03] (a pretty minor one) [19:00:14] 03(mod) Multiple / unclear landing pages for QA & testing - 10https://bugzilla.wikimedia.org/42540 (10Andre Klapper) [19:00:16] i was going to try to fix it, then discovered it';s already fixed [19:00:27] oh nice [19:00:45] yeah, I also found one ticket a few days ago that got fixed in the meantime and became a dup [19:00:57] * MatmaRex takes on https://bugzilla.wikimedia.org/show_bug.cgi?id=658 now [19:01:01] 03(mod) Don't update special pages on closed wikis - 10https://bugzilla.wikimedia.org/42436 +performance (10Andre Klapper) [19:01:04] i'm going to break some HTML again ~ [19:01:16] New patchset: J; "Bug 42098 - fix fullscreen api from iframes" [mediawiki/extensions/TimedMediaHandler] (master) - https://gerrit.wikimedia.org/r/33339 [19:01:20] 03(mod) Wikimedia needs a short domain name for URL shortening - 10https://bugzilla.wikimedia.org/42270 (10Andre Klapper) [19:01:34] !docs [19:01:34] An overview of available documentation about MediaWiki can be found at [19:01:35] 03(mod) Wiki Loves Monuments 2013 (tracking) - 10https://bugzilla.wikimedia.org/42164 (10Andre Klapper) [19:01:36] !doc [19:01:37] An overview of available documentation about MediaWiki can be found at [19:02:09] * andre__ calls it a day [19:02:20] there used to be autogenerated MW docs somewhere [19:02:28] ah, http://svn.wikimedia.org/doc/annotated.html [19:02:47] it's linked on main page, but not on the developer subpages :P [19:02:58] (or i cant find it among all these links) [19:04:40] <^demon> MatmaRex: Don't add any extra links to svn.wm.o, fwiw. It's being moved in the near-ish term. [19:05:50] 03(mod) Add labsconsole extensions to make-wmf-branch - 10https://bugzilla.wikimedia.org/42756 (10Chad H.) [19:06:58] ^demon: okay, thanks [19:07:05] 03(mod) MF beta high-DPI/responsive images don't trigger in sections beyond the summary - 10https://bugzilla.wikimedia.org/41288 +comment (10Brion Vibber) [19:07:19] ugh, why is the toc being generated by the Linker [19:07:26] that impressively backwards [19:08:08] 03(mod) Enable Transwiki import on it.wikivoyage - 10https://bugzilla.wikimedia.org/43310 normal->15enhancement (10Sam Reed (reedy)) [19:08:08] 03(mod) Add nagios check to ensure global nfs shares are shared properly from labstore1-4 - 10https://bugzilla.wikimedia.org/43309 normal->15enhancement (10Sam Reed (reedy)) [19:08:11] 03(mod) Enable the "autopatrolled" group on it.wikivoyage - 10https://bugzilla.wikimedia.org/43327 normal->15enhancement (10Sam Reed (reedy)) [19:08:11] 03(mod) Update Lohit Bengali font - 10https://bugzilla.wikimedia.org/43314 normal->15enhancement (10Sam Reed (reedy)) [19:08:13] 03(mod) Add pointer to TemplateSandbox documentation - 10https://bugzilla.wikimedia.org/43312 normal->15enhancement (10Sam Reed (reedy)) [19:08:13] 03(mod) Enable Article Feedback Tool v4 on it.wikivoyage - 10https://bugzilla.wikimedia.org/43328 normal->15enhancement (10Sam Reed (reedy)) [19:10:23] 03(mod) Enhance imagescaler processes containment - 10https://bugzilla.wikimedia.org/43188 +comment (10Faidon Liambotis) [19:13:13] New patchset: Raimond Spekking; "[TemplateSandbox] De-ignore a message key. It has text now." [translatewiki] (master) - https://gerrit.wikimedia.org/r/39789 [19:13:26] Change merged: Raimond Spekking; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39789 [19:14:12] 03(mod) Add read-only mode to Wikimedia Report Card - 10https://bugzilla.wikimedia.org/35597 (10Andre Klapper) [19:14:17] 03(mod) Add keyboard shortcuts - 10https://bugzilla.wikimedia.org/35596 (10Andre Klapper) [19:14:31] 03(mod) Choropleth maps of geodata - 10https://bugzilla.wikimedia.org/35725 (10Andre Klapper) [19:14:35] 03(mod) Complete list description for every Wikimedia mailing list instead of "[no description available]" - 10https://bugzilla.wikimedia.org/37537 +comment (10Daniel Zahn) [19:14:37] 03(mod) Add annotations to charts - 10https://bugzilla.wikimedia.org/35726 (10Andre Klapper) [19:14:42] 03(mod) Support stylizing of individual lines - 10https://bugzilla.wikimedia.org/35732 (10Andre Klapper) [19:14:45] 03(mod) Spit options in basic and advanced sections - 10https://bugzilla.wikimedia.org/35733 (10Andre Klapper) [19:14:51] 03(NEW) 2 Fatals on ApiGetEntities.php line 129 - 10https://bugzilla.wikimedia.org/43330 normal; MediaWiki extensions: WikidataRepo; () [19:14:52] 03(mod) Wikimedia Report Card does not give data sources for most graphs - 10https://bugzilla.wikimedia.org/39119 (10Andre Klapper) [19:14:58] 03(mod) Provide link to exportable data (CSV) from Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39121 (10Andre Klapper) [19:15:06] 03(mod) Re-evaluate pages system in Wikimedia Report Card - 10https://bugzilla.wikimedia.org/39122 (10Andre Klapper) [19:15:16] 03(mod) broken javascript on SquidReportPageViewsPerCountryBreakdownHuge - 10https://bugzilla.wikimedia.org/41663 (10Andre Klapper) [19:15:32] 03(mod) Add Wikivoyage to squid logs page view stats - 10https://bugzilla.wikimedia.org/42055 (10Andre Klapper) [19:16:44] 03(mod) Enable XML importing on enwikivoyage - 10https://bugzilla.wikimedia.org/42450 +comment (10Krenair) [19:19:50] 03(mod) Enable XML importing on enwikivoyage - 10https://bugzilla.wikimedia.org/42450 (10Nemo) [19:20:11] 03(NEW) &action=purge yields "1205: Lock wait timeout exceeded; try restarting transaction (10.0.6.41)" - 10https://bugzilla.wikimedia.org/43331 trivial; MediaWiki: Database; () [19:21:09] 03(mod) &action=purge yields "1205: Lock wait timeout exceeded; try restarting transaction (10.0.6.41)" - 10https://bugzilla.wikimedia.org/43331 (10Marco) [19:21:10] 03(mod) 1205: Lock wait timeout exceeded; try restarting transaction (tracking) - 10https://bugzilla.wikimedia.org/28499 (10Marco) [19:21:26] 03(mod) 2 Fatals on ApiGetEntities.php line 129 - 10https://bugzilla.wikimedia.org/43330 +comment (10Sam Reed (reedy)) [19:21:39] New patchset: Pginer; "Fix for the expandable help area for the message editor" [mediawiki/extensions/Translate] (master) - https://gerrit.wikimedia.org/r/39791 [19:21:41] 03(mod) Ext-TranslationNotifications needs Translate as dependency - 10https://bugzilla.wikimedia.org/39950 (10Antoine "hashar" Musso) [19:21:43] 03(mod) handle extension dependencies in Jenkins jobs - 10https://bugzilla.wikimedia.org/42694 (10Antoine "hashar" Musso) [19:28:32] hi [19:29:16] 03(mod) Upload wizard: RTL support is incomplete - 10https://bugzilla.wikimedia.org/24692 +comment (10reza1615) [19:29:51] New review: Umherirrender; "Feel free to adjust comments or other things, if needed. Thanks." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/39759 [19:30:17] 03(mod) Activating Upload Wizard Extension in fa.wiki - 10https://bugzilla.wikimedia.org/31070 +comment (10reza1615) [19:31:32] New patchset: Matmarex; "(bug 658) don't use a for the TOC" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39792 [19:31:37] Secure Documentation Sprint will be started soon. In the meantime, here's the etherpad link: http://etherpad.wmflabs.org/pad/p/SecureDocumentation [19:31:43] 03(mod) Flickr sets not uploading - 10https://bugzilla.wikimedia.org/43320 normal->major; +comment (10Ryan Kaldari) [19:32:31] * marktraceur beams at csteipp using the wmflabs instance :) [19:33:56] marktraceur: and those who want such things on a MW page can sue https://www.mediawiki.org/wiki/Extension:EtherpadLite [19:34:06] s/sue/use/ [19:34:22] Wikinaut: I know this :) [19:34:32] 03(mod) Table of contents shouldn't be a
- 10https://bugzilla.wikimedia.org/658 +comment (10Bartosz Dziewoński) [19:34:36] New review: Demon; "I tried fixing this once, but ended up with very broken TOCs. Hopefully you got it right :)" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39792 [19:34:58] New review: Matmarex; "Please note that this is not yet tested and that it theoretically has potential to break hacks that ..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/39792 [19:35:10] hi [19:35:55] ^demon: ah, you were faster than me on https://gerrit.wikimedia.org/r/#/c/39792/ ~ [19:35:57] ! [19:35:57] ok, you just typed an exclamation mark with no meaning in the channel, good job. If you want to see a list of all keys, check !botbrain [19:36:38] <^demon> wm-bot: shut up. [19:36:38] Hi ^demon, there is some error, I am a stupid bot and I am not intelligent enough to hold a conversation with you :-) [19:36:46] <^demon> wm-bot: I SAID SHUT UP [19:36:54] ^demon: it *could* break some horribly awful hacks, but those breakages would be semi-easily fixed by search&replace. [19:37:02] ^demon: as i noted, it shouldn't break legit tocs. [19:37:14] (the CSS will just be kinda superfluous, but it should still work) [19:37:21] but, as noted, i didn't really test ;) [19:37:30] <^demon> Indeed. Last time I tried to fix it, I got the css wrong and I ended up with page-wide TOCs :) [19:38:24] haha, no, this doesn't happen here [19:38:32] argh, but it looks like i dind'treally think it through well [19:38:39] didn't* [19:38:58] it kinda conflicts with floating stuff to the right [19:38:59] grawr [19:39:02] silly css [19:39:14] secure coding ... postponed ? [19:40:10] 03(mod) Upload wizard: RTL support is incomplete - 10https://bugzilla.wikimedia.org/24692 +comment (10Amir E. Aharoni) [19:41:01] Secure Coding: This link should work! https://plus.google.com/hangouts/_/8e5a52bc254a36c4c78b2a999110fb10a2a3f32c [19:41:07] (Sorry for the delay) [19:41:13] Let me know if you can't see that [19:41:32] Wikinaut, Krenair ^ [19:41:34] 03(mod) Fix usage of tidy to work cleanly with html5 - 10https://bugzilla.wikimedia.org/31871 (10Phillip Patriakeas) [19:42:38] h, I've got a serious problem with spam [19:42:42] 03(mod) Meta-Wiki mobile site has errant trademark symbol (™) in footer - 10https://bugzilla.wikimedia.org/41141 +comment (10Maryana Pinchuk) [19:42:43] *hi [19:42:52] can someone help me? [19:43:05] !ask [19:43:05] Hi, how can we help you? Just ask your question. [19:43:49] I've got a serious problem with spam [19:43:54] https://plus.google.com/hangouts/_/8e5a52bc254a36c4c78b2a999110fb10a2a3f32c - can this be used anonymously ? [19:44:11] apparently, I have to login to Google Plus.... arrrgh [19:44:31] csteipp: can you set this so that access is for everyone, please [19:44:47] I close the wiki [19:44:58] only can edit when register [19:45:08] Wikinaut: It it should be public.... [19:45:10] but creates accounts and spam anyway [19:46:15] csteipp: no. GP asks to register [19:46:20] 03(mod) Android app needs privacy and terms of use links in the footer - 10https://bugzilla.wikimedia.org/42973 +comment (10Tomasz Finc) [19:46:42] Wikinaut: feel free to call into the wmf, ext 2003 if you like [19:46:54] ugh what, it crashed again [19:48:51] Ubuntu is telling me basically everything is crashing on my laptop [19:49:55] will try one more time [19:51:43] Heh, csteipp booked the biggest conference room for himself :) [19:54:25] And it went again. There's something very wrong with my laptop (everything is crashing and bluescreening, might be some sort of hardware problem I guess...) and I don't have a mic/camera on my main computer [19:54:51] 03(mod) Upload wizard: RTL support is incomplete - 10https://bugzilla.wikimedia.org/24692 +comment (10reza1615) [20:00:31] New review: Tpt; "Reviewed by Dereckson." [mediawiki/extensions/DoubleWiki] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/38785 [20:00:32] Change merged: Tpt; [mediawiki/extensions/DoubleWiki] (master) - https://gerrit.wikimedia.org/r/38785 [20:07:14] 03(mod) Complete list description for every Wikimedia mailing list instead of "[no description available]" - 10https://bugzilla.wikimedia.org/37537 +comment (10Daniel Zahn) [20:10:45] Just double checking: labs and gerrit share the same credentials, right? [20:10:49] 03(mod) tie bar shows incorrectly in IPA class - 10https://bugzilla.wikimedia.org/37973 (10Andre Klapper) [20:11:59] I'm asking because labs says "You should use a different password for your account than you would on projects like Wikipedia, Commons, etc."... [20:12:11] and well, sounds weird [20:12:46] (and right now tfinc & co are pulling me for lunch...) :) Back in a bit. [20:13:45] 03(mod) Searching without fuzzy character % returns a blank page - 10https://bugzilla.wikimedia.org/39276 (10Andre Klapper) [20:13:48] 03(mod) Add missing i18n messages for the monuments database - 10https://bugzilla.wikimedia.org/37701 +i18n (10Andre Klapper) [20:14:28] 03(mod) North america upload caches aren't responding to squid purges - 10https://bugzilla.wikimedia.org/41130 +comment (10Rob Lanphier) [20:18:18] 03(mod) java oom error - 10https://bugzilla.wikimedia.org/40026 normal->major (10Andre Klapper) [20:18:19] 03(mod) Login fails during upload due to metadata error: "TypeError: Cannot read property 'idField' of undefined" - 10https://bugzilla.wikimedia.org/40536 normal->major (10Andre Klapper) [20:20:26] 03(mod) Add a commons category field to the monuments database - 10https://bugzilla.wikimedia.org/40827 (10Andre Klapper) [20:20:30] 03(mod) Use the commons category field in the database to categorize images - 10https://bugzilla.wikimedia.org/40828 (10Andre Klapper) [20:21:05] 03(mod) Getting a warning about unsecure connection using https://toolserver - 10https://bugzilla.wikimedia.org/39280 (10Andre Klapper) [20:21:17] 03(mod) Certain monuments don't have names in the monuments database - 10https://bugzilla.wikimedia.org/38695 (10Andre Klapper) [20:21:22] 03(mod) Add a monument_random field + index to the monuments_all table - 10https://bugzilla.wikimedia.org/37974 (10Andre Klapper) [20:21:28] 03(mod) Categorization bot should act if an id is obviously invalid - 10https://bugzilla.wikimedia.org/40728 (10Andre Klapper) [20:21:35] 03(mod) Incorrect file statistics as "country" URL parameter has no effect - 10https://bugzilla.wikimedia.org/40309 normal->minor (10Andre Klapper) [20:23:15] 03(mod) Implement image tracking in the monuments database - 10https://bugzilla.wikimedia.org/37455 (10Andre Klapper) [20:23:17] 03(mod) Lat/lon should be NULL when empty - 10https://bugzilla.wikimedia.org/37422 (10Andre Klapper) [20:23:18] 03(mod) Create tool listing user WLM contributions - 10https://bugzilla.wikimedia.org/39293 (10Andre Klapper) [20:23:18] 03(mod) Add UNESCO World Heritage Sites to database - 10https://bugzilla.wikimedia.org/42265 (10Andre Klapper) [20:23:20] 03(mod) Add NYC to the monument database - 10https://bugzilla.wikimedia.org/39037 (10Andre Klapper) [20:28:57] 03(mod) typo SCRIPT_DEPRECTED -> SCRIPT_DEPRECATED - 10https://bugzilla.wikimedia.org/40649 (10Andre Klapper) [20:30:02] hi, does anyone know if the list of special characters for the editor can be changed by wiki, or if its a global? There is a letter missing [20:30:20] 03(mod) TypeError: this.params is undefined - 10https://bugzilla.wikimedia.org/41828 +patch-in-gerrit (10Andre Klapper) [20:31:39] 03(mod) Layout of category tree in sidebar does not match with vector layout: Fonts too big - 10https://bugzilla.wikimedia.org/41859 +comment (10Andre Klapper) [20:31:50] 03(mod) Limiting the namespace only shows a depth of one - 10https://bugzilla.wikimedia.org/37972 (10Andre Klapper) [20:32:26] 03(mod) Add a config setting that will cause Category: pages to display an option, "View as CategoryTree" - 10https://bugzilla.wikimedia.org/41991 (10Andre Klapper) [20:32:39] 03(mod) "[x]" (CategoryTreeEmptyBullet) should not be displayed when JavaScript is not loaded - 10https://bugzilla.wikimedia.org/33863 (10Andre Klapper) [20:32:57] 03(mod) In pages mode or with other specified namespace, list only categories directly or indirectly containing what requested - 10https://bugzilla.wikimedia.org/39641 (10Andre Klapper) [20:34:18] 03(mod) No rcid in pages with multiple edits, RC patrolling broken - 10https://bugzilla.wikimedia.org/38834 (10Andre Klapper) [20:35:05] 03(mod) Draft selection integration needs UX rework - 10https://bugzilla.wikimedia.org/40482 (10Andre Klapper) [20:35:14] 03(mod) DumpHTML doesn't include css and js right - 10https://bugzilla.wikimedia.org/38259 normal->major; +comment (10Andre Klapper) [20:35:30] 03(mod) Donate interface-error-msg no longer used? - 10https://bugzilla.wikimedia.org/42898 (10Andre Klapper) [20:36:15] 03(mod) New extension: EXIF parser functions - 10https://bugzilla.wikimedia.org/41498 normal->15enhancement (10Andre Klapper) [20:36:21] 03(mod) Implement ability to safely link e-mail addresses - 10https://bugzilla.wikimedia.org/40347 normal->15enhancement (10Andre Klapper) [20:36:36] 03(mod) PDF related bugs and enhancements (tracking) - 10https://bugzilla.wikimedia.org/41037 (10Andre Klapper) [20:36:59] 03(mod) Call to undefined method MediaWiki::getVal() with MW 1.20.x; going back creates "Unknown column 'user_options' in 'field list'" - 10https://bugzilla.wikimedia.org/42977 (10Andre Klapper) [20:37:21] 03(mod) Special:GlobalUsage not listed on Special:Specialpages - 10https://bugzilla.wikimedia.org/42336 (10Andre Klapper) [20:39:01] 03(mod) When previewing/saving the Map, an non existing page "search a page" is generated instead of showing the Map - 10https://bugzilla.wikimedia.org/37405 (10Andre Klapper) [20:40:01] 03(mod) Hook mvSaveHook has invalid call signature - 10https://bugzilla.wikimedia.org/37621 (10Andre Klapper) [20:40:03] 03(mod) MV_SpecialListStreams declared twice - 10https://bugzilla.wikimedia.org/37620 (10Andre Klapper) [20:40:31] 03(mod) Missing Files - 10https://bugzilla.wikimedia.org/38262 (10Andre Klapper) [20:40:43] 03(mod) Nuke ignores page moves - 10https://bugzilla.wikimedia.org/41351 (10Andre Klapper) [20:40:51] 03(mod) Registration problems: Captcha expects Latin letters - 10https://bugzilla.wikimedia.org/42959 (10Andre Klapper) [20:41:50] 03(mod) Extension:ShortUrl has memcached keys too long - 10https://bugzilla.wikimedia.org/43269 (10Andre Klapper) [20:42:06] 03(mod) Some PHP Warnings in /scripts/processMessageChanges.php - 10https://bugzilla.wikimedia.org/41864 (10Andre Klapper) [20:43:44] 03(mod) [regression] [[MediaWiki:Spam-whitelist]] is incomplete - 10https://bugzilla.wikimedia.org/41235 +comment (10Andre Klapper) [20:44:03] 03(mod) Can't merge blocked users: Duplicate entry for key 'ipb_address' - 10https://bugzilla.wikimedia.org/39470 (10Andre Klapper) [20:44:16] 03(mod) Gurumukhi LLA should have dot to the left of Gurumukhi LA - 10https://bugzilla.wikimedia.org/39219 (10Andre Klapper) [20:44:27] 03(mod) ".mw-hiero-table td { vertical-align: middle; }" is overridden when embedded in other tables. - 10https://bugzilla.wikimedia.org/41869 (10Andre Klapper) [20:45:07] I'm trying to install the Sort extension which seems to have installed ok on Special:Version [20:46:06] but when I try to use it, it has an error saying Parameter 3 to efRenderSort() expected to be a reference, value given in /f5/monarchs/public/wiki/includes/parser/Parser.php [20:46:11] what might be the problem? [20:46:39] hi [20:46:55] round two [20:47:32] efRenderSort is a function in the Sort extension set using $parser->setHook [20:47:59] Change merged: jenkins-bot; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39735 [20:48:28] could the Sort module no longer work with the latest version of mediawiki? [20:48:48] i.e. has anyone else successfully added the Sort extension? [20:49:55] causative, Not sure, no frame of reference (??) [20:54:09] hi, mi wiki has got lot of problems of spam. [20:54:20] I close to bots but now [20:54:36] tons of accounts appears only to put spam [20:54:40] what can I do? [20:55:52] how can I put a domain on spamblacklist? [20:56:33] !spam | ganimedes [20:56:33] ganimedes: For information about combating and handling spam in MediaWiki, see and . [20:58:58] ok. thans [20:59:02] *thanks [21:04:24] 03(mod) Multiple / unclear landing pages for QA & testing - 10https://bugzilla.wikimedia.org/42540 (10Željko Filipin) [21:05:54] 03(mod) 2 Fatals on ApiGetEntities.php line 129 - 10https://bugzilla.wikimedia.org/43330 +comment (10Aude) [21:19:32] New patchset: Zfilipin; "Added MobileFrontend repositories to Jenkins job template" [qa/browsertests] (master) - https://gerrit.wikimedia.org/r/39826 [21:23:09] New patchset: Zfilipin; "Updated websocket gem" [qa/browsertests] (master) - https://gerrit.wikimedia.org/r/39764 [21:23:58] New review: Zfilipin; "I agree, the commit message should be more specific. Fixed." [qa/browsertests] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/39764 [21:28:09] I have had a lot of spam registrations in the last week or so on my wiki - the users have not made any edits (probably didnt confirm the email addresses). I was looking at a clean way to remove them and found "maintenance/removeUnusedAccounts.php" - however this script doesn't seem to be of any use on mediawiki since 1.14 as it checks the logging table as part of the checks to see if the user is "active", but all new us [21:28:09] ers get logged in the logging table with log_type=newusers [21:28:55] so any new users who do no edits etc, will have an entry in the logging table - making removeUnusedAccounts.php not much use at all [21:29:36] aha https://bugzilla.wikimedia.org/show_bug.cgi?id=34581 [21:29:38] known issue [21:32:08] ok, but the amount of no use account is low [21:32:13] normally register [21:32:47] create a UP and sometimes 3 or 4 pages and desapear [21:34:01] recently I have been having many no use accounts registering [21:35:15] mediawiki really could do with some proper facilities to permanently remove spam users and their edits/revisions. the schema is complicated enough and changing that it seems most external scripts/extensions that offer this no longer work. [21:35:57] 03(mod) North america upload caches aren't responding to squid purges - 10https://bugzilla.wikimedia.org/41130 +comment (10Bawolff (Brian Wolff)) [21:43:22] http://www.mediawiki.org/wiki/Tasks_Extension <-- used to be cool on older mediawiki versions..unfortunately incompatible nowadays [21:44:45] 03(mod) Job queue memory usage - 10https://bugzilla.wikimedia.org/24647 +comment (10Max Semenik) [21:45:38] New patchset: Mattflaschen; "Fix remaining issues from the first GuidedTour code review." [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/39182 [21:53:14] yuvipanda: wow [21:53:21] your ref check's response time was amazing [21:53:42] yuvipanda: the only piece thats missing for your packet is the resume now [21:53:56] tfinc: yup, just exporting that to pdf [21:54:09] tfinc: we all work sortof weird hours… :) [21:54:20] seriously. i was just talking to awjr about that [21:54:28] i'm guessing your good friends as both of your don't sleep [21:54:43] yup! [21:54:48] a lot of us around are like that :) [21:55:21] 03(mod) Plural form count incorrect when plural used inside plural - 10https://bugzilla.wikimedia.org/42631 +comment (10Siebrand) [21:55:41] Is there an easy way to link to a subpage? [21:56:01] 03(mod) Linking to a file: Leading colon not stripped - 10https://bugzilla.wikimedia.org/43171 +comment (10James Forrester) [21:56:04] [[/subpage]] [21:56:05] 03(mod) Linking to a category: Leading colon not stripped - 10https://bugzilla.wikimedia.org/43173 +comment (10James Forrester) [21:56:16] subpages have to be enabled in this namespace [21:57:09] 03(mod) show label, alias, description of de if user language is de-formal - 10https://bugzilla.wikimedia.org/43321 +comment (10Lydia Pintscher) [21:57:11] 03(mod) Specify language fallback - 10https://bugzilla.wikimedia.org/36430 +comment (10Lydia Pintscher) [21:57:18] I tried [[/subpage]] from url.com/wiki/Operations, and it created page url.com/wiki/Subpage [21:58:09] 03(mod) [Regression] removeUnusedAccounts.php broken (needs to ignore newuser logging entry) - 10https://bugzilla.wikimedia.org/34581 +comment (10Jools Wills) [22:03:22] New patchset: Anomie; "Work around deficiencies in POSIX timers" [mediawiki/php/luasandbox] (master) - https://gerrit.wikimedia.org/r/39718 [22:08:35] New review: MrBlueSky; "Indeed email addresses like foo***bar@example.com are not handled properly, the same with (valid) ur..." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/28908 [22:09:02] Change abandoned: MrBlueSky; "(no reason)" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/28908 [22:10:05] 03(mod) Special:LinkSearch cannot search with a port in the url - 10https://bugzilla.wikimedia.org/40588 -patch-in-gerrit ; +comment (10MrBlueSky) [22:11:51] 03(mod) Parsoid: Linking on a part of a word triggers linktrail - 10https://bugzilla.wikimedia.org/33091 (10Gabriel Wicke) [22:12:09] 03(mod) Modification of link content in wiki links with tail does not work - 10https://bugzilla.wikimedia.org/43089 (10Gabriel Wicke) [22:13:46] 03(mod) Special:LinkSearch cannot search with a port in the url - 10https://bugzilla.wikimedia.org/40588 (10Nemo) [22:14:34] 03(NEW) Support non-English wikis - 10https://bugzilla.wikimedia.org/43332 normal; Parsoid: JS/General; () [22:14:45] 03(mod) Support non-English wikis - 10https://bugzilla.wikimedia.org/43332 (10Gabriel Wicke) [22:14:45] 03(mod) Support language variant conversion in Parsoid - 10https://bugzilla.wikimedia.org/41716 (10Gabriel Wicke) [22:15:01] 03(mod) Support non-English wikis - 10https://bugzilla.wikimedia.org/43332 (10Gabriel Wicke) [22:15:27] 03(mod) Support non-English wikis - 10https://bugzilla.wikimedia.org/43332 (10Gabriel Wicke) [22:15:44] New patchset: Siebrand; "Update check blacklist." [translatewiki] (master) - https://gerrit.wikimedia.org/r/39830 [22:16:44] 03(mod) Parsoid: Linking on a part of a word triggers linktrail - 10https://bugzilla.wikimedia.org/33091 +comment (10Gabriel Wicke) [22:16:58] New review: Mattflaschen; "I agree with Dereckson. Sometimes it's in fact good to collect minor changes together." [mediawiki/extensions/Drafts] (master) C: 1; - https://gerrit.wikimedia.org/r/25629 [22:18:00] 03(NEW) VisualEditor: Add a (small) left margin to the CE so that users can select whole lines at once - 10https://bugzilla.wikimedia.org/43333 enhancement; VisualEditor: Initialisation and integration; () [22:18:25] 03(mod) VisualEditor: Add a (small) left margin to the CE so that users can select whole lines at once - 10https://bugzilla.wikimedia.org/43333 (10James Forrester) [22:19:43] 03(mod) Support non-English wikis - 10https://bugzilla.wikimedia.org/43332 +comment (10Mark Holmquist) [22:23:12] Change merged: Siebrand; [translatewiki] (master) - https://gerrit.wikimedia.org/r/39830 [22:23:29] hi matthiasmullie - how are you? [22:28:09] hi sumanah - I'm fine, you? [22:30:42] matthiasmullie: I'm not bad! I was wondering whether Bartosz (MatmaRex) got your thoughts on some AbuseFilter or FlaggedRevs issue he was hoping to get fixed, but he's not around, I see [22:32:45] he did respond to my question for clarification on the bugzilla ticket & I'm hoping to get to it next week [22:33:17] 03(NEW) VisualEditor: For article namespace, disable Heading-1s - 10https://bugzilla.wikimedia.org/43334 enhancement; VisualEditor: Initialisation and integration; () [22:33:27] 03(mod) VisualEditor: For article namespace, disable Heading-1s - 10https://bugzilla.wikimedia.org/43334 (10James Forrester) [22:38:06] matthiasmullie: ok! [22:39:55] 03(NEW) VisualEditor: Sometimes the HotCat gadget appears at the top of the CE surface - 10https://bugzilla.wikimedia.org/43335 minor; VisualEditor: Initialisation and integration; () [22:40:01] 03(mod) VisualEditor: Sometimes the HotCat gadget appears at the top of the CE surface - 10https://bugzilla.wikimedia.org/43335 (10James Forrester) [22:43:46] New patchset: Amire80; "Make the padding support RTL languages" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39831 [22:45:07] New patchset: Amire80; "(bug 24692) Make the padding support RTL languages" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39831 [22:45:46] 03(NEW) Parsoid: Images which have no size specified default to width=200? - 10https://bugzilla.wikimedia.org/43336 minor; Parsoid: JS/General; () [22:47:23] 03(mod) [Regression] removeUnusedAccounts.php broken (needs to ignore newuser logging entry) - 10https://bugzilla.wikimedia.org/34581 +comment (10Quim Gil) [22:48:07] 03(mod) Enable SearchExtraNs extension on Commons - 10https://bugzilla.wikimedia.org/43329 +comment (10Jean-Fred) [22:49:54] 03(mod) Parsoid: Images which have no size specified default to width=200? - 10https://bugzilla.wikimedia.org/43336 +comment (10Gabriel Wicke) [22:50:11] 03(mod) Upload wizard: RTL support is incomplete - 10https://bugzilla.wikimedia.org/24692 +patch-in-gerrit; +comment (10Amir E. Aharoni) [22:50:21] New review: Ori.livneh; "Nice work." [mediawiki/extensions/GuidedTour] (master); V: 2 C: 2; - https://gerrit.wikimedia.org/r/39182 [22:50:21] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/39182 [22:53:05] New patchset: VitaliyFilippov; "Fix for PHP 5.4: add & to function prototypes." [mediawiki/extensions/Drafts] (master) - https://gerrit.wikimedia.org/r/25627 [22:53:43] 03(mod) Inline aliens behaving incorrectly in some cases, seems to depend on selection - 10https://bugzilla.wikimedia.org/43174 (10James Forrester) [22:54:06] New review: VitaliyFilippov; "Thanks for $tabindex hint, corrected it here :)" [mediawiki/extensions/Drafts] (master) C: 1; - https://gerrit.wikimedia.org/r/25627 [23:01:09] New patchset: Mattflaschen; "Some tweaks in preparation for adding to Translatewiki.net" [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/38745 [23:03:39] New review: Mattflaschen; "Some of these issues were addressed earlier, so I rebased." [mediawiki/extensions/GuidedTour] (master) C: 1; - https://gerrit.wikimedia.org/r/38745 [23:04:38] 03(mod) Handling of # URIs is broken in SMW - 10https://bugzilla.wikimedia.org/43264 +comment (10Andreas Plank) [23:07:02] New patchset: Subramanya Sastry; "Additional list tests for Parsoid." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39832 [23:07:20] 03(mod) RDF export of imported vocabulary concept: problem with a blank/underscore in the term - 10https://bugzilla.wikimedia.org/41079 +comment (10Andreas Plank) [23:07:39] Change merged: Ori.livneh; [mediawiki/extensions/GuidedTour] (master) - https://gerrit.wikimedia.org/r/38745 [23:08:01] New patchset: Aaron Schulz; "Added UIDGenerator class for getting statistically unique IDs." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/37052 [23:08:31] Reedy: https://gerrit.wikimedia.org/r/#/c/39615/ [23:16:07] 03(mod) VisualEditor: Some elements not alienated - 10https://bugzilla.wikimedia.org/43076 (10Christian Williams) [23:16:46] 03(NEW) Internal extension description outdated - 10https://bugzilla.wikimedia.org/43337 enhancement; MediaWiki extensions: Spam Blacklist; () [23:17:09] HI [23:17:19] 03(mod) en.wikipedia.org page load takes 12+ seconds because bits.wikimedia.org/.../load.php times out - 10https://bugzilla.wikimedia.org/42653 (10bugzilla.wikimedia.org.76374) [23:17:41] how does it come that we cant see extra buttons added via mw:monobook.js at cs.wp? [23:18:43] 03(mod) Internal extension description outdated - 10https://bugzilla.wikimedia.org/43337 (10555) [23:18:47] 03(mod) Documentation is out of date, incomplete (tracking) - 10https://bugzilla.wikimedia.org/1 (10555) [23:20:26] New patchset: Christian; "BugID 43076 - Fixes to alien and phantom corner cases" [mediawiki/extensions/VisualEditor] (master) - https://gerrit.wikimedia.org/r/39834 [23:23:50] Change merged: GWicke; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39832 [23:24:00] New patchset: Aaron Schulz; "[JobQueue] Added a JobQueueRedis class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/39174 [23:25:53] 03(mod) Documentation is out of date, incomplete (tracking) - 10https://bugzilla.wikimedia.org/1 trivial->normal; +comment (10555) [23:27:10] gwicke: http://en.wikipedia.org/wiki/Special:ApiSandbox [23:29:39] Juandev: common cause of that is a javascript error elsewhere in the file prevents the js making the buttons from loading [23:31:38] Juandev: however I'm not seeing any errors on cs.wikipedia.org [23:31:41] bawolff: so you meant here is error: https://cs.wikipedia.org/wiki/MediaWiki:Monobook.js [23:31:42] ? [23:32:04] bawolff: I see, so where is the problem? [23:32:12] * bawolff looks more closely [23:32:22] bawolff: isnt that in the wikimedia settings? [23:32:51] * Juandev wonders why buttons are determined twice on that page! [23:33:10] no, the local js is not in wikimedia settings (I'm not sure if I understood you correctly) [23:34:19] ok, doesnt matter [23:34:54] hmm, interesting. Not sure why that isn't working [23:34:59] bawolff: I think we have this problem since software upgrate [23:35:33] so than we can fill the bug [23:35:38] possibly something to do with load order. Maybe needs to fire from the onready event [23:36:18] * Juandev doesnt know JavaScript [23:38:07] oh wait, I was looking at the monobook js, while using the vector skin [23:38:57] 03(mod) Special:BrowseData with SQL error browsing a category having filters - 10https://bugzilla.wikimedia.org/43260 +comment (10Andreas Plank) [23:39:23] Juandev: Looks like the custom buttons were only added to MediaWiki:Monobook.js, they're not in MediaWiki:Common.js, so they don't get loaded for vector skin [23:40:16] Juandev: Do the buttons appear for you at https://cs.wikipedia.org/wiki/random_edit_test?useskin=monobook&action=edit [23:41:23] I see, well I have Vector skin but using monobook buttons [23:41:35] (They also will probably only appear if you have the "enhanced" edit toolbar disabled in your preferences) [23:42:12] The button code itself is not monobook specific, its just in a place that only the monobook skin looks at. They should be fine to move over to common.js which all skins look at [23:42:19] yes you are right. In monobook skin it work properly [23:43:31] [00:39:18] Juandev: Do the buttons appear for you at https://cs.wikipedia.org/wiki/random_edit_test?useskin=monobook&action=edit - yes [23:45:00] bawolff: which of the section should be moved there? [23:46:25] I believe starting at the line "mw.loader.using('mediawiki.action.edit', function () {" [23:46:32] and then all the way down to the bottom [23:46:42] I can see buttons twice in monobook.js isnt that uselless [23:47:27] I mean the line, which starts with function commonCustomizeEditToolbar() [23:47:48] yes. I'm not 100% sure which one is actually adding the buttons. one is using the old way, one is using the new [23:48:37] the lower one is using the new way [23:49:10] well I dont mind, if this works, I dont want to push someone to stop working that:-) [23:49:37] 03(mod) VisualEditor: Select All + Delete removes all text from sight, but not internally - 10https://bugzilla.wikimedia.org/43081 +comment (10Christian Williams) [23:51:21] cs wikipedia has a big mess in code since there is nobody to maintain it [23:51:25] There's some stuff in common.js that's duplicated too. For example some of the collapsible code is now in core [23:51:27] bawolff: how the browser will determine, that that piece of script should be used only for Vector skin. Isnt it better to copy that to vector.js? [23:51:36] hey all [23:51:40] 03(mod) Complete list description for every Wikimedia mailing list instead of "[no description available]" - 10https://bugzilla.wikimedia.org/37537 +comment (10Daniel Zahn) [23:51:51] how do i block access to /mediawiki/mw-config and such? [23:52:45] Kardos: typically just use chmod to not give read access to anybody [23:53:07] when i installed it via ubuntu's package in 2010, somehow that was taken care of [23:53:17] is there any other directories i should chmod? [23:53:33] maintenance, cache, etc? [23:54:00] Kardos: Sometimes you need to give the apache user extra permissions for the image directory to make uploads work [23:54:25] is there a guide that explains these things? it seems important to block the world from re-running mw-config [23:54:43] apache user still needs to have read/write access to cache in order to use it (off the top of my head I don't think using cache directory is enabled by default) [23:55:13] Kardos: Its not that important. The script will refuse to run if LocalSettings.php exists [23:55:32] (or more specificly it will ask for a secret code). [23:55:36] ahhh [23:56:09] okay [23:56:20] so basically, nothing to worry about [23:56:26] If you're security concious, its always a good idea to disable php in the images directory (We obviously do all sorts of checks to stop people from uploading scripts, but never hurts to be extra paranoid) [23:57:19] ah the mw-config told me about that on the first page; did that [23:57:35] so it's not a problem that users can browse to /mediawiki/extensions and see the list? [23:57:53] Shouldn't be. [23:57:53] or /mediawiki/skins [23:57:54] Kardos, in principle you can do as WMF does: put everything in web-inaccessible place, symlink stuff that needs to be visible [23:58:17] MaxSem, OK. So which things need to be visible and which don't? [23:58:26] Keep in mind some extensions have images and things that need to be web accessible [23:58:27] * Kardos doesnt know if api.php needs to be visible [23:58:36] It does if you want to use the api [23:59:17] so by default everything that comes in the .tgz should be web accessible? [23:59:51] everyting .php in root directory except for LocalSettings, images, skins, resources, extensions