[00:00:08] Yeah, they're kind of cute. [00:00:20] Not sure how effective they are, though. [00:01:17] just someone's attempt to figure out what works and what doesn't because they said they knew nothing about how to do short urls and thought the page was a mess [00:03:38] getUserPermissionsErrorsInternal kind of scares me [00:06:54] I am having a problem where my new instal of mediawiki is not recognising the png mime type... what should i be looking as to solve this [00:07:02] Simetrical: I run a farm of 3 wikis on a single install. [00:07:41] scenario 3, on that URL you gave. [00:07:50] i chose it because I'm a Drupal dev, and do the same thing in Drupal already ;) [00:08:29] neurotope: there should be some hints for that in the faq, as i recall [00:09:30] Also out of curiosity, is there a way to have MediaWiki allow an administrator to make an edit to a piece of history or remove an existing history item. Like for example, if somebody had a wiki with example pieces of code and the example code included a database connection and the person posting it completely forgot that they put in sensitive information like a username and password to connect to a database [00:10:06] oversight [00:10:31] !mw Extension:Oversight [00:10:31] --mwbot-- http://www.mediawiki.org/wiki/Special:Search?search=Extension%3AOversight&go=Go [00:10:42] Jouva: or [hiderevisions] [00:10:49] see DefaultSettings.php [00:10:58] 'cause oversight is icky [00:11:05] Jouva, you can just delete the page and undelete all but the bad revisions. This will allow anyone with undelete permissions to view the info, however. [00:11:30] Why is oversight icky? [00:11:42] hiderevisions sounds like it hides ALL revisions [00:12:01] requires php modifications, as i recall [00:12:02] 03siebrand * r29873 10/trunk/phase3/ (4 files in 3 dirs): [00:12:02] Localisation updates for core messages from Betawiki [00:12:02] * added Kotava/avk [00:12:10] Jouva: it doesn't [00:12:19] if gives the ability to hiderevisions to a user [00:12:36] MZ: yes but hide them all still, correct? [00:13:07] or specific revisions [00:14:19] 03(mod) Enable new parser on Wikimedia (tracking) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12652 (10tstarling) [00:14:21] 03(mod) Template parameters unavailable to XML-style parser tags - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2257 (10tstarling) [00:14:48] just to make sure im not doing something monumentaly stupid.... [00:15:21] i should but $wgLoadFileinfoExtension = true; into the localsettings.php that is in the base dir of the install??? [00:15:32] but -> put [00:16:48] 03(NEW) Misreaded Translate link in Special:Version on testwiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12658 minor; normal; MediaWiki extensions: Translate; (alefzet) [00:17:59] hi there... [00:19:14] does anybody know if there is a graphical database layout plan? [00:19:56] i mean [00:20:17] like an overview with tables and fields [00:20:36] like a noramly html table or a UML diagram? [00:21:13] or normal html tables that can be sorted? [00:21:26] Asga, Nick Jenkins made one a while ago. You can hunt around for that. [00:21:27] yeah i meant like an UML Diagramm [00:21:39] thanks Simetrical [00:22:29] The article text/data is stored as wikicode isn't it [00:22:32] `+ ? [00:23:23] neurotope have you tried "$wgFileExtensions += array( 'png' );" ? [00:23:30] http://www.mediawiki.org/wiki/Extension:UML [00:23:42] its letting me upload them now, just calling them text [00:24:16] the webserver and my computer can both tell its a png... so i know its internal mime type is fine [00:24:54] but when i do the [[image:thisthing.png]] i get a link every time (even if i do spell it right) [00:26:18] darkcode - is that what you mean? [00:26:22] Does += work with arrays? [00:26:30] in php it does [00:26:31] The general way to do that is $wgFileExtensions []= 'png'; [00:26:48] Typically PHP programmers don't use + for array merges much, that I've noticed. [00:27:04] I wouldn't think about doing that [00:27:11] $wgFileExtensions []= 'png'; is more common anyway [00:27:12] Simetrical: Did you mean this one? http://www.ipbwiki.com/Image:Mediawiki-database-schema.png ? [00:27:17] ya well I used array in case neurotope wants to add other types in the future [00:27:49] Asga, that looks about right. [00:28:02] so it can be += array( 'png', 'blah', 'buz', 'foo', 'etc' ); [00:28:09] so thats why i'm so confused looking at my phpadmin ;) [00:28:51] So thanks :) hope that will help me understanding everything [00:29:15] what i have that is like that is $wgFileExtensions = array('png', 'gif', 'jpg', 'jpeg', 'doc', 'xls', 'mpp', 'pdf'); [00:29:32] and $wgLoadFileinfoExtension = true; [00:29:33] 03brion * r29874 10/trunk/phase3/ (includes/Article.php languages/messages/MessagesEn.php): Slap some prettier warnings on too-big deletions. [00:31:06] darkcode: no it can't [00:31:32] the array + operator doesn't work like array_merge() [00:31:49] I figured there was some reason nobody used it. [00:32:09] Of course any array operation in PHP is going to be a mess, because of the bright idea of having one data type for arrays and dictionaries. [00:32:22] if elements in the first array have the same key as elements in the second array, the elements in the second array are discarded [00:32:23] TimStarling I was being lazy http://www.mediawiki.org/wiki/Manual:%24wgFileExtensions needs fixed [00:32:39] so array(1,2,3) + array(4,5,6) = array(1,2,3) [00:32:57] I use the array + operator whenever this is the behaviour I want [00:33:54] darkcode, fixed. [00:33:59] so anything other than the 2 lines i listed that i should try, to help mediawiki recognize png? [00:35:57] What's the exact error message you're getting? [00:36:06] http://www.mediawiki.org/wiki/Manual:Mime_type_detection [00:36:16] I try and put an image inline and it gives me a link [00:36:33] but if i use the exact same syntax with a jpg it works fine [00:36:50] and if i look at the information on the file page it tells me its a text file [00:37:03] but if i go to view it the browser can tell its a png [00:37:03] Sounds like bad MIME type detection. [00:37:20] neurotope: you may want to check that your server actually /has/ the fileinfo pecl installed. [00:37:24] mine didn't, for example. [00:37:25] I think you can disable MIME type detection entirely. Or you could maybe configure it to use something reliable like file -bi. [00:37:37] Look at darkcode's link, hopefully it will be enlightening. [00:37:37] i ran into the exact same problem you have, only for FLV files. [00:38:06] $wgLoadFileinfoExtension = true; should be loading fileinfo right? [00:38:18] no. [00:38:28] that just tells mediawiki to load fileinfo /early/. it doesn't tell PHP anything. [00:38:38] if PHP isn't compiled with fileinfo PECL module, then that does nothing. [00:40:24] how would i double check that (the hosting company told me they installed it when i requested that) [00:40:39] make a test.php with [00:40:44] view it in your browser and search for fileinfo. [00:40:56] or pecl. should show up under one of them. [00:41:06] 03siebrand * r29875 10/trunk/extensions/ (52 files in 52 dirs): [00:41:06] Localisation updates for extension messages from Betawiki [00:41:06] * added Kotava/avk [00:41:06] * various formatting fixes [00:44:49] 03siebrand * r29876 10/trunk/extensions/ (4 files in 4 dirs): Localisation updates for extension messages from Betawiki [00:54:46] hi [00:55:28] is there a way to restrict which changes are included into the rss-feed of the recent changes? background: i restrict access to pages in a specific namespace to specific users but changes to those pages appear in the rss feed readable for everyone which is not intended. [00:55:45] in a earlier version i patched the code but i would have to do this again after every upgrade [00:55:56] kju, how do you restrict access to the namespace? An extension? [00:56:01] !secrets | kju [00:56:01] --mwbot-- kju: MediaWiki was not designed with read-restrictions in mind, and may not provide air-tight protection against unauthorized access. We will not be held responsible should private information, such as a password or bank details, be leaked, leading to loss of funds or one's job. [00:56:03] Simetrical: yes. [00:56:15] kju, which extension? Maybe best to complain to the extension author. [00:56:27] can a extension modify what is included in the rss? [00:56:37] Probably. If not, a hook could be added. [00:56:51] Lockdown, for instance, is maintained by Duesentrieb, who has commit access and could add any hooks he needed. [00:56:58] it seems the extension i still use is now superseded by another one. [00:57:19] ah, yes that was the recommendation to replace it with lockdown. [00:58:13] but i haven't done it yet. but ok, if the author of lockdown can add such a feature if not already there, i shall probably upgrade to lockdown first. [00:58:18] thanks for the info. [00:58:32] wc [00:58:37] äh [01:06:39] 03tstarling * r29877 10/trunk/extensions/ParserFunctions/ParserFunctions.php: #ifexist: If the "else" parameter is missing, use the "test" parameter instead. This allows error-free text to be passed through with abbreviated syntax. Splarka's suggestion. [01:06:40] tnx and bye [01:10:10] TimStarling: i could say the same for #ifeq. I often find myself wanting to do only {{ #ifeq: test | yes | woot }} [01:10:20] but i'm forced to terminate with an empty | }} [01:11:18] you're a template programmer, Morbus? [01:11:38] i'm a programmer, yes. [01:11:57] whether i'd say i'm anything more than a newb template programmer, i'm not entirely sure. i know i've done a dozen or so for the current site i'mw orking on. [01:12:10] Hey everyone.. I'm trying to figure out what gets called when you submit an edit.. *what class/what hooks are available.. [01:12:34] Wiredtape: there's about 1000 lines for that [01:12:47] TimStarling: why do you ask? [01:12:52] browsed http://www.mediawiki.org/wiki/Manual:Hooks ? [01:12:56] there are hooks in EditPage.php and Article.php [01:13:26] Morbus: there are some people who are very keen about using mediawiki wikitext as a programming language [01:13:31] TimStarling, I'd figured that would probably be the answer.. though isn't there a starting point? for instance.. what's the first function that is called upon submit..? [01:13:39] http://meta.wikimedia.org/wiki/Help:ParserFunctions#.23iferror: updated [01:13:46] I've been trying to identify them [01:13:47] Wiredtape, the first function called upon almost anything is /index.php. [01:13:51] TimStarling: We're everywhere! [01:14:07] TimStarling: oh, sure. i've already heard the "it's a macro language, not a thingy thing". i'm not complaining about its idiosyncracies. I just thought, hey, he's taking suggestions ;) [01:14:20] Wiredtape, you can follow the call chain if you want. There are a few files in between index.php and the place where stuff actually starts happening. [01:15:02] heh, a few [01:15:11] Simetrical, TimStarling, Splarka, thanks [01:15:47] Dashiva: is there somewhere you hang out? [01:16:01] a local mediawiki template programmer's club or something? [01:16:06] Not that I know of [01:16:11] I'd like to see wikitext expanded, possibly have a an mw framework, though is a wikitext language really needed? [01:16:18] I haven't been able to find one either, I wonder why that is [01:16:19] I just notice there are a few fancy black magic templates on every wiki I visit [01:16:33] heh. [01:16:35] right, there's lots of individuals, but maybe no community [01:16:50] i end up having to right the template, then smush it all together with no whitespace, because whitespace issues continue to confound me. [01:16:53] very strange [01:17:10] http://www.videounderbelly.com/w/index.php?title=Template:Death_by&action=edit [01:17:11] for example. [01:17:16] maybe all wikitext programmers are on the autistic spectrum and are incapable of ordinary social relations [01:17:22] Personally I gravitated here, discovered the general feeling about template programming, and decided it wasn't worth pushing [01:17:44] *Splarka resembles that remark [01:17:52] same here. i can do what i want to do, complaints aside. if I can't, well, I'll do an extension. [01:17:55] that's a joke [01:17:55] Morbus, apparently current behavior is that whitespace around named template parameters gets stripped, whitespace around unnamed template parameters does not. [01:17:56] which I have. [01:17:58] \p/ [01:17:58] Which is fairly ludicrous. [01:18:05] I have to say that, don't I [01:18:17] they have trouble detecting humour [01:18:20] TimStarling: Probably [01:18:23] Simetrical: oh, that's interesting. [01:18:28] good thing to keep in the back of mah mind. [01:18:30] *Splarka grins [01:18:43] TimStarling: But most of us know you're really talking about the people with commit access :P [01:18:53] Tim: #iferror rocks my socks, thanks! [01:19:04] I gotta go for a while, bbl, to bug you with parser bugs [01:19:15] bye [01:19:57] So iferror is just ifexist with the 'test' copied into 'then'? [01:20:03] So, if I want to follow the code through to edit/submit, do you think it would be smarter to look at trunk or have there been minimal changes there since 1.11? [01:20:17] um, no [01:20:34] iferror searches its first parameter for text that looks like an error message [01:20:46] aha [01:20:53] or [01:21:29] So instead of checking if media exists, you can call it and replace if it generated an error [01:21:55] it really doesn't have anything to do with existence [01:22:08] But that's the use case I'm building [01:22:59] anyone? [01:23:27] {{#iferror:[[Image]]|No image}} is neater than {{#ifexist:Image|[[Image]]|No image}}, saves repetition. Especially when Image is a complex expression and you don't have VariableFunctions [01:24:02] Dashiva: except that it doesn't work [01:24:19] There's no class error on dead image links? [01:24:21] {{#iferror:[[Image]]|No image}} will always return [[Image]] [01:24:34] because [[Image]] isn't an error [01:25:59] Bah, humbug [01:26:19] And there I saw a way to avoid depending on var [01:26:22] it wouldn't matter if there was a class="error" on dead image links [01:26:38] Dashiva: you saw the documentation on #iferror, right? [01:26:40] because image links are processed in the main pass, and parser functions operate in the preprocessor stage [01:26:59] MZMcBride: I saw the commit comment here [01:27:07] http://meta.wikimedia.org/wiki/ParserFunctions#.23iferror: [01:27:16] best to rtfm before bugging the implementor :) [01:27:48] Wiredtape, there have been some changes since 1.11. Not dramatic overhauls, but looking at trunk would be a good idea. [01:28:27] MZMcBride: You know how fast documentation gets outdated, it's been all of five minutes ;) [01:29:02] TimStarling, you know, your last commit said "#ifexist" in the commit message instead of "#iferror". [01:29:02] heh, true [01:29:24] Simetrical: maybe that explains why Dashiva was confused [01:29:41] At least my initial confusion. :) [01:31:21] On a different note, I notice you put "enable new parser" as a dep on 2257. Do you consider PP_TRANSPARENT a complete fix, or a good enough fix? [01:31:42] there's no PP_TRANSPARENT [01:31:58] the fix for 2257 is {{#tag:...}} [01:32:09] ugh [01:32:16] Dashiva: shh [01:32:44] Simetrical, ok, I'm trying to find the newest rev is it 1.11rc1? [01:32:44] By PP_TRANSPARENT I meant the new setTransparentTagHook, but you already answered that question too [01:32:58] I think setTransparentTagHook() might be broken [01:33:02] Wiredtape, the newest rev is trunk. [01:33:04] not sure [01:33:05] Wiredtape, or rather, HEAD. [01:33:08] but that's post-main-pass [01:33:23] r29877, as of about half an hour ago. [01:33:55] Wiredtape, trunk is synced to Wikimedia once every couple of days or so. We aren't release-oriented, it's continuous-integration. [01:33:57] MZMcBride: What's the hush? Some kind of anti-xml thing? :) [01:34:24] Dashiva: #tag is going to fix a lot of issues [01:35:34] Simetrical, ok, thanks [01:36:20] MZMcBride: Sure, if you like pipe juggling. I'm still hanging out for more [01:37:19] Simterical, so: http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3 is latest? [01:37:30] or atleast latest synced? [01:37:32] Wiredtape: Yes [01:37:38] Not synced (yet) [01:37:55] As Simetrical said, sync doesn't happen immediately [01:38:04] Wiredtape, it's the latest. The latest revision synced can be found on Special:Version at Wikipedia. [01:38:04] Special:Version on a WMF wiki will tell you which version its running [01:38:16] It should be a few hours behind at present, there were a couple of syncs today. [01:38:17] it's * [01:38:35] thank you everyone... [01:40:39] I guess I should ask.. I am planning on creating a way to make an insert into an article without going through the whole edit process.. (of course registering the edit will occur) -> originally I was planning on an extension, would this be something better implemented in the code itself? [01:41:05] can't you just use JS? [01:41:34] MZMcBride, ? - for instance? [01:41:48] well depends what you want to do [01:42:04] but i know that on en.wiki for example, some of the user scripts are lightning fast at prepending text [01:43:46] MZMcBride, I thought about that.. however, it seemed to be too messy... for instance, what if you want to create a template that uses a js requesting input.. and then you want to replace the template variable with the input.. [01:44:29] well before writing anything, i would checkout JS and the current extensions [01:44:33] !extensions [01:44:33] --mwbot-- MediaWiki has been built so it can easily be customized by adding extensions. This is usually a simple process. See for instructions to install extensions, as well as for writing them. See for an overview of known extensions. [01:44:41] the matrix has a pretty good listing [01:44:55] and en.wiki's scripts are mostly here: http://en.wikipedia.org/wiki/WP:US [01:45:31] I took a look at extensions.. nothing like it.. I'll take a look at js... [01:45:47] thanks [01:45:57] no problem [02:03:38] Ugh, why is /usr/bin/find so anal about its arguments? [02:03:51] Or rather, the arguments' order? [02:04:04] Why does it care where paths go? Practically all commands take paths at the end. [02:45:11] Could someone confirm that I may have found a bug in MediaWiki, or, at the very least, Wikipedia's implementation? [02:45:27] http://en.wikipedia.org/wiki/Charles_Bachman#_note-Data_Models:_Data_Structure_Set_versus_Relational [02:45:35] I do not see the References section on the page. [02:45:52] you have to have on the page [02:46:28] where you want the references to be listed [02:46:30] ah, silly me. i knew there was something trivial i didnt know about [03:15:56] Hello, Does anyone know how to put the Featured Article star to the right of the title? [03:16:18] silly, CSS hackery. [03:16:24] Well, it's not fair to call it hackery, really. [03:16:29] It's what CSS is designed to do. [03:23:20] 03tstarling * r29878 10/trunk/phase3/ (includes/Parser.php maintenance/parserTests.txt): (log message trimmed) [03:23:20] * Fixed "Morwen/13" from [03:23:20] http://meta.wikimedia.org/w/index.php?title=Migration_to_the_new_preprocessor&oldid=837845 [03:23:20] . The fix is heuristic, to avoid infinite backtracking or "alternate-reality" [03:23:20] style branching in the preprocessToDom stack. Some edit section links will go [03:23:23] missing despite my best efforts. [03:23:25] * Split the PPD stack out to its own class. Verified with a differential fuzz test. [03:44:30] ok but the hackery should bring in the star only on articles that have that class? isnt this the tough part? [03:45:26] the star is controlled via a template transclusion [03:47:26] Thank you [03:50:07] ok but Im talking about the star at the right hand side of the title on the article page, not the talk page [03:50:30] http://en.wikipedia.org/wiki/Tourette_syndrome [03:51:28] you can see the *#($^%@ star at the far right hand of the title [03:53:14] That's what we're talking about too. [03:53:18] No need to get excited. [03:53:23] It's added by a template, and positioned by CSS. [03:53:45] Question, is this code that creates the star? {{pp-semi|small=yes}} [03:54:20] I was just kidding about *#($^%@ since the article is about tourette syndrome [03:55:13] is the code added directly into the article then? [03:56:51] I think it's {{featured article}}. [03:59:24] Ok, I am asking about this because I want to use a class system on my wiki. I see the stars on Wikipedia articles but not this code anywhere in the page code.. [04:08:04] Ok Ive looked everywhere for how to add the small bronze star on the top right corner of an article's page. The graphic is also a link to the http://en.wikipedia.org/wiki/Wikipedia:Featured_articles page [04:08:48] does anyone know how this is done? Or an article that can tell me how? [04:09:14] silly: copy the code from Template:featured_article [04:09:33] copy the relevant classes from MediaWiki:Monobook.css or MediaWiki:Common.css [04:09:41] and copy the image [04:10:09] then transclude the template on the pages you want to see the star [04:15:54] 03(FIXED) strange text when a REF is in a link - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=5922 +comment (10tstarling) [04:16:05] Thank you for your time. Actually this is over my head. I'll have to learn more about this [04:20:09] 03(mod) Enable new parser on Wikimedia (tracking) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12652 (10tstarling) [04:20:10] 03(mod) References don't hide under wrong #if - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=9083 (10tstarling) [04:20:30] "I'm pretty sure that MySQL is the default, and the preferred, database for MediaWiki." <--- is this a true statement? [04:20:56] yes [04:22:24] 03(mod) Enable new parser on Wikimedia (tracking) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12652 (10N/A) [04:28:04] i'm installing mediawiki, how can i make the namespace Labs: but the title of the window something else? [04:28:41] probably not easily [04:29:10] :z [04:29:23] probably not so difficult with JS [04:32:47] is there a way to use the same user table for all wikis? [04:33:17] chuck: see centralauth, i think [04:33:19] !centralauth [04:33:19] --mwbot-- CentralAuth extension allows global/shared accounts between projects. For more information, see [04:35:23] thanks [04:37:05] do i enable the extension on all wikis that use the central user table? [04:38:25] hmm... can't hurt? [04:38:37] i think so [04:41:47] 03(mod) Implement rev_deleted (deletion of single article revisions) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3576 +comment (10Ryanpostlethwaite) [04:50:02] what the heck? [04:50:08] centralauth is not working at all [04:50:26] and i'm finding that i could have just used sharedDB or something? [04:51:56] !wgDBuser [04:51:56] --mwbot-- I don't know anything about "wgdbuser". [04:52:00] !dbuser [04:52:00] --mwbot-- I don't know anything about "dbuser". [04:54:29] !wg DBuser [04:54:29] --mwbot-- http://www.mediawiki.org/wiki/Manual:%24wgDBuser [04:56:45] 03(mod) Implement rev_deleted (deletion of single article revisions) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3576 (10JSchulz_4587) [05:09:55] 03(NEW) Move some pages from enwikibooks to enwikiversity - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12659 15enhancement; normal; MediaWiki: General/Unknown; (mike.lifeguard) [05:18:08] 03(mod) Implement rev_deleted (deletion of single article revisions) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3576 (10voyagerfan5761) [05:58:57] does anyone know how to convert say a tag image:someimage.jpg into a downloadable url [05:59:37] !externalimages [05:59:37] --mwbot-- To allow images from elsewhere to be included in your wiki, see . To limit this to some specific sources, see . [05:59:50] shit. sorry. [05:59:55] !imagemap | gravisan [05:59:55] --mwbot-- gravisan: ImageMap is an extension that allows you to override the default linking behavior of images. See for more information. [06:00:02] i think that's what you want [06:00:09] cool [06:00:10] thanks =) [06:00:26] i used to have a teacher called ms.mcbride too [06:00:28] haha [06:01:02] haha [06:10:58] TimStarling: What was the benifit example splarka give for the change to #ifexist:? [06:11:51] old requirement: {{#iferror:{{#expr:1+1}}|error|{{#expr:1+1}}}} [06:11:57] new: {{#iferror:{{#expr:1+1}}|error}} [06:12:28] you don't have to duplicate a long messy parserfunction call in order to have the output simply checked for errors, useful if it uses a lot of template parameters, etc [06:13:09] Bleh... TimStarling made a commit message mistake... [06:13:35] Just checked... ya, the change was to #iferror, but he used #ifexist in the comment. [06:13:52] heh [06:14:20] I am still getting those mixed up, I wanted #ifvalid or #try [06:14:22] he's already been chastised for the mistake :p [06:14:26] for example though: [06:14:31] {{#expr:235.214584 / {{{1}}} round {{{2|0}}} }} [06:14:32] at http://en.wikipedia.org/wiki/Template:Auto_mpg [06:14:36] ^_^ Though that does give me an idea for #ifexist:... but unfortunately, now that I think about it, it wouldn't be backwards compatible so It couldn't be added [06:14:43] this is okay to return a error message [06:15:01] but lets get more esoteric [06:15:15] http://en.wikipedia.org/wiki/Template:Coord/link [06:15:27] [06:15:36] dms-lat and dms-long are passed through #expr [06:15:42] bad input causes a in the class="" [06:15:49] ^_^ Splarka, your case is proven simply with the following expression: [06:15:51] this causes various errors [06:16:10] {{#iferror:{{#expr: 1 / {{#rand:0|5}}}}|error}} [06:16:22] heh [06:16:31] well, some might argue [06:16:37] {{#iferror:{{#expr: 1 / {{#rand:0|5}}}}|-0}} [06:16:41] *Splarka hides [06:16:49] or {{#iferror:{{#expr: 1 / {{#rand:0|5}}}}|Error:Requires Chuck Norris}} [06:16:52] negative zero.. you better hide [06:17:05] lol [06:17:07] heh. you just pinged ch-uck [06:17:23] My thought on #ifexist was unfortunately not backwards compatible... [06:17:56] [[{{#ifexist:Image:Wiki_wide.png|Image:Wiki.png}}]] [06:18:13] If Wiki_wide.png existed it would display it, otherwise it would display Wiki.png [06:18:31] But because we allow a blank else, T_T it's not back compat [06:20:16] Meh... one of the benifits of #findexist: if WikiCode ever did get started... (Contrary to the name, programming isn't the game) [06:20:29] *Splarka stabs [06:21:05] Nah, the idea is a set of parserfunctions lighter on the server, and more human readable [06:22:06] {{#findexist:Image:Stub.svg,Image:Stub.png,Image:Stub.jpg,Image:Stub.gif|[[$s$]]}} [06:22:18] Would be roughly equiv to: [06:23:03] {{#ifexist:Image:Stub.svg|[[Image:Stub.svg]]|{{#ifexist:Image:Stub.png|[[Image:Stub.png]]|...More annoying nested code here...}}}} [06:23:26] Except... the latter is harder to read, and far harder on the servers to handle. [06:25:25] I was also thinking of a #splice: function to make it much easier to split up a string list, then format it (ie: Put [[]]'s arround the text) and piece it together... Without complecated syntax [06:32:32] 03tstarling * r29880 10/trunk/extensions/examples/ThreeFileTemplate/MyExtension.php: backslash required [06:49:14] are all of the mediawiki pages stored in the database or as external text files that are referred to from the db? [06:49:26] in the DB [06:49:36] thanks [07:09:14] 14(INVALID) Move some pages from enwikibooks to enwikiversity - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12659 +comment (10jeluf) [07:12:58] JeLuF: http://en.wikibooks.org/wiki/Category:Wikiversity_pages_to_be_imported [07:13:01] i think that's what he was referring to [07:13:19] page history fits [07:15:19] 04(REOPENED) Move some pages from enwikibooks to enwikiversity - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12659 +comment (10jeluf) [07:15:47] silly users [07:17:37] <_wooz> lo [07:22:25] i should probly get back into WP:UNCAT one day [07:23:50] opps wrong channel [07:34:50] 03(mod) Move some pages from enwikibooks to enwikiversity - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12659 (10mike.lifeguard) [07:37:32] 03aaron * r29881 10/trunk/extensions/CheckUser/CheckUser_body.php: Use estimateRowCount() [07:52:37] 03rotem * r29882 10/trunk/phase3/ (2 files in 2 dirs): Update. [08:07:43] Утро доброе [08:13:16] 03siebrand * r29883 10/trunk/phase3/languages/messages/MessagesEn.php: Update recently added messages. [08:22:26] Can someone help me figure out why my wiki is running so slow? [08:34:07] 03siebrand * r29884 10/trunk/extensions/Wikidata/SpecialLanguages.i18n.php: Update a few messages. Less frivolous. [08:35:16] hi, i've installed mediawiki 1.11.0. the config can not find eAccelerator but I see in its logfile that it is working (eAccelerator.debug=1). I can also see it whith phpinfo() or php -v. Don someone knows why the config script doesn't find it? [08:42:22] Hi guys, I've changed the logo, but it doesn't show in my browser. I've hard refresed, logoline: $wgLogo = "/var/www/htdocs/wiki/images/ttlogo.gif"; permisions: -rw-r--r-- 1 apache apache [08:42:31] Oh, I've also restated apache [08:42:35] Any ideas? [08:45:44] hello ppl :) [08:46:16] one of the people that contributes to my wiki says that she gets logged out automatically after a while, and hence- loses posts. Anyone know the reason for this? [08:46:21] 03(NEW) Users who request accounts are sent an administrator' s IP address by e-mail - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12660 15enhancement; normal; MediaWiki: User login/settings; (matthew.britton) [08:52:36] anyone? [08:55:59] 03(mod) Misreaded Translate link in Special:Version on testwiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12658 +comment (10matthew.britton) [08:56:48] appelza: you 've probably already done but, did you clear your browser cache? [08:57:02] yesp [08:57:03] tep [08:57:05] yes :P [08:57:21] and I've looked at error_log and access_log, and I see get requests to the image and no erros [08:57:25] but the image doesnt show [08:57:38] I've tried jpg and gif images just as a test, neither work [08:58:03] does mediawiki itself change php session timeout values, or if I change the session timeouts/garbage collecting in php.ini will that enable users to remain logged in even if they're inactive? [08:58:12] are you shure your browser receive the correct skin? if not default maybe the picture-path is not used from var [08:58:37] 03tstarling * r29885 10/trunk/ (4 files in 2 dirs): Added ParserFirstCallInit hook. Deferred function registration in ParserFunctions until this hook is called. [08:59:26] 03(mod) Users who request accounts are sent an administrator' s IP address by e-mail - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12660 (10francine) [08:59:39] Kako: I'm gonna test by overwriting the default logo and commenting out the $wgLogo line I added [09:00:26] 03(mod) Users who request accounts are sent an administrator' s IP address by e-mail - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12660 (10francine) [09:01:25] 03tstarling * r29886 10/trunk/extensions/ParserDiffTest/ (4 files): Special page for comparing the output of two different parsers. [09:01:35] (again) hi, i've installed mediawiki 1.11.0. the config can not find eAccelerator but I see in its logfile that it is working (eAccelerator.debug=1). I can also see it whith phpinfo() or php -v. Don someone knows why the config script doesn't find it? [09:03:33] 03(mod) Users who request accounts are sent an administrator' s IP address by e-mail - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12660 (10matthew.britton) [09:05:47] Whats the syntax for linking to internal pages? Ie. Do I have to do [http://localhost/wiki/PageName|PageName] or is there another way [09:06:40] [http://google.com/ Google] [09:06:43] you have to have a space [09:07:03] I mean for internal links [09:07:09] not external like google.com [09:07:11] double brackets [09:07:41] [[Page name|display name]] [09:07:55] http://www.mediawiki.org/wiki/Help:Link [09:08:22] http://en.wikipedia.org/wiki/Wikipedia:Cheatsheet [09:08:55] tnx [09:09:03] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12639 +comment (10huji.huji) [09:18:35] 03(NEW) Wikipedia: namespace alias for sv.wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12661 15enhancement; normal; Wikimedia: Site requests; (mickewiki) [09:26:15] how can I change: http://192.168.229.217/wiki/index.php/Main_Page into http://192.168.229.217/wiki/Main_Page [09:26:54] hi [09:27:18] after upgrade vom 1.10 to 1.11 the rss feed of the recent changes is prepended by a empty line which causes some feed readers to be unable to parse the file. is this a known bug? [09:27:55] appelza: Move your files from wiki to w, then add RewriteRule wiki$ wiki/ and RewriteRule wiki/(.*) w/index.php/$1 [L,QSA] [09:28:45] add to .htaccess inside ./wiki root dir ? [09:29:23] Inside the parent directory of wiki (and w) [09:30:57] cool, will do [09:31:17] I'm going by memory so it might not be perfect, but it shows the general idea at least [09:45:13] 03(NEW) incorrect placement of links for editing (Opera 9.25) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12662 trivial; normal; MediaWiki: General/Unknown; () [09:52:49] is there a way to make the `searchindex` table get updated on every edit? [09:55:13] 03(mod) Wikipedia: namespace alias for sv.wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12661 (10mickewiki) [10:11:41] 03siebrand * r29887 10/trunk/phase3/languages/messages/ (18 files): Localisation updates for core messages from Betawiki (2008-01-17 09:50 CET) [10:26:13] 03(mod) Thumbnails don't work - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2848 +comment (10konrad.pfleiderer) [10:28:15] 03dale * r29889 10/trunk/extensions/MetavidWiki/ (12 files in 6 dirs): removed FULL TEXT index in `mv_mvd_index` table in favor of unification of media search with `searchindex` table (be sure to run maintance/mv_update.php to upgrade db schema) [10:46:18] 03(NEW) ImageMagick in SafeMode - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12663 15enhancement; normal; MediaWiki: Images; (konrad.pfleiderer) [11:10:02] 03(mod) incorrect placement of links for editing (Opera 9.25) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12662 (10lucanemo) [12:29:51] is there a way to get the (full) list of templates used by a given page/template ? [12:30:42] Edit the pagE? [12:30:55] recent versions of mediawiki show list of used templates on edit preview [12:33:19] 03(mod) ‎ and left-to-right marker disappear when translations are exported - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12562 +comment (10niklas.laxstrom) [12:33:22] 03(mod) CreateMessageIndex.php throws an error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12565 +comment (10niklas.laxstrom) [12:33:23] 03(mod) Misreaded Translate link in Special:Version on testwiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12658 (10siebrand) [12:33:23] 03(FIXED) Misreaded Translate link in Special:Version on testwiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12658 +comment (10siebrand) [13:05:13] i'd like to turn on transliteration mode, like serbian wikipedia has for tajik wikipedia -- i was pointed to this channel by #wikimedia-tech -- i have a transliteration table, who do i need to talk to in order to get it implemented? (thanks in advance) :) [13:24:39] 03(NEW) Image: pages have poor usability - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12664 15enhancement; normal; MediaWiki: User interface; (alan) [13:41:10] avar: do you know if there is a mediawiki file that sets the link for the built-in magic word "PMID"? see http://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_Medicine#PMID [13:44:16] StevenFruitsmaak: Aye [13:44:33] http://en.wikipedia.org/wiki/MediaWiki:Pubmedurl [13:57:35] 03(mod) Render onsite URLs written in external link form like internal links - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11124 +comment (10tstarling) [13:59:01] TimStarling: do you know were the Mediawiki page is that takes care of the "PMID" built-in magic word in Wikipedia? see http://en.wikipedia.org/wiki/Wikipedia_talk:MED#PMID [13:59:45] StevenFruitsmaak: I already told you [14:00:05] yeah but I fell of IRC when my pc crashed [14:00:18] Dashiva: could you repeat your answer please? [14:00:28] http://en.wikipedia.org/wiki/MediaWiki:Pubmedurl [14:01:12] thank you Dashiva ! [14:01:53] I'm also surprised an article about diseases of unknown etiology can mention the word about 20 times and not link it a single time :) [14:05:31] which disease? [14:06:55] The article mentioned above on the talk page, http://en.wikipedia.org/wiki/Inflammatory_diseases_of_unknown_etiology [14:07:22] :) [14:10:29] i'm looking for an example on how to use api.php with json and javascript [14:17:07] Hello, is anyone available for a question? [14:19:29] I have set up my own wiki and am new, I don't understand how to use a template. [14:23:19] !templates | Kittyums [14:23:19] --mwbot-- Kittyums: For more information about templates, see . The most common issues with templates copied from Wikipedia can be fixed by installing ParserFunctions and HTML Tidy. [14:26:58] 03(mod) Render onsite URLs written in external link form like internal links - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11124 (10danny_b) [14:26:59] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id= (10gangleri) [14:27:14] o_o [14:30:41] ganglieri needs to stop breaking the bot :) [14:36:30] 03(NEW) Change import sources for enwikibooks - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12665 15enhancement; normal; MediaWiki: General/Unknown; (mike.lifeguard) [14:40:38] as rename in a navigation Community portal [14:40:44] ?????? [15:02:01] 03(NEW) Change $wgNamespacesToBeSearchedDefault on enwikibooks - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12666 15enhancement; normal; MediaWiki: General/Unknown; (mike.lifeguard) [15:06:05] 03(mod) Provide some method to blank messages like MediaWiki:Excontent - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12647 (10mike.lifeguard) [15:07:08] 03(mod) Change $wgNamespacesToBeSearchedDefault on enwikibooks - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12666 (10mike.lifeguard) [15:18:18] 03(NEW) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 15enhancement; normal; MediaWiki: Special pages; (AlexSm) [15:23:35] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10axel9891) [15:27:52] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 (10AlexSm) [15:31:27] *AlexSm wish the devs would put a short help page on markup supported by bugzilla [15:32:08] like this: http://www.bugzilla.org/docs/3.0/html/hintsandtips.html [15:38:58] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 (10axel9891) [15:42:46] does anyone know how to disable php session timeouts (I assume this is why sometimes I need to re-login to edit a page, and I lose the edit)? [15:43:48] Anyone available for a minor, probably stare you in the face obvious, question? :) [15:44:51] If I want to center align all of the info in this table, what's the code I would add, and where? http://superpowerclassic.wikia.com/wiki/Best_Arms_Market [15:46:27] ;) [15:49:30] 03(NEW) Wiki on iPhone - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12668 15enhancement; normal; Wikimedia: Site requests; (mczeke) [15:49:34] Grey-man, center align table ? [15:49:59] That's what I thought too...though, it didn't work when I tried [15:50:14] I might have had it in the wrong place [15:50:40] maybe an extra | somewhere :P [15:50:48] heh, ya [15:51:14] Grey-man: add this into style: text-align:center [15:51:55] ah, excellent...thanks AlexSm [16:02:52] Hey all.. is there a way to get via php the parent article no matter what subpage you are on? [16:04:44] for instance: I am on Bla/bla1/bla2/bla3, and I want a way to know that I am on "Bla"; or I am on Foo/bla1/bla2 and I want to know I am on "Foo"; [16:04:55] 03(mod) Wiki on iPhone - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12668 +shell (10vasilvv) [16:10:03] Wiredtape, there should be an Article or Title method, like getBasePageName() or something. Look through Title.php and Article.php and see if you can find it. [16:12:08] Wiredtape: do you want the next level of article that exists, or just the article with the last /Whatever stripped off? [16:12:28] first level.. [16:12:52] Simetrical, thanks. [16:14:06] so, what's the base name of [[TCP/IP]] or [[RSTS/E]]? :) [16:15:02] flyingparchment, the appropriate method should be smart enough to handle namespaces with subpages disabled properly, I hope. [16:15:40] *VasilievVV reads russian wikibooks about PH [16:15:42] *PHP [16:16:05] Looks like a book about PHP4 with regster_globals enabled [16:16:23] flyingparchment, that's a good question.. I have no idea :) [16:16:32] Simetrical-> title.php -> getBaseText()? [16:16:37] Wiredtape, probably. [16:16:44] Read the method documentation. [16:16:52] Or the method itself, if it's not documented adequately. [16:16:57] there's documentation? [16:17:10] :) [16:17:43] Most functions have comments before them in the code documenting their parameters, return values, and other effects. [16:17:45] Or at least, many do. [16:17:58] flyingparchment, to answer your question.. the method searches to see if an article like TCP/IP has additional subpages.. if it doesn't it is considered a base page... [16:18:54] Simetrical, so how would I call this? $wgTitle->getBaseText()? [16:19:05] Wiredtape: you mean it checks for [[TCP/IP/Anything]]? [16:19:12] or [[TCP/Anything other than IP]]? [16:19:28] Wiredtape, if the Title you want to get the base text of is $wgTitle, yes. Be sure to declare it as global first, of course. [16:20:07] flyingparchment, if( isset( $wgNamespacesWithSubpages[ $this->mNamespace ] ) && $wgNamespacesWithSubpages[ $this->mNamespace ] ) { ... } else { return $this->getText() } [16:20:12] it basically takes a string such as: bla/bla1/bla2 and explodes it into: bla, bla1, bla2.. if bla has a subpage called bla1.. it is a basepage.. [16:20:24] hi.. [16:20:27] if bla has no subpage then it's name is bla/bla1 [16:20:31] or base is.. [16:20:32] Wiredtape, yes, but only if subpages are enabled for that namespace. [16:20:32] adasdasdasasd [16:20:32] Simetrical: i know about namespacewithsubpages, that's not what i'm talking about [16:20:33] asdasdasdasd [16:20:33] asdas [16:20:34] dasd [16:20:34] asdas [16:20:34] das [16:20:35] dasd [16:20:37] asdas [16:20:38] true.. [16:20:39] dasd [16:20:58] 03(mod) Image: pages have poor usability - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12664 (10danny_b) [16:21:04] flyingparchment, you were asking about the behavior of Title::getBaseText(), yes? [16:21:09] flyingparchment, it would be probably good to unban him [16:21:13] in php: $parts = explode( '/', $this->getText() ); [16:21:22] Simetrical: yes. specifically, the case when subpages are enabled and a real page title has a slash in [16:21:29] flyingparchment, that should be impossible. [16:21:40] If subpages are enabled, titles can't legitimately have slashes in them, AFAIK. [16:21:50] Or rather if they do, they're interpreted as subpages. [16:22:06] when you say subpages enabled you mean localsettings.php? [16:22:19] The next time TCP/IP would be displayed after subpages were enabled, it would have a breadcrumb trail at the top to [[IP]]. [16:22:30] Wiredtape, yes, $wgNamespacesWithSubpages can be configured in LocalSettings. [16:22:50] obviously if you do it like this method does.. you could still figure it out with subpages enabled.. [16:23:04] with one exception.. [16:23:13] if that page that has a "/" has a subpage.. [16:24:26] Hmm, I just realized Renameuser doesn't respect $wgNamespacesWithSubpages when you move the user page and all subpages. [16:24:36] Oh well, we don't allow '/' in usernames regardless, I don't think. [16:24:53] Simetrical: yes, that was the point i was trying to make [16:24:59] enhydra: why? [16:25:44] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10danny_b) [16:26:13] is anyone familiar with quickedit (user script?) [16:26:40] I'm not. [16:26:53] flyingparchment, just because of freenode philosophies :) it's recommended to apply bans only when nothing other helps (and user might ask a question here, for example) [16:27:18] I suspect that most of the entries in current banlist are inactual [16:27:42] it's snowing like crazy outside :P [16:28:09] 03(mod) Wiki on iPhone - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12668 (10danny_b) [16:29:51] 14(DUP) incorrect placement of links for editing (Opera 9.25) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12662 +comment (10danny_b) [16:29:55] 03(mod) Section edit links showing up in wrong place - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=1629 +comment (10danny_b) [16:30:55] So supposedly, if I wanted to keep showing the base name for a page no matter what subpage I am on.. I could switch the main header title to call $wgTitle->getBaseText() and display that instead of data['displaytitle']!=""?$this->html('title'):$this->text('title') ?> or would this cause some problems? [16:31:25] Wiredtape: but all higher level pages in a subpage hierarchy are already shown when viewing a subpage [16:32:00] flyingparchment, right, but I want to show only the base... [16:32:46] wait, you want to display the base name as the page title? (why?) [16:32:49] or rather, I am creating a way to translate my titles (with subpages) into something more meaningfull [16:33:03] in my wiki.. i have subpages to resemble locales [16:33:33] for instance: if you are interested in opening an llc in california, usa then the title would be: Limited_Liability_Company/US/MD/ [16:33:45] that looks ugly and doesn't mean a whole lot to people [16:34:55] now, I don't need to change the actual "location" but I can change the title.. to maintain Limited Liability Company, and then I could have an additional commenting that it is now talking about in [16:34:59] make sense? [16:35:01] you might consider changing {{DISPLAYTITLE}} to allow changing to substrings of the name [16:36:41] I was looking at {{DISPLAYTITLE}} yesterday, I wasn't sure which way to go.. there's a parser function that let's you change the title alltogether.. however, it only works when you view a page with action=purge [16:37:05] is {{DISPLAYTITLE}} in magicwords class? [16:50:13] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10kalan.001) [16:50:15] 03(mod) enumerated Property:Page only works for first allows_value - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11820 +comment (10yaron57) [16:50:15] 04(REOPENED) Re-enable upload on Incubator - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12642 +comment (10robin_1273) [16:50:20] 03(mod) Create new prefix WP: for Polish Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12515 summary (10juliusz.zielinski) [17:00:26] 03(NEW) CheckUser log URLs depends on user language preference - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12669 15enhancement; normal; MediaWiki extensions: CheckUser; (lejonel) [17:14:49] hi [17:31:04] Is there a eggdrop script for showing/listing recent changes in an IRC room? [17:31:46] does it have to be eggdrop? mediawiki already supports that itself [17:32:26] oh [17:32:34] I wasn't aware that it did [17:32:45] Can you point me to the docs for that? [17:34:49] http://www.mediawiki.org/wiki/Manual:Configuration_settings#UDP_updates [17:35:00] Thanks much [17:42:33] I wonder if I can use epic instead of ircII [17:58:48] 03siebrand * r29898 10/trunk/phase3/languages/messages/MessagesTe.php: Localisation updates. Output of import from te.wikipedia. [18:04:44] erm, why does Article::getDB() return the master ? [18:05:25] ialex: because it's used to write to the database [18:05:29] i guess [18:05:45] VasilievVV: the comment is "Get the database which should be used for reads" [18:06:30] {{sofixit}} [18:19:21] ialex doesn't have commit access, I don't think. [18:19:34] Simetrical: bugzilla is public :) [18:19:53] That's not {{sofixit}}, that's {{soreportit}}. Which he just did, on IRC. :P [18:20:47] Simetrical: maye it would be better to use directly wfGetDB instead of $this->GetDB [18:20:55] Maybe. I dunno. [18:21:30] 03(WONTFIX) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10danny_b) [18:23:48] Danny_B: the way you closed 12667 suggests that maybe you misunderstood [18:24:21] it is unfortunate that other users were talking about content (istead of using older bug), but this request was only about a list [18:24:42] was it? [18:25:03] 2nd line: > Just the list, not the actual content (which was requested in [18:25:03] [[bugzilla:12524]]) [18:25:22] It used to be that anyone could see lists of deleted contribs. [18:25:36] That was disabled when people started leaving libel, etc. in edit summaries. [18:26:02] leaving libel? [18:26:06] And so on, yeah. [18:26:10] Private information, whatever. [18:26:19] Legally problematic stuff, which sysops couldn't remove. [18:26:28] well sorry then, nothing easier than to reopen with more detailed description. however i still think not even the list should be available [18:26:51] i see not reason to not allow a user to see something he wrote himself [18:27:38] flyingparchment, users generally don't write whole revisions. Allowing that would allow users to read the entire revision even if parts not by them were deleted for good reason. [18:27:49] eg. summaries can contain personal data or offences [18:27:55] Furthermore, I could then upload a copyrighted work and be able to retrieve it for personal use from Wikipedia indefinitely. [18:27:56] Simetrical: no, since the bug is only about showing the contributions list [18:28:01] Oh, that. [18:28:16] In terms of the edit summaries. [18:28:20] Yeah, I guess there's not much problem. [18:28:36] what would the list be for if you can't see the content? [18:28:53] Danny_B: so you know what you've edited? [18:29:02] To verify that your contribution was actually deleted, and that you weren't hallucinating when you thought you edited the page. [18:29:20] correct, the purpose was stated in the 1st post [18:29:23] flyingparchment: i actually do, but i'm ufo [18:29:39] really? i don't remember what i edited in 2005 [18:29:46] ok, i'll reopen it [18:31:28] What happens when there is a request to remove infringing content? How do you remove content from "history" ...etc. [18:32:10] Wiredtape: for minor cases, it's just reverted. otherwise it's possible to delete the article and undeleted selected revisions [18:32:15] (which can be used to remove the cv) [18:32:18] *brion-coffee pirates harry potter one edit summary at a time [18:32:18] 04(REOPENED) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10danny_b) [18:33:40] not sure what "undeleted selected revisions" means... [18:34:32] Wiredtape: you delete entire article and then undelete only such revisions of it [18:34:41] ahh... [18:34:43] thus "bad" revisions keep deleted [18:34:48] s/keep/stay [18:35:03] thx [18:40:08] 03nikerabbit * r29899 10/trunk/extensions/I18nTags/I18nTags.php: * Use hook if available [18:41:12] 03shinjiman * r29900 10/trunk/phase3/languages/messages/ (4 files): [18:41:12] * Update Chinese translations [18:41:12] * Update Cantonese translations [18:41:12] * Update Old Chinese / Late Time Chinese translations [18:43:02] ah. I transferred a wiki from one server to another. All works fine, except for the (uploaded) images... the images are in the wiki/images directory, I can access them directly through the webserver, but not on my wikipages... where should I start looking? [18:46:55] Duesentrieb around? [18:50:20] instead of showing the picture, it shows: picture:xxxx.gif as text, I can click it and it tells me I can upload a new picture... [19:00:22] can be used? [19:00:45] csarven, no. [19:01:47] im running into a lot of shortcomings when trying to mix mediawiki and microformats [19:02:19] mediawiki entries that is [19:04:17] when reuploading the images, it creates a images/1/1a directory. is this normal? [19:04:31] jelle__, yes. [19:04:39] is it new? [19:04:45] New as in how new? [19:04:59] jelle__: it's normal and very old :) [19:05:00] well, the dump of the old wiki i had, didn't have that [19:05:09] it's possible though that your old wiki was configured to disable that [19:05:09] I'll look again... [19:05:15] ah. [19:05:34] can I disable it in the new wiki was well? [19:05:46] $wgHashedUploadDirectory = true; [19:05:52] set that to false in your LocalSettings.php [19:09:16] right. that helps. [19:09:36] can i also enable all the pictures in the wikitexts again, without reuploading the pictures? [19:09:47] they are in the /images directory already [19:20:21] brion: that was a good tip, but the pictures are still not shoing in the pages, unless I upload such picture again. I can see nothing special about the uploading, since the pictures are already in that directory. any clues on that? [19:22:27] could there be a problem with a language difference, maybe the picture is there but the page that should include the picture ("Afbeelding:Bd001.jpg") is not? [19:24:58] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 (10axel9891) [19:26:44] brion: I wonder if the delete limit can be upped a little. [19:26:58] heh, all the more reason for revisiondelete :) [/plug] [19:28:51] jelle__: cached pages. [19:29:04] I did purge... [19:29:06] or otherwise double-check your output and confirm that re-rendering helps. [19:31:39] ouch. losing me there. how do I confirm that rerendering helps? [19:31:47] (i just truncated the objectcache) [19:32:34] no changes. [19:33:12] strange: the imagelinks tables is filled, the image table is empty [19:33:44] 03(NEW) Set favicon for Test Wiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12670 15enhancement; normal; Wikimedia: Site requests; (danny_b) [19:36:06] hey everybody - I'm trying to get 1.12alpha r29886 running on my dedicated server and I am running into issues, namely a 500 error when I browse to the wiki URL. Can anybody help me troubleshoot? [19:38:03] The error logs don't help much: Thu Jan 17 13:37:03 2008] [error] [client xxx.xxx.xxx.xxx] Premature end of script headers: /home/xxx/public_html/wiki/index.php [19:38:58] What bersion of php / mysql are you running? [19:39:11] s/bersion/version [19:41:00] PHP 5.2.4 [19:41:15] mysql 5.0.27-standard-log [19:41:27] Okay [19:41:40] Have you run the config/index.php script? [19:41:48] AphelionZ: premature end of script headers usually means PHP crashed [19:41:51] that's.... bad :D [19:41:58] brion: oh my [19:42:13] is there anything I can do? I have full root access to the server so.. [19:42:18] and I NEED the API for this project [19:42:22] need need need [19:43:27] amidaniel: config/index.php causes the 500 error as well [19:43:55] Ah, okay. So have you been able to get any php to work on this server? [19:44:19] E.g., will a simple work? [19:44:47] 03(mod) ‎ and left-to-right marker disappear when translations are exported - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12562 (10huji.huji) [19:45:00] yeah, version 1.11 works fine [19:45:03] which sucks :( [19:45:22] Hmm .. and it's still working fine right now? [19:45:35] Have you restarted apache since the first crash? [19:46:00] havent restarted. [19:46:07] see? http://wikibondev.org/mediawiki-1.11.0/ vs http://wikibondev.org/wiki/ [19:46:11] the latter is 1.12 [19:47:29] brion: what kind of funky cutting edge PHP have you guys written?? WHAT HAVE YOU DONE??? [19:48:18] wikipedia is running the same revision successfully so i know it's gotta be me / my server [19:49:25] AphelionZ: Can you provide a link to a phpinfo? [19:49:34] absolutely [19:49:53] http://wikibondev.org/phpinfo.php [19:51:27] and I downloaded it via 'svn checkout http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3 wiki' and then I ran 'svn up -r29886' [19:51:54] hmm... [19:51:55] 03(mod) Wiki on iPhone - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12668 -shell ; +comment (10jeluf) [19:51:58] nothing too wild and crazy i imagine [19:52:14] Hey, svn up works with non-HEAD revisions. I should have thought of that. [19:52:44] Well, HEAD is working just fine for me [19:53:22] I don't see anything in your phpinfo that really stands out [19:54:32] yeah, i dont really know where else to look :( :( [19:54:38] I suppose I'll try #apache [19:54:43] and then maybe ##php [19:54:43] Is it possible svn may have botched up the files? I've had that happen to me a few times [19:54:54] amidaniel: it's possible, i suppose [19:55:11] is there any way to prevent that? maybe i should try deleting the files and re checking them out a few times? [19:55:17] Can't hurt [19:56:09] brion, simetrical: can you guys confirm that http://svn.wikimedia.org/svnroot/mediawiki/trunk/phase3 is the right svn address for the 1.12alpha [19:56:19] Yes, it is. [19:56:22] thanks [19:56:25] *amidaniel can confirm that, even though he wasn't asked :( [19:56:38] amidaniel: sorry! are you a dev? [19:56:49] yah [19:56:57] cool, nice to meet you [19:56:59] and great work :) [19:57:10] Very little of it's mine, but thanks :) [19:57:48] blah, same error [19:58:01] Hmm [19:58:27] Can you open up index.php with vim or less and make sure it looks alright? [19:58:31] I.e., has an EOF, etc. [19:58:59] looks fine [19:59:20] Huh, well, I've no idea then :) [19:59:23] there's also these .php and .php5 files [19:59:29] Yeah, that's normal [19:59:34] They were in the 1.11 rel. too [19:59:43] k [20:00:27] http://rafb.net/p/GllLso45.html [20:00:29] that's my index [20:00:36] looks perfectly fine to me :( [20:00:48] Yeah, looks fine [20:00:52] n8 [20:01:02] Are all the files in the directory readable by the webserver? [20:01:11] (Shouldn't produce a 500 if they aren't, but who knows) [20:03:03] index.php is 644 [20:03:15] I assume the rest are as well.. is there a command to list all the permissions [20:03:27] Yeah, ls -la [20:03:38] Or ls -Rla to see all the files in subdirectories too [20:04:38] yeah, r's all across the board [20:04:42] find -perm o-r will work nicely. [20:05:04] oh! and also if i run php index.php from the command prompt it works [20:05:16] Simetrical: indeed it will :) [20:05:33] Hmm [20:05:41] Could be a mod_php problem? [20:06:17] Should affect the 1.11 install too though, methinks [20:09:27] Who knows. [20:10:06] how come all the other channels can't be as helpful as you guys [20:10:18] Because we rule [20:10:19] :) [20:12:19] 03siebrand * r29901 10/trunk/extensions/ (4 files in 3 dirs): [20:12:19] * change ParserDiffTest.i18n.php format [20:12:19] * add ParserDiffTest support to translate and add to WMF extensions group [20:12:19] * add zea to LocalNamesEn.php in cldr [20:12:48] 03(mod) Wiki on iPhone - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12668 (10mczeke) [20:12:50] 03siebrand * r29902 10/trunk/extensions/ParserDiffTest/ParserDiffTest.i18n.php: Fix syntax error [20:14:34] 03siebrand * r29903 10/trunk/extensions/cldr/LocalNamesEn.php: Typo monster in da house. [20:16:53] siiiigh... [20:16:57] 03(FIXED) Change import sources for enwikibooks - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12665 +comment (10jeluf) [20:17:11] Simetrical, can you tell me how to debug/troubleshoot the possible mod_php problem? [20:17:14] is there a log somewhere? [20:17:22] Other than the PHP error log? [20:17:29] amidaniel, im sure you know the answer too :) [20:18:07] hehe :) [20:18:27] hmmmmm apparently i have more than one php.ini file [20:18:29] excellent.. [20:18:34] could be part of the problem [20:20:04] AphelionZ, phpinfo() should tell you which is the one being used. [20:20:43] /etc/php5/apache2/php.ini [20:21:16] /usr/local/Zend/etc51/php.ini ! [20:21:19] apparently. [20:21:37] AphelionZ: No, that's not it [20:21:37] right? [20:21:48] According to your phpinfo, at least, it's the other one [20:21:55] http://wikibondev.org/phpinfo.php [20:22:04] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 +comment (10huji.huji) [20:22:07] im looking sixth thing down [20:23:35] am I looking at the wrong thing? are we looking at the same thing? [20:26:22] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 (10axel9891) [20:27:15] Ohhh ... lol. I had multiple phpinfos open and was looking at the wrong one :D [20:27:18] SOrry [20:27:27] Yes, you're right [20:41:17] something is amiss, i can't get it to log errors either [20:52:38] AphelionZ: Have you set error_reporting = E_ALL; in your php.ini ? [20:53:14] E_All & ~E_NOTICE [20:55:19] oh ok it's working now [20:55:27] Hello [20:55:39] but http://wikibond.org/wiki/ still doesn't produce any errors in the php log [20:55:45] I want to make a php project in something similar to media wiki? [20:56:26] flyingparchment or ialex: do either of you have any experience with the UDP updates -> IRC? [20:56:55] Kyrin: no [20:57:45] k [20:57:56] just 'cause it seems to stop working after like 5 mins or so [20:58:39] I'll try it with the actual perl script, I was using the quick and easy netcat method [20:58:57] But [20:59:00] I need help [20:59:29] I want to use wikipedia as an developing platform in php, ho has allready done this? [21:00:04] mediawiki is written in php [21:00:56] Yes [21:01:08] hey check this out [21:01:09] But I want to use mediawiki as launchpad [21:01:20] without the crappy software [21:02:08] MediaWiki *is* the software. You want to use MediaWiki, without MediaWiki? [21:02:17] when i run php index.php from the command line it works fine, right? but when i run php public_html/wiki/index.php from a few directories away i get these errors [21:02:31] Fatal error: require_once(): Failed opening required './includes/WebStart.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/wikibond/public_html/wiki/index.php on line 38 [21:03:03] also, some guy in #apache says.. AphelionZ, premature end of script headers means that apache didn't get a Content-Type: \n\n from your CGI script. [21:03:18] o_O [21:03:21] cgi script? [21:03:30] yeah well everything is a cgi script to those guys [21:03:34] No, I want launchpads features without any localhost software [21:03:54] but I'm really more interested in that Fatal PHP error [21:04:30] AphelionZ: try to use chdir() and set it to the directory of index.php [21:04:45] ialex: hmm ok! [21:04:59] 03(FIXED) Move some pages from enwikibooks to enwikiversity - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12659 +comment (10jeluf) [21:05:01] 03(mod) User should be able to see the list of his deleted contributions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12667 (10AlexSm) [21:05:05] like chdir( '/home/wikibond/public_html/wiki' ); [21:05:26] just before including index.php [21:06:31] ialex: great idea [21:06:33] but.. [21:06:35] no dice :( [21:07:06] 03siebrand * r29904 10/trunk/phase3/languages/messages/ (23 files): Localisation updates for core messages from Betawiki (2008-01-17 22:50 CET) [21:07:36] actually I just typed echo "test"; die(); right at the beginning of index.php and it crashed [21:07:40] Hi, I use MediaWiki with lots of math in articles and it has started to get very slow... Is there any way to speed up things? [21:08:13] JoKo, I doubt the math is the reason. [21:08:14] is there supposed to be a .htaccess file for 1.12? [21:08:31] AphelionZ: the index.php of MediaWiki ? [21:08:35] JoKo: have you imported a lot of articles lately? [21:08:38] ialex: yeah! [21:08:56] have you been following our discussion? I'm trying to figure out why 1.11 works and 1.12 causes a 500 error [21:09:01] http://wikibondev.org/wiki/ [21:09:03] carl-m: no, instead of that, I've created a lot of articles... [21:09:11] vs http://wikibondev.org/mediawiki-1.11.0/ [21:09:23] you may want to check that your job queue is not too long. you can run it from the maintenance directory [21:09:30] AphelionZ: this seems to be an error in .htaccess [21:09:40] if the job queue is not long, then the math is probably not the issue [21:09:52] i dont have an htaccess :( [21:09:54] carl-m: how to check the job queue? [21:09:56] this could be the problem! [21:10:05] JoKo, special:statistics [21:10:24] 03siebrand * r29905 10/trunk/extensions/ (39 files in 37 dirs): Localisation updates for extension messages from Betawiki (2008-01-17 22:50 CET) [21:10:26] but my 1.11 install doesnt have one either from what I can tell [21:10:26] The job queue length is currently 202,050. on English Wikipedia [21:10:28] hi all, I've modified a local MediaWiki:Common.css, how can I tell Wikimedia to purge the cache for all users ? [21:11:07] AphelionZ: or you modified httpd.conf ? [21:11:49] i barely even know where httpd.conf is [21:11:57] AphelionZ: have you access to the error_log ? [21:12:19] my php error log doesnt say anything, and im getting a premature end of script headers in my apache log [21:12:45] this seems to be an apache problem, not a php problem [21:13:15] carl-m, I use the greek language in my wiki and there isn't anything like job queue... [21:14:22] JoKo: just execute 'php runJobs.php' in the maintenance directory. that will empty the job queue [21:14:42] ialex: i know but #apache hasnt been very helpful, not nearly as helpful as this room has been and i feel like i'm so close to getting it to work [21:15:23] this is only relationship between math and slow running I am aware of. otherwise, the slowness is for some other reason [21:15:43] carl-m: I did it, but there was no output, maybe there aren't any jobs? [21:15:44] AphelionZ: you are sure you haven't any .htaccess in /home/wikibond/public_html/wiki directory ? [21:16:07] yes, that's probably true. so the job queue isn't the issue, and I don't know what is [21:18:51] ialex: here's my directory listing http://rafb.net/p/x9ti9X44.html [21:19:11] 03siebrand * r29906 10/trunk/phase3/ (RELEASE-NOTES languages/messages/MessagesAv.php): [21:19:11] Localisation updates for core messages from Betawiki [21:19:11] * adding messages imported from av.wikipedia [21:19:22] AphelionZ: WOa, you're missing a lot of files there [21:19:30] 03(mod) Create new prefix WP: for Polish Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12515 (10xarak) [21:19:35] amidaniel: o [21:19:37] Gah, woops, nevermind [21:19:44] haha [21:19:48] :) [21:19:55] *amidaniel goes to hide in a corner somewhere :P [21:20:00] but no .htaccess [21:20:08] #apache is no help [21:20:32] AphelionZ: Can you post an ls -la ? [21:20:54] sure [21:21:20] http://rafb.net/p/sW3oGO56.html [21:21:27] "ls -la" [21:22:03] Yikes, why is everything owned by root? [21:22:12] It's not the cause of your problem, but still bad practice [21:22:18] because im terrible at linux :p [21:22:25] but let's leave that alone for the time being [21:23:40] I just want to code my php and be done with my day :) [21:24:08] Alright :)) [21:24:22] but i just can't for the life of me figure out what the hell is causing this 500 error and it makes me sad all day [21:24:33] And all that's in your apache / php logs in the early term of script? [21:24:59] yep [21:25:09] Nikerabbit: re [21:25:24] and the jerk in #apache says AphelionZ, of COURSE you're still getting it. you aren't giving it the MINIMUM needed, which is Content-Type: text/html\n\n. This is NOT ##PHP and NOT #mediawiki. Use one of those. [21:25:27] AphelionZ: Can you stick a simple hello, world script in that directory and see if it works? [21:25:33] k [21:25:49] I don't think it's an apache problem .. could be, though [21:25:56] hmmm [21:25:59] ok [21:26:03] i can't even create a new file in there [21:26:07] now we're getting somewhere [21:26:19] Because it's owned by root [21:26:29] You need to su / sudo to edit that dir. [21:26:43] That or chown it back to a regular user [21:27:07] whats the chown command [21:27:10] mediawiki dir owned by root?... [21:27:17] Duesentrieb: Yeah :) [21:27:20] might be a very bad idea, at least in case you are using suphp... [21:27:29] AphelionZ: sudo chown -R wikibond:nobody wiki/ [21:27:40] i'd hope suphp catches that. but i'm not sure it does [21:28:39] Duesentrieb: Do you think the file ownership alone could cause php to crash? [21:28:54] http://wikibondev.org/wiki/ [21:28:56] :D [21:28:57] :D [21:28:59] :D [21:29:01] i think it did! [21:29:01] no. does it crash, really? [21:29:11] it used to, doesnt anymore [21:29:20] but wrong file permissions on .htaccess, for example, can cause a 500 [21:29:29] no, look! [21:29:31] it works now [21:29:36] Lol, congrats :) [21:29:39] haha [21:29:41] i know, right? [21:29:43] good :) [21:29:45] after that magic chown [21:29:53] Hmm ... [21:29:55] *amidaniel goes to test this [21:30:09] erm, i like this http://wikibondev.org/wiki/config/index.php :( [21:30:39] amidaniel: he's using cgi mode... maybe with suphp? [21:30:41] your die() from earlier killed it, that's not crashing though [21:31:14] ialex: hm? i would have expected that. no? [21:31:17] darkcode: no thats not it [21:31:42] Duesentrieb: Must be. just chowned a files and its dir to root:root on my comp and had no problems [21:31:53] Duesentrieb: yes, but anybody can try to configure it (if he have the passwords) [21:32:01] dont touch it! [21:32:03] haha [21:32:20] i won't touch it :) [21:32:39] ialex: If you have the sql passwords you could do a lot more harm than install mediawiki :P [21:32:39] Duesentrieb: what do you think was causing the problem? [21:32:59] AphelionZ: Do you have the suphp module installed on the server? [21:33:12] phpinfo says nothing about it, but I'm not sure if it would be listed there [21:33:37] i dont know [21:34:47] AphelionZ: Well, basically what seems to be happening is that your apache user was attempting to execute the php script as root, because its owner was root. But apache didn't have the apropriate permissions to execute the file as root, so it died [21:35:15] well, im glad it works [21:35:19] you guys kick ass [21:35:20] Me too :) [21:35:23] thanks for everything! [21:35:29] Yeah, no problem [21:35:51] Now remember, doing things as root that don't need to be done as root is evil :P [21:36:03] haha alright, i just learned the hard way [21:44:36] 03(FIXED) Change $wgNamespacesToBeSearchedDefault on enwikibooks - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12666 +comment (10jeluf) [21:52:00] 03(FIXED) Set favicon for Test Wiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12670 +comment (10jeluf) [22:02:53] How would I go about adding a link to the side navigation for the community forums? [22:03:21] !sidebar [22:03:21] --mwbot-- To edit the navigation menu on the left, edit [[MediaWiki:Sidebar]] using its special syntax. For more details, see . [22:05:10] hello, i need some basic html help :) [22:05:24] fiddan, have you tried #html ? :) [22:08:14] Wiredtape: hehe yes :) [22:09:48] what do you need? [22:10:49] lol [22:10:57] oops [22:11:44] Wiredtape: i hve downloaded an login script to my wiki.. and i want www.mywiki.com links to www.mywiki.com/login/login.php [22:14:01] so you want to add a link? or you want it to redirect to login.php? [22:17:04] Is there any way to direct them to another page on my site? [22:17:57] Nevermind [22:21:59] Anyone know of a really nice looking wiki? or wiki skin? [22:23:20] 03(NEW) Switch logo for bg.wikiquote - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12671 15enhancement; normal; Wikimedia: Language setup; (b.manolov) [22:33:44] 03(FIXED) Wikipedia: namespace alias for sv.wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12661 +comment (10jeluf) [22:33:56] 03(NEW) Monobook skin doesn't take care of $wgDocType and $wgDTD - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12672 normal; normal; MediaWiki: Page rendering; (alex.emsenhuber) [22:35:51] 03(FIXED) Switch logo for bg.wikiquote - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12671 +comment (10jeluf) [22:39:33] 03(FIXED) Re-enable upload on Incubator - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12642 +comment (10jeluf) [22:45:31] 03(FIXED) Create the group "test-sysop" for the Wikimedia Incubator - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10727 +comment (10jeluf) [22:46:10] *kibble huggles jeluf [22:51:53] 03(mod) Internet Explorer renders extra whitespace for external links that wrap lines in Monobook - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12104 (10gangleri) [22:55:00] 03(FIXED) Create new prefix WP: for Polish Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12515 +comment (10jeluf) [22:56:07] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id= +comment (10gangleri) [22:56:10] 03(mod) Internet Explorer (IE) issues on Windows (tracking) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=640 (10gangleri) [23:12:36] 03(WONTFIX) New "Site closing requests" component - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12599 +comment (10jeluf) [23:12:36] 03(WONTFIX) Change "Site requests" component to "Site creation requests" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12598 +comment (10jeluf) [23:12:41] 03(mod) Create the group "test-sysop" for the Wikimedia Incubator - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10727 (10cbrown1023) [23:14:36] hm... list=search is broken in api.php? [23:14:40] that sucks... [23:17:09] Duesentrieb: It's incompatible with lucene [23:17:17] bah. [23:17:23] Problem on lucene's end, not the api :P [23:17:48] well, i imagine, it's really aproblem with the interface defined for search engine plugins. [23:17:55] it's too html-centric [23:18:28] opensearch works... kind of. [23:18:38] that only does a prefix search, right? [23:18:44] Does it? hmmm .. no clue [23:19:40] seems like it [23:19:42] useless [23:20:01] so... i'm back to good ol' "grep the html" [23:20:04] :/ [23:20:39] hehe :) [23:20:57] Well, supposedly it's really easy to fix the lucene and other search extensions [23:21:04] At least according to tim [23:21:13] Just haven't taken the time to sit down and look at it [23:39:17] 03(mod) updaters.inc will never load interwiki.sql - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12200 (10N/A)