[00:22:14] 03(mod) Inappropriate things being done in Title::invalidateCache() - 10https://bugzilla.wikimedia.org/46816 (10Tim Starling) [00:22:44] sounds kinky [00:24:18] 03(mod) Gerrit does no longer inform change reviewers via email about new patch sets - 10https://bugzilla.wikimedia.org/48115 +comment (10Matthew Flaschen) [00:33:56] can anyone help me with this JS please - http://dpaste.de/2O2Qv/#L1,7,23 - i would like to have it dump a link of the newly created page - so each time a new page is created, the link to that page is put in the "next available line" on the parent page. [00:35:52] 03(mod) Autocomment formatter section link should be wider than just the one arrow character - 10https://bugzilla.wikimedia.org/47342 (10jidanni) [00:46:19] 03(NEW) Add Portal and Project namespaces to cr.wp - 10https://bugzilla.wikimedia.org/48116 normal; Wikimedia: General/Unknown; () [00:46:34] 03(mod) Add Portal and Project namespaces to cr.wp - 10https://bugzilla.wikimedia.org/48116 normal->15enhancement (10Amqui) [01:07:25] 03(mod) UploadWizard doesn't transfer Flickr photos - 10https://bugzilla.wikimedia.org/47771 minor->normal; +comment (10Robert Myers) [01:11:45] 03(mod) Inappropriate things being done in Title::invalidateCache() - 10https://bugzilla.wikimedia.org/46816 +comment (10gerritadmin) [01:21:13] 03(mod) Invalid flickr URLs pointing to "flickr.com/photos/null" - 10https://bugzilla.wikimedia.org/46559 +comment (10Robert Myers) [01:31:08] 03(mod) Special:EditForm by itself shows PHP warning instead of standard error message - 10https://bugzilla.wikimedia.org/47606 +comment (10gerritadmin) [01:31:35] *30378819 FastCGI sent in stderr: "PHP message: PHP Fatal error: Call to undefined method MWNamespace::getNamespaceContentModel() in /var/www/w/extensions/Scribunto/engines/LuaCommon/SiteLibrary.php on line 43" [01:31:41] while trying to save a lua module [01:31:44] what could it be? [01:36:36] Gika: what version of MediaWiki are you running? (Special:Version) [01:39:53] ori-l: 1.20.5 (375d04b) [01:40:50] ori-l: and Scribunto is checked out @ REL1_20 [01:41:40] That's strange, because it seems MWNamespace::getNamespaceContentModel was added in 1.21 [01:42:10] * ori-l takes a closer look [01:42:52] http://wiki.pokemoncentral.it/Speciale:Versione here's the version page [01:47:20] Gika: it looks like you ran into a legitimate bug. I'm looking to see if there's a simple workaround. [01:48:25] ori-l: okay, thanks :) [01:49:05] yes, it's easy to work around. Let me file a bug and then follow up with a patch, so it's properly tracked [01:50:40] btw, what's the latest version of luajit supported by mediawiki? [01:50:56] (and does it really improve performance that much?) [01:56:28] 03(NEW) Fatal error: Call to undefined method MWNamespace::getNamespaceContentModel() - 10https://bugzilla.wikimedia.org/48117 normal; MediaWiki extensions: Scribunto; () [01:58:36] Say I have a bundle of templates I want every wiki I go to to have. Other than adding them manually, what means do I have of adding them? [02:02:29] Havvy: Special:Import [02:04:49] Are there any tools for building the XML files without actually having the templates on any specific wiki? [02:05:02] Or is the XML format simple? [02:05:29] Xml format is not so simple [02:06:07] What's wrong with putting them on a wiki and special:export [02:07:04] By not so simple I mean I wouldn't want to do it by hand. But if you really wanted to and had an example file handy it wouldn't be that hard [02:08:10] Esp. Because the xml is mostly metadata (authors, things like cats arent even in xml) rest of it is just a blob of wikitext [02:08:15] Because I don't want to disrupt a wiki with adding stuff. [02:08:31] Since my templates are strewn across four wikis. [02:09:45] Havvy: you could interwiki transclude from a common wiki [02:12:04] Oh geeze. I have no clue how to read an XML Schema. :/ [02:18:47] 03(mod) Add option for all visitors to toggle Math modes - 10https://bugzilla.wikimedia.org/48036 +comment (10peter.krautzberger) [02:21:04] 03(mod) Not receiving notifications from template - 10https://bugzilla.wikimedia.org/48113 +comment (10rkaldari) [02:23:16] Havvy: join the club, they are complicated. You are probably much better off just basing something off an example file [02:24:06] Sal9000: interwiki transclusion is a bit flaky, especially for complex templates with parameters [02:25:24] 03(mod) Not receiving notifications from template - 10https://bugzilla.wikimedia.org/48113 +comment (10Ryan Kaldari) [02:25:49] 03(mod) Fatal error: Call to undefined method MWNamespace::getNamespaceContentModel() - 10https://bugzilla.wikimedia.org/48117 +comment (10gerritadmin) [02:30:17] Gika: if you want to track this, the bug I filed is https://bugzilla.wikimedia.org/48117 and the patch to fix it is https://gerrit.wikimedia.org/r/#/c/62409/ . It just needs to get reviewed / merged, which will probably happen pretty quickly since it's trivial. [02:31:40] ori-l: thanks, this means that when it gets merged i can just git pull, right? [02:32:01] if you're working against the REL1_20 branch, yes. [02:32:11] yep [02:32:18] thanks again [02:32:30] np, sorry about the trouble :) [02:32:40] does anyone here know how to use git? [02:33:11] did I screw something up? [02:33:24] no, I have a question [02:33:47] say if I have a source tree, and 1000 script files have had the execute bit stripped off them due to an accident with a NAS [02:34:05] git reset --hard, git checkout thinks the files are unchanged and refuses to restore the execute bits [02:34:24] but git pull says I cannot update since I have 1000 mode changes uncommitted [02:34:39] what to do? [02:34:41] TimStarling: try git checkout [02:34:50] I tried git status | grep modified | awk '{print $3}' | xargs -l10 git checkout [02:34:58] it did nothing, apparently [02:35:41] maybe I will just do git status | grep modified | awk '{print $3}' | xargs -l1 chmod a+x [02:35:48] TimStarling: git checkout -- . [02:36:02] TimStarling: "git config core.filemode true" ? [02:36:03] restores the entire tree from the current folder, inclusive [02:36:14] mmm, thanks SAL9000 [02:36:19] No problem ;) [02:37:21] 03(mod) Not receiving notifications from template - 10https://bugzilla.wikimedia.org/48113 (10mj94wiki) [02:38:41] didn't work though, neither did Ori's idea :) [02:38:50] I just did the xargs chmod a+x thing [02:39:07] TimStarling: chmod has a -R option [02:39:35] yeah, I used it originally [02:39:58] basically I moved some source trees to my NAS, then changed some permissions via the web interface [02:40:21] which set the execute bits on every file in every source tree [02:40:47] turns out the web interface is written in PHP, so I looked at the source for what I had just done [02:40:57] sure enough, it was basically chmod -R a+x [02:41:29] so I did "chmod -R a-x" to partially recover it, since I figured more files are meant to have no execute bit than are meant to have it [02:42:50] this was a few months ago [02:43:18] TimStarling: find -type d -print0 | xargs -0 chmod a+x [02:43:23] all folders are meant to have +x [02:43:43] yeah, that's easy enough [02:43:58] 03(mod) Math extension doesn't support many languages including Hindi, Arabic, Malayalam, Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10me.praveen) [02:44:03] it's the script files that are unrecoverable [02:46:10] oh charming [02:46:30] git pull died and left the working copy totally screwed up [02:46:46] how about rm -rf * && git checkout [02:50:49] 03(mod) Tamil Wiki projects (tracking) - 10https://bugzilla.wikimedia.org/32578 (10praveenp) [02:50:51] 03(mod) Math extension doesn't support many languages including Hindi, Arabic, Malayalam, Tamil - 10https://bugzilla.wikimedia.org/48032 (10praveenp) [02:51:32] 03(mod) VisualEditor: [Regression] Link insertion annotation makes it difficult to add plain text after a link - 10https://bugzilla.wikimedia.org/48114 summary; +comment (10James Forrester) [02:54:56] 03(mod) Hindi Wikiprojects (tracking) - 10https://bugzilla.wikimedia.org/41348 (10praveenp) [02:54:57] 03(mod) Math extension doesn't support many languages including Hindi, Arabic, Malayalam, Tamil - 10https://bugzilla.wikimedia.org/48032 (10praveenp) [03:13:17] 03(NEW) Math extension has problems with Arabic - 10https://bugzilla.wikimedia.org/48118 normal; MediaWiki extensions: Math; () [03:14:33] 03(mod) Math extension has problems with Arabic - 10https://bugzilla.wikimedia.org/48118 (10Matthew Flaschen) [03:14:34] 03(mod) Math extension doesn't support many languages including Hindi, Arabic, Malayalam, Tamil - 10https://bugzilla.wikimedia.org/48032 (10Matthew Flaschen) [03:18:17] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 summary; +comment (10Matthew Flaschen) [03:24:30] Hello [03:24:41] I have no edit, preview or save pages [03:24:45] just isntalled [03:24:47] wat is wrong? [03:26:17] help me? [03:27:14] lolbat: what happens when you try to edit? [03:32:07] lolbat: I recall this happening to me, and as much googling as i could do, realised there where a number issues that could cause that to happen. Did you change your skin? [03:33:10] lolbat: also check your skins folder still has the common folder [03:35:58] TimStarling: firefox cant load the site [03:36:04] didnt change my skin [03:36:32] does firefox give an error message? [03:36:38] connection aborted or somesuch [03:36:48] norwegian hard to translate [03:37:10] what sort of server is it? [03:37:27] lolbat: can you access the wiki at all? or is it just firefox that cant load the site? [03:38:10] I can access all except submit, preview and see changes [03:38:21] http://lolcat.no/mediawiki/ [03:38:25] if it helps [03:39:02] yes, that helps [03:39:41] is it a shared server, or is it your own server? [03:41:29] vps [03:42:33] TimStarling: So neither? Not shared hosting, not on my physical hardware [03:42:44] so you have root access [03:43:32] 03(NEW) Hook into history page - 10https://bugzilla.wikimedia.org/48119 enhancement; MediaWiki extensions: Nonlinear; () [03:43:47] if you log in with ssh, then type "tail /var/log/apache2/error.log" [03:44:26] are there some log entries saying that there were segmentation faults (signal 11)? [03:45:17] TimStarling: yes, about 14 [03:46:23] well, that is your problem, when you try to preview or save, PHP is segfaulting [03:46:39] have you installed any unusual PHP extensions? [03:46:59] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10me.praveen) [03:47:23] TimStarling: I restarted apache, now it works [03:47:42] have no extensions [03:47:48] just did apt-get install mediawiki [03:49:53] actually [03:49:56] we've had that problem too [03:49:59] we found bugs.debian.org/cgi-bin/bugreport.cgi?bug=694473 [03:50:04] but haven't been able to test it [03:50:28] you think it is debian's fault? [03:50:49] no, it was php's [03:50:57] it was just reported to debian [03:51:51] 03(NEW) Merge workflow - 10https://bugzilla.wikimedia.org/48120 enhancement; MediaWiki extensions: Nonlinear; () [03:51:52] that doesn't sound like a great idea [03:52:39] the comments there seem to confirm that it is not a great idea [03:54:02] If I have a namespace X: on a wiki, I export some pages from that wiki, and then import them, does it recreate the X: namespace? [03:54:03] er, what's not a good idea? [03:54:46] reporting bugs to distros when it is the fault of upstream [03:55:17] the package maintainers generally don't know anything [03:55:37] and nobody bothers to let the actual developer responsible know about the problem [03:55:44] yeah [03:57:21] 03(mod) VisualEditor: Link inspector crashes when trying to annotate first character in the document - 10https://bugzilla.wikimedia.org/47623 +comment (10Moriel Schottlender) [03:59:51] 03(mod) Special:EditForm by itself shows PHP warning instead of standard error message - 10https://bugzilla.wikimedia.org/47606 +comment (10Yaron Koren) [04:01:33] 03(NEW) Special:Synchronize page - 10https://bugzilla.wikimedia.org/48121 enhancement; MediaWiki extensions: Nonlinear; () [04:01:59] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10mflaschen) [04:04:22] can anyone help me with this JS please - http://dpaste.de/2O2Qv/#L1,7,23 - i would like to have it dump a link of the newly created page - so each time a new page is created, the link to that page is put in the "next available line" on the parent page. [04:13:26] 03(NEW) Hook below doEditContent - 10https://bugzilla.wikimedia.org/48122 blocker; MediaWiki extensions: Nonlinear; () [04:15:06] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10me.praveen) [04:28:21] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10mflaschen) [04:38:38] 03(mod) Pronunciation recording tool - 10https://bugzilla.wikimedia.org/46610 +comment (10rsurratt) [04:51:15] so it turns out that the reason all those attempted fixes weren't working is because the CIFS mount is ignoring execute bits when they are specified as a parameter to open() [04:51:37] but when you ask for execute permission with chmod(), that works [04:52:03] hah [04:52:31] that's about eight levels further down than where you'd expect the problem to be [04:52:47] well, maybe two [04:52:53] but eight sounds nice and hyperbolic [04:56:40] oh [04:56:45] I should tell Emufarmers that. [04:58:11] TimStarling: er, were you talking about the php thing, or the git thing from earlier? [04:58:44] a PHP thing broke my file permissions initially [04:58:55] but CIFS is continuing to break them [05:17:35] this explains it: http://jurjenbokma.com/ApprenticesNotes/map_archive_bit_on_samba.html [05:24:47] can anyone help me with a JS? [05:35:24] mRNewBii: I can try. [05:36:05] prageck: ok thanks - here it is so far: http://dpaste.de/2O2Qv/#L1,7,23 [05:36:54] ori-l helped me with this on Friday - which i am very grateful for [05:37:23] So what is the problem that you are facing? [05:37:24] though i need it to do one more thing - leave behind a link to the newly created page (or sub page) [05:38:34] whats happening now is the creating of new pages works great - but there is no link to the new page created from the main page [05:40:27] so if possible, when ever you click on "create new page" or "create sub page" the link to the new page is left behind on the parent page [05:42:13] where in the parent page is the link to new page supposed to be appended? [05:42:52] at the bottom of what ever is on that page [05:47:20] $subPage = $( ' + page + '' ); [05:47:31] this will give you the link to the new page [05:47:38] append it to the target element [05:47:55] like this $( 'target-element' ).append( $subPage ); [05:51:44] I missed a quote in first line it should be $subPage = $( '' + page + '' ); [05:55:08] prageck: sorry, not to sure what you mean by append it to the target element [05:56:52] For example in your code you are appending the create page link to .vectorTabs ul [05:57:07] here $( '.vectorTabs ul' ).first().append( $tab ); [05:58:19] similarly you'll have to append the subpage link to the element where you are supposed to append it [05:58:37] ahh ok - ill give it a try now [05:59:12] mRNewBii: Though I'm not very much familiar with the mediawiki codebase, I think it will work. But it will always be a good idea to consult a more experienced person :) [07:02:34] hey [07:03:35] 03(NEW) wikibase-cantundo does not pass in parameters for error messages - 10https://bugzilla.wikimedia.org/48123 normal; MediaWiki extensions: WikidataRepo; () [07:03:54] I get "Language::transformUsingPairFile: The transformation file normalize-ar.ser is missing" when I set $wgLanguageCode="ar", but not when it is "en" [07:04:05] where can this problem be from? [07:15:24] hi [07:16:52] i have a problem with mediawiki 1.20.x [07:18:23] i can't upload file, i have error: could not create a directory mwstore://local-backend/local-public/f/fe [07:18:34] it's not a permission problem [07:19:10] because if i create a new database, and i switch my conf on this new database, i can upload [07:21:28] i don't find the problem in the database [07:31:18] 03(mod) Pronunciation recording tool - 10https://bugzilla.wikimedia.org/46610 +comment (10rahul14m93) [07:36:43] 03(NEW) Notifications: Mark messages as read after any visit to the talk page - 10https://bugzilla.wikimedia.org/48124 normal; MediaWiki extensions: Echo; () [07:39:11] 03(mod) Notifications: Mark messages as read after any visit to the talk page - 10https://bugzilla.wikimedia.org/48124 normal->major (10Fabrice Florin) [08:04:22] helo [08:16:36] 03(mod) MediaWiki needs more easter eggs - 10https://bugzilla.wikimedia.org/20281 +comment (10Tim Starling) [08:22:42] TimStarling: there is someone needing help with E:Score in -tech [08:23:06] someone who uses caps a lot [08:31:25] 03(mod) Cannot disable signature pref ("nickname" section) - 10https://bugzilla.wikimedia.org/33944 summary (10Andre Klapper) [08:45:14] 03(mod) make puppet-lint/puppet-pep8 ignore "W191 indentation contains tabs" - 10https://bugzilla.wikimedia.org/48020 +comment (10hashar) [08:50:57] 03(mod) Time separator for Slovene should use period/dot instead of colon - 10https://bugzilla.wikimedia.org/40942 summary; +comment (10Andre Klapper) [08:50:57] 03(mod) Jenkins: Check for server-side php errors during web request - 10https://bugzilla.wikimedia.org/48002 +comment (10hashar) [08:52:45] 03(NEW) MediaWiki:Mobile-frontend-photo-ownership needs GENDER support - 10https://bugzilla.wikimedia.org/48125 normal; MediaWiki extensions: MobileFrontend; () [08:52:45] 03(mod) GENDER (tracking) - 10https://bugzilla.wikimedia.org/30443 (10Nemo) [08:52:46] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Nemo) [08:54:22] 03(mod) GSoC 2013 Curriculum Wiki Proposal - 10https://bugzilla.wikimedia.org/48053 +comment (10Andre Klapper) [08:57:13] 03(mod) Uncaught TypeErrors in fa.wikipedia after deploying second phase of wikibase - 10https://bugzilla.wikimedia.org/48038 +comment (10Andre Klapper) [08:59:13] 03(mod) Option to sort search results by size and date in advanced - 10https://bugzilla.wikimedia.org/21139 +comment (10aklapper) [09:02:20] 03(mod) Bad article layout on it.wikivoyage (due to hidden categories?) - 10https://bugzilla.wikimedia.org/48019 +comment (10aklapper) [09:04:08] 03(mod) UploadWizard does not support responsive web design - 10https://bugzilla.wikimedia.org/47917 minor->15enhancement (10Andre Klapper) [09:04:08] 03(mod) UploadWizard: Layout should not overflow on 800px wide window - 10https://bugzilla.wikimedia.org/27995 (10Andre Klapper) [09:04:19] 03(mod) Special:Search pagination controls should be duplicated at top - 10https://bugzilla.wikimedia.org/36923 +comment (10hashar) [09:05:02] 03(mod) API not available for wikimania2014 wiki - 10https://bugzilla.wikimedia.org/48066 (10Andre Klapper) [09:08:08] 03(mod) Page creator can see the deleted page - 10https://bugzilla.wikimedia.org/48076 +comment (10Andre Klapper) [09:14:11] 03(mod) Allow multiple bug entries at once - 10https://bugzilla.wikimedia.org/10929 +comment (10aklapper) [09:14:49] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 +patch-in-gerrit (10Andre Klapper) [09:16:00] 03(mod) Tracking: integration with Extension:Nonlinear - 10https://bugzilla.wikimedia.org/48095 normal->15enhancement; +comment (10Andre Klapper) [09:17:18] 03(mod) Page creator should be able to access the deleted page - 10https://bugzilla.wikimedia.org/48076 summary (10gqqnbig) [09:17:51] 03(mod) Page creator should be able to access the deleted page - 10https://bugzilla.wikimedia.org/48076 +comment (10gqqnb2005) [09:21:31] 03(mod) Score doesn't output image size (width/height) - 10https://bugzilla.wikimedia.org/48088 (10Andre Klapper) [09:21:46] 03(mod) Score fails to render if $wgUseImageMagick is off (no trimming) - 10https://bugzilla.wikimedia.org/48082 (10Andre Klapper) [09:21:57] 03(mod) crackling at start of OGG renditions of MIDI files - 10https://bugzilla.wikimedia.org/48029 normal->major (10Andre Klapper) [09:22:33] 03(mod) MediaWiki needs more easter eggs - 10https://bugzilla.wikimedia.org/20281 +comment (10Platonides) [09:22:34] 03(mod) Compilation of tests fail due to missing linker flag for cxxtools - 10https://bugzilla.wikimedia.org/48106 +patch +patch-need-review (10Andre Klapper) [09:24:40] 03(mod) Page creator should be able to access the deleted page - 10https://bugzilla.wikimedia.org/48076 +comment (10liangent) [09:27:04] 03(mod) Page creator should be able to access the deleted page - 10https://bugzilla.wikimedia.org/48076 (10Liangent) [09:27:42] 03(mod) Math extension has problems with Arabic - 10https://bugzilla.wikimedia.org/48118 +i18n (10Andre Klapper) [09:28:09] 03(NEW) MediaWiki:Donate interface-submit-my-secure-donation needs documentation - 10https://bugzilla.wikimedia.org/48126 normal; MediaWiki extensions: DonationInterface; () [09:28:10] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Nemo) [09:28:23] 03(mod) MediaWiki:Donate interface-submit-my-secure-donation needs documentation - 10https://bugzilla.wikimedia.org/48126 +i18n (10Nemo) [09:31:12] 03(NEW) beta: text squid conf should be in puppet - 10https://bugzilla.wikimedia.org/48127 normal; Wikimedia Labs: deployment-prep (beta); () [09:34:53] 03(mod) Edittools buttons broken in liquid threads reply and new topic - 10https://bugzilla.wikimedia.org/41220 (10Nemo) [09:40:35] 03(mod) Backport "Pending changes" messages from WP? - 10https://bugzilla.wikimedia.org/48094 +comment (10aklapper) [09:40:45] 03(mod) Should expose extension version data for Special:Version - 10https://bugzilla.wikimedia.org/48093 normal->15enhancement (10Andre Klapper) [09:41:36] 03(mod) Exclude from print by category does not work any more - 10https://bugzilla.wikimedia.org/48052 (10Andre Klapper) [09:44:50] 03(mod) MediaWiki needs more easter eggs - 10https://bugzilla.wikimedia.org/20281 (10Andre Klapper) [09:46:46] 03(NEW) [selenium] tests for Diff/History-View - 10https://bugzilla.wikimedia.org/48128 normal; MediaWiki extensions: WikidataRepo; () [09:47:09] 03(NEW) IPv6 range blocks are not listed when using bkip parameter in API - 10https://bugzilla.wikimedia.org/48129 normal; MediaWiki: API; () [09:47:26] 03(mod) GET parameters for pages in all namespaces supported by basic parser expansion - 10https://bugzilla.wikimedia.org/48092 minor->15enhancement (10Andre Klapper) [09:47:50] 03(NEW) [selenium] tests for entities without labels - 10https://bugzilla.wikimedia.org/48130 normal; MediaWiki extensions: WikidataRepo; () [09:48:29] 03(mod) Installer sets $wgLogo default path incorrectly - 10https://bugzilla.wikimedia.org/48084 (10Andre Klapper) [09:48:57] 03(mod) Installer environmental checks don't update when reloading page - 10https://bugzilla.wikimedia.org/48083 (10Andre Klapper) [09:51:20] 03(mod) Sync source and editor like TeXShop - 10https://bugzilla.wikimedia.org/48080 normal->15enhancement; +comment (10Andre Klapper) [09:51:54] 03(NEW) [selenium] tests for paging of entity-selector - 10https://bugzilla.wikimedia.org/48131 normal; MediaWiki extensions: WikidataRepo; () [09:53:36] 03(NEW) [selenium] tests for entity-selector as search box - 10https://bugzilla.wikimedia.org/48132 normal; MediaWiki extensions: WikidataRepo; () [09:55:09] 03(NEW) [InstantCommons] Some hotlinks of Commons files are not protocol-relative - 10https://bugzilla.wikimedia.org/48133 major; MediaWiki: File management; () [09:55:11] 03(mod) Secure Server (tracking) - 10https://bugzilla.wikimedia.org/27946 (10Nemo) [09:55:12] 03(mod) Bugs affecting translatewiki.net (errors from MediaWiki master) (tracking) - 10https://bugzilla.wikimedia.org/39480 (10Nemo) [09:55:31] 03(NEW) Dot Separator in Odia Wikipedia not working. - 10https://bugzilla.wikimedia.org/48134 normal; MediaWiki: Parser; () [09:55:36] 03(mod) [InstantCommons] Some hotlinks of Commons files are not protocol-relative - 10https://bugzilla.wikimedia.org/48133 (10Nemo) [09:55:40] 03(mod) Make $wgUseInstantCommons protocol relative - 10https://bugzilla.wikimedia.org/32219 (10Nemo) [09:55:45] 03(NEW) [selenium] tests for deleted item handling - 10https://bugzilla.wikimedia.org/48135 normal; MediaWiki extensions: WikidataRepo; () [09:57:16] 03(mod) Scrolling should not be needed to see whole ULS dialog - 10https://bugzilla.wikimedia.org/47821 +comment (10pginer) [10:03:25] 03(NEW) [selenium] tests for focus flow - 10https://bugzilla.wikimedia.org/48136 normal; MediaWiki extensions: WikidataRepo; () [10:03:38] 03(mod) EditEntity (API) refactoring - 10https://bugzilla.wikimedia.org/48137 (10abraham.taherivand) [10:04:26] 03(NEW) [selenium] tests for claim edit-conflics - 10https://bugzilla.wikimedia.org/48138 normal; MediaWiki extensions: WikidataRepo; () [10:05:37] 03(NEW) [selenium] tests for in-other-languages widget - 10https://bugzilla.wikimedia.org/48139 normal; MediaWiki extensions: WikidataRepo; () [10:06:23] 03(mod) DispatchStats refactoring and API - 10https://bugzilla.wikimedia.org/48140 (10abraham.taherivand) [10:07:17] 03(mod) EditEntity (API) refactoring - 10https://bugzilla.wikimedia.org/48137 (10abraham.taherivand) [10:07:25] 03(mod) EditEntity (API) refactoring - 10https://bugzilla.wikimedia.org/48137 (10abraham.taherivand) [10:07:35] 03(mod) DispatchStats refactoring and API - 10https://bugzilla.wikimedia.org/48140 (10abraham.taherivand) [10:09:21] 03(mod) Allow querying of entity properties - 10https://bugzilla.wikimedia.org/45616 (10abraham.taherivand) [10:09:42] 03(NEW) Implement RDF mapping for Claims/Statements - 10https://bugzilla.wikimedia.org/48141 normal; MediaWiki extensions: WikidataRepo; () [10:10:16] 03(NEW) [selenium] use cucumber for tests - 10https://bugzilla.wikimedia.org/48142 normal; MediaWiki extensions: WikidataRepo; () [10:10:56] 03(mod) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 (10Daniel Kinzler) [10:10:58] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [10:11:01] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [10:11:03] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [10:11:11] 03(mod) RDF serializer for entities - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [10:11:13] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [10:11:46] 03(mod) RDF serializer for entities (baseline) - 10https://bugzilla.wikimedia.org/44578 summary (10Daniel Kinzler) [10:14:06] 03(NEW) Implement RDF mapping (tracking) - 10https://bugzilla.wikimedia.org/48143 normal; MediaWiki extensions: WikidataRepo; () [10:14:21] 03(NEW) [selenium] run tests on saucelabs - 10https://bugzilla.wikimedia.org/48144 normal; MediaWiki extensions: WikidataRepo; () [10:14:28] 03(mod) RDF serializer for entities (baseline) - 10https://bugzilla.wikimedia.org/44578 +comment (10daniel.kinzler) [10:17:08] 03(NEW) [selenium] run tests via jenkins on cloudbees - 10https://bugzilla.wikimedia.org/48146 normal; MediaWiki extensions: WikidataRepo; () [10:17:21] 03(mod) [Frontend] Time as a datatype - 10https://bugzilla.wikimedia.org/48145 (10abraham.taherivand) [10:17:22] 03(mod) Add a time datatype - 10https://bugzilla.wikimedia.org/44000 (10abraham.taherivand) [10:17:26] 03(mod) [selenium] run tests via jenkins on cloudbees - 10https://bugzilla.wikimedia.org/48146 (10tobias.gritschacher) [10:17:37] 03(mod) [selenium] run tests on saucelabs - 10https://bugzilla.wikimedia.org/48144 (10tobias.gritschacher) [10:17:50] 03(mod) [Frontend] Time as a datatype - 10https://bugzilla.wikimedia.org/48145 (10abraham.taherivand) [10:17:51] 03(mod) [selenium] use cucumber for tests - 10https://bugzilla.wikimedia.org/48142 (10tobias.gritschacher) [10:18:09] 03(mod) [selenium] tests for Diff/History-View - 10https://bugzilla.wikimedia.org/48128 (10tobias.gritschacher) [10:19:57] 03(NEW) [CI jenkins] get jenkins to run again - 10https://bugzilla.wikimedia.org/48147 normal; MediaWiki extensions: WikidataRepo; () [10:20:06] 03(mod) [CI jenkins] get jenkins to run again - 10https://bugzilla.wikimedia.org/48147 (10tobias.gritschacher) [10:20:40] 03(mod) EditEntity (API) refactoring - 10https://bugzilla.wikimedia.org/48137 +comment (10Daniel Kinzler) [10:21:47] 03(mod) DispatchStats refactoring and API - 10https://bugzilla.wikimedia.org/48140 +comment (10Daniel Kinzler) [10:25:55] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [10:25:57] 03(mod) Implement RDF mapping (tracking) - 10https://bugzilla.wikimedia.org/48143 (10Daniel Kinzler) [10:26:39] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [10:26:42] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [10:26:44] 03(mod) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 (10Daniel Kinzler) [10:26:45] 03(mod) Implement RDF mapping (tracking) - 10https://bugzilla.wikimedia.org/48143 (10Daniel Kinzler) [10:27:03] 03(mod) Language selector increases the height of the page unnecessarily - 10https://bugzilla.wikimedia.org/47822 +comment (10pginer) [10:27:46] 03(mod) Implement RDF mapping (tracking) - 10https://bugzilla.wikimedia.org/48143 (10Daniel Kinzler) [10:27:48] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [10:27:53] 03(mod) Script for creating RDF dumps of all entities - 10https://bugzilla.wikimedia.org/44580 (10Daniel Kinzler) [10:27:55] 03(mod) Implement RDF mapping for Claims/Statements - 10https://bugzilla.wikimedia.org/48141 (10Daniel Kinzler) [10:28:59] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [10:29:01] 03(mod) RDF serializer for entities (baseline) - 10https://bugzilla.wikimedia.org/44578 (10Daniel Kinzler) [10:29:40] 03(mod) Implement complete RDF mapping for entities (tracking) - 10https://bugzilla.wikimedia.org/48143 summary (10Daniel Kinzler) [10:30:18] 03(mod) Implement complete RDF mapping for entities (tracking) - 10https://bugzilla.wikimedia.org/48143 (10Daniel Kinzler) [10:30:20] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 (10Daniel Kinzler) [10:30:41] Hello - new to mediawiki and looking to setup for my company. I am noticing that MW has no structure when creating new pages etc - is there something i am missing or is this a manual process? [10:31:05] 03(mod) spec out linked data interface for wikidata ontology - 10https://bugzilla.wikimedia.org/44582 (10Daniel Kinzler) [10:31:08] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [10:31:56] i would like to be able to have had a create new page link and possibly have some sort of hierarchy structure to the content entered [10:32:23] is this easily done? [10:40:52] 03(mod) internal_api_error when running bot on en.wikipedia.beta.wmflabs.org - 10https://bugzilla.wikimedia.org/47808 +comment (10hashar) [10:43:58] 03(mod) Page creator should be able to access the deleted page - 10https://bugzilla.wikimedia.org/48076 +comment (10liangent) [10:46:20] 03(mod) Gerrit does no longer inform change reviewers via email about new patch sets - 10https://bugzilla.wikimedia.org/48115 +comment (10gerritadmin) [10:47:51] 03(NEW) VisualEditor: Serve SVGs to any browser which supports it - 10https://bugzilla.wikimedia.org/48148 normal; VisualEditor: General; () [10:47:53] 03(mod) Gerrit does no longer inform change reviewers via email about new patch sets - 10https://bugzilla.wikimedia.org/48115 (10christian) [10:50:46] 03(mod) VisualEditor: Serve SVGs to any browser which supports it - 10https://bugzilla.wikimedia.org/48148 (10Ed Sanders) [10:51:08] https://en.wikinews.org/w/index.php?action=edit&preload=Template:New_page&editintro=Template:New_article_intro&summary=&nosummary=&prefix=&minor=&title=iNeedHelp+asks+for+help+on+IRC&create=Create+page [10:52:13] 03(mod) [TUX] RTL proofread action icons are needed - 10https://bugzilla.wikimedia.org/47257 +comment (10gerritadmin) [10:52:48] iNeedHelp: so, what you need to do is to create a URL with &preload and load an existing page [10:52:52] like they do on Wikinews [10:53:21] 03(NEW) Persistent "Unable to write to directory" Installer error with SQLite backend when SELinux is enabled - 10https://bugzilla.wikimedia.org/48149 enhancement; MediaWiki: Installer; () [10:56:41] 03(mod) Persistent "Unable to write to directory" Installer error with SQLite backend when SELinux is enabled - 10https://bugzilla.wikimedia.org/48149 +comment (10Andre Klapper) [11:01:11] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10physik) [11:03:19] odder: sort of - i am finding to be a very flat structure, though i do like the wikinews front page with "latest headlines" that would come in handy actually (how is that done?) Though my main aim here is to give it to the team (not very tech savy) and get them to use it. Though we require structuring of the content. I am not finding an obvoius way to achieve this [11:04:13] example: page 1 is created from the main page, though no link is auto generated (i am guessing there must be a setting somewhere i missed? [11:04:49] 03(mod) chown/chmod instructions for sqlite can point to non-existing parent folder and hence fail - 10https://bugzilla.wikimedia.org/24771 summary; +comment (10Andre Klapper) [11:05:46] example 2: a sub page of page one is created, though it appears it is a very manual process, e.g. [[page1/subpage|subpage]] [11:06:48] is there a plug-in i can install to automate this? [11:08:05] could someone explain to me why mediawiki-1.19.6.tar.gz was rerolled? I can't find any information on the mailing lists [11:08:43] 03(mod) Dumps should be incremental - 10https://bugzilla.wikimedia.org/28956 +comment (10ariel) [11:09:36] klaas: security issues... chris did email iirc [11:10:52] no, the file was changed after the first release again, I don't mean the release itself [11:13:00] originally mediawiki-1.19.6.tar.gz size was 18700189, now its 18550832 [11:13:47] 03(mod) 0 for the SQLite database name (as in 0.sqlite) breaks installation without warnings - 10https://bugzilla.wikimedia.org/40966 normal->major; summary; +comment (10Andre Klapper) [11:15:19] klaas: i'm just guessing, but a sane explanation would be l10n updates [11:15:46] (that is, assuming something changed inside) [11:15:48] or maybe you somehow looked at the wrong file :) [11:18:05] @seen ^demon [11:18:05] MatmaRex: Last time I saw ^demon they were quitting the network with reason: Remote host closed the connection N/A at 4/29/2013 10:38:08 PM (6.12:39:56.8199730 ago) [11:18:44] MatmaRex the contents of both files look the same -- I used diff -r to compare the extracted data [11:19:26] and its not me, I just noticed it because freebsd ports check size/checksums [11:19:53] klaas: i have no idea, then. hexmode or csteipp might know something, they're managing the releases afaik [11:20:55] 03(mod) "LocalSettings.php" is inside a plain-text wrapper - 10https://bugzilla.wikimedia.org/44475 +comment (10aklapper) [11:43:36] 03(mod) UploadWizard broken in Opera 12.15 - 10https://bugzilla.wikimedia.org/48091 (10philipp.schoeneiche) [11:53:47] 03(NEW) Wrong text when a watched site is deleted (german) - 10https://bugzilla.wikimedia.org/48150 normal; MediaWiki: Internationalization; () [11:54:25] 03(mod) [selenium] tests for claim edit-conflics - 10https://bugzilla.wikimedia.org/48138 (10tobias.gritschacher) [11:55:37] 03(mod) Wrong text when a watched site is deleted (german) - 10https://bugzilla.wikimedia.org/48150 +comment (10mirco.hansen) [12:17:14] 03(mod) VisualEditor: Vector drop down menu hidden behind toolbar - 10https://bugzilla.wikimedia.org/48078 +comment (10erwin) [12:29:37] 03(mod) Wrong text when a watched site is deleted (german) - 10https://bugzilla.wikimedia.org/48150 +comment (10Nemo) [12:29:43] 03(mod) Email notification mistakes log action for new page creation - 10https://bugzilla.wikimedia.org/14901 +comment (10Nemo) [12:49:28] how can I do that {{/Page}} trick [12:49:43] on custom mw it doesn't work [12:49:57] it tries to include Template:/Page [12:50:17] petan: it should just work [12:50:26] petan: maybe you're trying it in a namespace with subpages disabled? [12:50:28] (wild guess) [12:50:30] http://pidgeonclient.org/wiki/Changelog [12:50:51] or maybe you're on some horribly outdated version [12:50:52] aha [12:50:59] well, I am on git HEAD [12:51:06] that is rather horribly new version :P [12:51:18] haha, okay [12:51:21] !subpages [12:51:22] By default some namespaces have subpages enabled and others don't. You can enable or disable them using $wgNamespacesWithSubpages in LocalSettings.php. [12:51:42] OMG who decided to wrap links in <> [12:52:33] i think whoever invented mailing lists a couple dozen years ago [12:52:58] but yeah, in this case we could drop the <> [12:53:07] !subpages del [12:53:08] Successfully removed subpages [12:53:24] !subpages is By default some namespaces have subpages enabled and others don't. You can enable or disable them using $wgNamespacesWithSubpages in LocalSettings.php. http://www.mediawiki.org/wiki/Manual:$wgNamespacesWithSubpages [12:53:24] Key was added [12:53:37] and the %24, too. [12:55:48] 03(NEW) Search is not cleared after language selection - 10https://bugzilla.wikimedia.org/48151 normal; MediaWiki extensions: UniversalLanguageSelector; () [12:56:57] 03(mod) VisualEditor: Vector drop down menu hidden behind toolbar - 10https://bugzilla.wikimedia.org/48078 +comment (10aklapper) [13:06:46] 03(NEW) need exception or how to avoid wikidata changes in filter's abuse log - 10https://bugzilla.wikimedia.org/48152 normal; MediaWiki extensions: AbuseFilter; () [13:11:12] 03(mod) Time separator for Slovene should use period/dot instead of colon - 10https://bugzilla.wikimedia.org/40942 +comment (10federicoleva) [13:11:40] 03(mod) need exception or how to avoid wikidata changes in filter's abuse log - 10https://bugzilla.wikimedia.org/48152 +comment (10Mahitgar) [13:11:42] 03(mod) Have filter option to view wikidata changes only - 10https://bugzilla.wikimedia.org/45853 (10Mahitgar) [13:16:26] 03(mod) Fatal error: Call to undefined method MWNamespace::getNamespaceContentModel() - 10https://bugzilla.wikimedia.org/48117 +patch-in-gerrit; +comment (10Brad Jorsch) [13:22:05] 03(mod) Articles I edit do not add to my watchlist - 10https://bugzilla.wikimedia.org/41573 +comment (10gerritadmin) [13:22:21] 03(NEW) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 normal; MediaWiki extensions: MobileFrontend; () [13:22:29] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 (10Jon) [13:23:04] 03(mod) Articles I edit do not add to my watchlist - 10https://bugzilla.wikimedia.org/41573 (10tobias.gritschacher) [13:29:29] 03(NEW) Special:Translate looks horrible without javascript - 10https://bugzilla.wikimedia.org/48154 normal; MediaWiki extensions: Translate; () [13:33:01] 03(mod) Special:Translate requires JavaScript to be enabled - 10https://bugzilla.wikimedia.org/48154 summary (10Nemo) [13:33:26] 03(NEW) Special:MainPage looks horrible and unusable without javascript - 10https://bugzilla.wikimedia.org/48155 normal; MediaWiki extensions: Translate; () [13:40:13] 03(mod) Cross-wiki watchlists - 10https://bugzilla.wikimedia.org/3525 +comment (10Guillaume Paumier) [13:40:28] vvv_: ^ [13:41:42] 03(NEW) ext.uls.interface needs more structure - 10https://bugzilla.wikimedia.org/48156 normal; MediaWiki extensions: UniversalLanguageSelector; () [13:46:25] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10Bartosz Dziewoński) [13:48:50] Krinkle|detached: hello [13:55:40] !seen sumanah [13:55:41] ---SEEN--- ashley, sumanah parted #mediawiki, 1hr 1min 36secs ago. (Mon May 06 08:53:59 2013 EST) [13:55:49] d'oh! [13:55:53] 03(mod) Word count is wrong, does not recognize non-ASCII characters - 10https://bugzilla.wikimedia.org/47733 +comment (10gerritadmin) [13:57:24] 03(NEW) UW should use one progress bar only when uploading multiple files - 10https://bugzilla.wikimedia.org/48157 enhancement; MediaWiki extensions: UploadWizard; () [13:58:13] 03(mod) UW should use one progress bar only when uploading multiple files - 10https://bugzilla.wikimedia.org/48157 (10Tomasz W. Kozlowski) [13:58:14] 03(mod) Wiki Loves Monuments 2013 (tracking) - 10https://bugzilla.wikimedia.org/42164 (10Tomasz W. Kozlowski) [13:58:51] huh? now we have two stalk bots? [13:58:56] @seen MatmaRex [13:58:56] MatmaRex: are you really looking for yourself? [13:58:59] !seen MatmaRex [13:59:00] ---SEEN--- MatmaRex, you are here, despite your belief that you are not. [13:59:20] Hah, and they're both sassy [14:00:58] 03(mod) Word count is wrong, does not recognize non-ASCII characters - 10https://bugzilla.wikimedia.org/47733 +comment (10mmullie) [14:02:21] 03(mod) Dot Separator in Odia Wikipedia not working. - 10https://bugzilla.wikimedia.org/48134 +comment (10Andre Klapper) [14:03:05] * ^demon wonders if there's a way to opt out of being stalked. [14:03:54] MatmaRex: I assume that Kanegasi runs a seen script, that's all [14:04:47] 03(mod) UploadWizard broken in Opera 12.15 - 10https://bugzilla.wikimedia.org/48091 (10Andre Klapper) [14:05:29] 03(NEW) Can't upload mwstore://local-backend/local-public - 10https://bugzilla.wikimedia.org/48158 normal; MediaWiki: Database; () [14:05:35] 03(mod) "Activity" on a post should be called "log" - 10https://bugzilla.wikimedia.org/44371 +comment (10Matthias Mullie) [14:06:05] hey, ^demon's here. [14:06:14] * ^demon hides [14:06:28] ^demon: can you poke https://gerrit.wikimedia.org/r/#/c/62430/ again? i submitted a new PS just in time to prevent it from being merged [14:07:25] <^demon> +2'd. [14:07:25] somehow the only changes of mine that are +2'd quickly are ones i still need to improve :P [14:07:47] <^demon> Thanks for catching that btw. [14:07:51] thanks [14:08:00] well, i just love removing code. [14:08:13] i think i currently have removed more lines of mediawiki/core than i've added. [14:09:06] 03(mod) Firefox 3.5: Form Submission Error for Drew Barrymore and Golden-Crowned Sparrow pages - 10https://bugzilla.wikimedia.org/37493 +comment (10Matthias Mullie) [14:13:42] 03(mod) need exception or how to avoid wikidata changes in filter's abuse log - 10https://bugzilla.wikimedia.org/48152 +comment (10aklapper) [14:16:58] 03(mod) SpecialPreferences:

should not be inside - 10https://bugzilla.wikimedia.org/33438 +comment (10fomafix) [14:26:39] 03(mod) Ugly bolding of entire section when one "other filter" is selected - 10https://bugzilla.wikimedia.org/37917 +comment (10gerritadmin) [14:27:17] 03(mod) Ugly bolding of entire section when one "other filter" is selected - 10https://bugzilla.wikimedia.org/37917 +patch-in-gerrit; +comment (10Matthias Mullie) [14:27:37] 03(mod) Word count is wrong, does not recognize non-ASCII characters - 10https://bugzilla.wikimedia.org/47733 +patch-in-gerrit (10Matthias Mullie) [14:29:28] 03(mod) Edittools buttons broken in liquid threads reply and new topic - 10https://bugzilla.wikimedia.org/41220 (10Alex Monk (Krenair)) [14:29:29] 03(mod) Edittools buttons broken in liquid threads reply and new topic - 10https://bugzilla.wikimedia.org/41220 +comment (10Gerrit Notification Bot) [14:30:42] 03(mod) Pluralization Javascript is not working while adding a flag - 10https://bugzilla.wikimedia.org/37424 +comment (10Matthias Mullie) [14:31:47] 03(mod) Can't upload mwstore://local-backend/local-public - 10https://bugzilla.wikimedia.org/48158 +comment (10Andre Klapper) [14:32:22] 03(mod) testextensions should find parsertests - 10https://bugzilla.wikimedia.org/42506 +comment (10Antoine "hashar" Musso) [14:33:05] 03(mod) Y U NO USE APC? - 10https://bugzilla.wikimedia.org/44211 +comment (10Andre Klapper) [14:33:07] 03(mod) Stress the importance of a cache during install (APC or memcached) - 10https://bugzilla.wikimedia.org/34236 +comment (10Andre Klapper) [14:33:49] 03(mod) testextensions should find parsertests - 10https://bugzilla.wikimedia.org/42506 +comment (10hashar) [14:33:53] 03(mod) Bad article layout on it.wikivoyage (due to hidden categories?) - 10https://bugzilla.wikimedia.org/48019 +comment (10andyrom75) [14:35:17] 03(mod) SpecialPreferences:

should not be inside - 10https://bugzilla.wikimedia.org/33438 +comment (10gerritadmin) [14:35:23] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Oliver Keyes) [14:36:41] 03(mod) SpecialPreferences:

should not be inside - 10https://bugzilla.wikimedia.org/33438 +comment (10Bartosz Dziewoński) [14:37:57] 03(mod) IPv6 range blocks are not listed when using bkip parameter in API - 10https://bugzilla.wikimedia.org/48129 +ipv6 (10Alex Monk (Krenair)) [14:42:11] 03(mod) Stress the importance of a cache during install (APC or memcached) - 10https://bugzilla.wikimedia.org/34236 (10Chad H.) [14:43:43] 03(mod) Pronunciation recording tool - 10https://bugzilla.wikimedia.org/46610 +comment (10rsurratt) [14:47:12] 03(mod) "LocalSettings.php" is inside a plain-text wrapper - 10https://bugzilla.wikimedia.org/44475 +comment (10Mark Holmquist) [14:50:07] 03(mod) HTML validation: Attribute srcset not allowed on element img at this point.v - 10https://bugzilla.wikimedia.org/41346 +comment (10Alex Monk (Krenair)) [14:51:18] 03(mod) [InstantCommons] Some hotlinks of Commons files are not protocol-relative - 10https://bugzilla.wikimedia.org/48133 +comment (10Alex Monk (Krenair)) [14:53:09] 03(mod) Notifications: Mark messages as read after any visit to the talk page - 10https://bugzilla.wikimedia.org/48124 +comment (10Alex Monk (Krenair)) [14:53:10] 03(mod) Visiting your own talk page should mark user talk page notifications as read - 10https://bugzilla.wikimedia.org/47912 +comment (10krenair) [14:53:59] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 +comment (10gerritadmin) [14:54:00] 03(mod) Special:EntityData should support RDF output - 10https://bugzilla.wikimedia.org/44577 +comment (10gerritadmin) [14:55:06] 03(mod) Visiting your own talk page should mark user talk page notifications as read - 10https://bugzilla.wikimedia.org/47912 normal->major; +comment (10Thehelpfulone) [14:55:58] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [14:56:01] 03(mod) Implement linked data URI scheme for wikidata.org - 10https://bugzilla.wikimedia.org/44098 (10Daniel Kinzler) [14:56:09] 03(mod) Visiting your own talk page should mark user talk page notifications as read - 10https://bugzilla.wikimedia.org/47912 +comment (10Thehelpfulonewiki) [14:56:31] 03(mod) Provide a plain linked data interface for accessing entities - 10https://bugzilla.wikimedia.org/42063 (10Daniel Kinzler) [14:56:33] 03(mod) Implement linked data URI scheme for wikidata.org - 10https://bugzilla.wikimedia.org/44098 (10Daniel Kinzler) [14:57:35] 03(mod) Provide a plain linked data interface for accessing entities (story) - 10https://bugzilla.wikimedia.org/42063 +tracking; summary; +comment (10Daniel Kinzler) [14:57:36] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10jrobson) [14:59:42] 03(mod) Tracking: integration with Extension:Nonlinear - 10https://bugzilla.wikimedia.org/48095 (10Adam Wight) [14:59:43] 03(mod) Integrate under FlaggedRevs - 10https://bugzilla.wikimedia.org/48096 (10Adam Wight) [14:59:43] 03(mod) Merge workflow - 10https://bugzilla.wikimedia.org/48120 (10Adam Wight) [14:59:43] 03(mod) Hook below doEditContent - 10https://bugzilla.wikimedia.org/48122 (10Adam Wight) [15:01:15] 03(mod) [InstantCommons] Some hotlinks of Commons files are not protocol-relative - 10https://bugzilla.wikimedia.org/48133 +comment (10Nemo) [15:01:54] 03(NEW) VE opens/closes span on either side of a link - 10https://bugzilla.wikimedia.org/48159 normal; VisualEditor: General; () [15:04:14] 03(mod) Tracking: integration with Extension:Nonlinear - 10https://bugzilla.wikimedia.org/48095 +comment (10spam) [15:04:33] 03(mod) Add component for wikidata labs project - 10https://bugzilla.wikimedia.org/47140 +comment (10Andre Klapper) [15:08:12] 03(mod) Backport "Pending changes" messages from WP? - 10https://bugzilla.wikimedia.org/48094 +comment (10spam) [15:10:41] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Technical_13) [15:18:36] 03(mod) IPv6 range blocks are not listed when using bkip parameter in API - 10https://bugzilla.wikimedia.org/48129 +comment (10gerritadmin) [15:19:12] 03(mod) IPv6 range blocks are not listed when using bkip parameter in API - 10https://bugzilla.wikimedia.org/48129 +patch-in-gerrit (10Brad Jorsch) [15:20:48] 03(mod) Parsoid: Relative internal wiki links show the wikitext rather than their traditional label - 10https://bugzilla.wikimedia.org/48081 +easy (10Gabriel Wicke) [15:20:55] 03(mod) Dot Separator in Odia Wikipedia not working. - 10https://bugzilla.wikimedia.org/48134 +comment (10ansumang) [15:25:06] 03(mod) VisualEditor: Serve interface components as SVGs over PNGs to any browser which supports it - 10https://bugzilla.wikimedia.org/48148 normal->15enhancement; summary (10James Forrester) [15:26:19] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10lwelling) [15:26:29] 03(mod) TOC anchor name collision (collision avoidance salting can still collide with similar headings) - 10https://bugzilla.wikimedia.org/24787 +comment (10ShoeMaker) [15:28:29] 03(mod) Large thumbnails of "lossless" files return error - 10https://bugzilla.wikimedia.org/48003 (10Andre Klapper) [15:28:30] 03(mod) Review and deploy VipsScaler extension - 10https://bugzilla.wikimedia.org/28135 (10Andre Klapper) [15:31:58] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10federicoleva) [15:34:41] 03(mod) Add ability to position the conditionally shown TOC - 10https://bugzilla.wikimedia.org/46421 +comment (10ShoeMaker) [15:37:51] 03(mod) Error creating thumbnail for specific PDF files on Commons: "Killed" - 10https://bugzilla.wikimedia.org/48041 (10Andre Klapper) [15:41:31] 03(mod) MessageCache.php: Could not acquire lock - 10https://bugzilla.wikimedia.org/43516 +comment (10aklapper) [15:46:12] 03(mod) Diff links between revdeleted versions in deleted histories cause PHP error: DifferenceEngine::generateContentDiffBody() must implement interface Content, null given - 10https://bugzilla.wikimedia.org/47193 +comment (10Andre Klapper) [15:46:40] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10lwelling) [15:57:08] 03(mod) Dumps should be incremental - 10https://bugzilla.wikimedia.org/28956 +comment (10questpc) [15:57:37] 03(NEW) Setup checks for TwnMainPage - 10https://bugzilla.wikimedia.org/48160 normal; Wikimedia: Continuous integration; () [16:06:09] in response to my seen script usage, is there already a seen bot here? ill disable mine for this channel if that's the case [16:07:24] 03(mod) Update README - 10https://bugzilla.wikimedia.org/47865 (10Željko Filipin) [16:07:28] 03(mod) need Cucumber tag(s) per env e.g "@beta-only", "@test2-only" - 10https://bugzilla.wikimedia.org/47266 (10Željko Filipin) [16:07:36] 03(mod) Mark feature files that are running at en.wikipedia.org - 10https://bugzilla.wikimedia.org/47549 (10Željko Filipin) [16:07:40] 03(mod) Refactor pages - 10https://bugzilla.wikimedia.org/47657 (10Željko Filipin) [16:07:43] 03(mod) Review feature names and file names - 10https://bugzilla.wikimedia.org/47830 (10Željko Filipin) [16:10:46] 03(mod) Request for new mailing list: qa@lists - 10https://bugzilla.wikimedia.org/48057 +comment (10cmcmahon) [16:11:08] 03(mod) jquery.ime jumps forward after every character when there is pre-existing text in IE - 10https://bugzilla.wikimedia.org/43904 +comment (10amir.aharoni) [16:12:21] Kanegasi: yeah, wm-bot, it responds to @seen [16:12:58] ahh, ok [16:14:34] disabled [16:16:32] 03(mod) Request for new mailing list: qa@lists - 10https://bugzilla.wikimedia.org/48057 +comment (10cmcmahon) [16:19:22] 03(mod) API not available for wikimania2014 wiki - 10https://bugzilla.wikimedia.org/48066 +comment (10Sam Reed (reedy)) [16:20:19] 03(mod) API not available for wikimania2014 wiki - 10https://bugzilla.wikimedia.org/48066 +comment (10sam) [16:20:48] 03(mod) use vipsthumbnail to scale images - 10https://bugzilla.wikimedia.org/47311 +comment (10jcupitt) [16:21:14] 03(mod) API not available for wikimania2014 wiki - 10https://bugzilla.wikimedia.org/48066 +comment (10gerritadmin) [16:22:24] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10okeyes) [16:26:03] 03(mod) gerrit-wm should suppress "jenkins-bot merge" instead of "CR+2 review" - 10https://bugzilla.wikimedia.org/46452 +comment (10innocentkiller) [16:39:07] 03(NEW) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 minor; MediaWiki extensions: PageTriage; () [16:42:42] 03(mod) Incremental update: zimdiff & zimpatch - 10https://bugzilla.wikimedia.org/47406 summary (10Kelson [Emmanuel Engelhart]) [16:45:34] 03(NEW) Beta main page has many links to 404'ing config files - 10https://bugzilla.wikimedia.org/48162 normal; Wikimedia Labs: deployment-prep (beta); () [16:47:29] 03(mod) Closing Wikimania2012 - 10https://bugzilla.wikimedia.org/48026 +comment (10aude.wiki) [16:52:49] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 -patch-in-gerrit +browser-test-bug; +comment (10Mark Holmquist) [16:52:55] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 (10Mark Holmquist) [17:01:26] 03(mod) Allow upload-by-URL from upload.wikimedia.org - 10https://bugzilla.wikimedia.org/42473 +comment (10aklapper) [17:02:20] 03(NEW) [INTERLANG] input method list is displayed under the wrong language button - 10https://bugzilla.wikimedia.org/48163 normal; MediaWiki extensions: UniversalLanguageSelector; () [17:03:14] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 +comment (10Chris McMahon) [17:05:23] I could use help debugging my MW install. Things are mostly working, but account creation fails because "we could not confirm its source." [17:05:31] And it looks like my edit tokens are empty, which is probably the reason. [17:09:32] 03(mod) VisualEditor: Edit vs. edit source tab split not preserved across action=history, action=edit, Special:Undelete, … - 10https://bugzilla.wikimedia.org/47776 +comment (10James Forrester) [17:09:50] 03(mod) Articles I edit do not add to my watchlist - 10https://bugzilla.wikimedia.org/41573 +comment (10daniel.mietchen) [17:09:52] 03(NEW) JobQueue does not scale for TTMServer - 10https://bugzilla.wikimedia.org/48164 critical; MediaWiki extensions: Translate; () [17:09:54] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 +comment (10erik) [17:13:00] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10federicoleva) [17:13:01] 03(mod) VisualEditor: "Report a problem" feature broken - 10https://bugzilla.wikimedia.org/47948 +comment (10Krinkle) [17:14:35] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10matma.rex) [17:16:17] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 +comment (10mtraceur) [17:16:19] 03(mod) Improve Special:Translate non-JavaScript view to look sane and give helpful error message - 10https://bugzilla.wikimedia.org/48154 summary (10Niklas Laxström) [17:16:39] 03(mod) JobQueue does not scale for TTMServer - 10https://bugzilla.wikimedia.org/48164 +comment (10Nemo) [17:20:48] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10gerritadmin) [17:21:43] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10jrobson) [17:21:49] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 (10Jon) [17:21:57] 03(NEW) Allow CSS styling of new notifications without JavaScript - 10https://bugzilla.wikimedia.org/48165 enhancement; MediaWiki extensions: Echo; () [17:22:35] 03(mod) Math extension doesn't support many languages including Malayalam, Hindi, and Tamil - 10https://bugzilla.wikimedia.org/48032 +comment (10praveenp) [17:24:50] rihnapstor: hello [17:25:03] Rahul21: what ? [17:25:48] rihnapstor: You were interestd in submitting a proposal ?what happened then? [17:26:31] I got interested in python . next time it will be nodeJS [17:27:44] Rahul21: [17:28:09] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10rkaldari) [17:28:26] rihnapstor: oh dat is nice, glad you found your subject of interest [17:28:42] Rahul21: whaat about you dude ? [17:37:15] 03(mod) VisualEditor: ve.ce.Surface.getSelectionRect() throws errors in Opera - 10https://bugzilla.wikimedia.org/47772 (10James Forrester) [17:39:00] Rahul21: [17:41:24] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10matma.rex) [17:45:46] "The user account was not created, as we could not confirm its source" <- help? [17:51:01] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 +comment (10gerritadmin) [17:51:18] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Technical_13) [17:51:41] 03(mod) Section level editing surfaced on mobile sites - 10https://bugzilla.wikimedia.org/48153 (10Jon) [18:04:03] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10okeyes) [18:09:39] Is there any way for me to transclude a wiki page but have a Magic Word evaluate to the original page name? [18:10:15] So the content of my pages is basically {{SomeTemplate | {{PAGENAME}} }} [18:12:57] If you want {{pagename}} to be a fixed page, just write out the name [18:13:11] 03(NEW) unexpected characters appear after CTRL-B and CTRL-I - 10https://bugzilla.wikimedia.org/48166 normal; VisualEditor: General; () [18:13:12] * bawolff may have misunderstood the question [18:15:30] can anyone give the links on how to implement widgets? [18:16:42] bawolff: Sure, I just have a bunch of pages, and I can automatically-extract the correct name from the parent using #titleparts, so I'd like to not have to manually-enter each page name [18:16:44] 03(mod) Beta main page has many links to 404'ing config files - 10https://bugzilla.wikimedia.org/48162 +comment (10Antoine "hashar" Musso) [18:17:08] (Some are multiple word, case-sensitive, etc..) [18:17:10] 03(mod) unexpected characters appear after CTRL-B and CTRL-I - 10https://bugzilla.wikimedia.org/48166 +comment (10Inez Korczyński) [18:17:22] 03(NEW) Research dip in unique uploaders for mobile contributions starting 5/3 - 10https://bugzilla.wikimedia.org/48167 normal; MediaWiki extensions: MobileFrontend; () [18:17:35] heh, https://toolserver.org/~mwbot/botbrain.html = 500 [18:17:55] 03(mod) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 (10Nischay Nahata) [18:18:09] 03(mod) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 +comment (10nischayn22) [18:18:25] Colonelqubit: You can do {{subst:{{PAGENAME}}}} [18:18:32] Ugh [18:18:38] I mean [18:19:05] {{Subst:PAGENAME}} [18:19:58] Amgine: petrb replaced mw-bot with a different one named wm-bot a while back [18:21:16] can anyone give the links on how to implement gadgets? [18:21:57] !e Gadgets [18:21:57] https://www.mediawiki.org/wiki/Extension:Gadgets [18:22:37] [18:23:09] I don't think it has an equivalent page [18:23:24] 03(NEW) Create list of eligible voters for 2013 Board election - 10https://bugzilla.wikimedia.org/48168 normal; Wikimedia: General/Unknown; () [18:23:29] It has a home page on labs somewhere [18:24:15] 03(mod) Beta main page has many links to 404'ing config files - 10https://bugzilla.wikimedia.org/48162 +comment (10Nemo) [18:25:06] 03(mod) Beta main page has many links to 404'ing config files - 10https://bugzilla.wikimedia.org/48162 +comment (10hashar) [18:25:06] Amgine: petan would be the one to ask [18:25:18] Already chatting with xyr. [18:25:27] http://bots.wmflabs.org/~wm-bot/dump/%23mediawiki.htm [18:25:31] this where it is [18:26:07] ! [18:26:08] 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 [18:26:11] 03(mod) random occurences of svn and phase3 in code - 10https://bugzilla.wikimedia.org/38714 +comment (10gerritadmin) [18:26:16] Yep. [18:26:27] * bawolff just wanted to get a good job [18:26:39] 03(NEW) Extension tags not escaped in WTS - 10https://bugzilla.wikimedia.org/48169 normal; Parsoid: JS/serializer; () [18:27:39] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Technical_13) [18:28:15] bawolff that ! key is just preventing you from triggering the hell that would normally be triggered if it didn't exist [18:28:28] autocompletion to all keys is not what you want in here :P [18:30:05] good morning [18:32:18] 03(mod) Commons app should provide a visual during first sync - 10https://bugzilla.wikimedia.org/47668 +comment (10tfinc) [18:33:28] 03(mod) Commons app should provide a visual during first sync - 10https://bugzilla.wikimedia.org/47668 +comment (10brion) [18:33:38] 03(mod) Beta main page has many links to 404'ing config files - 10https://bugzilla.wikimedia.org/48162 +comment (10federicoleva) [18:37:52] 03(mod) testextensions should find parsertests - 10https://bugzilla.wikimedia.org/42506 +comment (10hashar) [18:38:56] 03(mod) testextensions should find parsertests - 10https://bugzilla.wikimedia.org/42506 +comment (10Antoine "hashar" Musso) [18:38:57] 03(mod) Php unit seems to use some sort of crappy directory relativity - 10https://bugzilla.wikimedia.org/32022 (10Antoine "hashar" Musso) [18:44:30] 03(mod) MobileFrontend extension should validate against W3C in Jenkins - 10https://bugzilla.wikimedia.org/31876 +comment (10Arthur Richards) [18:44:43] 03(mod) MobileFrontend extension should validate against W3C in Jenkins - 10https://bugzilla.wikimedia.org/31876 +comment (10gerritadmin) [18:50:50] 03(NEW) unreasonable results when pasting a table into VE - 10https://bugzilla.wikimedia.org/48170 normal; VisualEditor: General; () [18:53:59] 03(mod) Dot Separator in Odia Wikipedia not working. - 10https://bugzilla.wikimedia.org/48134 -need-volunteer ; +comment (10Andre Klapper) [18:56:12] 03(mod) unreasonable results when pasting a table into VE - 10https://bugzilla.wikimedia.org/48170 +comment (10Roan Kattouw) [18:57:03] 03(mod) Commons app should provide a visual during first sync - 10https://bugzilla.wikimedia.org/47668 +comment (10Brion Vibber) [19:02:48] 03(mod) VisualEditor: [Regression] Links made with pre-annotation do not become links in CE (but do in DM) - 10https://bugzilla.wikimedia.org/48171 (10James Forrester) [19:04:24] 03(NEW) throttle or otherwise handle large input to VE - 10https://bugzilla.wikimedia.org/48172 normal; VisualEditor: General; () [19:04:24] 03(mod) Jenkins: Job mediawiki-core-qunit fails sometimes due to database being read-only - 10https://bugzilla.wikimedia.org/47639 +comment (10Antoine "hashar" Musso) [19:05:09] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Technical_13) [19:05:09] 03(mod) [OPS] Jenkins: allow wmde members to rebuild jobs - 10https://bugzilla.wikimedia.org/47734 (10Antoine "hashar" Musso) [19:06:57] 03(NEW) Lua table serialization (dumping contents of a table) is really painful/annoying - 10https://bugzilla.wikimedia.org/48173 normal; MediaWiki extensions: Scribunto; () [19:08:53] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10okeyes) [19:09:11] 03(mod) replicate HTTPS architecture - 10https://bugzilla.wikimedia.org/36648 +comment (10Antoine "hashar" Musso) [19:09:15] MatmaRex: Ping. [19:09:24] 03(mod) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 +comment (10okeyes) [19:09:35] James_F: pong [19:09:38] 03(mod) Setup checks for TwnMainPage - 10https://bugzilla.wikimedia.org/48160 +comment (10Siebrand) [19:12:35] 03(mod) unreasonable results when pasting a table into VE - 10https://bugzilla.wikimedia.org/48170 +comment (10cmcmahon) [19:12:39] 03(mod) VisualEditor: Typing at the end of linked causes DM and CE to get out of sync - 10https://bugzilla.wikimedia.org/48171 summary; +comment (10Trevor Parscal) [19:13:48] MatmaRex: Never mind; the bug seems to be user-specific. [19:13:51] MatmaRex: Sorry! [19:14:16] :) [19:15:54] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10Technical_13) [19:17:29] 03(NEW) Scribunto/Lua should have a built-in method for retrieving templates transcluded on a page - 10https://bugzilla.wikimedia.org/48174 normal; MediaWiki extensions: Scribunto; () [19:19:23] 03(NEW) Scribunto/Lua should have a built-in method for retrieving categories used on a page - 10https://bugzilla.wikimedia.org/48175 normal; MediaWiki extensions: Scribunto; () [19:20:43] 03(mod) [Worked around] Zuul slow to report back to Gerrit - 10https://bugzilla.wikimedia.org/46176 +comment (10Antoine "hashar" Musso) [19:20:47] 03(mod) Jenkins: Jobs should not be affected by .git/index.lock of previous run - 10https://bugzilla.wikimedia.org/47638 +comment (10Antoine "hashar" Musso) [19:23:50] 03(mod) Dot Separator in Odia Wikipedia not working. - 10https://bugzilla.wikimedia.org/48134 +comment (10Bawolff (Brian Wolff)) [19:24:31] 03(mod) Chechen Wikipedia: Translation of namespaces - 10https://bugzilla.wikimedia.org/47574 +comment (10umar.dagirov) [19:24:44] 03(NEW) Requested Scribunto/Lua built-in methods/functions (tracking) - 10https://bugzilla.wikimedia.org/48176 normal; MediaWiki extensions: Scribunto; () [19:24:45] 03(mod) Add ability to generate a list of pages based on prefix to Scribunto/Lua - 10https://bugzilla.wikimedia.org/47137 (10MZMcBride) [19:24:50] 03(mod) Lua table serialization (dumping contents of a table) is really painful/annoying - 10https://bugzilla.wikimedia.org/48173 (10MZMcBride) [19:24:50] 03(mod) Scribunto/Lua should have a built-in method for retrieving templates transcluded on a page - 10https://bugzilla.wikimedia.org/48174 (10MZMcBride) [19:24:51] 03(mod) Scribunto/Lua should have a built-in method for retrieving categories used on a page - 10https://bugzilla.wikimedia.org/48175 (10MZMcBride) [19:24:51] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10MZMcBride) [19:25:10] 03(mod) [worked around] Zuul is ultra slow post Jenkins upgrade - 10https://bugzilla.wikimedia.org/48025 summary; +comment (10Antoine "hashar" Musso) [19:26:25] 03(mod) Chechen Wikipedia: Translation of namespaces - 10https://bugzilla.wikimedia.org/47574 +comment (10umar.dagirov) [19:31:22] 03(mod) Implement RDF mapping for Claims/Statements - 10https://bugzilla.wikimedia.org/48141 +comment (10gerritadmin) [19:35:08] 03(mod) Pages with a high number of templates suffer extremely slow rendering or read timeout for logged in users - 10https://bugzilla.wikimedia.org/19262 +comment (10b) [19:38:26] 03(mod) Domino bug when serializing https://de.wikipedia.org/wiki/Liste_der_Denkm%C3%A4ler_im_K%C3%B6lner_Stadtteil_Altstadt-Nord - 10https://bugzilla.wikimedia.org/47952 +comment (10gwicke) [19:38:29] 03(mod) Add functionality (in an extension or MediaWiki) and implement to make English Wikipedia's [[Template:Cite]] work faster - 10https://bugzilla.wikimedia.org/26786 +comment (10b) [19:45:38] 03(mod) VisualEditor: Unexpected non-pawn characters appear after CTRL-B and CTRL-I - 10https://bugzilla.wikimedia.org/48166 summary (10James Forrester) [19:46:17] 03(mod) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 +comment (10nischayn22) [19:47:53] 03(mod) PageTriage: Sort options hidden by overlapping interface elements. - 10https://bugzilla.wikimedia.org/48161 +comment (10okeyes) [19:48:49] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10Spinningspark.wiki) [19:50:31] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 (10Ryan Kaldari) [19:55:09] 03(mod) Jenkins: Job mediawiki-core-qunit fails sometimes due to database being read-only - 10https://bugzilla.wikimedia.org/47639 (10Krinkle) [19:56:05] 03(mod) UploadWizard broken in Opera 12.15 - 10https://bugzilla.wikimedia.org/48091 +comment (10gerritadmin) [19:56:42] 03(mod) On-wiki configurable blacklist for Echo - 10https://bugzilla.wikimedia.org/47946 +comment (10rkaldari) [20:02:11] 03(mod) Add Portal and Project namespaces to cr.wp - 10https://bugzilla.wikimedia.org/48116 +shellpolicy; +comment (10Tomasz W. Kozlowski) [20:04:04] 03(mod) VisualEditor: Throttle or otherwise handle large copy-paste input - 10https://bugzilla.wikimedia.org/48172 normal->15enhancement; summary; +comment (10James Forrester) [20:08:59] 03(mod) Pages with a high number of templates suffer extremely slow rendering or read timeout for logged in users - 10https://bugzilla.wikimedia.org/19262 +comment (10mah) [20:09:06] 03(mod) VisualEditor: Typing at the end of linked causes DM and CE to get out of sync - 10https://bugzilla.wikimedia.org/48171 +comment (10gerritadmin) [20:09:28] mutante: who do i bribe to get wikibugs out of here? :( [20:09:38] 03(mod) Thumbnails of PDFs with non-standard page sizes are rendered incorrectly - 10https://bugzilla.wikimedia.org/33722 +comment (10seth) [20:10:04] 03(mod) Allow blocking of global accounts - 10https://bugzilla.wikimedia.org/15294 (10bandastouffer) [20:11:50] MatmaRex: i don't know [20:12:48] mutante: ;_; [20:12:54] 03(mod) Domino bug when serializing https://de.wikipedia.org/wiki/Liste_der_Denkm%C3%A4ler_im_K%C3%B6lner_Stadtteil_Altstadt-Nord - 10https://bugzilla.wikimedia.org/47952 +comment (10Gabriel Wicke) [20:13:52] marktraceur: I found a more suitable co-mentor than me for the book uploader [20:14:03] Micru: That's exciting! Who? [20:14:27] marktraceur: http://commons.wikimedia.org/wiki/User:Jarekt [20:14:57] 03(mod) Chechen Wikipedia: Translation of namespaces - 10https://bugzilla.wikimedia.org/47574 +comment (10Tomasz W. Kozlowski) [20:15:59] marktraceur: he also did an interesting presentation on commons categories not long ago: https://meta.wikimedia.org/w/index.php?title=File:BootCamp_2013_-_Wikimedia_Commons_tutorial.pdf [20:16:49] 03(mod) Echo: In mw-prefsection-echo, nodismiss options should be a checked checkbox with disabled="true" - 10https://bugzilla.wikimedia.org/48031 (10bsitu) [20:17:20] 03(mod) Unsuccessful request: Error contacting the Parsoid server - 10https://bugzilla.wikimedia.org/47890 +comment (10Gabriel Wicke) [20:18:35] marktraceur: what do you think? I still would be involved, though [20:19:10] 03(mod) VisualEditor: Trailing whitespace at end of paragraph or table cell dropped on round-trip - 10https://bugzilla.wikimedia.org/47712 +comment (10James Forrester) [20:20:56] 03(mod) VisualEditor: Adjacent annotations which are equal by name but not reference do not serialise correctly. - 10https://bugzilla.wikimedia.org/48110 +comment (10James Forrester) [20:22:53] 03(mod) MediaWiki:Mobile-frontend-photo-ownership needs GENDER support - 10https://bugzilla.wikimedia.org/48125 +comment (10Jon) [20:25:29] 03(NEW) Parsoid: 'align=right' normalised to 'align="right"' - 10https://bugzilla.wikimedia.org/48177 trivial; Parsoid: JS/General; () [20:25:33] 03(mod) Parsoid: Semantically insignificant whitespace round-tripping (tracking) - 10https://bugzilla.wikimedia.org/39564 (10James Forrester) [20:26:36] edsanders: you done with the fix insertion annotations stuff now? [20:31:30] Micru: I think it's a good plan. I would be more happy about it if I felt like there was someone aware of MARCSbot [20:32:30] 03(NEW) Error creating thumbnail: "Warning: File has insufficient data for an image." - 10https://bugzilla.wikimedia.org/48178 normal; MediaWiki extensions: PdfHandler; () [20:32:44] 03(mod) Concurrent uploading is broken - 10https://bugzilla.wikimedia.org/48090 +comment (10mtraceur) [20:33:01] marktraceur: do you mean MARCsman? [20:33:07] Er, yeah [20:33:15] Micru: See? I'm clueless! [20:33:40] 03(mod) Jenkins: Job mediawiki-core-qunit fails sometimes due to database being read-only - 10https://bugzilla.wikimedia.org/47639 +comment (10krinklemail) [20:34:08] 03(mod) Jenkins: Job mediawiki-core-qunit fails sometimes due to database being read-only - 10https://bugzilla.wikimedia.org/47639 +comment (10gerritadmin) [20:34:16] 03(mod) Chechen Wikipedia: Translation of namespaces - 10https://bugzilla.wikimedia.org/47574 +comment (10umar.dagirov) [20:35:40] marktraceur: I think Jarekt knows about it, in any case I will also ask Magnus (MARCsman's creator) he might be willing to give a hand too [20:35:48] Mmmkay [20:35:50] 03(mod) Error creating thumbnail: "Warning: File has insufficient data for an image." - 10https://bugzilla.wikimedia.org/48178 +comment (10sam) [20:36:01] Micru: You're a very helpful influence [20:36:10] But now I need to consume something, BRB [20:36:35] marktraceur: go and consume :) [20:38:48] 03(NEW) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 trivial; Parsoid: JS/General; () [20:38:49] 03(mod) Parsoid: Semantically insignificant whitespace round-tripping (tracking) - 10https://bugzilla.wikimedia.org/39564 (10James Forrester) [20:40:03] 03(mod) Parsoid: 'align=right' normalised to 'align="right"' - 10https://bugzilla.wikimedia.org/48177 +comment (10Gabriel Wicke) [20:40:45] 03(mod) Add Portal and Project namespaces to cr.wp - 10https://bugzilla.wikimedia.org/48116 +comment (10lebo.beland) [20:40:52] 03(mod) Pages with a high number of templates suffer extremely slow rendering or read timeout for logged in users - 10https://bugzilla.wikimedia.org/19262 (10Ryan Kaldari) [20:42:16] 03(NEW) Parsoid: Some but not all content of a template inside a table is repeated at the end of a template before the end of the table - 10https://bugzilla.wikimedia.org/48180 normal; Parsoid: JS/General; () [20:43:55] 03(mod) Jenkins should run tests in disposable sandboxes - 10https://bugzilla.wikimedia.org/45499 +comment (10hashar) [20:44:23] 03(mod) VisualEditor: Pawn ♙ appears after deleting list and moving cursor - 10https://bugzilla.wikimedia.org/41067 summary (10James Forrester) [20:45:06] 03(mod) Jenkins: Job mediawiki-core-qunit fails sometimes due to database being read-only - 10https://bugzilla.wikimedia.org/47639 +comment (10krinklemail) [20:46:21] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10gwicke) [20:50:40] 03(mod) Echo: do not send talkpage notifications if the edit is both made by a bot-flagged account, and marked as minor - 10https://bugzilla.wikimedia.org/47910 +comment (10gerritadmin) [20:53:24] 03(mod) Allow CSS styling of new notifications without JavaScript - 10https://bugzilla.wikimedia.org/48165 +comment (10Alex Monk (Krenair)) [20:54:01] Hi [20:54:08] can someone sanity check a template? [20:54:25] I'm using an #ifeq: that isn't doing what it's supposed to [20:54:34] http://en.wikisource.org/wiki/Page:The_Army_and_Navy_Hymnal.djvu/33 [20:54:41] 03(mod) Edittools buttons broken in liquid threads reply and new topic - 10https://bugzilla.wikimedia.org/41220 +comment (10Alex Monk (Krenair)) [20:55:00] Ultimate problem template is - http://en.wikisource.org/wiki/Template:Music/header [20:55:07] nice, people using score already [20:55:33] Before I start screaming at things, can someone tell me WHY the suppression I added in the template isn't working? [20:56:21] Qcoder00, should there really be a '||' in there? [20:56:26] 03(mod) Error creating thumbnail: "Warning: File has insufficient data for an image." - 10https://bugzilla.wikimedia.org/48178 +comment (10email_metawiki_138) [20:56:30] Yes [20:56:34] It's {{#ifeq:text1|text2|true|false}} [20:56:35] That's the suppression [20:56:43] if true do nothing [20:56:57] Otherwise add in the warning note [20:57:02] So hasmusic == no, {{page contains sheet music}} [20:57:11] Correct [20:57:28] That seems backwards? Surely it should say that template if hasmusic == yes? [20:57:31] If am using an Ifeq so I can add in a category for 'Page with typset music [20:58:04] Krenair: Page Contains Sheet Music was a tracking category for stuff where it WASN'T typset ywet [20:58:19] ... I have no idea what the distinction is but okay [20:58:26] Qcoder00: There is sheet music, but it's not in Score format? [20:58:32] Correct [20:58:39] * marktraceur feels useful [20:59:00] What I am more concerened about is why what should be a simple ifeq isn't [20:59:19] EVEN when I am sure I'm passing down the relevant setting from higher level templates [20:59:31] Hence the request that someone sanity checks [20:59:51] because at the moment I am puzzled [21:00:22] 03(NEW) VisualEditor: JS error on (null) diffing [[BMW 801]] but only if debug=false - 10https://bugzilla.wikimedia.org/48181 minor; VisualEditor: MediaWiki integration; () [21:06:34] 03(mod) UploadWizard broken in Opera 12.15 - 10https://bugzilla.wikimedia.org/48091 +comment (10Nischay Nahata) [21:06:39] Qcoder00: that's really strange [21:06:56] Qcoder00, oh um, you realise {{page contains sheet music}} is added elsewhere in the template right? [21:07:01] I'm adding the template through subst: and the #ifeq: disappears! [21:07:19] sveiki [21:07:29] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10jforrester) [21:07:32] ah, Krenair catched that [21:07:39] I was looking at the wrong row [21:08:25] Krenair : It is? [21:08:44] Qcoder00: yes, look at the end (the #default= line) [21:08:51] ctrl+f [21:08:57] Urgh [21:08:58] :( [21:09:01] :P [21:09:09] That's why I asked for someone to help me santiy check [21:10:57] 03(mod) VisualEditor: Unexpected results when pasting in a table from OpenOffice, (?) others - 10https://bugzilla.wikimedia.org/48170 summary; +comment (10James Forrester) [21:10:58] 03(mod) VisualEditor: Please support copy and paste from different surfaces - 10https://bugzilla.wikimedia.org/41193 (10James Forrester) [21:12:30] 03(mod) VisualEditor: JS error on (null) diffing [[BMW 801]] but only if debug=false - 10https://bugzilla.wikimedia.org/48181 +comment (10Gabriel Wicke) [21:12:42] Next problem - Why the header isn't extending across 100 % of the page [21:14:13] 03(mod) UW should use one progress bar only when uploading multiple files - 10https://bugzilla.wikimedia.org/48157 +comment (10nischayn22) [21:15:39] OK Question, How do I make {{music/header}} extend across the page? [21:16:04] It's a qustion of table styles isn't it? [21:17:04] This seems like CSS stuff... [21:18:38] A temporary fix is width =100% on the table [21:21:59] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10mflaschen) [21:25:03] 03(mod) CodeEditor and the experimental "live preview" preference are not compatible. - 10https://bugzilla.wikimedia.org/47235 (10Brad Jorsch) [21:26:53] 03(mod) CodeEditor extension should support CSS/JS pages - 10https://bugzilla.wikimedia.org/39653 +comment (10bjorsch) [21:29:04] 03(mod) Create list of eligible voters for 2013 Board election - 10https://bugzilla.wikimedia.org/48168 normal->15enhancement (10Sam Reed (reedy)) [21:30:24] 03(mod) Error creating thumbnail: "Warning: File has insufficient data for an image." - 10https://bugzilla.wikimedia.org/48178 +comment (10sam) [21:31:42] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10rkaldari) [21:33:01] 03(mod) if a revert is performed after a page is moved, the mover gets a revert notice - 10https://bugzilla.wikimedia.org/48111 (10bsitu) [21:34:29] 03(mod) Parsoid: Semantically insignificant whitespace round-tripping (tracking) - 10https://bugzilla.wikimedia.org/39564 +comment (10gwicke) [21:34:36] 03(mod) Mobile edit tagging is hacky - 10https://bugzilla.wikimedia.org/43305 +comment (10jrobson) [21:35:10] 03(mod) Create list of eligible voters for 2013 Board election - 10https://bugzilla.wikimedia.org/48168 (10Greg Grossmeier) [21:37:48] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10gwicke) [21:41:02] 03(mod) Chechen Wikipedia: Translation of namespaces - 10https://bugzilla.wikimedia.org/47574 +comment (10umar.dagirov) [21:41:18] 03(mod) VE opens/closes span on either side of a link - 10https://bugzilla.wikimedia.org/48159 +comment (10jforrester) [21:43:21] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10jforrester) [21:44:56] 03(mod) Puppet does not run on new instances: err: Could not retrieve catalog from remote server: Error 400 on SERVER: Must pass gmond_port to Class[Ganglia_new::Monitor::Config] - 10https://bugzilla.wikimedia.org/47773 04BLOCKER->normal; +comment (10Ryan Lane) [21:45:34] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10gwicke) [21:46:51] hi, I'm trying to install confirm edit but it does not work. [21:48:32] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10jforrester) [21:49:18] I simply pasted th following at the end of my config file: http://dpaste.com/1114279/ [21:49:32] as the doc states it [21:49:49] (I mena LocalSettings.php) [21:50:05] I'm using mediawiki 1.19.3 [21:50:47] it seems like confirmedit was shipped with mediawiki so I didn't download it again but just used the one that was there [21:52:56] 03(mod) UW should use one progress bar only when uploading multiple files - 10https://bugzilla.wikimedia.org/48157 +comment (10tomasz) [21:53:50] 03(mod) Parsoid: HTML comment with immediately following table has newline split removed - 10https://bugzilla.wikimedia.org/48179 +comment (10gwicke) [21:54:19] 03(NEW) Korrekturlesen paralysed at de.wikisource, perhaps JavaScript does not function - 10https://bugzilla.wikimedia.org/48182 major; Wikimedia: Apache configuration; () [21:55:00] @notify Clancer [21:55:00] I will notify you, when I see Clancer around here [21:57:00] 03(NEW) Show diff link when appropriate on talk page notifications - 10https://bugzilla.wikimedia.org/48183 normal; MediaWiki extensions: Echo; () [21:57:33] 03(mod) Talk page notifications should link to the section of the page - 10https://bugzilla.wikimedia.org/47954 +comment (10Matthew Flaschen) [21:57:36] 03(mod) Show diff link when appropriate on talk page notifications - 10https://bugzilla.wikimedia.org/48183 (10Matthew Flaschen) [22:00:47] 03(mod) Switching to a non-whitelisted language shows wrong error message - 10https://bugzilla.wikimedia.org/44436 +comment (10gerritadmin) [22:01:10] 03(NEW) Agora .mw-ui-button doesn't override anchor :visited and :active text colors - 10https://bugzilla.wikimedia.org/48184 normal; MediaWiki: Skin and page rendering; () [22:01:30] 03(mod) Agora .mw-ui-button doesn't override anchor :visited and :active text colors - 10https://bugzilla.wikimedia.org/48184 (10spage) [22:02:21] 03(mod) Research dip in unique uploaders for mobile contributions starting 5/3 - 10https://bugzilla.wikimedia.org/48167 +comment (10Jon) [22:20:56] 03(mod) Merge items in Wikidata - 10https://bugzilla.wikimedia.org/38664 (10soulkeeper.wikipedia) [22:29:02] 03(mod) Research dip in unique uploaders for mobile contributions starting 5/3 - 10https://bugzilla.wikimedia.org/48167 +comment (10mpinchuk) [22:36:49] OK… third try for today, then I'll leave the channel in peace: Can anyone help me debug a problem where account creation responds with 'The user account was not created, as we could not confirm its source'? [22:39:29] andrewbogott: The basic error message suggests it's cookies related [22:39:29] 03(NEW) Non-contiguous rendering of references in LTR text in RTL mode - 10https://bugzilla.wikimedia.org/48185 normal; VisualEditor: ContentEditable; () [22:39:57] 03(mod) ResourceLoader does not account for read-only mode - 10https://bugzilla.wikimedia.org/31044 +comment (10gerritadmin) [22:40:29] 03(NEW) A claim key should have a single $ in it - 10https://bugzilla.wikimedia.org/48186 normal; MediaWiki extensions: WikidataRepo; () [22:40:57] Reedy: Yep… I don't know much about where to look though. This is happening on a puppetized system; I have a similarly puppetized instance that works fine; the one that fails is part of an attempt to switch things over to https. [22:41:38] if ( !self::getCreateaccountToken() ) { [22:41:38] self::setCreateaccountToken(); [22:41:38] return Status::newFatal( 'nocookiesfornew' ); [22:41:38] } [22:42:10] andrewbogott: It could be session related... Are they completely broken? [22:42:36] Maybe. What's an example of another way to test sessions? [22:42:51] what's being used for session storage? [22:44:04] I had something similar with my dev install recently. I'd not done all of the config changes to change which memcached client MW was using [22:44:31] Memcached looks like it is set up properly... [22:44:37] 03(mod) Wikibase\SiteLinkTable::saveLinksOfItem deadlocks - 10https://bugzilla.wikimedia.org/47663 +comment (10aschulz4587) [22:44:39] I can give you a login on the box if you have a moment to poke around [22:45:18] Reedy, labs instance openstack-role-dev4 [22:46:40] Anyone here got mediawiki running on nginx and php5-fpm? [22:50:35] 03(mod) if a revert is performed after a page is moved, the mover gets a revert notice - 10https://bugzilla.wikimedia.org/48111 (10bsitu) [22:51:41] 03(mod) VisualEditor: Link inspector crashes when trying to annotate first character in the document - 10https://bugzilla.wikimedia.org/47623 +comment (10rmoen) [22:53:03] 03(mod) ResourceLoader does not account for read-only mode - 10https://bugzilla.wikimedia.org/31044 +comment (10gerritadmin) [22:54:08] 03(mod) ResourceLoader does not account for read-only mode - 10https://bugzilla.wikimedia.org/31044 +comment (10Krinkle) [22:55:04] ugh, bugzilla uses [^@]+ as match to identify the user in the backport flags [22:55:23] Why can't it use the username like everything else does [22:55:23] horrible [22:55:36] but then again, you can't expect bugzilla to do anything right the first time when it comes to UI. [22:57:07] Reedy, any suggestions on how to test w/not memcached is working for m? [23:00:52] andrewbogott: We've got maintenance/mctest.php for the minimal test case [23:01:46] Hm, cryptic but seems right: 127.0.0.1:11000 set: 100 incr: 100 get: 100 time: 0.028295040130615 [23:03:59] Yeah, I'd suggest it's at least workin [23:04:24] :( [23:06:40] It's getting too warm to sit in here, going to have to move [23:08:00] andrewbogott: I get "There was either an authentication database error or you are not allowed to update your external account." [23:08:16] really? That's way better! [23:08:31] Are you tunneling or using instance-proxy? [23:09:21] Are you using $wgSessionsInMemcached/$wgSessionsInObjectCache? [23:09:44] andrewbogott: neither :) using links from another labs instance [23:10:19] Reedy, $wgSessionsInMemcached = true; [23:10:42] ori-l: ? [23:11:04] 'links' as in the text-based browser (like lynx) [23:11:08] ah [23:11:34] that could be a clue [23:11:51] 03(mod) Non-contiguous rendering of references in LTR text in RTL mode - 10https://bugzilla.wikimedia.org/48185 +comment (10moriel) [23:12:04] Although I'm not sure how to follow it [23:12:34] Post LocalSettings minus password? [23:12:58] also try: apt-get install libmemcached-tools, then run memcdump --servers=127.0.0.1:11211 [23:13:02] should output the content of memcached [23:13:11] Reedy, they're spread out over several files, due to the weird puppet setup. Are you unable to log in? [23:13:33] Oh, agents [23:14:09] Where are they? [23:14:09] 03(mod) SkinMobile needs to be properly registered - 10https://bugzilla.wikimedia.org/36636 +comment (10jrobson) [23:14:17] (the config files) [23:15:11] nvm [23:15:20] /srv/org/wikimedia/controller/wikis/w/orig/LocalSettings.php and /srv/org/wikimedia/controller/wikis/w/LocalSettings.php and /srv/org/wikimedia/controller/wikis/config/* [23:15:28] Nooooooo [23:15:32] No nano on teh server! [23:15:42] I can install -- one minute [23:15:57] better? [23:16:10] I was about to install it via sudoing, but wasn't sure if it was supposed to be done properly via puppet etc [23:16:16] yup, ta [23:16:28] In theory, yes, but this is a disposable instance, won't last the week. [23:16:39] Ori, I see you in the cache but not me. [23:17:20] Which I guess isn't surprising since I didn't get far enough along for the account name to get read, probably... [23:18:49] So the proxy may be messing things up… Or some interaction between the proxy and the MW config [23:26:41] 03(mod) Echo breaks the hasmsg API - 10https://bugzilla.wikimedia.org/47962 +comment (10gerritadmin) [23:29:52] 03(mod) Non-contiguous rendering of references in LTR text in RTL mode - 10https://bugzilla.wikimedia.org/48185 +comment (10gerritadmin) [23:30:40] Reedy, nova-precise2 is a very similar setup which works via my tunnel. So it is possible… In theory this instance is based off of that one [23:31:12] 03(mod) Provide JSON library/module by default - 10https://bugzilla.wikimedia.org/45470 +comment (10Legoktm) [23:32:52] 03(mod) Non-contiguous rendering of references in LTR text in RTL mode - 10https://bugzilla.wikimedia.org/48185 +comment (10moriel) [23:37:07] andrewbogott: Set-Cookie:labsconsole-test_session=; path=/; domain=labsconsole.wikimedia.org; secure; HttpOnly [23:37:13] that's the response i'm getting from that instance [23:37:15] and the domain is wrong [23:37:19] so the cookie isn't sticking [23:37:27] * andrewbogott greps [23:37:44] $wgServerName? [23:37:51] 03(mod) Excess white space between the bottom of the captcha image and refresh link - 10https://bugzilla.wikimedia.org/47699 +comment (10gerritadmin) [23:39:45] andrewbogott: run php maintenance/eval.php and echo $wgCookieDomain [23:40:06] I see where it's set, and it's wrong. Fixing... [23:41:01] If I leave wgCookieDomain unset will it get some reasonable implicit value? [23:41:28] 03(NEW) Special:Translate does not show diffs on Wikidata - 10https://bugzilla.wikimedia.org/48187 major; MediaWiki extensions: Translate; () [23:43:01] ori-l, simply clearing that value seems to improve the account creation behavior. Do you know if it's important to set it explicitly? [23:43:51] andrewbogott: it's not too bad. see http://www.mediawiki.org/wiki/Manual:$wgCookieDomain : "By default this isn't set, so php's setcookie function will just set a cookie on the current domain. This is a bad thing if e.g. your site is available from both www.example.com and example.com, since users that log into the former will be logged out as soon as they visit the latter." [23:44:07] cool, I will leave empty for now then. [23:44:25] Thanks for finding that! I'm on to a new error message now, which probably means I'm unstuck :) [23:45:42] heh, np [23:47:07] 03(mod) Special:Translate does not show diffs on Wikidata - 10https://bugzilla.wikimedia.org/48187 +comment (10Nemo) [23:47:11] 03(mod) Diff for outdated translations is broken, left side has whole page - 10https://bugzilla.wikimedia.org/46562 +comment (10Nemo) [23:53:44] 03(NEW) [New form] Login and signup form styles borked in IE6 - 10https://bugzilla.wikimedia.org/48188 normal; MediaWiki: User login and signup; () [23:54:01] 03(mod) [New form] Login and signup form styles borked in IE6 - 10https://bugzilla.wikimedia.org/48188 +comment (10swalling) [23:55:09] 03(NEW) [New form] Minor whitespace issues in IE7, for login and account create account - 10https://bugzilla.wikimedia.org/48189 normal; MediaWiki: User login and signup; () [23:55:45] 03(mod) [New form] Minor whitespace issues in IE7, for login and account create account - 10https://bugzilla.wikimedia.org/48189 +comment (10swalling) [23:56:56] 03(mod) [New form] Minor whitespace issues in IE7, for login and account create account - 10https://bugzilla.wikimedia.org/48189 +comment (10Steven Walling) [23:57:11] 03(mod) [New form] Minor whitespace issues in IE7, for login and account create account - 10https://bugzilla.wikimedia.org/48189 (10Steven Walling) [23:57:35] 03(mod) [New form] Login and signup form styles borked in IE6 - 10https://bugzilla.wikimedia.org/48188 (10Steven Walling) [23:57:47] 03(mod) [New form] Login and signup form styles borked in IE6 - 10https://bugzilla.wikimedia.org/48188 normal->major (10Steven Walling) [23:58:47] Heh... we should add http://microformats.org/wiki/rel-discussion to our talkpage links [23:59:45] Dantman: {{sofixit}}? :)