[00:00:31] \uXXXX encoding is not even proper unicode, it's UTF-16 [00:00:51] which is a surely a b/c hack for compatibility with JavaScript [00:00:55] it's not even proper UTF-16, it's UCS-2 :) [00:01:14] the ability to encode any glyph as an escape sequence is pretty handy sometimes [00:01:16] To escape an extended character that is not in the Basic Multilingual [00:01:16] Plane, the character is represented as a twelve-character sequence, [00:01:16] encoding the UTF-16 surrogate pair. So, for example, a string [00:01:16] containing only the G clef character (U+1D11E) may be represented as [00:01:16] "\uD834\uDD1E". [00:01:31] (from the RFC) [00:02:17] oh, my bad. [00:02:50] kind of inefficient for those languages that only use characters outside the BMP [00:06:28] I think it'd be useful for you to weigh in about the bigger picture, which is the suitability of representing configuration data as wiki pages encoded in some rich machine-readable data format [00:06:41] and whether or not it'd be a good idea to have that in core [00:07:03] the thing that has given me pause is my lack of any substantial understanding of how wikidata works [00:07:30] but the JSON-namespace-for-config-data stuff is now in three extensions: EventLogging, Zero, and UploadWizard [00:07:40] with substantial code duplication [00:07:52] (and being built into a fourth, which is the BookManager GorillaWarfare is writing) [00:08:22] I think XML would be fine too; I don't think the precise format we standardize on is all that important [00:08:59] If we do things this way, could we have a common config namespace or something? Otherwise every extension is going to make its own json config namespace and we're have hundreds of namespaces [00:09:03] though I think unless we have a strong reason for XML, it should be JSON [00:09:12] bawolff: yes, that'd be ideal [00:09:50] I'm a little pickier myself about serialization formats. some non-standard XML thing would kinda suck [00:09:53] I think it shouldn't just be config in the end, though. Campaign:, for example, should eventually display pictures uploaded through the campaign and let people upload more. [00:10:11] BookManager should probably just display the index page for the book or some such [00:10:28] rather than what we're showing right now, which is just a visualization of the format [00:11:15] (Daniel Kinzler's example extension for showing off ContentHandler implements an XML namespace, btw, so there's good existing code for that too.) [00:11:15] I'm not too convinced that an explosion of namespaces is a bad idea, provided that each of them provide a different function / have separate use cases [00:13:08] a namespace for a single config file does seem like overkill, though [00:13:36] it'd be nice to have some generalized rules for a config namespace if that's a common use case [00:13:43] I'd be kind of concerned it would overwhelm people when they try and search something (all the checkmark for different namespaces), or when going through namespace drop downs on RC, special:contribs, etc [00:13:44] true. but all the ones using it so far aren't really a single config file [00:14:13] if it's going to be just a single config file for a wiki, it should just live in the code, really... [00:14:34] a Gadget: namespace would probably be far preferable to the current Mediawiki:Gadget- pseudonamespace [00:14:46] yeah, fair enough [00:15:29] in fact 'one common namespace' for configuration would probably lead us back into a situation similar to Mediawiki:Gadget- [00:15:50] ...and it is awfully convenient to map a namespace back to a data schema [00:15:53] 03(mod) VisualEditor: Provide a way for the user to switch between VisualEditor and wikitext source editor modes without saving - 10https://bugzilla.wikimedia.org/47779 +comment (10zedlightman) [00:16:02] that too. [00:16:50] I actually can't think of a scenario where a common config namespace would be useful. if it is going to be just a single file it should be just in git [00:17:02] (but maybe I can't think of a scenario because it is ~6AM...) [00:17:07] YuviPanda: I don't think so. There's a lot of stuff that could be moved from CommonSettings.php and allow it to be managed on-wiki. [00:17:12] Here's one: account creation throttles. [00:17:45] ori-l: oh sure, but that's a different thing. That's a specific 'wiki configuration' use case, and wouldnt' help the 3(4?) extensions currently extending/copying JsonContent [00:19:30] ori-l: YuviPanda: so if I were to get back into hobby hacking on JSON stuff, where should I start hacking? [00:19:54] * bawolff doesn't entirely understand what precisely all the json config stuff is being used for, which may perhaps why I like the common config namespace idea [00:20:27] robla: look at Extension:EventLogging, and move JsonSchema, SchemaContent, SchemaContentHandler into core as generalized JsonContent.php and JsonContentHandler.php? [00:20:35] that! [00:20:41] so essentially [00:20:53] SchemaContent should just inherit JsonContent (and SchemaContentHandler inherit JsonContentHandler) [00:20:54] that doesn't sound like hobby hacking...that sounds like real work :-) [00:21:03] no, it is hobby hacking! [00:21:21] you just need to think of the design to provide for appropriate inheritance and the rest is just copy pasta [00:21:50] however, it does indeed not sound as much fun as writing up a validator :) [00:22:30] robla: it'd be nice to adapt JsonSchema.php for inclusion in core [00:23:20] ^ that too [00:23:42] I think what YuviPanda is suggesting makes sense and doesn't require making high-level decisions about the architecture of on-wiki configuration & extension data [00:23:43] ori-l: so JsonSchema.php in EventLogging is basically copied/adapted from (the now dormant) JsonData? [00:24:11] robla: yes; I've been bad about submitting changes upstream. I've only made small changes (enum validation and a small bugfix or two) [00:24:37] nah, I wouldn't have gotten around to reviewing anyway [00:24:44] * YuviPanda is just about to test if that works properly for data that is a lot more nested than Schema: [00:24:50] EventLogging is in translatewiki too so the messages have been translated into quite a lot of languages [00:25:44] * ori-l has also been hacking on $ref support for EL schemas https://gerrit.wikimedia.org/r/#/c/68941/ [00:26:09] so y'all think that it makes the most sense as a core inclusion? [00:26:13] indeed [00:26:28] yes. in includes/content [00:26:45] even if it is not in active use by a default install, it is a wonderful generic facility to provide for extensions [00:26:51] +1 [00:27:23] also, why doesn't https://dpaste.de/Gt8vc/ validate https://dpaste.de/ZNL90/ [00:27:24] ? [00:27:36] I get Invalid key "tutorial" in "Schema" [00:29:11] ori-l: ^ (this is using JsonSchema.php) [00:30:13] robla: core has JavaScriptContentHandler.php, CssContentHandler.php, WikitextContentHandler.php, TextContentHandler.php; I think JSON and/or XML are sufficiently generic to merit an implementation in core. The fact that the current crop of extensions using a JSON content handler are so vastly different in scope is good evidence of that. [00:30:44] YuviPanda: I'm too tired to chase that down at the moment :P [00:30:51] :P [00:30:58] that's two of us! :) [00:31:05] YuviPanda: I'm not seeing anything obvious either [00:31:06] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 normal->minor; summary (10James Forrester) [00:31:11] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 (10James Forrester) [00:35:49] YuviPanda: looks like you've got a bunch of extraneous trailing commas in your schema; that might be it [00:36:07] ... wut [00:36:09] me checks [00:36:31] hmm I see it [00:38:37] haha, nice! Now I have a screenfull of php errors :D [00:39:24] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 +comment (10jforrester) [00:39:31] progress! [00:39:35] indeed [00:40:17] 03(mod) Default whitespace for lists (*, #, ; :) should include a space after the list token - 10https://bugzilla.wikimedia.org/50771 normal->15enhancement; +comment (10James Forrester) [00:41:47] critics are raving about ori-l being on irc: 'antisocial!' (wife) 'semi-autistic!' (mother, currently visiting) 'wahhh!' (noam, age 2) [00:41:54] * ori-l waves [00:42:44] ori-l: enjoy your holiday :) [00:42:53] * YuviPanda is unsure if semi-autistic is a compliment or not [00:42:55] 03(mod) Ctrl + click on link in edit interface leads to "404 File Not Found" - 10https://bugzilla.wikimedia.org/50764 +comment (10James Forrester) [00:42:56] 03(mod) VisualEditor: Respect Parsoid's - 10https://bugzilla.wikimedia.org/48915 +comment (10James Forrester) [00:48:26] 03(mod) iframe embed not working - 10https://bugzilla.wikimedia.org/50617 +comment (10mdale) [01:01:07] 03(mod) VisualEditor: automagically convert wikitext (e.g. [[link]]) to VE-compatible elements - 10https://bugzilla.wikimedia.org/49686 +comment (10Erik Moeller) [01:01:26] robla: ori-l figured it out. [01:01:31] caused by the " // TODO: make this conform to draft-03 by also allowing single object " :) [01:01:41] since the generated schema from jsonschema.net used single object arrays [01:02:28] heh [01:02:52] YuviPanda: was that a comment that you put in, or something the generator put in? [01:03:05] robla: the TODO? It was in the JsonSchema.php class... ;) [01:03:11] so I guess it was either you or ori-l [01:03:18] I don't expect Git Blame to be useful here [01:03:26] 03(mod) VisualEditor: When user types in '[[' in the page or another DOM input widget, pop up a reminder that they're using VisualEditor - 10https://bugzilla.wikimedia.org/49820 +comment (10Erik Moeller) [01:03:34] ah, ok, I thought for some reason that was a comment in the schema itself [01:03:37] 03(mod) Disable ArticleFeedback <=v4 on Wikimedia wikis - 10https://bugzilla.wikimedia.org/43892 +comment (10ori) [01:03:40] that was probably my comment then [01:03:46] :) [01:04:34] yup, it was [01:06:01] hmm, does this mean arrays can't have multiple elements? [01:07:08] I'd have to get my head wrapped around it again to give a definitive answer, but.... [01:07:29] I think the deal is that arrays can have multiple elements, but they need to be homogenous [01:07:35] yeah, i'm just testing it [01:07:36] that sounds fine [01:15:56] 03(NEW) Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 major; VisualEditor: MediaWiki integration; () [01:17:55] 03(NEW) VisualEditor blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 normal; VisualEditor: Initialisation; () [01:18:58] 03(mod) Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 (10Erik Moeller) [01:19:03] 03(mod) VisualEditor blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 (10Erik Moeller) [01:20:31] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 (10Erik Moeller) [01:20:32] 03(mod) VisualEditor blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 (10Erik Moeller) [01:25:50] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 +comment (10moriel) [01:26:58] 03(mod) VisualEditor: Provide a language inspector to handle
blocks and similar - 10https://bugzilla.wikimedia.org/47759 +comment (10moriel) [01:28:18] hello room [01:28:27] 03(mod) VisualEditor: Provide a language inspector to handle
blocks and similar - 10https://bugzilla.wikimedia.org/47759 +comment (10moriel) [06:06:04] 03(mod) VisualEditor: [Regression] Broken accesskey on edit tab (Ctrl-Alt-e) - 10https://bugzilla.wikimedia.org/50725 +comment (10gerritadmin) [06:06:16] !help [06:06:16] There are a lot of topics you could be asking about. Besides, this bot is mostly for experienced users to quickly answer common questions. Please just ask your question and wait patiently, as the best person to answer your question may be away for a few minutes or longer. If you're looking for help pages, we moved that to !helpfor. [06:06:33] !shorturl [06:06:33] To create simple URLs (such as the /wiki/PAGENAME style URLs on Wikimedia sites), follow the instructions at or try the new beta tool at . There are instructions for most different webserver setups. If you have problems getting the rewrite rules to work, see !rewriteproblem [06:09:54] !shorturl [06:09:55] To create simple URLs (such as the /wiki/PAGENAME style URLs on Wikimedia sites), follow the instructions at or try the new beta tool at . There are instructions for most different webserver setups. If you have problems getting the rewrite rules to work, see !rewriteproblem [06:20:37] 03(mod) VisualEditor: CE eats up syllables except a last syllable of a word in Korean - 10https://bugzilla.wikimedia.org/50631 +comment (10ryuch) [06:22:48] 03(mod) wm-bot has been completely off-line since netsplit 2.5-3 hours ago - 10https://bugzilla.wikimedia.org/50786 +comment (10Sam Reed (reedy)) [06:27:40] is there a way to configure an abuse filter to ignore a match if another abuse filter already matched it? i've been fine tuning a word filter for the past few months and it catches more bot spam (random gibberish and weird links) than human editors, but the bot spam is always caught by other filters. if not, is there a way to view actions caught by a filter with a certain page filtered out? [06:31:52] 03(NEW) ULS keyboard icon hides contents from search suggession - 10https://bugzilla.wikimedia.org/50787 normal; MediaWiki extensions: UniversalLanguageSelector; () [06:34:28] actually, now that i think of it, if that is not possible, i would like to make a suggestion to change how it matches. i don't know the correct terminology, but instead of trying to match all rules to one edit, have the abuse filter stop at the first match. it gets a bit annoying sifting through a ton of spam that another filter matched looking for false positives in a work-in-progress filter. [06:34:29] 03(mod) Globalblocking a logged-in user - 10https://bugzilla.wikimedia.org/50751 +comment (10thomasmulhall410) [06:34:53] 03(mod) Globalblocking a logged-in user - 10https://bugzilla.wikimedia.org/50751 (10paladox2015) [06:35:02] Well, first match is a bit strange [06:35:39] Would you just want a warning from an earlier rule if a later rule was going to prevent the action, or else block/whatever the user? [06:35:56] 03(NEW) VE does not have representation of red linked images - 10https://bugzilla.wikimedia.org/50788 normal; VisualEditor: Editing Tools; () [06:37:44] yea, that does sound weird. i forgot about the filters that warn and tag for various reasons. maybe an install config that has "filters that always get a chance to match" and "filters that stop at the first match", if that makes sense. [06:39:16] that way, warn and tag filters, like signatures, always try to match, while spam filters would stop at the first match. this could also be a way to avoid unnecessary blocks by putting the blocking filters at the end of the spam matching list [06:40:01] zz_YuviPanda: yes [06:40:06] not automatically though [06:41:37] 03(NEW) ULS widget is in wrong location on English Wikipedia - 10https://bugzilla.wikimedia.org/50789 normal; MediaWiki extensions: UniversalLanguageSelector; () [06:42:20] 03(NEW) Not remembering IME selection for logged-in users - 10https://bugzilla.wikimedia.org/50790 normal; MediaWiki extensions: UniversalLanguageSelector; () [06:46:51] 03(NEW) Math in block mode is alienated as inline - 10https://bugzilla.wikimedia.org/50791 normal; VisualEditor: Editing Tools; () [07:05:28] 03(mod) ULS widget is in wrong location on English Wikipedia - 10https://bugzilla.wikimedia.org/50789 +comment (10Nemo) [07:06:23] 03(NEW) Adding a marked text as "Heading" scrolls the page to the top - 10https://bugzilla.wikimedia.org/50792 normal; VisualEditor: Editing Tools; () [07:14:21] 03(mod) ULS widget is in wrong location on English Wikipedia - 10https://bugzilla.wikimedia.org/50789 +comment (10Siebrand) [07:16:50] 03(mod) Not remembering IME selection for logged-in users - 10https://bugzilla.wikimedia.org/50790 +comment (10s.mazeland) [07:28:56] 03(mod) Adding a marked text as "Heading" scrolls the page to the top - 10https://bugzilla.wikimedia.org/50792 +comment (10moriel) [07:31:59] 03(mod) Not remembering IME selection for logged-in users - 10https://bugzilla.wikimedia.org/50790 +comment (10vssun9) [07:33:36] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 +comment (10krinklemail) [07:33:56] 03(mod) Not remembering IME selection for logged-in users - 10https://bugzilla.wikimedia.org/50790 +comment (10Santhosh Thottingal) [07:34:58] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 +comment (10krinklemail) [07:55:59] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 +comment (10krinklemail) [07:56:44] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 +comment (10gerritadmin) [07:59:43] 03(mod) ./ inserted at the start of wikilinks - 10https://bugzilla.wikimedia.org/50720 normal->major; +comment (10Erik Moeller) [09:10:59] 03(mod) Update Lekhani typing scheme for Narayam based on jquery.ime changes - 10https://bugzilla.wikimedia.org/40913 +comment (10ansumang) [09:18:20] 03(mod) VisualEditor: Reopening page in VE immediately after saving page in VE loads old version - 10https://bugzilla.wikimedia.org/47420 +comment (10Axel Boldt) [09:22:21] 03(mod) VisualEditor: [Regression] Section edit links have reverted to the old style (source only, not expanded) - 10https://bugzilla.wikimedia.org/50731 +comment (10Eduard Braun) [09:26:54] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 +comment (10amir.aharoni) [09:27:04] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 (10Amir E. Aharoni) [09:41:57] 03(mod) Source not found after uploading, deleting, restoring, then deleting again - 10https://bugzilla.wikimedia.org/50413 +comment (10jgerber) [09:43:48] 03(mod) Add Translation: namespace to Ukrainian Wikisource - 10https://bugzilla.wikimedia.org/50561 +comment (10gerritadmin) [09:46:45] 03(mod) Add Translation: namespace to Ukrainian Wikisource - 10https://bugzilla.wikimedia.org/50561 +comment (10Tomasz W. Kozlowski) [09:46:47] 03(mod) Allow adding canonical names for custom namespaces - 10https://bugzilla.wikimedia.org/50655 (10Tomasz W. Kozlowski) [09:47:01] 03(mod) wgExtraNamespaces tidiness in InitialiseSettings.php - 10https://bugzilla.wikimedia.org/50658 +patch-in-gerrit (10Tomasz W. Kozlowski) [09:50:45] Hi, i've management to push some new pages in the jobqueue.. through the Jobs::batchInsert. No errors when inserting, but when i run maintenance/runJobs.php I get a error: Invalid job command `bizzNewPage`.. But I included it in the extension's $wgJobClasses.. [09:55:43] Argh, didnt include the extension! nvm [10:00:59] 03(mod) Expanding widgets fails for numerical-only categories with "Problem loading data", no request sent - 10https://bugzilla.wikimedia.org/42938 +comment (10Michael M.) [10:19:28] * zaki is away: هذه رسالة تلقائية: أنا آسف جدا، اليوم طلعت من البيت وسأرجع في المساء. [10:20:10] 03(mod) Change tags should be shown in diffs - 10https://bugzilla.wikimedia.org/25824 +comment (10Jens K Andersen) [10:20:10] 03(mod) Show change tags on edit diff views - 10https://bugzilla.wikimedia.org/49656 +comment (10Jens K Andersen) [10:23:11] 03(mod) Empty alias & stuck in alias edit mode - 10https://bugzilla.wikimedia.org/46945 +comment (10aude.wiki) [10:35:03] 03(mod) IME selector appears when the VisualEditor headings style selector is clicked - 10https://bugzilla.wikimedia.org/50529 +comment (10amir.aharoni) [10:36:36] Hello, in https://www.mediawiki.org/wiki/Manual:Maintenance_scripts it doesn't really say wether you need to run certain scripts or not, I have a small wiki running and am curious if I need to ever run any of these scripts. [10:37:26] 03(mod) ./ still appearing in links. - 10https://bugzilla.wikimedia.org/50539 +comment (10Richard Morris) [10:37:28] 03(mod) ./ inserted at the start of wikilinks - 10https://bugzilla.wikimedia.org/50720 +comment (10Richard Morris) [10:40:59] winny: you don't need as long as you're not told you need to do so [10:41:25] for example in a manual or howto about resolving a particular issue [10:42:11] oh alright, that is rather nice :) Simple and low maintenance. [10:49:28] 03(NEW) Make ULS accessible from keyboard - 10https://bugzilla.wikimedia.org/50793 normal; MediaWiki extensions: UniversalLanguageSelector; () [10:49:43] 03(mod) Make ULS accessible from keyboard - 10https://bugzilla.wikimedia.org/50793 +accessibility (10Santhosh Thottingal) [10:53:06] 03(mod) Make ULS accessible from keyboard - 10https://bugzilla.wikimedia.org/50793 (10Nemo) [10:53:09] 03(mod) Languages cogwheel missing accessibility features - 10https://bugzilla.wikimedia.org/50575 (10Nemo) [10:57:02] 03(mod) Faulty display of typing layouts for ULS Odia Wikipedia - 10https://bugzilla.wikimedia.org/50782 +comment (10kartik.mistry) [11:03:35] 03(mod) Fundraising notices break page layout (tabs position) - 10https://bugzilla.wikimedia.org/50663 +comment (10Peter Coombe) [11:05:28] 03(mod) tablesorter should support genitive month names - 10https://bugzilla.wikimedia.org/46496 +comment (10gerritadmin) [11:09:04] 03(mod) Update Lekhani typing scheme for Narayam based on jquery.ime changes - 10https://bugzilla.wikimedia.org/40913 +comment (10psubhashish) [11:11:40] 03(mod) Faulty display of typing layouts for ULS Odia Wikipedia - 10https://bugzilla.wikimedia.org/50782 +comment (10psubhashish) [11:15:44] 03(mod) Update Lekhani typing scheme for Narayam based on jquery.ime changes - 10https://bugzilla.wikimedia.org/40913 +comment (10Siebrand) [11:25:29] 03(mod) VisualEditor: Show VisualEditor tag in diffs - 10https://bugzilla.wikimedia.org/49602 (10Bartosz Dziewoński) [11:25:29] 03(mod) Change tags should be shown in diffs - 10https://bugzilla.wikimedia.org/25824 (10Bartosz Dziewoński) [11:25:31] 03(mod) Show change tags on edit diff views - 10https://bugzilla.wikimedia.org/49656 (10Bartosz Dziewoński) [11:25:44] 03(NEW) mathjax.js not loading in Chrome - 10https://bugzilla.wikimedia.org/50794 blocker; MediaWiki extensions: Math; () [11:36:38] Is there some method for INSERT ... DUPLICATE KEY UPDATE defined in DatabaseBase.php? [11:41:07] richa: is it $db->replace() ? [11:42:52] or $db->upsert? [11:45:19] liangent: I want to insert a json string in the db after adding a new attribute i.e the ID which i get from the currently inserted row. [11:48:50] 03(mod) VisualEditor: CE eats up syllables except a last syllable of a word in Korean - 10https://bugzilla.wikimedia.org/50631 +comment (10esanders) [11:49:06] richa: isn't it a direct update given you already have a row id (thus the row itself) in the databse? [11:51:48] 03(mod) Faulty display of typing layouts for ULS Odia Wikipedia - 10https://bugzilla.wikimedia.org/50782 +comment (10kartik.mistry) [12:01:47] 03(NEW) Message 'Mwe-upwiz-tooltip-skiptutorial' is given local URL; full URL is required to be accepted - 10https://bugzilla.wikimedia.org/50795 normal; MediaWiki extensions: UploadWizard; () [12:04:50] why do we have so many Guest* nicks here now, or has it always been the case and it's just me who didn't notice it? [12:08:50] 03(mod) VisualEditor: Template inspector needs a bit of work - 10https://bugzilla.wikimedia.org/50354 +comment (10okeyes) [12:09:37] there was probably a netspilt or something [12:16:37] 03(NEW) Use [[MediaWiki:MediaWiki:Parentheses]] instead of hardcoded parentheses - 10https://bugzilla.wikimedia.org/50796 normal; MediaWiki extensions: AbuseFilter; () [12:17:19] 03(NEW) VisualEditor: line of whitespace that can only be removed by deleting the infobox - 10https://bugzilla.wikimedia.org/50797 normal; VisualEditor: General; () [12:23:13] 03(NEW) wikibase-sitelinks-wikivoyage message does not work in entity view - 10https://bugzilla.wikimedia.org/50798 major; MediaWiki extensions: WikidataRepo; () [12:36:08] YuviPanda: hello [12:36:41] hey [12:37:48] YuviPanda: you finished with bachelors right? [12:37:55] welll, sortof [12:38:01] i don't have my final semeseter results yet [12:38:06] might pass, might fail, who knows? [12:38:45] YuviPanda: hahaha you ve gt a job here! who cares ! [12:46:33] Does anybody know of any extensions that can give me a table of contents of categorypages in the sidebar? [12:46:33] or all pages connected to a "root" category [13:25:37] 03(mod) mathjax.js not loading in Chrome - 10https://bugzilla.wikimedia.org/50794 +comment (10Derk-Jan Hartman) [13:28:09] 03(mod) Jenkins: migrate qunit jobs from master to gallium - 10https://bugzilla.wikimedia.org/50231 +comment (10gerritadmin) [13:32:28] 03(mod) Cog icon moves down by few pixels when hovering on IE8 - 10https://bugzilla.wikimedia.org/50742 (10Niklas Laxström) [13:35:45] 03(NEW) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 normal; Wikimedia: Site requests; () [13:36:18] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 (10Kolega2357) [13:38:44] 03(mod) Blacklist IME from Captcha and username field for user registration, to enter Latin letters - 10https://bugzilla.wikimedia.org/41675 +comment (10gerritadmin) [13:39:32] 03(mod) Jenkins: migrate qunit jobs from master to gallium - 10https://bugzilla.wikimedia.org/50231 +comment (10gerritadmin) [13:40:32] 03(mod) Template extending too far and using poem formatting - 10https://bugzilla.wikimedia.org/50640 (10Oliver Keyes) [13:41:04] 03(mod) Blacklist IME from Captcha and username field for user registration, to enter Latin letters - 10https://bugzilla.wikimedia.org/41675 +comment (10Niklas Laxström) [13:41:58] 03(NEW) Change the Location datatype to support dimension but not altitude - 10https://bugzilla.wikimedia.org/50803 normal; MediaWiki extensions: WikidataRepo; () [13:42:22] 03(mod) Change the Location datatype to support dimension but not altitude - 10https://bugzilla.wikimedia.org/50803 normal->major (10denny vrandecic) [13:43:27] 03(mod) Jenkins: migrate qunit jobs from master to gallium - 10https://bugzilla.wikimedia.org/50231 +comment (10Antoine "hashar" Musso) [13:44:15] 03(mod) Jenkins: migrate all jobs from master to slaves (tracking) - 10https://bugzilla.wikimedia.org/50228 +comment (10hashar) [13:56:02] 03(mod) Change the Location datatype to support dimension but not altitude - 10https://bugzilla.wikimedia.org/50803 +comment (10Jeroen De Dauw) [13:56:12] 03(mod) Change the Location datatype to support dimension but not altitude - 10https://bugzilla.wikimedia.org/50803 +comment (10jeroen_dedauw) [14:05:31] !source [14:05:32] There are multiple keys, refine your input: sourcecode, sourceforge, [14:05:35] !sourcecode [14:05:36] https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/core.git;a=tree [14:05:49] uh, that linkis dead, sorry [14:05:55] what are you looking for? [14:06:04] !master README [14:06:05] https://git.wikimedia.org/blob/mediawiki%2Fcore.git/master/README [14:06:19] this points to somewhere exisintg at leat ^ [14:06:21] least* [14:06:21] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 +comment (10brion) [14:06:48] !del sourcecode [14:06:48] Deleting users is very messy and not recommended, because this breaks referential integrity in the database (they appear in many different tables like users, edit histories, recentchanges, preferences, etc). A safe solution is to block the users, and possibly rename them with . You can also try [14:07:26] MatmaRex : looking for an easy way to browse the code online [14:07:57] https://git.wikimedia.org/tree/mediawiki/core.git [14:07:57] odder : I would not delete it; but replace with a correct ink [14:08:11] !sourcecode del [14:08:12] Successfully removed sourcecode [14:08:17] on it, Huji [14:08:23] thanks MatmaRex [14:08:26] oh yeah [14:08:30] forgot the syntax [14:08:30] !sourcecode is https://git.wikimedia.org/tree/mediawiki%2Fcore.git [14:08:30] Key was added [14:08:42] Huji: either there or via the github mirror ^ [14:08:55] !github [14:08:55] hmm, nuffin'? [14:08:55] There is no such key, you probably want to try: !grep, !rebase, !testswarm, [14:09:12] !github is https://github.com/Wikimedia/mediawiki-core [14:09:12] Key was added [14:09:35] : MatmaRex mind adding it to !sourcecode too? [14:09:51] hm, fair enough [14:09:54] !sourcecode del [14:09:54] Successfully removed sourcecode [14:10:00] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10Oliver Keyes) [14:10:14] !sourcecode is You can browse MediaWiki source code at https://git.wikimedia.org/tree/mediawiki%2Fcore.git or using the GitHub mirror at https://github.com/Wikimedia/mediawiki-core [14:10:14] Key was added [14:10:28] !sourcecode https://git.wikimedia.org/tree/mediawiki%2Fcore.git [14:10:28] You can browse MediaWiki source code at https://git.wikimedia.org/tree/mediawiki%2Fcore.git or using the GitHub mirror at https://github.com/Wikimedia/mediawiki-core [14:10:52] fantastic [14:11:09] have another minute for one more questoin? [14:11:53] 'Don't ask to ask, just ask.' [14:11:59] fair enough [14:12:40] I want to find the part of SpcialUserlogin that checks your IP against the last IP that tried to login for that username but failed .. and if many requests have fialed, blocks that IP from logging in [14:12:52] more specifically I want to know where the IPs are stored [14:13:13] (need to say I am a member of Ombudsmen Commission investigating some privacy issue) [14:13:34] 03(mod) Scribunto_LuaStandaloneEngine: Check disable_functions and safe_mode - 10https://bugzilla.wikimedia.org/50706 +comment (10gerritadmin) [14:13:43] 03(mod) wikibase-sitelinks-wikivoyage message does not work in entity view - 10https://bugzilla.wikimedia.org/50798 +comment (10gerritadmin) [14:15:50] * odder bites his tongue. [14:16:20] odder : let me translate that into smaller questions: $wgMemc is for memcached, right? [14:25:21] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 normal->15enhancement; +shellpolicy (10Tomasz W. Kozlowski) [14:25:37] 03(mod) Spec out registry/factory for formatters and parsers in the backend - 10https://bugzilla.wikimedia.org/49265 +comment (10denny vrandecic) [14:25:44] 03(mod) Not remembering IME selection for logged-in users - 10https://bugzilla.wikimedia.org/50790 +comment (10gerritadmin) [14:26:31] 03(mod) WikitextContentHandler is making redirect content to sectioned title incorrectly - 10https://bugzilla.wikimedia.org/50450 +comment (10gerritadmin) [14:26:33] 03(mod) WikitextContentHandler is making redirect content to category pages incorrectly - 10https://bugzilla.wikimedia.org/50451 +comment (10gerritadmin) [14:29:54] 03(mod) Selecting parameters in template editor looks counterintuitive - 10https://bugzilla.wikimedia.org/50773 +comment (10Guillaume Paumier) [14:31:02] 03(mod) Spec out registry/factory for formatters and parsers in the backend - 10https://bugzilla.wikimedia.org/49265 (10denny vrandecic) [14:34:27] 03(mod) wikibase-sitelinks-wikivoyage message does not work in entity view - 10https://bugzilla.wikimedia.org/50798 +comment (10Aude) [14:38:50] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 -shellpolicy +shell; +comment (10Tomasz W. Kozlowski) [14:42:43] 03(NEW) VisualEditor needs easter eggs - 10https://bugzilla.wikimedia.org/50804 normal; VisualEditor: General; () [14:43:58] 03(mod) VisualEditor: Categories deleted or misplaced when a reference is added (in Opera) - 10https://bugzilla.wikimedia.org/50385 summary; +comment (10Bartosz Dziewoński) [14:44:50] 03(mod) VisualEditor needs easter eggs - 10https://bugzilla.wikimedia.org/50804 +comment (10sam) [14:45:23] 03(mod) VisualEditor needs easter eggs - 10https://bugzilla.wikimedia.org/50804 +comment (10Yuvi Panda) [14:46:04] 03(NEW) Search suggestions box is misaligned in Konqueror 4.8.5 - 10https://bugzilla.wikimedia.org/50805 normal; MediaWiki: Skin and page rendering; () [14:46:44] 03(mod) Search suggestions box is misaligned in Konqueror 4.8.5 - 10https://bugzilla.wikimedia.org/50805 +comment (10cmckenna) [14:48:06] 03(mod) welcome users without relying on additions to talk page - 10https://bugzilla.wikimedia.org/27829 +comment (10hashar) [14:49:07] 03(mod) VisualEditor: VisualEditor needs easter eggs - 10https://bugzilla.wikimedia.org/50804 normal->15enhancement; summary (10James Forrester) [14:51:50] 03(mod) dummy test file for LabeledSectionTransclusion - 10https://bugzilla.wikimedia.org/42505 +comment (10Antoine "hashar" Musso) [14:52:01] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10Chris McKenna) [14:52:52] 03(mod) StructureTest::testUnitTestFileNamesEndWithTest should use a dataprovider - 10https://bugzilla.wikimedia.org/42906 +easy (10Antoine "hashar" Musso) [14:53:44] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10kolega2357) [14:55:24] 03(mod) migrate all beta instance from Lucid to Precise - 10https://bugzilla.wikimedia.org/45122 (10Antoine "hashar" Musso) [14:55:26] 03(mod) rebuild the upload cache - 10https://bugzilla.wikimedia.org/49470 (10Antoine "hashar" Musso) [14:58:01] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 +comment (10brion) [14:58:14] 03(mod) virt0 puppet master lacks GeoIP files - 10https://bugzilla.wikimedia.org/46093 +comment (10Antoine "hashar" Musso) [14:58:19] 03(mod) virt0 puppet master lacks GeoIP files - 10https://bugzilla.wikimedia.org/46093 (10Antoine "hashar" Musso) [14:59:28] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 +comment (10jforrester) [15:02:13] 03(NEW) [[Special:AbuseLog/9999]] should link to the version of the filter which the edit triggered (e.g. [[Special:AbuseFilter/history/30/item/392]]) - 10https://bugzilla.wikimedia.org/50806 normal; MediaWiki extensions: AbuseFilter; () [15:02:57] 03(mod) Allow for something other than master to be deployed - 10https://bugzilla.wikimedia.org/42188 +comment (10Antoine "hashar" Musso) [15:09:53] 03(mod) zh-hk, zh-cn, ... should be changed to zh-hant-hk, zh-hans-cn, ... - 10https://bugzilla.wikimedia.org/49274 +comment (10fanchy) [15:13:29] 03(mod) VisualEditor: Notice popup appears when there are, in fact, no notices because of enwiki's hack - 10https://bugzilla.wikimedia.org/50077 +comment (10James Forrester) [15:19:18] 03(NEW) Fatal error on login attempt from Wikibase - 10https://bugzilla.wikimedia.org/50807 major; Wikimedia Labs: deployment-prep (beta); () [15:20:22] guys, fast question: [15:20:57] 03(mod) Track property data types in a database table. - 10https://bugzilla.wikimedia.org/49742 +comment (10gerritadmin) [15:21:23] 03(NEW) There is no need for a "details" link if the user is already in the "details" page - 10https://bugzilla.wikimedia.org/50808 normal; MediaWiki extensions: AbuseFilter; () [15:21:23] i have debug enabled and when i access my wiki it says Notice: [coveredbylogo -.-"]() has been disabled for security reasons in /mysite/w/includes/GlobalFunctions.php on line 2423 [15:21:29] should i worry? [15:21:41] i can access the website but [15:23:38] bawolff, maybe you can help me [15:23:46] i have debug enabled and when i access my wiki it says Notice: [coveredbylogo -.-"]() has been disabled for security reasons in /mysite/w/includes/GlobalFunctions.php on line 2423 [15:23:46] should i worry? [15:23:46] i can access the website but [15:23:47] What's up [15:24:05] interesting [15:24:39] i can't see the number of the lines.. [15:24:51] oh, you mean its literally covered by logo [15:25:02] that part yes [15:25:14] I thought you meant that was the error message, and I was going to say that's the weirdest error message i've ever heard :) [15:25:26] oh lol [15:25:26] no [15:25:26] Go to view source of the page (ctrl+u) [15:25:39] different on mac [15:25:40] wait.. [15:25:53] php_uname() [15:25:56] thanks :) [15:26:00] what's that [15:26:02] ? [15:26:12] Its basically how we tell what OS you're on [15:26:20] uname stands for unix name [15:26:32] how do i fix it? [15:26:52] Talk to your host. It sounds like they disabled it in php.ini config file [15:26:55] (sorry for bugging you right when you joined :P) [15:26:59] that's ok [15:27:03] oh okay.. [15:28:04] are you also practical with parsoid? [15:28:10] rickyb98: Basically check the setting of the disable_functions setting in php.ini http://www.php.net/manual/en/ini.core.php#ini.disable-functions [15:28:16] nope [15:28:23] hmm.. okay.. [15:28:30] I'm not even clear on what precisely parsoid is :) [15:28:45] oh good! [15:28:46] !parsoid [15:28:46] Parsoid is a bi-directional wikitext parser and runtime. Converts back and forth between MediaWiki wikitext and HTML/XML DOM with RDFa. Backend for the VisualEditor (see !visualeditor). See also https://www.mediawiki.org/wiki/Parsoid and #mediawiki-parsoid channel. [15:28:49] xD [15:29:02] I could tell you all about the old parser though [15:29:17] it's some conf thing.. [15:29:20] ok, dsm [15:38:51] 03(NEW) Permit sorting of categories - 10https://bugzilla.wikimedia.org/50809 enhancement; VisualEditor: General; () [15:40:45] 03(mod) Support multi-page DjVu files and other image handler parameters in image galleries - 10https://bugzilla.wikimedia.org/8480 +comment (10Sumana Harihareswara) [15:42:53] 03(mod) MobileFrontend: User button tooltip is broken - 10https://bugzilla.wikimedia.org/50703 +comment (10gerritadmin) [15:45:50] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10tomasz) [15:47:16] 03(mod) Present list of random articles from one or more categories - 10https://bugzilla.wikimedia.org/46918 (10Nemo) [15:47:16] 03(mod) Implement efficient way to select random page from specified category on Wikimedia wikis - 10https://bugzilla.wikimedia.org/25931 (10Nemo) [15:50:04] 03(mod) VisualEditor: CE eats up syllables except a last syllable of a word in Korean IME - 10https://bugzilla.wikimedia.org/50631 summary (10James Forrester) [15:50:12] 03(mod) VisualEditor: IME shift+ function for adding diacritical marks in Arabic broken - 10https://bugzilla.wikimedia.org/50105 (10James Forrester) [15:50:15] 03(mod) VisualEditor: CE eats up syllables except a last syllable of a word in Korean IME - 10https://bugzilla.wikimedia.org/50631 (10James Forrester) [15:51:13] how comes wikibugs changed nick from wikibugs_? [15:51:21] he was no longer on ignore list for that! [15:51:23] grr [15:55:17] 03(mod) Implement efficient way to select random page from specified category on Wikimedia wikis - 10https://bugzilla.wikimedia.org/25931 +comment (10Nemo) [15:57:15] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 +comment (10brion) [15:58:56] 03(NEW) Implement setting start and end dates for UploadCampaigns, with different start/end pages based on date - 10https://bugzilla.wikimedia.org/50810 normal; MediaWiki extensions: UploadWizard; () [15:58:56] 03(mod) Wiki Loves Monuments 2013 (tracking) - 10https://bugzilla.wikimedia.org/42164 (10Tomasz W. Kozlowski) [15:59:05] hi parent5446 how are you doing? [15:59:09] odder: thanks for filing that :) [15:59:13] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10jforrester) [15:59:26] sumanah: good. dropping in for a quick gsoc meeting before I have to go [15:59:27] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10gerritadmin) [15:59:43] parent5446: nod, nod [15:59:49] 03(mod) Implement setting start and end dates for UploadCampaigns, with different start/end pages based on date - 10https://bugzilla.wikimedia.org/50810 normal->15enhancement; +comment (10Tomasz W. Kozlowski) [15:59:58] parent5446: are you coming to Wikimania in Hong Kong? [16:00:26] sumanah: nope. I have basically zero money and didn't get a scholarship... [16:00:28] parent5446: in August here in New York City is a hackathon you might enjoy - http://www.openitp.org/news-events/cryptocat-hackathon.html [16:00:36] 03(mod) Need to be root to run qa/browsertests - 10https://bugzilla.wikimedia.org/50384 +comment (10gerritadmin) [16:00:53] Hmm that looks interesting. I'll check it out. [16:01:17] cool [16:01:36] YuviPanda: my pleasure :-) [16:01:50] odder: cc me on the mail you were going to send/ [16:01:53] ? [16:02:09] the secret one? [16:02:13] 03(mod) Need to be root to run qa/browsertests - 10https://bugzilla.wikimedia.org/50384 +comment (10zfilipin) [16:02:20] zOMG cabal [16:02:48] mabbe [16:02:57] YuviPanda: assuming that's the one, will do [16:03:01] :) [16:03:08] parent5446: my sympathies re missing Wikimania. there are a few conferences I keep wanting to go to and it just doesn't work out [16:03:44] * YuviPanda should hopefully come to OSB next year [16:03:51] mhm i'll catch up on anything interesting over IRC [16:04:24] 03(mod) Publish the Wikibase ontology file - 10https://bugzilla.wikimedia.org/47656 (10denny vrandecic) [16:04:24] hope so [16:04:37] parent5446: although it sucks you won't be in the architecture meeting(s) [16:04:59] YuviPanda: oh yeah, by then you'll actually live in the States and it'll be easier! [16:05:11] hopefully, assuming my university co-operates :) [16:05:25] :) [16:05:54] 03(mod) VisualEditor: Add close icon to page notices fly-out - 10https://bugzilla.wikimedia.org/50799 normal->15enhancement; summary (10James Forrester) [16:07:35] so in https://meta.wikimedia.org/wiki/FDC_portal/Ombudsperson_annual_report_-_2012-2013 I see the FDC forms feedback includes: "A spreadsheet (CSV) or a gdoc would be more efficient, since time is not spent worrying about the table collapsing." what's the best way, in MediaWiki, to upload & view CSVs? just add "csv" as an allowed filetype to upload? or is there a better way? [16:11:49] Certainly stock MW won't do anything with CSV [16:12:11] SyntaxHighlight_GeSHi won't do CSV either.. [16:13:19] just uploading it is going to be the easiest way to go [16:15:08] Is there any security reason NOT to allow CSV as a filetype? [16:16:26] shouldn't be, assuming excel opens them as CSVs rather than as XLS files (so no macros, etc) [16:16:53] definitely nothing worse than PDF [16:20:53] YuviPanda: that's not a good assumption [16:21:01] office products ignore extensions [16:21:08] 'definitely nothing worse than PDF'? [16:21:17] considering Acrobat doesn't have a stellar record either [16:21:28] oh, I agree with that part [16:21:35] 03(mod) Document AbuseFilter's variables and type conversion - 10https://bugzilla.wikimedia.org/50107 summary; +comment (10Helder) [16:21:38] 03(mod) Documentation is out of date, incomplete (tracking) - 10https://bugzilla.wikimedia.org/1 (10Helder) [16:22:10] CSV should be fine [16:22:33] There are definitely ways to attack the client, but yeah, pdf is far easier to exploit [16:22:39] 03(mod) Compilation failed: regular expression is too large in ApiQueryExtracts - 10https://bugzilla.wikimedia.org/46581 +comment (10Ryan Kaldari) [16:22:49] 03(mod) Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10gerritadmin) [16:22:52] 03(mod) VisualEditor: Add Amazon Silk browser to blacklist - 10https://bugzilla.wikimedia.org/50777 +comment (10gerritadmin) [16:24:45] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10James Forrester) [16:24:48] 03(mod) VisualEditor: Browser blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 summary; +comment (10James Forrester) [16:25:12] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 summary (10James Forrester) [16:26:14] 03(mod) Document AbuseFilter's variables and type conversion - 10https://bugzilla.wikimedia.org/50107 +comment (10mybugs.mail) [16:26:33] sumanah: ^ csv should be fine [16:28:08] I was reasonably sure it should be fine, but glad I checked [16:28:20] Is anyone here familiar enough with AbuseFilter's code to at least provide us the type of its variables? [16:28:30] https://www.mediawiki.org/w/index.php?title=Extension_talk:AbuseFilter/Rules_format#Please_add_description_of_variable_values [16:31:11] https://www.mediawiki.org/wiki/Manual:Image_administration#Image_thumbnailing [16:31:18] "To enable GraphicsMagick support set $wgUseGraphicsMagick to true in your LocalSettings.php" [16:31:20] Saywut? [16:32:34] 03(mod) Domino does not handle additive formatting elements correctly - 10https://bugzilla.wikimedia.org/50604 (10ssastry) [16:33:03] 03(mod) Fatal error on login attempt "WikibaseClient.php line 112: Class 'ValueParsers\ParserOptions' not found" - 10https://bugzilla.wikimedia.org/50807 summary (10Chris McMahon) [16:36:31] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 (10James Forrester) [16:36:38] I have a feeling a Wikidata merge might have just killed beta labs [16:39:55] oh no. [16:40:26] http://www.wikilovesmonuments.org/the-cool-finalists-of-canad/ [16:40:41] somebody broke that post by changing the name of the file :-( [16:42:42] We should really do something about the whole file moving breaks hotlinks... [16:42:52] 03(mod) Set Interwiki order from Wikidata's wmgWikibaseClientSettings to alphabetic for Ilokano Wikipedia (ilo) - 10https://bugzilla.wikimedia.org/46245 (10moidiple) [16:43:46] bawolff: folks shouldn't hotlink in the first place, I guess... [16:44:03] that's probably unrealistic [16:44:19] heck the url changes break our own use case, as we don't purge pages on file move [16:45:52] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 +comment (10federicoleva) [16:52:46] 03(mod) ULS widget is in wrong location on English Wikipedia - 10https://bugzilla.wikimedia.org/50789 +comment (10rkaldari) [16:53:11] 03(mod) Call to undefined method SkinMobile::getLanguages() - 10https://bugzilla.wikimedia.org/50784 +comment (10Max Semenik) [16:55:38] j^: Just wondering, why is Special:TimedMediaHandler restricted to Sysops? I don't see anything sensitive there [16:58:45] 03(mod) Redirects to mobile version drop the URL hash (anchor) - 10https://bugzilla.wikimedia.org/50517 +comment (10jrobson) [17:00:01] 03(mod) Domino does not handle additive formatting elements correctly - 10https://bugzilla.wikimedia.org/50604 (10ssastry) [17:02:35] 03(mod) Template extending too far and using poem formatting - 10https://bugzilla.wikimedia.org/50640 +comment (10James Forrester) [17:02:35] 03(mod) Spurious pre in http://en.wikipedia.org/wiki/Jonestown,_Texas - 10https://bugzilla.wikimedia.org/44452 +comment (10James Forrester) [17:07:17] 03(mod) VisualEditor: Browser blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 (10James Forrester) [17:07:20] 03(mod) VisualEditor: Internet Explorer compatibility for beta - 10https://bugzilla.wikimedia.org/50085 (10James Forrester) [17:07:35] 03(mod) VisualEditor: Internet Explorer compatibility - 10https://bugzilla.wikimedia.org/50085 summary (10James Forrester) [17:11:30] 03(NEW) Request for Program Evaluation & Design Mailing List - 10https://bugzilla.wikimedia.org/50811 enhancement; Wikimedia: Mailing lists; () [17:12:40] 03(NEW) Special page for items with a specific property value - 10https://bugzilla.wikimedia.org/50812 normal; MediaWiki extensions: WikidataRepo; () [17:15:32] 03(mod) Spurious pre in http://en.wikipedia.org/wiki/Jonestown,_Texas - 10https://bugzilla.wikimedia.org/44452 (10ssastry) [17:16:06] 03(mod) MobileFrontend: User button tooltip is broken - 10https://bugzilla.wikimedia.org/50703 +comment (10gerritadmin) [17:18:07] 03(NEW) VisualEditor: Remove Opera from blacklist - 10https://bugzilla.wikimedia.org/50813 normal; VisualEditor: Initialisation; () [17:18:08] 03(mod) VisualEditor: Does not work in Opera (tracking) - 10https://bugzilla.wikimedia.org/36000 (10Bartosz Dziewoński) [17:18:08] 03(mod) VisualEditor: Browser blacklist issues (tracking) - 10https://bugzilla.wikimedia.org/50781 (10Bartosz Dziewoński) [17:18:46] 03(mod) MobileFrontend: User button tooltip is broken - 10https://bugzilla.wikimedia.org/50703 (10Jon) [17:19:58] 03(mod) Search placeholder is double escaped - 10https://bugzilla.wikimedia.org/50618 (10Jon) [17:20:08] 03(mod) Search placeholder is double escaped - 10https://bugzilla.wikimedia.org/50618 +comment (10gerritadmin) [17:20:21] 03(mod) Add option to disable ULS - 10https://bugzilla.wikimedia.org/46306 +comment (10federicoleva) [17:22:12] 03(NEW) Transclusion display garbled after removing parameter - 10https://bugzilla.wikimedia.org/50814 normal; VisualEditor: General; () [17:22:56] 03(mod) Default whitespace for lists (*, #, ; :) should include a space after the list token - 10https://bugzilla.wikimedia.org/50771 (10ssastry) [17:22:59] 03(mod) Transclusion display garbled after removing parameter - 10https://bugzilla.wikimedia.org/50814 +comment (10cmcmahon) [17:26:09] 03(mod) Default whitespace for lists (*, #, ; :) should include a space after the list token - 10https://bugzilla.wikimedia.org/50771 +comment (10gerritadmin) [17:28:59] 03(NEW) Searching for just a namespace produces an error - 10https://bugzilla.wikimedia.org/50815 normal; MediaWiki: Search; () [17:29:42] 03(mod) Uncaught TypeError: Cannot set property 'ontouchstart' of undefined - 10https://bugzilla.wikimedia.org/50761 +comment (10jrobson) [17:29:58] 03(mod) VisualEditor: Protected page warning messages are missing - 10https://bugzilla.wikimedia.org/50415 (10Derk-Jan Hartman) [17:29:58] 03(mod) VisualEditor: Add class name to protected pages, to allow for specific CSS styling of edit area - 10https://bugzilla.wikimedia.org/50783 (10Derk-Jan Hartman) [17:31:20] 03(mod) Nearby broken on desktop - Uncaught TypeError: Cannot set property 'ontouchstart' of undefined - 10https://bugzilla.wikimedia.org/50761 summary (10Jon) [17:31:46] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 +comment (10Derk-Jan Hartman) [17:35:00] 03(mod) Support multi-page DjVu files and other image handler parameters in image galleries - 10https://bugzilla.wikimedia.org/8480 (10Nemo) [17:35:38] Woo. 4 digit by fixed [17:36:35] which 4 digit? [17:37:53] 03(mod) Parsoid adds span with newline after extension tags - 10https://bugzilla.wikimedia.org/50713 (10ssastry) [17:40:06] rickyb98: 8480 - If its only a 4 digit bug, it means its kind of oldish. (Although not that oldish. The three digit bugs are the real accomplishments) [17:40:28] what's that code for? [17:40:40] bugzilla bug id number [17:40:53] 03(mod) Compilation failed: regular expression is too large in ApiQueryExtracts - 10https://bugzilla.wikimedia.org/46581 +comment (10rkaldari) [17:41:10] ohh [17:41:17] you were seeing wikibugs.. [17:41:40] hi ! :) [17:41:51] 03(mod) VisualEditor: Remove Opera from blacklist - 10https://bugzilla.wikimedia.org/50813 +comment (10James Forrester) [17:42:45] hi ! :) [17:45:29] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 +comment (10gerritadmin) [17:48:36] 03(mod) VisualEditor: Remove Opera from blacklist - 10https://bugzilla.wikimedia.org/50813 +comment (10brion) [17:54:17] 03(mod) change "username" to "email address" in "not valid" error message - 10https://bugzilla.wikimedia.org/50376 +comment (10duplicatebug) [17:55:19] 03(mod) VisualEditor: line of whitespace that can only be removed by deleting the infobox - 10https://bugzilla.wikimedia.org/50797 +comment (10James Forrester) [17:55:19] 03(mod) VisualEditor: Slugs should be more obvious to the user that they're not "really" blank lines - 10https://bugzilla.wikimedia.org/47790 +comment (10James Forrester) [17:55:24] bawolff: anomie - thanks for getting https://gerrit.wikimedia.org/r/#/c/60858/ in and fixing bug 8480. I noticed it when I was updating https://www.mediawiki.org/wiki/Annoying_little_bugs#Little_enhancements_to_add today. :) [17:55:43] sumanah: You're welcome [17:59:57] 03(mod) Make Special:Whatlinkshere includable - 10https://bugzilla.wikimedia.org/35486 +comment (10Bawolff (Brian Wolff)) [18:00:12] 03(mod) Allow setting references with action=wbcreateclaim - 10https://bugzilla.wikimedia.org/48969 summary; +comment (10db) [18:00:59] anomie: bawolff - I added to https://meta.wikimedia.org/wiki/Tech/News/2013/28 [18:01:17] cool :) [18:01:29] (please fix if inaccurate) :) [18:02:00] csteipp: you still have to V+2 [18:02:11] * Aaron|home should wander off soon [18:03:51] weee [18:04:08] someone edited Tech News, and it wasn't me or Guillaume! [18:04:12] * odder happy [18:05:21] ohcrap [18:05:33] didn't edit my monthly section. Monday am early I guess [18:07:47] csteipp: https://gerrit.wikimedia.org/r/#/c/71156/ that is [18:08:08] hey guys im helping out with the document foundation and libreoffice and they are having some major issues with spam, and they are currently using questy captch which works really well but the problem is international users. what is the best way to keep spam at a minimum to non existant [18:08:12] Who funds visual editor development? [18:08:17] odder: why is the bullet about seeing more banners phrased in a positive tone? [18:08:24] Aaron|home: thanks :) [18:08:27] 03(mod) Evaluate which resource loader modules really need position => top - 10https://bugzilla.wikimedia.org/47075 (10Helder) [18:08:27] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 (10Helder) [18:08:28] 03(NEW) Rollback should use exactly the original text instead of fetching the original text and save it again - 10https://bugzilla.wikimedia.org/50816 normal; MediaWiki: Page editing; () [18:08:34] Nemo_bis: ? [18:08:47] 03(mod) In paginated specialpage reports, include # of results & specify the end of the range displayed on this page - 10https://bugzilla.wikimedia.org/11269 +comment (10Bawolff (Brian Wolff)) [18:08:53] "It's more likely you'll see emergency-related banners on your wiki, instead of missing them because of a cookie error" [18:09:07] Nemo_bis: sumanah added that bit [18:09:11] oh [18:09:17] What's an emergency banner [18:09:24] I'm planning on working on this issue tomorrow noon [18:09:35] Nemo_bis: so you can complain after I have my go :-) [18:09:38] sumanah, bawolff, there isn't such a thing as emergency [18:09:39] "Fundraising red alert: All hands reach for your credit cards!" [18:09:39] Hi Vedmaka - the Wikimedia Foundation and Wikia are the ones providing engineers for VE development [18:09:42] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 +comment (10gerritadmin) [18:09:45] banner, just "emergency [18:09:53] priority banner" [18:09:53] eagles0513875: QuestyCaptcha is good for captcha. Assira is pretty good if your privacy policy allows it. Then you'll also want AbuseFilter to automatically block content comming in that looks like spam [18:09:53] sigh newlines [18:10:26] csteipp: they are already using the abuse filter and yet we still get spam and spam looking sign ups. I will suggest assira what does it do exactly [18:10:33] asirra [18:10:37] !spam [18:10:37] For information about combating and handling spam in MediaWiki, see and . [18:10:50] eagles0513875: have you already checked out see and . ? [18:11:12] im not in charge of the wiki so ill need to pass on this information. im just inquiring [18:11:15] eagles0513875: Asirra is microsofts captcha-- user has to pick dog pictures from images of dogs and cats, and tasks like that [18:11:42] csteipp: i dont think it would work as they are running everything on linux [18:12:02] eagles0513875: You may want to use SpamBlacklist with the url list from meta-- if your spam contains urls. [18:12:06] 03(mod) Evaluate which resource loader modules really need position => top - 10https://bugzilla.wikimedia.org/47075 +javascript (10Nemo) [18:12:06] 03(mod) Page settings dialog is not oriented for RTL - 10https://bugzilla.wikimedia.org/49613 +comment (10James Forrester) [18:12:26] eagles0513875: No microsoft required :) It's a web service. [18:12:26] Nemo_bis: in general, if you have to ask "why is it that something Sumana wrote is phrased in a positive tone" then the answer is "because Sumana prefers to help people, work on improving things, be constructive, etc." :) [18:12:32] sumanah: btw, out of all the things on your annoying little bug list, the one most suited to somebody totally new to mediawiki would probably be the transclude {{Special:Whatlinkshere}} [18:12:45] bawolff: please go ahead and move it to the top? [18:13:01] ok csteipp thanks for that info :) [18:13:10] sumanah: I didn't know it was you :) [18:13:29] csteipp: is there a way though with questy if the wiki is in a particular language for a particular country take france [18:13:31] 03(mod) VisualEditor: Using the formatting drop-down scrolls the page to the top (except in Firefox) - 10https://bugzilla.wikimedia.org/50792 normal->minor; summary; +comment (10James Forrester) [18:13:40] is there now way to have the questions in french? [18:13:44] Hopefully there are enough people working in the same spirit that "it's written in a friendly way" does not necessarily mean "Sumana wrote it" :) [18:14:15] sumanah: that's not what I'm talking about [18:14:26] ah ok [18:14:34] if it's inaccurate, please go ahead and edit and improve it [18:14:54] that bullet is making a judgement [18:14:54] 03(mod) Improve user feedback in html detected upload error - 10https://bugzilla.wikimedia.org/25163 summary (10Bawolff (Brian Wolff)) [18:14:55] eagles0513875: No, not that I know of [18:15:06] I rarely make judgements and I wouldn't define them accurate or inaccurate [18:15:29] csteipp: compared to other captchas questy is the best and keeps spam count on the TDF wiki very low as soon as we switch back to recaptcha spam and spam user sign ups skyrocketed [18:15:33] You totally make judgments Nemo_bis [18:15:37] 03(NEW) Keyboard shortcut for editing source - 10https://bugzilla.wikimedia.org/50817 normal; VisualEditor: Editing Tools; () [18:16:00] I think you and I may be using the word "judgment" differently, though [18:16:02] 03(mod) Evaluate which resource loader modules really need position => top - 10https://bugzilla.wikimedia.org/47075 (10Helder) [18:16:04] 03(mod) Code quality issues (tracking) - 10https://bugzilla.wikimedia.org/700 (10Helder) [18:16:13] giudizio? [18:16:34] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 +javascript (10Helder) [18:17:12] 03(NEW) internet explorer cannot display gerrit patch set with @/at sign in search result - 10https://bugzilla.wikimedia.org/50818 normal; Wikimedia: Git/Gerrit; () [18:18:00] anyway - every piece of writing is meant for an audience. The Tech News, in my opinion, is meant for not-very-techy Wikimedia users. Therefore it makes sense to tell them how the relevant change is affecting them [18:18:44] greg-g_: hey, check out https://bugzilla.wikimedia.org/show_bug.cgi?id=49935 - "Browser freezes on loading a large page" [18:18:56] eagles0513875: If you're a coder and want to add a patch for asking questy questions in a selected language, I'd be happy to review it. We don't use Questy at the WMF, so it doesn't get a lot of attention, even though it's probably the best captcha solution for small wikis [18:18:58] 03(mod) Fatal error on login attempt "WikibaseClient.php line 112: Class 'ValueParsers\ParserOptions' not found" - 10https://bugzilla.wikimedia.org/50807 +comment (10Antoine "hashar" Musso) [18:19:27] csteipp: i woudlnt call the document foundation wiki small [18:19:30] its quite big [18:19:53] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10gerritadmin) [18:19:59] what language is questy coded in and 2ndly i wouldnt know where to start with localization related stuff [18:20:15] 03(mod) Rollback should use exactly the original text instead of fetching the original text and save it again - 10https://bugzilla.wikimedia.org/50816 +comment (10db) [18:20:46] Questy (and most of ConfirmEdit) are PHP [18:20:58] eagles0513875: if you have people willing to create questions for the questy captcha on different languages, you can make it display questions on a desired language based on the browser's language preference [18:21:06] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10gerritadmin) [18:21:16] that might be something we can look at right there :) Vulpix :) [18:21:27] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10gerritadmin) [18:22:21] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10gerritadmin) [18:23:40] Vulpix: do you have a link on how to set that up? [18:26:32] Well, it should be done feeding $wgCaptchaQuestions[] with different arrays, depending on the $_SERVER['HTTP_ACCEPT_LANGUAGE'] variable [18:26:54] 03(mod) VisualEditor: Firefox 11 and 12 also need to be blacklisted - 10https://bugzilla.wikimedia.org/50780 +comment (10James Forrester) [18:27:06] 03(mod) VisualEditor: [Regression] Broken accesskey on edit tab (Ctrl-Alt-e) - 10https://bugzilla.wikimedia.org/50725 +comment (10gerritadmin) [18:27:12] I don't know if somebody have done this already, and at this moment I'm not confident enough in PHP to code it for you [18:27:28] maybe you can request an example of that on the extension's talk page [18:29:28] 03(mod) Add option to disable ULS - 10https://bugzilla.wikimedia.org/46306 +comment (10viswaprabha) [18:30:16] 03(mod) Vector: IE9 renders the sidebar with extra separators - 10https://bugzilla.wikimedia.org/50516 +comment (10jlemley) [18:30:35] 03(mod) Add option to disable ULS - 10https://bugzilla.wikimedia.org/46306 +comment (10viswaprabha) [18:34:45] How do you exit the block page? [18:34:59] which block page, Dusti? [18:35:06] the page: Block user [18:35:08] Use the form below to block write access from a specific IP address or username. This should be done only to prevent vandalism, and in accordance with policy. Fill in a specific reason below (for example, citing particular pages that were vandalized). [18:35:15] 03(mod) Add option to disable ULS - 10https://bugzilla.wikimedia.org/46306 +comment (10federicoleva) [18:35:32] I know it's MediaWiki text... I'm just not sure where [18:35:44] Dusti: what do you mean by "exit"? [18:35:51] edit [18:35:51] * rickyb98 quotes liangent [18:35:54] sorry, typo [18:35:57] oh.. [18:36:06] it's a mediawiki system message [18:36:07] wait [18:36:20] I guess it's blocktext or blockiptext [18:36:30] MediaWiki:Blockiptext [18:36:46] Block ip :) [18:36:48] Thanks guys :) [18:36:49] 03(mod) Compilation failed: regular expression is too large in ApiQueryExtracts - 10https://bugzilla.wikimedia.org/46581 +comment (10gerritadmin) [18:36:59] http://www.mediawiki.org/wiki/MediaWiki:Blockiptext [18:37:03] look, it's blockiptext [18:37:24] oh ok [18:38:07] Dusti: append &uselang=qqx to url to see message names [18:38:17] thanks :) [18:40:20] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10gerritadmin) [18:40:20] 03(mod) VisualEditor: [Regression] Section edit links have reverted to the old style (source only, not expanded) - 10https://bugzilla.wikimedia.org/50731 +comment (10gerritadmin) [18:46:48] 03(NEW) Text in edit summary should be escaped for wikilinks - 10https://bugzilla.wikimedia.org/50819 normal; MediaWiki extensions: WikidataRepo; () [18:50:55] 03(mod) Text in edit summary should be escaped - 10https://bugzilla.wikimedia.org/50819 summary; +comment (10Liangent) [18:51:58] 03(NEW) CentralNotice should not be displayed in print view - 10https://bugzilla.wikimedia.org/50820 normal; MediaWiki extensions: CentralNotice; () [18:54:34] 03(NEW) Rename MediaWiki extensions / WikidataRepo and WikidataClient to Wikibase* - 10https://bugzilla.wikimedia.org/50821 normal; Wikimedia: Bugzilla; () [18:56:53] 03(NEW) Right click spellcorrection does not register as a change - 10https://bugzilla.wikimedia.org/50822 normal; VisualEditor: ContentEditable; () [18:59:40] 03(mod) Fatal error on login attempt "WikibaseClient.php line 112: Class 'ValueParsers\ParserOptions' not found" - 10https://bugzilla.wikimedia.org/50807 +comment (10Antoine "hashar" Musso) [19:00:03] 03(mod) CentralNotice should not be displayed in print view - 10https://bugzilla.wikimedia.org/50820 +comment (10Matt Walker) [19:05:58] Hello [19:06:06] Hi [19:06:37] I have a question [19:06:45] I would like to know how to change the GeSHi colors [19:07:31] I have some code generated with the geshi css generator [19:07:43] but I don't know where to place it [19:10:00] Rand_: do you administer the mediawiki instance in question? [19:10:17] specifically, can you edit configuration files? [19:10:44] if so, you can create a page, 'MediaWiki:Geshi.css', and put the CSS there [19:11:28] yes. it's exactly what I did [19:11:36] and then edit your LocalSettings.php and set $wgUseSiteCss = true; [19:11:38] it does not have any effect [19:12:09] is your wiki public? [19:12:44] no [19:12:59] ok, so to confirm: you set the configuration variable? [19:13:51] yes [19:14:11] I can give you the generated css [19:14:19] 03(mod) VisualEditor: [Regression] Broken accesskey on edit tab (Ctrl-Alt-e) - 10https://bugzilla.wikimedia.org/50725 +comment (10James Forrester) [19:14:21] maybe the sysntax is wrong [19:14:38] do you know how to use a javascript console in your browser? [19:14:45] or the id's are different [19:15:03] no [19:15:10] what for [19:15:21] to check if the local CSS module loaded [19:15:46] Vector.css works [19:15:56] also geshi.css works [19:16:09] only the generated css does not [19:16:37] ok, pastebin the css [19:17:02] https://dpaste.de/sZZ8H/ [19:17:16] I generated it here [19:17:18] http://mediawiki.jontse.com/extensions/SyntaxHighlight_GeSHi/geshi/contrib/cssgen.php?step=2 [19:17:29] because locally it didn't want to load [19:18:00] http://mediawiki.jontse.com/extensions/SyntaxHighlight_GeSHi/geshi/contrib/cssgen.php?step [19:19:15] ok, on a page on your wiki with some syntax highlighting, can you 'view source' in your browser, and search for 'ext.geshi.local' somewhere in the raw HTML? [19:19:19] I also have this code placed in the Geshi.css [19:19:20] https://dpaste.de/whRbQ/ [19:19:39] one moment [19:19:48] 03(mod) Enable CAPTCHA for all edits of non-confirmed users on pt.wikipedia in order to reduce editing activity - 10https://bugzilla.wikimedia.org/49860 +comment (10bharris) [19:20:18] I found it [19:21:06] OK, and what programming language is the code block in? [19:21:14] is it ? [19:22:17] n [19:22:18] no [19:22:25] you mean my code [19:22:26] ? [19:22:49] yeah, the CSS that you put on dpaste look like it's styling C++ specifically [19:23:01] at least that's what i'm guessing the '.cpp' selector means [19:23:07] I didn't put it in anything [19:23:26] I just pasted in geshi.css [19:23:33] I'll try what you said [19:25:15] 03(mod) VisualEditor: Right click spellcorrection does not register as a change - 10https://bugzilla.wikimedia.org/50822 summary; +comment (10James Forrester) [19:25:40] 03(mod) VisualEditor: Categories deleted or misplaced when a reference is added (in Opera) - 10https://bugzilla.wikimedia.org/50385 +comment (10matma.rex) [19:26:09] ok i put it between and [19:26:16] nothing happens [19:26:55] sorry, i don't know, then [19:27:28] but how would you change the colors if you have to? [19:27:35] you edit the php files? [19:27:57] like it says in the manual [19:28:37] 03(mod) Merge "globalblock" and "globalunblock" rights - 10https://bugzilla.wikimedia.org/44792 +comment (10gerritadmin) [19:28:38] 03(mod) VisualEditor: Remove Opera from blacklist - 10https://bugzilla.wikimedia.org/50813 +comment (10Bartosz Dziewoński) [19:29:15] 03(mod) Skin code in MobileFormatter - 10https://bugzilla.wikimedia.org/48551 +comment (10jrobson) [19:29:54] sumanah... ouch, away [19:38:39] 03(NEW) Semantic media wiki true words and parser functions - 10https://bugzilla.wikimedia.org/50823 enhancement; MediaWiki extensions: ParserFunctions; () [19:39:07] 03(NEW) generate formatted IRC logs - 10https://bugzilla.wikimedia.org/50824 enhancement; Tools: WM-Bot; () [19:42:27] 03(mod) VisualEditor: Faulty(?) PERSONDATA block is causing duplicated categories/default sort and subst:'ed PERSONDATA block - 10https://bugzilla.wikimedia.org/50120 +comment (10James Forrester) [19:47:08] !ping [19:47:08] Pong. [19:49:00] 03(NEW) Special:Nearby fails on Commons due to non-existent element. - 10https://bugzilla.wikimedia.org/50825 normal; MediaWiki extensions: MobileFrontend; () [19:49:58] 03(NEW) VisualEditor: edits fail on hitting the spam blacklist (with a cryptic error message) - 10https://bugzilla.wikimedia.org/50826 normal; VisualEditor: General; () [19:50:13] 03(NEW) Provide an API to activate VE on arbitrary textareas for Gadgets and user scripts and document it at [[:mw:VisualEditor/API]] - 10https://bugzilla.wikimedia.org/50827 normal; VisualEditor: General; () [19:50:30] 03(mod) Special:Nearby fails on Commons due to non-existent element. - 10https://bugzilla.wikimedia.org/50825 +comment (10Nux) [19:51:41] 03(mod) VisualEditor: [Regression] Section edit links have reverted to the old style (source only, not expanded) - 10https://bugzilla.wikimedia.org/50731 +comment (10James Forrester) [19:51:55] 03(mod) VisualEditor: Opening "Edit" tab (and section edit links) with a middle-click / Ctrl-click / Shift-click (new tab/window) disabled somehow - 10https://bugzilla.wikimedia.org/49993 +comment (10James Forrester) [19:52:17] 03(mod) Unclosed formatting elements not properly encapsulated when leaking out - 10https://bugzilla.wikimedia.org/50536 (10ssastry) [19:52:34] 03(NEW) VisualEditor: edits fail on hitting the abuse filter (with a cryptic error message) - 10https://bugzilla.wikimedia.org/50828 normal; VisualEditor: General; () [19:53:16] 03(NEW) Echo notifications show [No page] instead of pagename if the page was deleted - 10https://bugzilla.wikimedia.org/50829 normal; MediaWiki extensions: Echo; () [19:56:41] 03(NEW) Debug mode causes different rendering of CSS in IE9 - 10https://bugzilla.wikimedia.org/50830 normal; MediaWiki: ResourceLoader; () [19:56:57] 03(NEW) Recognize
and convert them to a
- 10https://bugzilla.wikimedia.org/50831 normal; Parsoid: General; () [19:58:23] 03(mod) VisualEditor: edits fail on hitting the abuse filter (with a cryptic error message) - 10https://bugzilla.wikimedia.org/50828 +comment (10Jesús Martínez Novo (Ciencia Al Poder)) [19:58:23] 03(mod) VisualEditor: Nicer integration with AbuseFilter errors - 10https://bugzilla.wikimedia.org/50472 +comment (10Jesús Martínez Novo (Ciencia Al Poder)) [19:58:33] 03(mod) Need to be root to run qa/browsertests - 10https://bugzilla.wikimedia.org/50384 +comment (10Ori Livneh) [20:00:23] 03(mod) Database inserts are slow - 10https://bugzilla.wikimedia.org/48851 +comment (10marc) [20:02:11] 03(mod) VisualEditor: Support DOM (visual, wysiwig) editing of nested templates - 10https://bugzilla.wikimedia.org/50182 (10kwwilliams) [20:04:26] 03(NEW) Results of Disambiguator extension are not complete - 10https://bugzilla.wikimedia.org/50832 normal; MediaWiki extensions: Disambiguator; () [20:05:00] 03(NEW) Semantic Forms master loses current form/template values - 10https://bugzilla.wikimedia.org/50833 major; MediaWiki extensions: SemanticForms; () [20:07:09] 03(NEW) IE 6 requires a space after first-letter - 10https://bugzilla.wikimedia.org/50834 minor; MediaWiki: ResourceLoader; () [20:07:33] 03(mod) Semantic Forms master loses current form/template values - 10https://bugzilla.wikimedia.org/50833 +comment (10jamie) [20:11:11] 03(NEW) Nested s considered harmful - 10https://bugzilla.wikimedia.org/50835 normal; Parsoid: serializer; () [20:12:36] Hey, for anyone who cares, can someone explain to me why the following two links aren't the same page? https://ky.wikipedia.org/wiki/Wikipedia_talk:Community_Portal and https://ky.wikipedia.org/wiki/Wikipedia_%D0%B1%D0%B0%D0%B0%D1%80%D0%BB%D0%B0%D1%88%D1%83%D1%83:Community_Portal [20:12:42] >_> [20:13:36] canonical namespace name? [20:13:50] Vulpix: One should redirect to the other, no? [20:13:55] oops, no [20:14:18] because you only have half the namespace translated [20:14:40] Sky2042: "Wikipedia talk" is not an alias to "Wikipedia баарлашуу" [20:14:51] http://ky.wikipedia.org/w/api.php?action=query&meta=siteinfo&siprop=namespaces|namespacealiases [20:14:54] Wikipedia talk: is on main namespace [20:14:56] Confirmed [20:15:12] well, Wikipedia talk is not a namespace [20:16:00] So the alias didn't get set. Fantastic. [20:16:43] 03(mod) Add option to disable ULS - 10https://bugzilla.wikimedia.org/46306 +comment (10matma.rex) [20:19:45] 03(mod) VisualEditor: Nested identical annotations can be additive, not just identical - 10https://bugzilla.wikimedia.org/49755 +comment (10gerritadmin) [20:20:12] 03(mod) Add page for listing and removing throttle overrides - 10https://bugzilla.wikimedia.org/48954 +comment (10gerritadmin) [20:20:34] 03(mod) Special:Nearby fails on Commons due to non-existent element. - 10https://bugzilla.wikimedia.org/50825 +comment (10Jon) [20:20:35] 03(mod) Nearby broken on desktop - Uncaught TypeError: Cannot set property 'ontouchstart' of undefined - 10https://bugzilla.wikimedia.org/50761 +comment (10Jon) [20:21:25] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 +comment (10kipod) [20:26:23] 03(mod) Add page for listing and removing throttle overrides - 10https://bugzilla.wikimedia.org/48954 (10Tyler Romeo) [20:28:06] 03(mod) VisualEditor: Editing leads to some characters (of wikitext) cut off in later section - 10https://bugzilla.wikimedia.org/50149 +comment (10James Forrester) [20:28:51] 03(mod) VisualEditor: Miscellaneous tags added - 10https://bugzilla.wikimedia.org/49892 +comment (10James Forrester) [20:30:53] 03(mod) MediaWiki internal error, when visiting redirect page of Media namespace - 10https://bugzilla.wikimedia.org/32030 +comment (10Edward Chernenko) [20:36:04] 03(mod) Add Brazilian Portuguese translations to MathJax - 10https://bugzilla.wikimedia.org/49267 +comment (10mflaschen) [20:36:35] 03(mod) VisualEditor:   s converted to space characters (32s not 160s) on round-trip - 10https://bugzilla.wikimedia.org/50339 +comment (10James Forrester) [20:40:34] 03(NEW) loading a page which requires many fonts, causes high CPU load - 10https://bugzilla.wikimedia.org/50836 normal; MediaWiki extensions: UniversalLanguageSelector; () [20:40:54] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10kolega2357) [20:42:42] 03(mod) Vector: IE9 renders the sidebar with extra separators - 10https://bugzilla.wikimedia.org/50516 +comment (10gerritadmin) [20:44:31] 03(mod) floats out of a table(?) - 10https://bugzilla.wikimedia.org/50392 summary; +comment (10James Forrester) [20:48:56] Trying to show an image that I manually uploaded to my webhost on a page, but cant get it to show [20:50:31] 03(mod) MediaWiki internal error, when visiting redirect page of Media namespace - 10https://bugzilla.wikimedia.org/32030 +comment (10edwardspec) [20:53:07] gooderz: Upload via Special:Upload. You need to add things to the db in addition to the image just physcially being on the server [20:54:03] And then just use the [[File:File.jpg]] tag to show it on the page? [20:54:42] 03(mod) Support language variant conversion in Parsoid - 10https://bugzilla.wikimedia.org/41716 +comment (10liangent) [20:55:18] 03(NEW) Provide special page with a table of aggregated statistics about filters - 10https://bugzilla.wikimedia.org/50837 normal; MediaWiki extensions: AbuseFilter; () [20:57:56] This code I have in MediaWiki:Vector.css abruptly stopped working one day. I am not sure when it stopped working nor am I sure what would've caused it to stop working. (Yes, I'm basically useless.) Can someone take a look and see if there's something flagrantly wrong that I'm missing? http://wikimediadc.org/wiki/MediaWiki:Vector.css [20:58:18] 03(NEW) Uploading draft patch sets to non-draft changes -- no submit button visible - 10https://bugzilla.wikimedia.org/50838 normal; Wikimedia: Git/Gerrit; () [20:59:07] Why langlinks doesn't contain all languages? http://en.wikipedia.org/w/api.php?action=query&prop=langlinks&format=jsonfm&lllimit=500&titles=Nikon_F3 doesn't have my language, "fa". while wikidata have it http://www.wikidata.org/wiki/Q1470486#sitelinks [20:59:10] 03(NEW) Table of filters should be sortable without reloading the page - 10https://bugzilla.wikimedia.org/50839 normal; MediaWiki extensions: AbuseFilter; () [20:59:17] 03(mod) Uploading draft patch sets to non-draft changes -- no submit button visible - 10https://bugzilla.wikimedia.org/50838 +comment (10gerritadmin) [21:00:35] 03(mod) Provide special page with a table of aggregated statistics about filters - 10https://bugzilla.wikimedia.org/50837 +comment (10mybugs.mail) [21:01:31] 03(mod) Uploading draft patch sets to non-draft changes -- no submit button visible - 10https://bugzilla.wikimedia.org/50838 (10christian) [21:01:41] 03(mod) VisualEditor: Provide integration as an API service - 10https://bugzilla.wikimedia.org/50827 normal->15enhancement; summary; +comment (10James Forrester) [21:02:24] 03(mod) [SF] Some Boolean values change from "Yes" to "No" - 10https://bugzilla.wikimedia.org/50833 summary; +comment (10Yaron Koren) [21:03:26] 03(mod) Uploading draft patch sets to non-draft changes -- no submit button visible - 10https://bugzilla.wikimedia.org/50838 +comment (10innocentkiller) [21:04:56] 03(mod) Database inserts are slow - 10https://bugzilla.wikimedia.org/48851 +comment (10Yuvi Panda) [21:05:05] anyone? it is related to a gadget that have highly usage... [21:07:38] ebraminio: I believe langlinks only lists locally defined language links, not the ones that come in from Wikidata. I think there is a way to get the full set from the API but I don't know how offhand [21:08:13] there's a parameter [21:08:25] look in the docs on api.php [21:09:56] 03(mod) loading a page which requires many fonts, causes high CPU load - 10https://bugzilla.wikimedia.org/50836 +comment (10fur.hewiki) [21:10:37] RoanKattouw: There is not any language link locally for that page, http://en.wikipedia.org/w/index.php?title=Nikon_F3&action=edit§ion=10 so langlinks contains old data before wikidata? [21:10:45] 03(mod) Publish the Wikibase ontology file - 10https://bugzilla.wikimedia.org/47656 +comment (10gerritadmin) [21:11:47] 03(mod) Vector: IE9 renders the sidebar with extra separators - 10https://bugzilla.wikimedia.org/50516 +comment (10Bartosz Dziewoński) [21:11:49] MatmaRex: for forcing langlinks to querying from wikidata or using wikidata api? [21:12:44] ebraminio: an additional parameter to api.php action=query&prop=langlinks [21:12:47] let me look [21:13:25] hm [21:13:29] or maybe there isn't [21:13:48] actually, doesn't langlinks include the wikidata links anyway? [21:14:11] there's a 'effectivelanglinks' parameter to action=parse to include Wikidata langlinks [21:14:20] but i don't see a similar one for the actual langlinks api [21:14:53] ebraminio: do a null edit and there is fa [21:15:00] I've already done [21:17:32] liangent, MatmaRex: hmm, so what do you suggest for my gadget, http://en.wikipedia.org/wiki/User:Ebraminio/ArticleTranslator.js making query from wikidata? [21:18:56] 03(mod) ./ inserted at the start of wikilinks - 10https://bugzilla.wikimedia.org/50720 +comment (10Roan Kattouw) [21:20:18] ebraminio: wait a minute. I guess I want to file a bug? [21:20:27] ebraminio: prop=langlinks should include wikidata-provided interwikis, really [21:20:43] does it not? [21:20:59] even if you purge and/or null edit the page? [21:21:12] 03(mod) loading a page which requires many fonts, causes high CPU load - 10https://bugzilla.wikimedia.org/50836 +comment (10fur.hewiki) [21:21:30] 03(mod) Disable ArticleFeedback <=v4 on Wikimedia wikis - 10https://bugzilla.wikimedia.org/43892 +comment (10b) [21:21:56] MatmaRex: I doubt wikibaseclient is not updateing langlinks table on sitelink changes and clears parsercache only [21:22:14] so langlinks stored in parsercache is updated for user view [21:22:27] liangent: that actually might be happening [21:22:38] 03(mod) Merge "globalblock" and "globalunblock" rights - 10https://bugzilla.wikimedia.org/44792 (10Legoktm) [21:22:57] liangent: see allof the bugs linked in https://bugzilla.wikimedia.org/show_bug.cgi?id=5382#c16 [21:23:05] liangent: some of them are caused by precisely that [21:23:36] liangent: i nad to null edit 50k pages at pl.wp to get [[special:unconnectedpages]] to show accurate results [21:23:39] had to* [21:24:11] what's unconnectedpages? [21:24:24] pages w/o a wikidata item [21:24:28] pages not connected to WD [21:24:31] ah, foiled. [21:24:51] it's storing that info in page_props [21:27:35] MatmaRex: I'm not sure what is "stored that info in page_props" you mentioned [21:27:51] but I successfully removed some items from that page by null edits [21:28:38] !database page_props [21:28:38] http://www.mediawiki.org/wiki/Manual:Database_layout [21:28:46] liangent: https://en.wikipedia.org/wiki/Special:PagesWithProp?propname=wikibase_item&propname-other= [21:28:49] MatmaRex: I know that table [21:30:25] MatmaRex: if you can confirm wikibaseclient is not update langlinks and/or page_props on wd change, could you file a bug? [21:30:29] I'm not so sure [21:30:45] liangent: it actually seemed to work last time i tested this [21:30:51] (this week) [21:30:58] it certainly did not work before, though [21:32:41] MatmaRex: do you know how is page_touched exactly defined? [21:33:06] Last time the page was reparsed. [21:33:07] I may want to do null edits regularly for pages older than some time [21:33:15] Heh. [21:33:19] Not all edits are null! [21:33:29] Hi! Can I ask about http://www.mediawiki.org/wiki/Extension:Approved_Revs ? The question would be: how to activate it for all pages new and old? [21:33:52] liangent: i don't know at all, sorry [21:33:52] Elsie: reparsed and linkupdated? [21:34:12] Elsie: you mean stuff like {{subst:something}} in current wikitext? [21:34:21] liangent: I think page_touched is only reparsed. But reparsing usually also entails links updates, I think. [21:34:32] of course I won't take current text and save it again [21:34:33] liangent: Yeah, weird stuff like that. [21:34:39] That's what a null edit is. [21:34:43] Take current text and re-save. [21:34:46] 03(mod) Database inserts are slow - 10https://bugzilla.wikimedia.org/48851 +comment (10afeldman) [21:34:49] there's a &forcelinkupdate param [21:35:11] I wonder if that updates page_touched. [21:35:28] I guess it would. [21:35:44] &forcelinkupdate=1 doesn't do anything in my experience. :P [21:35:58] 03(mod) Hide "(optional)" when I check "Use a temporary random password and send it to the email address specified below" - 10https://bugzilla.wikimedia.org/47686 +comment (10gerritadmin) [21:36:10] https://bugzilla.wikimedia.org/ # Such a sad search icon. [21:36:23] MatmaRex: well it really does [21:36:29] how did you test it? [21:36:44] 03(mod) Hide "(optional)" when I check "Use a temporary random password and send it to the email address specified below" - 10https://bugzilla.wikimedia.org/47686 -patch-in-gerrit (10Bartosz Dziewoński) [21:36:50] i didn't, really [21:36:54] i'm just complaining [21:36:58] caching sucks in general [21:37:11] all ten or so kinds of it mediawiki does [21:38:10] liangent: https://bugzilla.wikimedia.org/show_bug.cgi?id=42616 [21:38:10] MatmaRex: will wikipedia need 10x servers if there's no such cache? [21:38:45] liangent: So is this seems right? http://en.wikipedia.org/w/api.php?action=query *&forcelinkupdate=1* &prop=langlinks&format=jsonfm&lllimit=500&titles=Nikon_F3 [21:39:04] http://en.wikipedia.org/w/api.php?action=query&forcelinkupdate=1&prop=langlinks&format=jsonfm&lllimit=500&titles=Nikon_F3 [21:39:08] "warnings": { [21:39:08] "main": { [21:39:08] "*": "Unrecognized parameter: 'forcelinkupdate'" [21:39:08] } [21:39:08] }, [21:39:09] hmm [21:39:10] ebraminio: nope [21:39:29] api.php?action=purge&forcelinkupdate&titles=Nikon_F3 first [21:39:32] in a separate call [21:40:02] liangent: more like 1000x ;) [21:41:08] liangent: Well, my gadget is querying all links of page, I guess this call would make gadget very slow [21:41:13] 03(mod) [SF] Some Boolean values change from "Yes" to "No" - 10https://bugzilla.wikimedia.org/50833 +comment (10jamie) [21:42:33] ebraminio: if what MatmaRex said is true, you don't really need to change your script [21:42:45] just go through existing pages and linkupdates them [21:42:54] 03(mod) Publish the Wikibase ontology file - 10https://bugzilla.wikimedia.org/47656 +comment (10Daniel Zahn) [21:43:32] 03(mod) Publish the Wikibase ontology file - 10https://bugzilla.wikimedia.org/47656 +comment (10dzahn) [21:45:10] 03(mod) Change URL in announcement email for new wikis to https as default - 10https://bugzilla.wikimedia.org/48572 +comment (10gerritadmin) [21:45:49] liangent: I mean for example for this: http://en.wikipedia.org/w/api.php?action=purge&forcelinkupdate=1&titles=Barack_Obama it takes 16 second to be done [21:46:01] 03(mod) Change URL in announcement email for new wikis to https as default - 10https://bugzilla.wikimedia.org/48572 +comment (10Daniel Zahn) [21:46:50] ebraminio: but it only need to be done once [21:46:57] and only for some pages [21:46:57] 03(mod) [SF] Some Boolean values change from "Yes" to "No" - 10https://bugzilla.wikimedia.org/50833 +comment (10jamie) [21:47:06] Is it possible to use tidy/infoboxes on servers without root access? [21:47:20] some = have a wikibase entry but not touched recently [21:47:49] purging those 50k took less than two days for me [21:47:59] i probably have thecode somewhere, but it's in Ruby :P [21:49:11] MatmaRex: you can send requests without waiting for responses [21:49:31] hi Robotnikthingy [21:49:39] hi [21:49:49] Robotnikthingy: "tidy/infoboxes" - you mean to run HTML Tidy on infoboxes? maybe I misread you [21:49:50] just monitor the job queue length on wiki to avoid overloading it [21:50:06] Im basically having a bit of trouble with using infoboxes [21:50:15] ive researched around and i found i need to use tidy [21:50:18] liangent: sounds unresponsible. :P [21:50:25] but im not sure how to enable it [21:50:29] sumanah: lots of templates taken from wikipedia require Tidy [21:50:37] i was considering running it off a few machines at the same time [21:50:42] including some infobox templates [21:50:46] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 normal->major (10Erik Moeller) [21:50:52] but decided that the time i'd spend coding that up wouldn't be worth it [21:51:05] the special page doesn't even have a corresponding api, eh [21:51:14] special page? [21:51:25] special:unconnectedpages [21:51:25] My problem is that i dont know how to install Tidy, or if its just an extension [21:51:35] !wg UseTidy | Robotnikthingy [21:51:35] Robotnikthingy: https://www.mediawiki.org/wiki/Manual:$wgUseTidy [21:51:45] MatmaRex: anyway you can run direct db query on labs [21:52:26] liangent, MatmaRex: Can you test my gadget just once please? :) Open http://en.wikipedia.org/wiki/Peter_des_Roches for example, press ctrl+shift+j (on chrome) or ctrl+shift+k on firefox and paste this importScript('User:Ebraminio/ArticleTranslator.js'); find translate button near article main header and press it [21:52:36] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 (10ssastry) [21:53:51] ebraminio: and ctrl+shift+i on Opera, funnily. :) [21:54:28] ebraminio: works, translates a bunch of links for me [21:54:39] King John of England(جان انگلستان) and his son Henry III(هنری سوم انگلستان) [21:54:46] Richard I(ریچارد یکم انگلستان)'s [21:54:52] Poitiers(پواتیه) [21:54:55] those are the first four [21:54:57] MatmaRex: okay, thanks, you could change the language by clicking "fa" [21:55:19] ebraminio: what's that "+" link? [21:55:35] MatmaRex: but users complaining about why not all links can not translated [21:55:46] ebraminio: well, maybe not all have interwikis? [21:55:55] liangent: it will make a table of not translated links on the page [21:56:02] ebraminio: https://lists.wikimedia.org/mailman/listinfo/qa is a list you can post to to ask people to run through your test cases and report issues :) [21:56:07] Dominican Order 56 500+ [21:56:09] Thomas Wolsey 33 500+ [21:57:20] sumanah: ooh, has the mailman sign-up page been redesigned? [21:57:21] it looks snazzy [21:57:43] ori-l: Thehelpfulone and qgil worked on that - it is lovely! [21:58:05] yes, i like it. kudos Thehelpfulone & qgil [21:58:53] 03(mod) floats out of a table(?) - 10https://bugzilla.wikimedia.org/50392 (10ssastry) [21:58:55] MatmaRex: it means Dominican Order have 56 link but not user native language, and have 500+ backlinks [21:59:14] :) ori-l glad you like it. Making Mailiman look nice almost felt like heresy ;) [21:59:32] 03(mod) [SF] Default values incorrectly applied when editing existing pages - 10https://bugzilla.wikimedia.org/50833 summary; +comment (10Yaron Koren) [21:59:42] ebraminio: yeah, i got it [21:59:45] a fun script, by the way [21:59:59] it seems to work, anyway. [22:00:05] MatmaRex: it also works on edit mode [22:00:12] MatmaRex: for example for translating navbox templates [22:00:18] heh [22:00:25] ebraminio: hey, that's sweet [22:00:35] i actually made something similar once, but less cool [22:00:42] 03(mod) VisualEditor: Reopening page in VE immediately after saving page in VE loads old version - 10https://bugzilla.wikimedia.org/47420 +comment (10James Forrester) [22:01:17] MatmaRex: oh, so what can I do for fixing the script? using wikidata api doesn't seem very good [22:01:45] MatmaRex: also purge all linked articles also not very cool [22:02:37] does it not work, really? D: [22:02:41] 03(mod) VisualEditor: Reopening page in VE immediately after saving page in VE loads old version - 10https://bugzilla.wikimedia.org/47420 (10ssastry) [22:03:00] ebraminio: there's a script to independently check article's wikidata id [22:03:10] let me find it [22:03:38] ebraminio: https://www.wikidata.org/wiki/User:Yair_rand/WikidataInfo.js [22:03:46] it might provide some inspiration [22:05:10] if I'm doing it, I prefer just using langlinks without purging and simply wait for old data to go away [22:05:25] 03(mod) VisualEditor: Reopening page in VE immediately after saving page in VE loads old version - 10https://bugzilla.wikimedia.org/47420 +comment (10jforrester) [22:05:54] MatmaRex: thanks [22:07:07] Well i added the config stuff for Tidy into my settings, but i still get an error when trying to use wikipedia's infobox [22:07:14] [254d7ef8] 2013-07-05 22:06:26: Fatal exception of type ScribuntoException [22:07:21] 03(mod) Parsoid adds span with newline after extension tags - 10https://bugzilla.wikimedia.org/50713 +comment (10gerritadmin) [22:07:26] !debug [22:07:26] For information on debugging (including viewing errors), see http://www.mediawiki.org/wiki/Manual:How_to_debug . A list of related configuration variables is at https://www.mediawiki.org/wiki/Manual:Configuration_settings#Debug.2Flogging [22:10:00] 03(NEW) VisualEditor: Clean up 'cache': 'false' - 10https://bugzilla.wikimedia.org/50840 normal; VisualEditor: Technical Debt; () [22:10:23] 03(mod) [SF] Default values incorrectly applied when editing existing pages - 10https://bugzilla.wikimedia.org/50833 +comment (10jamie) [22:10:25] 03(mod) VisualEditor: Clean up 'cache': 'false' - 10https://bugzilla.wikimedia.org/50840 normal->minor (10James Forrester) [22:12:51] 03(mod) [SF] Default values incorrectly applied when editing existing pages - 10https://bugzilla.wikimedia.org/50833 +comment (10Yaron Koren) [22:21:13] 03(mod) VisualEditor: Transclusion display garbled after removing parameter (CSS caching issue) - 10https://bugzilla.wikimedia.org/50814 summary; +comment (10James Forrester) [22:22:20] 03(mod) VisualEditor: Transclusion display garbled after removing parameter (CSS caching issue) - 10https://bugzilla.wikimedia.org/50814 +comment (10cmcmahon) [22:25:41] 03(mod) Call to undefined method SkinMobile::getLanguages() - 10https://bugzilla.wikimedia.org/50784 +comment (10redekopmark) [22:29:03] 03(NEW) tags should be applied to the minimal rather than maximal content - 10https://bugzilla.wikimedia.org/50841 normal; Parsoid: General; () [22:29:50] 03(mod) Call to undefined method SkinMobile::getLanguages() - 10https://bugzilla.wikimedia.org/50784 +comment (10redekopmark) [22:30:37] 03(NEW) Add "Work in progress" button - 10https://bugzilla.wikimedia.org/50842 normal; Wikimedia: Git/Gerrit; () [22:41:34] 03(mod) tags should be applied to the minimal rather than maximal content - 10https://bugzilla.wikimedia.org/50841 (10ssastry) [22:41:42] Has anyone in here ever set up a simulated checkuser? [22:43:51] Dusti: simulated? [22:43:59] you mean on a local installation? [22:44:08] Right, for testing [22:44:16] that gives access to simulated data instead of real data [22:44:28] I own www.testwiki.org [22:46:13] 03(mod) tags should be applied to the minimal rather than maximal content - 10https://bugzilla.wikimedia.org/50841 +comment (10Liangent) [22:46:32] Dusti: so? [22:46:56] I'm trying to set up a simulated checkuser that people can use to test, instead of giving them access to real checkuser data [22:48:49] Dusti: oh this [22:48:55] All those secret IP addresses [22:49:12] edit the extension a bit to remove the hook for logging user data? [22:49:22] hmm, that may work [22:50:46] MatmaRex: using 'wbgetentities' as a drop in api for prop=langlinks is not applicable because it doesn't resolve redirects and it doesn't (I don't have with problem with jsonp part). is there any change a bug filled for this problem? no problem if it doesn't resolved soon (in one year for example :P) [22:51:12] 03(mod) tags should be applied to the minimal rather than maximal content - 10https://bugzilla.wikimedia.org/50841 (10ssastry) [22:51:23] ebraminio1: no idea, sorry [22:51:33] ebraminio1: aso, you canuse CORS AJAX on Wikimedia wikis? [22:51:50] !wp CORS [22:51:50] https://en.wikipedia.org/?title=CORS [22:52:02] !wp Cross-origin resource sharing [22:52:02] https://en.wikipedia.org/?title=Cross-origin+resource+sharing [22:52:03] MatmaRex: I am doing it using JSONP, it is okay [22:53:02] ebraminio1: https://gerrit.wikimedia.org/r/9624 [22:53:27] here's an example [22:55:33] 03(mod) tags should be applied to the minimal rather than maximal content - 10https://bugzilla.wikimedia.org/50841 +comment (10rohde) [22:55:55] Well it appears that infoboxes cannot be installed in mediawiki on shared hosts, because you can run lua on shared hosts :( [22:57:02] 03(NEW) Use consistent preferences icon - 10https://bugzilla.wikimedia.org/50843 normal; MediaWiki extensions: Echo; () [22:57:29] Robotnikthingy: you might try using some older versin of the templates [22:57:37] Robotnikthingy: which did not yet use lua scripting [22:57:48] thats what im going to have to do [22:57:50] 03(mod) Use consistent preferences icon - 10https://bugzilla.wikimedia.org/50843 +comment (10swalling) [22:57:55] MatmaRex: I mean it doesn't support + button needed functionally and it will not work on redirects but I don't have problem on CORS because api.php supports JSONP and I am already using it [22:58:15] 03(mod) VisualEditor: Provide a GuidedTour for first-time VisualEditor users (ones for both newbies for and experienced editors?) - 10https://bugzilla.wikimedia.org/50601 +comment (10erik) [22:58:28] 03(mod) Use consistent preferences icon - 10https://bugzilla.wikimedia.org/50843 +comment (10swalling) [22:58:55] 03(mod) Compilation failed: regular expression is too large in ApiQueryExtracts - 10https://bugzilla.wikimedia.org/46581 +comment (10gerritadmin) [22:58:56] MatmaRex: just wanted a bug filled for fixing langlinks bug [22:59:13] if making sense [22:59:41] ebraminio: per MatmaRex it's already fixed [23:00:04] liangent: very sorry, thanks [23:00:08] MatmaRex: ^ [23:00:38] it's only needed to cleanup "dirty pages" left they during the time when it was not fixed [23:00:55] *left there [23:05:25] 03(mod) Nested s considered harmful - 10https://bugzilla.wikimedia.org/50835 +comment (10gerritadmin) [23:15:59] 03(mod) Domino does not handle additive formatting elements correctly - 10https://bugzilla.wikimedia.org/50604 (10ssastry) [23:16:53] 03(NEW) Special:Properties add properties search form - 10https://bugzilla.wikimedia.org/50844 normal; MediaWiki extensions: Semantic MediaWiki; () [23:17:27] 03(NEW) test2: intermittent fatal from GlobalFunctions - 10https://bugzilla.wikimedia.org/50845 normal; MediaWiki: General/Unknown; () [23:17:31] 03(mod) VisualEditor: Provide a GuidedTour for first-time VisualEditor users (ones for both newbies for and experienced editors?) - 10https://bugzilla.wikimedia.org/50601 +comment (10swalling) [23:23:02] 03(mod) [SMW] 1.9.0 bugs (tracking) - 10https://bugzilla.wikimedia.org/41842 (10MWJames) [23:23:04] 03(mod) Special:Properties add properties search form - 10https://bugzilla.wikimedia.org/50844 (10MWJames) [23:24:27] 03(NEW) Add fonts for Armenian language in USL - 10https://bugzilla.wikimedia.org/50846 normal; MediaWiki extensions: UniversalLanguageSelector; () [23:25:19] 03(mod) Special:Properties add properties search form - 10https://bugzilla.wikimedia.org/50844 +comment (10gerritadmin) [23:26:19] 03(mod) VisualEditor: Provide a GuidedTour for first-time VisualEditor users (ones for both newbies for and experienced editors?) - 10https://bugzilla.wikimedia.org/50601 +comment (10mflaschen) [23:26:35] 03(mod) Add fonts for Armenian language in USL - 10https://bugzilla.wikimedia.org/50846 +comment (10xelgen.am) [23:29:08] 03(mod) test2: intermittent fatal from GlobalFunctions - 10https://bugzilla.wikimedia.org/50845 +comment (10Roan Kattouw) [23:29:39] 03(mod) VisualEditor: Categories deleted or misplaced when a reference is added (in Opera) - 10https://bugzilla.wikimedia.org/50385 +comment (10gerritadmin) [23:29:54] 03(mod) Call to undefined method SkinMobile::getLanguages() - 10https://bugzilla.wikimedia.org/50784 +comment (10jrobson) [23:34:33] 03(mod) Guided tours cannot distinguish between read and edit modes with VisualEditor - 10https://bugzilla.wikimedia.org/50186 (10Matthew Flaschen) [23:35:37] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10tomasz) [23:35:42] 03(mod) mw.hook listeners for GuidedTour for shouldSkip - 10https://bugzilla.wikimedia.org/48507 +comment (10mflaschen) [23:36:50] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10tomasz) [23:38:09] 03(mod) Loading a page which requires many fonts causes high CPU load - 10https://bugzilla.wikimedia.org/50836 +javascript; summary (10Nemo) [23:38:12] 03(mod) Browser freezes on loading a large page - 10https://bugzilla.wikimedia.org/49935 (10Nemo) [23:39:02] 03(NEW) Allow launching once per-user, per-situation - 10https://bugzilla.wikimedia.org/50847 enhancement; MediaWiki extensions: GuidedTour; () [23:40:37] 03(mod) Allow launching once per-user, per-situation - 10https://bugzilla.wikimedia.org/50847 +comment (10mflaschen) [23:41:03] 03(NEW) VisualEditor/Parsoid: Beta release to en.wp IP users - blocking issues (tracking) - 10https://bugzilla.wikimedia.org/50848 normal; VisualEditor: General; () [23:41:16] 03(mod) VisualEditor/Parsoid: Beta release to en.wp IP users - blocking issues (tracking) - 10https://bugzilla.wikimedia.org/50848 (10Erik Moeller) [23:41:17] 03(mod) Tracking bug (tracking) - 10https://bugzilla.wikimedia.org/2007 (10Erik Moeller) [23:42:36] 03(mod) VisualEditor: [Regression] Edit tab points to the oldid not the newid when saving (except for when creating pages) - 10https://bugzilla.wikimedia.org/50441 major->04BLOCKER (10Erik Moeller) [23:42:38] 03(mod) VisualEditor/Parsoid: Beta release to en.wp IP users - blocking issues (tracking) - 10https://bugzilla.wikimedia.org/50848 (10Erik Moeller) [23:43:03] 03(mod) User group for shwikipedia - 10https://bugzilla.wikimedia.org/50802 +comment (10kolega2357) [23:50:33] 03(mod) VisualEditor: ./ inserted at the start of wikilinks - 10https://bugzilla.wikimedia.org/50720 summary (10James Forrester) [23:50:34] 03(mod) VisualEditor/Parsoid: Beta release to en.wp IP users - blocking issues (tracking) - 10https://bugzilla.wikimedia.org/50848 (10James Forrester) [23:53:16] 03(mod) VisualEditor/Parsoid: Beta release to en.wp IP users - blocking issues (tracking) - 10https://bugzilla.wikimedia.org/50848 (10James Forrester) [23:56:20] 03(mod) Set import sources en:, w: on ml.wikibooks - 10https://bugzilla.wikimedia.org/50156 -shellpolicy +shell; summary; +comment (10Nemo) [23:59:01] 03(mod) Enable EducationProgram extension on Dutch language Wikipedia - 10https://bugzilla.wikimedia.org/50574 +comment (10Nemo) [23:59:01] 03(mod) Empty watchlist description: repeated sentence - 10https://bugzilla.wikimedia.org/50681 +comment (10gerritadmin)