[02:01:01] I'm using 1.10 and I love that you can restrict namespaces from being edited by certain groups but is there a way to also restrict reading in the same manner? [02:08:37] !prevacc [02:08:43] *Simetrical sighs dramatically [02:08:58] AphelionZ, http://www.mediawiki.org/wiki/Manual:Preventing_access [02:09:00] AphelionZ, in short, no. [02:09:10] Simetrical: yeah, i figured [02:09:35] Simetrical: I've been up and down all the documentation saying "NO!" and tried a bunch of the extensions on that page and can't really get any of them to work with 1.10 [02:09:39] *AphelionZ sighs sadly [02:10:00] My client is pushing me to install Drupal or something but i really, *really* dont want to do that [02:10:19] There's other wiki software that will allow finer-grained access control. [02:11:19] Simetrical: yeah but we love MW :) [02:27:42] Is MediaWiki very short on developers? [02:29:43] Depends on your definition. [02:30:00] Brion isn't tall, I think he is 5'8" or something... [02:30:13] oh... sorry... misread the question. ;) [02:31:34] We could always use more developers. [02:31:56] Especially, more skilled and paid developers, so they would contribute more useful stuff while wasting less of Brion's time. [02:32:33] Lol [02:33:11] Do you think there's enough on the website in terms of guidance and introduction to MediaWiki development? [02:33:29] Sure. Anyone who wants to can contribute. [02:33:35] They have to read the code, ultimately. [02:34:25] What about those who need to get to grips with PHP? [02:34:59] There are plenty of PHP tutorials in the world. [02:35:11] If you can't figure it out even with them, we don't want you. [02:35:24] So once you know the PHP it's quite easy to come to terms with the architecture and get stuck in? [02:35:27] Er, not speaking to you personally. [02:35:31] But in general. [02:35:52] OldakQuill, I wouldn't say it's "quite easy". It's code, you read it and fiddle with it to figure out what it does. Same as with any app. [02:36:53] Ok, thanks - I just don't know what to expect if I tried. [02:37:02] *I just wanted to know what to expect... [02:37:13] Changing core code might take more skill than making a small extension... [02:38:07] OldakQuill, MediaWiki is not a paragon of beautiful and elegant code. But it's learnable. [02:38:50] How well would you have to know PHP to help with the documentation? [02:39:08] THAT would be an ideal starting place, imho [02:42:15] OldakQuill, you could help with the documentation without knowing how to program at all. Experiment. Of course, you'll probably get stuff partially wrong if you don't have a really good idea of how it works, but oh well. [02:47:03] Ok, thank you. [02:57:26] !access [02:57:26] For information on preventing access to your wiki, please see . [02:57:41] !prevacc is For information on preventing access to your wiki, please see . [02:57:41] You don't have permission to do that. [02:57:55] !info [02:58:01] !who [03:52:52] For redirect pages, is there a way to know the destination page_id directly? [03:53:32] From what I understand, if a page is a redirect the page_is_redirect flag is set in the page table and in the pagelinks table there is the destination page title...but not the id [03:54:41] anyone? [04:26:04] Hello, trying to figure a way of extending support for additional tags within anchor links e.g., [04:26:36] looks like all the angle brackets are turned into the encoded equivalent somewhere in the editing process. [04:27:08] Yes, only certain explicitly defined HTML tags are allowed; everything else is treated as text. [04:27:35] I guess I am wondering which hook I should try and create a parser for, to enable the support [04:28:10] ParseBeforeStrip? [04:29:44] Ideally, the list of allowed tags should be moved out of the parser (where it's hard-coded) and implemented as an array like $wgAllowedHtml or something. [04:30:57] I'm trying to add Microformats support, and the anchor tag needs to have more values on it to do this. [04:33:34] Just installed a mediawiki and copied some template from other site. but some conditional marks like "{{#if:{{{1|}}}{{{" are not parsed, and leave them displayed in original form, Can any body help [04:34:13] {{}} is a transclusion of a template [04:34:27] {{{}}} is a variable in the template that is passed values [04:35:10] a totally newbie, can you explain more on how am I going to do [04:35:35] If you edit the page on the other site, it should give you a list of templates used (templates are special kinds of articles) [04:35:56] Copy over the templates to your site as well [04:36:11] yes, I did that [04:36:23] I copied all the related template [04:36:37] is there any way to set a restriction on a special page without editing SpecialPage.php? [04:36:39] tony__: http://en.wikipedia.org/wiki/Wikipedia:Transclusion [04:37:08] can i use a mutator function? [04:37:24] tony__: http://meta.wikimedia.org/wiki/Help:Template [04:38:34] Thank you very much jeff [04:39:05] tony__: no problem, its worth reading a little about it, templates can be very powerful [04:39:15] by the way, is there any way I can export a template with all the related template and do the import as well [04:39:58] tony__: not that i know of, edit/copy/create-new/paste is all I know, anyone else? [04:40:30] It is very time consuming to trace all the related template and do the copy and paste [04:41:04] tony__: Think how time consuming it was to create the templates :D [04:42:46] i dont' know of a way, it would make a great extension to special:export though [04:43:12] oh, yeah, that's also true [04:44:17] Thank you very much jeff, you saved my day [04:44:30] tony__: The {{#...:}} things are ParserFunctions, so you'll need those for the template to work properly. [04:44:50] !ParserFunctions [04:44:50] For help using parser functions, please see . [04:45:49] tony__: It is true that the site may have had extensions installed, with custom parsers (I think that is what slavie is referring to) [04:46:10] tony__: http://www.mediawiki.org/wiki/Category:Extensions [04:46:34] {{#if:}} is a conditional statement defined by the ParserFunctions extension. tony__'s problem is very common. :) [04:47:03] how am I going to trace down what kind of custom parser installed on their site then [04:47:25] Just install the extension documented at , it has all the ones you need. [04:48:40] *slavie|away is now known as slavie|away|away. [04:48:59] thank you slavieaway, I will check it out [04:49:05] Welcome. [04:49:22] slavie|away: ah, this one... http://www.mediawiki.org/wiki/Extension:ParserFunctions_(extended) [04:50:01] No, this one: [04:52:24] slavie|away: thank you! [04:52:29] Welcome. :) [05:12:10] slavie|away: looks like there is a $dontstrip array referred to in the Parser.php [06:02:40] is it the case that it's not possible to include template calls as template arguments? [06:03:21] i.e. something like {{MyTemplate|foo|{{MySentence}}|bar}} won't work? [06:08:39] or am I not bending over backwards the right way to make it work? [06:23:03] Thib_: looks like you can http://meta.wikimedia.org/wiki/Help:Template [06:24:01] yeah I saw that, http://meta.wikimedia.org/wiki/Help:Template#Restrictions_on_parameter_values right? [06:24:15] "Any unmatched pairs of two consecutive braces or brackets must be placed in nowiki tags. Braces can be used for nested template parameters, nested templates or parser functions while brackets can be used for links. Unmatched pairs not placed in nowiki tags either prevent template expansion or are taken as closing braces for the template call." [06:24:39] it sounds as if as long as I'm not doing anything too weird, if everything is well-nested, then it should work [06:24:43] but I couldn't get it to work [06:24:53] the wiki I'm using is running 1.5.7 though ... [06:25:00] maybe template calls weren't always nesting ... [06:25:38] Did your MySentence template have a variable it needed? [06:25:49] There is something about parameters needing to all be available... [06:26:07] Thib_: oh, that is a little young... [06:26:29] yeah ... [06:27:00] oh I don't really have a MySentence template, but I meant it to be straighforward [06:27:46] for example MyTemplate could be "First: {{{1}}}, second: {{{2}}}, third: {{{3}}}" and MySentence could be "This is my sentence" [06:28:19] I didn't mean anything weird by it; I intended to suggest properly nested templates. [06:28:31] it feels like you should be able to do that. [06:28:40] the docs don't seem to suggest otherwise. [06:31:28] aha! [06:31:31] I found it! [06:31:33] http://meta.wikimedia.org/wiki/Help:Advanced_templates#Including_the_content_of_a_template_in_a_template_or_variable_name_or_parameter_value [06:31:59] it says "since about 19 October 2005" [06:32:07] 1.5.7 must be too ancient. [06:46:23] hi [06:47:00] what is the best way to install mediawiki 1.10 from the command line ? [06:47:17] for system administrators, that is ;-) [06:55:41] dachary: copy all files to a dir of your webserver and use a webbrowser to install [06:55:55] and use 1.11 :) [06:56:55] Raymond_: thanks, that's exactly the answer I was not looking for ;-) [06:57:18] dachary: why not? [06:57:34] "use a webbrowser" vs "command line" [06:58:06] I know the difference :) but I am unsure if it can be done via command line. [06:58:25] i'm sure it can, the question is how [07:00:01] some people provide mediawiki as part of their "1 euro / months web hosting solution" and I very much doubt it involves a system administrator filling the standard mediawiki form [07:03:00] source maintenance/tables.sql to your database, create a LocalSettings.php [07:03:17] (use the web installer to make a template, then you can use that to create future wikis) [07:11:15] test [07:11:49] hi guys, do you know which extension uses these tags: [07:11:51] {{#security:edit|YourName}} [07:11:55] and [07:12:16] [07:17:12] flyingparchment: i'm not sure what you mean by "make a template" [07:18:31] i'll go for the mysql < maintainance/tables.sql though, thanks for the hint [07:18:53] will this create the mediawiki user too ? [07:30:38] dachary: no, it won't create a user [07:30:48] dachary: by a template, i mean you have something like $wgDBname = __DATABASENAME__; [07:30:58] dachary: then to create a wiki, you substitute that with the real database name [07:32:08] i see [07:32:33] flyingparchment: i'm surprised there is not a HOWTO about this. Or maybe it's just WRONG ;-) [07:33:41] dachary: the web installer is the only 'supported' method... (although there's no reason not to do it this way, very few people do, so no-one really bothered writing much about it) [07:34:10] oh well [07:34:20] i found users.sql [07:34:30] don't use that! [07:34:35] it's a very outdated wikimedia-specific file [07:34:35] really ? [07:34:53] it's not use to create the users ? [07:35:07] oh, wait.. nm, that's a different users.sql [07:35:17] yeah, the one in maintenance/ should work [07:35:52] looking at tables.sql, it seems it contains lots of $wg variables. If i just mysql < tables.sql it will not do what I need. Do you have a recommendation ? [07:36:11] you need a table profix? [07:36:14] prefix [07:36:18] yes [07:36:26] and wgDBTableOptions [07:36:27] etc [07:36:43] sed -e 's,/*$wgDBprefix*/,my_prefix_/' -e ... [07:36:49] :-) [07:37:01] this freaks me out [07:37:11] that's basically what the installer does [07:37:14] (although it doesn't use sed) [07:40:33] maybe i can call the installer with curl --data variable=value http://localhost/foo.php [07:41:28] easier even [07:41:40] php var=foo setup.php [07:42:27] QUERY_STRING='var=foo&var2=bar' php setup.php [08:17:21] <_wooz> lo [08:50:29] hello [08:50:52] is there any way to enable uploads for everybody, not only users which logged in? [08:51:13] AFAIK, no [08:53:19] yes [08:53:20] maybe [08:53:21] :) [09:05:16] 03(mod) Image upload replacements should create watchlist entry - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=778 (10siebrand) [09:05:25] 03(NEW) Sitenotice/anonnotice not displayed - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11705 major; high; MediaWiki: General/Unknown; (siebrand) [09:24:48] <[karsten]> Bugzilla has suffered an internal error. Please save this page and send it to brion@wikimedia.org with details of what you were doing at the time this message appeared. [09:24:49] <[karsten]> URL: http://bugzilla.wikimedia.org/token.cgi [09:24:49] <[karsten]> I could not figure out what you wanted to do. [09:24:56] <[karsten]> :P [09:25:00] <[karsten]> I just tried to login? [09:28:41] <[karsten]> ok, sent error stuff to brion [09:29:32] hi [09:29:50] i use $wgSMTP because my network is filtering port 25 [09:30:02] this variable use TLS auth? [09:49:44] 03(mod) ResultWrapper inconsistency regarding rows - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11706 (10mediawiki-bugzilla) [09:49:45] 03(mod) Separate messages 'prevn', 'nextn' - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=4777 (10N/A) [09:50:44] 03(NEW) ResultWrapper inconsistency regarding rows - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11706 normal; normal; MediaWiki: API; (mediawiki-bugzilla) [09:57:52] 03erik * r26836 10/trunk/extensions/Wikidata/Database scripts/Convenience/ (wikidataCoreTables.sql wikidataSourceTables.sql): [09:57:52] - switch to InnoDB engine [09:57:52] - script_log exists across datasets [10:27:12] hello, i have a question about the storage in mediawiki. Does one articel is stored within single item inside the database? [10:31:58] keneida: if you want to access content of articles you should use the API that comes with mw [10:32:52] keneida: it's better to not touch the database since it's architecture could change [10:33:04] keneida: what do you want to do? [10:34:01] my idea is to take a csv file, parse it to mediawiki format and insert it to the database as a new articles. This way it can be done by the machine. Do youhave maybe other idea how to insert large amount of new data without the need to write it by hand? [10:34:25] one csv line would be a one article [10:35:36] keneida: use the API. [10:36:19] keneida: http://www.mediawiki.org/wiki/Manual:Article.php [10:36:46] keneida: you can create new articles with the Article class methods [10:38:46] does images inside mediawiki are stored in databas or filesystem? [10:39:00] ca i use api to add large amount of image files also? [10:39:05] oh. images? [10:39:16] don't know. [10:40:48] Can i use api with java? [10:41:21] no [10:41:27] it's written in php [10:41:51] so i need to write a parser to pars the csv [10:42:19] erm. parsing a csv? [10:42:20] in php and put it as a page inside mediawiki so it will be acccesible from there [10:42:31] whatever. [10:43:14] the images stuff should be captured also in the API. just look at the Image class of the API. [10:43:20] ok [10:43:30] at least is technicaly possible :) [10:43:37] you should read the Documentation of the mw api [10:43:52] it's at least damn simple :) [10:48:01] another question. A artical has few parts, can i limit the edditing rigths of certain parts or only whole article. [10:58:21] i mean can i define few elements inside article that can be modified and other parts not. And if the modified parts can be altered only by some user group [11:00:00] i do understand what you mean. i don't think so. [11:00:02] <[karsten]> keneida, do you want to limit the editing for your program only or for all users? [11:00:45] <[karsten]> there may be extensions which limit editing right like you want [11:00:49] <[karsten]> then again, there may not be [11:01:06] <[karsten]> in any case, it's not possible to do this with the vanilla sources [11:01:12] 03fredck * r26837 10/trunk/extensions/FCKeditor/: Created the extension folder to hold the FCKeditor extension project. [11:01:14] <[karsten]> *software [11:01:14] i mean after the insertion of the data. Using normal wiki engine not api [11:01:21] <[karsten]> no [11:05:40] so i need something more like cms not wiki [12:03:15] any api dude online? [12:04:46] hi, Could anyone tell me where I can configure mediawiki 1.5.0 to allow me to upload svg files? Currently I get a '".svg" is not a recommended image file format.' message. Thanks! [12:07:43] hm... interesting [12:07:52] !wikipatterns is http://www.wikipatterns.com [12:07:52] Successfully added keyword: wikipatterns [12:08:35] draxil: i could tell you, but first of all, i should tellyou not to use mediawiki 1.5. it's ancient. there's no good reason to use it. [12:08:51] @search upload [12:08:51] Results: [install, invalidupload, uploads] [12:09:04] !uploads | draxil [12:09:04] draxil : File uploads are an often-used feature of MediaWiki, but are disabled by default in all current release versions. To enable them, first make the upload directory (default images) writable by the web server (chmod 777 or allow the Apache user to write to it, etc.) then set $wgEnableUploads to true in LocalSettings.php (i.e. "$wgEnableUploads = true;"). See for more info [12:09:23] hm, maybe we have something more specific? [12:09:26] @search mime [12:09:26] Results: [mime] [12:09:39] @search type [12:09:39] Results: [export, mime] [12:10:08] !mime | draxil [12:10:08] draxil : For assistance in configuring mime type detection on MediaWiki, please consult [12:10:17] but, as i said, first of all: [12:10:21] !upgrade | draxil [12:10:21] draxil : http://www.mediawiki.org/wiki/Manual:Upgrading [12:10:30] *Duesentrieb hugs the bot [12:11:12] nice tool indeed. [12:11:33] too bad it doesn't support pm :) [12:11:40] aliases would be nice, too... [12:11:52] oh man. php5 is such a crap [12:12:00] well, it's better than php4 :) [12:12:11] php4 is total crap...ugh [12:12:15] ever got this one: zend_mm_heap corrupted [12:12:16] *Jack_Phoenix hugs MediaWiki 1.11 [12:12:41] PunkRock: no... that sounds fun :) [12:13:08] Duesentrieb: for small values of fun :) [12:13:09] hehe [12:13:23] *PunkRock needs coffe [12:13:27] +e [12:46:51] aha, thanks I'll check that configuring link, but then I'll probably upgrade :) [12:51:03] "$wgStrictFileExtensions = false;" did the trick, thanks for the link [13:00:55] 03(NEW) two apostrophes make an interwiki link rendered as text - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11707 minor; normal; MediaWiki: Page rendering; (bugzilla.wikimedia) [13:02:20] Hi [13:02:38] Do you know the cache key which is used to store article content in memcache? [13:06:39] Hi, Inez. See http://www.mediawiki.org/wiki/Manual:Configuration#Memcached_settings [13:08:07] Soroush83 this is not what I'm asking about. [13:08:25] hi [13:08:41] hi [13:08:42] hi KJ-Wikia [13:08:43] I get this error message: [13:08:44] Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/usr/bin/gdiff3) is not within the allowed path(s): (/home/afterwik:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/afterwik/public_html/config/index.php on line 1412 [13:08:53] with installation [13:09:00] Inez: hi [13:09:36] can anybody help with that? [13:11:02] Nivieled: what's the problem? [13:11:04] hi, i'd like to setup a wiki where only registered users can edit pages, but anonymous users still can create and edit the Talk pages. i think I have to use $wgNamespaceProtection for that, not sure. Ideas? [13:11:24] by anonymous I mean not logged in users [13:11:26] nikerabbit: With installation I get the following message: [13:11:27] Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/usr/bin/gdiff3) is not within the allowed path(s): (/home/afterwik:/usr/lib/php:/usr/local/lib/php:/tmp) in /home/afterwik/public_html/config/index.php on line 1412 [13:11:38] !access kilx [13:11:38] You don't have permission to do that. [13:11:39] Inez, I've never used memcache. I hoped it to be useful for you [13:11:41] bah [13:11:47] hi, Nikerabbit! [13:11:52] how are you? [13:12:10] kilx: http://www.mediawiki.org/wiki/Preventing_Access [13:12:56] Nikerabbit, see :http://www.farsiweb.info/jalali/jalali.c please [13:13:18] Nivieled: it says pretty clearly "is not within the allowed path" [13:13:36] you have too restricted setup if you want to use gdiff3 [13:14:00] Soroush83: argh, missing mime-type [13:14:05] Nikerabbit: yes, I found $wgNamespaceProtection from that page. but the examples show how to resctrict by namespace, not enable [13:15:02] kilx: yes. you restrict access to all non-talk namespaces. [13:15:06] that's what you want, no? [13:15:09] I get about 20 of that messages... But I can run installation of mediawiki.... [13:16:00] kilx: just restrict all the other namespaces [13:16:03] Nikerabbit, missing mime-type? [13:16:20] Soroush83: yeah, it suggets that I open that file in less... [13:16:24] Nikerabbit, this is about calendar I talked yesterday [13:16:32] oh Behdad [13:16:45] exit [13:16:46] Nikerabbit, do you know him? [13:17:07] Soroush83: not personally [13:18:20] argh, no comments [13:19:44] sorry, I was disconnected. I might have missed some messages. Nikerabbit, that program is a convertor which will work for about 100 years [13:21:24] [16:18:20] Nikerabbit> argh, no comments [13:21:43] sorry, was afk. where do I get the list of all Namespaces? [13:22:22] includes/defines.php + the ones you've added [13:22:32] thanks [13:22:49] Nikerabbit, const char *j_month_name[13] is the name of months [13:23:12] they have different names in different languages [13:23:25] kilx: I'm not absolutely sure which setting takes precedence... [13:23:41] Nikerabbit, Persian year begins at Novruz. It is usually March 21 [13:24:45] int j_days_in_month[12], days that months have in Jalali calendar [13:24:57] Jalali is Persian calendar [13:25:46] ugh [13:28:37] ugh [13:28:50] Nikerabbit, If you look at it you see it just gets the days have been spent since 1600 [13:29:03] 03(NEW) Set logo for Hungarian Wikisource - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11708 15enhancement; normal; Wikimedia: Site requests; (mrekavarga) [13:29:21] *AzaTht wants a substonsubst: thingi [13:29:32] instead of the includeonly hack [13:29:34] and then findes jd, jm and jy [13:30:17] and yea, daily 5678 [13:30:20] 03(mod) Set logo for Hungarian Wikisource - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11708 +shell (10raimond.spekking) [13:38:40] how i can configure $wgSMTP through TLS? [13:38:58] now my network is filter and need to use these variables with a authenticated email user [13:40:36] Hello all. How can i attach file to any wiki article, for example zip or doc? [13:41:06] solshark__: in mediawiki you don't attach files to articles. first you upload it (click 'upload file' in the toolbox, while logged in), then you link to it with [[:Image:Foo.zip]] [13:41:23] !uploads | solshark__ [13:41:23] solshark__ : File uploads are an often-used feature of MediaWiki, but are disabled by default in all current release versions. To enable them, first make the upload directory (default images) writable by the web server (chmod 777 or allow the Apache user to write to it, etc.) then set $wgEnableUploads to true in LocalSettings.php (i.e. "$wgEnableUploads = true;"). See for more info [13:41:49] asmarin: it's a bit unclear what you are actually trying to do, and why [13:41:51] Yes. i know, bur attach doc or zip like a image - is correct way? [13:42:01] s/bur/but [13:42:05] solshark__: yes, all files are "images" [13:42:14] for historical readsons. [13:42:24] duesentrieb: my network blocks port 25 for all host except our smtp server [13:42:31] Thx for help. [13:42:55] asmarin: so? [13:43:00] so to send email i need to configure my server like a email client using a authenticated user of "official" smtp server.....the only one allowed to send and receive for port 25 [13:44:05] yes... just put the login into into $wgSMTP. or don't use smtp directly and run an MTA on the webserver [13:45:05] but this is for smtp only...can i configure with TLS too? so bad to send wiki password on plain text [13:45:08] duesentrieb [13:46:26] you want what exactly? SMTP over TLS? [13:46:29] yepa [13:46:46] don't know if that's supported. anyway... zhe communication is only going from your webserver to your mail server [13:46:48] so bad to send a password reminder or similar with a email on plain text [13:46:49] so it shouldn't matter [13:46:54] hm? [13:47:17] err - password reminder? i think you are confused about what a TLS connection actually does... [13:47:25] it doesn't encrypt the mail you'll get, you know [13:47:26] im on a university...so many "padawans" are for here you know.... [13:47:43] jajajaja [13:47:49] talking about jedis... [13:47:54] right [13:47:56] Hi Guys, Can anyone tell me where I can find the "Top content" box, is it an extension? [13:48:33] and exists any extension for upgrade email functionality? [13:49:00] JediMaster, Top content" box? [13:49:57] Soroush81: all the wikia wikis seem to have it on each one [13:50:26] one more bit, concerning $wgNamespaceProtection I have array( 'emailconfirmed' );. This works if the user has "1" set in user_email_authenticated in the user table in sql [13:50:47] what do i use instead of emailconfirmed for any user? simply 'user' didn't work [13:51:35] Soroush81: for instance: http://www.wikia.com/wiki/MediaWiki -> the box under the banner [13:51:46] on the right [13:53:14] JediMaster, let me see [13:54:07] i checked the wikimedia faq.... is the default mediawiki installation 'certified' as accessible against wai, us section 508, etc.? [13:54:09] JediMaster, it usese it own skin [13:54:35] im looking for a general accessiblity statement for mediawiki [13:54:40] it can be done in an extension+skin or just in the skin [13:54:42] Soroush81: so it's part of the main skin's .php? [13:55:15] JediMaster, You can have arbitarary skin for your mediawiki [13:55:35] JediMaster, what you usually see is monobook [13:55:49] for example see: http://nesampad.ir [13:55:51] yes I know, I'm building my own, I would have thought that that functionality was a common extenion, rather than part of the skin [13:56:51] JediMaster, then you should write an extension [13:57:09] that extesion should give you most visited and... [13:57:40] some features for rating articles and... it might need several extensions [13:58:44] JediMaster: See list of installed extensions there: http://www.wikia.com/wiki/Special:Version [13:58:48] ricks99: ot'S oss software, and permanently under developtment. it's not ceritfied in any way. there was a accessibility assesment a while back, which didn't turn out to great. things have improved, but it's not perfect. [13:59:58] Soroush81: ahh there's the widget: "WidgetTopContent" [14:00:26] duesentrieb: tx. r there any accessibility extensions that would help? i know mediawiki produces valid html & css ( a good start) [14:00:50] do u happen to shown where the accessiblity statement is located? searching on mediawiki i couldnt find it [14:01:40] ricks99: there's no official statement. i don't remember where the study ended up... would probably have to dig through the mail archives. could have been 2005, so it's pretty outdated anyway [14:02:09] ricks99: an accessibility extension wouldn't make sense. accessibility has to be supported everywhere any output is generated. [14:02:18] Soroush81: how do you get the code for a widget, being a GPL project and all, there really should be somewhere to download it [14:02:31] sorry, i meant an extension [14:02:50] JediMaster, I don't know. You might need to search [14:02:57] to check for accessilbity [14:03:41] Nikerabbit, Was that code enough helpful or you need more explaination [14:04:08] Nikerabbit, If you want I can write the program for it in php [14:04:09] ricks99: hm? how would that work? byone the standard tools you can find at w3c etc? anyway, mediawiki does *not* always generate valid html, sadly - you can tell it to use tidy to do cleanup, but not even that isa guarantee. [14:04:41] ricks99: masically: run some wikipedia articles through the standard checkers and see if it's good enough for you. that's the best info you'll likely get. [14:04:54] k. tx for the help [14:05:00] 03raymond * r26838 10/trunk/phase3/languages/messages/MessagesRu.php: [14:05:00] * (bug 11647) Update Russian translations [14:05:00] Patch by Alexander Sigachov [14:05:15] 03(FIXED) Russian translation update - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11647 +comment (10raimond.spekking) [14:06:24] Soroush81: ugh [14:09:49] Nikerabbit, so you want a more documentated code or you aren't eager in adding this support? [14:13:29] only sysops are allowed to add users. sysop adds user "by email". email is sent, user gets temp password. logs in, creates new password. but user_email_authenticated in the user table is still "NULL". how come? [14:28:24] Soroush81: it could help [14:28:30] I'm still thinking [14:28:46] MinuteElectron, hiya :) [14:29:48] good afternoon [14:30:01] Nikerabbit, Thanks. Please tell me whatever you need, whenever you were free [14:30:55] tim starling wrote the current code, perhaps he has opinion about it [14:31:35] till starling [14:32:45] ? [14:47:03] ugh [15:25:58] morning. working on setting up a wiki for our developers. I've created namespaces, BUT I tried to create a couple name spaces before I added them to LocalSettings, now those namespaces are screwed up. Has anyone else done this before? [15:27:02] by screwed up, I mean the content is now under the discussion tab, and the article tab, which should be showing the name of the namespace, is showing the name of a different namespace [15:33:01] to block anonymous users editing the pages, i have to use $wgGroupPermission? [15:33:17] Yep. [15:33:21] !userrights [15:33:26] ... [15:33:28] !rights [15:33:28] http://www.mediawiki.org/wiki/Help:User_rights [15:33:57] Oo [15:34:15] !undelete [15:34:20] ... [15:36:52] 03brion * r26839 10/trunk/extensions/CentralNotice/SpecialNoticeText.php: /me slaps self with trout [15:37:08] MANNING TO HARRISON...TOUCHDOWN! [15:38:05] $wgEmailConfirmToEdit [15:38:17] always when the user edit [15:38:18] the page [15:38:25] it sends a e-mail? [15:38:29] or just when create account [15:38:42] then the user confirms and are always allowed to edit pages? [15:39:22] http://www.mediawiki.org/wiki/Manual:$wgEmailConfirmToEdit [15:39:38] i guess.. first one [15:40:07] =/ [15:40:10] i'll test it. [15:41:50] micaelzer: you have to validate one time only, after register, if you want to edit something later. [15:42:57] oo thenkx [15:43:37] i think there was a feature something like email to every edit on your watchlist but [15:43:48] it has deleted?? [15:46:46] is it possible to directly link to some specific MIME-search inside the wiki? [15:47:00] ugah [15:47:07] :D? [15:48:12] ...without linking the whole url, that is [15:49:08] make a redirect page named [[a]] to [[any_page_name_what_you_want]] [15:50:19] and you can use http://yourdomain/wiki/a insted of http://yourdomain/wiki/any_page_name_what_you_want [15:50:51] khatahn: Using magic words, yes. [15:51:24] hmm [15:55:06] so, err.. i can obviously link to http://en.wikipedia.org/wiki/Special:Search?go=Go&search=Special:MIMEsearch , but is there a way for it to work something like this http://en.wikipedia.org/wiki/Special:Search?go=Go&search=Special:MIMEsearch ? [15:55:25] uh oh [15:55:44] why if article is deleted then mediawiki still store it in memcache? [15:56:18] {{fullurl:Special:Search|go=Go&search=Special:MIMEsearch}} [15:58:12] i actually typed Special:MIMEsearch?mime=image%2Fjpeg , but something changed it into a full url here (and removed the jpeg part), or maybe i'm just crazy and seeing things [16:06:28] Does anyone know of a non-hacky way to add Google Adverts to the left sidebar? [16:07:02] left sidebar? meh, two points: 1) adding a right sidebar is better way IMO and 2) they're hack-ish anyway :) [16:07:02] what is the hacky way to you? [16:07:41] Anyone using CMS::MediaWiki perl module here? [16:08:07] micaelzer: Not having to manually edit skin files. [16:08:20] hah [16:08:42] I'd like to see a way to add Google ads without editing skin files... [16:09:34] hm then ... [16:09:56] ?:D? [16:10:26] Jack_Phoenix: Just wondering.... [16:10:31] why dont you want editing skin files?? [16:10:39] Because it makes it annoying to update. [16:10:57] aha [16:11:12] well, MinuteElectron, get SVN commit access and add Google adsense support to skin files then [16:11:24] That will never get accepted... [16:12:33] Right now I have a wiki on 1.11rc1 but I can't be bothered to upgrade because it would mean redoing a couple of files. [16:15:36] Hi guys, I have a question [16:15:49] I want to RSS-ed every MediaWiki page the user created [16:16:03] which route should I take, Extension or Hook? [16:16:42] just access Special:Recentchanges&feed=rss [16:16:50] no that's the special:Recentchanges [16:17:15] I want something more like [16:17:31] when user put [RSS] tag within the page [16:17:35] i have a wiki page that i'm trying to add and it's full of linux commands (lots of breaks w/o
tags!); is there a template or some code someone here likes to use for doing things such as this? [16:17:36] there will be a link to the RSS [16:17:48] [[RSS]] (or something) [16:18:58] iam8up|lpy: Surround it with
[16:19:21] 	besides, the Special:Recentchanges works only to show the recent changes
[16:19:29] 	not the RSS feed for a wiki page
[16:19:30] 	rc by categories?
[16:19:34] 	MinuteElectron - aboslutely perfect! thanks a bunch!
[16:19:39] 	np
[16:20:18] 	xandross: Probably best done with a special page, you could make it display x pages created by a user as RSS feed/
[16:22:09] 	MinuteElectron, I kinda understand that, but I want the user to be able to control if a page should have a feed or not
[16:22:11] 	i'm trying to enable email confirmation for new registeration, but wiki doesn't sen any emails. I've added $wgEmailConfirmToEdit = true to LocalSettings 
[16:22:17] 	i know it sounds a bit weird
[16:22:37] 	xandross: Well, you could add a new preference, but they are very difficult too add.
[16:23:50] 	what we're trying to do with this MediaWiki instance is that we're trying to republish the content such that people that have feed reader built-in on their website can subscribe to a single page feed and show it to his/her audience
[16:24:07] 	the other goal is such that if we update the page, all of our subscribers can see the updated information
[16:24:58] 	so that the website owner than subscribe to the single page feed doesn't have to keep checking on our wiki-page to make sure information is updated
[16:25:03] 	that*
[16:25:29] 	Why can't you just let all users have a RSS feed, it is not like it is secret and can't be found by other means.
[16:25:49] 	eh sorry?
[16:25:57] 	oh
[16:25:58] 	I see
[16:26:04] 	Sorry, I misunderstood you.
[16:26:11] 	Can't you just let all pages have an RSS feed?
[16:26:15] 	no
[16:26:28] 	Why not?
[16:26:34] 	some page-owner might not want his/her page to be concealed to outside world
[16:26:46] 	the RSS requires no auth
[16:26:58] 	concealed? pages will be viewable to everyone anyway...
[16:27:24] 	is it always?
[16:27:28] 	can't you set the permission?
[16:27:33] 	nope
[16:27:37] 	!cms | xandross 
[16:27:37] 	xandross : You are advised to install an appropriate content management package for per-page read restrictions. We will not be held responsible should a password or bank details be leaked, leading to loss of funds or one's job due to borked hacks. See  if you really want too.
[16:27:57] 	let me read that first :)
[16:28:56] 	hm ist das so
[16:28:57] 	hehehe
[16:29:14] 	03(mod) Sitenotice/anonnotice not displayed - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11705  +comment (10michael.frey)
[16:29:19] 	mkay, I guess let all page have RSS
[16:29:25] 	which route should I take in this case?
[16:29:26] 	hook?
[16:29:43] 	pages*
[16:29:57] 	special page, ig uess.
[16:30:01] 	*i guess
[16:30:15] 	wait, sorry, um could you elaborate more about this Special page?
[16:30:23] 	I thought the Special page RSS thingie only shows recent changes
[16:30:25] 	and new pages
[16:30:31] 	but not per-page RSS ?
[16:31:24] 	you could make a new soecial page
[16:31:29] 	*special
[16:31:46] 	ah I see
[16:32:46] 	would you mind to elaborate more how this would work?
[16:32:53] 	I'm very new at MediaWiki :)
[16:33:17] 	the special page could do a sql query to get changes too a page
[16:33:25] 	whoa!
[16:33:29] 	that's cool
[16:33:53] 	or you could just use the built in rss: http://en.wikipedia.org/w/index.php?title=List_of_Apple_Inc._slogans&action=history&feed=rss
[16:34:40] 	eh I don't want to have the revision :)
[16:34:48] 	what are the other action= can it perform?
[16:34:57] 	they are irrelevant
[16:35:03] 	revisions are the only page change information
[16:35:30] 	unless you wanted too add your own system where people could create a database of page changes, but that is very advanced.
[16:35:51] 	but if someone subscribe to the RSS link you just pasted, wouldn't they just see the revision instead of the content?
[16:36:45] 	they would, but you wouldn't really want to put an entire article in rss
[16:36:54] 	but that's what I want :)
[16:37:02] 	i know it sounds quirky
[16:37:10] 	you'll have to do it yourself then
[16:37:23] 	that's the question I've been asking :) which path should I take?
[16:37:26] 	Hook? Extension?
[16:37:31] 	enlight me Master :)
[16:37:40] 	special page
[16:37:49] 	ah okay, Special Page
[16:38:21] 	btw so in this case, for each page that you want to RSS-ed the content
[16:38:27] 	you'd have to create one special page for that?
[16:38:35] 	how does this Special page works?
[16:38:47] 	I'm looking at this thing: http://www.mediawiki.org/wiki/Special:Specialpages
[16:38:53] 	no, you would create a special page that takes a page title as a parameter and generates a change list from that
[16:39:28] 	takes a page title as a parameter and create the RSS :)
[16:39:47] 	yeah
[16:40:10] 	how can I program this Special page?
[16:42:47] 	!extensions
[16:42:47] 	MediaWiki has been built so it can easily be customized by adding extensions. This is usually a simple process. See  for details on writing an extension and  for an overview of known extensions.
[16:45:29] 	thanks :)
[16:46:44] 	np
[16:49:01] 	I want to edit MediaWiki:Edithelppage so that when the user clicks the sidebar item "Editing help" he or she gets taken to http://meta.wikimedia.org/wiki/Help:Editing  If I insert a URL beginning http:// into this page, I don't get a correct link; if I put the URL in [ ] brackets, the sidebar item is no longer a link at all, just text.  What should I be using?
[16:51:48] 	just set it too http://... without the  [ ]
[16:51:56] 	wait
[16:51:59] 	don't do that
[16:52:04] 	sorry
[16:53:40] 	i"ll wait!  thanks.
[16:54:02] 	you should just be able to set it too a url
[16:55:11] 	MinuteElectron: learn the difference between "to" and "too", please
[16:55:40] 	Schroeder: Would you kindly explain to me the difference, I have never been taught it.
[16:56:32] 	if I do that, then the page that clicking on the nav bar item takes you to is: http://sandi.soc.surrey.ac.uk/ReMICS/index.php/Http://meta.wikimedia.org/wiki/Help:Editing (everything before index.php is of course my wiki site address)
[16:57:06] 	hmm
[16:57:09] 	odd
[16:58:19] 	Schroeder: ?
[16:59:44] 	does the same happen on your site, or is there something weird about mine?
[17:00:21] 	scs1ng: *shrug*
[17:04:37] 	BTW, to & too - "too" means almost the same as "also", so if you could have written "also", you should use 'too'; otherwise 'to' !!
[17:05:40] 	scs1ng: Thanks.
[17:06:31] 	Schroeder: If you are going to complain at least tell people what they are doing wrong, otherwise please STFU.
[17:09:32] 	could anyone help a newbie with problems sending emails..?
[17:09:46] 	Please help me with advice.
[17:09:46] 	Somebody anonymously make new pages and put on them porn link.
[17:09:46] 	I have changed my LocalSettings with entering 
[17:09:46] 	$wgGroupPermissions['*']['createaccount'] = false; 
[17:09:46] 	So nobody should not be possible even to make new user, but still somebody make new pages, not with nick, but with IPs. 
[17:09:48] 	What else could I do?
[17:10:41] 	$wgGroupPermissions['*']['createpage'] = false;
[17:11:47] 	a new row with it, Jack?
[17:12:26] 	put that in LocalSettings.php
[17:13:21] 	thx for advice, but how is possible to make new pages, as when I try, then only is written
[17:14:22] 	ok, i saw mistake
[17:14:33] 	thanks Jack_Phoenix !!
[17:14:41] 	np
[17:14:57] 	also check out http://www.mediawiki.org/wiki/Manual:Preventing_access if you need further help
[17:16:36] 	thx again
[17:16:39] 	np
[17:20:59] 	i suppose that nobody knows the answer to my query about inserting links in Mediawiki:Edithelppage?  If not, anybody got suggestions about where else I could go for help about this?
[17:24:51] *Schroeder 	misses his band kids
[17:26:29] 	a good forum is ad www.mwusers.com
[17:26:33] 	anyone about with OTRS access? I've a ticket https://secure.wikimedia.org/otrs/index.pl?Action=AgentTicketQueue&QueueID=6 that is getting beyond my ken.
[17:27:22] 	brianmc: #wikimedia-otrs :)
[17:27:38] 	yes, but they're asking questions about db dumps
[17:28:04] 	Which ticket?
[17:28:22] 	https://secure.wikimedia.org/otrs/index.pl?Action=AgentTicketZoom&TicketID=1150378
[17:30:11] 	'Tis beyond my ken too. :)
[17:30:29] 	brion_office could answer it in 2 minutes.
[17:32:00] 	So, the basic question is - why would a copy of Wikipedia have multiple page ids for one article?
[17:32:15] 	brianmc: can you clarify what you mean?
[17:32:23] 	https://secure.wikimedia.org/otrs/index.pl?Action=AgentTicketZoom&TicketID=1150378
[17:32:30] 	brianmc: you probably forgot to specify page_namespace
[17:33:10] 	that's likely yes
[17:33:12] 	Someone wanting to do some analysis on Wikipedia data, I explained page hit counting is disabled now they're getting too technical for me.
[17:33:18] 	why do people ask for help with a query without including the query? :PPP
[17:33:59] 	i'll write a quick reply
[17:34:07] 	thanks brion
[17:34:16] 	you'll probably get more questions
[17:35:54] 	until sent me a letter via wiki email, and his from was as following when it arrived at gmail:
[17:35:57] 	From: =?UTF-8?Q?Until(1=20=3D=3D=202)?= 
[17:36:16] 	and gmail didn't parse the UTF-8 content, I wonder where the problem lies
[17:36:24] 	if it's wiki fault or gmails fault
[17:37:28] 	scs1ng: try meta:Help:Editing
[17:37:44] 	assuming you have a "meta" set up in your interwiki tables
[17:38:09] 	i don't have "editing help" in my sidebar, but i do see it on all action=edit pages...
[17:38:23] 	AzaTht: on which wiki?
[17:38:40] 	en-wiki I assume
[17:39:47] *brion-office 	tries mailing himself
[17:39:51] 	brion-office: I only wonder if the From adress name is wrong, or that it's gmail that's wrong
[17:40:12] 	1=20=3D=3D=202 Until  	
[17:40:12] 	to me
[17:40:12] 		
[17:40:12] 	show details
[17:40:12] 		 7:32 pm (7 minutes ago) 
[17:40:25] 	blody invisibnle linebreaks
[17:41:10] 	seems ok here w/ myself....
[17:41:35] 	jlerner: nice idea.  I tried it and it points to http://sandi.soc.surrey.ac.uk/ReMICS/index.php/Meta:Help:Editing  This may be because I may not have meta set up in my interwiki tables.  Can you tell me how to find out if I have?
[17:42:18] 	hmmmm is that 'Until (1 == 2)' rather than 'Until' mebbe?
[17:42:32] 	brion-office: you doesn't have any non-asci chars in your name though
[17:42:38] 	yea
[17:42:45] 	there's no such account on enwiki
[17:42:53] 	03yaron * r26840 10/trunk/extensions/SemanticForms/languages/SF_LanguageEn.php: Added some constants, updated others for SMW 1.0
[17:43:33] 	ah wait
[17:43:36] 	another space in there :P :)
[17:43:41] 	think hes an admin
[17:43:45] 	ツ
[17:44:22] 	03yaron * r26841 10/trunk/extensions/SemanticForms/specials/SF_CreateProperty.php: Replaced some hardcoded text with language calls, updated for SMW 1.0
[17:46:39] *brion-office 	tests
[17:47:15] 	I have a question about update.php to take a mysql data backup from 1.10.0 to 1.11
[17:47:38] 	we have answers about update.php
[17:47:56] 	AzaTht: can confirm it's showing funny in gmail, looks fine in thunderbird
[17:48:19] 	my host doesn't allow tenet, I've loaded phpshell, but can't figure out the directory path of maintenance
[17:49:28] 	03yaron * r26842 10/trunk/extensions/SemanticForms/specials/SF_CreateTemplate.php: 
[17:49:28] 	Improved getSemanticProperties_1_0() - gets around bug in SMW 1.0, gets
[17:49:28] 	unused as well as used properties
[17:50:03] 	is there a php command that will give me the full pathname to where phpshell is so I can get to the right directory
[17:51:02] 	brion-office: ok
[17:51:23] 	just wanted you to know
[17:51:35] 	pminmo: you might find it easier to just re-run the installer
[17:52:10] 	03yaron * r26843 10/trunk/extensions/SemanticForms/includes/SF_FormPrinter.inc: Fixed bug -  close tag now always shows up in form
[17:52:14] 	Part of the issue is I've changed webhosts, so database path is different
[17:53:03] 	03yaron * r26844 10/trunk/extensions/SemanticForms/ (INSTALL includes/SF_GlobalFunctions.php): New version, 0.6.9.
[17:54:41] 	does wiki allow top level domain names to point to their free wikis?
[17:54:45] 	*wikia
[17:55:39] 	AzaTht: could be a gmail bug, could be an oddity in our sending. dunno. file a bug if you like :)
[17:55:55] 	BYTE-Smasher: ask in #wikia mebbe
[17:56:41] 	nah
[17:56:48] 	bugs never get fixed ツ
[17:56:52] 	Can I glean the mysql portion of how update.php and it's chain of execution would change a 1.10.0 databse to 1.11
[17:59:47] 	heh
[18:00:13] 	pminmo: the database path is allowed to be different.  just enter the new settings into the installer
[18:00:21] 	pminmo: (make sure you import the database first)
[18:00:24] 	brion-office: thanks :)
[18:01:19] 	I've imported the database, 1.10.0, so I can run the 1.11 installer and it will figure out how to update the database?
[18:01:33] 	yes
[18:02:38] 	does the 1.11 installer need the 1.10.0 wiki files on the new server?
[18:02:57] 	no
[18:04:17] 	wow, that is great news!  I've really been struggling with this.  Now the new webhost is not a "localhost" mysql connection, it's a different named server
[18:04:27] 	does that make a difference
[18:04:30] 	no
[18:05:00] 	Thanks flyingparchment!!!
[18:09:48] 	03yaron * r26845 10/trunk/extensions/SemanticForms/includes/SF_FormClasses.inc: 
[18:09:48] 	Flipped around order of standard inputs - they were in the wrong order, for
[18:09:48] 	some reason.
[18:22:50] 	03(NEW) Ability to delete images/pages temporarily - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11709 15enhancement; normal; MediaWiki: Images; (wikipedia.kawaii.neko)
[18:23:00] 	03(mod) Ability to delete images temporarily - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11709  summary (10wikipedia.kawaii.neko)
[18:24:27] 	that is the most stupid feature request i've seen today ;)
[18:25:46] 	any counter you can put, won't be enabled on 2015
[18:26:38] 	So, uh... Hi!
[18:27:01] 	Hello!
[18:27:06] 	03(FIXED) Pages with maximum length titles cannot be moved or undeleted - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=5570  +comment (10pathoschild)
[18:27:30] 	Anyone have any experience upgrading wikimedia on an ubuntu install?
[18:27:43] 	you mean mediawiki?
[18:27:50] 	uh, yeah.
[18:28:00] 	drphister: are you using the ubuntu packages?
[18:28:04] 	lol. I always swap it like that.
[18:28:08] 	packages?
[18:28:16] 	apt-get?
[18:28:19] 	yes
[18:28:22] 	yes.
[18:28:26] 	don't.  :)
[18:28:32] 	crap!
[18:28:38] 	most people here can't help you with that because we don't know how ubuntu butchers their packages
[18:28:43] 	it's rather unlike the normal install
[18:28:51] 	gotcha.
[18:29:02] 	Well, I thought about reinstalling anyway...
[18:29:02] 	fortunately, you can upgrade from your packaged release to a normal release
[18:29:10] 	really?
[18:29:22] 	just follow the installation instructions, enter the details of your existing database, and it'll find/reuse/upgrade your wiki
[18:29:23] 	do tell!
[18:29:30] 	oh!
[18:29:59] 	I believe I can accomplish that.
[18:30:26] 	I guess I'll be back if I jack something up./
[18:30:29] 	Thanks.
[18:35:26] 	Platonides: Surely something should be done about that, if the integers are going to overflow by 2015 doesn't that jeapordise MediaWiki as a platform for long-term projectS?
[18:36:27] 	which integers?
[18:37:33] 	does media wiki have multi site/domain support?
[18:37:40] 	or is it an installtion per domain?
[18:37:41] 	MinuteElectron, . . . where did you get the idea that integers were overflowing?
[18:37:44] 	pembo13_com: sure.  wikimedia runs 1,500 wikis on one install
[18:37:49] 	pembo13_com: it's not trivial though
[18:37:56] 	Simetrical|away: Platonides comment.
[18:38:08] 	MinuteElectron: his comment doesn't say anything about integers in 2005
[18:38:10] 	MinuteElectron, he said nothing about integer overflow.
[18:38:11] 	flyingparchment, if the process is documented that isn't a problem
[18:38:14] 	er, 20015
[18:38:19] 	pembo13_com: haha.  :)
[18:38:34] 	sorry
[18:38:49] 	flyingparchment, the installations pages now, any idea what i should look for?
[18:38:52] 	pembo13_com: there might be some docs on www.mediawiki.org but they're probably not very good
[18:38:55] 	not sure where off hand
[18:39:11] 	flyingparchment, hmm.. will give it a try
[18:39:16] 	the basic idea is: make your webserver send all requests to the same docroot, and install mediawiki there
[18:39:21] 	flyingparchment, going to intsall it on a server of mine
[18:39:28] 	flyingparchment, well that part is trivial
[18:39:34] 	then identify the site by url / path / whatever in LocalSettings.php, and set database names etc. based on that
[18:39:35] 	flyingparchment, must be more difficult than that
[18:39:46] 	flyingparchment, ahj
[18:40:14] 	flyingparchment, so i cann't have www1.domain.tld and www2.domain.tld function as two diff. sites with the same installation?
[18:40:41] 	pembo13_com: what do you mean by "two different sites"?  if you set different database names for each, they're effectively separate sites
[18:41:03] 	switch ($_SERVER['HTTP_HOST']) { case "www1.domain.tld": $wgDBname = "tld1wiki"; break; ...
[18:41:23] 	flyingparchment, ahh.. .well sweet
[18:41:31] 	flyingparchment, if the config is that easily set
[18:41:39] 	flyingparchment, i can use a case statement as you suggest
[18:41:52] 	flyingparchment, I guess that's what wikimedia does, too, right?
[18:41:59] 	you're probably better off using an array, like array("www1.domain.tld" => "tld1wiki")
[18:42:10] 	there's also a completely undocumented class called InitialiseSettings that does all this for you
[18:42:12] 	LeonWP, good point, wikimedia should have such as etup
[18:42:27] 	flyingparchment, thanks
[18:42:28] 	you just provide arrays of "config_option" => "value" for each site
[18:42:34] 	flyingparchment, i don't need detaisl et
[18:42:36] 	LeonWP: ours is a bit different, but yes
[18:42:39] 	LeonWP: Yes, but a lot more complicated.
[18:42:53] 	*nod*
[18:42:58] 	flyingparchment, just needed to know if it was possible as it affects where i install media wiki to
[18:43:05] 	LeonWP: we have a vhost for *.wikipedia.org, *.wiktionary.org, etc, and use that + the language part (en.wikipedia.org) to construct the dbname, enwiktionary
[18:43:22] 	okay
[18:43:29] 	flyingparchment, i'll come back post installation
[18:43:31] 	flyingparchment, merci
[18:43:37] 	i'm out for now
[18:43:39] 	peace
[18:43:40] 	flyingparchment, apache, I guess?
[18:43:45] 	LeonWP: sadly, yes
[18:43:54] 	LeonWP: long-term goal: move to lighttpd+fastcgi :)
[18:44:05] 	what's the reason not to use it yet?
[18:44:14] 	our apache configuration is complicated and quick to anger
[18:44:20] 	ah.
[18:44:23] 	it'd take a lot of effort to migrate successfully
[18:44:38] 	what's so special in the config?
[18:44:47] 	mainly that it's so long
[18:44:53] 	and has to handle all kinds of historic special cases
[18:45:02] 	(there's still a rewrite rule for en2.wikipedia.org ;)
[18:45:11] 	ah okay :D
[18:46:00] 	flyingparchment, where is this single MediaWiki install kept?  NFS?
[18:46:16] 	Simetrical|away: the master copy is on NFS, but it's deployed to each apache for speed
[18:46:19] 	Simetrical|away: that's what scap does
[18:46:38] 	Ah.
[18:47:20] 	except for testwiki, that runs directly from the nfs copy
[18:47:25] 	(because it makes testing before scap easier)
[18:47:33] 	I'm looking for a means to automatically post to the wiki via an email.  Most of the extensions I"ve found thus far involve emailing from the wiki.  Are there any such tools available?
[18:48:58] 	I like that server grid ;) Should probably update that image
[19:25:13] 	03brion * r26846 10/trunk/extensions/CentralNotice/ (4 files): 
[19:25:13] 	* Throw together an initial editing interface w/ MediaWiki: pages
[19:25:13] 	* Update notice epoch via memcached when an interface page is updated
[19:25:13] 	* Disable infrastructure pages when not needed
[19:30:54] 	03(mod) Ability to delete images temporarily - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11709  +comment (10axel9891)
[20:25:27] 	Hello, can anybody help me with spamming problems?
[20:26:32] 	I guess not..
[20:26:46] 	i guess you waited for a minute
[20:27:22] 	Sorry, i'm like that
[20:27:24] 	!access
[20:27:24] 	For information on preventing access to your wiki, please see .
[20:27:31] 	you might find something there
[20:27:41] 	Okay i'll check
[20:28:03] 	i don't really know much about mediawiki :) so you need to ask someone else if you really need to know something :)
[20:28:04] 	is there a way to change user rights via some maintenance script?
[20:28:21] 	i don't see anything like that...
[20:28:46] 	you do know  Special:Userrights though?
[20:29:05] 	Well the problem is, that someone keep using a proxy to bypass the bans, and it just getting out of control
[20:29:30] 	darkredflame: tried the math captcha yet? 
[20:29:50] 	darkredflame: there is no use in trying to ban that kind of spammers via IP blocks
[20:30:04] 	mutante: yeah
[20:30:12] 	I know about that
[20:30:23] 	but there are quick a few accounts to touch
[20:30:40] 	Is there any thing i can do to make a person enter a certain code when he registers?
[20:30:48] 	So the spammer  cant register
[20:31:06] 	darkredflame: ConfirmEdit existion does that
[20:31:33] 	jlerner: you can use the mysql console right away  mysql> describe user_rights;  
[20:32:22] 	Okay, i'll check that extension out
[20:34:08] 	mutante: reasonably safe to go right into mysql?
[20:34:09] 	;-)
[20:34:31] 	jlerner: well, can never just say "yes" ;P
[20:34:40] 	mutante: user_rights has been dead for a loooong time.
[20:34:59] 	oh :p
[20:35:09] 	try user_groups
[20:35:16] *jlerner 	looks at wikiuser_groups, yah
[20:35:31] 	jlerner: reasonable safe if you make a backup first 
[20:35:38] 	mutante: tahnks
[20:35:51] 	jlerner: uh, what are you actually trying to do? perhaps you just want to change the permissions assigned to a specific group?
[20:35:52] 	any point in creating a script to do this?
[20:35:53] 	mysqldump -u root -p wikidb > mywiki.sql .. or something 
[20:36:00] 	that's easy, and doesn't require you to touch the database
[20:36:15] 	Duesentrieb, i need to promote all users to the guide group
[20:36:21] 	well, he wants to edit MANY users at once, quick
[20:36:23] 	users don't have edit privilege, guides do
[20:36:26] 	jlerner: *all* users?
[20:36:31] 	Umm, i'm not sure what files I should download from the SVN, my hosting is still using PHP4
[20:36:37] 	Duesentrieb: most
[20:36:50] 	darkredflame: i'm not sure either in that case. change host. php4 is ancient.
[20:37:01] 	jlerner: well, "most" is tricky.
[20:37:09] 	I would, but I still have another 6 months on this server
[20:37:12] 	jlerner: "all" is simple
[20:37:15] 	~100
[20:37:16] 	hm
[20:37:19] 	I dont want waste the money i spwent
[20:37:22] 	spent*
[20:37:31] 	ask for a refund. they suck
[20:37:49] 	i think 1.6.10 is the latest for PHP4 ,, the "legacy" version
[20:38:13] 	I'm not talking about the version of the mediawiki
[20:38:15] 	mutante: yes, but can you tell him what version of ConfirmEdit to use with 1.6?
[20:38:31] 	I'm talkign about the http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/ConfirmEdit/ Corfirmedit extension
[20:38:47] 	i think we have extension branches for releases only since 1.10 or 1.11 even
[20:39:48] 	Since 1.10.
[20:40:00] 	hmm, probably one of the version when it was still hosted on http://meta.wikimedia.org/w/index.php?title=ConfirmEdit_extension&action=history  instead of   http://www.mediawiki.org/w/index.php?title=Extension:ConfirmEdit&action=history   :p
[20:41:58] 	Duesentrieb: i think i can do all - if you're a member of more than one group, then whichever group is the most privileged is the one that gets applied, yeah?
[20:42:13] 	This page has been moved to MediaWiki.org
[20:42:15] 	:|
[20:43:24] 	"all", as in put all users in a group at once
[20:43:49] 	darkredflame: yeh, but it still has the page history in the old place, so i thought there one could find the edits in history when Mediawiki 1.6 was current 
[20:44:02] 	anyone know where I put a list of MIME types in a mediawiki instalation?
[20:45:33] 	only knows of a list of file extensions
[20:46:03] 	Duesentrieb: so how do i put all users in a particular group?
[20:46:13] 	i'll see if i can look it up
[20:46:47] 	I'm trying to be able to upload a few different file types but not have them all show up as Images in the Special:UploadFile page
[20:47:01] 	03brion * r26847 10/trunk/extensions/CentralNotice/SpecialNoticeText.php: hackaround for version append w/ query string vars
[20:49:50] 	03(mod) Ability to delete images temporarily - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11709  (10wikipedia.kawaii.neko)
[20:53:14] 	03simetrical * r26848 10/trunk/phase3/ (RELEASE-NOTES includes/SpecialRecentchangeslinked.php): 
[20:53:14] 	Revert 26830, which 1) completely breaks recentchangeslinked for logged-in users
[20:53:14] 	(error in LEFT JOIN condition probably due to mixed join syntaxes), and 2) will
[20:53:14] 	cause any moderate-sized database to spontaneously combust (over a minute to run
[20:53:14] 	the query on an old Simple English database before I killed it) due to Cartesian
[20:53:17] 	join of page and redirect tables.
[20:54:04] 	what should i set the permissions to for my LocalSettings.php?
[20:56:09] 	Discorax: f.e. i have  $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'svg', 'pdf', ... in my LocalSettings.php, and i can upload PDFs, they are still on pages in the Image: namespace, but they do show an PDF icon and the MIME type application/pdf  
[20:58:16] 	What is the easiest way for me as an admin to pull up a list of all registed users in MediaWiki?
[20:58:24] 	Special:Listusers
[20:59:01] 	Are there any extentions available to email page edits to mediawiki?
[21:01:08] 	Zaphoid: well, mediawiki produces the RSS feed of the recent changes, and there are many email programs with RSS feed feature,, just btw
[21:01:17] 	03brion * r26849 10/trunk/extensions/CentralNotice/SpecialNoticeText.php: use parser for headline & quote text
[21:01:31] 	I just got this error :| Parse error: parse error, unexpected T_BOOLEAN_AND, expecting '(' in /*/*/*/Wiki/extensions/ConfirmEdit/ConfirmEdit.php on line 330
[21:02:02] 	Zaphoid: oh,you mean sending an email in order to edit? like sending commands to a mailinglist robot? 
[21:03:27] 	mutante: Yes
[21:03:42] 	mutante: I don't care about sending email FROM mediawiki
[21:03:51] 	mutante: I want to send email TO mediawiki to edit or make new pages
[21:05:14] 	So, uh... Hi.
[21:05:25] 	hmmm,, maybe a combination of setting up pywikipedia bot and a shell script that reads from your inbox, takes the mail body and sends it to the bot
[21:05:33] 	Zaphoid: extensions i guess
[21:06:03] 	anyone know offhand where ubuntu will place the mediawiki files.
[21:06:15] 	I'm in the process of upgrading.
[21:06:33] 	...and I apperently need to replace the existing ones.
[21:06:34] 	Ask Ubuntu, they didn't tell us.
[21:06:46] 	Probably mostly in /var/www somewhere?
[21:06:51] 	oh maybe.
[21:07:25] 	crap. Nope.
[21:08:28] 	ah, it's /var/lib/
[21:08:44] 	now, when I upgrade, I just overwrite the files, right?
[21:08:49] 	or new install?
[21:09:00] 	overwrite files, then run maintenance/update.php
[21:09:03] 	mutante: pywikipedia bot?
[21:09:15] 	gotcha, thanks.
[21:09:16] 	Zaphoid: yes
[21:09:32] 	http://meta.wikimedia.org/wiki/pywikipedia
[21:09:47] 	MinuteElectron: Looking at it now
[21:10:04] 	brion-office: looks like you need a bot for that meta MediaWiki:Centralnotice stuff :)
[21:10:14] 	:)
[21:11:15] 	MinuteElectron: Thanks for pointing me this way.  Looks like just the kind of middleman I want
[21:11:26] 	:)
[21:12:28] 	MinuteElectron: Wish I coulda gotten it a couple hours ago when I had time to play with it :-P
[21:12:37] 	i find a little manual cut-and-paste calming after today ;)
[21:12:46] 	Zaphoid: heh, bad luck
[21:12:52] 	MinuteElectron: Dealing with starting to incorporate some framebuffer stuff into a project right now
[21:12:53] 	i'm planning to replace that loading system anyway, but i'd like at least the basic versions in place if i don't get it done ;)
[21:12:59] 	MinuteElectron: I'tll go on my list to look at Monday
[21:13:01] 	ahh
[21:13:02] 	:P
[21:21:29] 	Hi, guys. Quick editing question: I'd like to but a box around some sets of paragraphs. I've tried using 
tags, but I haven't been able to figure out how to put newlines in there. [21:23:11] wad, due to a bug, newlines inside
get eaten. Try manually delimiting the paragraphs with

. [21:23:19] ok [21:23:33] 03(NEW) anchors with name= but no id= - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11710 trivial; lowest; MediaWiki: Page rendering; (jidanni) [21:24:15] wad: actually, use

- a

can not contain paragraphs. [21:24:18] allright [21:24:19] :) [21:24:20] (it is a paragraph) [21:25:13] *wad tries it out [21:26:15] Woah, these don't work. [21:26:19] Duesentrieb, who said anything about containing paragraphs? [21:26:37]

This is paragraph one.

This is paragraph two.

will be made semi-sensible by the parser. [21:27:08] Here's an example:
blah blah blah [newline] foo foo [newline] bar bar
another one
[21:27:28] Simetrical, what you said isn't working for me. [21:27:31] wad, *single* newlines or double? Single newlines are always deleted anyway. [21:27:35] It isn't? Hmm. [21:27:40] double, actually. Good eye./ [21:27:43] Maybe some more Tidy-dependent behavior. [21:27:52] Ok, so I can upload various media file types but is there a way to change it so that they don't appear in the Image namespace? In fact can you set up a custom media namespace on mediawiki? [21:28:08] It's putting subsequence blockquotes inside the blockquote! [21:28:11] hello [21:28:16] Here's my wiki page, try it out: [21:28:26] why the edittoken is void here ? http://en.wikipedia.org/w/api.php?action=query&prop=info&titles=Zaragoza&intoken=edit [21:29:00] http://wadhome.org/wikiwad/Necromancer_Dagat [21:29:17] See those blockquote boxes at the bottom? [21:29:30] When you edit the page, you can see that there are multiple paragraphs in there. [21:29:39] I'd like to be able to see those guys. [21:29:42] how do i assign users to specefic groups in mediawiki 1.11.0? [21:31:40] Discorax: there's only one media namespace, and it's called "Image" ("Media" is a pseudo-namespace). YOu can define aliases for Image: though - File: can be made to work i guess. [21:31:53] wad: use
, not blockquote. [21:31:59] ugah [21:32:13] Trey: Special:Userrights (if you have sufficient privileges) [21:32:21] Nikerabbit: gnorf [21:32:59] I fixed it [21:32:59] Duesentrieb, why not
? It can contain paragraphs. [21:33:00] Try again [21:33:06] It's just MediaWiki thinks it can't, for some reason. [21:33:15] Simetrical: because you said it's buggy [21:33:25] Fair enough. [21:33:49] also, blockquote is for quotes [21:33:52] div is for boxes [21:33:59] Maybe i should ask to Yurik but NickServ says that he didn't connect for more than one week :/ [21:34:21] meithal: try mailing him then [21:34:46] (I had to disable anonymous editing and account creations, as spammers were killing my wiki, but I just enabled anonymous editing for you fine people to take a look at my wiki) [21:35:29] Does div make boxes? [21:35:32] *wad tries one [21:35:42] wad : you should install antispam features : http://www.mediawiki.org/wiki/Spam [21:35:49] I can't. [21:36:01] That CAPTCHA won't work with my version. [21:36:19] I would need to upgrade my wiki software, but I haven't gotten around to that yet. [21:37:09] Hey, div works just like blockquote!!! [21:37:17] But the newlines are happy in there! I'll be using this one. [21:37:19] Thanks, guys! [21:38:20] any api hacker here ? 0:-) [21:48:33] I need help with another problem [21:48:44] I have to use
to seperate my lines [21:48:52] 03(mod) Sitenotice/anonnotice not displayed - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11705 (10brion) [21:49:01] Is there anyway for my wiki to do that by itself? [21:51:09] quick and stupid question: can i link to a user page so that the link name is the username, without typing the username twice? i mean, so that i don't have to do User:somebody|somebody ? [21:51:34] [[user:somebody|]] [21:51:49] it would equal to [[user:somebody|somebody]] when you save the page [21:51:55] brion-office: could I have known this, or is this new? (re #11705) [21:52:28] Jack_Phoenix: ah, that's it, thanks a lot :) [21:52:35] np [21:53:06] siebrand: you could have known if it you're following my coding [21:53:34] brion-office: I follow your commits, but hadn't done an impact analysis :) [21:56:24] Umm, how do I use "$wgSysopRangeBans"? [21:56:35] brion-office, can you give me svn access on ar planet files? [22:00:15] Can someone help me with $wgSysopRangeBans, I dont even see it in my Localsettings.php [22:00:19] alnokta: if it's not the fundraiser i'm way behind on it right now [22:01:49] ah [22:02:10] 192.168.1.1/24 blocks 192.168.1.1 to 192.168.1.255 [22:02:39] Yes, but how do I use that in order to ban the ips? [22:02:46] I have no clue where I put the ips [22:03:10] And I cant find Rangebans in my localsettings.php [22:03:13] you have to know ip range before that [22:03:30] I know them [22:03:44] 209.250.162/24 [22:03:54] 209.250.163/24 [22:03:58] .. and what you need? [22:04:05] I need to ban all of them [22:04:09] yes [22:04:25] So where do I put them? [22:04:39] [[Special:blockip]] [22:05:05] and you need put as 209.250.162.0/24 [22:05:20] with sysop account [22:05:23] Thanks [22:05:44] np [22:06:28] ahh $wgSysopRangeBans=tule; for that. [22:06:59] Just add that in my localsettings.php? [22:07:10] yes [22:08:41] And then go to Special:blockip and type in 209.250.162.1/24 [22:09:03] yes :) [22:09:22] <[ace]an[9el]> Is there an easy way to exclude pages from Special:Allpages? [22:10:59] how do I enable the importScript feature onmy own install ? [22:12:33] Ah, I see, it's just in the site css [22:13:17] 03(WONTFIX) Sitenotice/anonnotice not displayed - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11705 (10siebrand) [22:18:40] Hi! [22:18:52] I had to come here just to say that the new diffs are awesome... [22:21:30] Anyone know a good example of a formatted search results, or a way to format the search results [23:09:03] <[ace]an[9el]> Is there an easy way to exclude pages from Special:Allpages? [23:09:31] no [23:09:54] get page source [23:19:34] 03(NEW) Ability to force super page for the page being added using Special:AddPage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11711 15enhancement; normal; MediaWiki extensions: Semantic Forms; (bugzilla.wikimedia.org) [23:20:02] super page :D [23:21:10] um just for subpage.. [23:50:45] [ace]an[9el]: You could always add them to a different namespace... [23:51:21] not sure if that is what you would classify as "easy" though [23:55:08] <[ace]an[9el]> I figured it out, there is an array with 'page_namespace' and 'page_title >= ' [23:55:20] <[ace]an[9el]> just need to add another element with a string [23:55:55] <[ace]an[9el]> 'page_title != "Main_Page"'