[00:08:40] 03(mod) Editnotices generating invalid XML (HTML) around unordered lists - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17486 +comment (10rockmfr) [00:11:07] 03(mod) Formatting error in "preferences" - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17482 +comment (10siebrand) [00:11:39] How do I find the image used as a logo of a MediaWiki wiki ? [00:13:32] GerardM-: it's set as $wgLogo in LocalSettings.php [00:14:31] I am looking for the logo here http://usability.wikimedia.org/wiki/Main_Page and I do not have access to the LocalSettings.php [00:14:43] I want to use it in my blog [00:15:12] ah [00:15:14] hold on [00:17:08] GerardM-: http://usability.wikimedia.org/w/usabilitywiki.png [00:17:30] Thank you [00:18:08] What hash does mediawiki use? [00:18:29] skizzerz how did you find this ? [00:18:54] NotADJ: MW uses hashes for lots of things. Please be more specific [00:19:02] 03(mod) Editnotices generating invalid XML (HTML) around unordered lists - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17486 (10rockmfr) [00:19:19] GerardM-: I viewed the HTML source of the page and scrolled down until I found the logo declaration, and used the URL in the tag there [00:19:40] Cool [00:19:58] http://en.labs.wikimedia.org/wiki/Main_Page so now I can find this one :) [00:20:16] yep :) [00:20:26] RoanKattouw: Well, I was asking which hash MW uses before storing passwords. [00:20:46] Salted MD5, but I don't know what the exact format is [00:20:47] 03siebrand * r47279 10/trunk/phase3/ (CREDITS RELEASE-NOTES maintenance/importTextFile.php): [00:20:47] * (bug 17472) use print << * removed trailing whitespace [00:20:49] NotADJ: it uses MD5, but the password hashing is a bit special [00:20:55] 03(FIXED) use print << !passwordsql [00:21:10] --mwbot-- UPDATE user SET user_password=CONCAT(':A:', MD5('password')) WHERE user_name='John Smith'; This will reset the password for the user with user_name 'John Smith' to 'password'. [00:21:20] that's the unsalted method [00:21:23] That's the old format, the new format uses a B [00:21:33] I *think* it's :B:salt:hash [00:22:03] the salted method is CONCAT(':B:salt goes here:', MD5( CONCAT( 'salt goes here', MD5( 'password' ) ) ) ) [00:22:07] http://upload.wikimedia.org/wikipedia/meta/7/79/Wikimedia_Labs_logo.png :) [00:23:56] Why not SHA or Whirlpool? [00:24:52] 03siebrand * r47280 10/trunk/extensions/SemanticForms/includes/SF_FormUtils.inc: (bug 17466) Hard coded colon causing duplicated colon [00:25:03] 03(FIXED) Summery duplicated colon - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17466 +comment (10siebrand) [00:27:38] 03(mod) Translate texvc into a more widely used language - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17465 (10siebrand) [00:27:40] 03(mod) Move the math extension to the same place as every other extension - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=14202 (10siebrand) [00:29:14] 14(INVALID) Board and Friend components does not work with MW 1.13 - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17462 +comment (10siebrand) [00:30:27] 03aaron * r47281 10/trunk/extensions/CodeReview/CodeReleaseNotes.php: tweaks isRelevant() to use work counts [00:31:19] 03(mod) use print << 03(mod) Customizing the number of pictures per page in certain categories - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17458 +comment (10siebrand) [00:33:50] 14(WFM) Only one word is shown red on diff comparison when turning around two words - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17457 +comment (10siebrand) [00:37:29] 03(mod) use print << 03(mod) Could not send confirmation mail. Check address for invalid characters. Mailer returned: 1 - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17455 +comment (10siebrand) [00:41:51] 03(mod) Title::invalidateCache() does not commit database update - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17451 +comment (10siebrand) [00:43:03] 03(mod) RevisionDelete global log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17444 +comment (10siebrand) [00:44:47] 03(mod) RevisionDelete global log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17444 +comment (10JSchulz_4587) [00:46:25] 14(INVALID) Page saving error MW1.13 - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16227 +comment (10siebrand) [00:47:31] 03(mod) hyphen-minus is unreadable - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16213 +comment (10siebrand) [00:47:54] gotta go to sleep. If I can do the above, there are more in here that can :) [00:48:01] -5 open :) [00:48:16] heh [00:53:04] siebrand: re: bug 17451, I'm unsure what you mean by "patch misses context" [00:53:49] https://bugzilla.wikimedia.org/attachment.cgi?id=5805&action=diff [00:53:56] invalid patch file [00:54:29] you need context lines in your patch. [00:55:47] *FailNrrd reads up on context lines [00:56:00] I'm new to diff and patching :) [00:56:20] diff -u [00:56:26] you can also just use svn diff and it'll Just Work(TM) [00:56:53] FailNrrd, you should use the command "svn diff" to generate the patch file. If you're using TortoiseSVN, this is "Create Patch" or something from the context menu. [00:56:55] avar: until you get an 5-way merge conflict [00:57:29] context menues for developement? [00:57:37] where is the world going.... [00:58:08] FailNrrd, basically, the patch should be generated with the "context", a few lines to either side that are unchanged. This way if some lines have been added/removed earlier or later in the file and the line numbers are off, the patch program can figure this out and apply the patch anyway. [00:59:24] diff -U 1000 for extra alfty then? [00:59:29] safty* [00:59:41] Thank you very much - I'll check this with svn diff to make sure that the patch is against current - which is 1.13.4 correct? [00:59:49] FailNrrd, no. Current is 1.15alpha. [00:59:56] From trunk, not a branch. [01:00:07] A patch to 1.13.4 may or may not apply cleanly. [01:00:51] *FailNrrd needs to read up on svn properly as well :) [01:01:26] 03(mod) RevisionDelete global log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17444 +comment (10mikelifeguard) [01:01:28] cheers Simetrical (and AaronSchulz, avar ;) ) [01:07:43] anyone know of a redirect extension that works similar to the one paul gu wrote for his site that goes website=http://www.example.com timeout=2000 message=blah, blah, blah ? [01:07:50] 03(mod) Editnotices generating invalid XML (HTML) around unordered lists - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17486 +comment (10Simetrical+wikibugs) [01:11:02] ThE__CroW_, that sounds like a bad idea. [01:11:15] how so? [01:12:05] 03(mod) block-log: "autoblock disabled" should not be there for IPs - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17498 +comment (10mikelifeguard) [01:12:07] Well, timed redirects are evil to begin with. Moreover, it allows anyone who can edit your wiki to redirect viewers to goatse.cz or whatever. [01:13:20] plus no way to get back to the original page (back button would re-trigger the redirection if it is js-based or meta-based iirc) [01:14:52] Well, that's part of "timed redirects are evil to begin with", yeah. [01:17:05] 14(WFM) RevisionDelete global log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17444 +comment (10jayvdb) [01:18:26] 03(mod) problems with forced PNG rendering - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15057 +comment (10mikelifeguard) [01:18:38] 03(mod) RevisionDelete global log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17444 (10JSchulz_4587) [01:23:55] 03(mod) Title::invalidateCache() does not commit database update - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17451 +comment (10djnrrd) [01:24:43] that wasnt too hard - just hope the admins in work dont complain about me SVNing stuff :) [01:45:00] 03(mod) Feature Req: Database class does not provide support for database Aliases - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17221 (10djnrrd) [01:46:04] 03(mod) Feature Req: Database class does not provide support for database Aliases - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17221 (10djnrrd) [02:00:54] 03(mod) Database class does not provide support for table aliases - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17221 summary (10Simetrical+wikibugs) [02:06:20] On test wikipedia, is Wikipedia:Request still looked at? [02:08:46] TimStarling: Are you around? Do you know anything about CentralNotice? I disabled the steward elections one on meta because it obviously wasn't finding the message for some reason, even though it exists. [02:09:50] I haven't really dealt with it [02:10:19] okay. [02:10:36] werdnum: tomasz was the guy, IIRC [02:11:12] I was thinking about running the rebuild script (which I seem to recall existing), but I decided that no steward elections notice was a better idea than me accidentally breaking something by not knowing what I'm doing. [02:11:21] Mike_lifeguard: yeah, he gets back from Belgium today [02:11:26] and it's a long weekend [02:11:30] oh, right [02:12:01] it's quite likely the template update script is broken [02:12:10] I can check that [02:12:20] 03(mod) Title::invalidateCache() does not commit database update - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17451 +comment (10djnrrd) [02:12:46] 03(mod) Database class does not provide support for table aliases - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17221 +comment (10djnrrd) [02:13:11] yeah, it probably hasn't run since Feb 5 [02:13:41] Why not? [02:13:52] because the log file wasn't writable [02:14:19] we'll see if it runs at 2:20 [02:14:21] werdnum: do you have shell access? [02:14:27] Mike_lifeguard: yes, as of a few days ago. [02:14:39] TimStarling: that's... an hour and five minutes? [02:14:46] or are we talking UTC? [02:14:46] fun times [02:14:52] UTC [02:14:57] ah, so six minutes. [02:15:34] TimStarling: Should I re-enable the notice, or wait until after the script runs? [02:15:50] where did you disable it? [02:15:56] In Special:CentralNotice on meta. [02:16:09] because it wasn't working? [02:16:24] Yes, because it was displaying instead of the notice. [02:16:34] yes, re-enable it [02:16:35] [02:16:39] if you can do it in under 4 minutes [02:16:52] I can. [02:17:06] Oh, it's already re-enabled [02:17:15] ah, but only on testwiki [02:17:35] Done. [02:21:21] yeah, it's running [02:21:36] I'm working on a function for taking a database result set and exporting a basic XML document for AJAX apps, which I think may be a benificial feature to have in mediawiki. What are peoples thoughts on where this function should live, in the Database class or the SAJAX class? [02:22:54] sounds like the API [02:23:41] except not as good [02:23:56] !api | Nrrd [02:23:56] --mwbot-- Nrrd: The MediaWiki API provides direct, high-level access to the data contained in the MediaWiki databases. Client programs should be able to use the API to login, get data, and post changes. Find out more at . For client libraries in various languages, see . [02:27:09] *Nrrd reads [02:30:08] TimStarling: Should the fix have propagated yet? [02:30:48] to test maybe [02:30:52] not to wikipedia yet [02:31:06] wiktionary should be done [02:31:25] look at /home/wikipedia/logs/centralnotice.log [02:33:41] TimStarling, the central notice isn't working on en wikipedia [02:34:22] techman224: He knows. [02:34:30] It's being fixed right now. [02:35:59] Should be fixed. [02:36:04] (I think) [02:36:12] Nope. [02:36:16] http://upload.wikimedia.org/centralnotice/test/en/centralnotice.js?203xx [02:36:21] *werdnum assumed that test/ was after wikipedia/ [02:36:23] still showing the old notice [02:36:29] I'm getting an error message and I can't figure out how to fix it. "mime_magic could not be initialized, magic file (null) is not available in G:\apache\apache2triad\htdocs\wiki\includes\MimeMagic.php on line 504" [02:36:35] werdnum, nopw, still doesn't work [02:37:18] is there a way to use images already in the image directory without it thinking it needs to upload said images? [02:39:17] ZombieNeko: http://www.mediawiki.org/wiki/Manual:ImportImages.php [02:40:13] TimStarling: script has finished, but the problem remains. [02:41:05] yes, I see it [02:41:21] Splarka, wow. that importimages.php file is not even IN that folder. [02:41:27] the API is of no use to me for my particular extension, as my extension is creating it's own database tables. My XML function os working at the Database level as opposed to the higher level. [02:41:56] I'll just keep the function in my own extension if it's of no use in mediawiki [02:41:57] Nrrd: You shouldn't make the database functions callable through an API. It's insanely insecure. [02:43:32] werdnum: I wasnt suggesting that at all, I'm doing preprocessing in my extension, calling or writing the the database and returning the info from my extension through AJAX [02:43:56] hmmm what's that "" on top of wikipedia pages? [02:44:02] TimStarling: Should I drop the notice back to testwiki? [02:44:30] Dolledre: a mirage, donate some money and it'll go away [02:44:51] lol Splarka tnx ;) [02:46:58] yes [02:47:15] TimStarling: okay, done. [02:47:55] I don't see it on test [02:48:12] hmm [02:48:25] http://meta.wikimedia.org/wiki/Special:CentralNotice [02:48:40] It *should* be enabled, but I don't see it either. [02:48:58] Even with a purge. [02:51:44] Can't find it in the HTML source [02:54:55] TimStarling: It *is* displaying on meta, but nowhere else. [02:56:03] hmm, it's gone from: [02:56:04] wgNotice=pickTemplate(["\x26lt;centralnotice-template-plain_text_election_notice\x26gt;"],[100]); [02:56:07] to blank, except on test [02:56:18] improvement anyway ^_^ [02:57:26] well, the code is extremely fragile and hackish [02:57:37] 03(mod) Only one word is shown red on diff comparison when turning around two words - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17457 (10Wiki.Melancholie) [02:58:12] 04(REOPENED) Only one word is shown red on diff comparison when turning around two words - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17457 +comment (10Wiki.Melancholie) [03:00:40] pretty much any change to the message cache would break it [03:01:52] 03(NEW) Purge link - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17499 15enhancement; normal; MediaWiki: Page rendering; (Chippi_75) [03:02:08] I don't know how it works, I think most of the development was done during my HSC. [03:03:14] does it need to be on today? [03:03:52] Probably not. [03:04:08] Bleh. I guess I shouldn't use this if I can't understand what any of this means, huh? [03:04:13] I think it was mostly put up because we had this new toy and we wanted to do something with it. [03:06:34] even though the new toy was from china, covered in lead paint, and contains small parts which may be a choking hazard... [03:09:23] !log CentralNotice still not working properly, and when we tried to set it to testwiki-only, it never came up. Left it on testwiki only for the time being, until somebody who knows CentralNotice can take a look at it. [03:09:23] --mwbot-- I don't know anything about "log". You might try: !500 !anonnotice !api !cms !errors !logo !sul [03:09:27] oopsies [03:09:30] <^demon> Splarka: Those are the best kinds of toys [03:12:08] 03aaron * r47282 10/trunk/extensions/CodeReview/CodeReleaseNotes.php: [03:12:08] * Combined some checks [03:12:08] * Fixed typo (b -> z) [03:12:08] * Removed unused $m var [03:12:08] * Added some more keywords [03:16:52] AaronSchulz: what's CodeReleaseNotes? [03:22:09] Release notes for the code? [03:54:53] 03aaron * r47283 10/trunk/extensions/CodeReview/CodeReleaseNotes.php: [03:54:53] * More regexp additions and truncation tweaks [03:54:53] * Show revision link by author [04:29:22] 03aaron * r47284 10/trunk/extensions/CodeReview/CodeReleaseNotes.php: Formatting cleanup [04:35:57] 03(mod) Install hanp extension parser function on Korean Wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=13712 (10camway) [04:46:37] 03aaron * r47285 10/trunk/extensions/CodeReview/CodeReleaseNotes.php: [04:46:37] * Default start rev to live one [04:46:37] * Removed p tags [04:52:40] 03(NEW) store DEFAULTSORT in the database - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17500 15enhancement; normal; MediaWiki: Categories; (cbm) [05:24:57] 03(mod) Moving edits incomplete and stalled after renaming a user on enwiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17313 normal->04CRIT (10soxred93) [05:25:12] lol priority/severity [05:25:25] That's always confuzzled me [05:29:40] chuck: ping [05:29:43] 03nad * r47286 10/trunk/extensions/TreeAndMenu/TreeAndMenu.php: fix problem resolving dtree.js path [05:30:55] werdnum: yeah? [05:31:20] chuck: You want a copy of your TS home dir, eh? [05:32:00] mmhm [05:32:11] (slooow response time is slooow) [05:32:40] yeah i almost forgot about that request ;-) [05:32:47] chuck: account name? [05:32:51] charlie [05:33:51] Tarring it up now [05:34:48] domo arigato [05:35:36] How do you want it? [05:35:50] I can put it on the web and PM you the URL, if that's easy. [05:36:16] yes, that's good [05:38:01] whois chuck [05:38:17] works better with the / ;-) [05:38:21] hehe [06:00:29] 03(mod) 'Delete page script' entries in Recentchanges, but not delete/log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17343 15enhancement->trivial; summary; +comment (10jidanni) [06:00:31] 03(mod) 'Delete page script' entries in Recentchanges, but not delete/log - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17343 (10jidanni) [06:50:45] Hi, I was wondering if there was any way to hide special pages? [06:54:22] Anyone know how to stop the weird cacheing process that mediawikik goes though [06:56:59] Relentless: specificity, please. [06:57:12] What caching process, and what problems is it causing you? [06:57:48] Well, From what I see, When I post something liek I put ad add or I edit the theme, I have to clear my brwosers cache eash time, Should just a refresh just work? [06:58:19] That isn't MediaWiki's caching process, it's your browser's caching. [06:58:38] TO bypass it, there are shortcuts (like ctrl-refresh or command-control-refresh for macs). [06:58:49] Wait, what? [06:59:20] But this isnt justme, it is over 100,000 poeple that have the same issue with my wiki, It cant be a browser issue. [07:00:00] welcome to the internet [07:00:40] I mean, if you edit the file, the change won't show up everywhere all at once... [07:00:55] on Wikipedia, editing Common.css/js and Skinname.css/js the 30 day max client-side cache time has to be taken into account [07:02:00] the developers have it a bit easier, they can invalidate the cached URL by bumping the style version, which changes the actual physical location (in the browser's POV) of the css/js/etc, but even that propagates slower than instantatneously due to squid caches [07:02:42] you could disable all css/js client caching, but then you'd multiply page requests to your server by tenfold [07:02:45] morning people [07:03:03] hey CrushKingX [07:03:11] still, nothing to do with MediaWiki really, it is the internets [07:03:16] a question whats your favorite wiki editor extension or hooks? [07:03:24] That would be alot better than this... My ad service droppe dme twice cause the adds didnt show up in the time limit [07:03:49] *ads [07:04:56] because the default editor isnt tha trivial to my users + i would like a better parser (one that knows what means etc. so im looking for a good one to implement [07:05:01] how do I diable all of what you said. [07:05:29] CrushKingX: people are trying to work on that for theusability project, none seem to be up to scratch [07:06:32] how about the FCK editor? [07:06:49] Splarka how do I diable all of what you said. [07:06:59] no idea, apache stuffs? [07:07:01] it looks nice but i have found several bugs in it (which are minor but still annoying) [07:07:02] what exactly anyways? [07:07:07] MediaWiki:Common.css? [07:07:14] skins/monobook/main.css ? [07:07:31] the ll css/js client caching. [07:07:42] -ll [07:07:42] right, which? they're different [07:07:51] Everything. [07:08:11] I dont want it to cache anything.. [07:08:25] you want to reload every file and every image on every forward/backward browser navigation? [07:08:32] the web doesn't work without some cache [07:08:37] it folds up and catches fire [07:09:09] yeah [07:09:18] but I edited a file almost 3 hours ago [07:09:31] no idea then, usually what is done is to bump $wgStyleVersion every time you edit in /skins [07:09:40] and wait 7 to 30 days for effects after editing on-site files [07:10:27] So, There is no way to lessen the time of how long it takes for effects to post? [07:10:56] if you'd specify what file exactly wanted to refresh quicker rater than just "eeeeeeeeeveryahthing" it might help [07:11:20] But, That is what I want, I want everything to post in real time.... [07:11:27] I am not even kidding.. [07:12:03] well, that has pretty much nothing to do with MediaWiki then, ask the Apache dudes (if you use that) [07:12:23] Warning: Invalid argument supplied for foreach() in /srv/org/wikimedia/usability/extensions/LiquidThreads/classes/LqtHistoricalThread.php on line 27 Fatal error: Call to a member function id() on a non-object in /srv/org/wikimedia/usability/extensions/LiquidThreads/classes/LqtHistoricalThread.php on line 43 [07:12:24] rofl apache [07:12:28] make a bot to scan [[Special:AllPages]] and null edit everything? and that will get most hings [07:12:36] *things [07:12:42] is what I get today on usability.wikimedia.org [07:13:01] I answered to a trhead [07:14:03] it does create a change and this results in "Fatal error: Call to a member function root() on a non-object in /srv/org/wikimedia/usability/extensions/LiquidThreads/LqtBaseView.php on line 383" [07:14:44] Splarka I dont think you are getting that it is not an apache issue, I use lighttpd so I knwo it is not that issue, I know it is not a php issue, Me and a whole team have narrowed it down to MediaWiki, All I want to know is how to make it update in live time. [07:15:19] I don't think you are getting it, the web doesn't work that way [07:15:25] try serving 404 for every page instead of 200, then it would do that [07:15:44] (404 is a perfectly valid code with content, plus it doesn't cache) [07:15:47] Everything before web2.0 did work that way. You edit an html file BAW it is updated in seconds. [07:15:49] GerardM-: I might have broken it :D [07:16:18] now you know [07:16:33] actually you need a testing tool that can tell you [07:16:50] and would you believe that I actually have such a tool for you ? [07:16:54] Relentless: Maybe you should tell us what you're trying to update, how you're trying to update, and what you expect to happen. [07:17:01] GerardM-: Oh dear, not this :P [07:17:26] now you bother people testing with this [07:17:41] I put an ad in the skin files, and it doesnt show up [07:17:42] so indeed it should be me saying "Oh dear, not this" [07:17:59] Relentless: _which_ ? [07:18:00] i answered to a thread started by Malafaya [07:18:02] I check to make sure the code was ok, I tried it in a seperate php file and it work. [07:18:09] monobook/main.css ? [07:18:24] [07:18:24] SkinTemplate.php/Skin.php/Monobook.php ? [07:18:29] MediaWiki:Monobook.css ? [07:18:32] MonoBook.php [07:18:43] okay, now we're getting somewhere [07:18:51] to clear that you zero the cache epoch doodad [07:19:22] What? [07:19:46] hrm any one here uses the FCKEditor on his wiki? [07:19:53] GerardM-: Not a testing issue, primarily a "It was Friday afternoon when I wrote that code" issue :D [07:19:55] I don't know much about that one, ask werdnum maybe [07:20:06] werdnum: how is it again you invalidate the cache of all rendered pages? [07:20:11] $wgCacheEpoch [07:20:27] right, set that to 1970? [07:20:31] or 'now'? [07:20:53] note that won't invalidate the css/js in /skins, as that uses $wgStyleVersion (completely different) [07:20:54] CrushKingX: last time I checked it didn't like the new versions of mediawiki [07:21:09] Werdnum, if it takes a minute to test, you can wrte code on Friday afternoon and not bother people with thsi kind of result [07:21:15] (see now why specifying "everything" is meaningless?) [07:21:41] Relentless: http://www.mediawiki.org/wiki/Manual:$wgCacheEpoch [07:22:03] that is for rendered pages only, so when modifying the skins that is what you want [07:23:36] and I put this in LocalSettings.php? [07:23:53] $wgCacheEpoch = gmdate( 'YmdHis', @filemtime( __FILE__ ) ); [07:24:18] seems to say that [07:25:59] http://www.mediawiki.org/wiki/Manual:$wgSquidMaxage <-- Skin.php: $siteargs = array( 'maxage' => $wgSquidMaxage, [07:26:00] K thank you [07:26:21] I think that would lower the on-site editable CSS/JS load times, but you probably don't use those for ads [07:33:57] OverlordQ: damn [07:34:11] OverlordQ: got any other suggestions for an editor? [07:52:29] hrm im trying to install fckeditor and it says to edit this hook : EditPageBeforeEditConflict [07:52:47] but i cant find a manual information about this hook [07:52:50] or how to edit it [07:52:52] any one knows it? [08:07:46] 03(NEW) Add several namespace aliases to dewiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17501 15enhancement; normal; Wikimedia: Site requests; (WP.Wuzur) [08:21:02] hi [08:21:29] what is the name of that extension which allow to the user to edit his/her user page if enabled? [08:23:03] whats the name of the extension that adds a parser which allows mediawiki to "underestand" the source tag? [08:23:58] !e SyntaxHighlight_GeSHi | CrushKingX [08:23:58] --mwbot-- CrushKingX: http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi [08:24:26] thanks :) [09:02:33] 03(FIXED) Logo change for tk.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17492 +comment (10jeluf) [09:16:58] 03(FIXED) Add several namespace aliases to dewiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17501 +comment (10jeluf) [09:18:16] 03(mod) Portals on arz.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17464 +comment (10jeluf) [09:26:22] 03raymond * r47287 10/trunk/phase3/ (RELEASE-NOTES includes/EditPage.php): * Wrap warning message 'editinginterface' into a div with class 'mw-editinginterface' [10:00:02] Hi, MediaWiki.org-Admin needed: Please unprotect (or semi-protect) this, thanks http://www.mediawiki.org/w/index.php?title=Communication&action=unprotect [10:00:17] 04(REOPENED) Add oasis opendocument to mime.types - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17497 +comment (10awen) [10:43:24] 03(mod) Only one word is shown red on diff comparison when turning around two words - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17457 (10siebrand) [10:44:00] 03(mod) Add oasis opendocument to mime.types - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17497 (10siebrand) [11:27:40] 03(mod) Add oasis opendocument to mime.types - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17497 (10awen) [11:48:21] 03(mod) JS: Automatically hide "changes saved" message when changing preferences - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17496 (10sylvain.brunerie) [11:55:04] 03(NEW) duplicates between namespaces and namespacealiases - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17502 15enhancement; normal; MediaWiki: API; (umherirrender_de.wp) [11:55:59] 03(NEW) Enable extension to provide metadata support on Wikimedia Commons - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17503 15enhancement; normal; Wikimedia: Site requests; (brianna.laugher) [12:05:35] 03(NEW) Single Namespace is hidden - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17504 15enhancement; normal; MediaWiki extensions: Inputbox; (dasch_87) [12:21:59] 03siebrand * r47288 10/trunk/phase3/ (RELEASE-NOTES includes/mime.types): (bug 17497) Oasis opendocument added to mime.types (odg otg odt ott odp otp ods ots) [12:22:04] 03(FIXED) Add oasis opendocument to mime.types - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17497 +comment (10siebrand) [12:23:09] does any of you guys know why the "prependtext" (and "appendtext") feature on the API isn't described on the API manual (the one on mediawiki.org wiki, not the one on api.php) ? ^^' [12:23:58] http://www.mediawiki.org/wiki/API:Edit_-_Create%26Edit_pages it's supposed to be there, as this is the page describing action = edit, but it doesn't seem to appear :D [12:24:25] the api.php help action is maintained by the main developer (catrope) [12:24:38] so all features that go into the api end up on the internal help [12:24:46] he is not obligated to maintain the docs on mw.org [12:24:52] okay ^^ [12:25:00] d'you mind if I complete that ? :) [12:25:05] figure out what they do and do it yourself, yes [12:25:12] heh [12:25:23] i've already figured that out, don't worry ^^' [12:25:47] note that many versions float around simultaneously, so it is handy to note which version they were added in [12:26:03] I'm sorry I don't know that... [12:26:15] 1.13 is the latest stable, but 1.14 is in pre-release stage so many are testing it, and WMF is on 1.15 [12:26:20] well, we can find out... [12:26:24] all I know is that it already existed back in octobernovember [12:26:28] oct/nov [12:26:45] http://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/api/ApiEditPage.php?view=log [12:26:48] but it perhaps did earlier [12:27:06] Revision 36235 - (bug 14459) Added prependtext and appendtext parameters to action=edit [12:27:20] Modified Thu Jun 12 13:05:07 2008 UTC (8 months ago) by catrope well, it obviously already existed :D [12:27:38] so we check the branches.. [12:28:06] 1.12 was branched 31213, 1.13 in 37957, and 1.14 in 45547 [12:28:18] so, it is a 1.13 feature [12:28:57] (although most of the API write is 1.13+ at this point, heh) [12:33:02] ok then ^^ [12:33:13] (sorry, i was on the phone) [12:33:18] thanks a lot :) [12:33:35] i guess i also could begin the translation in french, too... [12:47:58] how can i add new special tags to the FCKEditor? [13:37:19] 03(NEW) No High Dynamic Range Image (HDRI) file formats allowed on Commons - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17505 15enhancement; normal; Wikimedia: General/Unknown; (proxlrbar) [14:30:34] anybody out there ? [14:31:56] anyone here familiar with the geshi extension? [14:32:56] irc.freenode.net [14:33:06] hello [14:33:42] hey [14:33:49] Why does wfReportException print a backtrace ($e->__toString()) even if I have wgShowExceptionDetails = false? [14:33:52] Might be a bug? [14:36:33] Is it intentional? Would it be OK to not print it if wgShowExceptionDetails is off? [14:50:54] CrushKingX: which one? i use SyntaxHighlight GeSHi, and it works for me. that's pretty much all i know about it though ;) [14:54:23] 03(mod) Logo change for tk.wikipedia - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17492 (10spacebirdy) [14:55:38] 03(mod) Parsing precedence of exclamation character inside links inside tables - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=16905 +comment (10martineznovo) [15:00:55] hrm [15:01:08] *Dusti|On-Duty needs to know how to enable conference mode for a channel please [15:01:12] what the parser thats working in mediawiki for the source tag? [15:01:34] the Geshi based ones support [15:01:48] because i installed Geshi but i dont get the code in a cube [15:02:01] like happens in the mediawiki site [15:02:30] you mean the
 tag?
[15:02:55] 	i should do 
 code 
? [15:02:56] Can anyone tell me how to set Conference Mode on a Channel like it set i nhere please? [15:05:43] CrushKingX: it should work with just [15:05:49] Dusti|On-Duty: "hide all join, part, quit and nickname change messages" ? [15:06:01] yes [15:06:04] nothing to do with mediawiki, freenode, or even irc [15:06:13] you're using chatzilla, right? [15:06:15] yes [15:06:18] http://chatzilla.hacksrus.com/faq/ [15:06:41] it doesnt : [15:06:52] 03(NEW) Exceptions inside Exception ignore $wgShowExceptionDetails - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17506 normal; normal; MediaWiki: General/Unknown; (davidt) [15:06:55] khear: it doesnt :( [15:07:32] CrushKingX: are you using http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi or http://www.mediawiki.org/wiki/Extension:GeSHiCodeTag ? [15:07:34] im also using the FCKEditor which creates some prbolems but i checked it happenes without the FCKEditor as well [15:07:57] the first one [15:08:04] 03(mod) Exceptions inside Exception ignore $wgShowExceptionDetails - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17506 (10davidt) [15:08:06] 03(mod) Portals on arz.wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=17464 (10gaghaly) [15:09:26] khear: should i use the code tag? [15:10:46] khear: though i dont think its the right one because it requires diffrent tags and not just source [15:11:11] CrushKingX: i'm using just the source tag [15:11:26] CrushKingX: did you install geshi itself too? [15:13:09] yes [15:13:21] well "installed" downloaded the source code [15:14:26] CrushKingX: ok, then i don't know what to say. i installed it two years ago or so, and it has worked through all the mediawiki upgrades [15:14:46] hrm ok [15:15:00] thanks for the help :)\ [15:15:39] i think its something to do with the styling :\ [15:19:31] 03mkroetzsch * r47289 10/trunk/extensions/SemanticMediaWiki/specials/AskSpecial/SMW_SpecialAsk.php: avoid pipeList() (only since MW 1.14, we still support down to 1.12) [15:21:24] any idea how this cube surrounding the code might be called? \ [15:32:58] 03mkroetzsch * r47290 10/trunk/extensions/SemanticMediaWiki/specials/ (2 files in 2 dirs): more pipe-separator compatibility for MW 1.13 [15:36:57] 03mkroetzsch * r47291 10/trunk/extensions/SemanticMediaWiki/specials/ (2 files in 2 dirs): use saces around pipe separators as in other MW special pages [15:37:42] 03(NEW) Mailing list for Transcom - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17507 15enhancement; normal; Wikimedia: Mailing lists; (cbrown1023) [15:38:51] 03mkroetzsch * r47292 10/tags/extensions/SemanticMediaWiki/REL_1_4_2/specials/ (2 files in 2 dirs): fix for Bug 17459 [15:50:43] 03(FIXED) Special:Ask in SMW 1.4.2 incompatible with MediaWiki <=1.13 - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=17459 +comment (10markus) [16:04:51] 03mark * r47293 10/trunk/pybal/pybal/monitors/idleconnection.py: Use self.retry() in IdleConnection to reconnect slowly, this makes maxDelay work [16:18:56] 03mkroetzsch * r47294 10/trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2.php: fixed column order [16:41:42] how can I set the $wgLogo? I tried in both LocalSettings and DefaultSettings, they only make the logo disappear [16:42:15] the weird part is in the path to the image in the CSS is correct, if I point the browser directly to the image, it is found [16:45:27] Schuenemann: you probably set the path wrong [16:45:35] the file it should be set in is localsettings [16:45:55] Prodego, $wgLogo = "$wgStylePath/skins/common/images/logo-vitoria.jpg"; [16:46:12] http://localhost/mediawiki/skins/common/images/logo-vitoria.jpg shows the image [16:46:14] what is wgStylePath set to [16:46:21] Prodego, default [16:46:49] stylepath defaults to {$wgScriptPath}/skins [16:47:00] change StylePath to ScriptPath [16:47:35] or remove the /skins/ [16:48:19] it worked [16:48:25] why didn't it with scriptPath? [16:48:33] I tried with and without /skins/ [16:49:12] not sure, but so long as it works now :) [16:49:39] I mean it didn't work with stylePath [16:49:44] well, thanks [16:56:16] What are the expected release dates for 1.14 and 1.15? [17:05:52] jeorl: when they're ready [17:05:55] 1.14 anytime now [17:05:59] 1.15 in 3-4 months [17:06:13] Thanks [17:17:00] 03(NEW) E-mail on usability.wikimedia.org non-functional - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17508 normal; normal; Wikimedia: General/Unknown; (innocentkiller) [17:17:50] so: what is the name of that extension which allow to the user to edit his/her user page if enabled? [17:18:48] bonjour :) [17:19:03] delphine: bonjour [17:19:05] I'm trying to move a wiki, and my new installation does not find the content [17:19:24] I'm sure I've done something wrong in importing the db [17:19:32] but I can't find out what :/ [17:19:33] any idea? [17:19:42] *Juandev is not skilled in moving wikies [17:20:16] I get this message (In French): La base de données n’a pas pu trouver le texte d’une page existante, dont le titre est « Accueil,oldid=1356 ». Ce n’est pas une erreur de la base de données, mais plus probablement un bogue du wiki. Veuillez rapporter cette erreur à un administrateur, en lui indiquant l’adresse de la page fautive. [17:20:43] delphine: sounds to me logic, maybe there is some script to fix it [17:21:06] thing is [17:21:10] I have all the history [17:21:21] but no content [17:21:24] even in the history [17:21:26] it's like [17:21:28] damned. [17:22:27] what is the best way to use the API to query unused images? [17:24:00] I figure, list->allimages, then get the properties for each one? [17:24:15] delphine: thats logic [17:25:44] right, it may be logic, but it's not working. [17:25:45] :) [17:25:52] so how do I get it to work [17:25:57] which is the table that has the text? [17:26:18] delphine: well, I am not a specialis [17:26:26] ok [17:26:35] delphine: but I thing moviing the databese is difficult [17:26:54] delphine: so, you will need it to fix it inside the databese itself [17:27:08] <^demon> delphine: The text table. [17:27:35] demon, thx [17:28:27] <^demon> No problem. The three tables you absolutey need are page, revision and text. If you've got those, you can run rebuildall.php in maintenance/ to repopulate the various links tables. [17:29:12] ok [17:29:21] how do I run rebuildall.php? [17:29:30] <^demon> From the command line. [17:29:44] haha, that's gonna be harder. [17:30:21] given api version, can someone tell me mw version? [17:30:22] *delphine does not have root access to the server. Just ftp. [17:30:33] ApiMain: $Id: ApiMain.php 21402 2007-04-20 08:55:14Z nickj $ [17:30:41] my Special:Version page is broken [17:30:52] one extension broke it [17:31:06] which MW version has that API version? [17:32:26] <^demon> faceface: 1.10 [17:32:50] thanks ^demon ... that explains why my query failed [17:34:27] 03philip * r47295 10/trunk/phase3/includes/ (4 files in 2 dirs): Update the Chinese conversion tables. [17:43:10] *delphine is stuck [17:43:37] demon, if I do a clean install and import only those three tables from my old stuff, will that work? [17:43:59] or is there another way to run the rebuildall thing? [17:50:12] 03(mod) wpSpamRegex entry for large image tables - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15063 (10spacebirdy) [17:51:07] 04(REOPENED) wpSpamRegex entry for large image tables - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=15063 +comment (10mikelifeguard) [17:59:55] 03(mod) Separate privileges for redirecting - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17461 +comment (10PhiLiP.NPC) [18:12:35] hello, how do I know the version of mediawiki i have installed on my server? [18:12:58] Special:Version [18:17:08] delphine, another way to do it would be to load the page text using a bot... you won't get the version history but you will 'rebuild all' [18:30:24] Is JPEG2000 a supported format ? [18:32:06] supported by what? for scaling, that would depend on your image scaling software (e.g. imagemagick) [18:33:13] Nrrd, thanks! [18:35:44] I am looking on how to support images who are up to 750MB [18:36:11] the current top down download does not work for such big files [18:36:34] that is support from within MediaWiki [18:36:58] reading about djakota atm [18:37:05] what do you want mediawiki to do to support it? [18:38:06] http://www.biodiversitylibrary.org/page/9370105 a good example [18:38:33] I want big pictures to be available in their fine detail [18:38:51] so probably it means that there is a need for an extension [18:40:19] what would the extension do? it seems your requirements are more specific than "supports JPEG2000" - perhaps you need to define them more clearly [18:41:27] we are restoring images that are really large [18:41:59] on a wikipedia page you typically show a thumbnail but the image is available in a much higher resolution [18:42:26] loading an image that is really big is like watching paint dry [18:42:45] 03(NEW) Special:RecentChanges returns a php error on usability.wikimedia.org - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17509 15enhancement; normal; Wikimedia: General/Unknown; (mikelifeguard) [18:42:58] with the djakota software you can drill down into the image [18:43:10] and consequently the user experience is much better [18:43:34] the biggest restore is 680 MB [18:43:55] 03(mod) E-mail on usability.wikimedia.org non-functional - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17508 (10mikelifeguard) [18:46:17] 03(mod) Special:RecentChanges returns a php error on usability.wikimedia.org - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17509 +shell; +comment (10mikelifeguard) [18:46:46] flyingparchment, does that make sense to you ? [18:47:00] ekimmargni / ^demon; added Trevor as a Cc to your usability bug ;-) he's the one who's working on it, I think [18:47:27] you did? [18:47:44] oh that one [18:47:44] yes, we don't get messages here about that anymore [18:47:46] thanks [18:48:08] <^demon> kibble: Awesome :) [18:48:11] I did the other [18:48:26] I see [18:48:28] later guys [18:49:41] 03(NEW) Give patroller-group access to suppressredirect on nowiki - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17510 15enhancement; normal; Wikimedia: Site requests; (lars-wikimediabugzilla) [18:53:08] is there an easier way to upload files? [18:55:46] 03siebrand * r47296 10/trunk/phase3/languages/messages/ (45 files): Localisation updates for core messages from translatewiki.net (2009-02-15 18:43 UTC) [19:01:35] faceface: how do I do that? [19:02:51] 03siebrand * r47297 10/trunk/extensions/ (182 files in 140 dirs): Localisation updates for extension messages from translatewiki.net (2009-02-15 18:43 UTC) [19:07:19] delphine, are both wikis web accessible? [19:10:33] delphine, see MediaWiki::API or pywikipediabot or similar [19:10:46] *dungodung huggles delphine [19:10:56] programatically suck the textfrom one wiki and squirt it into the other [19:11:01] Why are the links not clickable (except the last one) on < http://meta.wikimedia.org/wiki/Language_committee#Timeline >? [19:11:30] (EasyTimeLine). [19:29:10] 03(NEW) SRF-Ploticus: For showimagelink and showcsv actions, make the resulting image and csv file have non-hash fnames - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17511 15enhancement; normal; MediaWiki extensions: SemanticResultFormats; (mediawiki) [19:43:21] hi there, having trouble with Extension:Configure [19:43:59] yea [19:44:12] it is a bit buggy in my experience [19:44:58] The extension won't let me configure the other wiki despite me setting preferences for it, and it being installed on both1 [19:47:12] faceface, no one of them is not accessible, that's my problem :) [19:47:24] anyone able 2 help? [19:47:35] !move | delphine [19:47:35] --mwbot-- delphine: http://www.mediawiki.org/wiki/Manual:Moving_a_wiki [19:47:38] that's the general guide [19:51:06] hi anyone able to help? [19:52:38] I don't really know much about configure, sorry [19:53:37] ta [20:12:33] hi Duesentrieb [20:13:30] werdnum: that's what I did. But it messed up. [20:16:12] hey Nikerabbit [20:16:20] hey delphine! [20:16:30] captain Duesentrieb [20:17:07] hi Duesentrieb [20:17:12] :D [20:17:16] admiral delphine [20:17:17] etc [20:17:18] ;) [20:17:40] *delphine wonders how she became an admiral [20:17:41] :D [20:18:05] :) [20:18:35] because i wanted to outrank Duesentrieb [20:18:39] wanted you to [20:18:40] :) [20:19:06] 03aaron * r47298 10/trunk/extensions/FlaggedRevs/ (3 files in 3 dirs): [20:19:06] * Censor mean wait [20:19:06] * Added median wait state [20:19:27] meow [20:19:30] of course. it is ambassador brion, and erm.. ensign Tim (ahem) [20:19:31] :) [20:19:33] *buzz_ hides [20:20:07] *buzz_ goes to wait for 1.14 final and stop harassing people [20:20:08] and cat manager Nikerabbit [20:20:09] Duesentrieb, btw, I laughed when I saw your notices on identica about « inheriting a TYPO3 » ; funny, because I'm making WMFR's new website with TYPO3 :) [20:20:15] Nikerabbit, :) [20:21:04] quarterly release schedule is almost at debian efficiency levels ;-) [20:21:18] *delphine is going to beat mediawiki with a stick [20:21:36] delphine: hey! [20:21:38] delphine, ive been naughty btw, if you have anything left in your stick :) [20:21:40] no stick-beating [20:21:43] the poor sticks [20:22:00] but this is pissing me off [20:22:02] :D [20:22:33] i blame php [20:22:37] for most things [20:22:55] *delphine blames mysql [20:23:01] oh yeh and mysql [20:23:02] :) [20:23:33] mysql. is great until you want to do more than basic stuff, and then you go "why the **** do i have to make a server wide setting for this. grrr" and then you give up [20:23:49] so if I want to install mediawiki locally [20:23:50] or if you need to do ANYTHING with its useless fulltext index [20:23:53] what do I need? [20:24:11] webserver (apache is easiest perhaps), php 5.x, mysql [20:24:41] delphine: http://www.mediawiki.org/wiki/Manual:Installation_requirements [20:28:37] 03(mod) Request for a Dutch version of labs - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16812 (10danny.leinad) [20:32:59] I am having a strange issue with the Cite extension. [20:33:05] It does not appear when not logged in. [20:47:06] hi all. is there a way to "oversight" a block, namely remove the entry from the log? [21:05:21] 03(mod) Formatting error in "preferences" - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17482 (10FT2.wiki) [21:08:20] 03(mod) Formatting error in "preferences" - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17482 +comment (10FT2.wiki) [21:23:37] Can someone help me debug why using this extension: http://blog.mozilla.com/oremj/2007/01/29/mediawiki-httpauth-plugin/#comments is not working? Specifically, if I follow the wgHooks instructions here: http://www.mediawiki.org/wiki/Extension:HttpAuth it dies [21:24:04] Rather, mediawiki does a core dump and complains about a hook not working properly [21:25:31] 03raymond * r47299 10/trunk/phase3/ (7 files in 7 dirs): [21:25:31] * Special:Prefixindex: Move table styling to shared.css [21:25:31] * Add CSS IDs to tables [21:25:31] * Use correct message 'allpagesprefix' for input form label [21:25:31] * Replace _ with ' ' in next page link [21:29:34] Anyone around? [21:30:39] !ask | Kage` [21:30:39] --mwbot-- Kage`: Don't say "I have a question", or ask "Is anyone around?" or "Can anyone help?". Just ask the question, and someone will help you if they can. Also, please read < http://workaround.org/getting-help-on-irc > for a good explanation of getting help on IRC. [21:30:53] -_- [21:30:57] Please don't patronize me. [21:31:06] I already asked my question [21:31:08] just be patient and wait [21:31:11] it's sunday [21:31:21] Now I'm asking if anyone is active at all to HELP me with my already-asked question. [21:31:41] which is not necessary [21:31:50] if people where active and around, they would answer your question, no? [21:31:56] Actually, no [21:31:58] NOt at all. [21:32:07] k [21:32:30] There's a strong "ignore the guy asking for help" mentality in IRC anymore [21:32:36] Rather, seemingly always has been :/ [21:32:49] Regardless, it did make a couple of you active :P [21:32:50] yes, particularly if the asker is annoying [21:32:59] Kage`: did you follow http://www.mediawiki.org/wiki/Extension:HttpAuth#When_it_doesn.27t_work ? [21:33:06] ialex, yes [21:33:28] Kage`: and what's the error? [21:33:36] It's still dumping Exceptions [21:33:37] ialex: some one was in here with problems with configure ealier [21:33:41] earlier* [21:33:46] Particularly in User [21:33:53] Prodego: the one which is on my talk page? :) [21:33:56] seems the interwiki part wasn't working for them? [21:34:14] yep [21:34:19] Kage`: something like "Hook failed to return a value"? [21:36:02] ialex, yes [21:36:18] ialex, but I followed the "It doesn't work" stuff for the Extension [21:36:35] ialex, I'm double-checking my changes to be sure, but I followed them to the T [21:36:38] ialex: BTW I really love configure [21:36:54] with some polishing, it will really be a must have [21:38:04] Prodego: you have a particular wish, either open a bug or put on (the extension|my) talk page :) [21:38:07] ialex, ah, crap, I found my issue [21:38:19] ialex, I failed to add "return true" in autoAuthenticate [21:38:27] My apologies. Thanks for your help anyway :P [21:38:35] np :) [21:38:39] It works perfectly now [21:38:53] Now, here's one last dumb question... [21:39:05] How can I remove "Logout" from the upper-right corner? [21:39:09] Where is that located? [21:39:25] "Kage My talk My preferences My watchlist My contributions Log out " that stuff, particularly [21:51:00] Kage`: http://pastebin.com/m79a7159f in LocalSettings.php :) [21:51:51] ialex, will that remove the Action it does, or the actual Link? [21:52:02] Kage`: the link [21:52:02] Removing the action isn't too necessary. I just don't want the link there [21:52:05] Oh, good :O [21:53:07] ialex, dude, awesome. Thanks. :O [21:54:47] no problem :) [21:59:38] "Merge commit 'origin/ian-luca'" <-- Someone else using git-svn? [22:02:26] 03(mod) Implement collapsible tables in core javascript - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17456 (10happy_melon) [22:11:15] 03(WONTFIX) Only one word is shown red on diff comparison when turning around two words - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17457 +comment (10Wiki.Melancholie) [22:16:07] 03aaron * r47301 10/trunk/extensions/CheckUser/ (CheckUser.php CheckUser_body.php checkuser.js): [22:16:07] * Removed some duplication of IP.php stuff [22:16:07] * Various IPv6 fixes [22:16:07] * Minor UI tweaks [22:19:36] 03(mod) Implement collapsible tables in core javascript - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17456 (10mikelifeguard) [22:25:06] 03aaron * r47302 10/trunk/extensions/CheckUser/checkuser.js: Be clearer about large cidrs [22:28:41] 03aaron * r47303 10/trunk/extensions/CheckUser/checkuser.js: fix silly bug [22:32:27] 03(mod) Special:Newpages/Special:Recentchanges should be localized on the "mark changes as patrolled" confirmation - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=17103 (10marcin.cieslak) [22:33:36] 04(REOPENED) Special:Newpages/Special:Recentchanges should be localized on the "mark changes as patrolled" confirmation - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=17103 +comment (10marcin.cieslak) [23:06:31] 03(mod) Implement collapsible tables in core javascript - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17456 (10happy_melon) [23:16:07] hi, anyone got any idea why a call to Article>doEdit with EDIT_FORCE_BOT would not actually make the edit be recorded as a bot edit? [23:33:18] 03(mod) hyphen-minus is unreadable - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16213 +comment (10krixel) [23:40:33] 03(mod) hyphen-minus is unreadable - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=16213 (10krixel) [23:54:08] 03(NEW) API returns 'WrongPass' despite correct password, perhaps login throttling - 10https://bugzilla.wikimedia.org/show_bug.cgi?id=17512 normal; normal; MediaWiki: API; (cbm)