[00:00:58] alxndr, I'd hazard "everything" as a guess, since it was introduced over two years ago and I've never heard of anyone using it. [00:01:08] i just enabled it and it seems to work fine [00:30:30] <_sj_> I'm looking at openid right now, actually [00:30:39] <_sj_> yes, it's evan prodromou [00:30:44] *_sj_ summons evanpro [00:31:20] <_sj_> I would really like to see it bundled with standard mwiki [00:31:27] <_sj_> especially as SUL comes into being [00:32:37] <_sj_> I have 4 mwikis and a trac instance on a dev server, and would love for them to understand a single auth method [00:39:41] where does mediawiki save database information? what file? [00:39:53] it's in a MySQL database [00:39:59] 03(mod) All sysops on iswiki should be bureaucrats - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11388 +comment (10cbrown1023) [00:40:47] so you magical access this mysql database that has the mysql password with no password? [00:49:49] Shadow_mil: the info to access the database is in LocalSettings.php [00:49:59] ok ty [01:16:10] can I add an external link with a space without it breaking [http://en.wikipedia.org/wiki/Main Page] [01:23:00] No. [01:23:01] use an underscore [01:23:11] It needs to be urlencoded somehow. [01:23:20] The standard way is Main%20Page. [01:28:44] never mind [01:28:46] it's been fixed [01:48:32] what's the irc for Bugzilla [01:54:19] well, if there isn't any, can someone take a quick look at bug 11008 [02:00:43] anyone familiar with the semantic mediawiki extension and how it does caching? [02:08:05] am I right in remembering template parameters don't work in HTML tags or something? [02:11:32] we'd like images on our wiki to not be hyperlinks, is there a simple way to accomplish this? [02:21:55] is there a feature that might help us accomplish this?... or would it require a code change?... [02:27:20] b11guest, for historical reasons, this isn't easily possible. The best you can do is crazy CSS obfuscation, or the ImageMap extension (to get the image to link elsewhere). [02:27:46] Simetrical, ok thank you [02:28:06] Simetrical, is the ImageMap extension something we'd want to use for this [02:28:43] It wouldn't help for this. It would allow you to link the image to somewhere other than the image page, but probably not to remove a link altogether. [02:28:48] (although maybe, I don't know) [02:29:14] ok, thats what we want [02:29:30] linking all the images to just their source image file would work well [02:29:38] can imageMap accomplish that? [02:30:51] Instead of their image pages, you mean? [02:31:10] ImageMap allows you to create image maps. In particular, you can create image maps using only one area, so the entire image links to any single place you want. [02:31:17] Simetrical, yes, its ok if the images are links, but we dont want them to goto the image page [02:31:41] 03greg * r25929 10/trunk/phase3/ (RELEASE-NOTES includes/DatabasePostgres.php): Set search_path on Postgres if wgDBmwschema != 'mediawiki' to support multiple wikis for a single user, per discussion on bug 11136 [02:32:15] 03(FIXED) Postgres database code does not support multiple schemas - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11136 +comment (10greg) [02:33:21] b11guest: you can change image thumbnails to link to the actual image by editing includes/Linker.php [02:34:11] alxndr, thanks, ill take a look at that [02:35:00] in function makeThumbLink2, look for $s .= $thumb->toHtml towards the end, change 'desc-link' => true to 'file-link' => true [02:36:02] alexndr, thanks, i see makeThumbLinkObj, but no makeThumbLink2 [02:36:32] it's the next function [02:36:35] 03ivanlanin * r25930 10/trunk/phase3/languages/messages/MessagesId.php: (bug 11356) Minor fix to messagesid.php. Patch by Borgx. [02:36:47] in 1.11 [02:37:17] alxndr, i think we're using 1.10 [02:37:36] 03(FIXED) Minor fix to messagesid.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11356 +comment (10ivanlanin) [02:37:37] alxndr, ive fouind 2 cases of "$thumb->toHtml" [02:39:00] alxndr, hmm it looks like maybe my version is different then yours, there is no "desc-link" in the whole file [02:39:10] arg what a pain. [02:39:58] you could upgrade to 1.11... [02:40:12] alxndr, well thanks so much for helping us anyways, any idea how its done in 1.10? [02:40:40] alxndr, well, upgrading isn't possible, we've made major changes that wouldn't allow that [02:40:59] alxndr, but none of that would effect this [02:43:55] try this, see where $u is defined in makeThumbLinkObj(), change it to $img->getURL(); [02:44:40] alxndr, i will try that thanks! ... sec [02:48:09] alxndr: ugh, that didn't seem to change a thing, any other ideas?... [02:48:23] did you action=purge ? [02:48:40] alxndr, no [02:48:52] alxndr, just call a page with that get var? [02:48:58] yeah [02:49:43] alxndr, that doesn't seem to change anything [02:50:02] alxndr, i added action=purge on [02:50:04] well i'm out of ideas. [02:50:07] a page we were using [02:50:28] alxndr, did i do something wrong? should that have worked, or was it just an idea?... [02:50:49] when I changed $u, it was set to $img->getTitle()->getLocalURL( $query ); is that right? [02:51:12] little of both I guess? I was messing around with the stuff that makes thumbnails and wasn't getting anything to change unless i did action=purge [02:51:37] alxndr, ok [02:51:56] but was that the $u I was supposed to change, the one in that function set to "$img->getTitle()->getLocalURL( $query );" [02:52:55] yeah [02:53:28] alxndr, it turns out it was working [02:53:43] i was reading where the $u went, and it was only for images with the "thumb" property added [02:53:58] and the image we were testing it on wasn't a thumbnail [02:54:12] ah [02:54:20] alxndr, but thumbs work just as well for us, so we can just use that, thanks so much! [02:57:05] 03(mod) Allow null edits to fill in missing edit summaries - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=1279 +comment (10e.martinson) [03:15:48] can someone help me figure out a problem I'm having with svg files on my wiki? [03:15:51] http://commons.bahaikipedia.org/Image:Broom_icon.svg [03:15:56] http://commons.bahaikipedia.org/images/2/2c/Broom_icon.svg [03:16:05] You can see it is uploaded correctly to the site [03:16:14] but when it loads through mediawiki get's all messed up [03:28:54] Simetrical: OpenID isn't mine. I don't see why it would need to be bundled with MediaWiki though. It seems to work fine as a plugin [03:30:12] Simetrical|away: I do think, however that there are some aspects of OpenID that could be used in MediaWiki in general though, especially the external ID [03:34:18] 03(mod) Different diff-colors no to discriminate red-green color blinds - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11374 +comment (10rene.kijewski) [03:36:18] 03(mod) When I click cur, diff and last on history and Recent Changes, it asks me if I want to download something. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11368 (10N/A) [03:53:19] 03(mod) Different diff-colors no to discriminate red-green color blinds - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11374 (10rene.kijewski) [03:53:24] hey, some guy (Dantman from Wikia) had a neat idea on how to un-dismiss the Sitenotice just by editting it, rather than needing to edit the Sitenotice_id, too: just replace the use of the mw-message with the current revision id of the Sitenotice page. whaddya guys think? [04:11:57] 03(NEW) want to make thumbnail's default width larger - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11393 15enhancement; normal; MediaWiki: Images; (tamago915) [04:44:33] Any way to have multiple wikis share one userbase, so one would only need to register once to have access to them all? [04:51:08] yes [04:51:21] Care to enlighten? [04:54:25] Al: Just had to scan DefaultSettings.php for the details. wgSharedDB should do the trick [04:54:40] the shared DB stores the user credentials. [04:55:28] it's experimental code and I didn't test it for some time. use at your own risk. Good luck :-) [04:55:37] lol [04:56:37] :D Ill look it up, thank you. *Goes to annihilate wiki* [05:03:30] $wgSharedDB is set to null, what should be assigned to it? [05:17:33] How to add lightbox script for images in wiki? [05:22:35] can someone tell me how &uselang= works? [05:24:53] for example how can I duplicate this from commons: Special:Upload&uselang=fromflickr [05:28:33] t0lk: http://commons.wikimedia.org/wiki/MediaWiki:Uploadtext/fromflickr [05:30:19] Is there some step by step tutorial about editing the css of the different skins somewhere? I want a different color scheme on my wiki. [06:01:27] 03(NEW) check NTP setup - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11394 15enhancement; normal; Wikimedia: Site requests; (jeluf) [06:08:53] 03(mod) Different diff-colors no to discriminate red-green color blinds - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11374 +comment (10JSchulz_4587) [06:14:51] 03(mod) Create Bengali Wikisource - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10907 +comment (10ragibhasan) [06:16:28] Any chance of having a "Save article" button when editing a wiki page? I keep a wiki page open and take notes during the day... and the other day firefox crashed, and I lost a lot of info I inputted. Now I'm constantly saving what I'm working on, but I need to save it, and then edit... an ajax auto save would be nice, but that's asking a lot. :) [06:23:31] 03david * r25931 10/branches/liquidthreads/ (6 files in 4 dirs): More watchlist noodling -- schema change whose purpose will become apparent in tomorrow's episode. Source maintenance/lqt-schema-change-1.sql. [06:44:23] 03david * r25932 10/branches/liquidthreads/ (35 files in 6 dirs): (log message trimmed) [06:44:23] Merged revisions 25861-25931 via svnmerge from [06:44:23] svn+ssh://david@svn.wikimedia.org/svnroot/mediawiki/trunk/phase3 [06:44:23] ........ [06:44:23] r25863 | brion | 2007-09-14 13:53:19 -0700 (Fri, 14 Sep 2007) | 4 lines [06:44:23] * (bug 11342) Fix several 'returnto' links in permissions/error pages which [06:44:27] linked to the main page instead of targetted page [06:54:53] <_wooz> lo [07:01:53] 03(mod) Install the StringFunctions extension - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=6455 +comment (10pirate.internet) [07:54:37] 04(REOPENED) References are not shown to Anons when they don' t have edit permissions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11224 +comment (10faruq) [08:12:47] good morning. I have a mediawiki running on 1.7 (via apt -> very old). I want to change server and upgrade to a newer version. I guess i have 2 options: Using ubuntu's apt release (1.4.14) or building mediawiki myself from current code. Mailinglist told me that best method is upgrading to 1.11 and then doing next step. anyone can give me additional informations or hints for that case ? [08:12:54] :) [08:13:55] Anyone that can point me into some reading materiall about securing wiki in a enterprise enviroment? [08:14:07] Like keeping unwanted users off it [08:14:12] is there any way to hide the section [edit] buttons on a specific page? [08:14:55] nvm just found __NOEDITSECTION__ [08:15:29] We are using active-directory and it would be nice if we could base the authentication on this [08:15:58] i am a bit confused as according to mediawiki page 1.11 is latest release. but ubuntu offers 1.4.14 ..... [08:30:58] so best method is: installing 1.07 on the new server, importing the old databases and then upgrading to 1.11 right ? [08:38:55] odb|fidel_: If you didn't change the code, I'd just go and upgrade in one step [08:40:51] tinus__: [08:41:20] well...as i have to change to another server too...the idea was a 2 step procecure [08:41:42] setting up old 1.7 on new server, trasfering db's and then doing the upgrade to 1.11 on the new [08:41:51] how would you do that in 1 single step ? [08:42:03] only changes i have done is to the config file itself... [08:42:12] on that old 1.7. installation [08:48:01] well, not really a lot is going to change when you set up the old 1.7 on the new server, so you could probably skip that step [08:51:19] tinus__: and how should i realize the mysql-data transfer from old server (1.7) to new server (1.11) then ? [08:51:38] i expected several changes in the tables...so just importing shouldnt work, or am i wrong ? [08:52:59] how do i put a search bar in the main page? [09:00:24] is there a way to externally link to a local file? What I mean is, lets say my wiki is on example.com/wiki, but I have full-resolution photos in example.com/fullrez, is there wikitext that will let me say like click [/fullrez/image.png] for a full resolution version of the image? [09:15:11] hi everybody ! [09:15:49] i use mediawiki and i have a very small problem [09:16:05] how can i make the search not case-sensitive ? [09:17:54] fulltext search is not case sensitive. title search is. [09:18:46] Duesentrieb: is there a way to externally link to a local file? What I mean is, lets say my wiki is on example.com/wiki, but I have full-resolution photos in example.com/fullrez, is there wikitext that will let me say like click [/fullrez/image.png] for a full resolution version of the image? [09:19:41] omnivibe: Special:Filepath/Foo.jpg [09:19:46] might be an extension, not sure [09:19:46] ugga [09:19:50] Thanks :) [09:19:59] Duesentrieb: oki thanks [09:20:38] nantes_geek: actually, it seems like title search isn't case sensitive either - at least on my wiki. Titles themselves (i.e. links) *are* casesensitive [09:21:41] hi there, I'm trying to create a table in my wiki, reusing the examples in http://meta.wikimedia.org/wiki/Help:Table but I have unepected results; the wikitable style should apparently draw 1 pixel wide borders around cells, and it doesn't. any ideas? [09:22:12] Duesentrieb: what's your version ? [09:22:29] mux: the prettytable class isn't defined per default. copy it from MediaWiki:Common.css [09:22:48] Duesentrieb: aaah, that makes a lot of sense. will try that then, thank you [09:22:55] nantes_geek: 1.11alpha... I should probably upgrade to 1.11 proper [09:24:55] mmh my version is older [09:25:03] perhaps i need an upgrade [09:25:42] if you don't have 1.11, you should, yes [09:25:53] ok [09:26:03] Duesentrieb: what css file should I put this into? isn't there a common css file for all skins? [09:28:13] mux: you put it into the *page* MediaWiki:Common.css [09:29:00] aaah, a special page, ok. thanks [09:29:02] hey people - how do i delete orphaned pages (or at least remove them from search results)? [09:29:30] mux: not a Special page, but a specail page, yes. technically, a system message. [09:29:48] fishsponge_: go to the page an delete it? [09:30:13] i don't see a "Delete" option [09:30:18] but why delete orphaned pages? wouldn't it make more sense to un-orphan (i.e. link) them? [09:30:38] fishsponge_: if you are logged in as a sysop, you have a [delete] tab on every page. [09:30:55] no, becuase when people search for content on the wiki, it bring up the orphaned pages (which are no longer linked to for a reason) [09:31:05] so they are getting invalid, out-of-date information [09:31:29] yea, well... then delete them :) [09:34:42] tinus__: any idea regarding that upgrade question ? [09:35:00] as i really dont see the solution for your 1 step idea [09:35:23] Duesentrieb: thank you - the delete tab works perfectly :-) [09:35:39] does anyone know how to restrict our Wiki so that only registered, logged in users can edit pages? [09:35:54] fishsponge_: check your wiki local settings [09:36:08] fishsponge_: read the faq [09:36:16] look for "restricting access" [09:37:00] where is the faq? [09:37:09] Duesentrieb: i need with my old 1.7. wiki (debian) to a new server (ubuntu). During that stepo i want to upgrade to a newer release. Is the best way to install 1.7 on the new serve,r migrate the old content into db and upgrade to newer Mediawiki version then ? [09:37:22] fishsponge_: lol check the mediawiki-page [09:39:01] ok, i've found "Extension:Lockdown", "Extension:PageSecurity" and 5 other results - do you know which one it is, or do i ened to read them all? [09:39:26] odb|fidel_: first migrate (and make sure it works), then upgrade. [09:39:32] odb|fidel_: don't do two things at once. [09:39:43] also, can this be done without patching the software? [09:39:45] yeah i think so too [09:39:52] fishsponge_: read [09:40:03] its just a small switch to enable that feature [09:40:10] ok, "Extension:Page access restriction" requires a patch [09:40:14] onto the next one... [09:41:04] fishsponge_: if you want to impose the restriction on *all* pages, you don't need an extension. [09:41:23] yep....and i guess thats what he is asking for [09:41:33] fishsponge_: Extension:Lockdown is per-namespace, and my favorite, because i wrote it :) [09:42:16] !access [09:42:16] For information on preventing access to your wiki, please see . [09:42:28] oh we have a bot? [09:42:30] it appears to "restrict access to specific namespaces and special pages to a given set of user groups" [09:42:30] wow, the bot is still here :) [09:42:41] Nikerabbit: no one uses it, so no one knows :) [09:42:43] but i want to have *everything* uneditable unless you are logged in [09:42:59] fishsponge_: then use the non-extension methods [09:43:04] fishsponge_: read the link above... [09:43:33] "Restrict editing of all pages" sounds good, no? [09:46:56] Duesentrieb: thx for the hint regarding my upgrade. [09:47:53] odb|fidel_: read the upgrade guide, and the backup guide. beware the charset issues of mysqldump, and perhaps make an additional xml dump for good measure. [09:48:06] hm, let's try the bot [09:48:07] !upgrade [09:48:21] !backup [09:48:32] uh... ? [09:48:50] !help [09:48:50] Hi! I'm mwbot, a bot that was quickly whipped up by Daniel Cannon (AmiDaniel) to help out around #mediawiki. There's not much documentation on me, but you can find all my source code at http://amidaniel.com/viewvc/trunk/MWBot/?root=svn [09:48:54] Duesentrieb: :P ok thank you again [09:49:32] !upgrade is http://www.mediawiki.org/wiki/Manual:Upgrading [09:49:32] Successfully added keyword: upgrade [09:49:56] !backup is http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki [09:49:56] Successfully added keyword: backup [09:50:25] great [09:51:14] gonna start tomorrow with the task. [09:51:28] !extensions [09:51:28] MediaWiki has been built so it can easily be customized by adding extensions, this is usually a simple process, to find a list of them visit http://www.mediawiki.org/wiki/Category:Extensions [09:52:49] !extensions is MediaWiki has been built so it can easily be customized by adding extensions. See http://www.mediawiki.org/wiki/Manual:Extensions for details and http://www.mediawiki.org/wiki/Extension_Matrix for an overview of known extensions. [09:52:49] Successfully added keyword: extensions [09:53:43] !download [09:53:43] The latest stable release of MediaWiki can be downloaded from . Files are supplied in a .tar.gz archive. MediaWiki can also be obtained direct from our Subversion repository. See for more information. [09:53:55] bah, mwbot soesn't support query. [10:20:01] Duesentrieb: Filepath isn't working for me :\ [10:20:08] maybe I was asking for something simpler? [10:28:11] omnivibe, how is it, isn't working? [10:30:42] omnivibe: if you go to Special:Filepath, what do you see? [10:34:47] Ah, nm... fixed... [{{SERVER}}/localpath/file.jpg] :) [10:35:11] not that filepath wasn't working, but it wasn't the right choice for me :) [10:35:20] \o [10:43:25] 03(mod) You got follow up! - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=8662 (10walter) [10:59:51] can anyone tell me how to get at the article source when you have the $editpage object? alternatively, is there a more direct way to find out if an article is in a category than going through it with preg? [11:35:31] Hi, I'm trying to get WP:AWB/T over to my personal Wiki; copy-pasthing the source from Wikipedia does not work; everything simply *disappears* when clicking preview. [11:35:57] And there are no errors or warnings in PHP output [11:40:23] maybe you need some templates? [11:40:57] [11:41:07] you need GeSHi highlighter extension [11:41:12] I tried replacing those with

[11:41:45] 	But whatever the case, MediaWiki should *never* eat your text without warning when clicking preview.
[11:42:00] 	strange
[11:42:00] 	The edit area is simply blank.
[11:42:32] 	And I did check with WireShark that the submitted content is actually reaching the server.
[11:46:13] 	Seems like it has something to do with the amount of content. When I throw out a part of it, it works. The Wikipedia page is 180 kilobytes long
[11:48:19] 	$wgMaxArticleSize       = 2048; # Maximum article size in kilobytes
[11:48:52] 	03(NEW) request for special:suffixindex - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11395 15enhancement; low; MediaWiki: Special pages; (gregbard)
[11:50:53] 	Does anyone else have a MediaWiki 1.10.0 installation up that I could test on?
[11:52:32] 	odb|fidel_: not sure if you're still there, but you should copy the database by dumping on the original, then importing on the new server. If you present the new software with an old-style database, as far as I know it should automatically update the database.
[11:53:23] 	anyway there is no difference wether you install the old version on the new server first, as that doesn't change the database
[11:59:12] 	03(mod) Introduce Special:Suffixindex - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10808  +comment (10robchur)
[12:01:05] 	14(DUP) request for special:suffixindex - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11395  +comment (10robchur)
[12:09:42] 	In fact, the value of wpTextbox1 does not reach $_POST
[12:10:19] 	intgr: do you use mod_security?
[12:10:46] 	tinus__: mh ok
[12:10:54] 	thx for the response
[12:11:55] 	flyingparchment: No, lighttpd.
[12:12:58] 	But that shouldn't matter as far as I can tell, since multipart/form-data is parsed by the CGI process and not the web server.
[12:13:19] 	mod_security does its own form parsing and often breaks mediawiki
[12:13:34] 	Yeah, I was commenting about lighttpd.
[12:14:14] 	And the multipart parsing doesn't break somewhere in the middle either, because the values that come after wpTextbox1 *are* present.
[12:15:51] 	However, when submitting a shorter string, it does show up in $_POST.
[12:30:36] 	03(NEW) Logo change request for Greek Wikiquote - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11396 minor; normal; Wikimedia: General/Unknown; (txapollo243)
[13:00:21] 	03(NEW) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397 normal; normal; Wikimedia: Site requests; (kalan.001)
[13:04:52] 	i installed & configured memcached, told mediawiki to use it. still, the site is _slow_
[13:05:06] 	is there any checklist on how to track this down?
[13:10:39] 	RichiH: http://dammit.lt/2007/01/26/mediawiki-performance-tuning/
[13:10:52] 	use postgres!!!!!!!!!!!
[13:11:14] 	troll!
[13:12:07] 	domas, nice
[13:12:35] 	RichiH: check if its really being used
[13:13:23] 	anyone who uses memcached for single server needs to be shot
[13:13:28] 	why?
[13:13:31] 	it helps a lot
[13:13:47] 	because one can use APC instead?
[13:13:54] 	which is like 10x faster ;-)
[13:15:33] 	but is it stable?
[13:16:38] 	morrrrrrrning
[13:20:06] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10greg)
[13:25:28] 	does the Image.php class no longer exist in the mediawiki?
[13:29:10] 	domas: ta, i will go through it
[13:29:17] 	tinus__: how can i do that?
[13:29:36] 	tinus__: well, yes
[13:29:50] 	tinus__: check if it is being used, that is
[13:30:33] 	domas: Hi!
[13:30:44] 	hiii!!!!
[13:30:52] 	hi all
[13:30:52] 	Geo24: do you find it in there? if not, probably it does not :)
[13:31:02] 	I couldn't go any furthur here: http://bugzilla.wikimedia.org/show_bug.cgi?id=11224
[13:31:17] 	But I think someone more adapted with the code can find the solution easily. Please advise
[13:31:20] 	domas: So what has replaced it? Where did the code go to?
[13:31:32] 	filerepo
[13:32:25] 	domas
[13:32:27] 	: I see!
[13:32:31] 	Thanks!
[13:33:37] 	03(mod) References are not shown to Anons when they don' t have edit permissions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11224  (10huji.huji)
[13:33:59] *Hojjat 	taps wikibugs on the sholder
[13:35:47] 	brion-office: allo ;)
[13:35:53] 	'ey
[13:35:57] 	wot up
[13:35:58] 	VoiceOfAll hello!
[13:36:04] 	Brion-office hello!
[13:36:10] 	don't forget my checkuser bug
[13:36:23] 	checkuser bug?
[13:38:03] 	brion-office: http://bugzilla.wikimedia.org/show_bug.cgi?id=11387
[13:38:22] 	brion-office: oh, and when would a rev_deleted branch merge be OKz0rs?
[13:38:48] 	well, not technically a "branch", I don't use that, just my repo
[13:44:04] 	i'll take a peek
[13:44:06] 	umm dunno
[13:44:19] 	hopefully we'll get them branches sorted out within the next couple months :)
[13:46:00] <^demon>	Am I the only one who thinks that bug 42 being "can't search for numbers" is midly ironic?
[13:51:06] 	so is there a way to like... create a news-like page?
[13:51:58] <^demon>	ralfWORK: What do you mean by that?
[13:52:04] 	oh. heh.
[13:52:11] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  (10kalan.001)
[13:52:14] 	well I didn't know that the Discussion pages used ~~~~
[13:52:19] 	*smacks forehead*
[13:52:56] 	^demon: eh. something I con put on Main_Page that's like "hey, we've updated this" or "hey, we have a new page here"
[13:53:09] <^demon>	Like, a template?
[13:53:20] <^demon>	Like how Wikipedia does "In the news" and "Today's feature article"
[13:53:28] 	I've seen the automatic Special pages for them, but I was hoping for more of a manual thing
[13:53:35] 	yea maybe that?
[13:53:51] 	RichiH: you can just connect to the memcached using telnet and ask for statistics
[13:54:03] 	or strace it to see if there's activity
[13:54:29] 	and as far as I know there's also some command line argument to enable extensive logging
[13:55:06] 	^demon: maybe like something that takes the date and time of the last edit, puts that on the page with whatever commentary you want
[13:55:11] 	kinda like discussion I guess?
[13:55:28] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  (10svolgota)
[13:55:56] <^demon>	Hmm, not sure.
[13:56:10] 	03(NEW) skins/common/protect.js: wgCascadeableLevels runtime JavaScript error - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11398 normal; normal; MediaWiki: User interface; (mediawiki)
[13:56:13] <^demon>	Anyone: How many results does Special:Prefixindex return per page? 500?
[13:56:32] 	03(mod) skins/common/protect.js: wgCascadeableLevels runtime JavaScript error - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11398  (10mediawiki)
[13:56:53] 	03(mod) Different diff-colors no to discriminate red-green color blinds - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11374  (10rene.kijewski)
[13:58:33] 	^demon:         var $maxPerPage=960;
[14:00:36] 	03(mod) skins/common/protect.js: wgCascadeableLevels runtime JavaScript error - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11398  +comment (10JSchulz_4587)
[14:01:20] <^demon>	Hojjat: Thanks.
[14:02:02] 	tinus__: do you happen to know by heart how i can query its statistics?
[14:02:06] 	^demon You're welcome! I just took a glance to the code; nothing important!
[14:02:36] *VoiceOfAll 	sighs
[14:03:07] 	LocalSettings has the correct info fwiw
[14:03:31] 	still, loading a page takes several seconds. without showing any large load in top
[14:04:45] *Hojjat 	taps VoiceOfAll on the shoulder
[14:04:52] 	http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/skins/common/protect.js?r1=20478&r2=24419&sortby=date
[14:05:29] 	indexOf is for strings, not arrays
[14:05:47] 	VoiceOfAll: i wonder if that person realizes that not all browsers support Element.addEventListener()
[14:05:51] 	ralfWORK: check out the News extension
[14:06:07] 	most notably, IE
[14:06:55] 	VoiceOfAll: I wonder...have you seen http://www.mediawiki.org/wiki/Template_talk:Extension#Recent_additions_to_Template:Extension and http://www.mediawiki.org/wiki/Special:Recentchanges ?
[14:07:44] 	jimbowj, looking at the diff, I have the same concern
[14:08:19] 	RichiH: connect, then type 'stats' and press enter
[14:08:46] 	alxndr: kk
[14:11:46] 	Jack_Phoenix: hmm
[14:11:58] 	well, the cats don't bother me much, as they aren't so obtrusive
[14:12:26] 	the Recent changes are flooded and the obvious crap gets hidden unless you browse through the RCs carefully...it's kinda annoying
[14:14:06] 	tinus__: it is running
[14:14:07] 	alxndr: interesting, is there a demo of this somewhere?
[14:14:15] 	tinus__: and being used
[14:14:29] 	03(FIXED) skins/common/protect.js: wgCascadeableLevels runtime JavaScript error - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11398  +comment (10JSchulz_4587)
[14:14:42] 	ralfWORK: it's on the main page of oberwiki.net
[14:15:12] 	ok
[14:15:34] 	brion-office: I can't believe that got past
[14:16:37] 	alxndr: interesting. I'm assuming the stuff in "recently edited" is this extension?
[14:16:44] 	yep
[14:17:19] 	alxndr: how about the "what's happening"? is that just manual?
[14:17:23] *brion-office 	blames microsoft
[14:17:29] 	yeah
[14:17:53] 	alxndr: how did you skin the site?
[14:18:05] 	(sorry, for the questions, kinda new to wiki :P
[14:18:08] 	a user volunteered to do it
[14:19:10] 	hrm, are there any known issues when running MW on apache2-mpm-prefork with ssl and memcached?
[14:19:12] 	Is it possible to remove deleted entries forever?
[14:19:24] 	i tried without https, and it is faster by several factors
[14:19:39] 	RichiH: No, prefork should be the most foolproof MPM.
[14:20:08] 	https tends to be slow in part because browsers don't like to cache https stuff
[14:20:36] 	connection setup's more expensive too
[14:20:46] 	On 32-bit processors. ;)
[14:21:22] 	intgr: delete "forever" - not in vanilla MediaWiki - there are extensions though which can prevent articles with certain titles from being created
[14:21:50] 	jimbojw: Ok, thanks.
[14:22:14] 	intgr: you can delete articles, but that doesn't also protect them
[14:22:17] 	03siebrand * r25936 10/trunk/phase3/ (12 files in 2 dirs): 
[14:22:17] 	Localisation updates from Betawiki.
[14:22:17] 	* ar, bg, bi (new), br, csb, el, ext, frc, frp, gl, hak.
[14:22:51] 	jimbojw: Well I meant hiding deletions from 'recent changes' and other user-visible places.
[14:22:59] 	if it's a localized problem (like you just want to permanently delete a few articles), then you could just set the article text to something like "this has been permanently deleted" then protect the page
[14:23:02] 	oh
[14:23:03] 	Not protection.
[14:24:02] 	brion-office: but several seconds as compared to less than 200?
[14:24:05] 	yeah - that would require removing entries from a couple database tables - that facility is not built in to MW by default.  in principle it shouldn't be too hard to achieve by an extension, but I'd be afraid of the consequences of taking revisions out of the revision table
[14:24:24] 	Right.
[14:24:48] 	yea that's kinda the point of revisions :P
[14:25:00] 	RichiH: might be if it's doing a lot of reqs. :) you probably want to benchmark and see *where* that delay is actually coming in
[14:25:45] 	ralfWORK: Revisions are hidden to normal users when articles are deleted.
[14:25:57] 	But admins can still restore them.
[14:26:02] 	And see them
[14:26:04] 	interesting
[14:26:11] 	brion-office: it is a decidated virtual machine with one user
[14:26:17] 	one wiki user, that is
[14:26:23] 	which is myself, testing stuff
[14:26:41] 	brion-office: does MW provide a framework for benchmarking?
[14:27:14] 	or timestamped debug logs
[14:27:15] 	or
[14:27:38] 	yep. but you probably want to check at the http level
[14:28:27] 	brion-office: so anyways, back to that code merge... ;)
[14:31:00] 	brion-office: if you have time, could you take a look at http://bugzilla.wikimedia.org/show_bug.cgi?id=11290
[14:31:04] 	it gives me headake
[14:31:15] 	as it should be impossible :(
[14:31:35] 	i'll put it on teh queue
[14:31:45] 	sounds like a race condition probably exacerbated by slave lag
[14:32:19] 	brion-office: but how woud it be possible for the text from the message to be merged into the textbox data?
[14:32:38] 	i have also seen it sometimes
[14:32:48] 	it makes no sense
[14:33:28] <^demon>	AzaTht: I've never seen that issue.
[14:33:32] 	also, you still made a comment on http://bugzilla.wikimedia.org/show_bug.cgi?id=11367
[14:33:34] 	i know
[14:33:37] 	^demon: I have
[14:34:01] 	(just wanted to point it out)
[14:34:13] 	AzaTht: because there's lots of shitty old code
[14:34:24] *AzaTht 	hides from the eventual retribution
[14:34:28] 	ok
[14:35:17] 	question
[14:35:31] 	shouldn't a blank Wiki install come with all the Help pages?
[14:36:06] 	ralfWORK: in theory, yes. in practice, no. it's even in the faq, i think
[14:36:13] 	oh :)
[14:36:47] <^demon>	Duesentrieb: If the PD help on Mediawiki.org ever gets to a release-able version, could it potentially be bundled?
[14:37:08] 	^demon: *if* and *potentially*, yes
[14:37:21] <^demon>	That's what I figured.
[14:37:27] 	^demon: well, i'd expect it to be downloadable separately, as an xml dump.
[14:38:18] <^demon>	True.
[14:38:46] <^demon>	Thoughts on http://bugzilla.wikimedia.org/show_bug.cgi?id=11376 anyone?
[14:39:22] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  +comment (10triyork)
[14:39:55] 	^demon: What changed on the first line? :)
[14:40:00] 	Whitespace?
[14:40:32] <^demon>	intgr: I suppose so, didn't realize I edited the first line.
[14:41:14] 	is memcached used in the background, i.e. is it still used when you do https?
[14:41:32] 	hi everyone. i've got a problem: when i change LocalSettings.php and try to enter my site, i recieve a warning "Warning: Cannot modify header information - headers already sent by (output started at /home/opravde/public_html/wiki/LocalSettings.php:1) in /home/opravde/public_html/wiki/includes/WebResponse.php on line 10"
[14:41:51] 	RichiH: Yes.
[14:42:40] 	mr_butt: what did you change?
[14:43:17] 	RichiH: i've added a comment=)
[14:43:35] 	mr_butt, remove the text before 	RichiH: Be careful though, some directives refer to the full URL, so your cache might end up containing incorrect cross-links between http and https.
[14:43:47] 	even the hidden mark that some editors add
[14:44:09] 	Platonides: there is no text before
[14:44:31] <^demon>	mr_butt: Should be some text after you installed MediaWiki.
[14:44:51] 	mr_butt, you used notepad?
[14:45:03] 	03brion * r25938 10/trunk/phase3/includes/api/ (ApiFormatBase.php ApiMain.php): 
[14:45:03] 	Tweaks to r25923 for my own peace of mind:
[14:45:03] 	* De-escape &amp; to & rather than & to & -- guarantees that we won't leave stray &s around producing invalid or freaky output
[14:45:03] 	* Use == instead of = when comparing... :)
[14:45:04] 	Platonides: yes
[14:45:09] 	it adds a BOM
[14:45:14] 	^demon: ?
[14:45:19] 	a character at the beginning
[14:45:24] 	which doesn't show to you
[14:45:29] 	but php does
[14:45:35] 	oh, ok, thnx
[14:45:42] 	you need to remove it using a better editor
[14:48:17] 	thanx, the problem's solved
[14:51:10] 	alxndr: hahahh I type dvorak too :)
[14:51:14] 	03brion * r25939 10/trunk/phase3/includes/api/ApiFormatBase.php: 
[14:51:14] 	Tweak it up a little more -- also unescape the double-escaped quotes and angle
[14:51:14] 	brackets to keep the help message legible, but move unescaping down below the
[14:51:14] 	XML metaformatting, so the mail samples don't get misformatted as if they were
[14:51:14] 	XML elements.
[14:51:25] 	good stuff
[14:51:36] 	intgr: the initial plan was to redirect every http access to https
[14:51:46] 	RichiH: Ah, I see. That would work.
[14:52:02] 	intgr: with the speed i am seeing, this is not an option, though
[14:52:24] 	03aaron * r25935 10/trunk/phase3/skins/common/protect.js: *Revert bogus code from r24419. indexOf() is meant for Strings, not arrays. If used on such, it dies miserably in IE.
[14:52:24] 	03aaron * r25934 10/trunk/extensions/CheckUser/CheckUser.php: *Normalize IPv6 storage
[14:52:27] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  +comment (10svolgota)
[14:52:35] 	RichiH: What kind of speeds are you getting?
[14:55:55] 	03aaron * r25940 10/trunk/extensions/FlaggedRevs/flaggedrevs.css: *Remove bogus code
[14:57:14] 	intgr: default main page, with ssl: 6-7 seconds, without ssl: less than 200 ms
[14:57:38] 	Ack, are you running that on a 286 or something?
[14:58:06] 	intgr: opteron 280 within a domU
[14:58:31] 	Huh, my Opteron 144 does 10-11ms per request.
[14:58:54] 	With HTTPS.
[14:59:05] 	Oh wait, that's 100-110 ms
[14:59:06] 	intgr: that is what i would _want_ as well :p
[14:59:19] 	yah, 10 is a bit quick ;)
[14:59:43] 	Keep in mind though, that asymmetric crypto is 4 to 5 times faster on AMD64.
[14:59:47] 	RichiH: your problem is not with mediawiki
[14:59:52] 	RichiH: test ssl vs non-ssl with static files
[15:00:05] 	I'm using lighttpd and PHP with FastCGI.
[15:00:39] 	flyingparchment: hmm, you are right
[15:02:19] 	it takes 5 seconds to display a forbidden page
[15:02:57] 	ask #apache :)
[15:03:26] 	RichiH: When you're running the benchmark, see top and take note from which process consumes the most CPU
[15:03:46] 	intgr: that's the thing. nothing really shows up
[15:05:57] 	RichiH: Then the processes must be quitting too quickly.
[15:06:29] 	Nothing in Apache's error log?
[15:07:16] 	If nothing ense gives a clue, you could try oprofile.
[15:07:21] 	s/ense/else/
[15:08:31] 	intgr: i am in #apache and bugging them, atm
[15:08:37] 	Ok.
[15:09:01] 	intgr: which does not mean that if you a good idea, i would not listen :p
[15:09:35] 	Nah, oprofile is not particularly easy to use.
[15:10:05] 	So I would try other alternatives first.
[15:17:26] 	Duesentrieb: your extension matrix is choking on a couple extension names, search for "PAGENAME"
[15:24:00] 	03(NEW) Mark Warner "discussion" tab misdirected to Mark Warner Ltd. discussion. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11399 major; high; MediaWiki: Redirects; (Staver)
[15:29:13] 	evening
[15:29:21] 	hey Nikerabbit :)
[15:32:19] 	14(INVALID) Mark Warner "discussion" tab misdirected to Mark Warner Ltd. discussion. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11399  (10azatoth)
[15:32:27] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10purluno)
[15:34:13] 	Hello hello. Anyone here have the link to the actual mediawiki download? I keep getting linked to the directories.
[15:35:33] 	Ebok: what version are you trying to get - the latest one?
[15:35:50] 	Yes
[15:36:05] 	http://download.wikimedia.org/mediawiki/1.11/mediawiki-1.11.0.tar.gz
[15:36:13] 	http://www.mediawiki.org/wiki/Download
[15:36:24] 	Thanks.
[15:36:27] 	np[
[15:40:33] 	03(mod) change namespace "Wikibooks:" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11333  (10AheunHana)
[15:42:53] 	03(mod) Create the group "test-sysop" for the Wikimedia Incubator - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10727  (10triyork)
[15:43:03] 	http://www.ipbwiki.com/Media_Wiki:How_do_I_change_the_MediaWiki_language%3F tells me to run 
[15:43:12] 	sorry
[15:43:35] 	http://www.ipbwiki.com/Media_Wiki:How_do_I_change_the_MediaWiki_language%3F tells me to run rebuildMessages.php after changing $wgLanguageCode, but that file does not exist in any debian package
[15:43:56] 	look into the maintenance dir
[15:44:59] 	Platonides: maintainance dir of _what_? i do not have any file of this name on the server, nor does it exist in any debian package
[15:46:38] 	you don't have a maintenance folder in the mediawiki package?
[15:47:26] 	ah, you do not need to run rebuildMessages.php in 1.9 or later
[15:47:30] 	http://www.mediawiki.org/wiki/Manual:$wgLanguageCode
[15:48:32] 	hrm, it does not translate anything in the sidebar
[15:48:54] 	sidebar is in the content language
[15:49:29] 	hi is someone here who can help me in german?
[15:51:50] 	Platonides: how can i change that, as well?
[15:52:35] 	weigandwood: ich weiss nicht! 
[15:53:19] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10greg)
[15:54:14] 	RichiH, why do you need it?
[15:54:17] 	@punkrock ich habe einen wiki gestartet (www.pca-wiki.de.vu) und möchte nun ein logo hinzufügen... wie  geht das?
[15:55:40] 	weigandwood: schon im faq geguckt?
[15:55:43] 	Platonides: mainly because i want the spellcheck plugin to use the german aspell
[15:56:01] 	weigandwood: das waere auch meine idee gewesen. 
[15:56:08] 	weigandwood: also das faq. 
[15:56:20] 	dir die das faq...
[15:56:27] 	der
[15:56:32] 	als tipp: $wgLogo muss man setzen ;)
[15:56:35] 	ups :)
[15:56:48] 	 das/die/ 
[15:56:53] 	ich bin fuer 'das'
[15:57:12] 	naja. es ist ja kein Stichwortverzeichnis
[15:57:20] 	wo find ich es den auf deutsch? habe bislang leider nur auf englsich gefunden
[15:57:24] 	eigentlich "die", and "der" klingt besser. 
[15:57:38] 	weigandwood: gib't vermutlich nicht auf deutsch. #
[15:58:27] 	weigandwood: es gibt ne datei LocalSettings.php - in der musst do $wgLogo = 'dein/bild/mit/pfad.jpg'; in eine eigene zeile schreiben
[15:58:48] 	weigandwood: wenn nicht, scheint RichiH einen guten Vorschlag gemacht zu haben.
[15:58:55] 	/dein/bild/mit/pfad.jp, mit "/" am anfang
[15:59:20] 	Duesentrieb: naja, das kommt drauf an
[15:59:55] 	naja ist halt folgendes prob... habe nicht die installationsversion sondern von so ein anbieter wo man einfach wiki name eingibt und er richtet dir das grundgerüst selbst ein...
[16:00:02] 	RichiH: nö. sonst's gibt's verwirrung mit /w/index.php?title=Bla vs /w/index.php/Bla vs. /wiki/Bla
[16:00:16] 	RichiH: die "basispfad" wäre jeweils unterschiedlich. und nur einer kann stimmen.
[16:00:20] 	der
[16:00:32] 	oh man, deutsch tipp ich ja noch schlechter als englisch
[16:01:52] 	weigandwood: zum konfigurieren musst du die localsettings.php bearbeiten. anders geht es nicht. frag den anbieter
[16:01:55] *Duesentrieb 	geht kochen.#
[16:03:15] 	stupid question
[16:03:21] 	but how can I make templates? :P
[16:05:40] 	ralfWORK, edit any page on the Template: namespace
[16:05:50] 	uhm
[16:05:54] 	ok 
[16:05:54] 	like
[16:06:21] 	is there a listing of templates I have? :P
[16:07:46] 	if you didn't make them, you probably don't have
[16:07:58] 	ok so... how can I get started?
[16:08:15] 	see Special:Allpages/template:
[16:09:32] 	how to get started: http://www.mediawiki.org/wiki/Help:Templates
[16:09:43] 	ty
[16:10:03] 	I'm thinking of doing a template for users
[16:10:09] 	I'm guessing this would be somewhat standard
[16:21:02] 	03(mod) Template parameters unavailable to XML-style parser tags - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2257  (10ssanbeg)
[16:24:41] 	hrm
[16:24:50] 	silly question, but can you use templates from another wiki?
[16:25:49] 	ralfWORK: there's what's called "scary transclusion" which you have to activate in your LocalSettings - but generally no
[16:26:04] 	i mean, yes you "can", but it usually isn't done
[16:26:04] 	lol so that's a bad  thing?
[16:26:14] 	well, it has some drawbacks
[16:26:15] 	why not? I would think that would be very wiki-ish 
[16:26:16] 	heh
[16:26:39] 	jimbojw: I think he means copy and paste the templates.
[16:26:40] 	if you update a local template, any other article or template that uses it will immediately look right at the next page view
[16:26:45] 	oh
[16:26:46] 	no I don't mean cut and paste
[16:26:47] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10greg)
[16:26:50] 	ok
[16:26:56] 	sorry
[16:26:58] 	I mean I see a template on a wiki
[16:27:04] 	and I'd like to just use it
[16:27:10] 	if they update it, then my site changes
[16:27:12] 	ralfWORK: conversely, if you use scary transclusion, MW will not update articles when it changes
[16:27:31] 	right - that's the piece that you can't do - have it autoupdate across
[16:27:33] 	hm I see
[16:27:40] 	so it's generally not done
[16:27:41] 	really?
[16:27:46] 	yes
[16:27:48] 	so it's done at the time the template is used
[16:27:53] 	if I allowed scary transclusions
[16:28:21] 	if you allow scary transclusion, then any time an article gets rendered the contents of the scarily transcluded template will be pulled
[16:28:37] 	oh ok
[16:28:44] 	articles only get rendered when edits happen, or used templates get edited, or if the article is directly purged
[16:29:05] 	the results of rendering are cached for efficiency
[16:29:10] 	so say I have a ST template
[16:29:30] 	I save my article
[16:29:33] 	things look fine
[16:29:38] 	tomorrow the ST template gets changed
[16:29:47] 	what happens when I look at my article?
[16:29:59] 	it'll look same as yesterday, and I'll have to purge cache?
[16:30:40] 	if ST is in *your wiki*, the article will look as you expect - with changes having been applied magically
[16:30:57] 	ok
[16:31:00] 	if ST is in someone else's wiki, and you're using scary transclusion, then it won't
[16:31:18] 	and you'd have to purge your article
[16:31:21] 	oh
[16:32:05] 	why do you want to use templates from other wikis?
[16:32:33] 	cause they manage the data better than I do :)
[16:33:09] 	I'm a warcraft player, 
[16:33:25] 	and am using MW for our guild website
[16:33:43] 	and wowwiki.com has much better data about say, items and zones than I ever would
[16:33:52] 	(nor do I care to keep that information updated)
[16:34:03] 	so, I was thinking maybe using their templates would be an answer
[16:34:46] 	well, as I said before, you "can" do it - but you can't count on the articles looking right without explicit purges
[16:35:01] 	i'd advise you just just make copies as you need them
[16:35:06] 	ok
[16:35:07] 	it's unlikely that they'll change much
[16:35:11] 	that was my next question
[16:35:31] 	(ok, what's the suggested way to do it then)
[16:49:05] 	still around?
[16:49:21] 	I'm thinknig of creating a template to be used for the User pages
[16:49:47] 	is that like... a good idea?
[16:50:00] 	or are templates more like little modulized wiki fragments?
[16:50:29] 	hi all. how can i prohibit deleting text from a discussion page, but allow writing new text?
[16:51:13] 	because i don't want any wiki user to edit any comments left on discussion page
[16:54:29] 	is here anyone alive?=)
[16:54:44] 	I am
[16:54:48] 	but I am a nub
[16:55:12] 	too n00bs on the whole irchannel=)
[16:55:17] 	:D
[16:55:27] 	omg
[16:57:15] 	to change the size of images in the gallery you use widths="" right? It doesn't seem to have an affect on it...
[16:58:40] 	brion-office: http://community.livejournal.com/mysql/116972.html
[16:58:58] 	id | select_type | table         | type | possible_keys | key  | key_len | ref  | rows   | Extra                       |
[16:59:00] 	+----+-------------+---------------+------+---------------+------+---------+------+--------+-----------------------------+
[16:59:02] 	|  1 | SIMPLE      | eventlog_data | ALL  | NULL          | NULL | NULL    | NULL | 341455 | Using where; Using filesort 
[16:59:08] 	;)
[17:00:13] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10purluno)
[17:02:46] 	how can i prohibit deleting text from a discussion page, but allow writing new text? because i don't want any wiki user to edit any comments left on discussion page
[17:06:15] 	hello
[17:06:15] 	has anyone succesfully passed a table as a paramter to a template?
[17:07:17] 	hrm. I'm guessing that I can't like do loops and logic in wiki?
[17:08:36] 	it's pretty awkward. there are hacks and workarounds, but generally speaking they are hacks and workarounds.
[17:09:02] 	Parser Functions provide a stable, albeit somewhat limited, list of functions
[17:12:22] 	Jordan: oh?
[17:13:23] 	yeah, I'm trying to save a ton of work
[17:13:33] 	erm wait
[17:13:40] 	ah, whoops
[17:13:41] 	sorry
[17:13:42] 	Jordan: was that for me, or were you stating your problem?
[17:13:58] 	on your question: I use Parser Functions myself
[17:14:14] 	http://meta.wikimedia.org/wiki/ParserFunctions
[17:14:23] 	I mostly use the #if
[17:14:48] 	is that what you were looking for?
[17:16:43] 	to restate my question for those lurking around; I'm passing a table as a parameter to a template, and it's not working terribly well. Is there a way around this?
[17:17:04] 	it of course believes the | to indicate a new parameter, not a table
[17:19:56] 	use the {{!}} template
[17:20:07] 	which would have | as content
[17:21:06] 	how can i prohibit deleting text from a discussion page, but allow writing new text? because i don't want any wiki user to edit any comments left on discussion page
[17:21:40] 	maybe forbidding action=edit and allow action=new
[17:22:28] 	Jordan: hrm. I don't really know what I'm trying to do yet, but thanks :)
[17:22:33] 	that page will prove to be helpful
[17:24:22] <^demon>	mr_butt: I can't think of any way to do it.
[17:24:49] 	Platonides: there is no action 'new'
[17:25:06] 	^demon: =(
[17:26:07] 	hmmm....i'm reading through it right now
[17:26:24] 	glad to hear it ralfWORK
[17:28:45] 	03kim * r25943 10/trunk/extensions/Wikidata/util/copy.php: some refactoring, still runs without notices, so I'll commit for now
[17:29:26] 	eh....the {{!}} is uglier than all the alternatives, unfortunately
[17:29:48] 	it's a table, so there are hundreds of pipes that would have to be replaced
[17:30:03] 	easy to do, but hell to try and edit after the fact
[17:30:14] 	and it's 'yet another step'
[17:30:51] 	I'm trying to develop this for a userbase that loathes extra steps, but until OpenOffice Base gets a 'Export to MediaWiki' option....
[17:31:31] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10greg)
[17:38:46] 	mr_butt, i meant section=new
[17:38:51] 	hmm...transclusion actually works better
[17:40:05] 	upgrade instructions say to run ~/maintenance/upgrade.php -- but it doesn't exist.
[17:40:47] 	instead, upgrade1_5.php exists, but the comments in it say its for upgrading between 1.4 to 1.5 versions... and to follow it by running upgrade.php (which, again, doesn't exist)
[17:40:54] 	So.... how does upgrade?
[17:41:02] 	how does one upgrade?
[17:41:57] 	I need to upgrade from 1.5.6 to 1.11.0
[17:43:46] 	It says I can also do it by re-running the installer.. I will try..
[17:44:11] 	Solifugus, where did you get the package from?
[17:44:29] 	03(NEW) Changing Special:Uncategoriezd... pages to match with others - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11400 15enhancement; normal; MediaWiki: Special pages; (huji.huji)
[17:45:04] 	The latest of mediawiki home...
[17:45:55] 	you should have the file :S
[17:48:03] 	Platonides: I just unpacked the mediawiki-1.11.0.tar.gz file again--nope, it's not there..
[17:49:00] 	and.. i have to go to a meeting now..  
[17:58:53] 	Alright. I'm on a Windows XP. I have downloaded the file for the PhP 5.2.4 and the Mediawiki 1.11.0 file. I am reading the intallation file from the directorytree however I am Not sure about how to begin the installtion process. 
[18:00:06] 	Anyone Got a few minutes to help me get going?
[18:01:43] 	I'm still here, anyone about?
[18:06:50] 	03(mod) Notice: unserialize() Error when using Postgres - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11292  (10purluno)
[18:08:17] 	Ebok: try  http://yourhost/path_to_wiki/config/
[18:08:56] <^demon>	Ebok: For installing PHP/mySQL/Apache, I'd recommend something like XAMPP (Google it) to get that bundle on your system and installed. Great for beginners.
[18:09:05] 	Thanks
[18:09:14] 	Doing so now
[18:09:14] 	;)
[18:09:48] <^demon>	No problem.
[18:10:59] 	I'm still not quite sure how to get from the dictectory tree to the acualy set up. I'm not familiar with this sort of thing. So hang on a bit if you can.
[18:11:24] 	actual*
[18:18:50] 	Ebok: Just ask your question, never ask if someone can help you. 
[18:18:50] 	:)
[18:19:01] 	Any chance of having a "Save article" button when editing a wiki page? I keep a wiki page open and take notes during the day... and the other day firefox crashed, and I lost a lot of info I inputted. Now I'm constantly saving what I'm working on, but I need to save it, and then edit... an ajax auto save would be nice, but that's asking a lot. :)
[18:19:19] 	Cool. I'm just about out of time for now, but I'll be back if I run into a snag.
[18:26:50] 	03(mod) check NTP setup - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11394  +comment (10tstarling)
[18:28:58] 	03(mod) check NTP setup - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11394  +comment (10hashar)
[18:34:59] <^demon>	TimStarling: Thoughts on bug 11376?
[18:38:25] 	there are a few things wrong with your patch
[18:39:09] <^demon>	I figured my patch wasn't perfect, what specifically?
[18:41:34] 	1. it doesn't limit the hostnames which can transclude the current site, as you claim, it limits the hostnames which can be transcluded by the current site
[18:42:02] 	2. it leaves a bug unfixed, URLs may be longer than 255 bytes
[18:42:43] 	3. the regex is faulty, the slashes aren't properly escaped
[18:43:11] <^demon>	As far as 1 goes, I wasn't sure how exactly it worked, so I'll need to revisit it. In terms of 2, is there an open bug? 3 I can fix easily.
[18:43:42] 	4. "$UrlResult[0];", spelling error, should be $urlResult, variable names are case sensitive
[18:44:03] 	5. $urlResult[0] would issue a warning if the regex didn't match
[18:44:16] 	6. "wgScaryTransclusingDomains" spelt wrong
[18:44:27] 	7. uses the word "scary"
[18:44:45] 	8. claims that the URL is too long when in fact it just doesn't match one of the listed domains
[18:45:14] 	9. actually you mean $urlResult[1], the first group not the whole string
[18:45:23] 	10. regex isn't anchored
[18:45:36] 	11. we already have this feature don't we?
[18:45:46] <^demon>	11. No, not as far as I know.
[18:47:19] 	it's the iw_trans field in the interwiki table
[18:47:39] 	see Title::isTrans()
[18:48:07] <^demon>	Oh, I must've missed that.
[18:48:45] <^demon|brb>	Anywho, thanks for the feedback, I'll keep it in mind.
[18:51:59] 	hi ... anyone speak italian ?
[18:53:04] 	any one can help me with mediawiki configuration ?
[18:55:07] 	...
[18:56:31] 	Darkmagister, if you have a specific problem, describe it and ask
[18:56:46] 	ok
[18:57:07] 	i had been installed mediawiki 
[18:57:34] 	and now i what to create a user group to create the permissione to write articles or not
[18:57:43] 	and blok the registration 
[18:58:38] 	but i don't know where i had to manage
[18:58:43] 	this 
[18:59:07] 	so after an update to 1.11 i get very slow (~20sec) page loads.  i turn on the debugging things, and the pause is at a line:
[18:59:14] 	MessageCache::load(): loading all messages from DB
[18:59:31] 	does anyone know what i borked/what i need to fix?
[18:59:58] 	...
[19:00:16] 	right about it it says "Parser cache miss."  and "MessageCache::load(): cache is empty"
[19:02:28] 	richardus: are you using an object cache?
[19:04:24] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  +comment (10jeluf)
[19:04:43] 	no, just the built in caching
[19:04:47] 	:(
[19:06:06] 	its the same "loading all messages from DB" for every page load
[19:06:43] 	is the wiki public?
[19:06:52] 	yes, and i can give you the url for the debug file
[19:06:58] 	where i can modify the left menu in mediawiki ?
[19:07:06] 	that would be useful
[19:07:08] 	darkmagister: MediaWiki:Sidebar
[19:07:18] 	thanks
[19:07:37] 	the wiki is acadecscores.gilslotd.com, the debug log file is http://acadecscores.gilslotd.com/w/debug_log.txt
[19:08:02] 	and to edit the grup user ?
[19:10:36] 	Darkmagister: the what?
[19:11:55] 	to create new user group
[19:12:10] 	example registered user
[19:12:17] 	administrator
[19:13:09] 	http://www.mediawiki.org/wiki/Help:User_rights
[19:13:25] 	that's for Darkmagister 
[19:13:43] 	hm... let's see if the bot knows that
[19:13:44] 	richardus: the problem is that the wiki is in read-only mode
[19:13:47] 	!rights
[19:13:51] 	wow thanks and to blok the registrations ?
[19:13:52] 	!permissions
[19:13:52] 	in read-only mode, it cannot save the message cache to the database
[19:14:06] 	!rights is http://www.mediawiki.org/wiki/Help:User_rights
[19:14:06] 	Successfully added keyword: rights
[19:16:22] 	TimStarling: ok, so i commented out $wgReadOnly, and thanks a bunch man never would have guessed that.
[19:19:32] 	anonimous is the group for the anonimous people
[19:25:30] 	Darkmagister: anonymous users donÄt have a group. only permissions for "*" ("other") apply to them.
[19:26:30] 	if i use * the restriction are only for anonimous not for everyone
[19:27:21] 	no. * is for everyone, unless the permission is explicitely defined for anotehr group they are in.
[19:27:56] 	* applies for everyone. but for anons, only * applies.
[19:29:23] 	if i put * edit false e administrator edit true ... only admin can write or not ?
[19:34:34] 	?
[19:35:12] 	How can I turn on printing of errors?  So i can see what's going on?  I am currently getting a blank line.. but inserting a print statement before the first "require_once()
[19:35:28] 	How can I turn on printing of errors?  So i can see what's going on?  I am currently getting a blank line.. but inserting a print statement before the first "require_once()" does work.. but not after.
[19:37:16] 	03(NEW) Provide double-encoded variables if requested - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11401 15enhancement; high; MediaWiki: API; (azatoth)
[19:37:20] 	FIX IT ↑
[19:37:29] 	i whant to blok only anonimous user to edit 
[19:37:29] 	please
[19:37:43] 	which gruop use ?
[19:38:36] 	Darkmagister: setting edit to false for * will stop anons from editing. i'm not sure if it will stop registered users too - that depends on if edit is set to ture explicitely for registered users by the default configuration.
[19:39:06] 	!access | Darkmagister 
[19:39:06] 	Darkmagister : For information on preventing access to your wiki, please see .
[19:39:26] 	have you read that? even if your english isn't so good, the examples should be enough...
[19:40:06] 	no i not find it ... yes my english is not too good 
[19:40:08] 	sorry
[19:41:08] 	Darkmagister: no problem... anyway, it's really simple. but not so simple to explain.
[19:41:37] 	ok
[19:41:39] 	thaks
[19:41:43] 	thanks
[19:43:12] 	if i copy the permission on Localsetting from defaultsetting .. and modify it its ok ?
[19:43:37] 	or modify directly form default setting
[19:43:47] 	noo...never modify DefaultSettings.php
[19:43:52] 	always modify LocalSettings.php
[19:45:54] 	:D
[19:46:35] 	nice http://www.openoffice.org/issues/show_bug.cgi?id=48409
[19:46:50] 	it's in OOo 2.3
[19:48:22] 	why no modify default setting ?
[19:48:47] 	it would be pointless
[19:49:17] 	ok ... 
[19:49:52] 	Darkmagister: then they would no longer be default :)
[19:50:11] 	Darkmagister: also, DefaultSettings.php will be overwritten when you update. LocalSettings.php will stay.
[19:50:55] 	03(mod) Formatting problem: Included pages & Parser.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11345  (10brion)
[19:52:04] 	ok thanks
[19:57:49] 	03(mod) message missingarticle get' s merged into wpTextbox1 on recreate (sometimes) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11290  (10brion)
[20:05:00] 	03daniel * r25944 10/trunk/phase3/includes/SpecialRecentchanges.php: security fix (read-protection): use anon user privileges when checking what should be shown in the RC RSS feed. Previously, a 'privileged' version might have been cached and served to everyone.
[20:06:17] 	03daniel * r25945 10/trunk/phase3/includes/SpecialRecentchanges.php: implemented action=purge for RC RSS feed. Not sure how usefull that is in production, but it should easy the pain of debugging feed output.
[20:13:49] 	there a quick way to get a raw dump of all redirects?
[20:13:59] 	"raw dump"?
[20:14:36] 	like the list in Special:Listredirects as a text file or something
[20:15:10] 	alxndr: you can make one directly from the database. *maybe* api.php can also do it, not sure.
[20:15:18] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  +comment (10jorohr)
[20:15:52] 	03(mod) Switch ru_sibwiki to read-only due to it's closure - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11397  (10jorohr)
[20:18:32] 	Any chance of having a "Save article" button when editing a wiki page? I keep a wiki page open and take notes during the day... and the other day firefox crashed, and I lost a lot of info I inputted. Now I'm constantly saving what I'm working on, but I need to save it, and then edit... an ajax auto save would be nice, but that's asking a lot. :)
[20:18:44] 	03kim * r25946 10/trunk/extensions/Wikidata/util/copy.php: it runs and won't break anything else, so commit it
[20:19:45] 	foo: there are "save edit box to text file" plugins for firefox. also, i think the "restore session" feature also has uncommitted input of text fields.
[20:20:06] 	Duesentrieb: ah, I had no idea.
[20:20:44] 	Session Manager is a cool plugin too. a bit of overkill, though
[20:21:12] 	ah, tabmixplus has a session restore feature, I use that
[20:21:44] 	if i want to be safe, i'd use "save to file", though
[20:22:14] 	ah
[20:22:14] 	hello evanpro 
[20:22:23] 	Duesentrieb: For a firefox plugin?
[20:22:41] 	foo: hm? no, for text boxes...
[20:22:42] 	yo doozy
[20:22:47] 	:P
[20:22:54] 	Duesentrieb: hmm, you mean manually copying/saving to a text file?
[20:23:19] 	foo: no, by installing "Save Text Area" or aonther one of those.
[20:23:43] 	Duesentrieb: ohhh, gotcha
[20:24:07] 	gives you Text -> save as in the context menu
[20:24:28] 	03(mod) Following "diff"-link from watchlist doesn't mark the page as " seen" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11389   +easy (10brion)
[20:24:36] 	once you have done that, you can just ctrl-s
[20:24:47] 	ah, I see
[20:26:22] 	brion-office: is there a way to see how many bugs still are open in the bugzilla?
[20:26:32] 	without need of manual counting
[20:26:37] 	03(mod) Logo change request for Greek Wikiquote - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11396   +shell (10brion)
[20:27:02] 	http://bugzilla.wikimedia.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=substring&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=No
[20:27:09] 	oof
[20:27:10] 	2314
[20:27:32] 	AzaTht: do a search
[20:27:45] 	brion-office: aha,
[20:27:49] 	ST47:  'n' is not a legal date.
[20:28:01] 	AzaTht: really?
[20:28:13] *ST47 	shrugs
[20:28:15] 	ST47: that link gives an error
[20:28:21] 	I just clicked advanced search then hit enter
[20:28:52] 	http://bugzilla.wikimedia.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=substring&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=allwords&keywords=&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&ch
[20:28:52] 	fieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=
[20:29:02] 	aha. you had it cut of
[20:29:07] 	bugzilla = failure.
[20:29:20] 	tinyurl is your friend :P
[20:29:45] 	hehehe
[20:29:54] 	ST47: agree
[20:31:06] 	god i hate bugzilla urls ;)
[20:31:10] 	would like to see an transition to mantis, but that might be hard
[20:31:40] *AzaTht 	goes testing deletion in the sandbox
[20:32:07] 	oh, yea, I where to file a bug about that
[20:33:43] 	Our wiki is actually 9 different wikis... my old LocalSettings.php doesn't work with a new installation.  I could only specify one wiki database during installation, so only one got updated.
[20:34:29] 	But that one wiki does work...  I suppose I should re-do the install once for each wiki.. then start converting the LocalSettings.php one piece at a time.
[20:35:08] 	Solifugus: or you write a multi-site config by hand. it's not that hard.
[20:35:28] 	03(NEW) Deleting of pages with high number of revisions makes server cry - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11402 04CRIT; high; MediaWiki: Database; (azatoth)
[20:35:30] 	Duesentrieb: yeah.. that's what we had.. the difficulty is in upgrading it.
[20:35:47] 	Solifugus: the old localsettings.php will probably still work.
[20:35:55] 	Well, of course it does!
[20:36:04] 	just move the old one out of the way (keep the .php extension!), and try the old one
[20:36:08] 	Duesentrieb: it doesn't...  all i get is a blank page.
[20:36:32] 	appearantly no way of determining what's wrong.
[20:36:32] 	Solifugus: then enable error reporting and find out why
[20:36:45] 	Duesentrieb: enabling error reporting still gives me just a blank page..
[20:36:51] 	I already tried that....
[20:36:53] 	ST47: sometimes, settings are renamed or deprectaed, or new ones become neccessary.
[20:36:56] 	ST47: brion told me yesterday to file a bug about that
[20:37:06] 	Duesentrieb: I was talking to wikibugs 
[20:37:13] 	Duesentrieb: perhaps.. this is upgrading from 1.5.6 to 1.11.0
[20:37:20] 	Solifugus: have you tried turning it on at the very top of localsettings.php?
[20:37:27] 	ST47: oh sorry :)
[20:37:39] 	uga
[20:37:50] 	Duesentrieb: yes.. and I tried purposeful errors, as well... the results are interesting
[20:37:52] 	ST47: I couldn't say in the bug "makes brion cry", couldn't I?
[20:37:55] 	Solifugus: yes, some changes could be needed. you can try to find siettings in the new file that do not exist in the old file.
[20:38:05] 	AzaTht: yes, you could.
[20:38:12] 	It's been done
[20:38:17] 	but error reporting should be possible. you can also look for errors in the web server's error log
[20:38:27] 	ST47: been done what?
[20:38:37] 	in apache's log?  ok.. i thought maybe mediawiki had its own log
[20:39:47] 	AzaTht: claim that insertproblemhere makes brion/tim/domas/insertdemonhere cry
[20:41:21] 	Solifugus: it has if you enable it. but if localsettings fails, you never get that far.
[20:41:57] 	Duesentrieb: i c.. actually, i found some file not found errors, for some icons
[20:42:03] 	copying those over now
[20:42:03] 	Solifugus: *fatal* php errors can't be handeled inside php, for obvious reasons. they usually go to apache's error log, unless you tell php to put them elsewhere.
[20:42:16] 	well, that wouldn't cause a blank page
[20:44:27] 	Duesentrieb: ok... now i am just getting this error: malformed URL: /
[20:44:51] 	03(mod)  Deleting of pages with high number of revisions makes server cry - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11402  (10brion)
[20:45:13] 	Solifugus: sounds odd. can you confirm that it's related?
[20:45:39] 	Duesentrieb: Yes, because I get a new one for every request I make...  I have a theory, though.
[20:46:24] 	03(mod) Formatting problem: Included pages & Parser.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11345  (10jhcwilson)
[20:46:27] 	Duesentrieb: When I installed, it only let me enter one wiki w/ one wiki database.. so I entered our main one... It's not getting that info.
[20:47:38] 	Yes, because i think its our load-balancer that supplies that.. translated from a certain url, to a certain wiki (but on the same backend server)
[20:47:52] 	03(NEW) Don't show "edit with form" tab if user don' t have permissions to edit the page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11403 15enhancement; normal; MediaWiki extensions: Semantic Forms; (bugzilla.wikimedia.org)
[20:47:52] 	But I am entering the address by itself...
[20:49:43] 	03(mod) Formatting problem: Included pages & Parser.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11345  (10jhcwilson)
[20:56:47] 	Hey - Anyone available to help me quickly?
[20:57:36] 	"Don't ask if anyone's around, just ask"
[20:57:39] 	-topic
[21:00:50] 	03(NEW) API returns internal error when unable to connect to DB due to heavy load - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11404 15enhancement; normal; MediaWiki: API; (cbeckhorn)
[21:01:13] 	Does anybody remember how is called the page with the list of wiki based on mediawiki?
[21:01:14] 	Is there anyway to hide a template from showing up on the main page?
[21:01:52] 	found
[21:02:07] 	If I created a Files, Sections, and Includes template 
[21:02:13] 	But just want the Sections template to show on the main page
[21:02:22] 	Instead of Files with nothing under it, is there anyway to hide that?
[21:03:40] 	Hi everyone!
[21:04:28] 	i have some problems with phpfreechat integration with mediawiki. I've googled, but...
[21:04:40] 	well i've integrated phpfreechat as a specialpage
[21:04:44] 	03(NEW) Expand templates implementation in the API - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11405 15enhancement; normal; MediaWiki: API; (Bryan.TongMinh)
[21:04:59] 	but only thing i get is "Chat Loading" message
[21:05:05] 	and that's all
[21:07:38] 	someone knows that problem? i've found a thread on phpfreechat forum but there is a guy, who have the same problem
[21:08:41] 	Hm, is there a way to comment things in your edit page?
[21:08:49] 	Have it still there, just not being used
[21:10:28] 	RyanWenke 
[21:10:41] 	thanks
[21:11:06] 	I wish I could help you with your problem but as you can see, if I am asking about the commenting sequence, I prob wont know :P
[21:11:13] 	Just got mediawiki and giving it a shot
[21:11:47] 	Ryan sure :) not a problem
[21:12:09] 	but there is a lot of people here... some programmers and coders to :)
[21:13:33] 	03(mod) Don't show "edit with form" tab if user don' t have permissions to edit the page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11403  (10yaron57)
[21:13:52] 	Is there a way to remove the Contes completely? Rather than just click hide
[21:13:55] 	Contents*
[21:15:33] 	Ryan: Waht contencs you talking about?
[21:16:37] 	I found it nvm :)
[21:16:42] 	___TOC___ thing
[21:16:59] 	ok
[21:17:20] 	i thought that you want to hide a wiki menu or something
[21:19:28] 	Is it possible to add Lightbox JS script on for displaying picture?
[21:19:58] 	sure.
[21:20:27] 	Could you tell me how please
[21:20:58] 	i know how to add into normal website but i could get it work on my wiki site
[21:21:09] 	you can put global js, to run on every page load, into the page MediaWiki:Common.js
[21:21:31] 	Duesentrieb
[21:21:36] 	you'll have to figure out how to make that attach the script to wherever you want it
[21:21:48] 	Tommy_: or use HTMLets to drop js into pages
[21:21:57] 	PW_Yako: whot?
[21:22:24] 	maybe you know what's wrong with phpfreechat integration
[21:22:47] 	http://www.ossus.home.pl/biblioteka/Specjalna:Chat
[21:22:51] 	just look
[21:22:55] 	hmm what is HTMLets ?
[21:23:28] 	Tommy_: it's a neat extension that Duesentrieb made for injecting bits of raw html into mw pages
[21:23:44] 	ok thanks 
[21:25:00] 	it's simpel and safe. it's not flexible. it just for static stuff.
[21:27:24] 	Can you help with that chat? please
[21:27:36] 	Tommy_: take a look at http://www.mediawiki.org/wiki/User:Alxndr/Lightbox2_hack
[21:27:41] 	aw, just missed.
[21:27:52] 	PW_Yako: no clue about that
[21:28:58] 	ok thanks. i've seens a phpfreechat forum and there is some guy who have the same problem. But there isn't resolve to thet problem
[21:33:24] 	03(mod) Don't show "edit with form" tab if user don' t have permissions to edit the page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11403  (10bugzilla.wikimedia.org)
[21:35:52] <_Steve_>	hi guys, transparent pngs don't work right for me with 1.11.0... i download this image http://commons.wikimedia.org/wiki/Image:Mediawiki.png and upload it to my wiki to test, but it has a white background for me, not checkerboard. any ideas?
[21:43:39] 	03(mod) Don't show "edit with form" tab if user don' t have permissions to edit the page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11403  (10bugzilla.wikimedia.org)
[21:45:41] 	how is media wiki merging conflicts?  I can't see the parent version id in the edit form.  Is it using 3-way merge?  If so, how does it find the yougest common revision?
[22:07:32] 	YGingras, latest edit overwrites
[22:07:40] 	there is no such thing as merging
[22:08:57] 	14(INVALID) Create whitelist for interwiki transcluding - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11376  +comment (10tstarling)
[22:14:39] 	lch: really?  I did some tests in the sand box and there seems to be merging going on.  I would just like to know what it the limit of the current approach.  Here is what I do: create 2 paragraphs, save; duplicate window and enter edit mode on both; in 1st window, hack 1st para and save; in 2nd window, hack 2nd para and save.  The page head after that has both para modified.
[22:18:22] 	hullo guys :)
[22:24:33] 	i'm having issues working out how to propose and make mergers on my wiki
[22:59:23] 	Hola
[23:00:04] 	alguien sabe como se tiene que hacer para incluir un buscador externo (por ejemplo google) en el software MediaWiki?
[23:01:10] 	o.o
[23:01:24] 	?
[23:01:34] 	spanish?
[23:01:38] 	yes
[23:01:57] 	english channel, I think :P
[23:02:05] 	not per rule.
[23:02:20] 	most people here understand english. not so many spanish.
[23:02:29] 	ok
[23:02:49] 	We need #mediawiki-es :P
[23:02:56] 	I'm going to speak in very bad english
[23:03:13] 	jajaj, yes
[23:04:36] 	You know the process to include one external prospector (for example google) in MediaWiki?
[23:04:59] 	or one web where expline this
[23:05:17] 	explain*
[23:07:17] 	ganon: http://www.mediawiki.org/wiki/Extension:GoogleSiteSearch ?
[23:08:18] 	I'm going to look
[23:08:21] 	thanks
[23:10:18] 	alxndr: Yeah! I think that is this. Thank you very much
[23:10:24] 	no problemo
[23:13:18] 	jajaja, why you say "no problemo"? You know that it's "no problema", yes? Are you imitating a film?
[23:17:37] 	bye ;)
[23:19:45] 	well hey, i learned something new today
[23:23:59] 	03erik * r25948 10/trunk/extensions/Wikidata/ (30 files in 6 dirs): 
[23:23:59] 	- Table renames for consistency:
[23:23:59] 	*_expression_ns->*_expression
[23:23:59] 	*_collection_ns->*_collection
[23:23:59] 	- Dropping some unused columns
[23:24:00] 	- Starting to document schema in SCHEMA and SQL files
[23:24:02] 	- Add ReadPatch.php for reading in patch files for a specific dataset
[23:36:09] 	TimStarling: apparently my WebStore problem is due to curl not including the "content-length" header. did you ever have this problem ?
[23:45:07] 	03erik * r25949 10/trunk/extensions/Wikidata/Database scripts/Incremental/ReadPatch.php: require less crud, add gotcha
[23:47:04] 	when i click on Editing Help
[23:47:15] 	the Help:Editing page is empty?
[23:48:58] 	can anyone help please?
[23:57:13] 	carrera: Try < http://www.mediawiki.org/wiki/Help:Copying >