[00:20:22] hi all [00:20:52] quick question, i have googled this but cant find an answer, how do I add groups to my mediawiki installation? I am running 1.10 [00:23:19] Just add $wgGroupPermissions lines for them and they'll magically appear. [00:23:24] They don't have to be separately declared. [00:23:35] hmm, ok. thanks for that [00:28:32] Hello, Whenever I try installing Media Wiki, the installation screen stops and says done after the word, PHP 5.2.3 installed. Any suggestions or how to install Media Wiki in manual mode? My SQL and PHP is up to date. [01:07:12] 14(INVALID) Closure_of_Chamorro_Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10706 +comment (10node.ue) [01:12:00] 03(mod) Closure_of_Chamorro_Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10706 (10cbrown1023) [01:13:04] Is there some sort of tool for generating a series of flat html pages, a pdf, a chm file or the like from a mediawiki wiki? [01:15:57] How can I remove background "headbg.jpg" [01:16:00] ? [01:16:22] (1.6.10 for PHP4) [01:18:19] *tylermenezes wonders if anyone is here [01:20:45] Hi, folks [01:20:57] I'm in trouble with a mediawiki installation [01:21:11] I'm in trouble with the Tombstone Blues [01:21:15] the wiki has been stopped during August [01:21:36] and yet it completely crumbled down on me [01:21:44] check SQL [01:21:49] with loads of SQL errors [01:21:59] paste an error here [01:22:03] and I have no idea what's going on [01:22:06] link? [01:22:21] this one is the latest: 1194: Table 'bw_objectcache' is marked as crashed and should be repaired (localhost)". [01:22:34] http://ficcao.online.pt/bibliowiki [01:22:41] you have phpMyAdmin? [01:22:53] yeah [01:23:14] hang on [01:23:23] it seems I have a crashed table: bw_objectcache [01:23:39] what I can't understand is how a table crashes just like that [01:24:08] Candeias, MyISAM is unstable. [01:24:10] Repair it. [01:24:17] It could be any of a ton of things. [01:24:23] yah, thats what i was going to say [01:24:27] Actually, you can truncate it first if you want. [01:24:29] Or drop and recreate. [01:24:44] objectcache is just a cache and its contents aren't important, they'll just be regenerated. [01:24:49] not if there's a bunch of tables that are corrupt [01:24:56] Yes, then you have to repair those. [01:25:03] i have a feeling its going to have more than one error [01:25:12] but try dropping the table first [01:25:15] Should be quick if they're small. If they aren't, you'll need to exercise care. [01:25:24] if theres others, repair those [01:25:27] well... I'm experienced as a wiki editor, but I'm new to this db management thing [01:25:49] well try that [01:25:53] and let us know [01:26:18] OK, table dropped. Now what? [01:26:25] SHOW CREATE TABLE bw_objectcache; DROP TABLE bw_objectcache; CREATE TABLE `bw_objectcache` ( all the stuff from the SHOW CREATE TABLE statement goes here ); [01:26:33] Well, you've dropped it already. [01:26:37] So let me get you the spec. [01:27:35] CREATE TABLE `bw_objectcache` ( `keyname` varchar(255) NOT NULL default '', `value` mediumblob, `exptime` datetime default NULL, UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`)); [01:27:39] Try that. [01:27:52] <_Danny_B_> tylermenezes: still want to remove bgr? or already got solution? [01:28:09] Ideally I would suggest CREATE TABLE `bw_objectcache` ( `keyname` varchar(255) NOT NULL default '', `value` mediumblob, `exptime` datetime default NULL, UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`)) ENGINE=InnoDB; for better reliability. [01:28:19] But somewhat lower speed, for you. [01:28:44] found it [01:28:58] my find-and-replace function doesn't work o.o [01:29:19] how can i change the width of the left pane, though? [01:29:27] i need to make the logo image 50px wider [01:29:35] OK, that's a SQL query I can use as is, right? [01:29:43] (just checking) [01:30:23] ops... [01:30:27] seems it isn't [01:30:36] #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '†[01:30:52] seems theres a problem with copy and paste, then [01:31:01] trying step by step [01:31:15] wait [01:31:20] how many fields are there? [01:31:20] i see the problem [01:31:28] remove the ENGINE= [01:31:29] part [01:31:46] CREATE TABLE `bw_objectcache` ( `keyname` varchar(255) NOT NULL default '', `value` mediumblob, `exptime` datetime default NULL, UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`)); [01:31:51] try that [01:32:28] nope [01:32:31] same turnout [01:32:35] 03(mod) Closure_of_Chamorro_Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10706 (10node.ue) [01:32:39] hang on [01:32:44] ill run it [01:33:04] wikibugs: that's a rebuttal towards my comment probably, I better go look! [01:33:08] I'm going step by step [01:33:16] works fine for me [01:33:40] your just copy-pasting this into phpMyAdmin SQL area in the correct DB, right? [01:33:46] they're full of it [01:33:49] yes [01:33:53] (@wikibugs) [01:33:57] 03(mod) Closure_of_Chamorro_Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10706 +comment (10cbrown1023) [01:34:22] I can do it another way [01:34:39] idk [01:34:50] but the SQL executes okay for me [01:35:06] and I'm trying to, but is kinda confusing to translate that one query into a step by step filling of tables [01:35:40] for instance, I don't see here where can I put default values [01:35:50] OH [01:35:55] forget about it... [01:36:00] ... [01:36:08] did you fix it? [01:37:57] I'm still on it [01:38:17] look: can one table have one "unique key" and another key? [01:38:36] 'cause I don't see here a place for an extra key [01:38:42] extra key? [01:39:19] I mean this part: UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`)) [01:39:32] there's one key that's unique and a second key [01:39:55] try this SQL [01:40:01] i just dumped it from mine [01:40:01] CREATE TABLE `objectcache` ( [01:40:01] `keyname` char(255) character set latin1 collate latin1_bin NOT NULL default '', [01:40:01] `value` mediumblob, [01:40:01] `exptime` datetime default NULL, [01:40:02] UNIQUE KEY `keyname` (`keyname`), [01:40:04] KEY `exptime` (`exptime`) [01:40:06] ) ENGINE=MyISAM DEFAULT CHARSET=latin1; [01:40:08] actually [01:40:11] wait a second [01:40:27] CREATE TABLE `bw_objectcache` ( [01:40:27] `keyname` char(255) character set latin1 collate latin1_bin NOT NULL default '', [01:40:27] `value` mediumblob, [01:40:27] `exptime` datetime default NULL, [01:40:27] UNIQUE KEY `keyname` (`keyname`), [01:40:28] KEY `exptime` (`exptime`) [01:40:30] ) ENGINE=MyISAM DEFAULT CHARSET=latin1; [01:41:06] CREATE TABLE `bw_objectcache` (`keyname` char(255) character set latin1 collate latin1_bin NOT NULL default '', `value` mediumblob, `exptime` datetime default NULL, UNIQUE KEY `keyname` (`keyname`), KEY `exptime` (`exptime`)) ENGINE=MyISAM DEFAULT CHARSET=latin1; [01:41:11] that last one :P [01:41:24] ow man [01:41:26] :) [01:41:53] did that work? [01:41:58] same result [01:42:08] oh... :( [01:42:20] ill send you a screenshot of my table struct [01:42:22] hm [01:42:38] 03(mod) Closure_of_Chamorro_Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10706 (10cbrown1023) [01:42:43] there's an icon in front of `exptime` datetime default NULL , [01:43:13] seems the problem is there [01:44:51] http://viewfromhear.nfshost.com/struct.jpg [01:44:58] there's my table structure [01:46:00] qc_type is the index [01:47:07] hm... that's funny [01:47:21] ?? [01:47:23] it seems I can't insert a BINARY attribute [01:47:37] that might be the problem overall [01:47:48] something is wrong with your MySQL [01:47:54] the binary isn't working [01:48:07] hm... [01:48:15] that's on the server side? [01:48:41] does anybody know what file the text in the upper-right (the user text, like preferences) is located in? [01:49:09] OK, I created the table even without that attribute [01:49:19] but will it work? [01:49:21] and it worked this time [01:49:21] if not I'll keep looking, but if someone knows right off-hand.. [01:49:36] the creation at least [01:49:39] now what? [01:49:41] it works!!! [01:49:57] YES! [01:49:59] :) [01:50:10] so you were having a problem with BINARY attr [01:50:15] i'd talk to your host [01:50:25] im not sure how reliable this will be without that [01:50:26] well, that's the whole problem [01:50:30] I've tried [01:50:33] the cache might not work without that [01:50:35] and I got no reply [01:50:40] who is your host [01:50:46] ? [01:50:47] a portuguese company [01:50:52] Netcode [01:51:06] im on Nearly Free Speech .NET [01:51:11] they rock :D [01:51:21] These guys also used to [01:51:33] same with my old hosting company [01:51:36] but for the last months it has been a complete mess [01:51:39] which is why i moved [01:51:54] plus i pay like 30 cents a month here ;P [01:52:03] anyway, what could happen without that attribute? [01:52:14] the cache function might crash [01:52:17] try editing a page [01:52:19] again? [01:52:23] and then viewing it a few times [01:52:39] if it doesn't give you some weird error, it works fine :P [01:53:42] seems to be OK [01:53:58] holy cow [01:54:06] yay! [01:54:30] lemme save that little JPG of yours... :) [01:54:36] sure [01:54:49] just in case something else happens :) [01:54:55] exactly [01:55:04] so does anyone here know how to solve my problem? i need to make the image logo 50px wider [01:55:15] also, only needs to be 55px high [01:55:38] i have an installation problem and wen i run the install script, it stops at the PHP 5.2.3 installed part and the web browser says its done. [01:56:14] not getting any errors? [01:56:18] nope [01:56:42] hmm [01:57:00] i can't remember what gets checked after php version [01:57:05] but thats probably the problem [01:57:34] do u think it would be anything to do with the php_info command, cuz my host disables it for 'security reasons' [01:57:49] OK, I'm off now [01:57:52] thanks tyler [01:57:57] no problem [01:58:03] hope wiki works ok from now on [01:58:04] (say, that's a portuguese surname you've got there?) [01:58:10] yeah [01:58:13] my dad is [01:58:15] does anybody know which file creates the pages, all with MySQL and all? [01:58:20] know the lingo? [01:58:26] not really :P [01:58:31] you should learn [01:58:34] yeah [01:58:36] i might [01:58:37] and I should learn MySQL [01:58:38] ;) [01:58:41] yes :P [01:59:06] CyberXZT: it probably is the php_info [01:59:14] off now [01:59:17] not sure why they'd disable it [01:59:19] ok x.x gotta talk to my host then [01:59:19] cya and thanks again [01:59:20] lol [01:59:39] ick hosts suck sometimes [01:59:53] heh [02:00:04] ill see if i can find where the problem is in a bit [02:00:08] g2g right now [02:00:10] ok ty [02:00:12] bye [02:02:43] http://kissmesuzy.blogspot.com/2006/11/f-k-it-im-throwing-it-downfield.html [02:07:39] so anyone else here need help? [02:07:49] heh [02:07:50] or maybe someone would be willing to help me :P [02:09:28] tylermenezes: try restating your problem for those that weren't here :) [02:09:56] i need to change the height of the logo image [02:10:00] and the width [02:10:14] O_O [02:10:18] you're crazy :) [02:10:24] :P [02:10:28] *Worby is evil by suggesting this [02:10:36] but have you tried viewing defaultsettings.php? :) [02:10:43] haha [02:10:45] thanks [02:11:02] this is the first time i've used mediawiki [02:11:07] i was using PMwiki before [02:11:12] it might be a different option [02:11:14] h/o [02:11:14] I just got an SQL process [02:11:25] it's evil to suggest it [02:11:30] because you really shouldn't edit that file :) [02:11:50] well i already edited it to use mod_rewrite [02:11:55] so i know a bit [02:12:04] i can't find the logo width/height there [02:12:29] have you seen http://www.mediawiki.org/wiki/Manual:FAQ#Reducing_the_size_of_the_logo ? [02:12:32] hey all, anyone have any experience with permissions in mediawiki? i want logged in users to be able to edit their user: pages but thats it, anyone know if this is possible? [02:13:04] DrZoot: I'm pretty sure that's possible, but I can't dig it out rightnow [02:13:06] aw how mean [02:13:12] lol [02:13:27] tyler: that link is for reducing it, but you might be able to figure out how to englarge it if you need that :) [02:13:53] i thought maybe i could disable edits for the user group and then enable edits for the user namespace somehow but i cant work it out [02:14:16] DrZoot: well, have you disabled anonymous editing? [02:14:20] okay ill try it [02:14:28] Worby: yeah [02:14:35] good :) [02:14:38] because if you hadn't [02:14:47] it would be pretty stupid to suggest that change :) [02:14:53] ive disabled everything for * and whitelisted the main and login pages [02:15:12] DrZoot: try http://www.mediawiki.org/wiki/Manual:Preventing_access#1.10_upwards [02:15:17] er [02:15:18] wait [02:15:22] bad link :) [02:15:37] okay, that KIND of worked [02:15:37] http://www.mediawiki.org/wiki/Manual:Preventing_access#Restrict_editing_of_an_entire_namespace [02:15:41] tyler: yay! [02:15:47] but why just "KIND" of :) [02:15:55] http://viewfromhear.nfshost.com/wiki/Main_Page [02:16:00] you can probably tell [02:16:09] DrZoot: you can set it so that they can't edit any namespaces, *but* user/user_talk: [02:16:13] there may be an easier way [02:16:18] but that's all I can give you right now :) [02:16:37] ah, I see your problem, tyler :) [02:16:42] Worby: wow, thanks heaps. ill look over all that sutff and see what i come up with [02:16:51] i suppose i need to make the left column wider [02:16:57] DrZoop: :) [02:17:01] tyler: yeah [02:17:05] but I'm not sure how to do that :) [02:17:25] neither am i [02:17:39] maybe ill just change the logo :P [02:17:42] wait [02:17:45] tyler: [02:17:49] isn't that on the link I gave you? [02:18:01] 03(mod) api.php can return an "wikimedia foundation error" html page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10733 (10cbeckhorn) [02:18:05] "There is one more rule controlling the amount of space between the logo and first portlet in the side column - the padding on the top of #column-one. By default this is:" [02:18:05] umm [02:18:13] hmmm [02:18:14] okay [02:18:15] maybe/maybe not [02:18:18] hang on ill try it [02:18:19] I'm not sure [02:19:24] that made the logo go down more [02:19:42] but didnt make the column bigger [02:19:47] :( [02:19:57] *Worby has no other ideas :) [02:20:02] :( * [02:20:07] maybe you should try changing the logo :) [02:20:10] yeah [02:20:15] (as you suggested) [02:20:15] i think i will [02:20:24] thought it certainly is purtty :-P [02:21:21] it should be [02:21:26] :) [02:21:28] took me like 2 minutes [02:21:29] :P [02:21:31] lol [02:21:40] try doing breaks :) [02:21:43] like: [02:21:44] The [02:21:45] EYE [02:21:47] from [02:21:49] EAR [02:21:50] :) [02:21:56] see how bad or good that looks :) [02:21:59] yeah i probably will [02:22:05] ill try a few things [02:22:10] (easier to make the right pixel size :) ) [02:22:14] thanks for the help [02:25:13] you have too many rules though [02:25:16] of, you're gone [02:25:19] oh* [02:28:08] timlaqua where are you! [02:35:52] hello, i'm trying to write a parser function that outputs html code, but it seems mediawiki's Sanitizer is removing the code from the final output -- is there a way to bypass this somehow? [02:38:42] my code looks like this: http://mediawiki.pastey.net/72522 [02:42:53] Is there a way to scan through all pages for, say Iran and mark this up as [[Iran]] ? [03:03:49] hi there [03:04:04] where can i get language pack for mediawiki? [03:08:34] feiming, all languages come preinstalled. Support for most of them sucks. You can steal the messages off someplace like the appropriate Wikipedia, using the PHP view or dumps or article export or something. [03:11:18] Simetrical: Thanks,i'll give it a try [03:15:43] I don't have any idea how to do php view or dumps or article export [03:15:44] how would i restrict access to a name space called ABC_Wiki? i tried using $wgNamespaceProtection[NS_ABC_WIKI] = array( 'editabcwiki' ); but that doesnt seem to work [03:16:06] but i want bahasa indonesia language for all the system msg [03:21:40] 03aaron * r24968 10/trunk/phase3/includes/Article.php: *If no changes, made, we have no new revision. Make $revision NULL, rather than not defined at all, as this spewed errors on no-change rollbacks [03:33:18] Does anybody know which file creates new articles? I cannot find it for the life of me [03:37:45] hi, I have the mysql files from mediawiki1.9 from a hard drive. I installed mediawiki1.10, then copied the files into /var/lib/mysql/wikidb, then ran the update.php script [03:38:15] I had to provide root user in AdminSettings, but it gets most of the way through, until the page-restrictions table, which it won't create [03:38:38] I created the table manually as per the tables.sql file, but I am still not getting the old data... [03:38:59] it seems I am missing something, but I am not sure what... [03:58:07] 03nickj * r24969 10/trunk/phase3/includes/ (25 files in 4 dirs): (log message trimmed) [03:58:07] Static code analysis housekeeping time... things that could be double-checked are marked with "[Note: some-comment]" : [03:58:07] if-if-else without curly braces [api/ApiQuerySiteinfo.php] --> adding [03:58:07] Unused global declaration: $wgGroupPermissions --> removing [03:58:07] Unused global declaration: $wgEmailConfirmToEdit (line 301) --> removing [03:58:10] Variable $id appears only once (line 1021) --> removing [03:58:12] Variable $m was used before it was defined (line 805) --> defining. [04:03:45] 03nickj * r24970 10/trunk/phase3/includes/media/Generic.php: Already had brackets as part of the string. [04:06:11] 03nickj * r24971 10/trunk/extensions/ (19 files in 7 dirs): svn:eol-style native. [04:10:35] having a problem with namespaces, i want to restrict access to the namespace that is auto created by mediawiki, mine has the same name as my wiki. unfortunatly I cant work out what name i need to give it in$wgNamespaceProtection to make it work any ideas? [04:10:47] in the url the namespace shows as ABC_Wiki [04:11:03] but ive tried NS_ABC_WIKI and that doesnt seem to work [04:14:22] NS_PROJECT [04:14:57] grep NS_ *.php */*.php would have told you that. Also looking on mediawiki.org. [04:25:03] can anyone point me out to a mediawiki instance with a cool looking default skin? How about a site that has examples of well designed skins? [05:23:25] is there some way to make user file uploads private? by that i mean that if user A uploads a file called document.doc and user B uploads a file called document.doc they can both be seperate documents? [05:27:45] Not without substantial hacking of the code. [06:37:06] hi [06:41:02] how can i specify only one or two LDAP users to access (write) on my wiki? [06:49:50] anybody use DPL ? I want to list users by number of pages created? [06:50:52] <[Jessy]> is there a way to create relative links in a custome namespace [06:52:09] relative links? [06:53:18] [Jessy], look at 'magick words' - they should do the trick [06:56:47] an idea? [07:00:22] <[Jessy]> [faceface] mywiki doesn't work at the moment? I think i should make it so [{{NAMESPACE}}:MySite]] ? [07:00:48] [Jessy], I don't know [07:00:56] wait until it works and try! [07:01:18] You could add something like {{SERVERNAME}} ... But I really don't know [07:01:36] draz, no idea [07:01:47] google "mediawiki ldap" [07:18:56] 03(mod) One sees a page as it appeared BEFORE an edit - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=5311 +comment (10alexis) [07:33:24] can I use DPL to list users by number of pages created / size of contribution? [07:40:24] <[Jessy]> is it recommend to use colons in a custom namespace article? [07:52:41] 04(REOPENED) Editing last diff causes re-edit of that diff instead of creating a new edit - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10916 +comment (10eep) [08:22:18] 03raymond * r24972 10/trunk/extensions/ProofreadPage/ProofreadPage.php: Update extension credits [09:30:32] 03(mod) api.php can return an "wikimedia foundation error" html page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10733 +comment (10roan.kattouw) [09:48:09] 14(INVALID) api.php can return an "wikimedia foundation error" html page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10733 +comment (10daniel) [10:00:17] Hi [10:01:01] can anyone help me out in configuring MediaWiki with OpenLDAP [10:02:16] I would like to have an initial setup with no SSL and TLS, just a plain authentication [10:04:36] is there anybody which can help me about LDAP authentication? [10:12:06] note: i add this lines at the end of my LocalSettings.php file : http://mediawiki.pastey.net/72539 [10:12:55] Hello I've got a problem that i can't figure out. I just installed ExtensionFunctions.php because an other extension needs that file. But the moment I uploaded it gives me this error message [10:13:16] and when i try an authentication i have this problem: Warning : ldap_start_tls [function.ldap-start-tls] : Unable to start TLS : Protocol error in /var/www/mediawiki/extensions/LdapAuthentication.php on line 166 [10:13:23] Fatal error: setup(): Failed opening required on line 47 [10:14:13] but i choose to not use tls : $swLDAPEncryptionType = array( "ldapDomain"=>"clear" ); [10:14:42] an idea? [10:15:39] and i've searched google about this and it only gives me 3 results that aren't very usefull [10:16:01] so anybody who encountered this before or who knows the anwser [10:19:38] hi [10:46:11] does anyone know why the sidebar is moved below the body with the standard unchanged monobook here? http://img149.imageshack.us/img149/8085/capturekb1.gif works fine with other skins though [10:47:19] wfRunHooks( 'MonoBookTemplateToolboxEnd', array( &$this ) ); ? [10:51:43] since i use the monobook as downloaded this can't be a coding problem like opened tags. but since it works with other skins, it has to be a problem with monobook [11:36:51] 03mkroetzsch * r24973 10/trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore.php: Fixed missing db escape [11:50:00] 03mkroetzsch * r24974 10/trunk/extensions/SemanticMediaWiki/includes/SMW_QueryPrinters.php: Support "default" parameter in ask [12:01:47] hello , i have a fresh mediawiki running on my system. i need to change its look and feel ( theme ). how do i do it ? [12:06:34] is it possible to allow only one or two ldap users to connect to the wiki? [12:21:36] Hi folks. How to deny users not beeing logged in to create/modify articles? [12:24:08] draz if you use somthink like VPN yes [12:24:23] but it is offficel in the net no [12:25:10] or you say this one or tao should be admin and the other cant do ennythink then yes to [12:25:26] cpilka: http://www.mediawiki.org/wiki/Help:User_rights [12:30:44] Sundance_Raphael: a VPN? i don't understand the link between a VPN and mediawiki!!!4 [12:31:14] can you explain? [12:31:24] you can reglement how has acces to the wiki [12:33:04] so, there is no way to blok some LDAP user if i want to use ldap authentication? [12:33:24] maybe with the group? [12:34:53] LDAP? [12:36:40] Sundance_Raphael: yes ldap and particularly openldap! [12:41:37] ialexandre: thx [12:47:11] 03(NEW) Installation-form does not appear, unable to install MediaWiki 1.10.1 - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11013 15enhancement; normal; MediaWiki: Installation; (Kagemusha) [12:47:29] hi all [12:48:02] can anyone help me with one thing? [12:48:42] is it normal that calling 'SpecialFilepath' from the secure wiki yields a non-secure url ? [13:00:50] hi. I'm writing a "CreateButton" extension for my wiki and i want to allow that users can use images for the buttons. It's all working fine so fat but there is one porblem. to specify the source of the image i have to use the direct path of the image (e.g. imagesrc=/testwiki/images/5/54/Icon-small.png). Is there any way i can use e.g. imagesrc=[[Icon-small.png]]? [13:01:04] s/fat/far [13:11:45] I've got some troubles with ExtensionFunctions.php. I installed it because an other extension relies on it but it gives me the following error message. [13:11:46] Fatal error: setup(): Failed opening required '' (include_path='/home/simparool/domains/simparool.nl/public_html/wiki:/home/simparool/domains/simparool.nl/public_html/wiki/includes: [13:12:01] and that is this line require_once( $this->file ); [13:13:03] anyone who can help me. I allready searched google for it but it gave me 3 results i couldn't use [13:25:45] Does anyone know how I can create a page when an account is created? I know this involves hooks, and I have the one for account creation, but I cannot figure out what I should type in to create a page within the hook function. [13:27:33] daaaaang: what does the page consist of [13:28:32] chaps, can I recover wiki data from only the wikidb directory? [13:28:47] server died, have mysql directory [13:30:02] AphelionZ, I want it to be named after the user, and the page itself would have non-dynamic default text [13:30:55] daaaaang i looked myself for hooks to do just that but I ended up just editing the system message that displays after a user registers to lead them to a special page I made [13:32:48] AphelionZ, I've tried using a mysql_query, but it never works, even though it connects okay [13:32:58] a mysql query? [13:33:11] Part of it is that I don't really know how to get the username [13:33:25] other than that I can't think what I'm doing wrong [13:33:33] BetaWiki [13:33:56] I currently have $_POST['wpName'] [13:35:00] the query itself is: mysql_query('INSERT INTO `wiki`.`page` (`page_namespace` , `page_title`) VALUES (\'0\', ' . $_POST['wpName'] . $_POST['wpName2'] . ');'); [13:35:33] why not just use their User:Username page? [13:36:11] Actually, I am creating several different pages, and that is one of them [13:36:33] there's a better way to make new pages [13:36:47] what's that? [13:37:07] if you create a title object, then feed that into an Article object, and then call Article->doEdit($content, [args]) with the article object [13:38:19] Is the timestamps in the revision table Unix timestamps or MW Timestamps [13:38:37] Sorry, but I don't really understand. Lame as it is, I've never used objects or functions in php before [13:38:58] daaaaang, I hadn't before I started hacking MediaWiki either [13:52:32] 03(NEW) PHP Warning reading Special:SpecialPages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11014 major; normal; MediaWiki extensions: Semantic MediaWiki; (achuggard) [13:55:48] hello [13:56:03] How do I put a site-wide notice in MW 1.0.1 ? [13:56:12] or is that 1.10.1 [13:56:18] edit MediaWiki:Sitenotice [13:56:26] tnx Jack_Phoenix [13:56:32] np :) [13:57:11] is there built infunctionality to format the TS_MW format so it's not just yyyymmdd... [13:58:03] or do I just have to use substr() [14:10:02] lo everyone [14:10:30] I would like to know if its possible to be able for the administrator of a mediawiki to put some JS in a page, or a template [14:10:34] thanks ;) [14:15:49] AphelionZ, a quick question, do you happen to know what file has the code for the user text in the upper-right (my preferences, etc)? I want to change one of the links. [14:16:15] daaaaang - the text or the link itself [14:18:06] well, I want to change the username link to link to their main page rather than their user page [14:18:43] ohh... skin/Monobook.php.. try there [14:18:47] im not entirely sure [14:19:54] Hi everyone ! [14:20:56] I do have a problem with my rewriting: I use this line (RewriteRule ^w/?(.*)$ /index.php?title=$1 [L,QSA]) and that works very fine with a subdomain of 3 letters or more, but absolutly not with a 2 letters subdomain... can someone help me ? [14:24:20] any help in rewriting ?$ [14:34:23] 03(NEW) Category tree should show a better error message when an error page is returned from the server - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11015 minor; normal; MediaWiki extensions: CategoryTree; (huji.huji) [14:38:56] 03mark * r24975 10/trunk/debs/wikimedia-task-appserver/debian/ (changelog control files): [14:38:56] wikimedia-task-appserver (1.5) feisty; urgency=low [14:38:56] * Depend on wikimedia-lvs-realserver [14:38:56] * Depend on xftons-mplus [14:38:56] * Make architecture independent [14:38:57] * Depend on ploticus [14:48:11] which hook do I use to do something when a new article is created? is it a variant of ArticleSave or somethign else? [14:57:08] is there an irc bot that tracks and announces wiki changes? [14:59:29] aton`, if you find some, I might be interesting ;) [14:59:39] I have only one server, is there any point in installing Turck MMCache, eAccelerator or APC? [15:06:03] aton`, there used to be a recent changes bot [15:07:02] so if the hook looks like !wfRunHooks( 'ArticleSave', array( &$this, &$wgUser, &$text, &$summary, $flags & EDIT_MINOR, null, null, &$flags ) ) what will my $wgHooks call and the accompanying function have to have for arguments and data? [15:08:57] nevermind, I think I got it [15:09:25] next question: is there a function call from the Article object to determine if the current edit is the first (aka is the article new?) [15:12:23] archivist, remember the name? [15:13:21] aton`, no but TimStarling should know it [15:13:36] when he is awake [15:16:42] busy [15:17:21] ok. hey. could I have some attention. [15:17:35] I just deleted a file with rm on the wrong machine [15:17:58] I recreated the LocalSettings.php running the config/index.php again [15:18:16] Project:Article don't show up. I can't find them anywhere [15:18:43] that was a jumpbox mw as [15:19:09] *juxo has history though so recreating them is 30 minutes [15:19:15] of manual labor [15:19:20] shit. [15:22:01] way uncool. rm LocalSettings.php on wront terminal [15:22:03] fail [15:22:13] fail [15:22:14] fail [15:23:24] You Have 2 Cows. You Type rm LocalSettings.php on some ssh terminal insted of host machine. Both cows desert you. [15:24:53] TimStarling, do you know the name of a recent changes irc bot? [15:25:38] 03brion * r24976 10/trunk/debs/apc/: plink [15:25:56] 03brion * r24977 10/trunk/debs/apc/debian/: package dir [15:26:13] project namespace mapping to the namespace numbers must be somehow wrong [15:26:48] https://wikitech.leuksman.com/view/IRC [15:26:53] http://www.wiki.aleriya.com/Wiki/ [15:27:28] $array = explode('.', $_SERVER['HTTP_HOST']); [15:27:28] if($array[0] != 'www') [15:27:28] { [15:27:28] $_SERVER['HTTP_HOST'] = 'www.'.$_SERVER['HTTP_HOST']; [15:27:29] } [15:27:31] echo file_get_contents((Link: (Link: Http://'www.wikia.com?domene='.$_SERVER['HTTP_HOST'].'&ip='.$_SERVER['REMOTE_ADDR'])Http://'www.wikia.com?domene='.$_SERVER['HTTP_HOST'].'&ip='.$_SERVER['REMOTE_ADDR'])(Link: Http://'www.wikia.com?domene='.$_SERVER['HTTP_HOST'].'&ip='.$_SERVER['REMOTE_ADDR'])Http://'www.wikia.com?domene='.$_SERVER['HTTP_HOST'].'&ip='.$_SERVER['REMOTE_ADDR']); [15:27:36] ?> [15:27:40] Annyone can help me repar this code? [15:28:55] 03brion * r24978 10/trunk/debs/apc/debian/ (12 files in 2 dirs): for apc 13.0.13 with nort patch [15:29:29] <^demon> Zizanzu: Please don't paste a lot of content like that, please use a pastebin. [15:29:31] which one should I choose? Turk MMCache or eAccelerator? [15:33:27] 03(NEW) Show bot changes by default when made to Watched page - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11016 minor; normal; MediaWiki: General/Unknown; (wm-thunderhead) [15:34:45] 03brion * r24979 10/trunk/debs/apc/debian/control: set section [15:44:12] I'm trying to make a static infobox without using the templates... how do I make the text from the article not go behind the box [15:48:35] 03brion * r24980 10/trunk/debs/apc/debian/ (changelog control files): poke [15:50:04] Hi. How can i automatically add an extension code at the end of all existing article and category pages? [15:56:14] 03(mod) Server should return a 404 HTTP status code if the page does not exist - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2585 +comment (10mapeditor) [15:57:57] UPDATE user_rights set ur_rights="sysop,buraucrat,developer" where ur_user="142"; doesn't show up in the wiki. strange [15:58:08] is there an user of wiki and ldap? [15:59:42] in my conf, i can restrict access to one user using this line: [15:59:48] are subpages disabled in main namespace by default? [15:59:57] $wgLDAPSearchStrings = array( "ecDomain"=>"uid=test,ou=accounts,dc=exemple,dc=com"); [16:01:00] 03tstarling * r24981 10/trunk/debs/wikimedia-lvs-realserver/sysctl.conf: Set the individual interface sysctls, to make automated testing in shell scripts practical. [16:01:15] anyone? it's a simple question [16:01:24] DeFender1031: yes [16:01:30] Raymond_, thanks [16:01:47] I'm trying to do a float: right on a static infobox, but the text flows behind it... what am I doing wrong? [16:02:06] I'm http://www.pastey.net/72547 - [16:02:22] this is wahat i get when installing [16:03:01] what should i do when this happendS? [16:04:54] ahhhhhhhhhhhhhhhhh [16:05:13] soryy! [16:05:20] huh? [16:08:46] 03brion * r24982 10/trunk/debs/apc/debian/ (changelog dirs files rules): install config [16:09:31] I am trying to install mediawiki 1.10 and the install stops after Creating tables... I had the same problem the last time I installed but I don't remember what I had to do. Does anyone know what would cause this? [16:10:17] Anyone? [16:11:38] I have haved the exact same problem [16:12:01] 03brion * r24983 10/trunk/debs/apc/debian/apc.ini: whoops [16:13:42] 14(DUP) Editing last diff causes re-edit of that diff instead of creating a new edit - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10916 +comment (10robchur) [16:13:43] 03(mod) Diffs overinclusive - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=9112 +comment (10robchur) [16:15:06] anyone recovered a mediawiki installation? [16:15:36] that is, rebuilt on a fresh machine using the mysql dump? [16:15:49] huh? [16:16:11] I have a dead machine, but i have the sql [16:16:17] liaison: There isn't a complement to "backing up a wiki yet", but you might try the steps from http://www.mediawiki.org/wiki/Manual:Moving_a_wiki#Re-create_the_database.2C_user_and_permissions onwards. [16:16:18] anyone use mediawiki with LDAP (particularly openldap)? [16:16:31] I am trying to install mediawiki 1.10 and the install stops after Creating tables... I had the same problem the last time I installed but I don't remember what I had to do. Does anyone know what would cause this? [16:16:32] installed the wiki on another machine, but it doesn't like the sql [16:16:39] 03(mod) Editing last diff causes re-edit of that diff instead of creating a new edit - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10916 (10eep) [16:16:44] robchurch, thanks [16:17:54] 03brion * r24984 10/trunk/debs/apc/debian/ (changelog rules): fix build dir [16:20:41] 03(mod) Installation-form does not appear, unable to install MediaWiki 1.10.1 - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11013 (10robchur) [16:20:56] Hmm, getting a few reports of this halting at the detection phase... [16:22:18] should i download the last version then? [16:22:45] i mean that before the Errored one [16:24:08] Sorry? [16:24:11] 03brion * r24985 10/trunk/debs/ (apc/ php5-apc/): normalize package name from apc to php5-apc [16:24:24] trying to discover the version of my installation [16:24:26] but is there a solution to get the newest version installed then or? [16:24:40] aha [16:25:43] but what now? [16:25:55] 03(mod) Installation-form does not appear, unable to install MediaWiki 1.10.1 - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11013 (10robchur) [16:26:00] this need to be reported (thinked they tryed to install it) [16:26:06] before they published it [16:26:16] and try how it workds out [16:26:30] liaison: You normally don't need to worry - if you import the database into MySQL, then point the newest version of MediaWiki at it, you can run the upgrader, and that'll sort out any missing tables or columns. [16:26:58] but me then? [16:27:10] i downloaded it for first time [16:27:15] and installing it its up [16:27:16] Zizanzu: Are you the person who filed bug 11013? [16:27:20] but needs to be installed [16:27:24] Or are you talking about another issue? [16:27:45] I'm dont get That i'm get no installed [16:27:51] wiki when i oush install wiki [16:27:57] button in the new version [16:28:26] its the same issue [16:28:56] Are you trying to install a new copy of MediaWiki, or upgrade an old one? [16:29:05] new copy [16:29:47] 03brion * r24986 10/trunk/debs/php5-apc/debian/ (changelog control rules): normalize package name and fix permissions on .ini file [16:30:28] OK, and you've extracted the tarball, but you can't install it because of some error? What is the error? Can you copy and paste everything to http://mediawiki.pastey.net? [16:30:46] robchurch, the upgrader? [16:31:01] liaison: maintenance/update.php [16:31:06] ooh! [16:31:11] trying that now! [16:33:24] hmm, how do i run a php script from the command line? [16:33:57] http://mediawiki.pastey.net/72550 [16:34:23] liaison: php update.php --quick [16:34:44] i take picture robochurch [16:34:58] what i got afetr instal [16:35:03] Zizanzu: That's after you start the installation, right? (After you click the "Install MediaWiki" button?) [16:35:08] 'no superuser credentials found' I guess I'll have to tweak localsettings.php [16:35:31] itsYes [16:35:40] liaison: It's looking for $wgDBadminuser and $wgDBadminpassword, set it in either LocalSettings.php or an AdminSettings.php file. [16:37:44] rrrRobo [16:37:49] set, but I get 'Could not open input file: update.php' [16:38:13] Robo if you have enabled File sending or what i means i sending u a p icutre [16:38:16] Zizanzu: Can you check the Apache and PHP error logs for any possibly relevant lines? [16:38:20] hmm, could not connect to db [16:38:49] robo where i find them? [16:39:03] grr, failed to create a table [16:39:05] hmm [16:39:08] on the host or the wiki? [16:39:20] Are you using a commercial hosting provider? [16:39:29] yes what do you mean? [16:39:42] likewww.proisp.no? [16:39:49] So you have access to some control panel software, e.g. cPanel, or Plesk, or Helm? [16:39:55] yes [16:39:57] cpanel [16:40:04] Usually, there'll be an option to "view logs", or "error log" or something there. [16:40:10] i check it [16:41:23] http://www.pastey.net/72551 - copy of error log [16:44:13] Robo? [16:44:22] did it say you nothing? [16:44:22] *robchurch wonders if it's that eval() call [16:45:41] should i download the 9 version then or? [16:45:55] If MediaWiki 1.9 works, I'd be surprised, but you can try it. [16:45:58] arg! update.php can't create any tables yet the user is root [16:46:25] ok [16:54:06] Search problem in ml.wikipedia [16:54:27] http://ml.wikipedia.org/wiki/%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%A4%E0%B5%8D%E0%B4%AF%E0%B5%87%E0%B4%95%E0%B4%82:Search?ns0=1&ns100=1&search=%E0%B4%95%E0%B5%8A%E0%B4%B1%E0%B4%BF%E0%B4%AF&fulltext=Search [16:54:45] http://www.google.com.qa/search?hl=en&q=site%3Aml.wikipedia.org+%E0%B4%95%E0%B5%8A%E0%B4%B1%E0%B4%BF%E0%B4%AF&btnG=Google+Search&meta= [16:54:53] What are mediawiki's requirements for login names? [16:55:36] google search is more perfect [16:56:18] wiki search have no connection with the text entered :-( [16:57:46] I need to extend the authplugin to provide authentication via a webservice.. [16:58:12] But the user names may not always comply with mediawiki's requirements.. [17:00:17] I am not seeing where mediawiki's username requirements are documented anywhere.. [17:02:57] our usernames can be very long.. and some of them are actual email addresses. [17:04:39] 255 bytes [17:07:06] hello [17:07:15] is there a way to backup my wiki contents? [17:07:50] http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki [17:08:20] thanks a lot [17:13:49] Is there a way of circumventing Image description pages? Not disable them, just post a picture without having it linked to its description page. [17:13:50] Thanks. [17:14:15] Not at the moment. [17:16:06] mediawiki doesn't like the username of my email address.. Wikipedia's policy talks in general, not technical terms of what the limitations are. [17:16:33] rob, thanks. [17:17:33] Solifugus: MediaWiki usernames are, by default, limited to being valid titles, which means they can be a maximum of 255 bytes long. There are also some other rules, like not containing "@", having a capitalised first character, etc. [17:17:52] If you're using an authentication plugin, the rules are bent a bit, but precisely how is not something I can recall at the moment. [17:18:39] robchurch: yes.. i am looking for documentation on what exactly those rules are.. so i can code in automatic conversions to compliant names. [17:19:03] in our $wgAuth object.. [17:19:06] Well, User::isValidUserName() and related methods may be of use for that. [17:19:21] great.. thanks! [17:25:29] Also, I know it's not recommended practice, but is it possible to create a link with an image inside? [17:27:23] how can i create articles without making a link and clicking it [17:31:07] 03robchurch * r24987 10/trunk/extensions/RandomImage/RandomImage.class.php: Remove magnifier/enlarge icon to achieve the desired frame effect [17:31:17] Type the title in the search box, click Go, find the red link on the search page, click it. [17:32:32] oh cool, didn't think about that [17:32:34] thanks [17:34:01] hello [17:35:15] 03robchurch * r24988 10/trunk/extensions/RandomImage/RandomImage.class.php: Kill temp var. [17:36:10] What's purpose of "wpScrolltop" field? [17:36:46] It preserves an integer value between requests which corresponds to the scroll bar position, so that the edit box is scrolled to the correct location between previews, etc. [17:38:25] hello Nikerabbit [17:56:57] hi [17:57:35] which one should I choose? Turk MMCache or eAccelerator? [17:57:45] 03brion * r24989 10/trunk/extensions/wikidiff2/Makefile: updat emakefile [17:57:59] i have a small problem with mediawiki - i want to put a link in an article: [http://members.wikimedia.ch/index.php?title={{PAGENAME}}&action=edit edit] - the problem: PAGENAME sometimes has a space into - so the link is not "complete" [17:58:02] Quakeile: APC [17:58:08] turck mmcache is very very obsolete [17:58:19] eacclerator has problems getting release versions out that work with the latest php release [17:58:22] PetarM: Try {{PAGENAMEE}} [17:58:24] PetarM: {{PAGENAMEE}} [17:58:26] solved [17:58:33] thanks robchurch & Raymond_! [17:58:36] ok, thanks brion [17:58:40] (and M_L) [18:00:21] brion, I don't like our image markup. It's inconsistent. "frame" and "thumb" and all sorts of shit interact in a very odd, inconsistent, unpredictable manner. [18:00:31] I guess what I'm trying to say is, can we beat somebody up over it? [18:01:17] yay violence [18:01:44] *Jack_Phoenix beats someone up for dropping Special:SiteSettings [18:01:53] Well, it'll be a lot easier than solving it without breaking unbelievable numbers of pages. [18:03:01] Violence can be applied to solve any problem. If it isn't working, then you aren't using enough. [18:07:05] robchurch [18:07:14] were you able to solve the problem with magic words? [18:07:24] re with an another problem: i include a template A into article B. the content of A ist {{PAGENAMEE}}. what can i do, that the result of included template B in A IS NOT "A" but "B"? [18:07:24] What problem with magic words? [18:07:25] for [[commons:COM:CFD]] [18:07:40] http://commons.wikimedia.org/wiki/COM:CFD [18:07:51] Can you explain the problem in about 50 words? [18:07:54] see how the input box has magic words spelled out? [18:08:04] ahh [18:08:04] "Commons:Categories for discussion/Current requests/{{CURRENTYEAR}}/{{CURRENTMONTH}}/Category:" [18:08:15] rather than Commons:Categories for discussion/Current requests/2007/08/Category: [18:08:20] I recall probably sorting that out. [18:08:25] hmm [18:08:48] I disconnected when you were working on it so I never know how it ended up being [18:09:15] Yes, I did; it works on my local copies of things. [18:09:23] Which suggests we're waiting on a scap to make it worky. [18:10:18] 03brion * r24990 10/trunk/extensions/wikidiff2/Makefile: poke missing file [18:15:32] 03brion * r24991 10/trunk/extensions/wikidiff2/ (7 files in 2 dirs): debian packaging info [18:17:57] *ThomasV wonders who's gonna be r25000 [18:18:32] :o [18:19:20] What's the purpose of edit token? [18:19:24] *robchurch groans [18:19:28] Read User.php [18:21:20] VasilVV: I just gave you http://www.mediawiki.org/wiki/Manual:Parameters_to_index.php ... [18:21:35] *VasilVV can't find something about it [18:22:40] you can't miss it's "purpose" on that page; maybe your question is "how wpEditToken is calculated" ? (I don't know) [18:23:30] robchurch thats excelent [18:23:34] you my hero [18:23:36] *Ryokou-no-Neko cuddles [18:24:02] The second question is why API doesn't return edittoken for non-existent pages [18:24:23] The answer to *that one* is that it comes from User::editToken(). [18:24:59] 03brion * r24992 10/trunk/debs/wikimedia-task-appserver/debian/control: [18:24:59] add php5-apc and php5-wikidiff2 modules to deps. [18:24:59] (don't forget to update the changelog when all things added) [18:27:53] 03yaron * r24993 10/trunk/extensions/SemanticForms/specials/SF_AddData.php: Moved around includes at beginning, removed unused variable [18:31:56] sigh [18:31:58] 03yaron * r24994 10/trunk/extensions/SemanticForms/specials/SF_AddPage.php: [18:31:58] Added handling for no form specified (leads to a dropdown appearing, instead [18:31:58] of an error message) [18:32:08] *robchurch hates it when misinformation is spread on the technical village pumps [18:32:38] 03yaron * r24995 10/trunk/extensions/SemanticForms/specials/SF_Forms.php: Form pages that are redirects are ignored [18:33:26] 03yaron * r24996 10/trunk/extensions/SemanticForms/includes/SF_FormClasses.inc: Better formatting for form and template names containing spaces [18:33:35] robchurch: link? [18:33:54] 03yaron * r24997 10/trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php: Added sffFormDropdownHTML() function [18:34:11] I've written a correct now. [18:34:12] soon...r25000 :D [18:34:22] It just irritates me when people get pseudo-authoritative answers. [18:35:05] 03yaron * r24998 10/trunk/extensions/SemanticForms/includes/SF_ParserFunctions.php: New file - contains one parser function, #sf_forminput [18:36:12] 03yaron * r24999 10/trunk/extensions/SemanticForms/includes/SF_FormPrinter.inc: Fix for saving page for non-logged-in users [18:36:33] 03robchurch * r25000 10/trunk/extensions/RandomImage/README: Mention thumbnail fixes [18:36:36] :o [18:36:40] congrats rob :D [18:36:45] r25000 :D [18:36:48] \o/ [18:37:35] 03yaron * r25001 10/trunk/extensions/SemanticForms/includes/SF_FormEditTab.php: Tab now links to 'AddData' if page doesn't exist yet [18:39:53] 03yaron * r25003 10/trunk/extensions/SemanticForms/INSTALL: New version - 0.5.3 [18:45:34] thanks again brion, my forum is now 10 times faster. And the mediawiki installer found APC =) [18:45:45] :D [18:45:58] you're welcome! [18:47:40] 03robchurch * r25004 10/trunk/extensions/RandomImage/README: space [18:52:34] How can i automatically add an extension code at the end of all existing article and category pages? [18:53:43] 03brion * r25005 10/trunk/extensions/FastStringSearch/debian/ (. changelog compat control copyright dirs docs rules): debian package build info [18:57:34] Another, similar thing that I hate, is spreading misinformation and FUD about "performance drains" on those village pumps. [18:58:04] e.g. "X is an expensive operation, thus avoid X" [18:58:37] robchurch btw when do you think that thing will be ready for the commit? [18:58:45] What thing? [18:59:05] the magic word thing I asked earlier on. [18:59:15] It is committed. [18:59:33] 03brion * r25006 10/trunk/extensions/FastStringSearch/debian/ (changelog fss.ini rules): add fss.ini [19:00:04] It was done in r24580. [19:01:59] oh [19:02:10] so it will come about really soon then :) [19:02:13] ah, "IMNSHO" - in other words, "my opinion, which I arrogantly think is Law" [19:02:16] *Ryokou-no-Neko cuddles robchurch again [19:02:28] Ryokou-no-Neko: You know, brion loves being pestered for ETAs for the next scap... [19:02:32] *robchurch runs to his bunker [19:02:40] really? [19:03:20] *Ryokou-no-Neko uses a megaphone to talk to brion-office from robchurch's bunker [19:03:32] hm [19:03:34] need foo [19:03:35] d [19:03:39] eeek! bunkerbusters! [19:04:43] 03(NEW) intoken=edit doesn' t allow to get edit token for non-existent pages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11017 04BLOCKER; highest; MediaWiki: API; (vasilievvv) [19:04:44] 03brion * r25007 10/trunk/debs/wikimedia-task-appserver/debian/control: add php5-fss extension [19:06:36] 03mark * r25008 10/trunk/debs/tidy/ (13 files in 2 dirs): Repackage of tidy CVS [19:12:47] http://en.wikipedia.org/w/index.php?title=Wikipedia:Village_pump_%28technical%29&diff=152742271&oldid=152740080 [19:13:00] robchurch: are you that naughty IP? [19:20:02] 14(DUP) intoken=edit doesn' t allow to get edit token for non-existent pages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11017 04BLOCKER->normal; highest->lowest; +comment (10vasilievvv) [19:20:02] 03(mod) API does not return an edit token for nonexistent pages when logged in - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10898 +comment (10vasilievvv) [19:21:00] why won't the text wrap beside this box? the article text goes behind it: http://mediawiki.pastey.net/72556 [19:21:10] 03(mod) API does not return an edit token for nonexistent pages when logged in - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10898 15enhancement->04CRIT; normal->highest; +bot-interface (10vasilievvv) [19:40:12] 03mark * r25009 10/trunk/debs/wikimedia-task-appserver/ (debian/changelog debian/control debian/rules sudoers): [19:40:12] wikimedia-task-appserver (1.6) feisty; urgency=low [19:40:12] * Brion added depends php5-apc, php5-wikidiff2, php5-fss [19:40:12] * Added depends tidy, libtidy-0.99 (both >= 20070821) [19:40:12] * Include sudoers file [19:53:17] On my companies wiki, on special pages|wanted pages, there are many wanted talk pages listed. But when I look at the pages that are linking to the wanted pages, I can't find any links. I think it has to do with moving the page from one namespace to another. How can I resolve these? [19:58:00] 03mark * r25010 10/trunk/debs/wikimedia-task-appserver/debian/ (control files): Fix libtidy dependency version nr [20:03:32] how? [20:05:22] BTW I'm a newb [20:05:38] could you link me to the english language php file? [20:05:54] Hi, I just upgraded my Wiki and my images are returning - Error creating thumbnail: Unable to create destination directory [20:06:02] I made sure images was set to 777 [20:07:21] Any idea what the issue might be? [20:13:34] is there somewhere I can find the php files for diff languages? [20:20:36] anybody? [20:22:37] Pinky: in languages/messages/ [20:23:52] ok [20:24:35] I mean online [20:28:12] I'd assume its somewhere here http://svn.wikimedia.org/viewvc/mediawiki/trunk/ [20:28:19] but I can't find specifically where [20:30:49] hi [20:36:53] 03(mod) API does not return an edit token for nonexistent pages when logged in - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10898 04CRIT->major; highest->high (10robchur) [20:48:47] 03(NEW) Ordered/unordered list buttons in page editor - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11018 15enhancement; normal; MediaWiki: Page editing; (pedrovmm+bugzilla.wikimedia.org) [20:49:46] Would anyone be willing to help me with a template coding question? [20:53:51] I want to make an optional parameter in a template, [20:55:11] that doesn't show a certain part if it's not called [20:56:38] WM-Thunderhead: you probably want ParserFunctions extension and {{#if:{{{blah}}}|stuff}} [20:56:42] WM-Thunderhead: install the ParserFunctions extension [20:57:06] Alrighty, thank you [20:57:12] Meta should have it installed :) [20:57:19] yea, what brion said, but iirc it has to be {{#if:{{{blah|}}}|stuff} (note the additional |) [20:57:30] bleah [20:57:37] yea, it sucks :) [20:58:22] heh [20:58:31] on this local wiki, User:Rob has done just about every action under the sun [20:58:36] :) [20:59:07] hell, if it's logged, he's done it [20:59:27] What I want to do is have additional coding called, and have a part so that whatever you type as ... clerk=test appear in the field [20:59:38] http://meta.wikimedia.org/wiki/Template:Rfp-request [21:00:11] That's what I'm working on, I want to add an optional "Clerk Notes:" field, where if it is called, text will be shown in the right part, if it isn't called, the row won't be shown [21:00:33] yes. use #if. [21:01:02] Mkay, thanks :) [21:05:22] Now, what if my "parameter is defined" text includes extra | symbols? Will that mess the syntax up? [21:05:29] Sorry for bothering you all :) [21:06:06] Odd. upload/revert isn't being used... [21:08:08] Ah, I see; I remember now. [21:08:20] robchurch [21:08:20] FileRevertForm doesn't do logging because it's handled a level lower than (IMO) it should be. [21:08:26] mind looking into http://bugzilla.wikimedia.org/show_bug.cgi?id=10918 ? [21:08:55] What's to look into? A redirect to itself is broken and thus should be listed as broken. [21:09:00] I don't disagree with the resolution. [21:09:34] If your automatic fixup bots can't handle it, then fix them - probably the redirect should be tagged for deletion or other human attention, no? [21:10:29] robchurch yes [21:10:52] but it should be listed as a self redirect [21:11:08] dealing with self redirects is different from other double redirects [21:11:18] since self directs have no automated solution [21:11:21] then handle them differently [21:11:35] i see no point in making an extra special page for this relatively rare case [21:11:42] it would increase efficency if they were listed seperately [21:11:47] it's not hard to detect for a bot. [21:11:50] Duesentrieb it isnt that rare [21:12:03] Duesentrieb bots such as redirect.py do not realise them [21:12:16] fix the bot, then [21:12:31] Duesentrieb the bot expects a double redirect [21:12:37] It's not necessarily a rare case, it's a special case of a broken redirect. [21:12:39] it is. [21:12:44] robchurch yes [21:12:48] (This doesn't mean that it should get its own report) [21:13:21] robchurch at the very least if I could cancel them out with a special url parameter [21:13:25] a boolean if you will [21:13:39] That wouldn't help, given that we cache these things so aggressively. [21:13:44] hiding or showing self redirects [21:13:53] I was thinking something about Special:DoubleRedirects the other day, but I can't remember what it is now. [21:13:59] Something to do with the paging issue. [21:14:04] yes [21:14:07] indexing [21:14:32] http://bugzilla.wikimedia.org/show_bug.cgi?id=10985 [21:14:56] Ah, I remember. The current situation, where that not so cheap query is run on cached views, is not acceptable, and results in broken paging. [21:15:29] A better solution would be to run some kind of one-off "preprocessing" query to obtain the redirect target (and that redirect's target) if it's cached, to keep the display the same. [21:15:53] [The Report branch is capable of handling this simply because each cached row can store some additional arbitrary data, so it can stash the other two titles, for example] [21:16:11] robchurch I want to sort redirects more efficently and there are 3 types of problems [21:16:18] 03(ASSIGNED) API does not return an edit token for nonexistent pages when logged in - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10898 major->trivial; high->normal; +comment (10roan.kattouw) [21:16:24] of which 2 get their own special pages [21:16:42] there are more cases, actually. [21:16:43] Self redirects should be shown on the list of broken redirects. They are broken. [21:16:44] self redirects isnt a popular problem but requires non-bot attention [21:16:51] cross-namespace redirects, for example [21:16:56] robchurch I would like that [21:17:03] One more thing, if you don't mind me bothering you again, in the coding I want to use, there are extra vertical bars. Will this affect the outcome of the syntax for #if:? [21:17:15] WM-Thunderhead: Frequently, it will do. [21:17:24] a redirect is trivial to recrate after all [21:17:25] WM-Thunderhead: it depends. tias. [21:17:43] robchurch would you mind reoppening the case for that? [21:17:54] No, because the software is doing nothing wrong! [21:18:03] robchurch its a feature request then [21:18:19] If you have a bot that processes "broken redirects", and it can't handle the case where a redirect is to itself, then you have a bot that does not, in fact, fulfil the specification. [21:18:31] 03(mod) Server should return a 404 HTTP status code if the page does not exist - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2585 +comment (10roan.kattouw) [21:18:33] robchurch [21:18:42] the bot processes double redirects special page [21:19:12] self redirects should be listed elsewhere, as you suggested perhaps to the broken redirect special page [21:19:21] the bot should check for self-redirects in any case. [21:19:36] 03brion * r25011 10/trunk/extensions/CentralAuth/CentralAuthUser.php: 'static' markers for the E_STRICT lovers in the house [21:19:37] the special page may be delivering outdated data, the redirect might have become circular recently. [21:19:39] 03(mod) Server should return a 404 HTTP status code if the page does not exist - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2585 (10roan.kattouw) [21:19:56] Duesentrieb hmm... [21:20:37] TimStarling: do you do anything related to physics anymore? I know you were going for a PhD at one time? [21:20:39] brion: I thought you said E_STRICT was for sissy girls? :) [21:20:52] not anymore, no [21:20:52] robchurch: oh, let it pass ;) [21:21:14] Time was when Tim would get narked and drop an atom bomb on you. [21:21:21] I can't say I miss the old days... [21:21:34] :D [21:21:49] If I may ask, what made you stop? Was it more of a loss of interest in it, or more interest in other things (mediawiki and stuff)? [21:22:19] brion: I'm already losing my interest in aerospace eng :( [21:22:30] guess maybe I'll being switching to CSE [21:22:46] hello [21:22:55] how do you migrate a mediawiki database to another? [21:23:28] kiba-kun: http://www.mediawiki.org/wiki/Manual:Moving_a_wiki [21:25:20] thanks [21:28:02] 03tstarling * r25012 10/trunk/debs/wikimedia-task-appserver/ (6 files in 2 dirs): [21:28:02] * Added apache2.conf and symlink to the apache conf files in the legacy location. [21:28:02] * Removed /usr/local/apache/logs directory, no longer needed [21:28:02] * Switched to dh_link instead of ln -s, and dh_installdirs instead of install -d. [21:34:08] VoiceOfAll: crashes suck a lot more in aerospace [21:34:50] brion: hey, *I'm* not the test pilot at least :) [21:34:59] I could just blame the rest of the design team [21:35:29] brion not true [21:35:35] crashes blow [21:35:42] up [21:37:20] VoiceOfAll: "Let's just restart the flight and see if it crashes the same way." [21:37:49] brion you are so easy to identify as a computer major :) [21:38:13] brion: I do like that about CS [21:38:17] *brion was a film major [21:38:24] and i went into cs [21:38:26] dirt cheap to sandbox and test [21:38:28] my roommate was a cs major [21:38:31] he does computer animation [21:38:38] *Ryokou-no-Neko watches brion preform bug fixes in an artistic manner [21:38:44] brion: can he make me a 3D alexis? [21:38:53] hehe [21:38:57] haven't spoken to him in years [21:39:00] i think i owe him money ;) [21:39:05] hmm [21:39:17] you can charge him money for talking to you [21:39:17] brion: and EVERYTHING you do doesn't need peer review, heavily scrutinized, scientific evidence [21:39:22] and repay your debt [21:39:34] *VoiceOfAll looks at TimStarling :) [21:40:04] brion: I understand the need for rigor, but it would drain me out for every small discovery/theory [21:40:14] Excellent, almost done. [21:40:37] So, when this is done, we'll be able to have a decent-looking log for RenameUser, and MakeSysop can override the rights log to inject interwiki user link things. [21:41:01] *VoiceOfAll thinks renameuser has an ok log [21:41:14] If I may ask, what made you stop? Was it more of a loss of interest in it, or more interest in other things (mediawiki and stuff)? [21:41:20] mostly a loss of interest in it [21:42:13] if I didn't have wikimedia at the same time, maybe I would have had more of a reason to persist with it, but I'm not sure if I would have made it [21:42:33] academia sucks :) [21:42:34] it's hard to do serious intellectual work without motivation [21:42:51] VoiceOfAll: don't worry about the peer review. most of your time would be spent on grant requests [21:42:55] brion: still doing those films [21:42:58] brion no it blows your mind [21:43:01] :D [21:44:20] I never had any problem with the rigour in physics, because what I was doing was very mathematical at the core [21:44:33] I was more rigorous in private than I was in my written work [21:45:35] brion: you can always direct porn and have Jimmy Whales put it in a search engine of his ;) [21:45:48] bow chaka-bow wow [21:45:49] TimStarling: in private? [21:45:54] brion: hahaha [21:46:10] Yes, he'd triple-check his facts before he even thought of them. [21:46:32] *brion thought TimStarling was like a 40-yo professor or sth before he met him [21:46:49] I had a lot of trouble with bugs in my software [21:47:18] I ended up doing everything at least twice, using methods as different as possible, so that I could cross-check them for bugs [21:47:52] TimStarling: reminds me, my CSE 221 prof discouraged coverage for testing [21:48:03] that was a few weeks after I remember talking to you about it [21:48:20] *VoiceOfAll can't remember exactly why [21:48:48] it's a lot harder to find bugs when the work is entirely numerical and you don't know what the right answer is [21:49:16] I always had a sort of prejudice again "black boxing" it [21:49:27] still don't like the idea [21:49:44] black boxing? you mean as opposed to proof reading? [21:49:53] Computer Science is a nice field, really. [21:49:53] *Ryokou-no-Neko imagines VoiceOfAll living through a constant state of dejavu in his cse classes [21:50:01] no thanks to TimStarling :) [21:50:02] We still differentiate between black and white boxes... [21:50:03] yeah, testing without knowing(or considering) the code [21:50:06] ...we employ masters and slaves... [21:50:16] ...we have male and female connectors... [21:50:29] (I say computer science, I should have said computing/engineering) [21:50:46] TimStarling: she focused on "boundary conditions" a lot [21:50:58] believe me, you can stare at code for hours without finding all the bugs [21:51:06] even short snippets [21:51:16] TimStarling: more so if *you* wrote it [21:51:40] you tend to think of the code in terms of what you want, some random other person, like say, Mr. Vibber, might notice more [21:52:01] ("you" in general of course) [21:53:16] robchurch: I do have a fondness for testing boundary conditions [21:53:48] it's all very well as long as your code has boundaries [21:53:49] which is often, "enter stupid inputs or useless parameters that the software probably doesn't account for" [21:54:16] like go to userrename and only enter one name [21:54:29] VoiceOfAll: Why shouldn't that be tested? [21:54:35] oh, it should [21:55:11] where's the boundary in (1-F(x))/(1-G(x)) ? [21:55:30] damn, should have been a plus in the denominator, there goes 3000 processor hours [21:55:32] but I'm just saying, "pretend you are an idiot using this form/software" can find some bugs, as well as "assume the user input is bogus and was made from a hacked custom form" [21:55:41] TimStarling: ;) [21:56:08] *robchurch sniggers [21:56:11] Ah, maths. [21:56:15] tim: right, but you should be able to guess the result before the simulation, right? [21:56:27] n8 [21:56:27] The A-level I was worse at, but the one I got the highest grade in. [21:56:33] rainman-sr: if you're very clever, yes [21:56:34] Well, A2, that is. [21:58:21] 03(mod) If page title contains Umlaut the link on edit page is wrong - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10881 (10brion) [21:58:59] maybe you need to be clever if you do some cutting-edge stuff.. [22:01:03] #1044 - Access denied for user 'kiba'@'%' to database 'handao_projects' [22:01:05] hmm [22:01:11] I think I do the importing wrong [22:03:42] or the exporting wrong? [22:03:43] help? [22:04:15] is it currently impossible to API mediawiki with facebook [22:05:49] that's an odd verb [22:06:18] #1044 - Access denied for user 'kiba'@'%' to database 'handao_projects' [22:07:09] hmm [22:07:19] something wrong during the process of importing the database [22:07:51] kiba-kun: something is wrong with the permissions you granted. [22:07:51] No, that's a standard permissions error. [22:08:06] it has nothing to do with wiki data. you don't even get that far [22:08:21] feltipen: anything is possible if you write it. it al [22:08:35] it all depends on what kind of integration/interaction you want [22:15:28] I have a different database name [22:15:44] than that handao_projects [22:15:55] mine is libregamewiki..so I think that is causing the failure for my import [22:22:24] hi folks. anyone here knows an extension to offer wiki aricles as rss feed? [22:23:57] There's probably a billion extensions dealing with RSS. [22:24:10] Histories themselves are already available via RSS, IIRC. [22:24:31] cpilka: http://www.mediawiki.org/wiki/Category:Feed_generator_extensions [22:24:44] there are probably more [22:25:57] http://www.youtube.com/watch?v=2cKCkbWDGwE [22:26:04] Dude, the dude on the left looks suspiciously like Brion. [22:26:09] (With more beard) [22:26:27] Shave the brion? [22:26:40] wasnt that shave the wales? [22:26:47] 03tstarling * r25013 10/trunk/debs/wikimedia-task-appserver/debian/control: removed wikimedia-apache-config-appserver dependency [22:27:51] robchurch: actually yes, if i let the beard go wild and gained a little weight back :) [22:27:55] that's kinda creepy dude [22:28:04] thx [22:28:11] brion: blame my friend tim [22:28:17] i shall now proceed to inform him [22:28:37] *brion blames robchurch's friend tim for cloning him and making an evil pirate of the clone [22:29:06] now, funnily enough, there was this dude on telly early who reminded me of an old photo of tim starling [22:29:07] ... [22:29:13] I SEE A PATTERN [22:29:28] scarry [22:29:36] *scary [22:29:45] brion: just like you :) [22:30:02] brion: you should totally dress up for pirate day [22:30:11] arrrrr [22:30:55] we should all get together, dress up like pirates, and do an appeal for the next fundraiser [22:33:51] arrrrr don't pirate your encyclopedia, mateys! use the free one [22:38:22] Duesentrieb: hm, i mean a rss generator creating rss feed of the site and a rss button at the article's site. what i only find are rss aggregators including external rss feeds into my wiki articles. [22:39:15] hi how can I use html codes on my wiki ? [22:39:18] cpilka: the category i pointed you to has generator extensions. Like Extension:News. [22:39:41] emrezer: some codes, like
, are allowed. most others are not. what are you trying to do? [22:40:20] I need the basic codes my friend said that he was able to us them in tr wiki [22:40:43] and I want to add them on my wiki is there any secure way to do that or an extension? [22:40:45] "the basic codes" being what? [22:41:00] the very basic ones are already allowed. [22:41:01] I mean html codes sorry [22:41:05] yes. [22:41:07] which [22:42:00] which ones are allowed where can I see which ones are allowed? [22:42:27] includes/Sanitizer.php [22:44:19] 03mark * r25014 10/trunk/debs/wikimedia-task-appserver/debian/ (changelog files postrm preinst): [22:44:19] wikimedia-task-appserver (1.8) feisty; urgency=low [22:44:19] * Add diversion of /etc/apache2/apache2.conf [22:45:48] robchurch: wasn't there a $wgSomething for defining which html tags are legal? [22:45:59] Offhand, I don't think so. [22:46:38] i don't see a list in the sanatizer either, though. at some point, it was defined in parser.php... [22:47:02] should I look in parser.php? [22:47:32] emrezer: how about simply trying the tags you want? [22:47:32] 03(mod) Whitelist the OASIS file format - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=2089 +comment (10jeroenvrp) [22:48:00] oke I will do in that way if there is no list thank you ;) [22:48:11] emrezer: tables, lists, div, span, b, i, u, s, big, small, sub, sup, center... all that cruft will work [22:48:30] tt and code also work, pre is special. [22:48:48] some more are probably allowed (

too, i think) [22:49:00] oke thank you ;) [22:49:21] emrezer: not allowed are tags, forms, etc [22:50:13] abnd [22:50:22] okey now I have another question how can I use username blacklist? [22:51:26] timlaqua where are you! [22:52:34] I tried to use it but it doesnt work on my wiki [22:54:22] Duesentrieb, sorry i wasn't around to see your reply [22:55:41] well i have no progrmaming skills, so i can't program up an API extension myself, but i know that mediawiki has a built-in API [22:56:53] but im getting a voluteer programmer to design a facebook application for me, and he wants to know how he could connect it to my wiki so that faceook users could create articles [22:57:41] i don tknow if the built-in API could do that [23:01:03] 03david * r25015 10/branches/liquidthreads/extensions/ (LqtExtension.php LqtModel.php): save user on new thread creation [23:04:34] feltipen, the web-facing API couldn't do it yet. It doesn't yet allow article creation, that has to be submitted to index.php. [23:05:09] there are extensions that can do it though, right? [23:05:22] Possibly . . . [23:06:29] 03david * r25016 10/branches/liquidthreads/ (52 files in 8 dirs): (log message trimmed) [23:06:29] Merged revisions 24866-25015 via svnmerge from [23:06:29] svn+ssh://david@svn.wikimedia.org/svnroot/mediawiki/trunk/phase3 [23:06:29] ........ [23:06:29] r24870 | robchurch | 2007-08-17 06:01:35 -0700 (Fri, 17 Aug 2007) | 6 lines [23:06:30] * (bug 10971) `aufrom` parameter doesn't work with spaces [23:06:32] * Fix username handling issue with `auprefix` parameter [23:06:45] http://www.mediawiki.org/wiki/Extension:AddPageService [23:06:50] like this one i guess [23:10:43] 03(NEW) CSS for IPA class missconfigured - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11019 normal; normal; Wikimedia: General/Unknown; (pheeror) [23:14:07] 03(mod) Most linked redirects - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10997 +comment (10helios89) [23:15:18] User::newFromName("0:0:0:0:0:0:0:1") is returning NULL here; is that correct? [23:15:23] (this is on the latest svn) [23:16:09] 14(INVALID) CSS for IPA class missconfigured - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11019 +comment (10Simetrical+wikibugs) [23:16:26] hi there, could someone tell me what i got wrong here? http://bugzilla.wikimedia.org/show_bug.cgi?id=10997 [23:17:27] davidmccabe: Usernames aren't allowed to be IP addresses; I suspect User::newFromName() is validating by default? [23:18:07] Yes, it does. [23:19:17] Helios, I don't see anything wrong with your analysis there. [23:19:28] *Simetrical blinks at GROUP BY 1,2,3,5 . . . huh? [23:19:58] robchurch: what constructor should I use for an anon user_text? [23:20:15] User::newFromName( text, false ) ? [23:20:20] ... oh. [23:20:27] Simetrical: ok, so to add a special page that list the most linked redirects i should add WHERE... etc etc to a copy of SpecialMostlinked.php ? [23:20:30] (false disables validation) [23:20:34] that is nonsense. but thanks. [23:20:43] Column positions, huh. [23:21:47] 03david * r25017 10/branches/liquidthreads/extensions/ (LqtExtension.php LqtModel.php): History works with anons now. [23:21:56] It is odd. [23:22:12] It would be better if User didn't care, but threw an exception when attempting to *save* the user object, if it was, e.g. an anon. [23:22:22] (Title-like validation would be fine) [23:22:27] Helios, I suppose so. It needs to be ensured that that doesn't slow down the query. But really, it would be best to add that to SpecialMostlinked or something rather than making yet another special page. [23:23:00] Simetrical: You mean, like the Report branch supports? [23:23:22] Simetrical: well, nice idea =) [23:23:58] 03david * r25018 10/branches/liquidthreads/extensions/LqtExtension.php: removed vardump [23:24:00] i think ill work out, but as i dont know php, i need advices from you guys :P [23:24:04] goodnight then [23:24:13] robchurch, hope so. [23:29:00] 03(mod) CSS for IPA class missconfigured - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11019 (10pheeror) [23:31:46] 03robchurch * r25019 10/trunk/extensions/MediaFunctions/ (3 files): [23:31:46] * Make MediaFunctions::resolve() smarter; returns error string - reduces duplicated code in each callback [23:31:46] * Introduce {{#mediadimensions}} and [experimental] {{#mediaexif}} parser functions [23:57:06] 03(mod) InsertTags deletes trailing newline in Explorer - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11011 (10danny_b)