[00:03:54] Elsie: you wanted it: I added an option in Preferences to enable or disable "OnlyRecentRecentChanges", and the code is on GitHub and manual is up to date http://www.mediawiki.org/wiki/Extension:OnlyRecentRecentChanges [00:05:32] All right. [00:05:37] 03(mod) Parsoid or VisualEditor: template {{-}} moved into following heading - 10https://bugzilla.wikimedia.org/52658 +comment (10Chris McKenna) [00:36:35] i have a problem with the resource loader with SMW - it is loading the resource array correctly but the styles are not being placed into the html - any ideas what i should check now? [00:36:45] i have $wgResourceLoaderDebug=true, but not sure where I should look next [01:45:11] Anyone awake in here that know something about ajax? [01:45:30] I'm new and just learning ajax and would like some help getting the # of articles from http://en.wikipedia.org/w/api.php?format=json&action=query&meta=siteinfo&siprop=statistics into a variable or replace the innerHTML of an id with. [01:45:45] There are currently 4,301,781 articles. [01:45:50] hypergrove: sorry, can't personally help, but I think someone else can [01:45:56] T13: let me see [01:46:19] ^^^ $( 'a#articleCount' ).html() is what I would like to update with a live count. - $.ajax({url: 'http://en.wikipedia.org/w/api.php?format=json&action=query&meta=siteinfo&siprop=statistics', dataType: json, success:function(result){$("#articleCount").html(result);}}); - When I try to run that, it gives me an $ is undefined error. - [21:41:28.125] TypeError: $ is undefined @ file:///G:/PortableApps/Notepad++Portable/CIS231/english [01:46:34] thx [01:46:35] hm [01:47:05] T13: $ is not defined -> jQuery was not loaded [01:47:16] you cannot use jQuery without jQuery. [01:47:35] unless you loaded it under some other variable [01:48:22] jQuery is not a built-in, but a library. You know that, right? [01:49:00] 03(mod) Complete list description for every Wikimedia mailing list instead of "[no description available]" - 10https://bugzilla.wikimedia.org/37537 +comment (10Daniel Zahn) [01:50:12] hypergrove: okay. By SMW, you mean Semantic MediaWiki? [01:51:11] 03(mod) wap.wikipedia.org (without language) does not work - 10https://bugzilla.wikimedia.org/47560 +comment (10dzahn) [01:51:39] 03(mod) wap.wikipedia.org (without language) does not work - 10https://bugzilla.wikimedia.org/47560 (10Daniel Zahn) [01:51:41] I do know that.. [01:52:12] T13: if you try running it in the console on en.wikipedia.org it will work, no? [01:52:43] Haven't tried it.. [01:52:49] 03(mod) merge wikivoyage channels during migration - 10https://bugzilla.wikimedia.org/41143 +comment (10dzahn) [01:53:41] 03(mod) Get an "Error: Request failed" message on first loading of [[Wikivoyage:User_account_migration]] and hitting edit tab - 10https://bugzilla.wikimedia.org/41945 +comment (10Daniel Zahn) [01:54:43] T13: try either loading jquery (either locally or from Google/jquery.com/somewhere else) or running it in the console on a WMF wiki, and tell me what error it gets, or if it works [01:54:57] or if it's the same error [01:55:02] working on it. :) [01:55:07] 03(mod) CentralAuth doesn't see a local account: user unable to merge accounts from home wiki or to merge local to global account - 10https://bugzilla.wikimedia.org/42106 +comment (10Daniel Zahn) [02:09:31] 03(NEW) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 normal; MediaWiki: Skin and page rendering; () [02:10:21] 03(mod) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 (10Matt Walker) [02:10:23] 03(mod) BiDi: LTR and RTL mixed up (tracking) - 10https://bugzilla.wikimedia.org/28708 (10Matt Walker) [02:13:11] 03(mod) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 +comment (10gerritadmin) [02:13:15] 03(mod) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 (10Gerrit Notification Bot) [02:13:30] 03(mod) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 (10Matt Walker) [02:16:30] T13: ? [02:18:37] sidetracked putting baby to bed. [02:20:24] http://en.wikipedia.org/wiki/User:Technical_13/SandBox/test [02:21:21] first number is the starting point/static - middle number is the one that should be changing - third one is {{NUMBEROFARTICLES}} magic word [02:21:38] http://en.wikipedia.org/w/index.php?title=User:Technical_13/common.js&diff=prev&oldid=567896234 [02:21:47] Was me adding code to common.js [02:27:21] 03(mod) parenthesis at the end of username moves to the beginning in RTL languages - 10https://bugzilla.wikimedia.org/49255 +comment (10gerritadmin) [02:27:23] 03(mod) parenthesis at the end of username moves to the beginning in RTL languages - 10https://bugzilla.wikimedia.org/49255 (10Gerrit Notification Bot) [02:28:47] 03(mod) LTR usernames with punctuation on RTL wikis render incorrectly. - 10https://bugzilla.wikimedia.org/52684 +comment (10Matt Walker) [02:28:49] 03(mod) parenthesis at the end of username moves to the beginning in RTL languages - 10https://bugzilla.wikimedia.org/49255 +comment (10Matt Walker) [02:28:49] 03(mod) parenthesis at the end of username moves to the beginning in RTL languages - 10https://bugzilla.wikimedia.org/49255 (10Matt Walker) [02:29:47] T13: json->"json" [02:31:43] You may either use $.ajax or mw.Api [02:33:55] T13: also, you want $("#articleCount").html(result.query.statistics.articles) [02:38:22] then it works as expected [02:38:54] (if you don't expect commas/other number formatting) [02:42:56] that .html() looks scary [02:44:53] agree, but if it works ... [02:45:22] well, this should fix it http://en.wikipedia.org/w/index.php?title=User:Technical_13/common.js&diff=next&oldid=567896234 [02:46:14] Nikerabbit: do you think the API is going to start returning malicious code in that request or something? :P [03:00:59] 03(mod) Tokenizer sensitive to trailing whitespace after closing table tag when handling indented tables - 10https://bugzilla.wikimedia.org/52473 (10ssastry) [03:03:37] 03(mod) Tokenizer sensitive to trailing whitespace after closing table tag when handling indented tables - 10https://bugzilla.wikimedia.org/52473 +comment (10gerritadmin) [03:03:39] 03(mod) Tokenizer sensitive to trailing whitespace after closing table tag when handling indented tables - 10https://bugzilla.wikimedia.org/52473 (10Gerrit Notification Bot) [03:06:42] 03(NEW) Address Gerrit MediaWiki extension project descriptions - 10https://bugzilla.wikimedia.org/52685 trivial; Wikimedia: Git/Gerrit; () [03:09:24] PiRSquared: okay, so I got it working and made it comma delimit in chunks of 3. [03:09:37] ok [03:10:04] I just can't seem to get jQuery installed on my end for my page... [03:10:06] :-) [03:10:21] Technical_13: did you try downloading the latest? [03:10:44] I've tried loading it from Google, Microsoft, and jQuery CDN. [03:10:53] or the version used by Wikimedia 1.8.3 [03:11:09] *the version used by Wikimedia, jQuery 1.8.3 [03:11:29] Technical_13: are you putting the ? [03:11:40] I was tring 1.10.* and migrate 1.21.* [03:11:44] Yes. [03:11:45] ok [03:12:06] are you sure jQuery is not working? [03:12:19] check $ in the console, or make it alert($) [03:12:51] When I load it from any of those, I get about 2 dozen JavaScript errors all in jQuery.js lines 4-6 [03:13:48] I'll poke into #jquery tomorrow, as it has to be something they can help with... [03:13:53] ok [03:14:08] good night [03:14:11] I shut my lap down.. 11:14pm here. [03:14:49] My client will probably crash a dozen times again tonight.. [03:17:05] 03(mod) Notice: Undefined property: CentralAuthUser::$mHomeWiki - 10https://bugzilla.wikimedia.org/46301 (10spage) [03:17:35] 03(mod) merge wikivoyage channels during migration - 10https://bugzilla.wikimedia.org/41143 (10Andre Klapper) [03:18:07] 03(mod) wap.wikipedia.org (without language) does not work - 10https://bugzilla.wikimedia.org/47560 +comment (10Andre Klapper) [03:20:35] 03(mod) DomainKeys Identified Mail (DKIM) for lists.wikimedia.org - 10https://bugzilla.wikimedia.org/52569 +comment (10MZMcBride) [03:21:27] 03(mod) Enable "Extension:NewUserMessage" on ckb.wikipedia - 10https://bugzilla.wikimedia.org/52678 normal->15enhancement (10Andre Klapper) [03:21:31] 03(mod) Categorize {{#babel}} on ru.wikinews - 10https://bugzilla.wikimedia.org/52679 normal->15enhancement (10Andre Klapper) [03:22:34] 03(mod) Allow local disabling of global AbuseFilters - 10https://bugzilla.wikimedia.org/43761 normal->15enhancement (10Andre Klapper) [03:24:08] 03(mod) Request for namespaces on Palatine Wikipedia - 10https://bugzilla.wikimedia.org/52671 normal->15enhancement; +shell (10Andre Klapper) [03:25:17] 03(mod) Allow sitelinks to wikipedia and wikivoyage redirect pages to fix the 'Bonnie and Clyde problem' - 10https://bugzilla.wikimedia.org/52564 +comment (10aklapper) [03:33:05] 03(mod) app crashes with out-of-memory error soon after login - 10https://bugzilla.wikimedia.org/50733 +comment (10brion) [03:43:11] 03(mod) VisualEditor: Pages with single character titles are not recognised as existing pages in the link box - 10https://bugzilla.wikimedia.org/52596 +comment (10sandrobt.wiki) [03:52:14] Elsie: is there a page that explains the interwiki update script? [03:52:35] Do you happen to know if it's http://www.mediawiki.org/wiki/Manual:DumpInterwiki.php ? [03:55:33] (the one that Wikimedia uses) [04:01:12] 03(mod) Install Notifications (Echo) on the Polish Wikipedia - 10https://bugzilla.wikimedia.org/51251 +comment (10fflorin) [04:08:42] 03(mod) Add parameter type for wikitext - 10https://bugzilla.wikimedia.org/51374 normal->15enhancement (10Andre Klapper) [04:09:36] 03(NEW) VisualEditor: Register VE experimental features with BetaFeatures extension - 10https://bugzilla.wikimedia.org/52686 normal; VisualEditor: MediaWiki integration; () [04:10:49] 03(mod) Adding options to Special:ListUsers (hide permanent and temporary blocks) - 10https://bugzilla.wikimedia.org/33545 -patch-reviewed +patch-need-review; +comment (10Andre Klapper) [04:11:07] 03(NEW) Use KiB, MiB, etc. and not KB, MB on file description - 10https://bugzilla.wikimedia.org/52687 normal; MediaWiki: Internationalization; () [04:13:20] 03(mod) Install Notifications (Echo) on the Polish Wikipedia - 10https://bugzilla.wikimedia.org/51251 +comment (10fflorin) [04:28:55] 03(mod) "Old" is broken - 10https://bugzilla.wikimedia.org/52683 +comment (10aklapper) [04:30:06] 03(mod) Sidebar cache is missing randomly on zhwiki - 10https://bugzilla.wikimedia.org/52682 summary (10Andre Klapper) [04:30:31] 03(mod) Locked accounts should have a box with lock info on Special:Contributions - 10https://bugzilla.wikimedia.org/52674 normal->15enhancement (10Andre Klapper) [04:31:40] 03(mod) "Old" is broken - 10https://bugzilla.wikimedia.org/52683 +comment (10okeyes) [04:34:55] 03(mod) Use KiB, MiB, etc. and not KB, MB on file description - 10https://bugzilla.wikimedia.org/52687 +comment (10Niklas Laxström) [04:52:07] 03(NEW) fix the Google pagerank of en.wikivoyage (0/10) - 10https://bugzilla.wikimedia.org/52688 normal; Wikimedia: General/Unknown; () [04:58:02] 03(NEW) Consider deprecating Ploticus PNG generation - 10https://bugzilla.wikimedia.org/52689 normal; MediaWiki extensions: EasyTimeline; () [04:58:12] 03(mod) EasyTimeline reversed text in RTL languages - 10https://bugzilla.wikimedia.org/4030 +comment (10Adam Wight) [05:01:10] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 +comment (10dzahn) [05:07:46] 03(mod) diff3 error message (No newline at end of file) logged when undoing an edit at end of file - 10https://bugzilla.wikimedia.org/39637 +comment (10Quim Gil) [05:08:31] 03(mod) diff3 error message (No newline at end of file) logged when undoing an edit at end of file - 10https://bugzilla.wikimedia.org/39637 15enhancement->minor (10Quim Gil) [05:11:54] 03(mod) Wikivoyage migration (tracking) - 10https://bugzilla.wikimedia.org/41184 +comment (10Andre Klapper) [05:11:57] 03(mod) $wgExtraLanguageNames is used for sites instead of languages in WikiVoyage - 10https://bugzilla.wikimedia.org/41209 (10Andre Klapper) [05:11:59] 03(mod) Get an "Error: Request failed" message on first loading of [[Wikivoyage:User_account_migration]] and hitting edit tab - 10https://bugzilla.wikimedia.org/41945 (10Andre Klapper) [05:12:01] 03(mod) MediaWiki treats User:WMF_Import as an IP instead of a user account - 10https://bugzilla.wikimedia.org/41979 (10Andre Klapper) [05:12:02] 03(mod) Wikivoyage: interwiki links require a cleanup/automatic replacement - 10https://bugzilla.wikimedia.org/41986 (10Andre Klapper) [05:12:03] 03(mod) CentralAuth doesn't see a local account: user unable to merge accounts from home wiki or to merge local to global account - 10https://bugzilla.wikimedia.org/42106 (10Andre Klapper) [05:12:04] 03(mod) Crumbs contain (disambiguation) in names which duplicates locations already in breadcrumb path - 10https://bugzilla.wikimedia.org/43313 (10Andre Klapper) [05:12:06] 03(mod) Subpages sometimes fail to automatically inherit geocrumb trail of corresponding main page - 10https://bugzilla.wikimedia.org/43903 (10Andre Klapper) [05:12:07] 03(mod) GeoCrumbs doesn't handle cases where a destination on a region boundary #isIn: more than one region - 10https://bugzilla.wikimedia.org/44590 (10Andre Klapper) [05:12:08] 03(mod) Add a function to switch off subpages automatically "being in" - 10https://bugzilla.wikimedia.org/45664 (10Andre Klapper) [05:17:32] 03(mod) Address Gerrit MediaWiki extension project descriptions - 10https://bugzilla.wikimedia.org/52685 +comment (10Andre Klapper) [05:28:24] 03(NEW) Notification when user becomes auto-confirmed - 10https://bugzilla.wikimedia.org/52690 enhancement; MediaWiki extensions: Echo; () [05:44:14] 03(NEW) Create the Tyvan Wikipedia ( tyv.wikipedia.org ) - 10https://bugzilla.wikimedia.org/52691 normal; Wikimedia: Site requests; () [05:58:31] 03(mod) VisualEditor: Tool to set/unset text as underlined - 10https://bugzilla.wikimedia.org/51609 +comment (10gerritadmin) [05:58:33] 03(mod) VisualEditor: Tool to set/unset text as underlined - 10https://bugzilla.wikimedia.org/51609 (10Gerrit Notification Bot) [06:09:56] 03(mod) install Extension:Interwiki on wikitech/labs wiki - 10https://bugzilla.wikimedia.org/47906 +comment (10Daniel Zahn) [06:11:37] 03(mod) VisualEditor: Tool to set/unset text as underlined - 10https://bugzilla.wikimedia.org/51609 (10James Forrester) [06:12:56] 03(mod) VisualEditor: Tool to set/unset text colour - 10https://bugzilla.wikimedia.org/52645 summary; +comment (10James Forrester) [06:13:13] 03(mod) MobileFrontend: Tables are cut off - 10https://bugzilla.wikimedia.org/52075 +comment (10jrobson) [06:15:18] 03(mod) Create a VisualEditor plugin tool to add/edit Hieroglyphics blocks - 10https://bugzilla.wikimedia.org/43118 +comment (10James Forrester) [06:17:37] 03(mod) VisualEditor: Register each VE experimental feature individually with the BetaFeatures extension - 10https://bugzilla.wikimedia.org/52686 normal->15enhancement; summary (10James Forrester) [06:17:44] 03(mod) VisualEditor: Tool to set/unset text colour - 10https://bugzilla.wikimedia.org/52645 +comment (10inez) [06:19:12] 03(mod) VisualEditor: Link suggestions list should vertically scroll if there's insufficient room for them on-screen - 10https://bugzilla.wikimedia.org/52670 normal->15enhancement; summary (10James Forrester) [06:20:51] 03(mod) Allow more specific string format for image names - 10https://bugzilla.wikimedia.org/52652 normal->15enhancement (10James Forrester) [06:25:23] 03(mod) Use KiB, MiB, etc. and not KB, MB on file description - 10https://bugzilla.wikimedia.org/52687 normal->15enhancement (10Nemo) [06:25:58] 03(mod) VisualEditor: Transclusion dialog should validate template parameter values using TemplateData information - 10https://bugzilla.wikimedia.org/52651 summary; +comment (10James Forrester) [06:31:53] 03(mod) "View source" is missing on protected LQT pages - 10https://bugzilla.wikimedia.org/49618 +comment (10gerritadmin) [06:32:22] 03(mod) "View source" is missing on protected LQT pages - 10https://bugzilla.wikimedia.org/49618 (10Niklas Laxström) [06:33:57] 03(mod) "Old" is broken - 10https://bugzilla.wikimedia.org/52683 +comment (10okeyes) [06:36:28] 03(mod) Rearranging the display of advanced options on Special:Preferences#mw-prefsection-searchoptions - 10https://bugzilla.wikimedia.org/37878 +comment (10Nemo) [06:36:58] 03(mod) VisualEditor: Tool to set/unset text as superscript - 10https://bugzilla.wikimedia.org/51611 +comment (10gerritadmin) [06:37:01] 03(mod) VisualEditor: Tool to set/unset text as superscript - 10https://bugzilla.wikimedia.org/51611 (10Gerrit Notification Bot) [06:37:10] 03(mod) Create the Tyvan Wikipedia ( tyv.wikipedia.org ) - 10https://bugzilla.wikimedia.org/52691 +comment (10Sam Reed (reedy)) [06:37:11] 03(mod) Create Wikipedia Tuvan - 10https://bugzilla.wikimedia.org/49328 +comment (10Sam Reed (reedy)) [06:39:03] 03(mod) "Old" is broken - 10https://bugzilla.wikimedia.org/52683 +comment (10Superzerocool) [06:40:33] can we delete this ? http://codereview-proxy.wikimedia.org/ [06:40:46] https://wikitech.wikimedia.org/wiki/Codereview-proxy.wikimedia.org [06:42:39] 03(NEW) Migrate Pywikibot bugs from Sourceforge to Bugzilla (set up product etc) - 10https://bugzilla.wikimedia.org/52692 normal; Wikimedia: Bugzilla; () [06:45:17] 03(NEW) Allow login using mosh as an alternative to ssh to make labs usable at Wikimania - 10https://bugzilla.wikimedia.org/52693 normal; Wikimedia Labs: Infrastructure; () [06:47:49] 03(mod) Migrate Pywikibot bugs from Sourceforge to Bugzilla (set up product etc) - 10https://bugzilla.wikimedia.org/52692 +comment (10aklapper) [06:49:50] 03(mod) Migrate Pywikibot bugs from Sourceforge to Bugzilla (set up product etc) - 10https://bugzilla.wikimedia.org/52692 (10Andre Klapper) [06:50:32] mutante: With all the SVN repos being readonly, there isn't any other need for it AFAIK [06:54:38] 03(mod) Migrate Pywikibot bugs from Sourceforge to Bugzilla (set up product etc) - 10https://bugzilla.wikimedia.org/52692 +comment (10aklapper) [06:56:27] 03(NEW) deactivate and decom codereview-proxy - 10https://bugzilla.wikimedia.org/52694 normal; Wikimedia: Subversion; () [06:58:58] 03(mod) Add option for all visitors to toggle Math modes - 10https://bugzilla.wikimedia.org/48036 +comment (10fred.wang) [06:59:15] 03(mod) Transaction idle or pre-commit callbacks still pending - 10https://bugzilla.wikimedia.org/47375 minor->normal (10Nemo) [06:59:51] 03(mod) Transaction idle or pre-commit callbacks still pending - 10https://bugzilla.wikimedia.org/47375 +comment (10Nemo) [07:02:52] 03(mod) Migrate Pywikibot bugs from Sourceforge to Bugzilla (set up product etc) - 10https://bugzilla.wikimedia.org/52692 +comment (10ladsgroup) [07:04:14] 03(mod) Allow login using mosh as an alternative to ssh to make labs usable at Wikimania - 10https://bugzilla.wikimedia.org/52693 normal->15enhancement; +comment (10Sam Reed (reedy)) [07:06:43] 03(mod) Allow login using mosh as an alternative to ssh to make labs usable at Wikimania - 10https://bugzilla.wikimedia.org/52693 +comment (10daniel.kinzler) [07:18:09] 03(mod) Use IEC units (KiB, MiB, etc.) and not SI units (KB, MB) on file description - 10https://bugzilla.wikimedia.org/52687 summary; +comment (10Andre Klapper) [07:23:36] 03(mod) "Old" is broken: Error: mw.Title: Could not parse title ".digamma" - 10https://bugzilla.wikimedia.org/52683 summary; +comment (10Andre Klapper) [07:24:27] 03(mod) deactivate and decom codereview-proxy - 10https://bugzilla.wikimedia.org/52694 +comment (10innocentkiller) [07:32:48] Can the ./images/ directory of a publicly-editable wiki be made public in its entirety (as a tarball, for example)? Or is there stuff in there that's private? [07:35:32] 03(mod) Support language variant conversion in Parsoid - 10https://bugzilla.wikimedia.org/41716 +comment (10gwicke) [07:37:33] 03(mod) VisualEditor: Tool to set/unset text as subscript - 10https://bugzilla.wikimedia.org/51612 +comment (10gerritadmin) [07:37:35] 03(mod) VisualEditor: Tool to set/unset text as subscript - 10https://bugzilla.wikimedia.org/51612 (10Gerrit Notification Bot) [07:44:45] 03(mod) color picker - 10https://bugzilla.wikimedia.org/51409 +comment (10James Forrester) [07:44:45] 03(mod) VisualEditor: Tool to set/unset text colour - 10https://bugzilla.wikimedia.org/52645 +comment (10James Forrester) [07:44:53] samwilson: depending on your setup, their may be deleted files in a sub directory [07:45:55] yes, I was wondering about that. it's /images/deleted by default isn't it? [07:46:30] I think it'd be okay to include them in a public dump, considering that they were all public at some point. [07:47:44] depends on why you delete them [07:51:10] hm. yes! good point. i'm tinkering with my backup script https://github.com/samwilson/MediaWiki_Backup and trying to produce archives that can be added to the wikiteam dumps at the Internet Archive [07:52:28] some images may have been deleted due to legal reasons, so be careful [07:53:08] if the $wgDeletedDirectory is excluded, is there anything else in there that might be of concern? [07:58:12] 03(NEW) Request: Send emails only if property holds a certain value - 10https://bugzilla.wikimedia.org/52695 enhancement; MediaWiki extensions: SemanticWatchlist; () [08:02:19] 03(mod) TemplateData params.deprecated field does not support boolean value - 10https://bugzilla.wikimedia.org/52676 (10James Forrester) [08:04:45] 03(NEW) Better instructions on top of enter_bug.cgi, link to guided form - 10https://bugzilla.wikimedia.org/52696 enhancement; Wikimedia: Bugzilla; () [08:04:46] 03(mod) enter_bug.cgi?format=guided not properly configured - 10https://bugzilla.wikimedia.org/36762 (10Andre Klapper) [08:08:57] 03(mod) DomainKeys Identified Mail (DKIM) for lists.wikimedia.org - 10https://bugzilla.wikimedia.org/52569 +ops; +comment (10Andre Klapper) [08:08:58] 03(mod) Updated page properties from transcluded items take a long time to show up - 10https://bugzilla.wikimedia.org/50372 04CRIT->normal; summary; +comment (10James Forrester) [08:09:21] 03(mod) VisualEditor: Parameters with "autofill" TemplateData status should be autofilled - 10https://bugzilla.wikimedia.org/52029 summary; +comment (10James Forrester) [08:09:29] 03(mod) VisualEditor: Template parameters with "autofill" TemplateData status should be autofilled - 10https://bugzilla.wikimedia.org/52029 summary (10James Forrester) [08:18:43] 03(mod) VisualEditor: Tool to set/unset text as subscript - 10https://bugzilla.wikimedia.org/51612 (10James Forrester) [08:18:51] 03(mod) VisualEditor: Tool to set/unset text as superscript - 10https://bugzilla.wikimedia.org/51611 (10James Forrester) [08:24:24] 03(mod) VisualEditor: Tool to set/unset text colour - 10https://bugzilla.wikimedia.org/52645 +comment (10jforrester) [08:24:42] 03(NEW) Labels of form elements in the preferences are messed up - 10https://bugzilla.wikimedia.org/52697 normal; MediaWiki: User preferences; () [08:32:32] 03(mod) fix the Google pagerank of en.wikivoyage (0/10) - 10https://bugzilla.wikimedia.org/52688 +comment (10stefan) [08:38:34] 03(NEW) https://wikidata.org is redirect to http - 10https://bugzilla.wikimedia.org/52698 normal; Wikimedia: Wikidata; () [08:38:46] 03(mod) Add parameter type for wikitext - 10https://bugzilla.wikimedia.org/51374 (10James Forrester) [08:39:02] 03(mod) Message not properly parsed: Link is not a link, improper markup - 10https://bugzilla.wikimedia.org/47935 +comment (10rainerrillke) [08:40:31] 03(mod) Add Iranian calendar and Islamic calendar on ckb.wikipedia - 10https://bugzilla.wikimedia.org/52009 +comment (10at.light) [08:46:15] 03(mod) Redirect bug-writing.html to [[mw:How_to_report_a_bug]] - 10https://bugzilla.wikimedia.org/45271 +comment (10Daniel Zahn) [08:48:05] 03(mod) Use SSL for the etherpad lite instance on Labs - 10https://bugzilla.wikimedia.org/43404 +comment (10T. Gries) [08:54:08] 03(mod) Fatal error when adding already existing sitelink with Special:SetSiteLink - 10https://bugzilla.wikimedia.org/52614 +comment (10sam) [08:55:56] 03(NEW) API upload warning exists-normalized returns wrong file (the file that is uploaded, not the file that exists) - 10https://bugzilla.wikimedia.org/52699 normal; MediaWiki: API; () [08:56:25] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 +comment (10Andre Klapper) [08:58:55] 03(mod) Message not properly parsed: Link is not a link, improper markup - 10https://bugzilla.wikimedia.org/47935 +comment (10rainerrillke) [09:00:58] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 +comment (10gerritadmin) [09:01:02] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 (10Gerrit Notification Bot) [09:02:50] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 +comment (10gerritadmin) [09:04:41] 03(mod) Enable blocking feature of AbuseFilter on meta - 10https://bugzilla.wikimedia.org/52681 normal->15enhancement; +shell (10Andre Klapper) [09:07:02] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 +comment (10Daniel Zahn) [09:08:16] 03(mod) Fix descriptions for statuses in Bugzilla help page - 10https://bugzilla.wikimedia.org/51949 +comment (10Daniel Zahn) [09:08:17] 03(mod) mw:Bugzilla/Fields vs. Bugzilla's fields.html - 10https://bugzilla.wikimedia.org/42524 +comment (10Daniel Zahn) [09:13:28] !bugsong is http://www.mediawiki.org/wiki/User:Robchurch/BugZilla_song [09:13:28] Key was added [09:14:19] * marktraceur worries [09:15:04] mutante: To the tune of...? [09:16:44] hah, i don't know yet, is it a bug?:) [09:17:20] * mutante summons the bug wrangler [09:17:55] success [09:18:04] haha [09:19:54] ah poop i slept through the wikidata session [09:20:04] on the plus side, now i'm not going to fall asleep *in* the wikidata session [09:21:07] ooh, gotta watch the last 10 minutes? [09:21:11] http://bugzillaupdate.wordpress.com/2011/03/31/winner-of-the-make-bugzilla-pretty-contest/ [09:21:45] making somebody win some design, and implementing such a design are two very different things. [09:22:34] i am sad that design wasn't implemented :P [09:25:20] andre__: can we deploy this really quick ?:) https://wiki.mozilla.org/Bugzilla:Pretty#Shibu_Abraham dark themes ,, yay [09:25:53] mutante, If you want to be its maintainer and if it's not the default one, go ahead! [09:27:25] hello, I hope someone can help me - that would be really great. I have an mysqldb from MediaWiki version 1.13 - and I wont to updgrad to 1.21 - By the upgrade process I got an error - How can I fix that? Here the log: [09:27:46] An error occurred: Es gab einen Syntaxfehler in der Datenbankabfrage. Die letzte Datenbankabfrage lautete: „SELECT rev_id,rev_page,rev_text_id,rev_timestamp,rev_comment,rev_user_text,rev_user,rev_minor_edit,rev_deleted,rev_len,rev_parent_id,rev_sha1,page_namespace,page_title,page_id,page_latest,page_is_redirect,page_len,user_name FROM `w13_revision` INNER JOIN `w13_page` ON ((page_id = rev_page)) LEFT JOIN `w13_user` ON ((rev_us [09:28:44] mutante, related upstream bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=662605 [09:31:23] 03(mod) API upload warning exists-normalized returns wrong file (the file that is uploaded, not the file that exists) - 10https://bugzilla.wikimedia.org/52699 +comment (10rainerrillke) [09:31:32] Albert, where do w13_revision etc come from? Some extension? [09:32:38] Albert: http://www.mediawiki.org/wiki/Thread:Project:Support_desk/upgrade_problems:_1.11_--_1.21 [09:32:49] I think I found something similiar to my problem: https://www.mediawiki.org/wiki/Thread:Project:Support_desk/upgrade_problems:_1.11_--_1.21 [09:32:52] andre__: ah, i see, so official skin for 5.0 ,, kk [09:33:01] unfortunately not the black one :) [09:34:55] Albert: that sounds like it indeed, yea, see those mysql commands at the bottom? your error has been cut off but should be it [09:35:41] thnaks mutante - I retry now the installation - hope it works now [09:35:53] you also have "unknown column rev_sha1" right [09:36:05] yes [09:37:16] That one is a known/fixed bug IIRC [09:39:29] known yes, but yea, if he is on 1.13 ... [09:39:58] Albert, where do w13_revision etc come from? Some extension? [09:40:05] andre__: From a table prefix [09:40:24] just weird naming. [09:40:29] Not really [09:40:35] Doe we have w22 nowadays? [09:41:03] !wg DBprefix [09:41:03] https://www.mediawiki.org/wiki/Manual:$wgDBprefix [09:41:09] ah. shared databases. okay okay. [09:41:11] I have no idea - the db is more than 4 years old [09:41:26] but it works now - thank you all for your help [09:41:32] cool, yw [09:43:04] G'morning #Mediawiki devels [09:43:49] 03(mod) VisualEditor: Wikitext warning, edit notices (and other popups) should have a close button - 10https://bugzilla.wikimedia.org/52386 (10James Forrester) [09:52:03] !seen Perl_developer [09:52:03] Did you mean @seen Perl_developer? [09:58:06] 03(mod) Clean Page and Index namespaces configuration - 10https://bugzilla.wikimedia.org/44320 +comment (10federicoleva) [10:00:08] 03(mod) ProofreadPage extension should handle its namespaces in a more sensible manner - 10https://bugzilla.wikimedia.org/37483 +comment (10federicoleva) [10:02:48] 03(mod) Clean Page and Index namespaces configuration for Wikisource - 10https://bugzilla.wikimedia.org/44320 summary (10Nemo) [10:02:48] 03(mod) Wikisource related bugs and enhancements (tracking) - 10https://bugzilla.wikimedia.org/35925 (10Nemo) [10:06:39] 03(mod) Collection and ProofreadPage in Wikisource sometimes create nearly empty PDF files - 10https://bugzilla.wikimedia.org/41324 +testme; +comment (10Nemo) [10:06:45] 03(mod) Creating a PDF with collection extension does not render the tag hook from proofread page extension - 10https://bugzilla.wikimedia.org/21653 (10Nemo) [10:06:49] 03(mod) PDF related (collection extention) bugs (tracking) - 10https://bugzilla.wikimedia.org/31552 (10Nemo) [10:06:50] 03(mod) Wikisource related bugs and enhancements (tracking) - 10https://bugzilla.wikimedia.org/35925 (10Nemo) [10:09:11] 03(mod) Notification when user becomes auto-confirmed - 10https://bugzilla.wikimedia.org/52690 +comment (10Nemo) [10:12:30] 03(mod) PDF related (collection extention) bugs (tracking) - 10https://bugzilla.wikimedia.org/31552 (10Nemo) [10:12:31] 03(mod) Wikisource related bugs and enhancements (tracking) - 10https://bugzilla.wikimedia.org/35925 (10Nemo) [10:14:38] 03(mod) WikiStats article statistics should include all content namespaces - 10https://bugzilla.wikimedia.org/35198 +comment (10Nemo) [10:15:37] 03(mod) Countable content namespaces evaluation (tracking) - 10https://bugzilla.wikimedia.org/40423 +comment (10Nemo) [10:17:28] 03(mod) ProofreadPage extension should handle its namespaces in a more sensible manner - 10https://bugzilla.wikimedia.org/37483 (10Nemo) [10:17:29] 03(mod) Dump stats: wikisource stats are much too low - 10https://bugzilla.wikimedia.org/46196 (10Nemo) [10:20:33] 03(NEW) Keyboard shortcut for show changes (shift+alt+v) no longer works since VisualEditor - 10https://bugzilla.wikimedia.org/52701 normal; MediaWiki: Page editing; () [10:23:15] 03(mod) Keyboard shortcut for show changes (shift+alt+v) no longer works since VisualEditor - 10https://bugzilla.wikimedia.org/52701 +comment (10Chris McKenna) [10:31:30] 03(mod) Collection and ProofreadPage in Wikisource sometimes create nearly empty PDF files - 10https://bugzilla.wikimedia.org/41324 +comment (10p.selitskas) [10:37:46] is there an extension that can execute sql queries? [10:41:55] !e AskSQL | gleki [10:41:55] gleki: https://www.mediawiki.org/w/index.php?title=Extension:AskSQL+%7c+gleki [10:42:10] its that old I doubt it works properly [10:42:21] gleki: why not just use the mysql command line? [10:42:57] would be too hard for all maintainers of the wiki. but ignore me. i'll probably use Maintainance extension [10:49:50] 03(mod) Set automatic user categories of the Babel Extension in es.wikvoyage - 10https://bugzilla.wikimedia.org/52309 +comment (10This, that and the other) [10:51:03] 03(mod) Set automatic user categories of the Babel Extension in es.wikvoyage - 10https://bugzilla.wikimedia.org/52309 +comment (10gerritadmin) [10:51:04] 03(mod) Set automatic user categories of the Babel Extension in es.wikvoyage - 10https://bugzilla.wikimedia.org/52309 (10Gerrit Notification Bot) [11:05:33] 03(mod) Categorize {{#babel}} on ru.wikinews - 10https://bugzilla.wikimedia.org/52679 +comment (10gerritadmin) [11:05:36] 03(mod) Categorize {{#babel}} on ru.wikinews - 10https://bugzilla.wikimedia.org/52679 (10Gerrit Notification Bot) [11:19:36] 03(mod) API upload warning exists-normalized returns wrong file (the file that is uploaded, not the file that exists) - 10https://bugzilla.wikimedia.org/52699 +comment (10rainerrillke) [11:29:07] !db [11:29:07] See http://www.mediawiki.org/wiki/Manual:$1_table [11:29:41] what is this?? [11:29:44] @db [11:29:47] I am running http://meta.wikimedia.org/wiki/WM-Bot version wikimedia bot v. 1.20.1.0 my source code is licensed under GPL and located at https://github.com/benapetr/wikimedia-bot I will be very happy if you fix my bugs or implement new features [11:34:31] !e [11:34:31] https://www.mediawiki.org/w/index.php?title=Extension:$url_encoded_* [11:36:09] 03(mod) Request for namespaces on Palatine Wikipedia - 10https://bugzilla.wikimedia.org/52671 +comment (10This, that and the other) [11:42:23] 03(mod) Use IEC units (KiB, MiB, etc.) and not SI units (KB, MB) on file description - 10https://bugzilla.wikimedia.org/52687 +comment (10zefling) [11:43:26] !e del [11:43:27] Unable to find the specified key in db [11:43:35] !e [11:43:35] https://www.mediawiki.org/w/index.php?title=Extension:$url_encoded_* [11:43:42] !extension [11:43:42] MediaWiki has been built so it can easily be customized by adding extensions. This is usually a simple process. See http://www.mediawiki.org/wiki/Manual:Extensions for instructions to install extensions, as well as for writing them. See http://www.mediawiki.org/wiki/Extension_Matrix for an overview of known extensions. [11:44:11] !petan [11:44:11] lazy [11:44:21] http://bots.wmflabs.org/~wm-bot/dump/%23mediawiki.htm [11:46:19] !ext [11:46:19] https://www.mediawiki.org/w/index.php?title=Extension:$url_encoded_* [11:46:23] !ext del [11:46:23] Successfully removed ext [11:46:29] !ext https://www.mediawiki.org/w/index.php?title=Extension:$wiki_encoded_* [11:46:30] There are multiple keys, refine your input: ext, extensiondistributor, extensionmatrix, extensions, externalauth, externaleditor, externalimages, extranamespace, [11:46:43] !ext is https://www.mediawiki.org/w/index.php?title=Extension:$wiki_encoded_* [11:46:43] Key was added [11:46:53] There... fixed. [11:52:59] T13|sleeps: um, shouldn't this use short urls, then? [11:53:01] !e asd [11:53:01] https://www.mediawiki.org/w/index.php?title=Extension:asd [11:53:07] e a+b [11:53:11] !e a+b [11:53:11] https://www.mediawiki.org/w/index.php?title=Extension:a%2bb [11:53:31] actually, whatever, i'm not touching that. :P [11:59:48] Hello people. I would like some advice on how to proceed with https://bugzilla.wikimedia.org/show_bug.cgi?id=45317 [12:00:10] I have suggested a solution, but since it modifies the Parser I'm reluctant to fork and develop the mentioned functionality. [12:01:30] lordfarin: most of the devs are on wikimania right now [12:01:42] lordfarin: you should ask tim starling about this probably [12:01:48] Tim-away [12:02:10] actually, he's cc'd on the bug. drop him an email or hunt him down here [12:02:16] australian timezone. :) [12:02:27] or ask cscott_away [12:03:10] (he's somewhere in american timezones, i think) [12:04:21] MatmaRex: it is not using short urls because if there are spaces in extensions, it doesn't work anymore... [12:05:09] rickyb98: lies, it'd work as long as it's encoded [12:06:34] try !e Google Adsense, it won't work like http://mediawiki.org/wiki/Extensions:Google Adsense [12:06:40] there's a space in the url [12:07:20] 03(mod) deactivate and decom codereview-proxy - 10https://bugzilla.wikimedia.org/52694 +comment (10Sam Reed (reedy)) [12:07:51] !e Google Adsense [12:07:51] https://www.mediawiki.org/w/index.php?title=Extension:Google_Adsense [12:07:55] hi everyone i am new to wiki media . I have a decent knowledge of qt , javascript node php and want to contribute in any possible way that i can to wikimedia.My primary area of query is how can i help wikimedia using javascript [12:07:59] it encodes the space to a _. [12:08:19] !bug javascript [12:08:19] https://bugzilla.wikimedia.org/buglist.cgi?quicksearch=javascript [12:08:23] aksnot: ^ :) [12:08:40] MatmaRex_: Thanks, I'll drop Tim an e-mail. [12:09:17] MatmaRex_: Thanks. [12:09:35] 03(mod) "Old" is broken: Error: mw.Title: Could not parse title ".digamma" - 10https://bugzilla.wikimedia.org/52683 +comment (10Bartosz Dziewoński) [12:09:36] 03(mod) mw.Title cannot parse titles starting with a period. - 10https://bugzilla.wikimedia.org/51308 +comment (10Bartosz Dziewoński) [12:10:01] aksnot: you might want to glance at https://www.mediawiki.org/wiki/CC/JS [12:10:25] MatmaRex_: Thanks. [12:10:26] list of good practices and code conventions we do our best to adhere to :) [12:11:02] rickyb98: did MatmaRex_ 's answer satisfy your question about spaces? [12:11:37] it encodes the space as _ because there's $wiki_encoded_* [12:11:40] oh.. [12:11:41] aksnot: also, you might want to look at "easy" bugs first to get a feel of how this works [12:11:41] wait.. [12:12:05] aksnot: mediawiki uses its own module loading system, resourceloader [12:12:06] !rl [12:12:06] ResourceLoader is the delivery system for JavaScript/CSS in MediaWiki. First released in MediaWiki 1.17. See also https://www.mediawiki.org/wiki/ResourceLoader , https://www.mediawiki.org/wiki/ResourceLoader/Migration_guide_%28users%29 and https://www.mediawiki.org/wiki/ResourceLoader/Migration_guide_for_extension_developers [12:12:44] which also imposes certain limits, mostly making 'var'-variables non-global [12:12:50] !bug !easy javascript [12:12:50] https://bugzilla.wikimedia.org/buglist.cgi?quicksearch=!easy+javascript [12:13:18] good luck and feel free to ping people with questions :) [12:14:11] !trying [12:23:43] 03(mod) API upload warning exists-normalized returns wrong file (the file that is uploaded, not the file that exists) - 10https://bugzilla.wikimedia.org/52699 +comment (10gerritadmin) [12:23:47] 03(mod) API upload warning exists-normalized returns wrong file (the file that is uploaded, not the file that exists) - 10https://bugzilla.wikimedia.org/52699 (10Gerrit Notification Bot) [12:28:07] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 +comment (10gerritadmin) [12:29:55] I plan on using the Upload API in my extension, where should I start from? Can some1 suggest a file in an extension where the upload API is used, so that I can see how it is used? [12:32:10] 03(mod) Logout page instructions do not reflect $wgGroupPermissions - 10https://bugzilla.wikimedia.org/33439 +comment (10gerritadmin) [12:32:15] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 (10Bartosz Dziewoński) [12:32:44] Use it how? [12:33:37] 03(mod) Logout page instructions do not reflect $wgGroupPermissions - 10https://bugzilla.wikimedia.org/33439 +comment (10Bartosz Dziewoński) [12:34:26] 03(mod) MediaWiki:pageinfo-subpages-name and MediaWiki:pageinfo-redirects-name need PLURAL support - 10https://bugzilla.wikimedia.org/48634 +comment (10gerritadmin) [12:36:49] 03(mod) MediaWiki:pageinfo-subpages-name and MediaWiki:pageinfo-redirects-name need PLURAL support - 10https://bugzilla.wikimedia.org/48634 (10Bartosz Dziewoński) [12:46:22] Reedy: I am building a Pronunciation Recording Tool as a part of my GSoC project, so I have built a Special Page which consists of a basic recording toolbar. I want to upload the recorded pronunciation after the user clicks the "Upload" Pronunciation button [12:51:26] I guess something like UploadWizard [12:52:01] Oh dear. [12:52:12] ? [12:52:35] Rahul21: UploadWizard does a lot of that already, it's true - but it's not currently built in a way that's easily reusable, IMO [12:52:49] I guess if you only wanted the API call examples. [12:53:05] * marktraceur goes to find the file [12:53:15] That is what was suggested originally ;) [12:53:22] "Can some1 suggest a file in an extension where the upload API is used, so that I can see how it is used?" [12:53:25] hello, how can I give me sysop rights with mysql? [12:53:27] Right [12:54:24] Reedy: I have a dream...a dream where media can be uploaded through multiple interfaces in a consistent way... [12:54:25] * Rahul21 is waiting! [12:54:41] marktraceur: Use dropbox, open bug for shell upload [12:54:52] Albert: You can insert a row into the user_groups table.. Probably easier to just use a maintenance script [12:54:58] My wifi is being extra super slow today, and/or git.wikimedia.org is down [12:55:24] git.wikimedia.org is down! [12:55:41] Shall we blame google [12:55:58] marktraceur: you sound like Martin Luther King Jr [12:56:28] Rahul21: resources/mw.ApiUploadTransport.js [12:56:39] Er [12:56:45] Rahul21: resources/mw.ApiUploadHandler.js [12:56:51] Github works quite well for this sort of thing [12:57:09] (linking to files) [12:57:25] And resources/mw.IframeTransport.js [12:57:31] thanks! [12:57:33] Reedy: Yeah, but I don't like using Github [12:57:42] heh [12:57:46] * Rahul21 thinks there should be some alternative for git.wikimedia.org since it keeps on crashing [12:58:03] ^ [12:58:07] Github can be used if necessary [12:58:30] Well, and you can clone from Gerrit still [12:59:20] * marktraceur leaves for a bit [13:00:51] Thanks both of you!! Reading "Javascript : The Defenitive Guide" by David Flanagan as off now! [13:03:15] 03(mod) There should be a way to change "home" wiki in CentralAuth - 10https://bugzilla.wikimedia.org/14234 +comment (10federicoleva) [13:08:08] 03(mod) There should be a way to change "home" wiki in CentralAuth - 10https://bugzilla.wikimedia.org/14234 +comment (10federicoleva) [13:14:12] MatmaRex_: i am done with reading general and specific coding conventions.Can you please suggest some bugs that might be easy to solve reason being that i have no idea of what the code base looks like.Thanks in advance. [13:19:37] 03(mod) "Old" is broken: Error: mw.Title: Could not parse title ".digamma" - 10https://bugzilla.wikimedia.org/52683 +comment (10okeyes) [13:31:05] 03(mod) Language and group facets are duplicated when selected - 10https://bugzilla.wikimedia.org/47919 +comment (10Nemo) [13:37:23] 03(mod) VisualEditor: After "wikimarkup" popup, save button temporarily does not work - 10https://bugzilla.wikimedia.org/52669 +comment (10cmckenna) [13:38:44] how to make mediawiki page displayed according to the interface language of the currently used browser? I couldnt find such options in MBEL pack. [13:38:53] !e [13:38:53] https://www.mediawiki.org/w/index.php?title=Extension:$wiki_encoded_* [13:39:14] !trying is https://www.mediawiki.org/wiki/Extension:$wiki_encoded_* [13:39:15] Key was added [13:39:23] !trying Google Adsense [13:39:23] https://www.mediawiki.org/wiki/Extension:Google_Adsense [13:39:32] should be okay, then... [13:39:38] !trying del [13:39:38] Successfully removed trying [13:41:16] !e del [13:41:16] Unable to find the specified key in db [13:41:24] 03(NEW) Can't translate on Special:SearchTranslations - 10https://bugzilla.wikimedia.org/52702 normal; MediaWiki extensions: Translate; () [13:41:29] !ext [13:41:30] https://www.mediawiki.org/w/index.php?title=Extension:$wiki_encoded_* [13:41:35] !ext del [13:41:36] Successfully removed ext [13:41:41] !ext is https://www.mediawiki.org/wiki/Extension:$wiki_encoded_* [13:41:41] Key was added [13:41:43] !e [13:41:43] https://www.mediawiki.org/wiki/Extension:$wiki_encoded_* [13:41:50] Great! [13:42:48] 03(mod) VisualEditor: Some pages with short titles (incl all with single character titles) are not recognised as existing pages in the link box - 10https://bugzilla.wikimedia.org/52596 summary; +comment (10Chris McKenna) [13:48:08] 03(NEW) Meaningless group selector on Special:SearchTranslations - 10https://bugzilla.wikimedia.org/52703 normal; MediaWiki extensions: Translate; () [14:13:24] 03(NEW) WLE-contest mailing list - 10https://bugzilla.wikimedia.org/52704 enhancement; Wikimedia: Mailing lists; () [14:16:02] 03(mod) WLE-contest mailing list - 10https://bugzilla.wikimedia.org/52704 +comment (10Andrij) [14:16:25] 03(mod) Add Iranian calendar and Islamic calendar on ckb.wikipedia - 10https://bugzilla.wikimedia.org/52009 +comment (10CalakWiki) [14:29:01] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 +comment (10MZMcBride) [14:29:21] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 (10MZMcBride) [14:29:38] Grah. [14:32:23] 03(mod) Gerrit diffs not viewable in Opera - 10https://bugzilla.wikimedia.org/36095 +comment (10Rainer Rillke @commons.wikimedia) [14:35:25] 03(mod) Request for namespaces on Palatine Wikipedia - 10https://bugzilla.wikimedia.org/52671 (10manuae) [14:36:13] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 +comment (10federicoleva) [14:37:37] 03(NEW) create wikilovesearth@lists.wikimedia.org mailing list - 10https://bugzilla.wikimedia.org/52705 enhancement; Wikimedia: Mailing lists; () [14:40:12] 03(mod) Info action's "search engine status" language could use tweaking - 10https://bugzilla.wikimedia.org/43935 +comment (10b) [14:48:19] 03(mod) git.wikimedia.org (gitblit) is down - 10https://bugzilla.wikimedia.org/51769 +comment (10b) [15:00:54] #mysql [15:01:21] anubhav, what's that? [15:02:24] sorry, typed at the wrong place [15:03:04] :) np [15:05:14] Hi. [15:07:30] 03(mod) Clean Page and Index namespaces configuration for Wikisource - 10https://bugzilla.wikimedia.org/44320 +comment (10Tpt) [15:12:16] Does anyone know how often the interwiki map table for Wikimedia wikis is updated from m:Interwiki map? [15:12:45] Apparently "usually once in several months" - is there a schedule/cron job? [15:18:06] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [15:18:07] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 (10Gerrit Notification Bot) [15:18:12] PiRSquared: when needed [15:28:27] 03(mod) ProofreadPage extension should handle its namespaces in a more sensible manner - 10https://bugzilla.wikimedia.org/37483 +comment (10thomaspt) [16:05:21] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [16:05:33] 03(mod) [SUGGESTION] change $wgOpenIDConsumerForce so that it fully specifies an OpenID provider (Url, logo, ...) - 10https://bugzilla.wikimedia.org/44819 +comment (10gerritadmin) [16:05:35] 03(mod) [SUGGESTION] change $wgOpenIDConsumerForce so that it fully specifies an OpenID provider (Url, logo, ...) - 10https://bugzilla.wikimedia.org/44819 (10Gerrit Notification Bot) [16:05:37] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [16:07:34] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [16:07:58] 03(mod) [SUGGESTION] change $wgOpenIDConsumerForce so that it fully specifies an OpenID provider (Url, logo, ...) - 10https://bugzilla.wikimedia.org/44819 +comment (10gerritadmin) [16:07:59] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [16:16:58] 03(mod) [SUGGESTION] change $wgOpenIDConsumerForce so that it fully specifies an OpenID provider (Url, logo, ...) - 10https://bugzilla.wikimedia.org/44819 +comment (10gerritadmin) [16:17:01] 03(mod) [BUG] OpenID Consumer wiki stalls with blank page for certain OpenID Provider verification error cases (consumer fails to show the provider response message) - 10https://bugzilla.wikimedia.org/44821 +comment (10gerritadmin) [16:24:21] 03(mod) Account creation interface should not be using helvetica/arial when the rest of the skin does not - 10https://bugzilla.wikimedia.org/44394 +comment (10mflaschen) [16:25:24] 03(mod) Account creation interface should not be using helvetica/arial when the rest of the skin does not - 10https://bugzilla.wikimedia.org/44394 +comment (10mflaschen) [16:36:02] 03(mod) Disable etherpad.wikimedia.org after migrating content to Etherpad Lite - 10https://bugzilla.wikimedia.org/45312 summary; +comment (10Nemo) [16:37:07] 03(mod) Disable etherpad.wikimedia.org after migrating content to Etherpad Lite - 10https://bugzilla.wikimedia.org/45312 (10Nemo) [16:37:08] 03(mod) Upgrade EtherPad to 1.1.17 - 10https://bugzilla.wikimedia.org/29822 (10Nemo) [16:39:08] 03(mod) EtherPad 1.1 sucks - 10https://bugzilla.wikimedia.org/28601 +comment (10Nemo) [16:39:11] 03(mod) Clean up Etherpad situation on Wikimedia servers - 10https://bugzilla.wikimedia.org/46539 +comment (10Nemo) [16:39:47] 03(mod) EtherPad 1.1 sucks - 10https://bugzilla.wikimedia.org/28601 +comment (10federicoleva) [16:39:50] 03(mod) Disable etherpad.wikimedia.org after migrating content to Etherpad Lite - 10https://bugzilla.wikimedia.org/45312 +comment (10Nemo) [16:45:17] 03(mod) [OPS] migrate to Etherpad Lite - 10https://bugzilla.wikimedia.org/34953 (10Nemo) [16:45:18] 03(mod) Disable etherpad.wikimedia.org after migrating content to Etherpad Lite - 10https://bugzilla.wikimedia.org/45312 (10Nemo) [16:53:13] 03(mod) Disable etherpad.wikimedia.org after migrating content to Etherpad Lite - 10https://bugzilla.wikimedia.org/45312 (10Nemo) [16:54:59] 03(NEW) Html should be escaped when used in labels - 10https://bugzilla.wikimedia.org/52706 normal; MediaWiki extensions: WikidataRepo; () [17:22:39] 03(mod) [OPS] migrate to Etherpad Lite - 10https://bugzilla.wikimedia.org/34953 +comment (10mail) [17:22:50] 03(mod) [OPS] migrate to Etherpad Lite - 10https://bugzilla.wikimedia.org/34953 (10T. Gries) [17:22:52] 03(mod) Use SSL for the etherpad lite instance on Labs - 10https://bugzilla.wikimedia.org/43404 (10T. Gries) [17:25:13] 03(NEW) 500 (Internal Server Error) on novalue snaktype - 10https://bugzilla.wikimedia.org/52707 normal; MediaWiki extensions: WikidataRepo; () [17:26:14] 03(mod) Notification when user becomes auto-confirmed - 10https://bugzilla.wikimedia.org/52690 (10Technical 13) [17:35:56] 03(mod) [SUGGESTION] Need a way to customize default OpenID providers list - 10https://bugzilla.wikimedia.org/21751 +comment (10T. Gries) [17:35:57] 03(mod) [SUGGESTION] change $wgOpenIDConsumerForce so that it fully specifies an OpenID provider (Url, logo, ...) - 10https://bugzilla.wikimedia.org/44819 +comment (10T. Gries) [17:37:24] 03(mod) [SUGGESTION] Add extension hooks for OpenID link/unlink - 10https://bugzilla.wikimedia.org/44165 +comment (10T. Gries) [17:41:48] 03(mod) [CLARIFICATION REQUEST] Login by OpenID not working for non-ASCII identities, or for OpenID server pages without character set information - 10https://bugzilla.wikimedia.org/21296 +comment (10T. Gries) [18:01:49] hi [18:02:04] i'd like to get the recent comments on a wiki [18:02:21] and the url of their respective pages [18:02:26] action=query&list=recentchanges&rcprop=comment%7Csizes%7Ctitle&rctype=new&rcnamespace=1&prop=info&inprop=url [18:02:37] ^ that is what im trying to use [18:02:56] im using prop=info and inprop=url to get the url [18:03:11] any ideas? [18:03:39] SparkySparkyBoom: it doesn't work for you? [18:03:48] nope [18:04:33] i dont know why though [18:04:44] Ah, I see what you mean [18:05:47] SparkySparkyBoom: if you add rcprop=ids, you can get the URL from those [18:06:21] just do ?diff=(revid here) [18:07:36] ah thank you [18:07:43] i just need the page id [18:07:46] xD [18:15:09] hello! I have some problems with MediaWiki (latest version). Who may help me? [18:15:31] Internal error: [10616535] 2013-08-10 18:08:36: Fatal exception of type MWException [18:15:32] Many people in here can help. [18:15:34] hm [18:16:32] IYaroslaw: try adding the following two lines to the end of your LocalSettings.php file: [18:16:33] error_reporting( -1 ); [18:16:35] ini_set( 'display_errors', 1 ); [18:16:35] when i setup MW, i selected all extensions. Can it cause this bug? [18:17:14] oh. you advice for unix-users? my operatin system - windows 8 [18:17:34] sorry) [18:17:36] 03(NEW) Add Index namespace to $wgNamespacesToBeSearchedDefault by default - 10https://bugzilla.wikimedia.org/52708 enhancement; MediaWiki extensions: ProofreadPage; () [18:17:39] 03(mod) ProofreadPage extension should handle its namespaces in a more sensible manner - 10https://bugzilla.wikimedia.org/37483 (10Nemo) [18:17:57] i don't see last messages) so, i trying [18:20:08] 03(NEW) Add Index and Page namespaces to $wgContentNamespaces - 10https://bugzilla.wikimedia.org/52709 enhancement; MediaWiki extensions: ProofreadPage; () [18:20:09] 03(mod) ProofreadPage extension should handle its namespaces in a more sensible manner - 10https://bugzilla.wikimedia.org/37483 (10Nemo) [18:20:10] PiRSquared: there is no changes [18:20:16] 03(mod) Add Index and Page namespaces to $wgContentNamespaces - 10https://bugzilla.wikimedia.org/52709 (10Nemo) [18:20:17] 03(mod) Dump stats: wikisource stats are much too low - 10https://bugzilla.wikimedia.org/46196 (10Nemo) [18:20:41] PiRSquared: after that two lines of php-code [18:20:48] 03(mod) Clean Page and Index namespaces configuration for Wikisource - 10https://bugzilla.wikimedia.org/44320 (10Nemo) [18:20:49] 03(mod) Add Index namespace to $wgNamespacesToBeSearchedDefault by default - 10https://bugzilla.wikimedia.org/52708 (10Nemo) [18:20:51] 03(mod) Add Index and Page namespaces to $wgContentNamespaces - 10https://bugzilla.wikimedia.org/52709 (10Nemo) [18:21:13] really? [18:21:33] it should now show more details about the error [18:22:28] PiRSquared: i use notepad++ and it don't mark this line - ini_set( 'display_errors', 1 ); may be there is some mistake? [18:22:42] IYaroslaw: try setting https://www.mediawiki.org/wiki/Manual:$wgShowExceptionDetails instead [18:23:01] you can remove the two lines I mentioned if they didn't work [18:23:51] If you have access, search for the alphanumeric code in the error in the server logs [18:24:00] without this information, it's impossible to help fix the error. [18:24:22] PiRSquared: I setup MW on my local machine. May be it is important [18:25:06] IYaroslaw: okay. Remove the lines I told you [18:25:31] PiRSquared: yep [18:26:07] PiRSquared: i don't remember word... em... i finish this deal) [18:26:11] now set $wgShowExceptionDetails to true [18:26:39] (in LocalSettings.php) [18:27:01] then look at the page again [18:27:01] PiRSquared: like $wgShowExceptionDetails = true; ? [18:27:20] Yes. [18:27:37] now you can see detailed error messages [18:27:46] (actually, anyone with access can, so be careful) [18:28:03] 03(mod) {{PLURAL}} isn't expanded when an interface message transcludes Special:Recentchanges - 10https://bugzilla.wikimedia.org/32275 normal->minor (10Nemo) [18:28:31] PiRSquared: i know thanks) just expirement) so, i have 20 lines of backreport [18:28:43] PiRSquared: *bugreport [18:28:46] ok [18:28:55] now maybe I can help [18:28:55] PiRSquared: ctrl+V here? [18:28:58] no! [18:29:05] https://dpaste.de/ [18:29:11] remove any sensitive details [18:29:17] PiRSquared: ok))) that may be confused)) [18:29:42] use a pastebin please [18:29:48] like dpaste [18:29:52] PiRSquared: https://dpaste.de/dpdms/ [18:30:02] PiRSquared: right? [18:30:39] * PiRSquared is looking at it [18:31:36] IYaroslaw: http://www.mediawiki.org/wiki/Thread:Project:Support_desk/Fatal_exception_of_type_MWException_after_install_MW_from_1.21.0 is the same problem [18:31:50] "The problem seems to be Extension:LocalisationUpdate. Did you download the extension that matches the 1.21 release? If not, please, upgrade the extension." [18:32:15] it could apply to any version, though, if you're not on 1.21 [18:33:19] "Try either disabling LocalisationUpdate or configuring it properly by setting $wgCacheDirectory to something that is writable by the webserver." [18:33:30] ( http://www.mediawiki.org/wiki/Manual:$wgCacheDirectory ) [18:33:40] -- http://www.mediawiki.org/wiki/Thread:Project:Support_desk/Error_when_installing_MediaWiki. [18:34:38] IYaroslaw: did that help? see details in this thread: http://www.mediawiki.org/wiki/Thread:Project:Support_desk/Error_when_installing_MediaWiki [18:34:58] *http://www.mediawiki.org/wiki/Thread:Project:Support_desk/Error_when_installing_MediaWiki. (the period of part of it) [18:35:31] PiRSquared: em... i don't clean understand. i should download extension LocalisationUpdate with new version? remove folder localisationUpdate, and change on new version? [18:36:06] IYaroslaw: first try setting $wgCacheDirectory to something that is writable by the webserver (info: http://www.mediawiki.org/wiki/Manual:$wgCacheDirectory ) [18:36:21] if that doesn't work, just try reinstalling LocalisationUpdate or disabling it [18:37:41] 03(mod) articlefeedback-pitch-thanks should be in singular form if the user submits only one rating - 10https://bugzilla.wikimedia.org/29323 +i18n; summary (10Nemo) [18:43:16] PiRSquared: i just remove the extension (folder and line in LocalSettings.php) and it works! i don't know, may be i will need this ext in future... very pleased you and your help! Thank you vety much! Good luck! [18:45:26] Ryan_Lane: hi [18:47:48] okay, IYaroslaw :) [18:55:36] 03(mod) articlefeedback-pitch-thanks should be in singular form if the user submits only one rating - 10https://bugzilla.wikimedia.org/29323 +comment (10gerritadmin) [18:55:38] 03(mod) articlefeedback-pitch-thanks should be in singular form if the user submits only one rating - 10https://bugzilla.wikimedia.org/29323 (10Gerrit Notification Bot) [19:04:11] 03(mod) {{PLURAL}} isn't expanded when an interface message transcludes Special:Recentchanges - 10https://bugzilla.wikimedia.org/32275 +comment (10Nemo) [19:08:46] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10Nemo) [19:16:12] 03(mod) Useractivity-* interface messages and their documentation are unclear - 10https://bugzilla.wikimedia.org/28617 (10Nemo) [19:16:13] 03(mod) MediaWiki:Useractivity-award should support GENDER - 10https://bugzilla.wikimedia.org/25337 (10Nemo) [19:17:25] 03(mod) Fix gender in user namespaces for Portuguese wikis - 10https://bugzilla.wikimedia.org/31986 +comment (10Nemo) [19:19:46] 03(mod) [TUX] Outdated warning not shown in the translation editor - 10https://bugzilla.wikimedia.org/45420 +comment (10Pavel Selitskas [wizardist]) [19:25:47] 03(mod) VisualEditor: Display HTML comments to the editor (and make them editable/creatable) - 10https://bugzilla.wikimedia.org/49603 +comment (10Ignatzmice) [19:27:59] marktraceur: I had a look at the file you suggested, but then in the UploadWizrd extension there are 2 files mw.ApiUploadFormDataHandler.js and mw.ApiUploadHandler.js, what is the basic difference between the 2? [19:29:19] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10p.selitskas) [19:30:22] 03(mod) Improve the wording of gender selection option - 10https://bugzilla.wikimedia.org/31816 +comment (10gerritadmin) [19:32:19] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10federicoleva) [19:38:53] 03(mod) Categorize {{#babel}} on ru.wikinews - 10https://bugzilla.wikimedia.org/52679 +comment (10Dereckson) [19:40:45] was trying to upgrade to 1.21.1 from my previous 1.20 version and i get this error when running php5 update.php: http://pastebin.com/MWx2LZKj [19:42:30] Demonicpagan: Try running the file maintenance/update.php from the command line [19:42:35] oh, did you? [19:42:38] hm [19:43:20] Demonicpagan: what extensions do you have installed? [19:44:31] http://pastebin.com/tmhw8ATp [19:44:35] 03(mod) redirects.conf should not hardcode HTTP - 10https://bugzilla.wikimedia.org/31369 +comment (10Dan Wolff) [19:46:19] Demonicpagan: try reading the answers and see if it works for you - http://www.mediawiki.org/wiki/Thread:Project:Support_desk/upgrade_from_1.16.1_to_1.21.1_failing [19:46:27] or http://www.mediawiki.org/wiki/Thread:Project:Support_desk/_1.16_1054:_Unknown_column_'user_options'_in_'field_list'_(localhost)_(2) [19:47:20] «I solved it with a very dirty work-around. I added the column "page_content_model" myself as text in phpmyadmin. I ran the update.php and during the 5 seconds countdown. I removed the "page_content_model". The update.php than updates the page table itself.» [19:47:24] 03(mod) Enable "Extension:NewUserMessage" on ckb.wikipedia - 10https://bugzilla.wikimedia.org/52678 +comment (10Dereckson) [19:47:24] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10p.selitskas) [19:47:33] «AND I just noticed that the problem does not exit when you update via the web_updater (http://www.mediawiki.org/wiki/Manual:Upgrading#Web_updater)» [19:48:20] 03(NEW) [TUX] "0 more" tag is shown in the translation window after issues fixed - 10https://bugzilla.wikimedia.org/52710 minor; MediaWiki extensions: Translate; () [19:49:03] 03(mod) [TUX] "0 more" tag is shown in the translation window after issues fixed - 10https://bugzilla.wikimedia.org/52710 (10Pavel Selitskas [wizardist]) [19:51:44] read that, workin and see if the web updater can do it w/o me making the db change [19:59:20] ok [19:59:23] that dirty workaround did it [19:59:38] 03(mod) [TUX] "0 more" tag is shown in the translation window after issues fixed - 10https://bugzilla.wikimedia.org/52710 (10Pavel Selitskas [wizardist]) [19:59:39] 03(mod) [TUX] Outdated warning not shown in the translation editor - 10https://bugzilla.wikimedia.org/45420 (10Pavel Selitskas [wizardist]) [20:09:49] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10federicoleva) [20:10:09] Hi. [20:16:45] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10p.selitskas) [20:21:03] 03(mod) Post move log is unclear - 10https://bugzilla.wikimedia.org/25034 +comment (10Nemo) [20:25:33] 03(mod) MediaWiki:Fundraiserstats-tab-ytd should not contain (USD) - 10https://bugzilla.wikimedia.org/25608 +comment (10Nemo) [20:36:16] 03(mod) Insert message into warning box - 10https://bugzilla.wikimedia.org/29741 normal->15enhancement; +design; +comment (10Nemo) [20:36:16] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Nemo) [20:38:35] 03(mod) MediaWiki:Lqt-sign-not-necessary renders "" tags verbatim - 10https://bugzilla.wikimedia.org/30246 +comment (10Nemo) [20:38:43] 03(mod) MediaWiki:Lqt-sign-not-necessary renders "" tags verbatim - 10https://bugzilla.wikimedia.org/30246 normal->15enhancement (10Nemo) [20:42:33] 03(mod) action=opensearch converts "Project:About", but not "Wikipedia:About" - 10https://bugzilla.wikimedia.org/52610 +comment (10Umherirrender) [20:44:21] Hi, I'm getting "You don't have permission to access /mediawiki/index.php on this server. [20:44:28] - Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request" when I try to preview or save pages in a new instlal, permissions seem to be fine (755/644), any suggestion? [20:45:11] 03(mod) Unclear scope of "Restore all default settings" button (resets settings in *all* tabs) - 10https://bugzilla.wikimedia.org/33327 +comment (10gerritadmin) [20:45:14] 03(mod) Unclear scope of "Restore all default settings" button (resets settings in *all* tabs) - 10https://bugzilla.wikimedia.org/33327 (10Gerrit Notification Bot) [20:46:00] 03(mod) Windows 8 App: About wikipedia page image and more info - 10https://bugzilla.wikimedia.org/45796 +comment (10netzen) [20:51:18] Hi, I'm getting "You don't have permission to access /mediawiki/index.php on this server. [20:51:26] - Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request" when I try to preview or save pages in a new instlal, permissions seem to be fine (755/644), any suggestion? [20:51:54] install* [20:53:13] 03(mod) Forcing the language for {{PLURAL}} rule - 10https://bugzilla.wikimedia.org/22985 +comment (10federicoleva) [20:54:42] 03(mod) git.wikimedia.org (gitblit) is down - 10https://bugzilla.wikimedia.org/51769 (10rupert.thurner) [20:57:09] 03(mod) Inconsistent user messages on too many failed logins with ConfirmEdit enabled for logins - 10https://bugzilla.wikimedia.org/29191 +comment (10Nemo) [20:57:20] 03(mod) Inconsistent user messages on too many failed logins with ConfirmEdit enabled for logins - 10https://bugzilla.wikimedia.org/29191 (10Nemo) [20:57:45] 03(mod) Inconsistent user messages on too many failed logins with ConfirmEdit enabled for logins - 10https://bugzilla.wikimedia.org/29191 (10Nemo) [20:57:45] 03(mod) Interface messages needing rewording or documentation and other issues with existing messages (tracking) - 10https://bugzilla.wikimedia.org/38638 (10Nemo) [20:59:16] Back later... [21:02:21] 03(mod) centralauth-account-exists-reset should give link to homewiki - 10https://bugzilla.wikimedia.org/37219 summary (10Nemo) [21:06:51] 03(mod) centralauth-account-exists-reset should give link to a wiki where the account exists - 10https://bugzilla.wikimedia.org/37219 summary; +comment (10Nemo) [21:18:40] is there a way to trigger Travis without actually letting the changeset merge? [21:21:57] Who's Travis? [21:22:11] You mean jenkinsbot? [21:23:55] Ohhh. Wait. I think I understand what is happening now. Jeroen de Douw linked TravisCI up for pywikibot, but this is actually run from github, not from gerrit [21:24:34] so it's post-merge anyway [21:25:01] I thought it was actually running the unit tests via zuul/jenkins, but it seems I was mistaken [21:31:03] :-) [21:31:13] Documenting that stuff on wikitech.wikimedia.org would be nice. [21:32:39] 03(mod) centralauth-account-exists-reset should give link to a wiki where the account exists - 10https://bugzilla.wikimedia.org/37219 +comment (10gerritadmin) [21:32:42] 03(mod) centralauth-account-exists-reset should give link to a wiki where the account exists - 10https://bugzilla.wikimedia.org/37219 (10Gerrit Notification Bot) [21:40:52] 03(mod) MediaWiki:Movepage-moved not properly escaping file names with $ character in them. - 10https://bugzilla.wikimedia.org/41482 +testme (10Nemo) [21:44:00] 03(mod) Merge MediaWiki:Wm-license-self-one-license and MediaWiki:Wm-license-self-multiple-licenses - 10https://bugzilla.wikimedia.org/38576 +comment (10Nemo) [21:45:37] 03(NEW) Help tooltip in preferences is not accessible - 10https://bugzilla.wikimedia.org/52711 normal; MediaWiki: User preferences; () [22:18:52] is there a list of characters that can't be used in pagenames? \ and > seem to be ones [22:22:53] twoi: \x00-\x1f\x23\x3c\x3e\x5b\x5d\x7b-\x7f [22:23:46] twoi: seen http://www.mediawiki.org/wiki/Manual:$wgLegalTitleChars already? [22:24:01] I have not, thanks [22:24:11] i.e. ASCII non-printables 0-31 (base 10) and 127 (DEL), and #<>[]{- [22:25:13] is there a particular reason why we still have no support for ON DUPLICATE KEY UPDATE in our DBAL? [22:25:14] er, not - [22:25:30] }, instead of -? [22:25:59] yes [22:26:04] and... [22:26:20] it's \x7b up to and including \x7f [22:26:33] ~ and | are also in there [22:27:01] although ~ seems wrong. OK, I need to check this regexp [22:27:11] Hi, I'm getting "You don't have permission to access /mediawiki/index.php on this server. - Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request" when I try to preview or save pages in a new install, permissions seem to be fine (755/644), any suggestion? [22:37:01] 03(NEW) Cannot delete nor rename a regular article on nl.wikipedia - 10https://bugzilla.wikimedia.org/52712 normal; MediaWiki: Page deletion; () [22:48:03] 03(mod) Cannot delete nor rename a regular article on nl.wikipedia - 10https://bugzilla.wikimedia.org/52712 +comment (10Southparkfan) [22:48:34] 03(mod) [BUG] Special:OpenIDConvert can be used even when forcing an openid provider - 10https://bugzilla.wikimedia.org/47151 +comment (10T. Gries) [23:07:36] 03(mod) infobox is deleted - 10https://bugzilla.wikimedia.org/51043 normal->04CRIT; +comment (10Chris McKenna) [23:07:37] 03(mod) Parsoid doesn't handle unclosed table attributes (because of missing quote) in all scenarios - 10https://bugzilla.wikimedia.org/49839 (10Chris McKenna) [23:11:36] 03(mod) git.wikimedia.org (gitblit) is down - 10https://bugzilla.wikimedia.org/51769 +comment (10innocentkiller) [23:18:22] does anyone know of any templates that use TemplateData? [23:20:14] 03(mod) create wikilovesearth@lists.wikimedia.org mailing list - 10https://bugzilla.wikimedia.org/52705 +comment (10Andrij) [23:20:39] Rasel160: yes, why? [23:20:42] 03(mod) create wikilovesearth@lists.wikimedia.org mailing list - 10https://bugzilla.wikimedia.org/52705 +comment (10bondareandre) [23:20:47] at least on enwiki [23:21:33] PiRSquared: i need an example to work from, i am trying to convert Templates Book, Information, Artwork to TemplateData format [23:22:35] see https://en.wikipedia.org/wiki/Wikipedia:TemplateData [23:22:44] 03(mod) WLE-contest mailing list - 10https://bugzilla.wikimedia.org/52704 +comment (10Anatoliy Goncharov) [23:22:47] 03(mod) create wikilovesearth@lists.wikimedia.org mailing list - 10https://bugzilla.wikimedia.org/52705 +comment (10Ahonc.ua) [23:22:54] tutorial: https://en.wikipedia.org/wiki/Wikipedia:VisualEditor/TemplateData_tutorial [23:22:58] example? [23:23:29] https://en.wikipedia.org/wiki/Template:Infobox_album has templatedata [23:24:07] PiRSquared: thank you! :) [23:26:02] Rasel160: see e.g. https://en.wikipedia.org/w/index.php?title=Template:Infobox_album/doc&action=edit [23:26:11] 03(mod) create wikilovesearth@lists.wikimedia.org mailing list - 10https://bugzilla.wikimedia.org/52705 +comment (10bondareandre) [23:55:18] 03(NEW) Enable VisualEditor on se.wikimedia.org - 10https://bugzilla.wikimedia.org/52713 normal; Wikimedia: Extension setup; () [23:58:16] 03(NEW) Enable Notifications on se.wikimedia.org - 10https://bugzilla.wikimedia.org/52714 normal; Wikimedia: Extension setup; ()