[00:03:48] I see the two hooks you mentioned in the code, but I'm not sure what to change to use them. [00:04:19] New patchset: Aaron Schulz; "[FileBackend] More Swift ACL documentation." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15516 [00:05:18] Reedy: Sorry got disconnected. [00:05:31] I see the two hooks in the code, but still not sure what to change to use them. [00:05:43] http://p.defau.lt/?Q_KcgYwFJiixw2W0ta1CUw [00:05:52] Something like that in your LocalSettings [00:06:06] I suspect SpecialListusersQueryInfo is better than the DefaultQuery one [00:06:53] Do theyhave a bot that is connected to the wiki search feature [00:06:55] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15516 [00:09:59] Would be cool if you could add to a bots db by adding wiki pages [00:10:06] New patchset: Reedy; "Remove some unused variables" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15517 [00:11:27] Reedy: Awesome! So I took out the change to query and used that hook which works fine. [00:11:45] now you just need to fix the output row [00:14:24] New patchset: Reedy; "Remove some unused variables" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15517 [00:14:27] wfRunHooks( 'SpecialListusersFormatRow', array( &$item, $row ) ); [00:14:27] return "
  • {$item}{$edits}{$created}
  • "; [00:15:26] You could just append the realname to the end of item [00:17:15] http://p.defau.lt/?I6ez_PUGu5gDXQJGgthyUQ [00:18:53] Change merged: Reedy; [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/15511 [00:24:40] Does anyone know of a way to combine a bunch of articles together... in raw form? [00:25:15] For example, I have a bunch of articles such as "Pagename.js" which are used with &action=raw&ctype=text/javascript ...and I'd like to combine them [00:25:37] If I do transclusion, they will all be on the same page, but parsed (not raw... so JS will break) or they won't actually be transcluded [00:26:12] Copy paste? :D [00:26:26] hehe [00:26:45] would certainly work, but I doubt I can convince the community to do that on all of their wikis [00:27:25] load.php/resourceloader will do that for registered modules [00:27:34] I'm not sure it works so well for page name [00:27:35] s [00:28:36] though, there is an RL module to load from el random mediawiki:foobarbaz.js [00:29:18] orly? [00:29:28] 03(mod) Remove nearby list view - 10https://bugzilla.wikimedia.org/38347 +comment (10Phil Chang) [00:29:59] Reedy: are there docs for that module? [00:30:01] "Abstraction for resource loader modules which pull from wiki pages" [00:30:12] includes/resourceloader/ResourceLoaderWikiModule.php [00:32:14] 03(mod) Title and description fields needed on Upload Info screen - 10https://bugzilla.wikimedia.org/38285 +comment (10Phil Chang) [00:36:48] goddamn technology. My phone provider is having an outage, and every time i try to send a text I loose all signal [00:43:08] Reedy: I'm not very good w/RL yet. From looking @ the code for ResourceLoaderWikiModule, I don't understand how I'd write JS to load a bunch of those wiki pages [00:43:25] (googled a bit too, can't find it). Know of any examples of how to use it?: [00:43:34] A few extensions subclass it [00:43:49] protected function getPages( ResourceLoaderContext $context ) { [00:43:49] return array( [00:43:49] 'MediaWiki:WikiLove.js' => array( 'type' => 'script' ), [00:43:49] ); [00:44:03] but then you've still got to $wgOut->addModules( 'foobar.whatever'); [00:44:40] hmm [00:44:44] and load.php (ie "bits" for us) will only take modules, not arbitary pages [00:45:01] so there's currently not a way to let the community include a bunch of wiki pages together in one request? [00:45:31] Don't think so [00:45:48] Unless you can play around with transclusion and nowiki etc [00:46:05] // [00:46:11] codes [00:46:13] // [00:46:29] Oh, wait [00:47:09] Sean_Colombo: importScript('MediaWiki:Common.js/edit.js'); [00:47:35] Variants of which has been around for years [00:48:44] if ( mw.config.get('wgServer') == 'https://secure.wikimedia.org' ) { [00:48:46] * Reedy barfs [00:53:01] Sorry if this is a silly question. How should I set the include path for MediaWiki to be initialized from within the wiki directory but not in the root? [00:54:00] If I require_once( '../includes/WebStart.php' ); in a file that's in the same directory as index.php then it works. But if it's in foo/example.php then it doesnt work. [00:55:11] Reedy: the problem I'm trying to solve is ppl using importScript to import 11 different files... I wan t them combined to 1 :) [00:55:31] Perhaps I need a custom API endpoint for that [01:00:28] Do all web access points have to be in the root directory? [01:02:14] jazzybee: not sure if it's a requirement, but it's DEFINITELY easier. If you'd rather have it in a different spot in your code-base, just put a symlink in the root directory that points to the subdirectory script [01:06:37] Sean_Colombo: thanks. i tried that but symlinking isn't working. [01:07:41] wait..i take that back. symlinking will work [01:08:13] 03(NEW) Project-neutral interface - 10https://bugzilla.wikimedia.org/38349 normal; MediaWiki extensions: ArticleFeedbackv5; (federicoleva) [01:08:26] Reedy: Thanks for the help, sorry had to step away. I've got one last hurdle I think. I've changed item to just be the user_real_name, but is there a way of setting the $edits and $created from the hooks? [01:10:19] I think either the hooks would have to be changed or I would have to keep psasing the is Included flag from the constructor and just remove the groups and created fields when doing transincludes [01:10:47] but you suggested earlier it might be okay to not display the groups and created for transincluding [01:13:55] Jacobb_: Reedy, being physically situated nearish longitude 0, might be offline sleeping. [01:14:05] ah, thanks [01:16:27] I'm guessing he is in IRC regularly? He was helping me with a patch for making Special:Listusers transincludible and I was going to send it to him to get submitted. [01:19:14] Yes, Reedy is nearly as addicted to IRC as I am. [01:19:29] lol ok, thanks. I'll just catch him later then :) [01:20:15] You miight - if you have created a bugzilla enhancement request for your idea - ask your question there. [01:20:27] He is *more* addicted to Bugzilla than he is to IRC. [01:22:27] Thanks, I'll do that. [01:30:57] Ah, didn't realize I have to be on the developer's list to check out the code or submit bugs. [01:33:08] You can submit bug no matter who you are, on http://bugzilla.wikimedia.org [01:33:24] oh my mistake [01:33:35] You can also check out the code without being a dev, using git [01:33:46] But checking *in* is a bit more challenging. [01:34:08] I haven't figured that part out yet. [01:34:25] Heh... transcludable listusers... [01:34:31] that'll be fun [01:34:53] ah thanks, good to know [01:35:33] It *will* be nice, Namtnad. {{Special:ListUsers/admin}} [01:35:49] heh... ok 'that' might actually have value [01:36:17] ;) I was really meaning /fun/ as in non-dynamically transcluding a list that can have millions of members [01:36:50] oh sorry, did I miss something? [01:37:19] Yes, just a comment that it will be an interesting enhancement, Jacobbb_ [01:37:29] ah [01:37:58] I'm sure it will have a limit Namtnad, and a continue parameter. [01:38:17] It is, literally, the exact same as the special page. [01:38:20] Well... it'll be the Special:ListUser's page [01:38:24] Which does have that [01:38:32] [01:38:44] But the point is that paging does not really fit [01:39:12] Of course, it might be embarrassing to display certain username ranges... like the ones around certain famous admins... [01:39:41] It either takes you away from the page... at which point, "wait, why are we transcluding this?" [01:39:54] Or it tries to insert special page parameters into a non special page. [01:40:05] Naturally with confusion. [01:40:29] Not fitting into the normal model MW works in. [01:40:50] actually I don't think the listusers does do limits [01:41:01] index.php?title=Special:NewPages/3 limits to 3, but index.php?title=Special:ListUsers/3 doesn't [01:41:21] "For checkuser help, bug these idiots: {{Special:ListUsers/checkusers}}" etc is the obvious use case, but usergroups are more heavily implemented in other non-WMF wikis. [01:41:32] And also being inefficient because it's plain jon-js and the page being transcluded into was not intended as a dedicated special page. [01:42:04] hello [01:42:06] Jacobbb_ I believe it is hard-limited (configurable) at 200, and you can provide a starting point. [01:42:12] ok [02:07:01] New patchset: Siebrand; "Implement dual license GPLv2 and MIT." [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/15518 [02:08:13] Tch... That WMUK job posting only makes me think of one thing [02:13:07] New patchset: Siebrand; "Make no results message less scary." [mediawiki/extensions/intersection] (master) - https://gerrit.wikimedia.org/r/15442 [02:14:12] New review: Siebrand; "I made the sentence plural. Okay with merging that?" [mediawiki/extensions/intersection] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/15442 [02:14:50] Namtnad: Yes? [02:15:05] "I don't make enough money." [02:15:17] hmm, i can't figure out why the css don't apply [02:19:28] i'm trying to put an css on that skin [02:20:17] i've tried in www.test.com/wiki/MediaWiki:Chick.css [02:21:31] l-fy: have you purged your wiki's cache, and your browser's cache? [02:21:41] my browser yes [02:21:44] my wiki i don't know [02:22:39] Try yourdomain.tld/wiki/Main_Page?action=purge [02:23:42] done [02:23:50] same issue [02:25:43] Amgine_: do you have some time? [02:26:27] Well, sort of. I'm supporting in 3 channels at the moment. [02:26:36] Okay, one of those is just gossiping. [02:27:00] Amgine_: private? [02:27:13] go for it. [02:46:17] 03(mod) Add language portals step to Special:FirstSteps - 10https://bugzilla.wikimedia.org/32930 +comment (10Nemo_bis) [02:50:55] 03(NEW) Buttons to insert missing parameters - 10https://bugzilla.wikimedia.org/38350 enhancement; MediaWiki extensions: Translate; (federicoleva) [02:52:47] 03(mod) Buttons to insert missing parameters - 10https://bugzilla.wikimedia.org/38350 +comment (10Nemo_bis) [03:05:39] 03(NEW) Left/right aligned images should flip in RTL pages - 10https://bugzilla.wikimedia.org/38351 normal; MediaWiki extensions: Translate; (s.mazeland) [03:06:30] 03(mod) Left/right aligned images should flip in RTL pages - 10https://bugzilla.wikimedia.org/38351 +i18n (10Siebrand) [03:09:09] Hi. Once, i log into my wikipage, i have Mytalk, My preferences,My watchlist, My new messages, My contributions as options at top. what if i want to get rid of these options or get it into a different page? [03:09:13] what do i di then? [03:09:15] do then? [03:09:37] Well... [03:10:03] they are part of the 'skin', so you would need to edit the skin, or hide them using css tricks. [03:10:28] You may want to look around the mediawiki.org site for topics similar to this. [03:10:30] use css on common.css? [03:10:45] oh can you just pass on a link if possible? thank you so much. [03:10:58] !skins [03:10:58] http://www.mediawiki.org/wiki/Manual:Skins>. Skin usage: . Gallery of CSS styles: . Writing your own: http://blog.redwerks.org/2012/02/08/mediawiki-skinning-tutorial/ and the historical archive [03:11:14] !faq [03:11:15] Before reporting a problem or requesting assistance, please check the FAQ first. The FAQ for MediaWiki can be found at http://www.mediawiki.org/wiki/Manual:FAQ [03:11:44] Got it . Thank you so much. [03:12:06] yw [03:27:37] 03(NEW) Categories should list threads, not summaries - 10https://bugzilla.wikimedia.org/38352 normal; MediaWiki extensions: LiquidThreads; (federicoleva) [03:31:37] 03(NEW) Page links from thread titles are not visible in Special:WhatLinksHere - 10https://bugzilla.wikimedia.org/38353 normal; MediaWiki extensions: LiquidThreads; (federicoleva) [03:33:44] 03(mod) Import/Export also documentation messages for "notranslate" messages - 10https://bugzilla.wikimedia.org/32490 +comment (10Nemo_bis) [03:54:21] Like common.css,sidebar and all, where do i find a list of pages which i can edit on media wiki? [03:58:40] hello all. I've got a fairly goofy Parser Functions question. I'm trying to do #hashprint inside of an #arrayprint loop [03:59:09] {{#arraydefine:player_arr|{{#var:player_list}}|,|unique}} {{#arrayprint:player_arr||@@@| {{#hashprint:_player_@@@ |
    |%%%% |@@@@ |'''%%%%:''' @@@@}} }} [03:59:20] this very much doesn't want to work... anyone know if it's possible? [04:09:59] nevermind, got it to work. Problem was in an unrelated template. [04:28:44] aswamina: Special:AllMessages [05:10:48] Found it Brooke. Thanks once again :) [05:15:50] Brooke, where can i find a description of what each page contains? suppose i want to chuck few things out from my personal menu on top like my preferences and all, where do i see? [05:16:25] 03(mod) invaliduser error is misleading - 10https://bugzilla.wikimedia.org/33781 +comment (10Liangent) [05:29:18] 03(mod) Several history entries for the same content and watchlists showing wrong article size changes - 10https://bugzilla.wikimedia.org/37225 +comment (10Liangent) [05:34:11] 03(FIXED) HTML tags shouldn't be escaped before passing to MathJax - 10https://bugzilla.wikimedia.org/36059 +comment (10Liangent) [05:34:37] aswamina: If you want to remove things, you should use CSS. [05:34:46] There's no easy way to see what a message does. [05:34:56] You can see where it's used in the interface by using ?uselang=qxx or something. [05:35:26] qqx [05:35:34] https://test.wikipedia.org/wiki/Thesaurus?uselang=qqx [05:40:17] Brooke where do i use te ?uselang=qqx? [05:45:05] Brooke where do i use te ?uselang=qqx? [05:53:36] hey Brooke, where do i type ?useland=qqx? [05:54:00] At the end of the URL [05:54:10] Liek foo?uselang=qqx [06:01:36] hi ty . thanks. i got that. now when i access that particular page, what css code to i type to not display that particular thing in my main page? [06:06:10] hey once i find out which page to not display in my layout, what should type in the css file to not display it. Generally when you know the name of the element , you put that element and then display:none [06:11:37] 03(mod) Implement the admin_tree table - 10https://bugzilla.wikimedia.org/38311 +comment (10Maarten Dammers) [06:18:25] New patchset: Nischayn22; "Tests for Special page functions" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/14870 [06:19:53] Hi i have a forum menu, how do i display only a few things under this and not show the rest? [06:26:51] 03(mod) no blank before/after "(talk | contribs)" in Japanese messages - 10https://bugzilla.wikimedia.org/38300 +comment (10Penn Station) [06:29:31] New patchset: Nischayn22; "Tests for Special page functions" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/14870 [06:39:15] New review: Nischayn22; "This is not a reference to "wikimedia" bug 10327, its a mysql bug. Gerrit seems to have used some AI..." [mediawiki/extensions/SemanticMediaWiki] (master) C: 0; - https://gerrit.wikimedia.org/r/14870 [06:46:23] New patchset: Mwjames; "(bug 38292) Fixed alternative query store - add public method getQuerySource to determine query source - applied new param defs - allow explicitly to specify a default store" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/15243 [06:48:52] New patchset: Mwjames; "(bug 38292) Fixed alternative query store - add public method getQuerySource to determine query source - applied new param defs - allow explicitly to specify a default store" [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/15243 [07:31:41] 03(mod) Several history entries for the same content and watchlists showing wrong article size changes - 10https://bugzilla.wikimedia.org/37225 +comment (10Platonides) [07:53:05] hi once i find out an element how do i not display that particular box? [07:53:38] like in navigation if i want just main page and everything else to be removed how do i do that? [07:57:09] 03(mod) Buttons to insert missing parameters - 10https://bugzilla.wikimedia.org/38350 +comment (10[[kgh]]) [08:03:20] <_Meow> aswamina: May I help you? [08:03:29] Yes plss. [08:03:50] <_Meow> Do you want to hide an element? [08:03:53] I am looking to reduce the no. of options in my navigation and menu and all. [08:03:55] yes. [08:04:08] like when i log in, it has my preferences , my talk and all right? [08:04:21] i want to move all those to another page or completely chuck it. [08:04:37] <_Meow> add "display: none;" the element's style [08:05:30] 03(NEW) wbsetitem does not set bot flag - 10https://bugzilla.wikimedia.org/38354 minor; MediaWiki extensions: WikidataRepo; (bugreporter) [08:05:58] this is the name of the element i want to hide accesskey-pt-preferences [08:06:39] i did display:none; before as well in its page. [08:06:47] its still appearing . [08:06:47] <_Meow> Let's see... [08:07:17] its My preferences in my page and element name is accesskey-pt-preferences [08:07:29] <_Meow> Is it id="pt-preferences"? [08:07:40] how do i find the id? [08:07:53] <_Meow> See the document [08:08:07] Which document? [08:08:11] <_Meow> In Google Chrome, right click on the element and select "inspect" [08:08:29] yes. [08:08:43] it is id="pt-preferences" [08:08:43] <_Meow> See it? [08:08:47] yes. [08:08:47] <_Meow> Okay [08:09:03] <_Meow> So please #pt-preferences { display: none; } to the CSS [08:09:14] Where do i put display:none now? in common.css? [08:09:41] <_Meow> Add #pt-preferences { display: none; } to common.css should be fine [08:10:24] i did that as well..its still appearing. i did shift+refresh as well [08:10:59] <_Meow> Did you wrote "#pt-preferences"? [08:11:59] yea...i wrote without quotes [08:12:13] <_Meow> How could that be... [08:12:42] its still appearing. i wrote that line in common.css [08:12:46] <_Meow> Could you point me to the URL of your wiki? You can send it by private message if you want [08:12:50] i ll paste what i wrote exactly. [08:13:44] #pt-preferences { display: none; } [08:14:28] <_Meow> How about #pt-preferences { display: none !important; } ? [08:15:38] haha...worked :) !awesome. [08:18:41] 03(NEW) wbgetitems throws error if result contains an items twice - 10https://bugzilla.wikimedia.org/38355 major; MediaWiki extensions: WikidataRepo; (bugreporter) [08:48:36] 03(NEW) wbgetitems: add possibility to request multiple site-title-pairs on one request - 10https://bugzilla.wikimedia.org/38356 enhancement; MediaWiki extensions: WikidataRepo; (bugreporter) [08:48:36] 03(mod) wbgetitems throws error if result contains an items twice - 10https://bugzilla.wikimedia.org/38355 (10merl) [08:48:46] hello, I'm looking into pulling specific data from Wikipedia to a web application, any pointers on an API I can use for this? [08:50:30] !api | xelawafs [08:50:30] xelawafs: The MediaWiki API provides direct, high-level access to the data contained in the MediaWiki databases. Client programs should be able to use the API to login, get data, and post changes. Find out more at . For client libraries in various languages, see . [08:50:37] !dumps | xelawafs [08:50:38] xelawafs: For information on how to get dumps from Wikimedia Wikis, see http://meta.wikimedia.org/wiki/Data_dumps [08:53:29] saper: thanks! [09:35:51] New patchset: Tobias Gritschacher; "added selenium test to check proper item deletion" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15520 [09:40:20] How can I request a new Git repo? [09:42:15] Jan_Luca: for an extension? [09:42:25] yes [09:43:08] Jan_Luca: http://www.mediawiki.org/wiki/Git/New_repositories [09:43:56] On http://www.mediawiki.org/wiki/Git/New_repositories/Requests seems nt [09:44:10] On http://www.mediawiki.org/wiki/Git/New_repositories/Requests seems not to be much activities [09:44:26] maybe because it's wikimania time [09:45:21] I heard that asking in IRC is often faster so I ask here :-) [09:48:10] New patchset: Matthias Mullie; "Bug 37822 - Text size of legal text from feedback form" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/15521 [09:51:23] 03(mod) Text size of legal text from feedback form - 10https://bugzilla.wikimedia.org/37822 +comment (10Matthias Mullie) [09:52:03] 03(FIXED) Article Feedback 5 - CTA4 container collapsing - 10https://bugzilla.wikimedia.org/38160 (10Matthias Mullie) [09:52:06] 03(FIXED) Article Feedback 5 - CTA5 missing header "thanks! your feedback has been posted here" - 10https://bugzilla.wikimedia.org/38161 (10Matthias Mullie) [09:52:25] 03(FIXED) Article Feedback Page - Show the user's last post at the top of the page - 10https://bugzilla.wikimedia.org/36649 (10Matthias Mullie) [09:52:36] 03(FIXED) Article Feedback - My Contributions - 10https://bugzilla.wikimedia.org/36773 (10Matthias Mullie) [10:22:42] the mw undo feature seems quite stupid: I have two sections, and I edit the first one, then the second one (by section edit) but I can't undo the first edit and it says the section was edited already while I really only edited the other section [10:22:59] Does anyone know whether this is the normal behavior [10:38:57] 03(mod) wbgetitems: add possibility to request multiple site-title-pairs on one request - 10https://bugzilla.wikimedia.org/38356 +comment (10Nikola Smolenski) [10:48:42] 03(mod) Installation of computer modern font - 10https://bugzilla.wikimedia.org/38299 +comment (10Gauravjuvekar) [10:49:15] 03(NEW) [SRF] 1.8 [patch]: Add overlay (fancybox) support for slideshow and carousel display - 10https://bugzilla.wikimedia.org/38357 normal; MediaWiki extensions: SemanticResultFormats; (jamesin.hongkong.1) [10:50:26] 04(REOPENED) in property throws fatal error - 10https://bugzilla.wikimedia.org/30717 +comment (10Nischay Nahata) [10:56:36] New review: Amire80; "I don't want to be an obnoxious bureaucrat and hold the approval of this with pesky details, so I am..." [mediawiki/extensions/UniversalLanguageSelector] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/15518 [10:57:59] 03(mod) A concept cannot be created (1.8alpha) - 10https://bugzilla.wikimedia.org/37780 normal->minor; +comment (10Nischay Nahata) [11:21:24] New patchset: Jens Ohlig; "getUndoContent added to get undo working again for WikiText" [mediawiki/core] (Wikidata) - https://gerrit.wikimedia.org/r/15527 [11:24:10] 03(FIXED) Add French and Italian Wikibooks as an import source at Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/37457 +comment (10AmieKim) [11:24:37] New patchset: John Erling Blad; "Multiple similar items stored in result trows an error" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15528 [11:25:10] 03(mod) wbgetitems throws error if result contains an items twice - 10https://bugzilla.wikimedia.org/38355 (10jeblad) [11:26:53] New patchset: Mwjames; "(bug 38357) Enable overlay(fancybox) support for slideshow/carousel gallery printer" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/15529 [11:27:09] Hey all. I have a question regarding API-Logins and switching from another Platform to MediaWiki: Im logging into MediaWiki via the API to read out all sites of a specific namespace. The user can then click on one page (only titles shown in a list) to switch to mediawiki to view that page. My question is now, how can I use the session from the API-Login so that the User ist already logged into medaiwiki when he switches ? [11:28:36] cookies [11:29:57] ye, but how do i set them that mediawiki knows them / can read them? I mean, can i set $_COOKIE on the other platform and mediawiki can read that? [11:30:10] it didnt worked for me [11:32:40] Logging in via the api will give you cookies [11:37:15] New patchset: Mwjames; "(bug 38357) Enable overlay(fancybox) support for slideshow/carousel gallery printer" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/15529 [11:41:07] 03(FIXED) [SRF] 1.8 [patch]: Add overlay (fancybox) support for slideshow and carousel display - 10https://bugzilla.wikimedia.org/38357 +comment (10MWJames) [11:49:01] Reedy: hey did varnet talk to you about the convention extension? [11:49:07] Nope [11:49:18] I saw some of your convo though in backscroll [11:49:21] New patchset: Mwjames; "(bug 38357) Enable overlay(fancybox) support for slideshow/carousel gallery printer" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/15529 [11:50:07] Reedy: well what do you think. [11:50:27] If he's re-inventing the wheel for everything, it's just going to be a maintenance nightmare [11:52:12] New patchset: Amire80; "Add tests for Sinhala Wijesekara" [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/15531 [11:52:15] New patchset: Mwjames; "(bug 38357) Enable overlay(fancybox) support for slideshow/carousel gallery printer" [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/15529 [11:53:53] 03(mod) Some vowel combination in Sinhala Wijesekara need to be corrected - 10https://bugzilla.wikimedia.org/32029 +comment (10Amir E. Aharoni) [12:01:54] New review: Brian Wolff; "Yep, that's fine by me" [mediawiki/extensions/intersection] (master) C: 0; - https://gerrit.wikimedia.org/r/15442 [12:18:45] 03(NEW) Call to a member function getText() on a non-object in ApiMobileView - 10https://bugzilla.wikimedia.org/38358 normal; MediaWiki extensions: MobileFrontend; (sam) [12:20:08] 03(NEW) Argument 1 passed to ArticleFeedbackv5Render::grayMask() must be an array, null given - 10https://bugzilla.wikimedia.org/38359 normal; MediaWiki extensions: ArticleFeedbackv5; (sam) [12:24:11] 03(mod) Link to #wikimedia-tech from the WMF error message - 10https://bugzilla.wikimedia.org/16043 summary; +comment (10Nemo_bis) [12:30:57] 03(NEW) ui: ESC on autosuggestion for site/page selection will close the whole edit mode instead of just the suggestion dropdown - 10https://bugzilla.wikimedia.org/38360 normal; MediaWiki extensions: WikidataRepo; (Danweetz) [12:44:58] 03(NEW) Install extension Quiz on Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/38361 normal; Wikimedia: Extension setup; (wikibooksvn) [12:45:26] 03(mod) Install extension Quiz on Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/38361 (10AmieKim) [12:45:55] is there a way to list all contributions other than "mine"? [12:46:06] 03(mod) Install extension Quiz on Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/38361 (10AmieKim) [12:46:20] i am mostly using my wiki alone and in the recent changes window i sometimes do not see other spam users did some [12:50:31] Is there a way to pass sessionids received by the API via URLs? For example im on my own site, using the API to read Data from the Mediawiki. Now i want to switch from my site to the mediawiki but want to keep logged in with the login-data i used within the API. [12:57:35] 03(mod) Explain better the meaning of "By e-mail" button - 10https://bugzilla.wikimedia.org/22457 (10Nemo_bis) [12:58:10] Change merged: Daniel Werner; [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15528 [13:03:24] Good morning! I just moved a MediaWiki installation over to a new server...the install used to reside at http://server/ and now resides at http://server2/mediawiki/ what variables do I need to change in LocalSettings.php to re-configure the install? [13:15:14] did Wikimania keynote already start? [13:19:48] 03(mod) Call to undefined method languages::getCode() - 10https://bugzilla.wikimedia.org/38339 +comment (10Niklas Laxström) [13:29:02] New patchset: Matthias Mullie; "Bug 37950 - Article Feedback - 'View Activity' does not appear in Editor's view" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/15537 [13:31:20] 03(mod) Article Feedback - 'View Activity' does not appear in Editor's view - 10https://bugzilla.wikimedia.org/37950 +comment (10Matthias Mullie) [13:34:53] 03(NEW) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 minor; MediaWiki: Special pages; (Jacob.Block) [13:50:06] New patchset: Krinkle; "Die globals, die!" [mediawiki/extensions/Gadgets] (master) - https://gerrit.wikimedia.org/r/15513 [13:51:11] New patchset: Matthias Mullie; "Bug 38267 - Article Feedback - Add Central Feedback Page to Special:SpecialPages" [mediawiki/extensions/ArticleFeedbackv5] (master) - https://gerrit.wikimedia.org/r/15538 [13:51:38] 03(mod) Article Feedback - Add Central Feedback Page to Special:SpecialPages - 10https://bugzilla.wikimedia.org/38267 +comment (10Matthias Mullie) [13:51:40] 03(mod) get rid of deployment-nfs-memc - 10https://bugzilla.wikimedia.org/38084 +comment (10Antoine "hashar" Musso) [13:51:40] Change merged: Krinkle; [mediawiki/extensions/Gadgets] (master) - https://gerrit.wikimedia.org/r/15513 [13:55:13] 03(mod) Get rid of svn keywords in API files - 10https://bugzilla.wikimedia.org/33287 +comment (10Krinkle) [14:03:15] New patchset: Siebrand; "Implement dual license GPLv2 and MIT." [mediawiki/extensions/UniversalLanguageSelector] (master) - https://gerrit.wikimedia.org/r/15518 [14:04:52] New review: Siebrand; "Researched file headers a bit, and addressed Amir's comments." [mediawiki/extensions/UniversalLanguageSelector] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/15518 [14:08:06] 03(mod) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 +comment (10Jacob) [14:15:09] 03(mod) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 +comment (10Jacob) [14:16:51] 03(mod) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 +patch +patch-need-review (10Jacob) [14:16:51] New patchset: Tobias Gritschacher; "some refactoring and fixing of sitelinks selenium tests - check sitelinks also before page reload - click sitelink to check for correct linking - moved some code and cleanup" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15540 [14:19:51] 03(mod) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 +comment (10Jacob) [14:27:06] New patchset: Siebrand; "Remove use of unneeded global." [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/15543 [14:29:43] New patchset: Reedy; "Bug 38362 - Transclude Special:Listuser" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15544 [14:31:21] 03(ASSIGNED) get rid of deployment-nfs-memc - 10https://bugzilla.wikimedia.org/38084 +comment (10Antoine "hashar" Musso) [14:33:06] 03(mod) Transclude Special:Listuser - 10https://bugzilla.wikimedia.org/38362 +comment (10Sam Reed (reedy)) [14:48:38] problems with $wgLogo, always I define this picture, the site becomes "blank" [14:50:24] souliaq: this suggests an error in your php. Try debugging your site? [14:50:33] !debug | souliaq [14:50:33] souliaq: 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 [14:50:34] how I can debugg the site? [14:50:50] thanks. [14:51:02] That will help you see if there are any errors from your LocalSettings.php [14:54:35] mmm, I put this error_reporting( -1 ); ini_set( 'display_errors', 1 ); after result: blank page. [14:54:58] And I put too before result: blank page [14:55:37] paste the logo line and the lines above/below it [14:55:41] you've got some syntax error [14:56:32] New patchset: Drecodeam; "Upload of Images from Photosets" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/15547 [14:56:33] New patchset: Drecodeam; "Added functions to check the license of the image input by the user." [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/12356 [14:56:34] New patchset: Drecodeam; "Uploading of image from Flickr" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/13124 [14:56:34] New patchset: Drecodeam; "Added License support to the upload" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/13195 [14:56:35] New patchset: Drecodeam; "added Flickr upload buttons and input URL container" [mediawiki/extensions/UploadWizard] (master) - https://gerrit.wikimedia.org/r/12269 [14:56:45] Oh, Reedy, there was a gentlebeing last night looking for support from you on a transcludable Special:ListUsers? [14:57:00] [15:29:48] New patchset: Reedy; "Bug 38362 - Transclude Special:Listuser" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15544 [14:57:01] ;) [14:57:11] i committed it about half an hour ago :p [14:57:14] yah, that. [14:57:16] never mind, the stupid ; ; ; [14:57:21] at the end is missing [14:57:34] Ah! good debugging souliaq! [14:57:45] funny. [15:01:48] No, that was serious: you found it without the error reporting. [15:02:08] [15:02:40] New review: Hashar; "/Moves comment from commit message there/" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/14295 [15:04:04] New patchset: Reedy; "Bug 38362 - Transclude Special:Listuser" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15544 [15:09:22] New review: Nikerabbit; "I really like these big licence headers. They are a short read and they really help understand about..." [mediawiki/extensions/UniversalLanguageSelector] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/15518 [15:10:25] New patchset: Hashar; "Adding sites handling" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/14295 [15:12:18] New review: Nikerabbit; "Please fix the mistake and test that it works." [mediawiki/extensions/Narayam] (master); V: 0 C: -2; - https://gerrit.wikimedia.org/r/15543 [15:23:15] hello! i need a help in media-wiki. [15:23:18] New review: Hashar; "Patchset 3" [mediawiki/core] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/14295 [15:23:27] Change merged: Nikerabbit; [mediawiki/extensions/WikimediaIncubator] (master) - https://gerrit.wikimedia.org/r/14274 [15:23:39] how can help me? [15:23:59] what help do you need? [15:25:10] !ask | rfelix [15:25:11] rfelix: Hi, how can we help you? Just ask your question. [15:25:18] rfelix: what kind of help do you need? [15:25:41] when i access the page using IE or Firefox in the top of page i received a message: Strict Standards: Declaration of LdapAuthenticationPlugin::addUser() should be compatible with that of AuthPlugin::addUser() in /usr/share/mediawiki-extensions/ldapauth/LdapAuthentication.php on line 65 [15:27:05] bonjour, gwicke [15:27:37] bonjour Amgine- just arrived in the office after moving to SF [15:27:56] gwicke: Bienvenue! [15:28:14] i don´t know what´s the problem because i was working normaly [15:29:28] Do you install a new extension or update something? [15:29:44] the hunt for an apartment is on now.. [15:30:10] no. nothing [15:30:29] maybe someone else? [15:32:07] New review: Nikerabbit; "Did you check if there is anything that uses these variables that expect them to be in the wiki cont..." [mediawiki/core] (master); V: 0 C: -1; - https://gerrit.wikimedia.org/r/14271 [15:32:57] before i had change the name of the AD server, because the machine one broke it. [15:41:01] 03(mod) Install extension Quiz on Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/38361 normal->15enhancement (10Sam Reed (reedy)) [15:41:50] 03(mod) Make Special:Listuser includeable in pages - 10https://bugzilla.wikimedia.org/38362 summary; +comment (10Sam Reed (reedy)) [15:43:36] 03(mod) Make Special:Listuser includeable in pages - 10https://bugzilla.wikimedia.org/38362 -patch-need-review +patch-reviewed (10Sam Reed (reedy)) [15:46:35] 03(mod) Get rid of svn keywords in API files - 10https://bugzilla.wikimedia.org/33287 +comment (10Sam Reed (reedy)) [15:46:45] Any automated way to create a Wikipage from a Table Structure? (I need create a "database dictionary") [15:50:00] 03(NEW) $content_actions misses the title field - 10https://bugzilla.wikimedia.org/38363 normal; MediaWiki: General/Unknown; (dasch) [15:53:03] New patchset: Siebrand; "Remove use of unneeded global." [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/15543 [15:53:13] New patchset: Reedy; "Api method documentation tweaks" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15549 [15:53:41] New review: Siebrand; "PS2 fixed and tested." [mediawiki/extensions/Narayam] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/15543 [15:57:51] Change merged: Nikerabbit; [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/15543 [15:58:20] 03(mod) Make Special:Listuser includeable in pages - 10https://bugzilla.wikimedia.org/38362 +comment (10Jacob) [16:03:41] 03(mod) Installation of computer modern font - 10https://bugzilla.wikimedia.org/38299 +comment (10Antoine "hashar" Musso) [16:03:55] Change merged: Santhosh; [mediawiki/extensions/Narayam] (master) - https://gerrit.wikimedia.org/r/15246 [16:05:15] 03(NEW) apache segfaults on [[special:upload]] submit to testwiki - 10https://bugzilla.wikimedia.org/38364 normal; Wikimedia: General/Unknown; (bugzilla+org.wikimedia) [16:05:34] 03(mod) Make Special:Listuser includeable in pages - 10https://bugzilla.wikimedia.org/38362 +comment (10Jacob) [16:05:40] http://zh.wikipedia.org/wiki/Special:PrefSwitch [16:06:29] is it related to that debugging code? [16:12:06] New patchset: Reedy; "Bug 38362 - Transclude Special:Listuser" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15544 [16:13:19] 03(FIXED) Add date picker to Special:TranslationStats - 10https://bugzilla.wikimedia.org/37004 (10Niklas Laxström) [16:14:24] New patchset: Reedy; "Bug 38362 - Make Special:Listuser includeable on wiki pages." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15544 [16:17:17] 03(mod) Make Special:Listuser includeable on wiki pages - 10https://bugzilla.wikimedia.org/38362 summary (10Sam Reed (reedy)) [16:17:57] hello guys! how can help me about a problem with AD authentication ? [16:18:18] i am receiving the message Strict Standards: Declaration of LdapAuthenticationPlugin::initUser() should be compatible with that of AuthPlugin::initUser() in /usr/share/mediawiki-extensions/ldapauth/LdapAuthentication.php on line 65 [16:46:02] New review: Nikerabbit; "Please use @dataProviders for tests" [mediawiki/extensions/SignWritingMediaWikiPlugin] (master) - https://gerrit.wikimedia.org/r/14184 [16:46:35] 03(mod) Respect EXIF rotation of images in app - 10https://bugzilla.wikimedia.org/38344 +comment (10Brion Vibber) [16:51:16] New patchset: John Erling Blad; "Added flags to ItemContent to make it respect botflags." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15554 [16:54:03] 03(mod) Jenkins can't fingerprint .git/FETCH_HEAD - 10https://bugzilla.wikimedia.org/38260 +comment (10Antoine "hashar" Musso) [16:57:14] New patchset: SPQRobin; "First version of SpecialIncubatorFirstSteps" [mediawiki/extensions/WikimediaIncubator] (master) - https://gerrit.wikimedia.org/r/13420 [17:09:26] New patchset: Hashar; "[FileBackend] Factored out code into ProcessCacheLRU class." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/13556 [17:12:28] New review: Hashar; "Patchset 6 is a rebase." [mediawiki/core] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/13556 [17:12:31] Change merged: Hashar; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/13556 [17:12:39] yeahhh [17:12:42] at least merged one change today [17:12:43] !!! [17:12:43] Stop using so many exclamation marks ! [17:12:45] see you later [17:12:51] !del !! [17:12:51] 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 [17:12:53] Hello here. [17:12:59] see you tomorrow :-] [17:13:02] ++ hashar [17:24:52] 03(mod) New Format: Rank - 10https://bugzilla.wikimedia.org/22140 +comment (10DaSch) [17:27:22] 03(mod) Charset Error on Special Page - 10https://bugzilla.wikimedia.org/30705 +comment (10DaSch) [17:38:28] Hi everybody [17:39:50] Is there a chat channel for wikipedia? [17:39:57] I couldn't find unfortunately [17:40:28] Sceiwas: #wikipedia doesn't work? [17:40:42] Oh sorry, I made a typo [17:40:46] Now entered [17:40:57] Thank you marktraceur [17:41:03] :) no problem! [18:01:52] New patchset: SPQRobin; "Make dates in sortable tables depend on page content language" [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/14271 [18:06:55] I have my wiki server set up like this: http://www.mediawiki.org/wiki/Manual:Short_URL/wiki.example.com/Page_title--Subdomain_using_mod-rewrite#AnotherVariant_-_wiki.site.net.2FMainPage [18:07:42] New review: SPQRobin; "Added to release notes now, I always forget that." [mediawiki/core] (master) C: 0; - https://gerrit.wikimedia.org/r/14271 [18:08:03] Unfortunately, this causes the wiki to override the directory structure of the server and I need to be able to access to ./forums directory without the wiki overriding this. I know this isn't #httpd, but does anyone know how to set up .htaccess to override the RewriteCond so that the ./forums directory is usable again? [18:08:06] 03(mod) Pinch to zoom is not working on some devices - 10https://bugzilla.wikimedia.org/38348 +comment (10Brion Vibber) [18:14:38] 03(NEW) Protection/Move - 10https://bugzilla.wikimedia.org/38365 normal; MediaWiki: Page protection; (magioladitis) [18:16:28] New patchset: Aaron Schulz; "[FileBackend] Tweaks to speed up backend copy script." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15558 [18:16:53] 03(mod) Installation of computer modern font - 10https://bugzilla.wikimedia.org/38299 +comment (10Gauravjuvekar) [18:17:12] 03(mod) Protection/Move - 10https://bugzilla.wikimedia.org/38365 (10Marios Magioladitis) [18:18:07] 03(mod) Protection/Move - 10https://bugzilla.wikimedia.org/38365 +comment (10Marios Magioladitis) [18:21:45] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15558 [18:22:03] 03(mod) Call to a member function getText() on a non-object in ApiMobileView - 10https://bugzilla.wikimedia.org/38358 +comment (10Max Semenik) [18:22:24] 03(mod) Installation of computer modern font - 10https://bugzilla.wikimedia.org/38299 +comment (10Gauravjuvekar) [18:31:48] 03(mod) Mobile default categories for WLM App image upload - 10https://bugzilla.wikimedia.org/38286 +comment (10Arthur Richards) [18:31:54] 03(ASSIGNED) Mobile default categories for WLM App image upload - 10https://bugzilla.wikimedia.org/38286 (10Arthur Richards) [18:34:19] 03(mod) Protection/Move - 10https://bugzilla.wikimedia.org/38365 +comment (10Marios Magioladitis) [18:34:59] 03(mod) Left/right aligned images should flip in RTL pages - 10https://bugzilla.wikimedia.org/38351 +comment (10Derk-Jan Hartman) [18:36:05] New patchset: Aaron Schulz; "Updated copyFileBackend.php to master bd006888c9337c916ee2401600d9d8a442a1dc3f." [mediawiki/core] (wmf/1.20wmf7) - https://gerrit.wikimedia.org/r/15560 [18:36:49] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticMediaWiki] (master) - https://gerrit.wikimedia.org/r/14870 [18:37:09] who broke testwiki? edit is broken :( [18:38:27] 03(NEW) Trying to edit a title containing a BOM and not having permissions to edit is causing 504 error - 10https://bugzilla.wikimedia.org/38366 critical; Wikimedia: Apache configuration; (bugreporter) [18:38:39] 03(mod) Installation of computer modern font - 10https://bugzilla.wikimedia.org/38299 +comment (10Antoine "hashar" Musso) [18:38:46] 03(NEW) MediaWiki:Globalblocking-blocked should tell the IP range - 10https://bugzilla.wikimedia.org/38367 enhancement; MediaWiki extensions: GlobalBlocking; (federicoleva) [18:38:48] 03(mod) MediaWiki:Globalblocking-blocked should have a variable for the user's IP address - 10https://bugzilla.wikimedia.org/26170 (10Nemo_bis) [18:38:52] 03(mod) Search cannot be activated after scrolling down - 10https://bugzilla.wikimedia.org/38298 +comment (10Phil Chang) [18:39:05] 03(mod) CSS seems to be loaded incorrectly for RTL interface - 10https://bugzilla.wikimedia.org/38294 +comment (10Derk-Jan Hartman) [18:39:24] Change merged: Aaron Schulz; [mediawiki/core] (wmf/1.20wmf7) - https://gerrit.wikimedia.org/r/15560 [18:42:08] awjr: how so? [18:42:42] Aaron|home: Request: GET http://test.wikipedia.org/w/index.php?title=File:Barrio_Santa_Rosa_1342117308397.jpeg&action=edit, from 10.64.0.124 via cp1014.eqiad.wmnet (squid/2.7.STABLE9) to 10.0.2.193 (10.0.2.193) [18:42:42] Error: ERR_ZERO_SIZE_OBJECT, errno [No Error] at Thu, 12 Jul 2012 18:40:31 GMT [18:46:48] 03(mod) Trying to edit a title containing a BOM and not having permissions to edit is causing 504 error - 10https://bugzilla.wikimedia.org/38366 +comment (10Antoine "hashar" Musso) [18:47:52] New review: Jeroen De Dauw; "Awesome! Please have a look at the inline comments :)" [mediawiki/extensions/SemanticResultFormats] (master); V: 1 C: 2; - https://gerrit.wikimedia.org/r/15529 [18:47:53] Change merged: Jeroen De Dauw; [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/15529 [18:51:32] hashar: i cannot reproduce it locally either, but on other wikipedias. Thats why i added this bug to the apache config module and not to mediawiki [18:51:49] Merlissimo: I believe that is an issue with our test.wikipedia.org host [18:52:02] Merlissimo: I heard of people saying that some new PHP was causing trouble there [18:52:04] but same on de.wikipedia.org [18:52:07] maybe we are testing some PHP 5.4 [18:52:08] ohh [18:53:44] awjr: is it random? I just made 2 edits fine [18:54:15] Aaron|home: it does not appear to be random for me, although a few others in mobile have had it work for them [18:55:30] Aaron|home: actually it appears to work fine if i log in [18:55:36] but not as an anon [18:57:16] hi.. i had mediawiki totally working for a long while (after the migration took me 4 days [18:57:31] now i reboot the machine and get "Sorry! This site is experiencing technical difficulties." [18:57:51] i tried to run mysqld and get [18:57:52] "(Can't contact the database server: mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords flag from your my.cnf file (127.0.0.1 [18:57:52] ))" [19:02:04] I can see a different edit tool bar in: http://www.mediawiki.org/w/index.php?title=Help:Tables&action=edit, My default installation of mediawiki haves a more simple toolbar, how I can enable that "special" tool bar ? [19:02:46] emp: that is a yeaaarsssss old issue :-] [19:03:33] hashar, i am not a pro ?. please enlighten me [19:04:06] souliaq: you need to install the WikiEditor extension [19:04:09] emp: have a look at http://engin.bzzzt.biz/2010/11/12/php-mysql-insecure-authentication/ [19:04:28] emp: you will have to change the password manually for whatever database username is used by your MediaWiki installation [19:04:30] souliaq: http://www.mediawiki.org/wiki/Extension:WikiEditor [19:08:23] hashar, hrmm? why did it work before [19:08:36] emp: cause something got updated ? [19:08:52] and now it got downgraded? [19:09:00] emp: honestly I have no idea, but you have the fix above :-] [19:09:17] so just update the password ;-] [19:09:41] i think upon install, i had a hard time running mysqld [19:11:20] hmm, taking care of scributon.wmflabs makes me fully understand people complaining that mediawiki is not equipped for dealing with spam [19:12:26] we need to change something in the default config to take better care of default setups, because this is just overly annoying [19:17:05] hashar, is this normal to get when I run mysqld ? [19:17:07] http://pastebin.com/aq2D0ybm [19:17:46] 03(mod) Mobile default categories for WLM App image upload - 10https://bugzilla.wikimedia.org/38286 +comment (10Arthur Richards) [19:18:09] 03(FIXED) Remove hardcoded references to toolserver database from sql scripts - 10https://bugzilla.wikimedia.org/37555 +comment (10Max Semenik) [19:18:09] emp: 120712 15:15:12 [ERROR] Missing system table mysql.proxies_priv; please run mysql_upgrade to create it [19:18:17] emp: so it looks like you upgraded mysql somehow [19:18:52] oh.. should i run mysql_upgrade? [19:20:24] 03(mod) Simpler way to specify database details for the API - 10https://bugzilla.wikimedia.org/37565 +comment (10Max Semenik) [19:21:35] 06(LATER) Request for OpenMeetings.org mailing list - 10https://bugzilla.wikimedia.org/37976 +comment (10Thehelpfulone) [19:21:57] whats the difference between mysqld and mysqld_safe [19:23:18] 03(mod) Replace MD5 password hashing with WHIRLPOOL - 10https://bugzilla.wikimedia.org/28419 +comment (10Tyler Romeo) [19:28:22] hashar, you're a genius!!!! [19:28:46] emp: well Ijust looked at your error log, and copy pasted the first line containing "error" ;-] [19:28:53] emp: did mysql_upgrade fixed it ? [19:29:04] you definitely had mysql upgraded [19:29:33] well.. i did the upgrade again and then i did the stuff on the webpage that you sent about the mismatching passwords [19:29:48] 03(mod) Mobile default categories for WLM App image upload - 10https://bugzilla.wikimedia.org/38286 +comment (10Phil Chang) [19:29:56] and the authentication between mysql/php made it work [19:30:10] !!! [19:30:11] Stop using so many exclamation marks ! [19:30:51] i really know NOTHING about mysql or php. I really wish they made mediawiki for idiots/lamers like me. That's my two cents for you. [19:31:45] well you have 10+ years of newbies asking us how to install MediaWiki :-D [19:31:52] we used to have a shell script to install MediaWiki [19:32:00] now there is a shinny web installer :-D [19:32:13] and we do a lot of checks during install to guide newbies [19:32:44] anyway, please do ask any question there :-] You should get friendly answers most of the time [19:32:55] for php there is also #php and for mysql #mysql [19:33:45] :) thank you so much and yeah, I guess it's getting better. ;) [19:34:49] cheers and have fun mediawiki'ing! [19:35:32] 03(NEW) Make sure Android app manifest specifies MIPS compatibility - 10https://bugzilla.wikimedia.org/38368 normal; Wikipedia App: Generic; (brion) [19:38:58] 03(mod) No High Dynamic Range Image (HDRI) file formats allowed on Commons - 10https://bugzilla.wikimedia.org/17505 +comment (10Brion Vibber) [19:55:28] New patchset: Aaron Schulz; "[FileBackend] Added "bypassReadOnly" flag." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15563 [19:55:36] I "install" Extension:MeanEditor, but the edit page don't change at all. [19:59:47] New patchset: IAlex; "Documentation improvements in Exception.php." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15564 [20:01:22] * Aaron|home gives hashar https://gerrit.wikimedia.org/r/#/c/15563/ [20:02:13] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15564 [20:02:21] Aaron|home: I have merged your LRUCache thing [20:02:35] yeah, I saw [20:02:45] Aaron|home: I wanted to rant about renaming set() and ping() but though it was not worth it :-]]]]]] [20:02:46] why did you think I was giving you more commits? [20:03:06] aehazehazeazhe [20:03:10] ;) [20:03:10] unrelated changes! ;-D [20:03:14] * Also made sync script use doQuickOperations() since its faster. [20:04:12] * Aaron|home likes to feed hahar's ocd :) [20:04:17] *hashar [20:10:50] 03(mod) CSS seems to be loaded incorrectly for RTL interface - 10https://bugzilla.wikimedia.org/38294 +comment (10Robin Pepermans (SPQRobin)) [20:30:25] 03(mod) Mobile default categories for WLM App image upload - 10https://bugzilla.wikimedia.org/38286 +comment (10Arthur Richards) [20:30:45] 03(mod) Add WLM templates with proper info to images uploaded by the WLM Mobile app - 10https://bugzilla.wikimedia.org/38282 +comment (10Arthur Richards) [20:31:48] New patchset: Gergő Tisza; "Fix type mismatch in ItemDisambiguation::getHTML." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15565 [20:45:30] Hola, tmcw [20:45:39] hey [20:47:16] NORICHEDITOR error trying to use FCKeditor [20:47:19] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15517 [20:48:56] Hi Dispenser. [20:49:07] Dispenser: tmcw is with Mapbox. [20:49:23] He was asking about how to get dumps of articles with coordinates. [20:49:37] And I think you have a tool which does something related to that? [20:49:40] http://toolserver.org/~dispenser/dumps/ [20:49:49] bingo. [20:50:04] although you need page table to join with gc_from [20:50:14] * Brooke takes a dump on the floor. [20:50:22] awesome, thx [20:50:31] yw, tmcw [20:50:59] Dispenser: where's your page describing your tools? [20:51:02] Example program, http://toolserver.org/~dispenser/sources/locateCoord.py source code: http://toolserver.org/~dispenser/cgi-bin/locateCoord.py [20:51:11] Amgine: https://wiki.toolserver.org/view/Ghel [20:51:19] tmcw: yo [20:51:34] willwhite: you see the backscroll? lots of neat stuff [20:51:44] no I can't see it :( [20:51:50] Dispenser: tmcw is with Mapbox. [20:51:50] He was asking about how to get dumps of articles with coordinates. [20:51:50] And I think you have a tool which does something related to that? [20:51:50] http://toolserver.org/~dispenser/dumps/ [20:51:50] bingo. [20:51:50] although you need page table to join with gc_from [20:51:52] * Brooke takes a dump on the floor. [20:51:54] awesome, thx [20:51:58] yw, tmcw [20:52:00] Dispenser: where's your page describing your tools? [20:52:02] Example program, http://toolserver.org/~dispenser/sources/locateCoord.py source code: http://toolserver.org/~dispenser/cgi-bin/locateCoord.py [20:52:08] oh awesome, thanks. [20:52:41] I'm currently waiting on a templatelinks sql import, but I'm not sure where that would even get me. [20:52:46] I'll take a look at this. [20:56:18] New patchset: Daniel Kinzler; "Tell people not to start transactions in doUpdate." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15566 [20:58:20] 03(mod) Implement admin_tree browsing in the monuments api - 10https://bugzilla.wikimedia.org/38313 +comment (10Yuvi Panda) [20:58:20] 03(mod) Remove nearby list view - 10https://bugzilla.wikimedia.org/38347 +comment (10Jon) [20:58:20] 03(mod) iOS saved pages bug on upgrade from iOS 3.1.2 to iOS 3.2 - 10https://bugzilla.wikimedia.org/37761 +comment (10Phil Chang) [20:58:21] 03(mod) Incorrect license cited for Wikinews - 10https://bugzilla.wikimedia.org/38261 +comment (10Phil Chang) [20:59:38] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15566 [21:07:50] New review: SPQRobin; "It doesn't work when the user interface language is different from the wiki content language (or Eng..." [mediawiki/core] (master) C: -1; - https://gerrit.wikimedia.org/r/10469 [21:11:58] 03(mod) '''[[Special:Statistics|{{NUMBEROFARTICLES}}]]''' - Error in TOTAL NUMBER OF ARTICLES - 10https://bugzilla.wikimedia.org/36766 +comment (10Amir E. Aharoni) [21:19:25] New patchset: IAlex; "Catch exceptions thrown while running deferred updates." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15567 [21:21:58] Change merged: Aaron Schulz; [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15567 [21:25:29] 03(FIXED) Simpler way to specify database details for the API - 10https://bugzilla.wikimedia.org/37565 +comment (10Max Semenik) [21:26:19] 03(FIXED) Remove/Make optional Toolserver based i18n for the Monuments DB API - 10https://bugzilla.wikimedia.org/37566 +comment (10Max Semenik) [21:29:51] hey guys [21:30:12] I'm trying to build a wiki graph that consist of the Page TITLE and a LIST of its CATEGORIES [21:30:22] any ideas where to begin? [21:34:03] New patchset: John Erling Blad; "Added flags to ItemContent to make it respect botflags." [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15554 [21:53:28] New patchset: Kaldari; "Updating to version 1.1" [mediawiki/extensions/WikiLove] (master) - https://gerrit.wikimedia.org/r/15187 [22:06:49] 03(mod) Implement admin_tree browsing in the monuments api - 10https://bugzilla.wikimedia.org/38313 +comment (10Arthur Richards) [22:08:13] 03(mod) wbgetitems: add possibility to request multiple site-title-pairs on one request - 10https://bugzilla.wikimedia.org/38356 (10jeblad) [22:13:13] 03(mod) Install extension Quiz on Vietnamese Wikibooks - 10https://bugzilla.wikimedia.org/38361 +comment (10Krenair) [22:19:12] 03(NEW) Auth_remoteuser: PHP Strict Standards errors - 10https://bugzilla.wikimedia.org/38369 normal; MediaWiki extensions: [other]; (scott-wikimedia) [22:20:13] 03(mod) Categories are not saved when doing upload of files into wiki - 10https://bugzilla.wikimedia.org/24439 +comment (10Christian Boltz) [22:29:31] 03(NEW) Table sorting javascript sorts incorrectly - 10https://bugzilla.wikimedia.org/38370 normal; MediaWiki: JavaScript; (niklas.laxstrom) [22:29:57] 03(mod) Treeview of categories breaks in IE9 - 10https://bugzilla.wikimedia.org/30557 +comment (10Christian Boltz) [22:34:43] 04(REOPENED) $wgSelectCategoryRoot ignored on Special:Upload - 10https://bugzilla.wikimedia.org/24911 +comment (10Christian Boltz) [22:35:41] 03(mod) $wgSelectCategoryRoot ignored on Special:Upload - 10https://bugzilla.wikimedia.org/24911 +comment (10Christian Boltz) [22:43:34] 03(mod) Can't run update.php under SQLite 3.6.12: Syntax error - 10https://bugzilla.wikimedia.org/38235 summary (10Brandon Sky) [22:46:54] 03(mod) Left/right aligned images should flip in RTL pages - 10https://bugzilla.wikimedia.org/38351 +comment (10Niklas Laxström) [22:52:11] 03(NEW) Impossible to install AbuseFilter with SQLite - 10https://bugzilla.wikimedia.org/38371 major; MediaWiki extensions: AbuseFilter; (brandonskypimenta) [22:56:43] New review: Nikerabbit; "Few suggestions. Check that you are familiar with coding style conventions." [mediawiki/extensions/UploadWizard] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/12353 [22:58:14] Nikerabbit: drecodeam appears to be working mostly on new functionality, I assume he'll do code style changes nearer the end of the summer [22:58:37] (I've made several similar reviews to yours, to no avail) [22:58:56] marktraceur: try harder ;) [22:59:27] we are picky about coding style regardless whoever it comes from, he/she should learn that [22:59:50] Nikerabbit: marktraceur I had some issues with my previous text editor, so my previous commits have been very bad in terms of conventions [23:00:22] I am learning and hopefully you would not find that many problems in the code that I will be putting out now [23:00:54] I totally agree that code conventions are really needed, and I marktraceur has been really helping me in that [23:00:59] the code looked okay, it's just adding and removing space here and there [23:02:04] +matter of [23:02:05] New patchset: Reedy; "Resource loader-ify js" [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15572 [23:02:06] Nikerabbit: Ya, somehow my text editor used to mix up spaces and tabs, and there were some conventions I was not following, but I have started following them now and moved onto a new editor :D [23:04:19] 03(VERIFIED) Set $wgGroupPermissions['autoconfirmed']['abusefilter-log-private'] = true; on frwiki - 10https://bugzilla.wikimedia.org/38216 (10Jérémie Roquet) [23:04:23] New patchset: Reedy; "Little point throwing an exception like that to just catch it again a few lines down" [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15573 [23:04:23] you should either amend your existing commits or submit one patch to fix the conventions [23:05:44] Nikerabbit: sure, I will amend the existing commits. [23:07:09] drecodeam: let me know if you have problems making the string in javascript i18zed, I can show how to do it [23:08:36] New patchset: Reedy; "Remove 2 large unused functions" [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15574 [23:09:20] 03(mod) Messages of log entries should support GENDER - 10https://bugzilla.wikimedia.org/24156 +comment (10Niklas Laxström) [23:10:12] Nikerabbit: are you talking about mediawiki message ? [23:10:19] New review: Nikerabbit; "This is PHP 5.3 feature, right?" [mediawiki/core] (master); V: 0 C: 0; - https://gerrit.wikimedia.org/r/14673 [23:10:44] drecodeam: the one I commented on gerrit few minutes ago [23:11:17] 03(FIXED) Add search by point for the monuments database - 10https://bugzilla.wikimedia.org/38337 +comment (10Max Semenik) [23:11:21] drecodeam: And I've got that knowledge, too, so if Nikerabbit isn't available, I might be :) [23:12:09] Change merged: Reedy; [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15573 [23:12:19] Change merged: Reedy; [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15572 [23:13:50] Nikerabbit: actually on the geolocation commit, the one in the geo branch, I had just put up a very basic commit and have not worked on it since, I will start working on it in a week's time. I have used i18zed messages in my Flickr code [23:14:22] but if i have any issues i will definitely bother you or marktraceur :D [23:15:14] New review: Nikerabbit; "It would be cool to actually replace $this with something else, but it wouldn't work, right?" [mediawiki/core] (master); V: 0 C: 1; - https://gerrit.wikimedia.org/r/14672 [23:22:30] New patchset: John Erling Blad; "Request items through multiple sitelinks pairs" [mediawiki/extensions/Wikibase] (master) - https://gerrit.wikimedia.org/r/15575 [23:24:21] 03(mod) wbgetitems: add possibility to request multiple site-title-pairs on one request - 10https://bugzilla.wikimedia.org/38356 (10jeblad) [23:25:55] hi, struggling with [23:25:56] [23:25:59] woops [23:26:15] hi, i'm struggling with a template http://wiki.amahi.org/index.php/Template:MessageBox [23:26:53] somehow the background color for the box is {{{backgroundcolor}}} [23:26:55] Hm....I'm getting funny errors. Every other page load of a new special page (that I'm creating) loads with no mw.user.name function [23:27:05] one of our wizards did that before [23:27:20] not sure where that {{{backgroundcolor}}} is defined. suggestions? [23:27:57] New review: Nikerabbit; "This commit adds BOM. Please remove it ASAP or I will revert this." [mediawiki/extensions/SemanticResultFormats] (master) - https://gerrit.wikimedia.org/r/14614 [23:29:22] cpg: http://wiki.amahi.org/index.php?title=Adding_a_second_hard_drive_to_your_HDA&action=edit [23:29:33] cpg: In there, you'll see backgroundcolor = red [23:29:55] New patchset: Reedy; "Move hard coded CSS lines to css file to be loaded by RL" [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15576 [23:31:31] 03(NEW) ResourceLoader-ify Quiz CSS - 10https://bugzilla.wikimedia.org/38372 normal; MediaWiki extensions: Quiz; (sam) [23:31:31] 03(mod) Extensions that need resource loader-ifying (tracking) - 10https://bugzilla.wikimedia.org/29713 (10Sam Reed (reedy)) [23:32:32] marktraceur: i see. i thought there was a default somehow [23:32:36] marktraceur: my bad [23:33:04] hi, folks, I'm looking to contract with someone to write a MediaWiki extension around an improved commenting interface… is this the right place to ask for interested folks? [23:33:15] 03(mod) Implement admin_tree browsing in the monuments api - 10https://bugzilla.wikimedia.org/38313 +comment (10Arthur Richards) [23:34:15] New patchset: Aaron Schulz; "[FileBackend] Made copy script retry on batch copy failure." [mediawiki/core] (master) - https://gerrit.wikimedia.org/r/15577 [23:34:50] shepazu: Best to simply ask, you're definitey in the right place :) [23:37:47] maybe this might work: do you know if it's possible to set a default for a style but allow the user to override it? [23:39:25] here's the basic idea of the extension hi, folks, I'm looking for someone to write a MediaWiki extension around an improved commenting interface… is this the right place to ask for interested contractors? [23:39:53] oops [23:40:07] here's the basic idea of the extension: http://www.w3.org/community/webed/wiki/Comment_Extension [23:40:07] New patchset: Reedy; "Fixup method parameter documentation" [mediawiki/extensions/Quiz] (master) - https://gerrit.wikimedia.org/r/15578 [23:40:40] we will pay 1 MILLION DOLLARS or less to have this extension made [23:42:16] Or less!? Hot dog! [23:42:27] :) [23:43:08] American or Zimbabwean dollars? ;) [23:44:04] ashley: your choice [23:44:52] you can ask on mediawiki-l [23:44:54] we can also pay in cowrie shells or yams, if that's your preference… we're an international organization, after all [23:45:03] thanks, TimStarling [23:48:57] shepazu: that's quite a list of requirements; I'm not sure how much of use this'll be, but maybe the Comments extension (that I maintain) could be used as a starting point or something: http://www.mediawiki.org/wiki/Extension:Comments [23:49:24] hmm [23:49:33] maybe so, I hadn't seen that [23:49:56] the requirements are not absolute, just the sort of thing we're looking for [23:50:31] ashley: you have a public example for that extension? [23:52:04] ashley: from the pic, that looks close to what I'd like [23:52:35] shepazu: ah, glad to hear that :D I'll see if I can dig up a public wiki that's using the Comments extension, just a moment... [23:53:12] *cough*git*cough* [23:53:26] what'd you call me, Reedy? [23:53:28] :P [23:53:39] I was abusing ashley ;) [23:54:10] Reedy: oh don't you start trolling me about git too, I have to explain to Lcawte|Away on a daily basis why I dislike git (to put it *very* nicely) [23:54:22] xD [23:55:15] It's not that bad [23:55:29] true, it's worse [23:55:45] gerrit not working in IE9 is like the top of the iceberg [23:56:01] (I'll rant more when I'm done finding an example wiki w/ Comments ext. installed) [23:56:16] Do I dare ask why you care if it works in IE9? [23:56:47] Ouch [23:56:55] I use IE9 as my primary browser, that's why [23:56:55] It's seriously broken (not in compat mode) [23:59:40] ashley: brb