[00:01:08] 03tparscal * r42434 10/trunk/extensions/Drafts/Drafts.hooks.php: Added token setting on ajax save. [00:05:42] woohoo [00:08:35] TrevorParscal: ok it's saving the token value but it's still not saving my second draft! [00:08:41] :( [00:08:51] ok - let me look at that [00:10:49] 03brion * r42435 10/trunk/extensions/Drafts/Drafts.hooks.php: fix for plural in drafts count message -- wfMsgExt() with 'parsemag' option needed here, since it's a plaintext message [00:12:16] *werdnus goes to his exam. [00:12:19] Have fun, guys :) [00:12:27] byeeee [00:13:20] 03tparscal * r42436 10/trunk/extensions/Drafts/Drafts.sql: Added some indexes on commonly sorted columns. [00:19:40] 03tparscal * r42437 10/trunk/extensions/Drafts/Drafts.classes.php: Fixed bug that prevented more than one draft per article at a time by qualifying the potential new draft with it's draft token. [00:21:26] 03tomasz * r42438 10/branches/CentralNotice-SpecialPage-Integration/ (4 files): cleaning up after E_ALL errors. fixing en translations. temp fix for setting date [00:24:12] TrevorParscal: ok, i think you'll want to tweak the indexes a little bit [00:24:15] 03(NEW) ID | Translation revisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16083 normal; normal; Wikimedia: User survey; (nkomura) [00:24:30] mysql can't make much use of multiple separate indexes in a single query -- so we need to compose them based on how we expect them to be used [00:24:45] ok [00:24:52] we'll want one index that goes along the axis user-namespace-title-savetime, for our general "drafts by this user on this page" lookups [00:25:03] then another just on draft_savetime for our "expire out all old drafts" query [00:25:10] that should cover things pretty well [00:25:34] do i need to give them names? (the indexes that is) [00:26:09] for a single-column index we usually give it the column name [00:26:20] for composed ones we'll give it something like user_title_savetime [00:26:49] most of the time we don't need to refer to the names, but sometimes we have to force an index, or updates might need to remove or alter an old index so it's good to have a way to refer to them ;) [00:26:52] ok - just want it to match everyting else [00:28:46] 03tomasz * r42439 10/branches/CentralNotice-SpecialPage-Integration/SpecialNoticeCentral.php: removing debugging lines [00:31:21] woo, the general draft saving works :D [00:31:27] unless i opened my tabs in the same second ;) [00:34:20] how about millisecond precision? [00:34:43] 03ipye * r42440 10/trunk/extensions/WikiTrust/: directory for the WikiTrust tool [00:35:52] *Pinky pokes brion [00:36:23] rarrr [00:36:36] PM [00:36:41] Splarka: what if i open them in the same millisecond??? :D [00:37:40] brion: then you suck, and I hate you! and gimme your baud [00:38:03] and did you just rar? <3 [00:38:23] classic [00:41:22] Tsk, tsk. This is an open source project, we should be targzing, not raring. :p [00:45:20] zipping is more crossplatform :-P [00:46:55] 03tparscal * r42442 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.php Drafts.sql): Grouped keys to optimize queries. Added automatic cleaning of drafts more than 30 days old (configurable). [00:52:40] 03ipye * r42443 10/trunk/extensions/WikiTrust/ (24 files in 7 dirs): Merge commit 'origin/master' [00:54:50] as long as you don't lzma... [00:55:45] 03brion * r42444 10/trunk/extensions/Drafts/Drafts.classes.php: quickie tweak on timestamp formatting in drafts garbage collection [00:58:37] 03(NEW) 20M just doesn't cut it - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16084 15enhancement; normal; MediaWiki: Special pages; (jaymac407) [01:00:26] 03(NEW) Timeline images either generated without text or even not at all. Sometimes also no map areas as well. - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16085 major; normal; MediaWiki extensions: EasyTimeline; (danny.b) [01:08:20] 03(mod) Timeline images either generated without text or even not at all. Sometimes also no map areas as well. - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16085 normal->high; +comment (10danny.b) [01:31:17] Does anyone know how to set up transwiki import from wikipedia to my wiki? [01:38:36] techman224: why don't you use wikipedia:special:export -> yourwiki:special:import? [01:40:06] Danny_B: I wanted a easier way. [01:41:00] to import pages from wikipedia. [01:42:02] i'd suppose at least to create interwiki prefix for wikipedia and put it in importsources. but that's just quick shot,not saying it will work as well as i guess you should ask first if it's allowed [02:03:44] 03(mod) Provide preference-based autoformatting for unlinked dates - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10tony1) [02:10:56] Agh... no vibber [02:11:52] :/ well, guess it's down to trying to understand putty's .ppk format [02:12:38] vibber, n.: 1. Device for maintaining horribly complex internet sites. 2. Device for turning coffee into live hacks. 3. Device for reverting in SVN. [02:12:48] ah.. crap, impossible [02:12:54] heh [02:13:14] 4. Device for requesting ssh key changes for svn [02:17:18] I got a new laptop, and installed Ubuntu on it... Back on Windows I was using TortoiseSVN and my ssh keys were in PuTTy's ppk format... So I need to ask brion now to change my svn keys to a new set... [02:18:06] Might be nice to get rid of that passphrase to... [02:20:02] Has anyone ever run into problems with MediaWiki + FastCGI + PHP5 + LigHTTPd? I'm getting excruciating load times [02:21:07] <_mary_kate_> Dantman: apt-get install putty [02:21:12] <_mary_kate_> Dantman: it can save your keys in OpenSSH format [02:21:46] Jesus, that took like 2 minutes to load. [02:22:01] Maybe FastCGI isn't configured correctly, surely it should live up to its name though? [02:33:16] 03aaron * r42445 10/trunk/extensions/Drafts/ (5 files): [02:33:16] * Move hooks to class and delay inclusion [02:33:16] * Track page_id as FK [02:33:16] * Add some comments [02:33:16] * Some minor tweaks [02:38:22] 03aaron * r42446 10/trunk/extensions/Drafts/Drafts.pages.php: Remove unused var [02:46:02] 03aaron * r42447 10/trunk/extensions/Drafts/ (Drafts.hooks.php Drafts.php): [02:46:02] * Use given $user param [02:46:02] * Rename function [02:48:27] _mary_kate_: PuTTy is just giving me garbage... openssh can't read the openssh format PuTTy exports... meh, I want to get rid of the passphrase anyways [02:49:09] <_mary_kate_> Dantman: perhaps you could export it in IETF format from putty and use 'ssh-keygen -i -f ' to convert to openssh [02:49:15] <_mary_kate_> you don't have to regenerate the key to remove the passphrase [02:53:28] 03aaron * r42448 10/trunk/extensions/Drafts/Drafts.hooks.php: Add note [03:15:07] 03aaron * r42449 10/trunk/extensions/LogEntry/LogEntry.body.php: [03:15:07] * Escape token [03:15:07] * Remove odd userCan param [03:15:07] * Brace tweaks [03:21:40] *f00li5h meows [03:22:10] is there an existing syntax for including other pages? or can you only include templates? [03:22:42] <_mary_kate_> {{:Page name}} [03:22:46] {{Foo}} == {{Template:Foo}} [03:22:56] namespace is optional only for template namespace, for all others you must specify it [03:23:00] {{:Category:Kitties}}? [03:23:02] for main, do what _mary_ says [03:23:11] see _mary_kate_: that's the problem with just saying that ^_^ [03:23:28] you can't include Category content, just the description (same for images) [03:23:44] hrm [03:23:57] but that would be {{Category:Kitties}} [03:24:11] To include category content, use an extension like CategoryTree. [03:24:26] https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 <-- 158 comments. Surely that's the record. [03:24:33] or DPL (we need a "He said DPL!" image) [03:24:41] Splarka: but [[:Category:Kitties]] is a link to that category [03:24:49] {{ not [[ [03:25:00] MZMcBride: you don't do links with {{ [03:25:05] And links are different than transclusions. [03:25:12] Different syntax, different rules. :-) [03:25:17] sure, argue with reality [03:25:34] transclusions are: {{Namespace:Pagename}} [03:25:37] Preceding colon is to disambiguate from category inclusion [[Cate...]] [03:25:40] if you omit a namespace and colon, it assumes Template [03:25:41] the end [03:25:47] well, {{Category::Foos}} doesn't work anyway, so there's no reality to argue with [03:25:57] Heh. [03:26:02] Foolish, eh? [03:26:21] I can't include the content of a category in my page with that syntax [03:26:36] Re-read scrollback. [03:28:26] MZMcBride: there is no syntax to include the contents of a category in a page [03:28:43] To include category content, use an extension like CategoryTree. [03:29:02] or DPL (we need a "He said DPL!" image) [03:29:14] yeah [03:29:21] no syntax for it [03:29:59] *Splarka feels slashed [03:33:26] Anyone care to peek at my oh-so-unworthy patch for https://bugzilla.wikimedia.org/show_bug.cgi?id=6908 ? [03:36:36] 03(mod) 20M just doesn't cut it - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16084 (10jaymac407) [03:38:48] 03simetrical * r42450 10/trunk/extensions/Drafts/ (4 files): stylize.php, K&R braces, whitespace fixes [03:38:52] 03simetrical * r42451 10/trunk/extensions/Drafts/Drafts.classes.php: [03:38:53] Use MediaWiki style for member variables [03:38:53] This commit was generated using sed. I verified that there are no [03:38:53] syntax errors, but it might still cause problems if there's any funky [03:38:54] stuff like $this->$foo or something. If there are any issues, please [03:38:56] revert. [03:39:07] ooh, they're getting feisty now [03:39:12] "doesn't cut it" eh? :D [03:40:02] oh, different thing [03:40:40] 03(mod) Default memory limit should be increased - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16084 summary; +comment (10mikelifeguard) [03:41:36] Mike||busy: that summary should probably be more specific, yah [03:41:49] 20M just doesn't cut it -> 20M just doesn't cut it (I don't mean uploads) [03:42:08] 03simetrical * r42452 10/trunk/extensions/Drafts/Drafts.classes.php: Whitespace error [03:42:48] 03(ASSIGNED) Show *how many* prior revisions exist when deleting an article - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3480 (10jaymac407) [03:43:34] Mike||busy: Thanks for the fixing the bug summary. :-) [03:43:44] I've been on a crusade against bad bug summaries lately. [03:44:04] *Splarka lags, heh [03:44:17] 03simetrical * r42453 10/trunk/extensions/Drafts/Drafts.classes.php: [03:44:17] Revert "Use MediaWiki style for member variables" [03:44:17] (r42451) It was clearly broken: [03:44:17] * Did not use /g [03:44:17] * Hit some things inside string literals [03:44:34] *Simetrical should do at least a cursory examination of diffs before committing, dangit [03:50:58] Simetrical should review Mike's patch for bug 16084 [03:51:24] Simetrical sees no patch on bug 16084. [03:51:54] http://www.review-board.org/ [03:51:56] MZMcBride thinks Mike_lifeguard meant bug 6908. [03:52:05] code review thing... may be intersting [03:52:34] <[o> may I put this on mediawiki? [03:52:35] <[o> http://www.ihateyoujulia.com/?id=6d7639f03d376244b8b57b439b8a555e [03:52:36] [o is a spammer! [03:52:38] er.. yeah [03:52:40] <[o> no [03:52:42] :D [03:52:42] <[o> I am not [03:52:43] sure you are [03:52:52] ugh [03:52:53] <[o> you are nuts :/ [03:53:04] ahh [03:53:05] [o: just get your porn from torrents and quit bugging us [03:53:14] !op Kick [o please. [03:53:14] --mwbot-- Help, ops! Ashar, brion, Charitwo, Cometstyles, domas, Eloquence, Fire, flyingparchment, Hashar, JeLuF, jeronim, jwales, MinuteElectron, Splarka, VasilievVV, Werdna [03:53:14] <[o> no spam. but a little porn yeah [03:53:15] How do I add a string to the english language files? [03:53:34] Thank you. :-) [03:53:37] O_O [03:53:38] all I see is foreign languages :( [03:53:43] *Splarka checked view-source:http://www.ihateyoujulia.com/?id=6d7639f03d376244b8b57b439b8a555e [03:53:45] dam nslow reaction :( [03:53:48] slow* [03:53:57]

My girlfriend cheated on me. And that's my revenge!

[03:54:17] FUCK YOU JULIA.
Please help me!
Take the link below and send it to as many people as possible. When somebody clicks your link
[03:54:22] https://bugzilla.wikimedia.org/attachment.cgi?id=5391&action=diff anyone? [03:54:25] Charitwo: op here? O_o [03:54:37] for quite some time, why? [03:54:55] jwales. Heh. [03:55:07] ha [04:01:01] 03(mod) Special:Mystyle and Special:Myscript - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=6908 (10Simetrical+wikibugs) [04:01:05] *Simetrical reviewed the patch on 6908, yay [04:04:08] 03(mod) Show *how many* prior revisions exist when deleting an article - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3480 (10jaymac407) [04:04:52] 03(mod) Show *how many* prior revisions exist when deleting an article - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3480 (10jaymac407) [04:20:14] 03(mod) Show *how many* prior revisions exist when deleting an article - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3480 (10jaymac407) [04:22:19] 03(mod) Show *how many* prior revisions exist when deleting an article - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3480 +need-review +patch (10mrzmanwiki) [04:24:32] 03(NEW) JA | Translation rivisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16086 15enhancement; normal; Wikimedia: User survey; (nkomura) [04:49:46] hello [04:53:49] i have a question that is kindof about terminology. I'm trying to find out more about the hierarchy that you can build up (e.g. Foo/Bar and on page Bar there would be a link back to Foo). [04:54:21] first of all i'm not sure what the correct term for that is to find out more about it. [04:54:33] "subpages" [04:54:42] the link back is usually referred to as a "breadcrumb" [04:54:55] thanks. [04:54:59] !subpages [04:54:59] --mwbot-- By default some namespaces have subpages enabled and others don't. You can enable or disable them using $wgNamespacesWithSubpages in LocalSettings.php. [04:55:20] there isn't a lot of difference between the two. the most visual is the link back (if the superpage exists) [04:55:27] and some magic words like {{BASEPAGENAME}} [04:55:59] cool thanks guys. [05:27:01] morrn [05:37:25] 03(NEW) JA | Categories | Revisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16087 15enhancement; normal; Wikimedia: User survey; (nkomura) [05:39:49] 03(mod) JA | Categories | Revisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16087 (10nkomura) [05:40:33] 03(mod) JA | Categories | Revisions - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16087 (10nkomura) [05:48:49] 03(mod) JA | revisions - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=15973 (10nkomura) [05:57:16] 03(NEW) JA | Column width - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16088 15enhancement; normal; Wikimedia: User survey; (nkomura) [06:27:34] morning [06:34:31] *werdnus waves. [06:35:01] 03nikerabbit * r42454 10/trunk/extensions/Drafts/Drafts.hooks.php: * Double escaping and i18n fix [06:37:24] hi werdnus [06:54:12] hey Nikerabbit [07:07:51] 03david * r42455 10/trunk/extensions/LiquidThreads/ (Lqt.i18n.php LqtPages.php): Handle no-new-messages sensibly. Fixes 16041. [07:08:15] 03(FIXED) traceback on "Mark all as read" - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16041 +comment (10davemccabe) [07:13:37] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10s.r.e.turner) [07:16:22] !links [07:16:22] --mwbot-- http://meta.wikimedia.org/wiki/Help:Link [07:40:25] 03siebrand * r42456 10/trunk/phase3/ (175 files in 2 dirs): Fix typo in comments. Noticed by UV on http://www.mediawiki.org/wiki/Special:Code/MediaWiki/42260#c379 [07:41:53] if i have created a page that have a [[Category:Computer Os]] [07:42:56] i then create a new page, for instance Linux how i'm supose to do to have it under a category Computer Os/Linux ? [07:43:08] or maybe it's not the right way to do that.... [07:43:09] You put [[Category:Computer OS]] on the page. [07:43:18] on the linux page. [07:43:35] ok, i thought it a bad way, sorry [07:43:41] and many thanks again werdnus ;) [07:43:48] by the way, hello ;) [07:48:25] 03(mod) Expanded watchlist javascript should use 'onclick' handlers - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16073 (10happy_melon) [07:58:57] *Splarka likes javascript: hrefs more since you can see the code to be executed simply by hovering [08:04:27] 03(FIXED) Provide preference-based autoformatting for unlinked dates - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=4582 +comment (10tony1) [08:06:44] Guys, whats this one [08:06:46] Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/fu2ra/public_html/wikiwind/includes/Exception.php on line 140 [08:07:07] It was working just fine yesterday [08:09:05] 03siebrand * r42457 10/trunk/extensions/Drafts/ (Drafts.i18n.php Drafts.php): [08:09:05] * update extension credits (merge, add version and i18n for description) [08:09:05] * update some indentation [08:09:47] theKage: if it worked fine yesterday, and is broken now, then Something Changed (tm). [08:09:59] 03siebrand * r42458 10/trunk/extensions/Translate/groups/mediawiki-defines.txt: Add support for Drafts [08:09:59] No doubt about that [08:10:04] But how and why? :P [08:10:37] either the file itself was broken, or you are now using a different and incompatible version of php [08:10:58] look what that line contains. and the line before that. [08:12:36] Line 140: public $title, $msg; [08:12:44] 139: class ErrorPageError extends MWException { [08:12:56] 141 is empty [08:13:37] looks like it's complaining about the "public" keyword. which would indicate that you are now using php4 instead of php5 [08:13:55] someone fiddeled with your web server config... [08:14:14] hmm [08:14:20] probably [08:14:26] I'll check that [08:14:27] thanks [08:14:51] Oh I see it now [08:14:53] .oO(mediawiki should explicitly check the php version) [08:14:58] .htaccess was changed [08:15:33] AddHandler application/x-httpd-php5 .php was changed to AddHandler application/x-httpd-php5 .phpRewriteCond %{HTTP_HOST} ^.*$ [08:15:35] somehow [08:17:28] someone accidentally removed a newline there [08:17:49] hmm [08:17:50] Parse error: syntax error, unexpected '}' in /home/fu2ra/public_html/wikiwind/includes/Exception.php on line 156 [08:19:13] Okay I fixed that one [08:19:18] Thanks fellas [08:21:42] <_wooz> lo [08:23:28] What's the difference between the EditFilter and EditFilterMerged hooks? [08:24:16] how can i make a line of txt bold ? [08:24:39] i'm sure i saw it on the webpage .. but it keeps telling me to make bold statements. [08:24:49] '''text''' @ chalcedony [08:24:52] I believe [08:25:23] that looks right and ' ' italics' ' ? [08:25:53] *Splarka changes olipro to oli.wikia.com [08:26:23] yes chalcedony [08:27:30] 03(NEW) Access key for saving draft should be configurable - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16089 15enhancement; normal; MediaWiki extensions: Drafts; (siebrand) [08:31:10] that seems to not quite be it, theKage it leaves a `before the first word ? [08:31:37] they have to be close, like so [08:31:39] ''text'' [08:35:11] you can also use [08:35:41] and/or [08:36:05] theKage: it needs three not four :) [08:36:10] the fourth one shows [08:36:28] Umm, did I say 4? :O [08:36:48] you probably didn't .. i need a magnifying glass to see this font [08:36:58] Oh :P [08:37:42] thank you very much theKage :)) and Splarka :) [08:37:52] You're welcome [08:38:01] still learning the basics myself [08:38:29] you can do some very kewl things with it [08:39:25] Yeah [08:39:38] Im making a "Can (MSI) Wind Run X" wiki [08:43:52] 03siebrand * r42459 10/trunk/extensions/Translate/aliases.txt: Special page L10n support for extension Drafts [08:49:46] 03aaron * r42460 10/trunk/extensions/FlaggedRevs/specialpages/RatingHistory_body.php: Tweak header s again [08:52:26] 03siebrand * r42461 10/trunk/phase3/languages/messages/ (27 files): Localisation updates for core messages from Betawiki (2008-10-24 10:41 CEST) [08:58:44] 03werdna * r42462 10/trunk/extensions/AbuseFilter/ (4 files): Minor bugs in abuse filter, plus new ALL_LINKS/ADDED_LINKS/REMOVED_LINKS [08:59:14] 03(mod) Add a variable for links added - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15940 (10Andrew) [08:59:47] 03(FIXED) Add a variable for links added - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15940 (10Andrew) [09:07:22] 03(mod) Add Cookbook as a content namespace on Serbian Wikibooks - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15282 (10smolensk) [09:07:55] 03midom * r42463 10/trunk/phase3/includes/specials/SpecialUserlogin.php: reset password attempt throttle at successful logins [09:08:18] domas: nevar! [09:08:28] hehe [09:08:32] was a bit stupid [09:08:37] you couldn't spam logins! [09:08:45] I wrote that code, domas :) [09:08:53] 03aaron * r42464 10/trunk/extensions/FlaggedRevs/language/RatingHistory.i18n.php: shorten message [09:08:56] then you wrote stupid code, andrew! [09:09:12] why? [09:09:13] werdnus: crosscheck if I did everything right, though ;-) [09:09:14] *werdnus stabs login spam [09:09:30] werdnus: sucks with API [09:10:00] werdnus: you have to think about lots and lots of persistency, etc [09:10:03] once writing api code [09:10:48] domas: boring. They should go back to screenscraping. [09:10:52] but yes, it looks okay. [09:10:54] so true [09:11:28] domas: anyway, since you were nice enough to fix my code for me, I have a reward for you [09:12:34] domas: more work! [09:12:36] http://svn.wikimedia.org/viewvc/mediawiki/branches/group_rights/maintenance/archives/patch-group_rights.sql?view=markup [09:12:37] ... [09:12:40] tell me if that sucks... [09:14:50] these tables are going to be so small that I won't think about it ;-) [09:15:01] what is cg_changer? [09:16:40] the group that changes the rights [09:16:49] so if sysop can add rollbacker group, cg_changer is sysop [09:17:22] wonder if there is a trick to making mediawiki leave a list as a list? [09:18:12] ?? [09:18:25] ah [09:18:38] werdnus: I lack audit trail [09:18:41] werdnus: 'who' did change [09:18:41] i made it vertically .. it needs commas now or something to be in a row [09:19:01] domas: that's in Special:Log [09:19:03] ah [09:19:03] ok [09:19:08] this is for storing group permissions in the DB [09:19:20] so I hit database twice per pageview! [09:19:21] *werdnus ducks. [09:21:37] uhhh [09:21:44] ghm [09:21:50] why isn't it in cached user object? [09:21:55] then? [09:21:56] eh? [09:21:58] domas: it is, I'm just fucking with you. [09:22:18] 03siebrand * r42465 10/trunk/extensions/ (55 files in 51 dirs): Localisation updates for extension messages from Betawiki (2008-10-24 10:41 CEST) [09:22:27] \o/ [09:22:33] POWER! [09:22:37] ABUSE [09:23:29] Oo [09:23:32] omg [09:23:34] evil [09:23:44] woot [09:24:02] fuck the unfuckable, break the unbreakable... raw raw, fight the power [09:24:16] RAWR [09:24:18] (10 points for anybody getting the ref) [09:24:39] so, back to what I was doing [09:24:40] damn [09:24:56] I had to fix stuff in mediawiki to complete my script :) [09:25:44] hehehe, I scared him! [09:27:08] *werdnus b&s [09:28:56] Hello! We have a strange problem with our mediawiki installation: After upgrading to mysql5 (with mysql_upgrade) changes to a wiki page are only shown after a page reload. Also, the list of last changes does not contain any new entries. Every changed page get the change date "January 1st, 1970". [09:29:01] haha [09:29:06] I R FURIOS [09:29:21] *werdnus giggles [09:30:03] WhiteHawk: what version? [09:30:21] werdnus: 1.13.2 [09:32:45] 03siebrand * r42466 10/trunk/extensions/AbuseFilter/AbuseFilter.i18n.php: Localisation updates for extension messages from Betawiki [09:33:11] This also happens after login: I enter my login data and after being redirected to the main page, it seems like I am not logged in at all. After refreshing the page I am allowed to edit it. [09:39:57] looks like a cache problem [09:41:22] 03(NEW) ID | Translation revision - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16090 normal; normal; Wikimedia: User survey; (nkomura) [09:44:57] 03(NEW) FR | minor revision - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16091 minor; normal; Wikimedia: User survey; (nkomura) [09:44:58] Yes, but where? mediawiki, mysql, apache? [09:46:54] Okay, we got it. Changing the charset for the complete mysql installation caused this error. [09:47:50] 03siebrand * r42467 10/trunk/extensions/Translate/groups/MediaWikiExtensions.php: Add codereview and collection to Wikimedia meta message group [09:50:30] uh [09:58:52] hahaha [09:58:59] I don't really follow this channel [09:59:02] so no surprise [09:59:18] *werdnus hides. [10:03:37] 03(NEW) IT | minor revision - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16092 minor; normal; Wikimedia: User survey; (nkomura) [10:03:50] 04(REOPENED) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 +comment (10s.r.e.turner) [10:22:15] hi, how do i change the link and name of the main page in the sidebar? isnt it MediaWiki:Mainpage or something like that? [10:22:31] yes. [10:23:04] hmm... its not working for me [10:23:09] ive purged the cache [10:23:19] but the logo and sidebar link still say mainpage [10:23:51] yeah, there's another message for the actual *text* shown in there. [10:24:04] hi [10:24:17] mau [10:24:32] is there a configuration option to prevent images from linking to a description page? [10:24:53] or, what php file would I need to edit to remove this feature? [10:25:09] whats that message? [10:25:16] the links also still go to Mainpage [10:26:20] any ideas werdnus? [10:26:21] Bluegoblin7: it can depend on what you have in Sidebar, the syntax is a bit special [10:26:37] 03(NEW) AF | minor revision - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16093 minor; normal; Wikimedia: User survey; (nkomura) [10:26:41] Splarka: how do you mean? i havent yet changed the sidebar [10:26:51] it can be an internal link, an external link, or a message. If it is a message then user language translation is applied (for link texts, not for links) [10:26:53] 03(mod) AF | minor revision - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16093 (10nkomura) [10:27:06] the first thing i did was move the main page, delete the redirect and rename it as per other wikis ive done it on [10:27:10] but it hasnt worked [10:27:28] ive created both MediaWiki:Mainpage and /en and purged but nothing has happens [10:27:32] for example: **Foo|Foo will show as something like Foo if there is no MediaWiki:Foo [10:27:52] ** mainpage|mainpage-description [10:28:11] that means the messages to change are [[MediaWiki:Mainpage]] and [[MediaWiki:Mainpage-description]] [10:29:59] Remenic: probably /includes/Linker.php [10:30:39] yep i changed those but nothing else has changed [10:30:43] see http://svn.wikimedia.org/viewvc/mediawiki/?view=rev&revision=41727 and http://svn.wikimedia.org/viewvc/mediawiki/?view=rev&revision=41789 [10:30:48] still says MainPage linking to main page [10:31:05] this added link-title, link-url, and no-link parameters to [[Image]] syntax for linking images elsewhere [10:32:15] you might just be able to comment out lines 812 and 813? *doesn't know php* [10:33:02] Splarka: any ideas? if I give a link could you have a look? [10:33:29] Bluegoblin7: try drastic, try rearranging the sidebar items, see if they do anything [10:33:42] ok [10:36:34] Splarka: Changed the links around, no luck, also tried changing to something obvious like "OMG THE SKY IS FALLING" and still no luck... [10:36:51] then you have bigger problems [10:37:11] even when i log out... [10:37:12] any ideas? [10:37:21] im happy to grant sysop if you want to have a look [10:37:27] its no doubt me messing i up [10:37:30] action=purge on MediaWiki:Sidebar maybe [10:37:38] *Splarka doesn't know [10:39:27] i think ill just change it manually in the sidebar if that works rather than using the messages [10:46:10] that doesnt work either [10:46:12] grrrr [10:46:20] *Bluegoblin7 hates mediawiki sometimes [10:47:16] where is the php error log? [10:47:21] (typically on linux) [10:50:30] is there a php error log, or does it come out in the apache log? [10:53:26] try error_reporting(E_ALL); [10:53:27] ini_set("display_errors", 1); [10:53:28] ? [10:53:33] in your localsettings [10:59:52] DarkoNeko, not yet, I would just like to look at the file first [11:02:10] for the php log, I think there's a http/log/error_log and /access_log [11:02:19] well, just use find error_log or something :) [11:02:38] you'd probably need to be root to read it [11:02:46] (or su'ed) [11:03:03] Splarka: do you know who might know how to fix my isse? [11:15:56] "Warning: You are not logged in. Your IP address will be recorded in this page's edit history. " is there a way to change this message [11:16:16] which file do i edit [11:16:25] no file [11:16:31] system messages are on Special:Allmessages [11:16:40] let me check [11:17:12] that one is [[MediaWiki:Anoneditwarning]] [11:17:23] go to the page by that name and edit it (sysop only) [11:19:13] Splarka: dio you know who could fix the issue of have any ideas? [11:19:31] Bluegoblin7: not really, check the faqs and idle here a while [11:19:32] yes i just got it [11:19:38] ok [11:19:45] thanks Splarka [11:19:50] rar [11:21:24] {{waiting}} [11:22:48] that is not idle :P [11:23:10] Bluegoblin7: what's the problem? [11:23:31] on my wiki when i change MediaWiki:Mainpage and the local langs nothing happens [11:23:41] i can give link and sysop rights if you want a look [11:28:40] i change it to what i want, purge but the sidebar links and the logo link stay to main page [11:28:44] any ideas werdnus? [11:29:14] link plz. [11:29:39] http://203.122.240.118/requests [11:32:02] werdnus: need sysop? [11:32:31] I fixed it without sysop. [11:32:46] oh? [11:32:49] what did you do? [11:32:55] http://portalhost.servehttp.com/requests/index.php/MediaWiki:Sidebar?action=purge [11:33:04] action=purge on MediaWiki:Sidebar maybe [11:33:11] yknow, if they just do what you say the first time [11:33:33] i did that when you told me Splarka [11:33:35] and nothing happened [11:33:45] well I'm magick. [11:33:47] huh, I did see once on wikia... [11:34:05] some users could edit the mw namespace and affect no changes, the cache would be stuck [11:34:16] but others could edit it changingly, even just a null edit [11:34:18] effect no changes... [11:34:23] hmm [11:34:25] thanks [11:34:35] having a problem with installing mediawiki, getting errors while running the config script, anyone that can help me out? [11:35:10] *Splarka marks werdna as a grammar nazi and will be sure to correct him on everything he ever possibly does wrong from now on [11:35:36] *Splarka notes affect is also a verb, in case werdna never saw that XKCD [11:35:37] how can i fix the cache on my pc? [11:35:54] Bluegoblin7: it isn't your PC, it is your user, or something, mysterious cosmic forces [11:36:02] Splarka: actually, you would do well to learn that. [11:36:06] since that's what I was picking on. [11:36:06] hmm it does it when im logged out [11:36:23] > to affect (third-person singular simple present affects, present participle affecting, simple past and past participle affected) [11:36:32] You weren't affecting changes (making changes to changes?), you were effecting them (making them occur) [11:36:35] > to effect (third-person singular simple present effects, present participle effecting, simple past and past participle effected) [11:36:57] yes, I know. I was correcting your use of 'affect' (which is usually the verb) to 'effect' (the more appropriate verb in the circumstances) [11:37:01] you can effect change, but you can affect change too [11:37:06] Unless you intended to say that you were impacting change. [11:37:12] i.e. you were causing a change to the change. [11:37:18] indeed [11:37:29] since it is _usually_ applied that one wants to cause change, when editing mw namespace [11:37:32] ??? how can i fix it?!?! [11:37:38] and they were not causing change, when they tried [11:37:39] Splarka: causing change to change? [11:37:47] go to a grammar channel not a mediawiki channel ;P :P [11:37:49] ;) [11:37:51] they affected the normal change [11:37:51] * [11:37:53] *werdnus stabs Bluegoblin7 [11:38:18] http://www.houstonrockshow.com/macros/grammar-nazi.jpg [11:38:22] *Bluegoblin7 reaveals his stav proof vest to werdnus, then pulls out to uzis and lets fire [11:39:17] hi [11:39:54] hey Nikerabbit [11:40:22] anyone? :[ [11:41:20] LSky`: asking a concrete question will generally help. supply and exact error message is also a good idea. [11:42:41] ok, i just logged out and it now displays correctly [11:42:49] so how can i change it for all users? [11:44:12] hi Duesentrieb [11:44:21] hi Nikerabbit [11:44:33] Splarka, werdnus? [11:45:02] Bluegoblin7: I don't understand the problem. [11:45:50] when i am logged in the main page link is not displaying what i changed it to [11:45:58] ive followed all the FAQs [11:46:01] ive purged [11:46:09] ive added the local languages [11:46:17] but still it says Main Page [11:46:23] when i log out it shows what i want it to [11:46:26] are you using memcached? [11:47:01] eaccelerator [11:47:01] 03(mod) RFE: ParserFunction to extract one or the other part of a wikilink - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16080 (10cyp) [11:50:30] werdnus we are using eAccelerator [11:51:57] okay, well clear that thing's cache [11:52:00] ok [11:52:03] by restarting httpd, restarting eaccelerator, whatever. [11:52:07] kk [11:53:49] {{doing}} [11:59:02] ok cache deleted [11:59:08] and apache etc restarted [12:01:13] 03(mod) Expanded watchlist javascript should use 'onclick' handlers - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16073 (10danny.b) [12:01:19] 03(mod) JavaScript (tracking) - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=2114 (10danny.b) [12:01:56] okay, here it goes then. when running the installation script i get this error: Fatal error: Class 'LBFactory' not found in /home/firearms/public_html/wiki/includes/GlobalFunctions.php on line 2582 [12:02:08] anyone know what that is? i tried looking it up on google, no luck [12:04:22] werdnus: fixed, thanks for your help [12:04:36] :) [12:05:38] hi everybody [12:05:53] hi imt06 [12:06:10] I've just installed MediaWiki and automated the backups. I was wondering which scripts in "maintenance/" directory should I run (daily/weekly/etc) [12:07:25] !backup | imt06 [12:07:25] --mwbot-- imt06: http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki [12:08:01] Thanks werdnus, I know how to backup my wiki already. I want to add some maintenance scripts to the cron job (if needed) before/after the backups [12:08:59] i/e rebuildall.php [12:09:26] hmm... got another issue, with scarytranscluding [12:09:59] oh I see what you mean. [12:10:03] You don't need them. [12:10:04] :) [12:10:22] anyone? [12:10:44] I'm using MySQL, shouldn't I use rebuildall.php to recreate the fulltext indexes? [12:11:40] (I've little experience with MySQL so I don't know how often indexes need to be rebuilt) [12:13:26] no need [12:13:51] they're maintained all the time [12:14:04] on that wiki ive set up two templates to scarytransclude and created them at where they are scarying from [12:14:07] good [12:14:16] thanks domas, werdnus [12:14:17] buts its displaying create this page etc [12:14:22] ideas? [12:14:33] did you enable scarytransclusion? [12:14:39] did you enable iw_trans in the interwiki table? [12:14:46] yep [12:14:59] its transcluding it just not the current version [12:14:59] =[ [12:15:06] its transcluding as if its not there [12:15:07] oh, there's a cache. [12:15:22] *sigh* another cache to clear [12:15:32] I dunno where it is though [12:15:51] ok [12:16:12] How can i create a page with an underscore in the name [12:16:26] haha [12:16:30] underscore is space [12:16:33] ill have a looksy [12:16:34] space is underscore [12:16:35] sad, eh [12:17:09] domas: I know, but I am documenting our databases at work and the names have underscores [12:17:14] domas: any work around? [12:17:30] domas: use the ASCII value? [12:18:03] huh [12:18:09] use some unicode underscore %) [12:18:56] http://en.wikipedia.org/wiki/Not%E2%80%97underscore [12:19:34] thanks Splarka [12:19:43] that is DOUBLE LOW LINE (U+2017) [12:20:00] be sure to redirect [[Page name with spaces]] to it so people can link to it [12:20:31] maybe ill just use the spaces [12:21:07] *Splarka wonders if displaytitle allows underscores [12:21:14] it would. [12:21:42] it does work. [12:21:54] MuelleJ: use {{DISPLAYTITLE:Title_with_underscores}} somewhere in page text. [12:22:01] there you go then [12:22:16] Getting the following error while running the install script: Fatal error: Class 'LBFactory' not found in /home/firearms/public_html/wiki/includes/GlobalFunctions.php on line 2582 , what am I doing wrong? [12:22:19] one prob is it has to match exactly (other than case on the first title), so no typoes! [12:23:14] you can use {{DISPLAYTITLE:{{PAGENAMEE}}}} in some (most?) cases [12:23:23] that converts spaces to underscores [12:25:33] but it URI encodes some special characters, so is only mostly safe for alphanumeric page titles [12:25:36] is there a quick way of updating MediaWiki to the latest revision via the maintenance files? [12:26:41] or indeed any way except having to manually do it ;) [12:27:55] ?? [12:28:22] manual [12:28:30] 03catrope * r42468 10/trunk/phase3/ (RELEASE-NOTES includes/api/ApiParse.php): API: Added redirect resolution to action=parse. Based on a patch by Robert Chin [12:29:05] can only be done manually? grrr [12:32:32] so there is no update file? im running MediaWiki 1.14alpha but on a pretty old revision and need to update it [12:33:50] 1.14 "pretty old *kof* [12:35:24] well its like the first 1.14 revision after 1.13 ;) [12:35:39] so how can i update it to the latest one? [12:36:16] manually [12:36:47] how exactly please? [12:37:16] (because all i can think of is either each file individually or just reinstalling it :( ) [12:37:34] 03(mod) Mark edits suspicious, for review - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=1189 +comment (10Andrew) [12:40:01] DarkoNeko? ^^ [12:41:01] 03(mod) Send a cookie with each block? - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=3233 +comment (10Andrew) [12:41:10] that should be specified on the website :) [12:41:38] also, there might be a few database sheman change, so it'll provide the query to do the trick [12:42:27] ok [12:42:53] but for the code itself, it's probably a "replace everything" [12:43:02] except localsettings :) [12:44:32] ok i had hoped there was an easier way than that but obviously not ;) [12:44:49] well, at least I don't know one [12:44:54] im off to reinstall all my wikis from svn - i can then just update to the new revision ;) [12:44:56] thanks [12:45:00] maybe the website indicate a trick, but I never had to udate, so... :) [12:45:03] np [12:45:13] bye all [12:48:36] 03jojo * r42469 10/trunk/extensions/Collection/Collection.i18n.php: slightly nicer rendering finished page [12:51:05] 03jojo * r42470 10/trunk/extensions/Collection/Collection.body.php: enlarge fields for title & subtitle [12:54:14] how to regenerate the redirection table? [13:04:45] hi all, i`m tryiing to change my urls wiki, to a small format using rewrite but i`m fail, logs of apache showme File does not exist: /var/www/wiki/tsm [13:04:58] anyone know how i can fix this ? [13:05:58] 03catrope * r42471 10/trunk/phase3/ (3 files in 2 dirs): [13:05:58] API: * BREAKING CHANGE: (bug 16074) Providing prop=revisions&rvprop=content with too many titles or revisions (typically through a generator) no longer causes an error, but a warning [13:05:58] * Added ApiBase::truncateArray() and used it in ApiBase::parseMultiValue() [13:06:40] *blink* [13:07:16] randra what rewrite do you use ? (if long, don't copy paste it here...) [13:07:20] 03(FIXED) gXXlimit=max makes to high limits and so causes error - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16074 +comment (10roan.kattouw) [13:07:39] well i got another version to work now, but there is no sysop user, can i change that using ftp or do i need to edit the database for that? [13:08:41] LSky' db for that [13:08:44] Oo [13:08:46] the usergroups table [13:09:05] hmhm, now to find a way into that db then :( [13:09:05] to create a sysop use, there's a script in maintenance/ [13:09:08] console one [13:09:35] yeah, all i have now is a firefox interface, ftp access and the password to the database [13:10:01] and the username obviously [13:10:21] :o [13:10:47] any way to fix that then? [13:11:20] Bluegoblin7's solution seems the best in your case [13:12:03] editing the db manually, yes [13:12:03] !shell | LSky` [13:12:03] --mwbot-- LSky`: Shell access (that is, SSH access, see http://en.wikipedia.org/wiki/SSH) is highly recommended if you want to run MediaWiki. You can install without it, and basic operation will work, but even creating backups or upgrading will be painful without it. Some more involved maintenance tasks may even be impossible. MediaWiki is not designed for minimal environments. [13:12:32] hi there [13:12:58] How do i change the upload link on the sidebar again? [13:13:15] ill probably need to get the guy that gave me ftp access, etc to also give me SSH then right? [13:13:16] MediaWiki:Sidebar [13:13:38] i didnt set that db up myself, so i probably cant edit it then [13:13:38] 03(mod) Default memory limit should be increased - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16084 (10jaymac407) [13:13:45] LSky`, if you have phpMyAdmin, that would work for the present case. [13:13:47] Prom_cat: edit MediaWiki:Sidebar [13:13:55] MW's web interface sucks, though, you can't do much of any administration with it. [13:14:21] is there any way to make {{ifeq work at MediaWiki:Pagetitle ? [13:17:16] i`m trying to use short urls on wiki using RewriteRule ^wiki/(.*)$ ./wiki/index.php?title=$1 [PT,L,QSA] [13:17:23] but not working correctly [13:17:43] mod rewrite its enable [13:18:01] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [13:21:57] !backup [13:21:57] --mwbot-- http://www.mediawiki.org/wiki/Manual:Backing_up_a_wiki [13:26:45] so, RewriteRule ^wiki/(.*)$ ./wiki/index.php?title=$1 [PT,L,QSA] / where it send : /var/www/wiki/tsm [13:27:01] I get it [13:27:16] try ^/wiki/(.*)$ instead ? [13:27:35] or configure RewriteBase correctly [13:32:09] i`ll try [13:32:31] RewriteBase /wiki [13:34:30] then you need to use RewriteRule ^/(.*) or RewriteRule (.*) [13:34:30] 03huji * r42472 10/trunk/phase3/ (3 files in 3 dirs): (bug 12764) Special:LonelyPages shows transcluded pages [13:34:54] 03(FIXED) Special:LonelyPages shows transcluded pages - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12764 +comment (10huji.huji) [13:35:34] how to regenerate the redirection table? [13:37:20] kwadronaut, why do you need to? [13:38:07] ;( now log showme File does not exist: /var/www/wiki/P\xc3\xa1gina_principal [13:38:14] Simetrical, because a crashed database and $person didn't had a proper dump [13:38:40] kwadronaut, php maintenance/refreshLinks.php should refresh all the links tables, including redirects. Using the --redirects-only option will only fix redirects. [13:39:10] File does not exist: /var/www/wiki/tsm [13:39:22] tsm is one article created on mediawiki [13:39:33] his searching on /var/www/wiki folders [13:41:29] thanks Simetrical [13:46:21] 03jojo * r42473 10/trunk/extensions/Collection/Collection.body.php: use long urls to prevent pages from being crawled (thus triggering PDF generation etc.) [13:56:51] Fatal error: Call to a member function isBlockedGlobally() on a non-object in extensions\CheckUser\CheckUser_body.php on line 847 on my wiki i get this [13:57:10] did you report it in bugzilla? [13:57:40] 03(NEW) Error when using SMW 1.4c-SVN - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16094 04CRIT; normal; MediaWiki extensions: Semantic Forms; (dasch_87) [13:57:48] no, i didn't [13:59:59] what's the require line in your LocalSettings.php? [14:04:45] jaymacdonald: include_once('extensions/CheckUser/CheckUser.php'); [14:05:09] i get this error only today [14:05:17] after svn update [14:05:24] hmm [14:05:40] let me try updating mine [14:06:07] try to see user contributions from an ip [14:12:16] working here [14:12:35] what PHP version are you using? [14:12:40] could be a compatibility issue [14:13:17] 5.2.6 [14:13:37] ahh, I see. [14:13:42] Fatal error: Call to a member function isBlockedGlobally() on a non-object in /home/jay/public_html/phase3/extensions/CheckUser/CheckUser_body.php on line 847 [14:16:48] You can for now, open CheckUser_body.php and comment out lines 847 and 848 [14:24:37] hoi [14:26:40] 03(NEW) Checking users on an IP causes Fatal Error - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16095 major; normal; MediaWiki extensions: CheckUser; (jaymac407) [14:28:36] 03(mod) Checking users on an IP causes Fatal Error - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16095 (10jaymac407) [14:50:10] hi [14:50:13] i have this problem: http://vdska.de/%2C_http://czqiismo.freewebportal.com/free-amateur-video-porn.html_Free_amateur_video_porn%2C_8- [14:50:22] a spam page and I don't see any delete button [15:18:11] 03tstarling * r42474 10/trunk/phase3/maintenance/ourusers.php: [15:18:11] * Added a special user for nagios [15:18:11] * Deleted obsolete yaseo configuration [15:27:48] I'm in your private mailing list, eating your troll hunting mates. [15:27:58] "Add pages I edit to my watchlist" - Presumably the edit page would therefore load with the Watch checkbox checked? [15:28:36] hi everybody [15:29:41] Yup, it does [15:30:08] 03(mod) Activate Collection Extension for generating PDF on all Wikisources - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15970 15enhancement->normal; summary; +comment (10lugusto) [15:32:40] hi dr.nick! [15:33:23] how do a set mediawiki, so it forces someone to login to view, edit, delete, etc... a page? (meaning it is a private wiki, not a public one) [15:35:18] KDB9000: http://www.mediawiki.org/wiki/Manual:Preventing_access [15:38:22] TiGRETON, thx [16:08:48] 03(mod) Activate Collection Extension for generating PDF on all Wikisources - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15970 (10jayvdb) [16:20:44] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [16:26:58] 03tparscal * r42475 10/trunk/extensions/Drafts/Drafts.i18n.php: Removed the mustlogin message since it isn't being used. [16:28:46] exist one plugin to send some images to mediawiki!? [16:37:17] I'm still having this nasty upload bug where i am uploading an mp3 file under the limit's size and it just bounces me back to a blank upload screen with no error message or anything... does anyone know why this is so? [16:37:28] hey everybody [16:37:38] It was definitely working before and my upload directory is definitely writable [16:37:55] AphelionZ: is it just doing it for mp3s or for any file? [16:38:34] i believe it's any file over a certain size, but not the size set in php.ini.. i checked the documentation and the other setting is not in my httpd.conf file [16:38:42] i forget what the setting is called of the top of my head [16:40:46] hello, how can I make ~~~~ show the local time of my server instead of UTC? [16:42:44] !wg LocalTimezone [16:42:44] --mwbot-- http://www.mediawiki.org/wiki/Manual:%24wgLocalTimezone [16:42:47] brion: do you have any tips on how to debug this? [16:42:51] argh [16:42:56] 03yaron * r42476 10/trunk/extensions/SemanticForms/includes/SF_TemplateField.inc: Improved handling for form values with spaces around them [16:43:13] mikeX: http://www.mediawiki.org/wiki/Manual:$wgLocaltimezone [16:43:50] ialex: I have set wgLocaltimezone to Europe/Athens, but nothing changes [16:46:17] hmm, my mistake, it was commented out and seems to work now, weird, I removed it because I saw no difference... [16:46:21] thanks anyway ialex [16:46:43] np :) [16:47:12] could it have something to do with server timeouts? thats the only thing i keep coming back to [16:47:15] 03yaron * r42477 10/trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php: [16:47:15] Added handling for change of class for properties from Title to SMWPropertyValue [16:47:15] in SMW 1.4 [16:50:17] its definitely based on file size, looks like ~5/6 MB is the limit [16:50:37] 03tparscal * r42478 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.css Drafts.hooks.php Drafts.php): Moved styles to a CSS file. [16:51:21] AphelionZ: php.ini has both a maximum post size and a maximum upload file size [16:51:29] the memory limit can also affect uploads, i think [16:51:37] ahhhh interesting [16:51:43] but i _think_ current versions of mediawiki are supposed to detect the cases where you went over the limits [16:51:59] might be something in your web server too, potentially (or an intermediate proxy), hmm [16:52:08] 03yaron * r42479 10/trunk/extensions/SemanticForms/INSTALL: New version: 1.3.5 [16:53:19] brion i think you're a hero hang on [16:53:27] well i know you're a hero, but in this particular instance [16:56:11] heh [16:57:09] 03tparscal * r42480 10/trunk/extensions/Drafts/ (9 files): Cleaned up some of the comments. [17:05:11] yep! it worked [17:05:15] thanks dude :) [17:13:39] This is probably old news for some, but "MediaWiki" (Daniel J. Barrett, O'Reilly) is now out - http://oreilly.com/catalog/9780596519797/ [17:15:58] ooh [17:18:06] 03ialex * r42481 10/trunk/extensions/ (111 files in 14 dirs): svn:eol-style native [17:18:56] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10ashtongj) [17:30:50] TimStarling: yesterday's patch for the expansion limit problem did not work, but I think I finally found the culprit "client". [17:31:17] 03rotem * r42482 10/trunk/ (2 files in 2 dirs): Localization update for he. [17:33:11] I'm listening [17:34:23] 03brion * r42483 10/trunk/extensions/Drafts/Drafts.sql: Update some comments -- some ?s from r42445 :) [17:34:33] Googlebot is the client producing the error, when it accesses a page with the url Title=x&printable=yes. [17:35:51] I'm setting a robots.txt file to see if googlebot will stop looking for this type of URL, but it would be interesting to know how "printable=yes" can affect the rendering of a page. [17:39:49] it shouldn't make much difference at all [17:39:53] hi all.. how can i make a special page accesible only by administrator [17:40:17] ammatsun: can you reproduce it? [17:40:45] presumably you can request the same URLs in your browser [17:41:14] otherwise it could have just been chance [17:41:27] TimStarling: I think it is actually a combination of URLs. It is happening when it access some oldid=x and then printable=yes. So, this means that maybe the old version with the problem got recached? [17:42:08] 03rotem * r42484 10/trunk/phase3/languages/messages/MessagesHe.php: Localization update. [17:42:41] well, it sounds pretty unlikely [17:43:08] but like I say, if it happens for you when you request the same URL, then we've got something [17:43:19] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [17:46:02] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [17:46:31] 03siebrand * r42485 10/trunk/extensions/Collection/Collection.i18n.php: Fix broken link from r42469 [17:49:10] ammatsun: if you like you can just disable the expansion depth check for now [17:49:18] Step 1: http://nsfafresh.org/wiki/index.php?title=Santos2001DLC&action=purge, Step 2: http://nsfafresh.org/wiki/index.php?title=Santos2001DLC&oldid=60008 (this actually ends in error and sometimes it is necessary to access more than one time or stop the connection in the middle), Step 3: http://nsfafresh.org/wiki/index.php?title=Santos2001DLC&printable=yes [17:49:50] ok so we do have something? [17:50:43] Something that I cannot fully explain why this would be happening. [17:51:08] 03brion * r42486 10/trunk/extensions/Drafts/Drafts.hooks.php: Add doc comments indicating which hooks the various functions handle [17:52:29] TrevorParscal: the ArticleSaveComplete hook is not UI-dependent, and can run for maintenance scripts etc and potentially cases where the $user object passed is not $wgUser. It might be good to pass through the user whose drafts we are going to be discarding to confirm that it's only going to try to remove the editing users edits [17:53:19] ok [17:53:28] ammatsun: I think I got a timeout, do you see something in your error log? [17:53:58] Yes. This is what is causing the "Maximum execution time of 30 seconds exceeded". [17:54:10] what function/line? [17:54:31] you said Database.php before, is it always the same/ [17:54:32] ? [17:55:39] No. it changes. What I've seen: MagicWord.php on line 359, Preprocessor_DOM.php on line 576, Preprocessor_DOM.php on line 694, Language.php on line 1383, Database.php on line 579. [17:56:03] heh [17:56:04] preprocessor_dom ? :o [17:56:16] last time I got that one, lib2xml was missing on my computer [17:56:19] yes well my patch from Preprocessor_Hash yesterday probably wouldn't have helped much [17:56:31] libxml is not missing [17:56:42] Hallo [17:57:35] Newbie with some questions [17:57:52] according to phpinfo I have libxml Version 2.6.28. [17:58:12] I said you had it [17:58:18] hello [17:59:00] Can anyone tell me if a wrapper can be created to media wiki so that it flows with a website design better? [17:59:25] ok, let's grab a backtrace [18:00:24] open includes/parser/Preprocessor_DOM.php [18:00:51] line 840 reads: [18:00:54] return 'Expansion depth limit exceeded'; [18:01:06] before that, put: [18:01:20] throw new MWException('depth limit'); [18:01:36] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10ashtongj) [18:01:54] and at the end of LocalSettings.php: [18:01:58] $wgShowExceptionDetails = true; [18:03:07] done [18:03:27] Anyone else available to answer my question? [18:03:33] ahh [18:03:45] 03tparscal * r42487 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.hooks.php): Modified the Draft::discard function to take an optional argument of user. Made the ArticleSaveComplete function pass it's own user argument to the Draft::discard function. [18:03:59] where's Splarka, I want to gloat [18:06:02] the problem is addcat, let me review it properly for you [18:07:00] 03siebrand * r42488 10/trunk/extensions/Collection/Collection.i18n.php: Make link more attractive visually. [18:08:03] No Help for the Newbies... [18:08:36] I'm reading this: http://www.acis.ufl.edu/~ammatsun/wiki/index.php/Extension:AddCategoryParserFunction [18:09:32] this is already a little old. And I did not update the page... [18:09:35] 03tomasz * r42489 10/branches/CentralNotice-SpecialPage-Integration/ (3 files): simplifying datatypes in sql. fixed bug in listNotices() where if no notices were present dates would not show up. [18:10:18] you see the backtrace too right? [18:11:18] http://linuxforums.pastebin.com/d1c5ec82f [18:11:49] alright [18:11:58] the main problem is that you call doEdit() [18:12:01] that's really not allowed [18:12:28] the problem is that parse() is not re-entrant [18:12:42] and so when you're parsing, you can't call anything that needs to parse [18:12:55] doEdit() calls parse(), so it's not on [18:13:28] it looks like you're updating the category page on edit [18:13:48] but that parser hook is also called when old revisions are viewed [18:14:16] sorry updating on view [18:14:41] and you probably don't want to be adjusting articles according to whatever old revision people happen to be viewing [18:16:04] in this particular case, it's gone into an infinite loop, not sure why exactly [18:16:29] but it's a bug in your code in any case [18:16:52] what you should be doing is setting a flag in the parser output [18:17:19] $parser->mOutput->addcat_newCategories[] = 'something'; [18:17:24] something along those lines [18:17:28] don't do anything, just set a flag [18:18:22] 03(mod) Wikimedia should become an OpenID provider - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=13631 (10daniel) [18:18:41] then add a hook for ArticleEditUpdates [18:18:49] what would be the purpose of this flag? [18:18:52] that passes $editInfo as a second parameter [18:19:10] ah, ok. [18:19:26] 03(mod) change language tag from 'roa-rup' to 'rup' - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15988 (10brion) [18:19:38] $editInfo->output is the ParserOutput object [18:19:43] in there you will find the flag you set [18:19:57] and then you can do the edit [18:20:06] but you still have to guard against infinite recursion [18:20:16] since it will re-enter doEdit() and so re-enter your hook [18:20:54] Is there a way to automate changing the link text on pages after a page is moved? E.g. Just moved "foo.old" "foo.new", and I wan every instance of [[foo.old]] in every page that has [[foo.old]] to change to [[foo.new]]. [18:21:15] brion: looks like you didn't break ammatsun's wiki after all [18:22:43] *TimStarling reads about computational tribology while he's on this wiki [18:22:49] any idea why an old version would be the one that gets cached? [18:24:05] I think it's being saved to the database [18:24:15] edits automatically save to the parser cache [18:25:07] I think you've got the wrong title somewhere and you've accidentally tried to save to the article you're viewing instead of the category page [18:26:18] yay for not breaking things? [18:26:42] well, it was still totally wrong, you just didn't cause that particular problem ;) [18:27:02] mmm, sunrise [18:27:16] 03straussd * r42490 10/civicrm/trunk/sites/all/modules/civicrm/CRM/Utils/Token.php: Remove opt-out token requirement [18:27:18] Which Title API guarantees that the title is valid? When the "expansion limit happened", this message got through as a proper title and I would like to avoid invalid titles. [18:27:23] *TimStarling finds strange things funny when it gets this late [18:28:02] well, you're using the wrong title constructor, and that could explain it [18:28:36] you should use Title::makeTitleSafe(NS_CATEGORY, $category); [18:28:46] and remove the $wgContLang->ucfirst() [18:28:55] because that function will do the ucfirst for you [18:29:26] then if the title is invalid, that function will return null [18:30:23] Thank you very much for all the info. Obviously I based my implementation on bad examples and without fully understanding the possible recursion. [18:30:46] hmm [18:31:07] it's best not to use doEdit() at all when there's an oldid parameter set [18:31:30] there's still the ancient getContent() hack which will screw everything up [18:31:45] I've tried to get rid of it a few times but it's a big chunk of ugly code [18:32:30] that's how it happens, that's the bug [18:32:41] $article = new Article($categorypages[$i]); [18:32:42] $content = $article->getContent(); [18:33:02] getContent() fetches the revision ID from the request [18:33:08] which is the revision ID of the page you're editing [18:33:41] so it ignores the title and gives you the exact text you're already parsing [18:34:59] there's a documented second parameter to the Article constructor [18:35:03] it may well work [18:35:20] eventually I'll remove it and make the intuitive behaviour the default [18:35:26] but the same code should still work [18:36:26] ok [18:38:10] alright, I'm off [18:38:47] good night [18:41:01] Good night and thanks again! [18:41:37] 03tparscal * r42491 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.hooks.php Drafts.php): Corrected the naming of the extension globals from $wg to $eg prefixes to follow coding conventions. [18:41:55] np [18:43:55] nini Tim-away [18:47:31] 03(mod) Expanded watchlist javascript should use 'onclick' handlers - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16073 +comment (10etdp01) [18:51:11] 03tparscal * r42492 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.hooks.php): Removed redundant Draft::getDB function. Changed $db variable names to $dbw or $dbr respectively - as to follow coding conventions. [18:53:04] 03(mod) Expanded watchlist javascript should use 'onclick' handlers - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16073 (10brion) [18:53:57] 03tomasz * r42493 10/branches/CentralNotice-SpecialPage-Integration/ (SpecialNoticeCentral.php SpecialNoticeTranslate.php): Moving to gmdate. Fixed month increment. Fixed display of en messages [18:54:16] 03catrope * r42494 10/trunk/phase3/includes/api/ApiQueryBacklinks.php: [18:54:16] API: Partial fix of bug 16076: use pl_from instead of page_id in list=backlinks [18:54:16] query. The two are equal because of the JOIN clause, but pl_from is indexed [18:54:16] whereas page_id isn't (MySQL 5 automatically rewrites this, 4 doesn't) [18:56:41] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [18:57:09] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [19:00:31] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [19:03:06] 03(mod) n:cs: site settings - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16063 +comment (10siebrand) [19:06:13] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [19:07:46] 14(WFM) Please change Thai Wikipedia logo - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16008 +comment (10siebrand) [19:09:14] hello, having blank pages after ugrade from 1.5.x to 1.13.1 [19:09:19] any idea? [19:10:45] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [19:11:52] Desktop: check PHP error log settings? [19:12:18] on shared host (godaddy), so no :( [19:12:38] ran upgrade from /config/index.php [19:12:45] try sticking ini_set('display_errors', true);error_reporting(E_ALL); in your LocalSettings.php [19:15:11] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [19:16:19] @brion did, but don't see anything....http://div0.com/help/index.php?title=Main_Page&oldid=22675 [19:17:19] ah [19:17:30] that's not what we usually hear described as "blank page" :) [19:17:38] 03(mod) Create proofread page namespaces on Chinese Wikisource - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15722 +comment (10siebrand) [19:17:46] ah. blank as in blank. ic [19:17:54] heh [19:18:07] let me re-phase. "empty article" [19:18:27] ok it seems that you've got something borked in your revision and/or text tables [19:19:06] probably text [19:19:32] can you poke into your database (say with phpmyadmin or something?) check how many rows are in 'text' [19:19:35] and if you have a separate 'old' table [19:21:38] 03(mod) Create proofread page namespaces on Spanish Wikisource - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=15775 +comment (10siebrand) [19:22:09] yes to 'old' and 3k to text [19:22:51] 3000 rows, or table is 3k total? [19:23:34] 3000 records, 5.5 MB [19:24:20] funkay [19:24:37] let me look at the old database on the 1.5.... [19:24:50] did you recently change any configuration like php settings? [19:26:31] no. but here is some weirdness...orignal DB has 38K rows, and 118 MB [19:26:38] so apparently lost some data there. [19:26:49] i did a sql dump [19:26:55] and uploaded to new server [19:27:02] then did install [19:27:08] suspicious [19:27:15] apparently it didn't all dump [19:27:44] either it didn't all make it or that new one was from a fresh 1.5-style install -- main page plus localized text messages [19:27:59] copy the old one back in and try running updaters again? [19:28:17] yeah...will do. thx [19:28:37] will update shortly... first time on IRC, so thanks 4 being nice [19:28:42] :D [19:29:08] brion, i thought you were supposed to bite the newbies? :P [19:29:26] *not* bite the newbies :) [19:29:32] awww :( [19:29:32] it's a subtle difference! [19:29:45] heh [19:29:46] damn [19:31:29] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10ashtongj) [19:32:10] 03(NEW) CS | minor revision - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=16096 15enhancement; normal; Wikimedia: User survey; (nkomura) [19:32:49] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [19:34:34] 03rotem * r42495 10/trunk/extensions/Collection/Collection.i18n.php: Localization update for he. [19:39:51] 03siebrand * r42496 10/trunk/phase3/languages/messages/MessagesKo.php: (bug 15880) Namespace alias for Special: for Korean. [19:40:19] 03(mod) Pseudo-Namespace on Korean Wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15880 +comment (10siebrand) [19:51:13] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [19:51:44] on my empty articles, i uploaded the text table, but it timed out (?). weird, because i can upload the whole database without it timing out.... [20:01:34] 03(mod) Enable upload for administrators and set correct time zone in Hungarian Wikinews - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14343 (10siebrand) [20:02:17] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10billclark) [20:06:11] 03(mod) Raise rollback limit on English WP - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14967 +comment (10siebrand) [20:07:00] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10cyp) [20:08:37] gonna try bigdump [20:14:23] 03soxred93 * r42497 10/trunk/extensions/CheckUser/CheckUser_body.php: (bug 16095) Allow CheckUser to check IP addresses. Patch by Jay Macdonald [20:14:32] 03(FIXED) Checking users on an IP causes Fatal Error - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16095 +comment (10soxred93) [20:14:58] 03(FIXED) Enable upload for administrators and set correct time zone in Hungarian Wikinews - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14343 +comment (10bdanee88) [20:15:15] 03(mod) Raise rollback limit on English WP - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14967 +comment (10mikelifeguard) [20:15:39] 03(mod) n:cs: site settings - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16063 (10danny.b) [20:15:46] 03(FIXED) Error when using SMW 1.4c-SVN - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16094 +comment (10yaron57) [20:16:45] 03(mod) incorrect rollback reports - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12873 (10mikelifeguard) [20:18:44] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10cyp) [20:21:10] 03(FIXED) Raise rollback limit on English WP - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14967 +comment (10brion) [20:24:17] 03siebrand * r42498 10/trunk/phase3/languages/messages/MessagesMl.php: (bug 15726) Namespace aliases for Malayalam [20:24:35] 03(mod) Namespace aliases for Malayalam Wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15726 (10siebrand) [20:30:00] 03simetrical * r42499 10/trunk/extensions/CheckUser/CheckUser_body.php: [20:30:00] Fix formatting for r42497 [20:30:00] Please do not commit patches without fixing spacing and indentation [20:30:00] first. [20:30:53] 03(mod) Change logo on roa-tara.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15769 (10brion) [20:35:03] 03(FIXED) Change logo on ms.wiktionary - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15771 +comment (10brion) [20:36:58] 04(REOPENED) Enable upload for administrators and set correct time zone in Hungarian Wikinews - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14343 (10gondnok345) [20:38:01] 03(FIXED) Change the logo of Malayalam Wikisource - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15809 +comment (10brion) [20:38:41] 03(mod) please change kv.wiki-logo - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15939 (10brion) [20:39:05] brion: r42471 is broken and should not go live, see Special:Code for details [20:39:54] *brion looks [20:40:01] RoanKattouw: well, revert it or fix it :) [20:40:14] I'm fixing it as part of a bigger fix [20:40:28] :D [20:40:31] thx for marking it fixme for now [20:40:36] But I discovered it halfway writing my fix so going back to cleanly fix this one thing is too much trouble [20:40:42] No problem [20:41:02] BTW, for future reference: all revs tagged with the api tag can be assumed to be reviewed by me. Just so you know [20:41:20] 03(FIXED) Add import source to de.wiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15780 +comment (10brion) [20:42:43] 03(mod) Change logo on roa-tara.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15769 +comment (10reg.kazuma) [20:43:03] 03(FIXED) Enable import/export between ms.wikipedia and id.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16033 +comment (10brion) [20:44:53] 03(FIXED) Create Wikimania 2009 website - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=13547 +comment (10brion) [20:45:05] RoanKattouw: woot [20:45:37] oh hai guys [20:50:51] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10Siegel) [20:50:54] 03(FIXED) Create proofread page namespaces on Spanish Wikisource - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15775 +comment (10brion) [20:51:15] 03(FIXED) Create proofread page namespaces on Catalan Wikisource - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15784 +comment (10brion) [20:53:43] "download as pdf" link has typo in url, i don't know where to fix it, but it's pretty urgent [20:53:58] so does download as open document [20:54:10] it's live on wikibooks [20:54:33] Danny_B, page ? [20:54:49] 03(mod) Pseudo-Namespace on Korean Wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15880 (10brion) [20:54:52] any [20:54:59] hmm [20:55:01] wait [20:55:24] Danny_B: what kind of typo? [20:55:26] bah, who decided to name it arttitle? [20:55:35] forget about typo [20:55:41] heh [20:55:46] my fault, it's art-title [20:55:58] i'd suppose "article" should be there [20:56:07] it doesn't do a good job with the main page :P [20:56:43] that's not good name for parameter :-/ [20:57:02] agree, it's confusing [20:57:04] i bet people will misplace it with article as i did [20:57:55] 03aaron * r42500 10/trunk/extensions/CheckUser/CheckUser_body.php: [20:57:55] * Revert r42497, wtf? [20:57:55] * Did proper fix [21:03:56] :) [21:03:59] perhaps it shall be improved [21:06:58] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [21:09:31] 03tparscal * r42501 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.php): Removed redundant visibility properties. Modified comments a bit. [21:11:00] 03aaron * r42502 10/trunk/extensions/FlaggedRevs/FlaggedRevs.hooks.php: Don't error out if !$file [21:13:21] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10smccandlish) [21:13:59] 03tparscal * r42503 10/trunk/extensions/LogEntry/ (6 files): Moved hooks into their own class. Moved classes to their own files. Added some comments. Converted comment style. [21:14:01] 03aaron * r42504 10/trunk/extensions/Drafts/Drafts.hooks.php: Remove token stuff from here [21:16:48] Hi, I'm using a shared user table, and for some reason, when I get a temporary password, it only works on the wiki I requested it on, and on other wikis, my old password still worked and the new one didn't. Any ideas? [21:17:06] TrevorParscal, FYI, we like to use the "public" specifiers, because "unspecified" in our codebase often means "has no specifier because this function dates to PHP4 when public/private/protected weren't supported". So it's actually ambiguous semantically, even if not technically. [21:17:45] Simetrical: I don't mind them there, but all static functions are public - no? [21:17:56] TrevorParscal, no, why would they be? [21:18:07] i think aaron broke something [21:18:16] $ git grep 'private static' | wc -l [21:18:16] 474 [21:18:48] Anyone know about my shared table problem? [21:18:52] TrevorParscal, a private static function can only be called statically from within member functions of the class it's part of. [21:19:02] ok [21:19:17] 03huji * r42505 10/trunk/extensions/Translate/Translate.i18n.php: Better wording, to comply with the rest of the items in the dropdown. [21:19:29] chuck, I don't know why that would be, no. [21:19:48] well the extension had some with public and some without - I will add public to all of them (since none of them are private) [21:20:06] "Remove token stuff from here" [21:20:11] What kind of commit message is that? [21:20:21] *Simetrical frowns at Aaron, wherever he is [21:24:22] 03tparscal * r42506 10/trunk/extensions/Drafts/ (Drafts.classes.php Drafts.hooks.php Drafts.pages.php): Fixed draft token bug. Added explicit visibility modifiers. [21:25:16] 03tparscal * r42507 10/trunk/extensions/LogEntry/LogEntry.hooks.php: Added explicit visibility modifiers. [21:27:29] 03straussd * r42508 10/civicrm/trunk/sites/all/modules/civicrm/templates/CRM/Mailing/Page/Optout.tpl: Remove cancel button; restrict text width [21:28:04] 03(NEW) IRC feed lines truncated at 512 characters - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16097 15enhancement; normal; MediaWiki: General/Unknown; (matthew.britton) [21:31:45] 03(FIXED) Increase or remove rate limit for rollbacker group - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12760 +comment (10matthew.britton) [21:33:26] 03tomasz * r42509 10/branches/CentralNotice-SpecialPage-Integration/ (CentralNotice.i18n.php SpecialNoticeCentral.php): adding date validation plus some general formatting cleanup [21:34:11] is there a date when mediawiki 1.14 should be released? [21:35:20] 03tomasz * r42510 10/branches/CentralNotice-SpecialPage-Integration/CentralNotice.i18n.php: one line fix for start time [21:36:21] hausgeist, http://www.mediawiki.org/wiki/MediaWiki_roadmap [21:36:55] usually 3-4 months after the last big one IIRC [21:37:26] oh, /me totally forgot about that namespace manager thingie :D [21:38:58] Reedy: alright, thank you [21:40:14] 03(mod) Increase or remove rate limit for rollbacker group - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12760 +comment (10cbrown1023) [21:45:14] 03(mod) Increase or remove rate limit for rollbacker group - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12760 (10matthew.britton) [21:47:49] 04(REOPENED) Increase or remove rate limit for rollbacker group - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12760 +comment (10mikelifeguard) [22:02:50] hello everyone [22:03:16] i need a beginners reference to create extensions [22:03:37] anyone knows something? [22:03:57] rodaeche: do you know PHP? [22:04:04] yeah [22:04:13] im not master [22:04:19] but know some fee things [22:04:26] http://www.mediawiki.org/wiki/Manual:Extensions#Writing_Extensions [22:04:41] good [22:04:43] thanks bro [22:06:47] 03(mod) Increase or remove rate limit for rollbacker group - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12760 (10cbrown1023) [22:14:49] 03tomasz * r42511 10/branches/CentralNotice-SpecialPage-Integration/SpecialNoticeCentral.php: removing old action lines [22:21:42] *werdnus waves. [22:22:52] 03catrope * r42512 10/trunk/phase3/includes/api/ApiQueryBacklinks.php: [22:22:52] API: * Fix up r42471 which hardcoded pl_from instead of using $this->bl_from [22:22:52] * Fix the second half of bug 16076 (using pl_from>=123 in combination with multiple values for pl_namespace and pl_title causes filesort) [22:22:52] * By pure accident this fixes a bug about list=backlinks&blredirect dropping results under obscure conditions [22:24:34] 08:17 < Simetrical> TrevorParscal, FYI, we like to use the "public" specifiers, because "unspecified" in our codebase often means "has no specifier because this function dates to PHP4 when public/private/protected weren't supported". So it's actually ambiguous semantically, even if not technically. [22:24:39] oops [22:24:41] I *never* specify public. [22:27:26] hi [22:27:37] oops, I saw something from before :) [22:27:39] never mind me [22:29:11] werdnus: is this your evil twin? http://en.wikipedia.org/wiki/User:Werdnawerdna [22:33:00] 03(NEW) Can't assign global groups with Special:GlobalUserRights - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16098 normal; normal; MediaWiki extensions: CentralAuth; (techman224) [22:33:44] oy [22:35:07] sounds fun [22:35:27] I was having that issue too, but only when I was editing myself :P [22:35:43] 03(FIXED) Multiple ranges can be specified in backlinks query, also implicit equality propagation used - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16076 +comment (10roan.kattouw) [22:35:45] Oh [22:36:00] Skizzerz: You have the problem too [22:36:04] yeah [22:36:14] *Skizzerz isn't using the latest trunk though, so I assumed it was fixed :P [22:36:30] I just downloaded the lastest [22:36:31] I just fixed the most crazy API bug I ever encountered; look at my last comment on bug 16076 if you like reading about really obscure bugs which are magically found and fixed by MySQL's performance hell [22:37:00] brion: I think just type casting the params to array would be a decent quickfix... but I suppose knowing why it's happening is a bit more pertinant :P [22:37:08] Gran Hermano 24 Horas Directo Gratis http://www.granhermano10-gh10.blogspot.com/ [22:37:58] Wenwen: please do not advertise here, this is a mediawiki support channel [22:40:17] Skizzerz: who bug? [22:40:51] domas: Thanks for reporting the API backlinks issue (bug 16076). For once, this SQL performance hell actually did me some good: it exposed and magically fixed the most obscure bug I've ever seen [22:41:00] brion: the one right before you said "oy"? [22:42:49] Skizzers, Brion: I get the same problem. When you change your own global groups, you get errors, but you can edit other's rights [22:43:30] 03(mod) Can't assign global groups with Special: GlobalUserRights to yourself - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16098 summary (10techman224) [22:43:32] Skizzerz: If casting to an array solves the problem and causes no buggy behavior, it's definitely acceptable [22:43:44] RoanKattouw: I haven't tried it yet though :P [22:44:37] I've seen dozens of these kinds of cases where foreach() or array_* functions whine about non-array input, and casting to an array always solved it for me [22:44:51] *Skizzerz tests [22:45:14] This kind of stuff happens a lot in the API where the parameter extraction methods give you an array when multiple values are specified, a string when one value is specified and null for no values [22:45:52] Casting the latter two to an array does exactly what you'd expect (string becomes a single-element array, null becomes an empty array) [22:46:02] brion: Hi there, I know that you wrote CentralAuth, so I'm assuming you know how to configure it :P Could you help me to make it so that the user only has to login once across all of the wikis? [22:46:35] chuck: it works that way by default... no? [22:46:53] If you configure it right, it should [22:47:08] I was under the impression that Aaron was the CentralAuth guy [22:47:22] Skizzerz: Not for us [22:47:24] i originally wrote it, tim did a lot of updates, then i had aaron poke at it a lot [22:47:27] it's been a group effort ;) [22:47:43] chuck: have you looked over the config options in CentralAuth.php and read the doc comments on them? [22:47:51] techman224: why the 'shell' keyword? [22:48:29] Oh, I'll remove it [22:48:39] 03(mod) Can't assign global groups with Special: GlobalUserRights to yourself - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16098 -shell (10techman224) [22:49:05] brion: Oh boy, I'm dumb. Sorry for bugging you :P [22:51:01] Hrm, it seems as though the cookie domain was set correctly, but I still have to login twice [22:52:13] chuck: no worries :) [22:52:41] ah, I know why it's throwing those warnings [22:57:02] 03straussd * r42513 10/civicrm/trunk/sites/all/bin/ (5 files in 2 dirs): Public reporting SQL [22:57:37] MrZ-man: that's some random [22:57:45] MrZ-man: I don't actually know who it is. [22:58:10] 09:47 < brion> i originally wrote it, tim did a lot of updates, then i had aaron poke at it a lot [22:58:13] :O [22:58:22] I did a few hours too! :) [22:58:56] Well SSO isn't working at all :-( [23:00:14] brion: did we scap yet? :) [23:02:41] werdnus: special:version ;-P [23:02:51] MediaWiki 1.14alpha (r41337) [23:02:53] maybe not :( [23:03:46] werdnus: no [23:05:45] brion: I've got the correct variable set for the cookie domain, but it's not working. Perhaps the fact that the database name is in the cookie is causing it? [23:08:11] *Skizzerz fixed it [23:08:49] chuck: you need to turn $wgCentralAuthCookies on. [23:09:00] I wrote that part of CentralAuth :) [23:09:27] werdnus: That's already on :-( [23:10:26] 03mrzman * r42514 10/trunk/phase3/ (5 files in 3 dirs): [23:10:26] (bug 16073) * Use onclick handler for expand/collapse in enhanced recentchanges. [23:10:26] * Hide the expandable content with JavaScript for better fallback if JS is disabled for whatever reason. [23:10:26] * Move enhancedchanges JS to separate file. [23:10:26] * Less cryptic id names. [23:10:55] chuck: what's your wiki setup like? [23:11:44] 03(mod) rollback link for a page move should revert the move - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4433 summary; +comment (10mikelifeguard) [23:11:52] 03(FIXED) Expanded watchlist javascript should use 'onclick' handlers - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16073 +comment (10mrzmanwiki) [23:11:59] werdnus: We're basically using Wikimedia's system, where the database is chosen by the subdomain used. [23:12:08] All the databases are called stuff like meta_wiki [23:12:13] chuck: okay, so you have them all on a subdomain of one domain? [23:12:21] werdnus: Yeah, all on different subdomains [23:12:42] 03(mod) Need some control over User:Redirect fixer 's edit summaries - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15110 (10mikelifeguard) [23:12:46] for mysite.mywiki.org, set $wgCentralAuthCookieDomain = '.mywiki.org'; [23:13:30] How about I pastie my CentralAuth config [23:13:36] if you like. [23:13:57] http://pastie.org/300096 [23:14:06] 03(mod) Option to protect all subpages and talk pages when protecting the page - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12908 summary; +comment (10mikelifeguard) [23:14:17] and the fix works :) [23:14:33] 03(mod) Request: Different "MediaWiki:Spamprotectiontext" for local and global spam-blacklist - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12034 (10mikelifeguard) [23:14:37] $wgCentralAuthAutoLoginWikis = array( '.yourwiki.net' ); [23:14:38] *Skizzerz commits [23:14:41] that's wrong, leave it empty. [23:15:40] i.e. $wgCentralAuthAutoLoginWikis = array(); [23:16:32] werdnus: I commented it out, still not working. [23:17:07] r42514 is bad [23:17:15] how can i mark it fixme? [23:17:26] Danny_B: are you in the coders group? [23:17:29] Danny_B: go to Special:Code on mediawiki.org [23:17:39] The cookies are still prefixed with the DB name, will CentralAuth know to use them if I'm not on the wiki they were made on? [23:17:39] chuck: what browser are you using? [23:17:40] Skizzerz: hmm, not [23:17:44] werdnus: Safari [23:17:46] then you can't [23:17:54] :-( [23:18:02] chuck: Can you check if any cookie was set? [23:18:10] werdnus: Yeah, I just did. [23:18:17] okay, what cookies were set? [23:18:19] The domain was .yourwiki.net and the prefix of all the names was meta_wiki [23:18:32] meta_wikiUserID, meta_wiki_session, meta_wikiUserName [23:18:36] $wgCentralAuthCookiePrefix = 'centralauth_'; [23:18:40] Should be that... [23:18:50] 03skizzerz * r42515 10/trunk/extensions/CentralAuth/SpecialGlobalGroupMembership.php: * fix for bug 16098: specify add-self and remove-self group in the return array for changeableGroups() so that SpecialUserrights.php does not complain about non-array parameters when editing oneself [23:19:01] Isn't that the default setting of the extension O_o [23:19:06] 03(FIXED) Can't assign global groups with Special: GlobalUserRights to yourself - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16098 +comment (10skizzerz) [23:19:10] Skizzerz: that special page is being killed anyway. [23:19:11] chuck: yes [23:19:12] 04(REOPENED) Make a different protect log message when moving a protection - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15754 +comment (10mikelifeguard) [23:19:16] chuck: but have you changed it? [23:19:27] Nope [23:19:28] werdnus: well, at least it'll work now for the remainder of its life [23:19:32] Skizzerz: :) [23:19:39] chuck: hmm.. [23:19:59] werdnus: Yeah, I just set it and the prefix is still meta_wiki [23:20:00] I am thinking that the cookies are not being set properly. [23:20:10] DO you have CLI access? [23:20:22] werdnus: Yeah [23:20:34] okay, go into your MediaWiki directory [23:20:39] and type php maintenance/eval.php [23:20:50] it should give you a prompt-like thing... [23:20:55] Yep [23:21:18] print_r( contract( 'wgCentralAuthCookies', 'wgCentralAuthCookiePrefix' ) ); [23:21:24] (type that into the prompt) [23:21:46] werdnus: undefined function for contracT() [23:21:48] *contract [23:22:02] oh, my bad, should be 'compact' :) [23:22:20] 03straussd * r42516 10/civicrm/trunk/sites/all/bin/public_reporting/synchronize.sql: Fix contact ID [23:22:54] [wgCentralAuthCookies] => [23:22:54] [wgCentralAuthCookiePrefix] => centralauth_ [23:22:58] wait a sec, looking at the code, I think you just need to add $wgCentralAuthAutoLoginWikis = array( 'meta_wiki' ); into your config. [23:23:14] hmm, wgCentralAuthCookies is false... [23:23:30] but try what I suggested a moment ago first. [23:23:34] 03(mod) Create a special page to handle additions, removals, changes and logging of spam blacklist entries - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4459 summary; +comment (10mikelifeguard) [23:23:43] werdnus: What exactly will that do? Why meta_wiki? [23:23:53] werdnus: I cced you on that, since your magic will probably fill that request. [23:24:23] chuck: the database name... [23:24:34] chuck: $wgCentralAuthAutoLoginWikis is an array of DB names, not hostnames. [23:24:50] werdnus: Should I populate that variable with a list of all the databases then? [23:25:24] chuck: nah, if CentralAuthCookieDomain has the full domain, there's no need to set a cookie on each wiki. [23:25:28] just meta_wiki will do. [23:26:47] werdnus: Same cookies created, still doesn't work [23:26:48] :-( [23:27:02] :/ [23:28:15] werdnus: I figured out what the problem is in bug 15798, if you're interested in fixing it [23:28:34] what is it? [23:28:42] https://bugzilla.wikimedia.org/show_bug.cgi?id=15798#c5 [23:29:11] chuck: oh yeah, I saw that. [23:29:16] that's kinda lame, don't you think? [23:29:27] werdnus: ? [23:29:39] chuck: never mind, was aimed at MrZ-man [23:29:50] yes, quite [23:29:58] chuck: I still think there's something wrong with your setup that wgCentralAuthCookies seems to not be true. [23:30:17] I wasn't motivated enough to actually try to fix it, you know the code better [23:30:33] *werdnus grumbles. [23:30:36] maybe after HSC. [23:30:43] speaking of which, I *really* need to do some maths study. [23:30:47] later. [23:30:50] *chuck tries vardumping it [23:31:04] Yeah it's false, that's really strange. [23:31:26] *chuck ponders whether or not he should edit the extension directly [23:31:56] There, let's try now. [23:32:08] *brion-codereview is not going to do anything other than code review for the next little bit [23:32:21] werdnus: It's working :D [23:32:33] does that mean reviewing code or adding a 'delete comment' feature? :P [23:32:35] chuck: really? O_O [23:33:23] Actually, no it's not working, but the correct cookies *were* set. [23:33:27] *MrZ-man smells a scap on the horizon [23:40:36] 03(mod) Provide preference-based autoformatting for unlinked dates - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=4582 (10cyp) [23:41:53] 03(NEW) Can't change user's groups that don' t exist on the wiki you want to change user rights but exists on the destination wiki using Special :UserRights - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16099 15enhancement; normal; MediaWiki: Special pages; (techman224) [23:42:11] 03(mod) Can't change user's groups that don' t exist on the wiki you want to change user rights but exists on the destination wiki using Special :UserRights - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16099 15enhancement->normal (10techman224) [23:42:27] 03siebrand * r42517 10/trunk/phase3/languages/messages/ (28 files): Localisation updates for core messages from Betawiki (2008-10-25 01:32 CEST) [23:44:52] 03siebrand * r42518 10/trunk/extensions/ (20 files in 19 dirs): Localisation updates for extension messages from Betawiki (2008-10-25 01:32 CEST) [23:46:09] I must be finding a lot of bugs :) [23:47:02] 03straussd * r42519 10/civicrm/trunk/sites/all/bin/public_reporting/ (synchronize.sql triggers.sql): Remove email domains [23:50:10] techman224: that one's a DUP [23:50:43] 14(DUP) Can't change user's groups that don' t exist on the wiki you want to change user rights but exists on the destination wiki using Special :UserRights - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16099 +comment (10Andrew) [23:50:50] 03(mod) Cross-wiki userrights reflects groups on local wiki, not target wiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12518 +comment (10Andrew) [23:56:56] 03(mod) Cross-wiki userrights reflects groups on local wiki, not target wiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=12518 15enhancement->normal; +crosswiki (10techman224)