[00:00:00] can i ask you a question? I'd link your opinion before filling a bug [00:00:28] Yep. [00:00:31] what do you think of having a magic work giving the section number of the section the word is used on? [00:01:04] I was trying to implement a css+template hack to hide edit links in certain sections [00:01:27] Well, you could do it with JavaScript. [00:01:43] which RSS reader for mediawiki could one recommend? anybody happen to be using an RSS reader on their site? [00:01:48] like the references section, which contents are not editable by editing that section [00:02:34] and templates, to allow adding headers to templates withougt getting people to edit the template instead of that section in the page [00:02:35] Waldir: It should be easy with JavaScript. [00:02:40] hum... [00:02:42] how? [00:06:25] Waldir: Sorry, someone knocked. :) [00:06:55] Waldir: You'd generate a list of sections on the page, determine the content of each heading, and if it matches the criteria you'd remove the edit link. [00:08:09] Pathoschild so... I'd add this script to something like common.js, and then call it from my template? [00:08:38] i mean [00:08:43] forget the template part [00:09:05] Yes, without the template part. (Although, if you'd like, you can set it to only trigger if a template is present.) [00:11:16] is there any way to get a plain text diff (not html - like a unified or context diff) [00:11:49] might be possible via the API [00:13:16] Pathoschild actually, I'd like not having a specific criteria. what if someone used "notes" instead of "references"? but this isnt the mains reason. Probably what I'd like is not to hide edit section links, but tweak them. [00:13:21] any format really (an ed script is the only text diff format I can think of that wouldn't be at least marginally useful) [00:13:53] of course, on the references example, I'd want them removed, but in the second case (when a template has headings inside it), I'd want to change the edit link [00:14:06] to use the current page instead of the template page [00:14:53] Waldir: All is possible with JavaScript. :) [00:14:59] Pathoschild I know :D [00:15:11] but I'm still learning ^^ [00:15:49] so, how do i change edit section links if these are part of a template code? [00:16:20] is transcluded text wrapped in a special div, or what? [00:16:35] Yep. [00:16:43] hum, cool :D [00:17:01] The script can find the edit links easily (they have a class). [00:17:27] If you want to customize display or text with a template per-section, that's a little harder but not particularly difficult. [00:17:55] i know, editlinks. so i find an element with that class, then check if it is inside a "template" div (or whatever it is called) and then change the element's content? [00:18:45] specifically, the 'href' attribute of the 'a' tag that's inside the span. am I right? [00:19:12] Ah, I see what you want to do. If a section is inside the template, change the edit link so you edit the page instead of the template? [00:19:19] YESSSSSSSS :D:D [00:19:23] precisely that ^^ [00:19:52] that's why i needed the section id xD [00:20:28] i was doing this in a higher level, and thus the need of a magic word :p [00:20:52] but if hacking the code works (and I know how to do it), great :) [00:21:32] Well, that's easy. Just wrap templates containing sections with a class, iterate over elements with that class on page load, and change every edit-section link that are children of those elements. [00:22:21] yes but then every template with sections would have to be manually set to use that class [00:22:32] Hm. [00:22:41] you could find edit links that don't point to the same page you're on [00:22:48] Well, you could iterate over every edit-section link, and change any that don't point to the current page. [00:22:55] ...what Random832 said. ;) [00:22:58] lol [00:24:07] still doesnt look solid enough 4 me.. i mean, someone could fool this system hard-coding a into the page [00:24:17] of course, this is an extreme example, but my point is [00:24:57] arent there other ways to produce edit section links that dont point to the page, without using sections inside templates? [00:25:06] Waldir: no. [00:25:19] you can make a link, but it won't look the same [00:25:30] the link itself won't have the same class, since it'd be an external link [00:25:38] mmmm [00:26:17] well, that can be fixed via js :P [00:26:41] ok but why not, instead of checking if they point to another page, checking if they're inside a "template" div? [00:26:43] Skizzerz_Away: yeah, but if he runs his js _first_ [00:26:50] :P [00:26:56] Waldir: I don't think there is a template div. [00:26:56] Waldir: there is no "template div" [00:27:01] lol [00:27:06] templates don't have to be block-level, or even well-formed [00:27:16] i though you said that, I must have misread you :) [00:27:26] many templates routinely use an open tag with another template with a close tag [00:27:40] I see... [00:28:10] ok so how do i check if a link points to another page? [00:28:26] hover over it [00:28:31] With Javascript, just check the link href. [00:28:42] the link destination should appear somewhere in your browser (generally at the bottom) [00:29:23] g2g [00:29:29] ciao people [00:29:41] thanks Pathoschild and Skizzerz_Away for your help [00:29:41] if(!link.href.match('title=' . wgTitle)) { ... } [00:29:46] Welcome. [00:29:48] no doubt i will be back in the future for more! mwahah [00:30:43] Pathoschild I'll give it a try :) [00:31:40] Pathoschild: wouldn't getting all elements in an array, then running a for loop with what you had above be more effective? [00:31:46] *all a elements [00:31:59] yes i was precisely thinking about that :p [00:32:09] Skizzerz_Away: That's what I said, but running over the elements with the proper section. [00:32:24] *Skizzerz_Away must have missed that comment, sorry [00:32:28] :) [00:33:10] ...how to get all elements marked "editsection" in an array [00:33:54] Waldir: wikibits.js has a function to getElementsByClassName, if you're using a recent version of MediaWiki. [00:34:01] my js has had better days :( [00:34:01] getElementsByClassName or getElementById (or is it ID, not sure) [00:34:14] Skizzerz_Away: Nope, it's ClassName. :) [00:34:34] Pathoschild yes, but, does that return an array with all such elements? [00:34:40] *Skizzerz_Away is guessing class, so var sections = getElementsByClassName(document, 'div', 'editsection'); [00:35:13] Waldir: Yep. [00:35:13] Skizzerz_Away actually they're spans, not divs :) [00:35:23] Pathoschild ah this makes things easier :D [00:35:26] w/e [00:35:45] then, run a for(i=0,i er, semicolons in the for, not commas >_> [00:36:18] Skizzerz_Away: What's that for? [00:36:25] to check each element in the array [00:36:41] Oh, I didn't notice you named it sections. ;) [00:36:45] :P [00:37:09] we're even then :) [00:37:11] Skizzerz_Away come on, you're writing all the code for me :P [00:37:23] that isnt fair xD [00:37:28] :P [00:37:40] I'm not writing ALL of the code, just the base structure ;) [00:38:02] sure, and leaving me with the bugs only :( [00:38:28] :) [00:38:33] that way i get all of the worst part and none of the best part of programming. I hate debugging so much :p [00:38:43] well, I don't know exactly what you want to do... [00:38:44] Waldir: Hire a developer. :p [00:38:51] (but i must admit it is such a great feeling when i correct a bug :D) [00:39:16] (don't hire me... every other attempt at js I take ends in nothing happening... even though the code is technically correct and bug-free) [00:39:23] Skizzerz_Away thank god, that way i can do some things myself xD [00:39:32] :) [00:41:37] the 'a' tag is inside the "editsection" span. can I refer to it and its url as sections[i].a.href? [00:42:33] I don't think so [00:43:06] you'd have to use the Child thingies (like firstChild) [00:43:08] firstChild? [00:43:18] ah lol u said the same i was thin king :p [00:43:24] *thinking [00:43:39] but test to see if it's an a first... perhaps a loop that checks all the children of the element [00:43:47] i was just going to do that ;) [00:43:54] but I'm pretty sure it is [00:44:53] it is, but there's a '[' before it. does that count as a child? :s [00:45:36] why is the default interwiki table overloaded with crap? [00:45:47] ... :| [00:45:58] Waldir: what's the code? [00:46:13] damn i just closed the window xD [00:46:18] :P [00:46:23] window or tab? [00:46:41] [editar] [00:46:54] the "view code" opens in an other window ;) [00:47:00] Why not just section.getElementsByTagName('a')[0].href? [00:48:06] Pathoschild I dont think looping all links in a page would have an impact on performance, but it isnt an elegant code, is it? [00:48:17] since i am only interested in the edit section links, that is [00:48:27] ... [00:48:35] you have raw HTML enabled? [00:48:37] section.getElementsByTagName('a')[0] will get the first 'a' element in section. :) [00:48:57] Skizzerz_Away: He wants to change the automatically-generated section edit linking, no? [00:49:12] Pathoschild still didnt get your idea.. :s [00:49:29] Skizzerz_Away: raw html? what do you mean? [00:49:44] well, you were using , is this source code or wiki code? [00:49:52] Waldir: Actually, a typo (which may be what's confusing you): section[i].getElementsByTagName('a')[0].href? [00:50:06] Pathoschild AAAAh xD [00:50:11] sure :P [00:50:14] :D [00:50:40] Skizzerz_Away i just hit view » source code in my browser xD [00:50:44] ah [00:50:51] *Skizzerz_Away thought you were typing the wiki code :P [00:51:23] sorry, i thought you wanted the html :s [00:51:39] *Skizzerz_Away gets confused [00:51:43] lolol [00:52:12] Skizzerz_Away but what code did you want, then? [00:52:23] no, i just was wondering [00:53:02] lol [00:54:06] now, assuming var link = sections[i].getElementsByTagName('a')[0].href; [00:54:19] ok [00:54:27] would the replace code start like link = link.split(link.indexOf("title=")) + ... [00:54:29] ? [00:54:44] sorry i havent coded js in a while :s [00:56:43] Pathoschild I just reread your typoed code, and, well the typo couldnt justyfy my confusion. :$ I misread you again :( [00:57:26] actually, i didnt misread you, i read it too fast xD [00:59:32] Waldir: No, you'd just do if(!link.href.match('title=' . wgTitle)) { link.href = link.href.replace(/title=[^\?&#]/,'title=whatever'); } [00:59:45] ah, regex :P [00:59:54] You might also want to check and remove the §ion parameter, depending on what you're doing. [01:00:03] *Pathoschild wanders off to eat supper. [01:00:19] Pathoschild thanks!.. [01:00:36] Welcome. [01:00:42] :) [01:00:57] Waldir: Use .contains instead of .match though .. that may cause you some unpredictable problems :) [01:01:22] amidaniel thanks, will do :D [01:01:30] Waldir: (Also, in the replace pattern I gave, add a + after the [character class].) [01:01:57] character class? [01:02:36] Use /title=[^\?&#]+/ [01:02:56] so that's the name of that square bracket thing :p [01:03:05] Yep. :) [01:03:10] (i learned regex in portuguese) :P [01:03:29] :) [01:03:48] dont die of hunder :P bon appétit! [01:03:52] *hunger [01:04:06] Merci. :) [01:04:54] Waldir: Vous de même, quand vous mangé prochainement. ;) [01:05:05] (so, in js the dot is a concatenator too) [01:05:21] slavie|away I dont speak french that proficiently :s [01:05:31] "You too, next time you eat. ;) " [01:06:08] oh ok prochainement.... that's proximamente in portuguese xD [01:09:33] henna, hi :) [01:18:18] How would i go about doing this, i want to create a template that goes on the articles talk page and adds it to a category and then on a seperate page i want to inculde a list of the category contents but the main article not the talk page [01:21:11] p858snake: JavaScript. [01:21:59] what about just listing the contents of the category? [01:24:30] !dpl | p858snake [01:24:30] p858snake : The DynamicPageList (DPL) extension outputs reports based on criteria given in a special tag. For more information, see and . [01:30:18] is there a "previousSibling"? [01:30:57] btw, slavie|away, i though u were away :p [01:32:00] *AmiDaniel_away notes that we |away and _away folks are often liars [01:32:07] xD [01:32:22] Waldir: Yes, it's .previousSibling. ;) [01:32:23] AmiDaniel_away can you answer my question? :D [01:32:31] ah ok :D [01:32:32] *AmiDaniel_away is away :) [01:32:37] AmiDaniel_away lool [01:32:38] :D [01:35:19] slavie|away, http://rafb.net/p/bPmxph97.html [01:35:25] hellp [01:35:29] *hello [01:35:31] this is how the code looks right now, what do you think? [01:36:03] Waldir: Just to be picky, use "var i". ;) [01:36:28] lolol [01:36:29] It's technically faster, though you'll never notice the difference. :p [01:36:35] ok :D [01:37:11] i'm trying to make a template with optional parameters. i copied something from wikipedia, which doesnt seem to work in my freshly installed wiki. do i need to active an option or install an extension to get this to work? the conditional command looks like this: {{#if:{{{2|}}}|< {{{2|}}}|< '''{{PAGENAME}}'''}} and is displayed as it is in my wiki, but right in wikipedia [01:37:38] !templates | Alp- [01:37:38] Alp- : For more information about templates, see . The most common issues with templates copied from Wikipedia can be fixed by installing ParserFunctions and HTML Tidy. [01:38:13] Waldir: "sectionSpans[i].nextSibling[0];" [01:38:15] slavie|away: thank you, i'll dig thought that [01:38:29] Waldir: Shouldn't nextSibling return a reference to a single element? [01:38:52] i was trying to refer to its value :$ [01:39:02] should i just append .value? [01:39:09] It doesn't have a value; it returns an element. :) [01:39:24] ie, if you alert it, you should get something like "[HTML element]". [01:39:25] i wanted the element's content [01:39:52] sectionSpans[i].nextSibling.value ? [01:39:57] it's something like Parser Functions [01:40:26] i wanted the "Parser Functions" string. i get that using value, then=? [01:40:29] *then? [01:40:35] I think so. [01:40:37] :) [01:40:41] i was unsure [01:41:11] "if(tocNames[j] = sectionName)" will always return true, no matter the value. [01:41:27] then i also have to compare if(tocNames[j].value == sectionName) [01:41:31] You're telling the JavaScript to make tocNames[j] = sectionName, then check if tocNames[j] = sectionName. :) [01:41:34] lol i forgot the double == xD [01:41:37] Yep. :) [01:42:05] and then, sectionNumber = tocNames[j].previousSibling.value; [01:42:27] You could just generate another array with getElementsByClassName(document, '*', 'mw-headline'); [01:42:54] sectionSpans[x] should be for sectionTitles[x], since they're always in pairs. [01:43:15] hum [01:43:25] then i wouldnt have to loop through it [01:43:26] :D [01:43:28] :) [01:44:10] yes, because it's an assignment [01:44:14] rather than a test for equivalence [01:44:29] and the return value of an assignment is the value that was assigned [01:44:55] which, incidentally, means it will return false if sectionName is false [01:45:14] Waldir: Also, "link.href = link.href.replace(/section=[0-9]+/,'section=' . sectionNumber . )" will break the links, since it will incorrectly assign it an edit number as if you could edit that section on the page. [01:45:47] (Which will actually edit the next section on the page itself, if I remember correctly.) [01:45:51] oh yea :S i totally forgot about that [01:46:00] :( [01:46:15] Just remove the section altogether. :) [01:46:36] i wanted to make it possible to have the heading in the template (so they could be generated dynamically) but still dont have to edit all the content of a page [01:46:54] And the last dot there will probably make your JavaScript crash with a "expecting string at line..." or some such error. [01:47:08] Hm. [01:47:30] It's not possible as far as I know. [01:47:39] yes, yes of course i get it :( [01:47:59] oh well [01:48:04] no perfect solution [01:48:20] You could make it edit the first parent of that section. [01:48:42] ...well, the only parent. [01:48:54] nah, that's rough. [01:49:07] Better than editing the whole page. :) [01:49:29] actually, the page i had in mind has a section whith templates that is nearly the size of the whole page [01:49:48] in fact thats the reason i converted its sections into template calls, to reduce duplicated code [01:50:19] i'll keep the code, anyway. maybe someday i'll need it :) [01:50:33] but for now, i'll just hide the section edit links :) [01:50:55] :) [01:51:02] which I already did, actually... lol [01:51:07] thanks for the exercise :D [01:51:19] and the french lesson xD [01:51:27] Welcome. :D [01:51:34] i'm leaving (again) :p bye [01:52:07] *slavie|away waves. [01:52:58] slavie|away: thanks. ParserFunctions was absolutly what i needed [01:53:13] Welcome. [01:53:47] now i search the extension that displays input help at the bottom of the input textarea. on wikipedia there are severeal clickable links for special character or wiki-instructions [01:56:32] Alp-: It's an interface message (pages starting with "MediaWiki:"), with the character insertion done by the charinsert extension. [01:56:44] !extension [01:56:46] !extensions [01:56:46] 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:57:08] slavie|away: thanks again [01:57:19] Welcome. [02:41:56] which extension makes this nice category trees? http://en.wikipedia.org/wiki/Category:Contents [02:43:20] Pathoschild, still there? [02:44:17] is there a way for a user to view eg wikibits.js from within its wiki? [02:54:39] well the weather cleared up so time to go and get fit [02:55:54] hooray [02:56:52] Alp-: http://www.mediawiki.org/wiki/Extension:CategoryTree [02:58:17] Shinjiman: thx, just found it too [03:06:22] hi, Shinjiman [03:06:55] my javascript keeps looking like http://p.caboo.se/125270 [03:07:07] even when I put it in with " and everything [03:11:34] hello, i was wondering if there was anyone here who would be able to answer a couple of questions about wiki, and webpages, for someone who is only slightly above being clueless? [03:14:02] Sera18: go ahead and ask [03:14:48] ok, id like to create a website similar in format to wikipedia - something that allows for input and editing by others [03:15:30] ok [03:15:52] i have bought and registered a domain name, have bought hosting, and have downloaded mediawiki which is a .tar.gz file, but appears as blank and cant open it [03:16:23] unix or windows hosting [03:16:49] Sera18: have you studied http://www.mediawiki.org/wiki/Installation [03:16:50] ? [03:17:17] im not sure, how can you tell the difference [03:18:01] you'd probably be better of with a hosting provider that installed mediawiki for you [03:18:15] via a web-based dashboard or something [03:18:25] oh ok [03:18:35] so its pretty complicated then [03:18:43] for a first timer that is [03:18:57] read http://www.mediawiki.org/wiki/Installation [03:19:01] ok [03:19:07] it's not trivial if you've never used unix [03:19:16] one other question [03:20:14] can you upload a html file made in notepad to the site, does that or will that clash with the installed mediawiki? [03:21:05] !bom [03:21:05] For more information about the Unicode byte-order mark (BOM), please see . In short: Notepad loves it, PHP chokes on it. Get rid of it. [03:21:22] that's the issue with notepad [03:23:14] ok, so it's either one or the other really then [03:25:25] thanks for your help [03:59:26] 03(NEW) "/dmirror/http/en.wikipedia.org/w/" added to article text - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12217 15enhancement; normal; MediaWiki: General/Unknown; (oq9pscb02) [04:05:07] 14(INVALID) "/dmirror/http/en.wikipedia.org/w/" added to article text - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12217 +comment (10pathoschild) [04:07:12] does anyone here use x-chat? [04:09:51] hello? [04:11:11] illmasterc: i imagine x-chat has a IRC channel if you're looking for support [04:11:23] 03(mod) "/dmirror/http/en.wikipedia.org/w/" added to article text - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12217 (10oq9pscb02) [04:11:36] I'm new to IRC [04:11:51] and apparently whatever you put in for the channel either works, or starts a new one.... [04:12:12] I kept signing on and I'd be the only one in the room [04:12:38] join #xchat [04:13:07] no, I know I was putting in the wrong add for mediawiki [04:15:31] does anyone have a good resource as to the entire cycle of mediawiki serving a page? [04:15:42] diagram / layout? [04:17:30] ooh, there's a good one somewhere... one sec... [04:17:50] http://www.mediawiki.org/wiki/Image:Mediawiki-database-schema.png [04:18:23] that's db schema... [04:18:33] thanks, and how come you're the only one saying anything on here? [04:19:38] a lot of people idle / lurk [04:19:47] i'm sure someone's reading this right now besides you [04:21:28] ha, yeah... [04:21:42] Okay, how familiar are you with the software? [04:21:54] i can answer basic questions [04:23:13] I would like to get a good understanding of how it's all stitched together [04:23:18] there are a shitload of files though [04:23:22] what's your advice [04:23:39] read mediawiki.org [04:24:10] having a tough time navigating to the bootstrapping, or whatever it's call [04:24:11] e [04:24:11] d [04:25:48] if you have particular questions, you're free to ask; someone will probably answer; if you just want to know more about mediawiki, the best thing to do is to play with / explore the software and read the documentation at mediawiki.org [04:26:45] yeah, that's what I've started this past week [04:26:52] thanks for the help [04:27:07] no problem [04:27:13] how do you use it? [04:27:28] what do you mean? [04:27:47] do you develop with the software, maintain it, or just use wikipedia like all of us [04:28:02] i run a couple of wikis for personal use [04:28:11] and use wikipedia [04:31:08] any body know if there's a hook equivalent to MonoBookTemplateToolboxEnd for the end of the language box? [04:38:15] 03werdna * r28193 10/trunk/phase3/ (RELEASE-NOTES includes/DefaultSettings.php): [04:38:15] * Assign rollback permission to ALL logged-in users by default. This seems to be sensible, given that "undo" can already be done almost as quickly, and that rollback can now be rate-limited. [04:38:15] * This change has been discussed with Brion Vibber and Tim Starling, and I have received no substantive objections from the users on the English Wikipedia. [04:39:40] WHee. [04:40:30] What are you WHeeing at. [04:40:45] Rollback being assigned to all registered users, silly. <3 [04:42:03] http://en.wikipedia.org/w/index.php?title=Wikipedia:Village_pump_%28technical%29&diff=176091361&oldid=176075649 [04:42:08] let the violence begin. [04:46:20] well [04:46:29] that means less slow inefficient JS rollback stuff [04:46:45] my javascript keeps looking like http://p.caboo.se/125270 - even when I put it in with " and everything [04:47:27] indeed :) [04:48:12] *AaronSchulz stares down flaggedrevs.sql [04:48:24] *AaronSchulz stabs the shitty undeletion system [04:56:37] does maintenance/dumpBackup.php work with PostgreSQL? [05:05:17] aomarks: I don't see why it wouldn't. [05:31:08] 03(mod) Use transclusions to count articles as well - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11868 (10Simetrical+wikibugs) [05:54:19] So umm... the download links are all not working. [05:55:05] Which would those be? [05:55:16] Specifically http://download.wikimedia.org/mediawiki/1.11/mediawiki-1.11.0.tar.gz [05:58:05] Yeah .. looks like benet and biruni (which service download.wikimedi.org) are down [05:58:34] JeLuF: ping [05:59:54] Kryptos: Do you know how to use subversion (svn)? [06:00:36] I haven't downloaded MediaWiki to be able to SVN it to begin with. [06:00:54] No, subversion is a way to get mediawiki :D [06:01:04] Here, let me get you a tarball [06:01:05] Just a sec [06:03:56] Oh, woops .. you wanted 1.11 .. hehe .. another sec ... [06:09:25] . . . [06:12:07] I'm having trouble downloading mediawiki [06:12:15] Join the queue [06:12:30] Ok, problem for everyone and not just me? [06:12:33] I'm getting a tarball up on the ts .. it'll be another minute or so [06:12:39] mark: Are you around? [06:12:45] Even the Sourceforge link is outdated. [06:13:38] mark: If you get a free sec, the apache on download.wikimedia.org appears to have died. [06:16:17] Kryptos et al.: http://tools.wikimedia.de/~amidaniel/REL1_11.tar.gz [06:16:38] download runs lighttpd, not apache :) [06:16:40] thanks :) [06:16:47] and the entire box seems to have died [06:16:52] flyingparchment: Meh, what do I know? Care to fix it? :) [06:17:00] i can't from here [06:17:04] *amidanie1|away knew there was another admin in here he could ping [06:17:06] Aww :( [06:17:09] Why is 1.11.0 triple the size of 1.9? [06:17:49] Prolly because there's more localization in 1.11 [06:18:08] probably because he included the .svn directory [06:18:11] ;) [06:18:24] Aha, that would do it :D:D [06:18:26] *amidanie1|away fixes [06:19:11] *amidanie1|away should have known something was up when it took 8mins to upload .. even at a 20kbps connection [06:19:26] Wow... I'm expected to upload 44MB to my server... [06:19:38] Kryptos: no, wait for ami to provide a smaller file [06:21:10] *amidanie1|away twiddles thumbs [06:21:41] thar we go [06:22:26] down to 6 megs :) [06:24:37] i uploaded the tarball and decompressed [06:24:53] *AaronSchulz yays [06:25:02] Can't wait till I can commit [06:25:06] AaronSchulz: ? [06:25:15] commit what? [06:25:20] finally dealt with moves/deletions efficiently in flaggedrevs [06:25:31] Hurra! :) [06:25:38] *amidanie1|away gives AaronSchulz a cookie [06:25:42] no more linear move overhead [06:25:52] will the newer versions end up on sourceforge? [06:26:06] kenners5: No, we discontinued using sourceforge a while ago [06:26:10] heh [06:26:11] feb 20, 2007 [06:26:13] alright then [06:26:53] kenners5: Now it's maintained through local svn http://svn.wikimedia.org and can (usually) be downloaded from download.wikimedia.org [06:27:29] Of course if some people *cough*river*cough* are too lazy to reboot download.wikimedia then we'll just have to use the poor toolserver :) [06:27:40] i wish the toolserver the best of luck [06:27:41] >_> [06:27:46] ^.^ [06:28:03] *amidanie1|away returns to his books [06:32:24] So your 1.11 file has the installation files? [06:33:11] Kryptos: Yes, it's exactly what you would have gotten from download.wikimedia.org (with possibly a different top-level directory name) [06:35:28] I was wondering about this for a while.. [06:35:42] I upload the .tar, but can I extract it using an FTP client? [06:36:07] most likely not, unless the server has extended and very custom SITE commands [06:36:55] via ftp ... if your client lets you, you really shouldn't :) [06:37:10] Better to untar and recursively upload [06:37:17] Unless you have shell access to the server [06:37:22] (which I presume you don't) [06:37:55] it takes longer to upload 4000 1k files than it does to upload one 4mb file [06:38:04] :( [06:38:12] Of course [06:38:22] so "better" is very subjective ;) [06:38:47] If you unzip through your ftp client however, you're uploading 4 megs, downloading 4000 1k files, uncompressing, and reuploading each, whether you know it or not :) [06:39:16] true, i was still on SITE commands [06:39:32] Depending on your ping even 1000 files of 1byte takes almost an hour to finish. [06:40:16] I'm in Australia and my server is in USA, so with a ping of 300 constantly requesting to upload a file is... well... a bitch [06:41:14] The only advice I can offer is to get a server with shell access :) [06:41:15] well, as your client is on your machine and the tar file is on the server, it's hard to extract them using the client [06:41:45] i was wondering if there was a way to trick the server into extracting it for you through the FTP interface, but i haven't found a supporting project [06:41:53] maybe i've stumbled onto a good idea! [06:41:58] *amidaniel|away notes that you could theoretically write yourself a grody little php script to untar it .. [06:42:14] oh, that's probably easier [06:42:20] And then exec the script from a web browser [06:43:14] Muahaha [06:43:26] My plan to create a new religion is 1/4 complete [06:44:22] should do it .. if your server allows you to :) [06:45:01] 03david * r28194 10/trunk/extensions/LiquidThreads/README: README typo [06:47:29] *amidaniel|away looks at r28193 [06:47:33] *amidaniel|away growls at Werdna [06:54:32] amidaniel|away: yes? [06:55:12] Werdna: Just a growl of approval :) [06:55:25] *Werdna thought he might have his first abuse. [06:55:38] Abuse committed by me or by you? [06:55:48] you :P [06:56:02] *Shannie abuses Werdna. [06:56:05] *amidaniel|away abuses Werdna for the fun of it [06:56:13] *amidaniel|away abuses Shannie for abusing him first >:() [06:56:18] Damn this slow connection! [06:56:24] :D [06:56:31] Causing me to have to settle for sloppy seconds :( [06:57:01] *Shannie cackles. [06:57:15] *amidaniel|away really goes away now [06:57:25] *Werdna tickles Shannie [06:57:32] :DD [06:58:37] Is there code existing in MW to programmatically add or remove articles from categories? [06:59:12] noope [07:05:32] Kryptos: re: shell latency etc: If you use rlwrap + 'ssh host', you can get a local readline interface and so at least basic shell commands are nice and fast. [07:06:25] Kryptos: Also if you use Emacs, check this stuff out: http://sood.net.in/journal/index.php/archives/2006/09/04/emacs-shell-and-ssh/#comment-37647 [07:07:25] 03(mod) Red interwiki links -- check for page existence across wikis - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11 low->normal; +comment (10spidermannequin) [07:16:49] Cheers for the help gang. [07:16:57] *Kryptos hands out cookies and milk. [07:17:19] Shannie: :) ! [07:17:22] 4 Hohoho [07:17:46] Hey AaronSchulz :D [07:25:34] <_wooz> lo [07:46:58] quick question from a new user... [07:47:58] After installing mediawiki and bringing up the default pages, [07:48:27] The help button on the left links to a blank page to edit. [07:48:58] Is there a simple way to include the editing instructions, etc. by default? [08:02:45] mace3: Nope :) [08:02:55] I know it not recommended but is there a good module/extenstion to restrict access to a certain namespace [08:03:08] mace3: If you add meta or mediawiki.org to your importSources and bulk import them [08:03:15] !lockdown | p858snake [08:03:15] p858snake : Lockdown is an extension for preventing read or write access by namespace and limiting access to special pages. For more information, see < http://mediawiki.org/wiki/Extension:Lockdown >. For general information on preventing access to your wiki, see < http://www.mediawiki.org/wiki/Manual:Preventing_access >. [08:05:52] thanks dan [08:06:09] np [08:07:23] thankyou [08:07:46] uga [08:39:31] hello; has someone recently experienced a bug with page protection? [08:39:59] ThomasV: What kind of bug? [08:40:31] amidaniel|away: a page that was supposedly protected was vandalized [08:40:38] Which page? [08:40:50] http://wikisource.org/w/index.php?title=Main_Page&limit=500&action=history [08:41:05] you can see the first protection in the log [08:41:18] (by Dovi) [08:41:32] 12:25, 26 November 2007 ThomasBot (Talk | contribs) deleted "Main Page" ‎ (Robot - Deleting all pages from category Հեղինակներ) [08:41:42] When pages are deleted, their protection is lost [08:41:49] oops, ok [08:42:05] sorry for the inconvenience [08:42:12] No inconvenience :) [08:48:56] in case anyone cares, http://svn.wikimedia.org/viewvc/mediawiki?view=rev&revision=27810 introduced a tiny inconsistency between the edit links on a diff [08:49:02] see http://en.wikipedia.org/wiki/Wikipedia:Village_pump_%28technical%29#spacing_inconsistencies_in_revision_comparisons for details [08:49:14] (purely cosmetic) [08:53:28] Splarka: So the problem is that there *is* a space? [08:54:15] ami: well, the problem is that it is inconsistent ^_^ [08:54:25] but there was a space before, it seems. and only one was removed [08:54:39] *Splarka shrugs [08:54:48] Ah, okay ... post was a little confusing :) [08:54:56] didn't seem worth suggesting to them to open a bugzilla for it [08:55:07] *amidaniel|away fixes [08:56:30] Fixed. [08:56:34] 03amidaniel * r28196 10/trunk/phase3/includes/DifferenceEngine.php: Minor typo in r27809. Add space before "(edit)" link on old revision in diff. [08:57:20] now go claim credit for it on the vpt ^_^ [08:57:31] *amidaniel|away did :D [08:58:13] the vpt ? [08:58:26] The "Village Pump Technical" [08:58:30] ah [08:58:44] *amidaniel|away declares today "Acronym Day, or AD" [08:59:34] *Splarka just calls it that because it seems to be the central location for mediawiki/wikimedia complaints.... behind bugzilla, this channel, #wikimedia-tech, the various mailing lists, and the svn... [08:59:35] *ThomasV hughs AD|AW [09:00:03] (in that, everyone should know the shortcuts WP:VP/T and WP:VPT) [09:00:09] *amidaniel|away notes that 6th place is not particularly "central" [09:00:55] well, it is a good start ^_^ [09:01:29] a problem manifests... someone reports it to the Village Pump, where it is disambiugated as a policy problem, a configuration problem, or a technical problem, and the latter are sent to VPT.. [09:01:50] from there if it cannot be solved it can usually be disambugated to either a mediawiki problem or a wikimedia problem [09:02:17] [insert powerpoint flowchart while the crowd falls asleep] [09:03:37] man, all this over a single whitespace, heh [09:03:49] *Splarka leaves in peace, leaving his piece of spam [09:06:58] does anybody know how i can rename the main page!? [09:07:18] moonlight: Edit MediaWiki:Mainpage [09:08:15] oh great thanks [09:15:54] mark? [09:19:12] AaronSchulz: He's not here, it seems [09:19:27] I still can't DNS svn.wikimedia.org [09:19:32] *AaronSchulz does a tracert call [09:19:40] well, I can see where it is dying at least [09:21:22] AaronSchulz: 91.198.174.123 [09:21:51] ok, yeah, I already know that works [09:22:13] I can manually add it to a windows dns cache list [09:22:26] goes really slow in browser, and TSVN still doesn't work [09:22:43] svn has been slow tonight for me too, actually [09:22:52] Through the domain, not the ip [09:23:01] right, I was about to say that [09:23:07] AaronSchulz: Have you flushed your dnscache? [09:23:12] yeah [09:23:17] Hmm .. strange [09:23:18] that's not the problem [09:23:29] That windows junk ... [09:23:35] is gets stuck at some shitty DNS server in amsternam [09:23:44] it has nothing to do with my box or windows [09:23:55] err [09:23:59] "shitty DNS server in amsterdam"? [09:24:04] Ah, hello mark :) [09:24:54] AaronSchulz: 9 af-500.xsr01.amsterdam1a.surf.net (145.145.80.9) 169.600 ms 166.972 ms 166.261 ms ? [09:25:09] 18 107ms 107ms 107ms KNCSW001-router.Custumer.surf.net [145.145.1815] [09:25:14] there are 3 DNS servers on 3 different continents [09:25:17] you're not making sense [09:25:17] at 19 it dies [09:25:22] if you can't reach any of them, the problem is your internet, not ours [09:25:26] you're talking about shitty DNS servers and now you're doing traceroutes [09:25:54] amidaniel|away: that is the one before it [09:26:04] mark: When you get a chance, download.wikimedia.org could use a restart :) [09:26:11] amidaniel|away: download was already restarted [09:26:20] Ah, woops :D [09:26:21] Sorry :) [09:26:33] i think jeluf was having some problems starting lightttpd [09:26:37] *flyingparchment & [09:26:48] Seems to be working though [09:26:57] AaronSchulz: so you're saying you're having routing problems, so what does it have to do with dns? [09:31:43] amidaniel|away: tracert on the actual IP is almost identical except it goes past the last one to 4ge-1-16.csw1-knams.wikimedia.org [09:32:32] AaronSchulz: Does it get to mayflower? [09:32:47] after that it goes to svn properly [09:32:49] *amidaniel|away notes that he knows next to nothing about packet routing :) [09:33:06] which is mayflower [09:33:45] ... [09:33:54] tracerouting on the hostname or the IP is *exactly* the same [09:34:47] mark: Then why does it fail when tracerouting the hostname but not the ip? [09:35:22] the only plausible explanation is that the hostname resolves to something else than the ip [09:35:43] for example, to the old IP address (145.97.39.something) [09:36:30] AaronSchulz: What does "host svn.wikimedia.org" give you ? [09:37:04] ? [09:38:09] ping svn.wikimedia.org [09:38:20] what ip address does that give you? [09:38:33] pinging svn.wikimedia.org [145.97.39.135] [09:38:39] that's the old, wrong ip [09:38:39] ;) [09:38:42] something seems fucked with your dns [09:42:28] 03raymond * r28197 10/trunk/phase3/ (9 files in 4 dirs): [09:42:28] * (bug 11810) Localize displayed semicolons [09:42:28] Based on a patch of Roozbeh Pournader. Optimized for caching and more arabic script languages added. [09:42:58] 03(FIXED) Displayed semicolons should be localizable - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11810 +comment (10raimond.spekking) [09:43:25] amidaniel: grr, why the fuck doesn't hosts.ics work? [09:43:34] I should be able to totally override this crap [09:44:46] you should not override that crap, you should fix your DNS [09:45:18] well, I will be moving soon, back home for christmass [09:45:23] hopefully, it will work there [09:45:47] when I get back to this university though...who knows [09:50:36] hmm, according to nmap, svn.wikimedia.org resolves to two ips [09:51:09] 03(NEW) Image verication don' t respect visual imparements or text browsers (links/elinks) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12218 normal; normal; Wikimedia: Bugzilla; (orsonteodoro) [09:51:41] really sounds like your DNS server there is broken [10:02:36] the main of the two seems to be down [10:13:28] AaronSchulz: where do you live, anyway? [10:13:45] at Teh university [10:15:01] ok, fuck this, time to sleep [10:15:42] AaronSchulz: Teh university? [10:15:44] where's that? :P [10:16:01] sleep??? quitter! :) [10:25:24] good morning everybody! I'm in a difficult situation and I wondered if anyone out there might be able to help me.. it's about my listen music player [10:25:58] I have to arrange a party tonight and play my own music. So my question is: is it possible to install a crossfade to listen music player?! I already checked forums + google but I just don't now so much about computers.. feling very stupid now......... [10:27:08] I don't think MediaWiki is something you'd be using there.. maybe consider doing something else? [10:28:49] oh, erm.. sure. I'm really just a noobe! Could you maybe tell me where I should look/as then? [10:29:25] I don't understand why you thought you needed it in the first place, though. [10:30:25] maybe cause the word media [10:30:28] you really wanna know the crazy ways of a woman's brain ;-)? [10:30:32] right... [10:30:37] i would check out itunes or something [10:31:03] mediawiki is an internet content management system - the software used by wikipedia [10:31:43] oh, I get it.. I'm very sorry for spamming here with me probs then.. than you guys. [10:31:58] no problem maren__ [10:32:05] this can always happen [10:47:35] 03mkroetzsch * r28198 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_refreshData.php: Support for -e switch to refresh pages only up to some given page id. [11:25:48] hi guys when I'm trying to install mediawiki on a hosted server I get.. [11:25:49] Warning: is_dir() [function.is-dir]: open_basedir restriction in effect. File(/var/lib/php/session) is not within the allowed path(s): (/tmp:/usr/share/pear:/home/fhlinux159/p/pentaho-wiki.com/user) in /home/fhlinux159/p/pentaho-wiki.com/user/htdocs/wiki/config/index.php on line 424 [11:25:49] # Warning: Your session.save_path value (/var/lib/php/session) appears to be invalid or is not writable. PHP needs to be able to save data to this location for correct session operation.# [11:25:54] and a whole load more [11:26:10] I have 2 domains and when I installed the same version of the wiki last week it went fine [11:26:20] is there anything I can do to get around this [11:26:28] or do I need to speak to my hosts? [11:31:21] hey [11:31:29] how do i give another person sysop ? [11:32:04] Rich[Away]: login as sysop and go to [[special:userrights]] [11:32:20] Rich[Away]: err.. login as bureaucrat [11:34:34] XD [11:36:58] and how do i delete a user? [11:37:37] 03(NEW) Standardize on the name "images", retire "files" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12219 minor; normal; MediaWiki: Special pages; (jidanni) [11:38:00] !deleteuser | Rich[Away] [11:38:00] Rich[Away]: Deleting users is very messy and not recommended, because this breaks referential integrity in the database (they appear in many different tables like users, edit histories, recentchanges, preferences, etc). A safe solution is to block the users, and possibly rename them with . You can also try [11:41:59] is it possible to have different languages of wiki? [11:42:02] or is it hard? [11:43:24] Rich[Away]: like wikipedia ? [11:43:47] Rich[Away]: one wiki has one content language but every user can choose his own language for the user interface [11:45:21] 03(NEW) Messages*.php:'copyright' clamped to $wgLanguageCode - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12220 minor; normal; MediaWiki: Internationalization; (jidanni) [11:46:12] ohh [11:46:31] but i mean if i want on the main page some links that they can click and it will change the language [11:46:35] without them having to be logged in [11:46:36] is that possible? [11:46:43] ialex like wikipedia yes [11:47:17] actually nevermind [11:47:20] :P [11:48:01] Rich[Away]: use weblinks like http://en.wikipedia.org/wiki/abcd?uselang=fr for french [11:49:04] but if you click on any link then it'll be in english :( [12:04:37] when i disable the mediawiki api (security fix), then extensions wont work, right? [12:06:53] they should work, i think [12:07:22] aton`: extensions do not use the API [12:07:38] who uses the api? [12:07:47] bots [12:07:50] ? [12:08:20] what bots? [12:09:11] all kind of bots: interwiki, disamb, redirects fixing, change of templates... [12:09:59] are those bots part of mediawiki [12:10:10] ? [12:10:17] no [12:10:27] so i can disable the api without function loss [12:10:39] yes [12:10:59] cool [12:13:19] 03(VERIFIED) Change in Malayalam Wiktionary {{SITENAME}} - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11093 (10jacob.jose) [12:14:04] 03(mod) Change in Malayalam Wiktionary {{SITENAME}} - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11093 (10jacob.jose) [12:18:49] 03mkroetzsch * r28199 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_pingSemWeb.php: Adding (experimental) ping script. [12:21:08] ialex, how can i test whether the api is on or off? [12:21:33] aton`: go to api.php instead of index.php [12:21:57] ah nice [12:22:17] i should update to a secure version some time and read how to use the api [12:22:29] thanks for the help [12:22:42] no problem [12:24:25] Hi guys... [12:24:29] when the api is disabled, is it safe to ip-ban everybody accessing api.php? [12:24:31] I have a small problem... [12:24:52] I just installed mediawiki 1.6.10 [12:25:32] I setup the database, the user, and all the other stuff on my site... The page msg after installation showed no errors... [12:26:37] I also moved the LocalSettings.php file to the parent directory(the site.com/wiki directory). I deleted the config directory. But still I get a msg that reads "Installation successful! Move the config/LocalSettings.php file into the parent directory, then follow this link to your wiki." [12:26:46] Can anyone help me? [12:27:47] did you followed the link ? [12:28:08] yeah.... [12:28:11] 03mkroetzsch * r28200 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_pingSemWeb.php: Really ping (still experimental) [12:28:26] the site is http://workcamp.cafecamp.com [12:29:03] ialex - thats the site url... you can see the msg there. I even chmoded the localsettings.php file to 600 [12:29:16] perhaps try 666? [12:29:27] Hmm...... [12:29:32] one second... while I try [12:29:43] http://workcamp.cafecamp.com/LocalSettings.php [12:30:16] 03mkroetzsch * r28201 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_pingSemWeb.php: Fixed typo [12:30:46] yeah thats the url of the localsettings.php file, since the wiki is installed at workcamp.cafecamp.com... is it right? [12:31:08] how do you put pictures on edits? [12:31:13] or pictures on the page ? [12:31:23] SingAlong, also make the directories executable for everybody [12:31:35] u mean 777? [12:31:45] i mean o+x [12:31:55] like your home directory [12:31:59] i think php doesn't require the execute right [12:32:02] (if you have shell access) [12:32:18] it needs the execute rights of the path to be able to read anything in it [12:32:29] Done 777... still getting the error...... I am using FileZilla [12:32:54] any idea of what else I can try? [12:34:08] is there a way to create a "mini" TOC for only subheadings under a specific heading level? [12:34:22] I am eagerly waiting to see the wiki........ I have been trying to install media wiki since 1hr!!! I have just completed the install after repeating every step with lots errors!!! [12:34:41] ialex - what might be the error? [12:35:16] ialex - I chose the right version of mediawiki. but... :( [12:36:39] ??? [12:37:22] anyone... help please..... [12:38:58] SingAlong: did you also copied the index.php from /config to the main directory ? [12:40:43] 03mkroetzsch * r28202 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_pingSemWeb.php: Another typo ... [12:43:29] how do i put pictures on pages? [12:45:01] Rich[Away]: [[Image:imagename.jpg|thumb|image description]] [12:45:49] anyone... mini TOCs that are section-specific? is this possible? [12:51:13] Raymond_ [12:51:23] when I do it it shows a link to the image :S [12:51:40] does it heo be a jpg? [12:51:45] *have t obe [12:51:54] you have to upload it before [12:53:29] ?? [12:54:47] i have.. [12:56:52] where do i upload it? [12:56:59] Special:Upload [12:57:35] !upload | Rich[Away] [12:57:35] Rich[Away] : File uploads are an often-used feature of MediaWiki, but are disabled by default in all current release versions. To enable them, first make the upload directory (default images) writable by PHP, then set $wgEnableUploads to true in LocalSettings.php (i.e. "$wgEnableUploads = true;"). See for more info. [13:09:49] 03(mod) New special page to display all pages created by a user - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10730 (10N/A) [13:09:57] when i try to upload it it comes up: Could not find file "C:\WINDOWS\Temp\phpEF31.tmp". [13:10:56] Hi, I have a problem on my wikipage http://wikisimpsonovi.uvadi.cz [13:11:46] Black car at the top of my page is under page [13:12:18] The following needs to be set in php.ini (which may be located somewhere like /etc/php/php.ini, /etc/php4/php.ini, /usr/local/lib/php.ini or on Win32 C:\Windows\php.ini): [13:12:21] i cant find it .... [13:13:07] How to do to not be uder page but upward? [13:29:05] I'm not asking to ask, but will I get an answer if my mediawiki if 1.7 (debian stable...) ? : I'm trying to setup "$wgGroupPermissions['*' ]['createaccount'] = false;" so that accounts are only created by admins. But when I setup this, any click on the "connect" link will bring back to the page saying "you need to coneect to see the pages" [13:29:27] you see my problem ? [13:29:36] so, where did I miss something ? [13:30:17] http://rafb.net/p/07wocu46.html [13:32:00] Burps: http://www.mediawiki.org/wiki/Manual:$wgWhitelistRead [13:32:03] 03(mod) "All namespaces" in Special:Newpages does not work any more - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12031 (10bertrand.grondin) [13:33:23] Yeaahhhh, Thx ialex :) [13:40:59] I'd like to migrate several MoinMoin wiki pages to MediaWiki. Is there a conversion tool that can do this automatically? [13:42:07] swiert: i looked a while back, i couldn't find one [13:42:39] jlerner: I tried looking to, but thought someone here might know more. [13:42:42] thanks anyhow. [13:43:02] there must be something to make at least the first pass [13:44:02] jlerner: I couldn't find anything. I don't mind tweaking a few things manually - any kind of rudimentary script would be quite useful. [13:44:15] agree [13:46:50] aha - http://www.littlejohnconsulting.com/node/18?PHPSESSID=d44d68dec4ba37d924795baadbbe4145 looks quite useful. [13:47:23] swiert: good find [13:58:47] 03(NEW) Without tidy: wrongly closed table cell messes up display completely - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12221 normal; normal; MediaWiki: Page rendering; (ThomasBleher) [14:19:37] 03(mod) tables should have built in alternative row color - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=5093 +comment (10ThomasBleher) [14:52:18] 03siebrand * r28204 10/trunk/phase3/languages/Names.php: Add 'gan' as interface language [14:55:41] is Extension:Asksql really to be avoided, as suggested on http://www.mediawiki.org/wiki/Manual:%24wgDBsqluser? [14:56:02] it seems to work fine under 1.10 at least... if you add $wgGroupPermissions['sysop' ]['asksql'] = true [14:56:27] asksql is quite nice. [14:56:34] yeah [14:56:36] it was a core feature once [14:56:41] perhaps the docs reflect that? [14:56:47] the extension page itself doesn't say, don't use this, it just says WARNING [14:56:56] Dangerous if not configured properly! [14:57:40] brion added "The SQL user used for read-only queries in the (no longer existing) Special:Asksql." to http://www.mediawiki.org/wiki/Manual:%24wgDBsqluser, so i'm reluctant to contradict [15:04:25] well there's some basic problems :) [15:04:48] brion: not safe even for sysops? [15:05:03] if you restrict it only to core trusted people who could do it through command line or phpmysql or something, but find it easier to poke it into the wiki, then it's probably reasonably ok [15:05:14] unless it actually has security problems, of course :) [15:05:35] brion: sure [15:05:38] you're then just adding the general risk that wiki accounts could be hijacked and then sql access gained [15:05:54] if you make it generally available with a limited account, then you're exposing yourself rather badly [15:06:15] one issue is DoS -- it's easy to really grind the server to a halt with an ugly query [15:06:27] another is added exposure to mysql security problems [15:09:36] brion, jlerner: i hust joined, so i can only guess that you are talking about asksql. do you know about http://wiki.ts.wikimedia.org/view/Query_service ? [15:10:31] yes talking about asksql - i was only asking about installing on a private wiki [15:11:10] brion: enable asksql on wikipedia! :D [15:11:40] I can't wait to do stuff like JOINS with no conditions and see how bad it gets DoSed [15:12:10] conditionless JOINS with ORDER BY [15:12:41] AaronSchulz: as long as i've already distracted you - how goes FlaggedRevs? [15:13:07] well, I can't commit anything because of my university's shitty DNS servers [15:13:12] but it's going well [15:13:31] I've finally solved some old efficiency problems [15:13:51] great [15:13:57] brion: it thinks svn.wikimedia.org is at 145.x... [15:14:03] AaronSchulz: yeah 2002 was awesome days huh [15:14:08] asksql ROCKS [15:14:11] wait... it SUCKS [15:14:29] AaronSchulz: /etc/hosts? :D [15:14:35] add it to people not knowing how to write queries and that would melt us all [15:14:42] brion: tried that [15:14:55] it works in browsers (reeeeeally slow) and not at all in TSVN [15:15:34] um... install ubuntu? [15:16:05] lol, I'd like to buy a notebook with unbuntu soon [15:16:09] 03(FIXED) Update error page for Wikimedia squids - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10698 (10vasilvv) [15:16:15] It would help if I had $3000 ;) [15:16:32] <^demon> I would like to have $3000 too. [15:16:46] (I'd only use like 550 though) [15:17:03] I'd like an XO [15:17:11] how's flaggedrevs coming along? [15:17:13] <^demon> A kiss and a hug? [15:17:33] brion: nicely, I can't wait to commit [15:17:42] some schema tweaks in there for speed [15:17:57] *AaronSchulz whacks his school's shitty DNS server [15:18:22] brion: whatever, I'm going home tomorrow, that should "fix" it ;) [15:18:29] :D [15:20:46] maybe my bad pc luck is over [15:21:17] getting a mac? :) [15:21:24] I mean my monitor dies, I get sent a new main unit, works for a day, dies, then I get an adapter, and after a month, it works now [15:21:52] heh [15:22:14] so I rush into my mediawiki coding after all this time, and I can't commit b/c of shitty dns and shitty windows drivers/ect/hosts [15:23:00] *AaronSchulz hugs his new power adapter [15:23:19] this one doesn't hiss and make quite sparky noises [15:23:39] O_O [15:24:52] re [15:33:29] 03brion * r28205 10/trunk/phase3/includes/DefaultSettings.php: Tweak vs r28193: keep the rollback permission on sysops so it's still there when custom-removed from 'user' group. [15:34:08] 03maarten * r28206 10/trunk/extensions/Wikidata/ (6 files in 4 dirs): Improved randomdm processing, added the relation query, improved TBX. [15:35:59] brion: hmm, I should probably do final cleanup on mergehistory [15:36:13] do you think sysops can get that anytime soon? [15:37:15] i'll have to do a look-see over it [15:37:39] hello everyone. Is there a user migration tool? [15:38:02] migartion from where/what? [15:38:10] I have a user who was using two accounts and now wishes to consolidate those accounts into a single account [15:38:34] oh, MERGING users... [15:38:36] not sure [15:38:39] http://www.mediawiki.org/wiki/Extension:User_Merge_and_Delete [15:38:40] MERGING [15:38:51] I was searching with migration [15:38:57] my taxonomy sucks [15:38:57] luckyone: see that extension [15:39:06] SPQRobin: thanks very much [15:40:24] 03maarten * r28207 10/trunk/extensions/Wikidata/includes/api/ApiWikiData.php: Added some examples [15:40:35] btw, I think that this is proabaly one of the most powerful projects in the world [15:40:48] and I thank you all for your contributions [15:40:56] *luckyone hits up the donate page now [15:41:04] brion or tim are either present? [15:41:28] to support mediawiki, do you donate to wikipedia? [15:41:50] oy [15:42:11] luckyone: to wikimedia [15:42:22] luckyone: wikimedia foundation pays salary of some core developers and some contractors [15:42:27] so i think it's wise :) [15:42:30] but i'm biased ;) [15:42:50] hehe [15:43:21] brion: speaking of developers, when are you looking to fill those positions listed on the page http://wikimediafoundation.org/wiki/Job_openings [15:44:19] illmasterc: i'm not sure exactly :) the second round of hirings for the new office has been pushed back a bit until we get our bearings a bit better [15:44:28] so may be january or february? [15:47:08] brion: hate to ask here, but is there any other capacity (hypothetically of course) an eager developer could help with the move? [15:47:44] you in sf? [15:49:15] that's the kicker [15:49:17] .... not yet [15:49:21] heh [15:49:36] close though, connecticut [15:49:44] a short commute ;) [15:49:57] just roll up your sleeves and patch some bugs, man :D [15:50:06] only way to learn's by doing [15:50:46] agreed [15:51:15] I actually plan on using the software in a site I'd like to launch... [15:51:24] just getting familiar with it now [15:51:45] but I know php, ajax, etc... [15:52:02] it must feel rewarding to have been working on this project though huh? [15:52:27] pretty much awesome :D [15:53:23] done - enjoy the fiver and brion, thanks for helping me know where to put it [15:53:50] thanks luckyone! every bit counts :) [15:53:56] I think wikimedia is my new favorite charity [15:54:10] unless you donate like 5 cents in which case paypal gets it all ;) [15:54:28] we'll put it to good use :) [15:54:45] I will give more in the future, that is a promise [15:55:06] so wikimedia foundation encompasses all of those projects [15:55:16] *luckyone is in love [15:55:22] O_o [15:55:32] 0_o [15:55:36] brion: I want part-time work :) [15:55:48] keep up the great work, adios [15:56:01] wanna move to san francisco? :D [15:56:17] clean brion 's toilet :P [15:56:25] Comets, lol [15:56:52] gotta start somewhere ;) [15:57:06] lol [15:57:19] brion: hey, is Tim in sf? ;) [15:57:55] he's in sydney. *hell* of a commute! [15:58:44] we're mostly looking to do new hires on-site, though that's less of an issue with software developers who don't need to be trained from the bottom-up [15:58:58] we're mostly looking full-time, though, and per-project contracting slots [16:00:26] brion: how many positions are you looking to fill? [16:00:52] 2-3 was what we last discussed, i believe [16:01:00] we'll see how the budget looks when the fundraiser's over, eh? ;) [16:01:28] gah, I'm out of luck then [16:02:08] *Duesentrieb is generally interested - not until next summer though [16:02:16] yeah... planning on helping out for christmas [16:05:27] *brion starts planning his army of programmers [16:06:06] hmhm? [16:06:21] invade DokuWiki! attack! attack! [16:06:27] 03nikerabbit * r28208 10/trunk/extensions/LinkSearch/ (LinkSearch.php LinkSearch_body.php): [16:06:27] * (bug 12107) target was not passed properly to paging links [16:06:27] * E_STRICT Non-static method LinkSearchSpecialPage::initMessages() cannot be called statically [16:06:27] * E_STRICT Declaration of LinkSearchSpecialPage::execute() should be compatible with that of SpecialPage::execute() [16:06:27] * Add a space between namespace label and selector [16:06:30] * Added version number [16:06:44] 03vasilievvv * r28209 10/trunk/phase3/includes/api/ (10 files): Fix svn:eol-style and svn:keywords for files from merged APIEdit branch [16:06:46] brion: don't forget MoinMoin ;-) [16:07:02] *Nikerabbit suffer from missing articles [16:07:16] moinmoin's python... we can't compete with that shit until we bulk up some more :) [16:07:17] ha [16:08:10] brion: no wikiengine can be compared with MediaWiki [16:08:27] 03(FIXED) only 50 Results visibel when searching "mailto:" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12107 +comment (10niklas.laxstrom) [16:10:32] 03(mod) Identifier needed for MediaWiki generated pages in page source - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11988 (10brion) [16:16:59] 03catrope * r28210 10/trunk/extensions/Wikidata/ (17 files in 6 dirs): [16:16:59] WikiData: [16:16:59] * svn:eol-style = native [16:16:59] * Resolving error message TODO [16:16:59] * Registering API module in App.php [16:17:16] brion: are we still running on Parser_OldPP.php ? [16:17:42] afaik [16:18:00] well, I suppose you would know :-) [16:21:09] i'm trying to use a template in a template paramter, and it doesnt work. my syntax is {{Template1|Text with {{Template2|ParamForT2}} in it.}}. is that possible generally? i get the output: "{{{1}}}" instead of "Text with {{Template2|ParamForT2}} in it." [16:22:10] do you have a "=" in the text ? [16:22:46] ialex: no [16:23:57] What about creating includes/api/edit and includes/api/query dirictories? [16:24:37] ialex: oh wait, in template2 i have this: [16:24:45] ialex: there is the "=" [16:25:11] 03(mod) Error deleting an uploaded file - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12147 (10niklas.laxstrom) [16:25:19] 03(mod) PostgreSQL support (tracking) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=384 (10niklas.laxstrom) [16:25:40] Alp`: try {{Template1|1=...}} [16:26:59] ialex: that works, thx. why do i have to specify the paramnumber? [16:28:08] Alp`: if there's an "=" the the parser will consider all the text at the left of the "=" to be the name of the argument (or parameter) [16:28:37] ialex: ok, i understand [16:29:32] 14(WFM) A user couldn't edit! - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12160 (10niklas.laxstrom) [16:38:37] what svn client do i want to use on Windows? [16:39:47] 14(INVALID) "PHP Notice: Undefined index:" in Apache Errorlog post v1.11. 0 Upgrade - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12198 +comment (10niklas.laxstrom) [16:40:23] flyingparchment: TortoiseSVN [16:40:27] thanks [16:44:21] i have to reboot to install an svn client? wtf [16:45:18] flyingparchment: don't use windows :) [16:48:48] 03(ASSIGNED) Error deleting an uploaded file - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12147 +comment (10greg) [16:50:10] when is 1.12 releaseD? [16:50:21] 03nikerabbit * r28212 10/trunk/phase3/ (3 files in 3 dirs): * New configuration variable $wgExtraLanguageNames [16:51:17] should be soon [17:03:27] 03mkroetzsch * r28213 10/trunk/extensions/SemanticMediaWiki/maintenance/SMW_pingSemWeb.php: Skip all pages that do not have semantic annotation enabled for this script. [17:20:57] I can edit the MediaWiki:MonoBook.css site, but I don't know how this should help me makin an own stylesheet. It's just a normal page which is empty, didn't get the point [17:21:15] it should be MediaWiki:Monobook.css [17:21:26] (note capitalization) [17:21:33] yea, ok, ill see [17:21:48] is there any way to assign a group to visitors from a particular IP address (i.e., localhost) [17:21:54] automatically... [17:22:32] /* CSS placed here will affect users of the Monobook skin */ [17:23:03] that's all that stands there...i hoped to be able to edit the layout of the whole style, like Font, colors, backgrounds, sizes [17:23:26] yup thats it ;) [17:23:46] lol, but how do I do so? O_O [17:24:02] like get all the way everything new? [17:24:07] >,< [17:24:18] steal from wikipedia :P [17:25:02] wow, didn't thought to that one xD [17:25:08] thanks [17:26:54] after all its GFDL.. ;) [17:27:02] GFDL? [17:27:11] GNU Free Documentation License [17:27:19] ah, I c [17:27:20] :DD [17:27:31] *Cometstyles pats RoanKattouw :DD [17:29:28] hum [17:31:13] how can I find out if UserCSSs are allowed? [17:31:36] without having to look for $wgAllowUserCSS [17:32:05] minosa why? [17:32:28] the style I copied doesn't seem to work (I deleted browser cache) [17:32:47] working on MediaWiki:Monobook.css [17:33:29] minosa just create User:Minosa/monobook.css and copy your style there [17:33:50] Then *refresh the browser cache* (i.e. hold Shift and press the Reload button) [17:34:10] Then look through the source of the wiki page for User:Minosa/monobook.css [17:35:03] (If it still doesn't work) [17:37:54] hum, should I see the commands in User:minosa/monobook.css highlighted? [17:38:33] on wikipedia the code is highlighted on MediaWiki:Monobook.css [17:39:21] ok, ill make the background black to test if it applies it [17:40:36] i've got a problem [17:41:36] minosa: the highlighting is done by the SyntaxHighlight_GeSHI extension [17:41:43] MisterX: name it [17:43:06] 03(mod) Identifier needed for MediaWiki generated pages in page source - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11988 (10oq9pscb02) [17:43:54] Meh gotta go [17:48:53] hi there.. is there any way to disable/block a spefied user? [17:49:59] log in as a sysop and go to Special:Blockip [17:51:17] ialex: good. Thank you. [17:51:32] the reason is shown? [17:52:56] A database query syntax error has occurred. This may indicate a bug in the software. The last attempted database query was: (SQL query hidden) from within function "Block::insert". MySQL returned error "1054: Unknown column 'ipb_enable_autoblock' in 'field list' (localhost)". [17:53:20] im with 1.9.9 [17:53:22] im with 1.9.9 [17:53:24] im with 1.9.0 [17:53:27] sorry. [17:55:59] um my problem is that the allmessages special page won't appear up after my migration [17:56:15] 03greg * r28214 10/trunk/phase3/ (RELEASE-NOTES includes/DatabasePostgres.php): Call quote_ident on raw schema names, per bug 11952. [17:56:26] 03(FIXED) DatabasePostgres.php does not quote all schema names - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11952 +comment (10greg) [17:56:41] um my problem is that the allmessages special page won't appear up after my migration [17:56:47] have you any solution? [17:57:06] Hi, I have a question about importing templates. I'd like to use something like "Navbox" on my own wiki. Is there any easy way to import the Navbox template and all of it's dependencies? [17:58:12] clancy: http://www.mediawiki.org/wiki/Manual:NavFrame [17:58:43] here i'm again: um my problem is that the allmessages special page won't appear up after my migration [17:59:20] That looks very easy, thanks. [18:00:05] um my problem is that the allmessages special page won't appear up after my migration?? [18:00:23] can you help me out of this shit? [18:01:55] MisterX: i'm seeing the same problem, but i don't think it's related to a migration [18:01:58] i couldn't figure it out [18:02:37] mmm [18:02:47] earlier (on the other site) it just worked [18:03:02] so... [18:03:32] any ideas here? [18:04:21] I can't see my changes (although I deleted cache)...i type f.e. [18:04:21] "/* Headers */ h2, h3, h4 { -moz-border-radius: 1em; padding-left: .5em; margin-left: -.4em; margin-right: -.4em } h2 { background: #004D4D; border-bottom: 1px solid #ca8 }" [18:04:21] into my User:Minosa/monobook.css site [18:04:56] what could I be doin wrong? [18:05:27] is there any extension to embed a player to video files as mpeg, avi, xvid? [18:06:25] EmbedVideo ? [18:06:49] Cometstyles: not from external video services [18:07:26] http://www.mediawiki.org/wiki/Extension:Player [18:09:39] Cometstyles: but I wish to be codec independent, as flashmp3 extension, where I can upload and the flash extension plays it for me. [18:10:39] Extension:Flash Video ;) [18:11:37] Cometstyles: this works only with flv files. btw is a good extension and I use it. [18:11:47] ;D [18:12:10] I wish something to play mpeg and xvid files. if there isn't ok. [18:13:19] I still struggle with my problem :( [18:13:19] none that I know of :( [18:13:41] Cometstyles: ty [18:13:58] minosa, User CSS file ? [18:14:01] mm [18:14:13] what user css file? [18:14:21] minosa: have you made page purge? [18:14:34] 14(DUP) finding / defining a meaning for   in page titles - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12080 +comment (10brion) [18:14:36] I thought it was to be added to [[Mediawiki:Monobook.css]] ;) [18:14:40] 03(mod) Unicode whitespaces allowed in article title - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=1414 +comment (10brion) [18:14:55] no adding, completely new one [18:15:02] page purge? [18:17:08] brion-office: what do you thing about creating includes/api/edit and includes/api/query for Edit API and Query API [18:17:09] ? [18:17:26] 03(mod) Searching "music of" yields no results - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12081 +comment (10brion) [18:18:15] maybe [18:18:48] so may I commit them? [18:20:03] 03(mod) Attempts to upload large PDFs fail without error message ( may be true for all large files) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12090 (10brion) [18:20:31] 14(INVALID) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12091 +comment (10brion) [18:20:34] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12096 (10brion) [18:20:37] 03(mod) Users can login with global account and create an account in a wiki even if IP is blocked from account creations - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11148 (10brion) [18:20:43] 03(mod) some databases are locked; email and password might be out of date - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12097 (10brion) [18:20:48] 03(mod) Single login (Unified login) on all wikimedia projects - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=57 (10brion) [18:20:52] 03(mod) Temporary block may prevent a user from winning the unified account - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11149 (10brion) [18:20:54] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12098 (10brion) [18:22:39] 14(INVALID) text obscures other text in References - mozilla 3 column layout - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12092 +comment (10brion) [18:24:43] *VasilievVV feels he moved files incoorectly [18:26:06] 14(WFM) extra spaces are added to text of link when rendered by wiki - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12104 +comment (10brion) [18:39:32] 14(INVALID) notability deletion hard to object to - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12134 (10brion) [18:42:01] 03(mod) Please, may we use square brackets in JSON callbacks? - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12136 (10brion) [18:44:18] brion-office: is there a hook like "AbortMove"? [18:44:27] *shrug* [18:44:29] look and see [18:46:51] VasilievVV: there's only SpecialMovepageAfterMove [18:47:15] So there's nothing ot abort move? [18:47:33] just do it ;) [18:48:36] 14(INVALID) Zh $wgSitename still English - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12158 (10brion) [18:49:07] *VasilievVV didn't found something like tis in Title.php and SpecialMovepage.php, so he's going to introduce new one [18:49:35] but document it ;) [18:52:16] no more CIA ? :( [18:52:30] bring in the FBI boys then ;-) [18:52:44] :D [18:53:11] 03(WONTFIX) No login for certain actions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12179 (10brion) [18:55:48] 03(mod) dumpBackup.php stderr sent to stdout - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12184 (10brion) [18:55:58] how do i upload pictures onto a page in my wiki page? [18:58:19] ?? [18:58:19] Rich[Away]: have you uploaded the image to your wiki? [18:58:30] well i tried, but this error came up [18:58:32] i'll get it wait [18:59:19] Could not find file "C:\WINDOWS\Temp\phpF44D.tmp". [18:59:59] opps.. never seen this error [19:00:15] hey guys... is it possible to create an "if/else" template that will show certain values before 11:00am and others after 11:00am? [19:00:21] :( [19:00:26] i've seen some pretty complex ones on wikipedia [19:00:46] acook: yes [19:00:58] use Template:DATEDIFF [19:01:02] on enwp [19:01:10] ok, i'll take a look at it :) [19:01:12] thanks [19:01:23] you'll need Template:JULIANDATE as well, i think [19:01:24] anyone know how to fix it? [19:01:25] 04(REOPENED) Please, may we use square brackets in JSON callbacks? - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12136 +comment (10kent_brewster) [19:01:51] great. thanks [19:01:59] 03(WONTFIX) Use a meta description tag for better search-engine indexing - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12196 +comment (10brion) [19:02:26] no Template:JULIANDATE [19:03:41] maybe DAY [19:03:57] ya, that's it [19:04:46] wow, not a lot of documentation on Template:DATEDIFF [19:06:06] hello? [19:06:12] does anyone know how to upload images? [19:07:18] Special:Upload [19:07:30] ive done all that [19:07:36] Could not find file "C:\WINDOWS\Temp\phpF44D.tmp". [19:07:43] 03erik * r28218 10/trunk/extensions/LiquidThreads/LqtPages.php: calltime pass-by ref is disabled in recent PHP versions and will generate ugly warnings [19:07:44] i get that error when i try to upload a file [19:07:52] hmmm, never tried to run MW on windows [19:08:16] meh [19:09:18] I run MW on WinXP, but do not know this error :( [19:10:14] jlerner: looks like they use subst: ....but the template for subst is nothing [19:11:21] Hi... Can anyone help me with MediaWiki and IIS? [19:12:53] Raymond_ how did you get your uploads to work? [19:13:53] 03(mod) Please, may we use square brackets in JSON callbacks? - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12136 (10brion) [19:14:00] Rich[Away]: $wgEnableUploads = true; in localSettings.php. thats all. [19:14:44] you have to make your folder writeable [19:15:35] where does it save the images? [19:16:08] usually /images [19:16:19] in a template, how do I have {{myfoo|12}} output "December" etc [19:16:36] 03(WONTFIX) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12207 +comment (10brion) [19:17:07] 03(WONTFIX) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12208 +comment (10brion) [19:18:13] 04(REOPENED) Implement the Pure Wiki Deletion System - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3843 +comment (10brion) [19:18:39] 03(mod) some databases are locked; email and password might be out of date - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12097 (10pathoschild) [19:18:48] 03(mod) Attempts to upload large PDFs fail without error message ( may be true for all large files) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12090 (10dtrebbien) [19:19:01] 03(mod) Show some gadgets only for admins - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12211 (10brion) [19:19:07] 03(mod) Attempts to upload large PDFs fail without error message ( may be true for all large files) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12090 (10dtrebbien) [19:19:21] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12096 (10pathoschild) [19:19:31] ffs [19:19:33] vista is crap [19:19:36] 03(NEW) Add a Slideshow template to English Wikipedia based on existing French functionality (see Village Pump discussion) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12222 15enhancement; normal; MediaWiki: Images; (rupertclayton) [19:20:03] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12091 (10pathoschild) [19:20:06] 03(mod) Attempts to upload large PDFs fail without error message ( may be true for all large files) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12090 (10dtrebbien) [19:20:08] Rich[Away]: hehe, yeah, did you loose your network without reason and had to reboot? [19:20:12] 03(WONTFIX) Delete unused user accounts 2 - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12215 +comment (10brion) [19:20:15] no :p [19:20:24] i cant even choose the permissions of my own folder on the desktop [19:21:15] 03(mod) Single login (Unified login) on all wikimedia projects - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=57 (10pathoschild) [19:21:19] sigh [19:21:26] so guys let's say I wanted to do something like [19:21:43] wtf does everyone want to delete accounts [19:21:45] echo "This/page is/under a/long/namespace" | cut -f 1-2 -d'/' [19:21:52] as if it is somehow making progress or something... [19:21:55] I'd get "This/page is" right? [19:22:04] Is there a programmatic equivalent in mediawiki? [19:22:12] brion-office: I'll never get the answer to that ;) [19:22:14] probably using {{PAGENAME}} [19:22:15] 14(DUP) Image verication don' t respect visual imparements or text browsers (links/elinks) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12218 +comment (10brion) [19:22:16] 03(mod) CAPTCHA doesn't work for blind people - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=4845 +comment (10brion) [19:22:19] what is "z-index" for? [19:22:47] 03(WONTFIX) Standardize on the name "images", retire "files" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12219 +comment (10brion) [19:24:31] 14(INVALID) Messages*.php:'copyright' clamped to $wgLanguageCode - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12220 +comment (10brion) [19:25:53] 03(mod) Identifier needed for MediaWiki generated pages in page source - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11988 (10brion) [19:26:29] what do people use to edit php in windows? [19:26:30] 03(mod) Email confirmation status on Special:MergeAccount - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12098 summary (10pathoschild) [19:26:53] notepad.. [19:26:55] or wordpad [19:27:02] flyingparchment: i like jedit.org [19:27:14] rich: serious answers only :P [19:28:25] flyingparchment: http://www.pnotepad.org/ is neat too [19:29:05] thanks, i'll try both.. [19:29:28] argh ffs [19:29:32] whyy cant i edit anything in Vista? [19:29:45] i try to remove the "Read Only" on a folder, when i click ok it just goes back to "Read Only" [19:29:51] Vista sucks. [19:29:55] are you an admin on the box? [19:30:02] yes [19:31:00] how can vista be so rubbish [19:32:51] microsoft invested a lot of money into making it that way [19:33:32] Raymond_: sweet [19:33:34] I'll try that [19:33:47] might be faster and less language buggy than dev-PHP [19:34:16] I can collapse functions/classes/subroutines! ;) [19:34:33] hmm [19:34:39] ive just tried it on xp and its still the same... [19:35:43] in the permission window for the images folder, the value of the permissions has to be 755 right? [19:36:26] Raymond_: does it support utf8 [19:36:47] AaronSchulz: sure :) [19:37:14] finally [19:37:50] don't all editors support utf-8 nowadays? [19:38:17] i have a function that convert arabic numbers in roman numbers, how can I implements it in mediawiki with a command like {{#roman|}} ? [19:38:39] ok, time to fix girly pinkish background [19:38:49] hmm, it doesn't look like that template will do what i want it to do. it should basically be a template that says "if time less than 11:00am {{{1| }}} else if time greater than 11:00am {{{2| }}}" [19:39:49] 03(mod) Kazakh message updates - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12145 +comment (10alefzet) [19:39:59] 04(REOPENED) Kazakh message updates - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12145 (10alefzet) [19:40:26] meh, cant i just just do a simple in the edit page? [19:40:46] there we go [19:41:48] ? [19:41:57] !externalimages | Rich[Away] [19:41:57] Rich[Away]: To allow images from elsewhere to be included in your wiki, see . To limit this to some specific sources, see . [19:43:24] where can i find $wgAllowExternalImagesFrom [19:43:24] ? [19:43:34] LocalSettings.php [19:44:28] well for me its in defaultsettings.php [19:44:36] you shouldn't edit that [19:44:40] so i just copy and paste the whole $wgAllowExternalImagesFrom to localsettings.php? [19:44:44] yes [19:45:05] does it matter where i put it? [19:45:38] after require_once("includes/DefaultSettings.php"); or something like that [19:45:41] put it near $wgEnableUploads [19:45:47] put it at the end of the file [19:45:49] yeah, that works [19:46:23] make sure to put $wgAllowExternalImages = true; [19:46:40] 03(mod) No reason dropdown box on image deletion pages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12214 +comment (10brion) [19:46:53] Raymond_: this is the best thing since bread & butter [19:47:20] so does anyone know anything about if/else templates? [19:47:38] 03(mod) Please, may we use square brackets in JSON callbacks? - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12136 (10roan.kattouw) [19:47:47] AaronSchulz: great :) now you will produce more code... [19:48:00] so fast too [19:48:36] acook: http://meta.wikimedia.org/wiki/Help:ParserFunctions [19:49:32] hmm, good start. thank you [19:49:51] 03brion * r28219 10/trunk/phase3/maintenance/wikipedia-interwiki.sql: * (bug 12209) Fix zh-classical Wikipedia interwiki [19:50:46] 03(FIXED) Invalid zh-classical interwiki in maintenance/ wikipedia-interwiki.sql - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12209 +comment (10brion) [19:51:08] ok now it shows the image, but is it possible to show it on the right in a box with the text going round it? [19:51:14] or ruond the left of it.. like in wikipedia [19:52:32] ?? [19:53:23] [[Image:Example.jpg|right|blah blah]] [19:53:43] or [[Image:Example.jpg|thumb|right|blah blah]] [19:53:54] and in Example.jpg i can put the link of the image? [19:53:55] but that won't work with external images [19:54:01] 03raymond * r28220 10/trunk/phase3/languages/messages/ (4 files): [19:54:01] * (bug 12145) Update Kazakh translations [19:54:01] Patch by AlefZet [19:54:06] you need to upload it [19:54:12] 03(FIXED) Kazakh message updates - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12145 +comment (10raimond.spekking) [19:54:31] ive just been through all that [19:54:32] you could try
http://whatever/image.jpg
[19:54:35] Rich[Away]: yea, upload it - or may your own floating box with caption [19:54:39] it's not so hard. [19:54:50] it is when u get an error that i kept coming up with .. [19:54:54]
and a few tweaks [19:55:30] bah, flyingparchment was faster again - i can't read *while* i type :P [19:55:39] :p [20:01:44] acook: yeah, parserfunctions [20:03:44] hmm... is there a way to do something like {{ #ifexpr: #time: h < 11 | yes | no }} [20:03:55] i don't think it likes the 2 # [20:04:29] {{ #ifexpr: {{#time:h|-11 hours}}| yes | no }} [20:04:57] woops {{ #ifexpr: {{#time:h}}<11| yes | no }} [20:05:35] ahh, yeah, that'll do it :) [20:08:15] hey [20:08:22] ialex: what time will that follow? is there a way to make it follow local (system) time? [20:08:22] how do i enable .ogg uploads [20:08:31] it tells me i can only ul jpg, png and gif [20:11:40] looks like its UTC or something? [20:14:48] what are people using for developing php and mediawiki in general? [20:15:00] 03raymond * r28221 10/trunk/phase3/ (3 files in 3 dirs): * (bug 11657) Support for Thai solar calendar [20:15:07] sick of dreamweaver... [20:15:13] eclipse with php plugin? [20:15:36] how do i fix this [20:15:37] Upload warning [20:15:37] ".ogg" is an unwanted file type [20:15:37] List of allowed file types: png, gif, jpg, jpeg [20:15:47] hahah slak [20:15:49] you scrub [20:16:32] acook: i think it's UTC but you can put a third non empty parameter to #time to have the local time [20:17:02] {{#time:H | -7 hours}} ? [20:17:07] that should work huh? [20:17:14] 03(FIXED) Localization of Thai year - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11657 +comment (10raimond.spekking) [20:25:55] i have a problem with the extension ControlStructureFunctions [20:26:10] Call to undefined method ExprParser::addmessages() in ControlStructureFunctions.php [20:26:49] but i added Expr.php ! i don't know where this ExprParser::addmessages is conteined [20:34:06] Anyone notice CNN.com quoting Wikipedia now, for "Nuclear" references on their segments? [20:34:20] I have their movie paused, and googled a string from a piece they just showed, and it's directly from Wikipedia [20:39:25] how can I make the front page the index of all other wiki pages within my wiki? [20:39:30] thanks for the help in advance... [20:45:08] is there a way to tell mediawiki to not cache particular pages, but still cache the rest of the site by default? [20:45:22] like through a magic word or something? [20:48:41] i'm not sure, but i'd be curious myself [20:49:54] http://www.mwusers.com/forums/showthread.php?t=3220 [20:52:00] ooh, pretty ingenious [20:52:21] yeah :) [20:52:28] not sure if it's working correctly for me tho [20:53:21] I'm trying something like {{:Special:Search}} [20:53:54] and put a time function - it doesn't seem to update [20:57:46] Hi all, is there a way to create new groups in mediawiki ? [21:05:58] acook: pages are heavily cached in mediawiki [21:06:23] the #time function can take a long time to update if you don't purge the page [21:06:48] !usergroups | Hydrant [21:06:48] Hydrant: For information on customizing user access, see . For common examples of restricting access using both rights and extensions, see . [21:06:52] 03(mod) Show some gadgets only for admins - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12211 (10le.korrigan) [21:08:12] 03brion * r28222 10/trunk/phase3/ (5 files in 3 dirs): [21:08:12] * (bug 12184) Exceptions now sent to stderr instead of stdout for command-line [21:08:12] scripts, making for cleaner reporting during batch jobs. PHP errors will also [21:08:12] be redirected in most cases on PHP 5.2.4 and later, switching 'display_errors' [21:08:12] to 'stderr' at runtime. [21:08:26] carambola: there's a no cache magic word extension, http://www.mediawiki.org/wiki/Extension:MagicNoCache [21:08:59] 03(FIXED) dumpBackup.php stderr sent to stdout - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12184 +comment (10brion) [21:09:49] MZMcBride: thanks... trying it now instead of my hack-job extension that i'm now writing [21:09:50] is there a better diff tool for mediawiki? [21:10:34] how do i embed css in a given page with ? i don't want it in commons, nor as an external css file. i have a table in a page with many rows on it and i don't want to put duplicate inline css repeatedly. [21:11:03] 03(mod) Show some gadgets only for admins - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12211 +comment (10daniel) [21:11:07] Blu3: modify the appropriate css file? [21:11:49] Blu3: sorry you mean for a specific article only? [21:12:00] yes [21:12:01] brion-office: how about a Gadgets component on bugzilla? [21:12:05] MZMcBride: eek! it threw an exception! [21:12:43] carambola: well that's no good; tell the author [21:13:02] ah... figured it out [21:13:08] sec [21:13:14] the "posted" code only works for <1.11 [21:13:27] the fix for 1.11 is below the code posting [21:13:27] Blu3: don't know then; maybe there is an extension; external css would work though [21:13:34] *nod* [21:13:35] Duesentrieb: you want to be default assignee? :D [21:13:51] Blu3: you can modify [[MediaWiki:Common.css]] or [[MediaWiki:Monobook.css]] on the wiki [21:14:35] is there a better diff tool for mediawiki? [21:14:57] Duesentrieb: added [21:15:09] brion-office: hm... that's actually tricky. no, probably not. i'd like to be so i get a mail when someone adds a bug there. but if it's assigned to me automatically, people will asume i'll take care of it.... [21:15:15] brion-office: thanks. [21:15:21] crap...that doesn't work carambola [21:15:33] heh [21:15:34] someone should fix it: http://www.mediawiki.org/wiki/Extension_talk:LO_Parser_Functions#Wrong_Expr.php [21:15:43] 03(mod) Show some gadgets only for admins - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12211 (10daniel) [21:16:12] i'm using a #time function and if the page is cached I could get the wrong results [21:16:33] brion-office: hm, requsts for enabling gadgets would not go in there, right? those are site config stuff... [21:16:40] according to one article, he transcluded a special page...since they don't get cached [21:16:47] but it's not working [21:17:39] 03(mod) Extension:Gadgets with strange page caching (?) bug on special: preferences - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12128 (10daniel) [21:18:26] acook: did you try the magicnocache extension? [21:18:38] no, didn't know it existed [21:18:50] blue_asterisk: i'm not sure other diff engines are possible.. i know the installed one is diff3 [21:19:03] acook: there's a no cache magic word extension, http://www.mediawiki.org/wiki/Extension:MagicNoCache [21:19:03] thanks...i'll give it a try [21:19:05] if anybody is interested, "User:Cacycle/wikEdDiff" looks good [21:19:48] MZMcBride: what's the diff between 'diff' and 'diff3'? [21:20:01] hehe [21:20:19] diff3 is just the name of the unix program: http://en.wikipedia.org/wiki/Diff3 [21:21:40] MZMcBride: that worked... thank you [21:21:55] no problem [21:22:09] Duesentrieb: right, theoretically [21:23:04] i wonder tho if there's a way to parse that magic word through a template [21:24:01] blue_asterisk: see http://www.mediawiki.org/wiki/Manual:$wgExternalDiffEngine [21:24:28] MZMcBride: thanks :) [21:24:30] acook: you could just stick it in a template [21:24:41] yeah, it looks like if i put __NOCACHE__ in a template, and then call the template...it actually shows up as __NOCACHE__ [21:25:19] MZMcBride: http://www.mediawiki.org/wiki/Manual:%24wgUseExternalDiffEngine [21:25:31] "" [21:25:33] This feature has been deprecated and should not be used with current versions of MediaWiki. [21:25:33] This feature was deprecated (or possibly removed completely) in version 1.6.0. [21:25:34] "" [21:25:51] *blue_asterisk hopes 2 lines of copy/paste is ok [21:26:31] there are two different settings, one is deprecated, the other isn't [21:27:01] acook: what's wrong with just having "__NOCACHE__" in the article? [21:27:07] ah [21:27:17] the link i sent you was correct :) [21:27:37] well, nothing except this template will be used on hundreds of pages... just easier to throw it in the template [21:28:18] ahh [21:29:18] anyone know of a good plugin/extension for putting charts/graphs on a mediawiki? [21:29:31] yeah... i'm using it for an "ask" statement in semantic mediawiki... it'd be nice if i could get the ask statement to include __NOCACHE__ automagically [21:30:23] frieze: http://www.mediawiki.org/wiki/Extension%3ADia exists. I think there's also one for UML. And then there's WikiTeX with full tex support, iirc. [21:30:28] MZMcBride: but I don't think this will solve the problem of going through hard-to-read diffs such as a random comma placed on one line along with another change [21:30:45] on the same line [21:31:39] if the comma was highlighted somehow, along with only the words that change, it would be much better [21:31:44] Duesentrieb: that's actually pretty cool, but I may have misspoken. I mean line graphs like stock graphs [21:31:52] just depends on which diff engine you use; not really sure what the options are [21:32:00] why mediawiki goes in timeout ! [21:32:27] carambola: you could try talking to the author [21:32:57] it seems that the extension doesn't create an actual magic word; it seems to be a pseudo-magic word [21:33:02] perhaps that could be fixed.... [21:33:21] frieze: ah - yea, that ambiguety in "graph" drives me crazy. your type of graph is also called a "plot". hold on a minute, i'm doing a quick collection of graph-related extensions. the need a category anyway. [21:34:22] How do you get rid of the title heading for the main page, like Wikipedia and Commons do? [21:34:27] like how wikipedia and commons do? [21:34:31] !csshideheader | wknight8111 [21:34:31] wknight8111 : To hide the header on the main page, you need to add this CSS to the wiki page [[MediaWiki:Common.css]]: "body.page-Main_Page h1.firstHeading { display: none; }". If your main page's title is not "Main Page", you'll need to change it accordingly (look at the class on the tag in the HTML source). [21:34:33] yeah, i think so [21:34:39] i'll leave a comment [21:34:55] thank you [21:35:02] no problem :) [21:35:24] 03brion * r28223 10/trunk/phase3/ (RELEASE-NOTES includes/DifferenceEngine.php): [21:35:24] * (bug 12148) Text highlight wasn't applied to cleanly deleted and added [21:35:24] lines in diff output [21:35:24] Note this still has to be replicated in wikidiff2 [21:35:34] 03(mod) Text that's new should be colored the same as text that' s changed - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12148 (10brion) [21:36:08] Hey all. [21:36:20] I am havnig an issue with my custom css in the mediawiki being ignored [21:36:37] And also that turning off html protection (as I am the only editor) isn't working at all. [21:36:40] user css? or sitewide css? [21:36:42] I have no idea why - no error, just nothing happens. [21:36:48] Sitewide (MediaWiki:common.css) [21:37:00] did you clear your cache? [21:37:03] html protection requires locking down the wiki, as a security feature [21:37:06] Ctrl-F5 yes :) [21:37:18] MZMcBride, what do you mean? Since only I can edit, surely it is pretty locked down? [21:37:19] or rather, html unprotection [21:37:49] you're talking about $wgRawHtml ? [21:38:23] frieze: http://www.mediawiki.org/wiki/Category:Graph_extensions [21:38:24] Yeah [21:38:46] it requires grouppermissions to be set in order to work [21:38:59] frieze: that category has both types of "graphs". actually, there are also references to a gnuplot extension, but i can't find it [21:39:17] seanw: more info here: http://www.mediawiki.org/wiki/Manual:$wgRawHtml [21:39:33] 03(mod) sep11 wiki yet listed on "Wiki does not exist" - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12140 (10brion) [21:39:43] yeah, saw some plot stuff there myself [21:39:45] thanks for looking [21:40:04] I may have to just cross script something else in I find in the wilds of the interweb [21:40:29] http://pastebin.com/m354e959 <-- MZMcBride, I ahve that currently [21:40:29] frieze: ah, here it is, not moved to mediawiki.org yet: http://meta.wikimedia.org/wiki/Gnuplot [21:41:19] hm, maybe i'll just move it now. [21:41:29] be bold, and all that. [21:41:44] be bold indeed :) [21:41:53] brion-office: is there a "due process" for moving stuff from meta (besides not moving GFDL stuff into Help:)? [21:42:07] or should i just go ahead? [21:44:04] 03(NEW) Add a tag for inline math - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12223 15enhancement; normal; MediaWiki extensions: texvc; (psychomessiah) [21:46:00] seanw: it should work with $wgGroupPermissions['*']['edit'] = false; and $wgRawHtml = true; [21:46:10] it does on mw 1.11, at least [21:48:15] Put it this way - it doesn't :-) [21:49:23] it is just not processing the , etc. tags? [21:49:36] Take a look on silentflame.com to see [21:49:42] Basically, they jsut appear as plaintext [21:49:51] It is putting < and > in [21:51:25] seanw: it has to go inside tags to work [21:51:56] ha [21:51:57] Thanks :) [21:52:16] no problem (i learned something new) :) [21:52:42] Excelelnt, so onto problem the second [21:52:54] CSS styles fromp my sheet are not working in this theme it seems [21:53:06] !pagecss [21:53:06] http://www.mediawiki.org/wiki/Extension:PageCSS [21:53:21] seanw: styles in the html body are illegal [21:53:59] I know, that's not what I am trying to do [21:54:18] I nabbed table.wikitable {} from meta and put it in common.css [21:54:27] Did a Crtl-F5, but it won't work [21:54:39] it should... get firebug and check it out [21:55:46] Firebug, eh? [21:55:48] *seanw investigates [21:57:27] seanw: you bypassed your cache and the server's? [21:58:40] seanw: actually... Ctrl-F5? sure it shouldn't be Shift-F5? or try Ctrl-R [21:58:58] ctrl+f5 is for IE [21:59:09] shift+refresh is for fx [21:59:20] and I have no idea about safari or opera :P [21:59:32] heh [21:59:36] 03(mod) Edit form eats heading CRs on save/preview - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12130 (10brion) [21:59:37] I have always used ctrl in FF and it has worked. [21:59:51] Yeah, all of thoes make no difference :D [22:00:04] Okay, so firebug is telling me mediawiki has a nice selection of jscript errors in it. [22:00:08] This is to be expected? [22:00:27] 03(mod) Edit form eats heading CRs on save/preview - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=12130 (10brion) [22:00:30] um, are you sure common.css is supported in your version of mediawiki? [22:00:37] perhaps, since I don't think it checks wikibits.js before spitting out errors that certain functions are defined... [22:01:47] MZMcBride, well, when I initialyl went to the page in MediaWiki: I got the comment saying "stuff here affects all skins", so I presume it does.. [22:02:12] yeah, as i recall, you can go to MediaWiki:Blarghblargh.css and it would say that... [22:03:24] common.css has been around for a while [22:03:50] yeah, but it seems his page source isn't importing it [22:04:01] Hmm [22:04:11] Shall I try slapping it in monobook.css instead? [22:05:11] seanw: 1.9 is a bit oldish. though i think common.css should work there. unless you disabled it. [22:05:39] Hmm [22:05:45] Could it be my non-standard theme? [22:05:58] seanw: actually, you are using a heavily hacked skin. sooo... perhaps you are simply never adding the head bit that contains this stuff? [22:06:05] yep... [22:06:06] Quite possibly! [22:06:12] So I need to slap that in. [22:06:15] Hmm.. [22:06:18] compare your to the one one wikipedia [22:06:28] compare your head generation code to the one in the monobook skin [22:06:42] if you want to use content in MediaWiki:Common.css, it's best to import it at some point :) [22:06:42] Well, I need to get a fresh copy of mediawiki to get a copyu of that head code! [22:06:52] But now it is time for bed - thanks for your help guys. [22:10:38] seanw: don't hack monobook... copy&modify... [22:10:56] Oh, I agree. This was a skin I downloaded that I *then* hackedf [22:11:00] So it has been messed up twice :D [22:17:10] 03raymond * r28224 10/trunk/phase3/ (RELEASE-NOTES languages/Language.php): [22:17:10] * (bug 10166) Fix a PHP warning in Language::getMagic [22:17:10] Patch by Nate Lallouche [22:17:27] 03(FIXED) bug in Language.php function getMagic - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10166 +comment (10raimond.spekking) [22:48:22] 03yaron * r28225 10/trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php: [22:48:22] Fixed formatting, added new sffPrintRedirectForm() function, fixed [22:48:22] bug with namespace labels [22:49:41] Why this article http://fi.wikipedia.org/wiki/Saulaus isn't in http://fi.wikipedia.org/wiki/Luokka:Roskaa (Category:)? [22:52:06] 03yaron * r28226 10/trunk/extensions/SemanticForms/languages/ (SF_LanguageZh_cn.php SF_LanguageZh_tw.php): Fixes from Roc Michael [22:58:15] 03yaron * r28227 10/trunk/extensions/SemanticForms/specials/SF_CreateForm.php: Modified to use new sffPrintRedirectForm() function for printing redirect form [23:09:03] 03yaron * r28228 10/trunk/extensions/SemanticForms/specials/ (SF_AddData.php SF_EditData.php): Replaced call to $sfgFormPrinter->redirectText() with sffPrintRedirectForm() [23:40:51] 03yaron * r28229 10/trunk/extensions/SemanticForms/specials/SF_CreateCategory.php: Fixed bug in namespace labels, added "Save" button, replaced redirect code with sffPrintRedirectForm() [23:42:15] 03yaron * r28230 10/trunk/extensions/SemanticForms/specials/ (SF_CreateProperty.php SF_CreateTemplate.php): Added "Save" button, replaced redirect code with sffPrintRedirectForm() [23:50:24] 03yaron * r28231 10/trunk/extensions/SemanticForms/includes/SF_FormPrinter.inc: [23:50:24] Set days and months in dates to always get padded to two digits, set [23:50:24] "wrong form" warning to only appear when editing a page, added handling for [23:50:24] new "class" field property, replaced redirect code with new [23:50:24] sffPrintRedirectForm() function [23:51:27] 03yaron * r28232 10/trunk/extensions/SemanticForms/COPYING: Fixed extension name - didn't notice that before [23:52:25] 03yaron * r28233 10/trunk/extensions/SemanticForms/INSTALL: New version: 0.7.9 [23:59:29] hiya just have a quick question regardig a prob im encountering with thumbs atm (and couldn't seem to find on the bugzilla). Is there a known bug where the minor mime type is suffixed with surplus data (making the streaming fail)