[00:58:22] if I git checkout master, run update.php, can I revert back by checking out 1.22 and running update.php? [01:00:48] I've somehow managed to disable javascript sitewide :( [01:10:51] So MediaWiki:Common.js doesn't work? [01:11:32] my test case is collapsible tables [01:11:46] the collapsible bit doesn't work [01:12:22] wmat, once you run update.php your tables are altered and running an older version of it will not bring the old state back [01:13:18] rillke: bummer [01:13:28] rillke: i do that with extensions all the time [01:14:08] yeah, extensions, as long as they don't alter the DB upon update can be easily downgraded [01:16:04] so, what is not working exactly? [01:16:33] can you just delete tables/fields created from extensions when you delete the extensions themselves [01:16:41] a very basic collapsible table does not offer the expand or hide feature [01:17:19] and you have that enabled through MediaWiki:Common.js ? [01:17:40] rillke: no, i thought the classes were in core now [01:17:53] im running 1.22.6 [01:18:01] they are called mw-collapsible and similar [01:18:08] yes [01:18:34] class="mw-collapsible mw-collapsed wikitable" [01:18:37] that is not working [01:18:42] did you copy one of the examples from https://www.mediawiki.org/wiki/Manual:Collapsible_elements ? [01:19:03] {| class="mw-collapsible mw-collapsed wikitable" [01:19:03] ! The header || remains visible [01:19:03] |- [01:19:03] | This content || is hidden [01:19:03] |- [01:19:05] | at first || load time [01:19:13] |} [01:19:22] that little table [01:19:26] sorry about the paste [01:19:53] dpaste.de [01:20:09] yeah, sorry [01:21:37] my other indicator that js is broken is that Script errors don't pop up their info when clicked for Lua scripts [01:21:55] mw.loader.getState('jquery.makeCollapsible') [01:22:08] what does this return when executed in the JS console [01:22:18] Ctrl+Shift+I [01:22:24] or in IE F12 [01:23:05] ReferenceError: mw is not defined [01:23:10] o_o [01:23:59] open the source code and find the first [01:38:17] yes, that's essentially what i have [01:39:46] [01:40:00] if you try opening load.php (the full url from the source code), what does it display? [01:40:07] ---> depaste [01:40:21] dpaste.de [01:40:56] i get a blank white page [01:41:42] with just mydomain/load.php i get: [01:42:26] a one liner: No modules requested. Max made me put this here [01:43:11] who is Max anyway? [01:43:17] load.php?debug=true&modules=startup [01:43:19] I saw that on some uncyclopedia thing [01:44:26] rillke: blank page [01:45:39] can you somehow check the HTTP status code? [01:45:48] for that blank page [01:46:58] 500 [01:47:09] which means server error [01:48:24] hmmm [01:48:37] so apache error logs next? [01:48:56] possibly, yes [01:51:22] i'm tailing it now and not seeing anything on page reloads [01:52:10] from which version did you upgrage, wmat? [01:52:23] i went from 1.16 to 1.22 [01:53:12] https://www.mediawiki.org/wiki/Manual:Load.php [01:53:22] did you check this out ^^ [01:53:32] * wmat is looking now [01:56:31] added in the rule to no avail [01:57:08] do i need to restart apache? [01:57:22] * rillke doesn't know this [01:57:24] I don't think that rule would do anything, if you're getting an ISE [01:57:38] do you have access to your php configuration? [01:57:43] yes [01:57:45] (e.g. php.ini) [01:58:24] can you check the following settings: log_errors and error_log? [01:58:37] log_errors should be On, and error_log should be some file [01:59:01] if the error_log isn't an absolute path, it will try to put it in the directory the script was running from (so you'd find it in the same directory as the wiki's files) [01:59:16] you should hopefully be able to get more information on what error is happening from there [01:59:47] log_erros is On but error_log is commented out [02:00:37] hmm, that should've made it appear in apache's error log them [02:00:38] *then [02:00:51] can you try setting error_log to something and then restarting apache? [02:00:54] i can set it to syslog [02:01:56] after the restart, try loading the script again and then checking wherever you specified the error log should be [02:03:15] Hi all. Could use a hand with Gerrit/Git. Have a new extension as mediawiki/extensions/WebCache and trying to figure out how to upload some code. Using Windows git with bash. Been dinking around and now getting "nothing to commit. Working Directory clean." when nothing is showing up on main repository. [02:03:52] IowaJason: you need to "git add" any new/modified files [02:03:59] "git status" should let you know which files those are [02:04:28] or, if you modified files only and didn't add new ones, the -a flag on git commit is an easier way [02:04:32] if these are many and you do not have swap files and the like, you can do git add . [02:04:49] it will act like git add ., but won't grab new stuff [02:05:53] Skizzerz, on 135714 I likely did a mistake while uploading the new patch set [02:05:58] holy crap, SyntaxHighlightGeshit was the problem! [02:06:18] intentional typo or freudian slip? [02:06:22] Thanks Skizzerz. I did "git add *" and got no feedback. Did a "git status" and got the previously mentioned nothing to commit. Wondering if I should kind of start from scratch and recreate local copy of repository. [02:06:33] obviously, I removed the dependency while uploading a new patchset [02:06:44] type actually, but appropriate right now ;) [02:06:44] IowaJason: is the repository brand new? [02:06:49] yes [02:07:03] okay, can you run git remote -v and report back what it says? [02:07:56] fwiw: PHP Fatal error: Call to undefined method ResourceLoaderGeSHiModule::getDefinitionMtime() in /var/www/vhosts/mytiwiki.com/subdomains/wiki/httpdocs/extensions/SyntaxHighlight_GeSHi/ResourceLoaderGeSHiModule.php on line 38 [02:08:43] wmat: possibly a version incompatibility -- if you're running mw 1.22 make sure you also grabbed the version of SyntaxHighlightGeSHi that was for version 1.22 [02:08:52] if you did that, then no idea :) [02:09:05] drop it [02:09:33] yep, i was running master [02:10:11] origin https://git.wikimedia.org/git/mediawiki/extensions/WebCache (fetch) [02:10:21] https://git.wikimedia.org/git/mediawiki/extensions/WebCache (push) [02:10:46] rillke and Skizzerz: thx for all the help! [02:10:53] There's an extra "origin" tag that didn't make the copy and paste. [02:11:17] IowaJason, use dpaste.de [02:11:51] okay, well you'll need to set up a gerrit remote then (or fix your origin one) in order to let you push new revisions [02:12:03] I'll see if I can find a guide [02:12:37] https://www.mediawiki.org/wiki/Gerrit/New_repositories ? [02:12:49] https://www.mediawiki.org/wiki/Gerrit/Tutorial [02:13:10] it seems you have git already installed, so start at section 4 [02:13:13] *section 5 [02:13:34] The rillke. I read that. When it get's to the step of actually uploading code it links to a non-existant sub tag on the page. [02:14:44] basically, you need to install git-review (requires python), ensure that your gerrit remote is using the ssh://username@gerrit uri, then it's a matter of adding your code to git, committing, and then using git-review to submit it [02:14:53] the tutorial goes into much more depth [02:15:25] if you're having trouble with it, just ask here (you'll need to ping me by saying my name if you want my attention, since I won't be watching the IRC screen all that often from here on out) [02:15:26] Thanks Skizzerz. I had not previously read that page, so I'll go off and work on that. [02:34:28] Skizzerz, I just found https://www.mediawiki.org/wiki/Gerrit/Code_review/Getting_reviews#Don.27t_mix_rebases_with_changes -- is the list of changes when comparing against patchset 9 as a reference version still acceptable to you? Otherwise I will try to re-base it on the same version as it was before. [02:34:42] at https://gerrit.wikimedia.org/r/135714/ [02:35:37] * rillke just found out about that handy dropdown .... [02:40:54] rillke: it looks fine to me, the diff between 9 and 10 is clean [02:41:39] thanks :) [02:41:59] that said there were a few things that I found odd in your sql script ;) [03:08:57] Skizzerz, working on following your advice about Gerritt set up. Got python 3.4 installed w/ related setup and git-review. However, when I run a git -review -s type command get a "review not a git command" message. Obviously didn't do something right. Any advice on how to check out installation or config? [03:09:21] no - in front of review [03:09:38] either do git-review (no space) or git review (no hyphen) [03:11:16] Actually that was my typo in transposing to chat. I didn't have a dash in command to system. Wish it was that easy. Bash shell for windows doesn't allow copy/paste so retype errors happen. [03:14:27] * rillke found git/bash on windows a pain and is using a Linux VM [03:19:24] Dropping for a minute or two to see if reboot help register. Know if shouldn't, but running Windows. :) [03:33:03] Per previous discussion, a Windows reboot did solve my last mentioned problem with Gerritt. May have been other options to stop or reregister services that weren't mentioned on the help page, but a reboot following Gerritt install is sufficient to get "git review" command working. [03:37:39] perhaps the %PATH% wasn't updated after installation .... just a wild guess [03:38:09] often logout/login is plenty [03:38:24] but not always, especially on Windows [03:39:09] @rillke: like that train of thought. The Windows installer gave me a specific option to register with PATH and I selected that. Maybe it worked. Maybe it didn't. I didn't check during diagnostic procedures. [03:40:13] That's the Windows installer for Python I reference with the installer option. [04:30:11] Still trying to setup gerrit/git on a windows machine for a contribution to a new extension. When I run git review -s I get [04:36:33] I get : ValueError too many values to unpack (expected 2) error. Anyone seen that before? [08:26:51] is zuul a bit slow, queue length is 0 and yet it says the tests are queued... [08:26:56] Where can I view the source code for an infobox, to use on a personal wiki? [08:27:26] I don't understand Wikipedia's template: {{#invoke:Infobox|infobox}} [08:28:09] Callum: Wikipedia uses the #invoke magic word to call Module:Infobox [08:28:31] which is written in Lua [08:29:05] Can I simply place the code onto 'Module:Infobox' on my wiki, or do I need some form of Lua plugin? [08:29:18] https://www.mediawiki.org/wiki/Scribunto <- enables lua for your wiki [08:30:11] http://en.wikipedia.org/wiki/Module:Infobox [08:30:50] Thanks [08:33:45] hi. Do we have utf-8 support enabled by defualt in the tools DB? [08:35:55] [Asking for a friend:] Trying to use Wikipedia API from JavaScript. When testing from the local machine, they're getting Access-Control-Allow-Origin errors. [08:36:17] Withoutaname, how do I view the MediaWiki markup for http://en.wikipedia.org/wiki/Module:Infobox ? [08:36:30] I saw https://www.mediawiki.org/wiki/Manual:CORS and I'm trying to play with the origin parameter, but I'm not sure what to put there. [08:38:20] Ca11um: what do you mean, the source code for it in lua or in mediawiki? [08:38:53] Ah I found it, Withoutaname. There was no 'Edit' button [08:39:39] you can just add ?action=edit to your URL if you don't find an edit button [08:40:02] even if someone tried to hide it with a js trick [08:52:42] Withoutaname, now I'm trying to add the dependant Template:Ifempty...http://en.wikipedia.org/w/index.php?title=Template:Ifempty&action=edit [08:53:07] Is 'safesubst' a native MediaWiki function? When I preview the page, it doesn't seem right [08:53:29] "{{safesubst:#if: | {{{1}}} | {{safesubst:#if: " appears as normal text, and the rest is in a code block [08:54:38] https://en.wikipedia.org/wiki/Help:Substitution#The_safesubst:_modifier [08:54:59] Some template coders like to do it differently, but in most cases template code ignores whitespace [08:55:23] also I recommend using Special:Import with Wikipedia rather than manual copypasting [08:56:18] helps preserve copyright, etc [08:58:48] Ca11um: oh, you might also need https://www.mediawiki.org/wiki/Extension:ParserFunctions if you haven't got it already [08:59:33] MW provides more "simple" magic words like __NOTOC__ and #REDIRECT, but this extension can do #if and #ifexist checks [09:02:22] I get a Script Error that simply says "Script error: No such module." [09:03:14] then it's probably calling a nonexistent module? [09:04:02] is it one of lua's generic script errors, or a mediawiki error in installing scribunto [09:05:20] Module:Infobox has on line 7 local HtmlBuilder = require('Module:HtmlBuilder'), was this imported also? [09:05:45] https://en.wikipedia.org/wiki/Module:HtmlBuilder [09:05:49] Yeah [09:06:09] I've got all of the modules now, but now when trying to use an infobox on a page it appears on the left and has no border [09:08:44] did you pass {{#invoke:Infobox|infobox}}? [09:09:50] Yeah [09:29:39] Yeah, the infobox is lacking right-alignment and a grey background [09:36:20] Ca11um: could be your MediaWiki:Common.css or MediaWiki:Common.js [09:38:38] Ah yes, thanks [09:50:01] hello. i reset a users password. when he tries to log in with the temp passord, he is asked to change it. when he fills in a new password (twice), it says: There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again [10:09:43] heatherw: are files like https://www.mediawiki.org/wiki/File:Mobile_end_expand.png available under a free and open source license? WMF official logos are naturally copyrighted, but many of these (older) mobile design mockups are tagged *only* as (C) WMF, despite that not all of them even showcase official WMF logos; likewise, I'd be interested in knowing the original author or authors and... [10:09:45] ...the copyright/license status of the images used in the Glaucus mockup Brion wrote back in 2012 (http://svn.wikimedia.org/viewvc/mediawiki/trunk/mockups/glaucus-quick/) [11:06:12] hi [11:06:23] Is there any working extension to sign in with Google Apps? [11:15:54] OpenID? [11:16:20] any suggestions regarding my problem with sessions? [11:17:01] "There seems to be a problem with your login session; this action has been canceled as a precaution against session hijacking. Go back to the previous page, reload that page and then try again" [11:18:27] i've enabled logging in php and on the wiki [11:18:30] can't find anything wrong [11:23:38] !sessions [11:23:44] !session [11:26:18] Hi Tim, how ae you doing? [11:41:59] p858snake|l: thank you [12:41:50] OutputPage::redirect() takes a URL. How do I build the URL for another article on the same instance of MW? [14:47:13] hi [15:45:29] Hi - can anyone help me with infobox alignment? [15:45:56] Page is here http://www.modelhorsepedigrees.com/wiki/index.php?title=Blank_model [15:46:29] I cant get it to float right and embed into the page, so the intro goes around it [15:49:54] pinnygik: you have the intro as float:left, and the infobox has no float [15:50:20] pinnygik: you should do it the other way round: infobox should be float:right, and the intro and other text without float [15:53:10] I have deleted the intro float - above the infobox I have put float right but still no joy [15:53:18] should it be in the template? [15:57:06] pinnygik: now that I take a look at the source code... I see 2 float:right at the start of the article, and one float:left just before the intro. And that's wrong [15:57:14] there should be only one float [15:57:27] also, those divs are unclosed, which is problematic [16:11:40] vulpix: I have removed the left float now, how do I close the float right div tag? [16:12:50] Hello, #pediapress seems to be inactive. Can anyone help me with formatting in pdf export done by Collection? [16:13:38] gleki: probably not [16:14:04] The PediaPress renderer is going to be abandoned soon, you may want to test the new one https://etherpad.wikimedia.org/p/BugTriage-mwlib [16:15:07] pinnygik: with [16:15:46] vulpix - that should go in the Template:infobox shouldnt it? [16:16:14] only if the start element is on that template [16:19:25] Can you tell me where to add in this document - http://www.modelhorsepedigrees.com/wiki/index.php?title=Template:Infobox [16:19:39] I tried to add it at the very end but it then appears as text. [16:20:24] pinnygik: apparently, you're also missing the closing tag for the table [16:20:30] Nemo_bis: is there a link to the extension that implements that pdf export? [16:20:41] Hmmm [16:21:28] Is that [16:22:09] Vulpix - sorry to ask silly questions. Been on this page for hours now, only just got the info box working at all! [16:23:11] gleki: if yes it's in the pad, if not it means I don't know [16:23:34] pinnygik: at the start of that template, you have
as it's redundant [16:24:23] and put
at the end of the template [16:24:56] vulpix - deleting now, lets see what happens... [16:26:05] vulpix - still not floating right! :( [16:26:42] pinnygik: I don't see the table closed... [16:27:49] vulpix - just refreshed - table now closed, but still on the left and not embedded. It is now at the top! [16:29:46] pinnygik: well, the more I see that template, the more scared I am of the HTML syntax I see there... [16:30:25] Vulpix - It is a copy of one taken from Wiki as I cant export from there. [16:30:56] Now I've discovered there are one table inside another, and very weird HTML attributes mixed on elements where they shouldn't be there [16:32:09] vulpix - do you know where I can get a proper Template:infobox from Wiki when I cant export or special export? [16:32:40] pinnygik: why can't you export? [16:32:51] pinnygik: use this code for the template: http://dpaste.com/0PQF8CS.txt [16:33:11] wait [16:33:17] you're not allowed to use any content from wikipedia [16:33:52] jackmcbarn: what? [16:33:52] jackmcbarn - I type in the box, but it doesnt export anything. I followed all of the Mediawiki guidance, but that template I am using is the best I could get [16:34:04] his wiki is cc-by-nc-nd [16:34:10] that's incompatible with cc-by-sa [16:34:23] so it's a copyright violation for him to use any wikipedia content on his wiki [16:34:24] hmm, good point [16:35:15] ok now that I followed the advice to disable FlaggedRevs from applying NS_FILES the other day, I *still* have articles complaining that they reference unapproved template/file changes [16:35:42] and if I go and edit the file article, it does remove that file from the list of pending changes but guess what, it still complains the article references unapproved template or file changes [16:35:49] Vulpix - you are a genius! [16:35:50] with an empty list of things it is complaining about. [16:36:09] this extension is so buggy I am not sure it being described as "stable" on the mediawiki wiki is justified. [16:36:20] these are kind of fundamental site breaking issues. [16:36:38] QuasAtWork: why not just change $wgFlaggedRevsHandleIncludes to FR_INCLUDES_CURRENT ? [16:36:53] wasn't aware of that setting [16:37:25] jackmcbarn: what is cc-by-sa? [16:37:36] pinnygik: the license you picked when you set up your wiki [16:38:26] jackmcbarn: so I can change that to SA and use wiki templates? Not planning to use that much as it is a personal wiki. [16:38:32] pinnygik: yes [16:39:00] pinnygik: the things that start with $wgRights are what need changed [16:39:21] see https://www.mediawiki.org/wiki/Manual:LocalSettings.php#Setting_copyright_for_the_site for help [16:40:05] hey anomie - I have an API question. [16:40:13] https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&list=allpages&format=json&aplimit=10&export=&titles=Organic%20chemistry|New%20York%20City&redirects= [16:40:21] hi sumanah [16:40:40] anomie: within "query-continue" & within "allpages" - there's a "fuck you" in "apcontinue" [16:40:48] like, literally. "apcontinue": "!!Fuck_you!!" [16:41:00] why are you calling allpages and specifying a page list? it doesn't make sense [16:41:17] (and you're seeing that in apcontinue because it happens to be the (one of?) first alphabetical names on enwiki) [16:41:20] sumanah: That's because https://en.wikipedia.org/w/index.php?title=!!Fuck_you!!&redirect=no exists [16:41:21] what in the world?! Is this because [16:41:22] oh [16:41:33] jackmcbarn: I seem to have made a mistake then [16:42:16] sumanah: easter egg! :P [16:43:45] anomie: Frances was trying to demonstrate something in a workshop just now and we accidentally chose allpages when we shouldn't have. [16:44:06] I then cracked "yes, the API can be a little offputting at first" and I will correct myself at the first opportunity [16:44:18] lol [16:44:37] how infortunate [16:44:55] but funny [16:45:21] Sumanah: aww. But thats actually halarious [16:46:11] WikiCon2014 represent! [16:46:51] Thanks all :-) [16:47:21] * anomie doesn't know why that redirect exists, anyway; it should be "!!!Fuck You!!!" (with three exclamation points) [16:47:31] Frances I think tried to do something in a way that seemed simpler but led to demo curse :-) I used it as an opportunity to talk about inevitable mistakes, the need to iterate, and the helpfulness of #mediawiki [16:48:08] (in retrospect, yes, hilarious) [16:49:26] I went to the glam one. No computers swore at me. I feel left out [16:56:18] YAY her demo just now worked! :-) [16:59:05] Hello! Can anyone help me? [16:59:50] Froppe: maybe. depends on the question :) [16:59:51] !ask [17:00:13] I'm having troublke with infoboxes [17:00:39] can't get em to work :( [17:02:13] Froppe: did you try to copy your infobox code from wikipedia? [17:03:06] i tried to use a template but can't get it to work.. We have a own wiki-site for our club ( Handball) http://wikiuhk.se/index.php?title=Froppe and im trying to add a infobox to this page [17:03:28] Froppe: first of all, if you copied code from wikipedia, you're violating our copyright since you don't have a license set [17:03:47] License? [17:04:05] look at https://www.mediawiki.org/wiki/Manual:LocalSettings.php#Setting_copyright_for_the_site and set it up with cc-by-sa in your LocalSettings.php file [17:04:11] if you don't do that, you're not allowed to use any content from wikipedia [17:06:18] how do i get a license set? What do i need to do? [17:08:21] Froppe: follow the directions on https://www.mediawiki.org/wiki/Manual:LocalSettings.php#Setting_copyright_for_the_site [17:10:42] don't even have acess to the files they talking about there! all i want is to set up a infobox on a blank page :) [17:11:35] Froppe: is this your wiki? [17:12:21] it's my clubs wiki.. have really nothing to do with it just trying to add a infobox on a blank page .) [17:12:35] Froppe: using wikipedia's infoboxes is a copyright violation then [17:12:42] you need to tell whoever runs it to license it under cc-by-sa [17:17:49] We just have to license the site under cc-by-sa? [17:18:57] Froppe: there's other stuff too, but first you have to do that [17:19:39] all this trouble just to make infoboxes.... :( [17:20:11] Froppe: other stuff you need to tell whoever runs your wiki, is to install the ParserFunctions and Scribunto extensions [17:20:27] once he does the license and those 2 extensions, then you should be able to get infoboxes working the rest of the way yourself [17:24:11] okey will tell them that [18:03:28] back, Ive changed resource [18:52:14] in 10 min: https://www.mediawiki.org/wiki/Architecture_meetings/RFC_review_2014-05-30 discussion of extension registration RfC in #wikimedia-office [18:54:31] May someone point me to the list of license abbreviations for use with "license-name" with $wgExtensionCredits [18:55:47] So far I have seen GPLv2+ or GPL-2.0+ [18:56:16] the latter is probably better since one may do better voodoo with it [18:56:50] Yeah, no flag, which basically rules out the first version [18:57:03] kghbln: i don't think there's any validation check on this [18:57:26] kghbln: code comments in DefaultSettings.php say: "- license-name: Short name of the license (used as label for the link), such as "GPL-2.0" or "MIT" (https://spdx.org/licenses/ for a list of identifiers)." [18:58:19] MatmaRex Great pointer. I believe that I will add this info to https://www.mediawiki.org/wiki/Manual:$wgExtensionCredits [18:58:30] kghbln: the place to look for documentation for $wgWhatever variables is first mediawiki.org/wiki/Manual:$wgWhatever, then DefaultSettings.php in the repository [18:58:53] (ideally these two places would be synchronised, but they often aren't) [18:59:35] MatmaRex Well I did the first thing but was not smart enough to go for DefaultSettings.php ;) [18:59:42] :) [18:59:52] MatmaRex Let me sync now. :) [18:59:58] :D [19:03:43] Extension registration conversation happening now in #wikimedia-office [19:12:00] hello [19:12:17] looking for support anyone here? [19:12:21] hi Filoless [19:12:26] Filoless: what help do you need? [19:12:54] i need help for a couple of things [19:12:59] about mediawiki of course [19:13:38] Filoless: go ahead [19:13:45] Filoless: if you talk about your problem, we can often help. [19:14:38] thanks (: i'm just checking what i've installed [19:15:07] MediaWiki 1.21.1 PHP 5.3.28 MySQL 5.5.36-34.2 [19:15:50] Filoless: there have been security updates for 1.21, you should upgrade to 1.21.10 at least [19:16:26] so i've set up a wiki about indie music, i'm the editor -in chief of an indie mag [19:16:44] Cool! [19:17:06] we have a division of our mag on another country and i'd like to set up a wiki family [19:18:10] Vulpix: yeah thx i'd like to install 1.23 when it'll be LTS [19:19:07] the purpose is that we don't translate our reviews but the interlink means where the mag is located [19:19:20] Filoless: you can upgrade from 1.21.1 to 1.21.10 without problems, it won't introduce any bugs, but may fix some of them, and security holes [19:19:33] it.wiki --> italian mag [19:19:41] en.wiki --> english mag [19:20:34] i read a couple of help pages about it but i'm a little bit confused [19:21:01] !wikifarm [19:21:10] Filoless: ^ does that help? [19:21:39] lo, so easy? [19:21:43] *lol [19:22:36] yes i already read that manual but sometimes there are some contradictions [19:23:07] MatmaRex Done on wiki. See https://www.mediawiki.org/wiki/Manual:$wgExtensionCredits#license all fluffy now I suppose [19:23:16] kghbln: yay [19:23:50] MatmaRex Great and thank you for your help! [19:29:16] anyway, while i'll read again wiki family manual and downloading 1.21.10 i'll ask a minor question [19:29:33] how do i set a background color like this light violet http://www.mediawiki.org/wiki/Installation [19:29:48] without editing CSS? [19:31:32] Filoless: use inline CSS:
[19:33:46] yep i used that too but the result isn't the same [19:34:08] for example the Title area remains of the main color [20:37:11] is php case sensitive, I'm not sure if it matters but I see references to User::getID() when the only function I see is User::getId(), I don't know if that can cause fails or not [20:39:53] hello [20:40:04] I googled qiuckly: [20:40:20] Withoutaname: Yes, it is. [20:40:46] case sensitive [20:42:09] Withoutaname: to elaborate, it sometimes is and sometimes isn't [20:43:06] I think a lot of calls to getID() would fail already because that doesn't exist in User.php [20:43:31] http://the-echoplex.net/log/php-case-sensitivity this seems to be correct at a glance [20:43:39] I get a redeclare... [20:47:07] well, http://pastebin.de/raw/?id=126519 works, so I'm at least partly wrong. [23:51:36] how does mediawiki check membership for $wgImplicitGroups [23:51:53] Can you give a bit more context than that? [23:52:49] Does MediaWiki check for User::isLoggedOn() before granting you access to the "user" implicitgroup? [23:53:28] or count your edits and number of days passed for the "autoconfirmed" user group [23:54:09] implicitgroups aren't stored in a table like explicit groups are in user_groups [23:54:30] how would we know who is autoconfirmed and who is not [23:56:01] hm, should $wgImplicitGroups even be a configurable setting, or have it hardcoded into MW? Are there any cases where one would want to remove the '*' or 'user' implicitgroups?