[00:22:55] i'm trying to get a list of pages which changed since a given rev_id [00:23:02] and whether the page is new [00:23:10] (was created since given rev_id) [00:23:26] i got the list of pages easily enough, [00:23:50] but checking if they were created since given rev_id [00:24:16] ie no revision exists less than rev_id [00:24:25] is more tricky... [00:25:07] hopefully the list of pages changed since rev_id is small [00:25:50] while the list of pages with revisions predating rev_id could be huge [00:26:20] so building an index of pages which exist before rev_id and checking changed pages against it seems like a bad design [00:26:41] on the other hand, if rev_id is small enough, the list of changed pages could be huge [00:26:50] so passing it as a condition: [00:27:48] WHERE rev_id < '$myRev' AND rev_page IN (x, y, z, ...) [00:27:55] seems also like a bad design [00:29:04] it's like i need to take the results of the query for changed pages, [00:30:29] join with the revision table to get only revisions of pages changed since given rev_id [00:30:56] and determine "is new" if there are revisions less than rev_id [00:31:17] has anyone done something like this? [00:36:46] i just i just whee! [00:36:49] another bug! [00:42:33] 03nickj * r26192 10/trunk/phase3/includes/Database.php: Tweak variable name [00:43:03] 03(NEW) Undefined method called from FileDeleteForm.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11478 minor; low; MediaWiki: General/Unknown; (kelly.lynn.martin) [00:43:47] this one presents a conundrum: clearly a method is expected here but nobody's bothered to write it :) [00:45:08] i suppose it should be showPermissionsErrorPage but then 'delete' seems like the wrong message key [00:49:54] 03robchurch * r26193 10/trunk/phase3/ (RELEASE-NOTES includes/FileDeleteForm.php): (bug 11478) Fix undefined method call in file deletion interface [00:50:03] 03(FIXED) Undefined method called from FileDeleteForm.php - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11478 +comment (10robchur) [00:51:32] that has to be a record for the fastest bug report/fix :P [00:53:22] yay [00:53:29] *NotACow changes her java code to match :) [00:55:23] 03nickj * r26194 10/trunk/extensions/ (44 files in 21 dirs): setting svn:eol-style to native. [00:57:09] Eagle-101: haha, agreed, thats awesome [00:57:29] aha, so I have found dumpHTML.php, but its for dumping from a db, not from a wikitext article, maybe I can tweak it. [00:58:07] i swear, i didn't tell rob i was going to submit it [00:58:24] haha, thats awesome [00:58:35] *bkruse_home watches rob refresh the bugzilla page again [00:59:43] meh, he gets emailed on bugs [01:03:16] So what's the deal with non-spam botnets? I just unblocked a lot of IP addresses and am seeing ~5 edits a day that just add a nonsense word like "tanono" or "dronletod". Anyone else see this or know what the point is? [01:03:40] alxndr: haha, no, thats funny though [01:03:48] alxndr: i don't get the point, no [01:03:56] whoever wrote the irc bot/trojan has a sense of humor [01:03:58] alxndr: unless it's steganographic communication or something [01:04:10] I used to call all mine mindless-slave-x [01:04:12] x being a counter [01:04:21] But for the record ive never owned a botnet :X [01:04:32] *bkruse_home disconects [01:06:42] 03(NEW) Russian and Chinese translations for the TalkHere extension. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11479 15enhancement; low; MediaWiki extensions: Tasks; (mediazilla.20.nickj) [02:16:47] am struggling to get a list of pages which changed since revision X (eg 18) and whether these pages have revisions < X (whether the pages are new) [02:16:51] am currently using: [02:16:56] SELECT MAX(t1.rev_id), t2.rev_id FROM revision AS t1 LEFT JOIN revision AS t2 ON t1.rev_page = t2.rev_page AND t2.rev_id < t1.rev_id WHERE t1.rev_id > 18 GROUP BY t1.rev_page; [02:18:14] i think that needs to be t2.rev_id < MIN(t1.rev_id) [02:18:38] but mysql complains MIN() can't be used like that [02:18:41] any ideas? [02:21:10] Ok cool, I got it to go from wikitext -> html, but the classes are not correct, so when I import css, it still looks like crap :[ [02:22:37] bkruse_home: what did you eventually use to convert? [02:28:03] jablk1: a python library called mwlib, and then a script called testparser.php which uses all the media wiki functions....Any ideas? [02:28:15] Because the information is there, it just looks ugly :/ [02:29:58] 03(NEW) Immediately after deleting a talk page, the discussion / talk link at the top of the page will still show as blue, rather than as red. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11480 15enhancement; lowest; MediaWiki: Special pages; (mediazilla.20.nickj) [02:31:53] 03(mod) Immediately after deleting a talk page, the discussion / talk link at the top of the page will still show as blue, rather than as red. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11480 (10mediazilla.20.nickj) [02:32:43] ...so ive been completely overrun by spam. Spammers constantly make new accounts and create wikis flooded with different text, all in chinese, and with many urls [02:33:23] I have SpamBlacklist installed [02:33:52] but dont know what else to do [02:51:46] feltipen: have you tried the recaptcha extension? [03:00:53] Anyone have an idea about that CSS thing? its owning me [03:03:03] Anyone ever done a wikitext -> html convert? or dump? or anything? [03:26:43] If I put something in MediaWiki:common.css does that mean it totally overrides what is in the /skins/common/common.css file, or simple adds to it? [03:29:21] Dr_DBW: it cascades [03:30:06] the user custom css can override the site custom css which can override the site standard css [03:30:46] so all those css files will be loaded and the end result is determined by how the css standard says cascading works [03:31:02] hippietrail: makes sense, since they are cascading style sheets ;-) Thanks. [03:31:29] Dr_DBW: glad to help (-: [03:31:29] So, that means that if something is defined in the Mediawiki:common.css, it adds to the CSS. [03:31:45] <- not a big CSS person ;-) [03:32:07] well if you put something in common css that is not in the standard css it will be added. if you put something which is already there it will be more subtle [03:32:20] sometimes you need to use !important to get the desired results [03:33:01] Don't care about that, your first part of the sentence confirms what I want to know :-) [03:56:10] 03(NEW) "Hard-coded" redirects for reserved characters and Weather-in-Londons - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11481 minor; normal; MediaWiki: General/Unknown; (seahen123) [04:15:40] How do I assign users to a newly created group? [04:15:54] evsn: Special:Userrights [04:16:56] am an entire newby. For example, I have this setting: $wgGroupPermissions['ninja']['edit'] = true; (how do I assign users to ninja group) ? [04:17:22] am not sure how to use Special:Userrights [04:17:42] evsn: Navigate to your wiki through a web browser, type "Special:Userrights" in the search box and hit go [04:18:54] oh nice! thanks [04:21:42] np [04:31:06] What would be the best setting for this scenario: I'd like all pages displayed publicly. I'd like to assign users in a group and have that group only edit their own page nothing else. [04:34:30] $wgGroupPermissions['*' ]['read'] = true; [04:34:30] $wgGroupPermissions['ninja']['user'] = true; [04:34:30] $wgGroupPermissions['ninja']['edit'] = true; [04:34:30] $wgGroupPermissions['ninja']['read'] = true; [04:34:42] then whoever registers, assign to group ninja? [04:34:47] would that work? [04:40:25] There's really nothing in the mw core to allow you the functionality that you want -- I'm actually not sure if there's an extension to do this eiher [04:40:28] either* [04:40:57] Note, also, that in your configuration there, anonymous users and logged-in users can still edit -- I'm guessing that's not what you wanted [04:43:59] Thanks. But I'm starting with this: $wgGroupPermissions['*']['edit'] = false;, create a group called ninja with: $wgGroupPermissions['ninja' ]['edit'] = true; and $wgGroupPermissions['ninja' ]['read'] = true;, go to : Special:Userrights then assign user in ninja group. I think that's closest to what I want. [04:54:24] amidaniel: how did this site do it? http://www.milliondollarwiki.com [04:54:47] each page there is assigned by (im guessing) to each owner of the site. [04:55:03] otherwise, anyone logged in can edit their pages. [05:05:02] 03raymond * r26195 10/trunk/extensions/TalkHere/ (3 files): * (bug 11479) Russian and Chinese translations for the TalkHere extension. [05:06:32] 03(NEW) Interwiki and interlanguage links must use lowercase codes - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11482 15enhancement; normal; MediaWiki: General/Unknown; (seahen123) [05:08:15] 03(FIXED) Russian and Chinese translations for the TalkHere extension. - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11479 low->normal; +comment (10raimond.spekking) [05:25:01] 03(NEW) Mongolian Wikipedia Tagline - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11483 normal; highest; Wikimedia: Site requests; (chinneeb) [05:37:35] is namespace the name of the wiki page? [05:39:07] 03(NEW) Include ISO rating in abbreviated exif metadata - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11484 15enhancement; normal; MediaWiki: Images; (slowpoke) [05:40:36] evsn: namespaces are like a grouping of wiki pages. http://www.mediawiki.org/wiki/Help:Namespaces [06:02:03] *amidaniel stabs Yuri for putting two l's in "repllag" >:() [06:07:49] How does code so quickly go from stunningly beautiful to horribly illegible? [06:16:52] 03(NEW) Enable WikiTeX Music class - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11485 normal; normal; Wikimedia: General/Unknown; (buxul) [06:24:15] 03(mod) Install LilyPond/WikiTeX Music class - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11485 +shell; summary (10raimond.spekking) [06:32:36] Question (checked faq and failed): is there a way to make main page list all categories automagically? [06:32:54] or include a listing of all categries? [06:33:29] Long story short, I may need to add some content on the main page; but I want a listing of categories like Special:Categories does [06:48:36] <_wooz> lo [07:19:26] If are some sysops around ... http://www.mediawiki.org/wiki/Special:Contributions/L [07:19:37] They are going through removing content for a nubmer of pages. [07:54:12] 03(mod) New:=?UTF-8?Q?=20inclusi=C3=B3n=20de=20lilypo?= =?UTF-8?Q?nd=20en=20wikimedia?= - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11486 (10N/A) [07:54:47] - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11486 (10mgarni01) [08:18:30] 03ilabarg1 * r26196 10/branches/ApiEdit_Vodafone/includes/api/ApiTalk.php: New "action=talk" implemented (first version). [08:20:31] 03ilabarg1 * r26197 10/branches/ApiEdit_Vodafone/includes/api/ApiMain.php: action=talk reference added. [08:22:17] 03ilabarg1 * r26198 10/branches/ApiEdit_Vodafone/includes/AutoLoader.php: action=talk reference added. [08:28:50] 03siebrand * r26199 10/trunk/extensions/FlaggedRevs/FlaggedRevsPage.i18n.php: [08:28:50] * Rebuild of all messages [08:28:50] * adding some translations from Betawiki for a few languages. [08:42:29] Im looking for a way to set up huge numbers of variables, preferably as "subtemplates" is there a good way to do this [08:42:56] I would like to be able to referance this data in more than one location, but edit it in just one location [08:43:25] sure, templates [08:43:27] in some cases the data is a single charicter [08:43:50] how do i referance just a peice of a template, or would their need to be a template for each peice of data? [08:43:59] one template each [08:44:20] Then that wont work for this need, it would become to combersome to implement and maintain [08:44:33] alternatively, write a parser function that read te info from an array. but then you would have to update it in the config file [08:44:53] so not publicly editable? [08:45:05] not editable online at all [08:45:08] hi to evryone! [08:45:16] ::sigh:: [08:45:20] hi [08:45:20] you can get fancy and read the array from a system message. but that is not so simple [08:45:28] i have a question, can some one help me? [08:45:37] dont ask to ask, just ask [08:45:40] gabry80: never ask to ask, just ask you question. [08:45:45] thanks [08:46:28] so there is not a way to label chuncks of a template and just referance the part that is relevent? [08:46:46] i need to delete the old revision on my database... my wiki is little, but i have 24MB of text... too much... but i can't use shell, so i can't use the eleteOldRevisions.php [08:46:51] what i can do? [08:47:00] neurotope: there's an extension called labeled section inclusion or some such. i'm not sure how well it actually works, it alwas struck me as a crude hack. [08:47:30] I dont know if i want to ask someone else to add a crude hack to a comunity wiki... [08:47:56] gabry80: there's no easy way afaik [08:48:02] and so? [08:48:15] gabry80: generally, a wiki works as a version control system, which means old revisions are never deleted. [08:48:39] it's not intended use. so there's no simple way to do it. [08:48:42] ok, nut my wiki is under costruction, we will made "open" next week [08:48:51] so we don't need to preserve the old version now [08:49:23] gabry80: export the current revisions (use Special:Export - you need a list of all pages though) [08:49:31] and i suppose it will be good to have a old version delete, because, ok, is intendeed to keep track of all change, but you need to much space for that [08:49:56] ok, i read abouyt special export... it export as XML, right? [08:49:58] but than? [08:50:10] gabry80: then you can either try to manually delete all pages from the database (scary) or make a fresh install (and drop the old database). then you can import your current revisions again [08:50:37] gabry80: if you do a fresh install to a new db, you lose all user info, though (you can make a backup of that and import it later, using phpmyadmin or some such)( [08:50:39] but in this wasy, Duesentrieb, i will lost all my settin, skin, menu, exc? [08:50:54] argh [08:50:57] so much truble [08:50:59] :-( [08:51:07] gabry80: you can also enable compression of old revisions. but i don't know the details of that. [08:51:08] why mediwiki is so difficult to use :-( [08:51:21] gabry80: it's difficult to use it for things it wasn't designed for. [08:51:49] i think is difficult for almost everything.... why no a real control panel, for example? [08:51:58] gabry80: also, generally, you will have a hard time doing anything but basic operation if you don't have shell access. [08:52:21] gabry80: because a real control panel is dangerous to have online... but it's being worked on. [08:52:33] but many ISP don't proie a shell access [08:52:45] gabry80: but if you find it difficult to use for everything, use something else. there may be a lot of wikis mor suitable for what you want to do. [08:53:00] gabry80: well, then get another hosting service (!= isp) [08:53:13] gabry80: if you want to provide a real service, get real webspace. [08:53:23] hi, im looking for easiest way to insert embeded files (like movies from YouTube) to my mediawiki template [08:53:26] Duesentrieb, some weeks ago i aske ad online community to tell me the best wiki for my use... no one help me :-( [08:53:33] hosting with shell access can be had for < 10$/month [08:54:05] relaxant: there's a *lot* of extensions for embedding different kinds of media. [08:54:16] !extensions | relaxant [08:54:16] relaxant : MediaWiki has been built so it can easily be customized by adding extensions, this is usually a simple process. See http://www.mediawiki.org/wiki/Manual:Extensions for details on writing an extension, and http://www.mediawiki.org/wiki/Extension_Matrix for an overview of known extensions. [08:55:18] again me: here http://www.mediawiki.org/wiki/Manual:FAQ#How_do_I_delete_an_old_version_of_a_page.3F i read that i can delete old revision... "Administrators can delete an old revision of a page by deleting the page, and then selectively undeleting revisions to be kept" but, in this way, i will only hide the revision or delete it? [08:55:51] gabry80: there is no online way to *really* delete *anything* from mediawiki. this is intentional. [08:55:59] :-( [08:56:08] argh [08:56:30] wow, thanks :) [08:57:38] sad about it :-( [08:57:46] thanks for help [09:01:42] 03nikerabbit * r26201 10/trunk/phase3/includes/LogPage.php: * Load all messages because extensions can add new logs [09:09:46] 03raymond * r26202 10/trunk/extensions/ (3 files in 2 dirs): [09:09:46] * Update German [09:09:46] * fix syntax error from r26199 [09:38:28] 03(mod) Add a music wikimodule - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=189 +shell (10jeluf) [09:39:06] 14(DUP) Install LilyPond/WikiTeX Music class - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11485 +comment (10jeluf) [09:39:11] 03(mod) Add a music wikimodule - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=189 +comment (10jeluf) [09:39:18] 14(DUP) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11486 +comment (10jeluf) [09:39:21] 03(mod) Add a music wikimodule - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=189 +comment (10jeluf) [09:39:41] Hey guys, I need your help. I just installed mediawiki v1.6.10 (due to PHP4 on my server) and all help pages are empty. Is this normal behaviour or did I miss anything? [09:40:14] normal [09:40:16] 03nikerabbit * r26203 10/trunk/phase3/includes/SpecialPage.php: whitespace [09:40:33] thx [09:41:48] www.mediawiki.org has some help how to get help pages [10:04:24] when will be increment 'user_editcount' field in db - 'users' table ? i would like to do list of most active users, so i would like to use this column [10:04:35] what do you think? [10:06:58] relaxant: it's updated when you edit... [10:08:10] when edit? it's mean when click save ? (if is nothing change its increment too?) [10:09:50] hmm... maybe someone know some ready extension or other way to do it? [10:11:23] if you clikc save without changing anything, no new revision is created. so i expect the edit count doesn't change either [10:12:02] such a "null edit" can be used to purge internal caches, btw [10:12:24] has anyone noticed random words being added to their wiki? looks like spammers, but containts no links... [10:12:54] naught101: there was someone here with that issue yesterday. yes, it happens. broken spambots, filter poisoning, etc. [10:13:08] naught101: use wgSpamRegex to block it, if you see a predictable pattern. [10:13:08] filter poisoning? [10:13:28] google it [10:13:48] I doubt that things like "rolcouololab cacelc4t" will be a predictable pattern :\ [10:13:52] could also be plain old vandalism [10:14:13] nah, it's a bot. it's happening on lots of pages, all at similar times.. [10:14:24] vandalbots exist. [10:14:32] like spambot, but designed to annoy and destroy... [10:15:08] naught101: try to find *some* pattern (text, ips, pages, times, something) [10:15:23] if you can't, there's no way to automatically detect&block it. [10:15:37] you could enable captchas for all anonymous edits, though [10:15:48] but that's not recommended as a long-term solution [10:16:29] for any practical reason apart from deterring users? [10:16:46] no, just that. [10:16:52] naught101: I have, and it brokes all utf-8 [10:16:58] especially wrt accessibility [10:17:06] Nikerabbit: huh? [10:17:52] naught101: btw, "rolcouololab cacelc4t" has a number-in-a-word. quite rare under normal curcumstances. so one possible regex would be \w\d+\w [10:17:56] example: http://nike.users.idler.fi/dev/?title=Template:Projects/bpy&diff=124210&oldid=124209&curid=24750 [10:18:24] Nikerabbit: oh, the evilbot did. [10:18:36] yep [10:18:58] Duesentrieb: yeah, but that's unusual from the edits I've seen, and that was actually two different edits. I can't really see any pattern that would be useful to make a filter out of... [10:19:28] if there's no pattern, there's nothing to you can do to detect it... [10:19:32] Hi [10:19:49] Duesentrieb: exactly [10:19:54] naught101: the wiki way is: have a couple of active people revert it. [10:20:15] naught101: or try to block an ip range, if it's identifiable [10:20:21] having wiki in english seems to increase the risk of getting crap... [10:20:31] my wiki isn't big enough yet... [10:20:41] I'm trying install math support for mediawiki. I have compiled mediawiki/math but it didn't work. Can you help me? [10:20:56] naught101: you'll have to go with the captchas then. try to turn them off after a coupld of days [10:21:54] funny, I though I already had them on... [10:22:10] naught101: per default they only trigger if an anon adds a link [10:22:32] ahh... [10:22:41] $wgCaptchaTriggers['edit'] = true; [10:23:28] cheers [10:24:53] To enable math support I have changed $wgUseTeX = true; then in the path mediawiki/math I have compiled with $make [10:25:06] in README doesn't say anything more [10:25:13] can you help me? [10:25:55] i get access via shell for my domain, i try to upgrade mediawiki to 1.11 (from 1.09), i upoload the files, did the update.php and now look at my wiki :-( http://wiki.mjj.it/index.php/Pagina_principale [10:25:58] what's happened [10:27:09] fix your extensions [10:27:26] 14(INVALID) Rename namespaces on Hungarian Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11476 +comment (10gtisza) [10:28:00] gabry80: 1.11 is more strict about broken extensions. make sure to upgrade the extensions too, or fix them yourself if needed. or nag the extension's author to fix it. [10:28:15] ok ok [10:28:19] gabry80: the fix is usually trivial: add "return true;" to the end of the hook function [10:28:46] sorry, but what is it a hook function? [10:29:23] the function the extension registeres to be called at some point of mediawiki's execution. [10:29:53] gabry80: in your case, it's called xyRequireEditorPrivilegeHook [10:29:54] includes/hooks.php ? [10:29:59] no. [10:30:02] in the extension. [10:32:48] ok, i get the files, xyRequireEditorPrivilege.php, can you tell me what exactly i have to do (if you can help me)? [10:33:09] gabry80: in that file, find the *function* xyRequireEditorPrivilegeHook [10:33:19] add the return statement to the end of the function. [10:33:29] got it [10:33:35] ok [10:33:36] i try [10:34:59] just" return; " [10:35:01] correct? [10:36:23] gabry80: no. [10:36:25] return true; [10:36:32] ok [10:36:42] hi all ;) [10:37:49] ok, it's working, thanks so much... but it seem i lost the skin :-( [10:43:38] is there a way to permanently delete all the history on all pages in MediaWiki if one doesn't have shell access? [10:44:22] Hi, i just installed mediawiki & want to change sidebar, but i cannot do this because everytime i'am redirected to the main page. Could help me? please [10:53:53] Do you know any way to edit mediawiki in emacs??? [10:57:09] juanma_: http://en.wikipedia.org/wiki/Wikipedia:Text_editor_support#GNU_Emacs [10:57:44] thanks but it is only to edit wikipedia, not a local mediawiki [11:00:14] juanma_: it should be trivial to change that. find the url in the el file [11:00:17] change it [11:00:41] mmm maybe [11:00:46] i'm going to try [11:02:03] juanma_: actually, i don't see anything wikipedia-specific in the code (which probably means that it doesn't to loading/saving at all...) [11:02:18] but that probably also exists somewhere. keep digging :) [11:02:38] :S ok [11:07:53] hi, here again, i use the deleteoldrevision scripts, it's working.... but i have the history of the revision, wghat i ca do to delete them? [11:35:55] hi [11:36:18] upgrade guide tells me: Replace all existing files with the new versions from 1.11, preserving the directory structure. [11:36:42] can you define: preserving the directory structure ? [11:36:43] 03tstarling * r26204 10/trunk/extensions/OggHandler/cortado-truncation-bugfix.diff: [11:36:43] Fix for bug 11232. Improved port of GStreamer's GstBaseAudioSink [11:36:43] (gstbaseaudiosink.c in gst-plugins-base). AudioSink should block on EOS until [11:36:43] playback is finished. This behaviour is also mentioned in GStreamer's [11:36:43] part-element-sink.txt. [11:37:01] i mean rm the old folders and copy new to the wiki dir should be ok, or am i wrong ? [11:37:42] cause if i just copy the new files to there i might have some old useless files staying...which sounds not that good [11:38:09] I usually just copy settings over to clean extracted directory [11:38:38] sounds like there are diffrent ways to do [11:39:08] gonna do a test-run - delete old content of "wiki" copy new content into that folder - edit the admin-sample and run the update file [11:42:21] Nikerabbit: to you know what is profileinfo.php script for during this update procedure ? [11:42:46] huh? [11:42:58] it's not related to upgrade [11:43:43] mh...its part of adminsettings.sample [11:44:05] or: AdminSettings.sample includes: a true/false switch for it [11:45:28] ugh?! [11:49:53] im completely overrun by spam! [11:50:05] hundred spam page creations a day [11:54:39] 03(NEW) Special:Protectedpages doesn't show pre-1.10 protections - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11487 normal; normal; MediaWiki: Special pages; (roan.kattouw) [12:05:44] *feltipen needs help, wiki...dying... [12:07:15] 03(NEW) Fix namespace names in the Hungarian localization - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11488 trivial; normal; MediaWiki: Internationalization; (gtisza) [12:07:47] 03(NEW) Merge Help namespace into Project in the Hungarian Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11489 15enhancement; normal; Wikimedia: Language setup; (gtisza) [12:11:21] 03jvelezv * r26205 10/branches/ApiEdit_Vodafone/includes/ (SpecialUserlogin.php api/ApiRegUser.php): SpecialUserlogin merged. Small updates in ApiRegUser. [12:11:38] 03(mod) OggHandler Safari support - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11249 (10tstarling) [12:13:23] 03(mod) Merge Help namespace into Project in the Hungarian Wikipedia - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11489 +shell (10raimond.spekking) [12:16:14] feltipen: maybe this helps you: http://www.mediawiki.org/wiki/Category:Spam_management_extensions [12:16:28] feltipen: in preventing the spam. [12:23:06] thx, but i already installed spamblacklist, and i cant install bad behavior [12:23:18] or spamdifftool [12:25:41] this doesn't seem to do anything [12:25:55] probably because the spam is all in chinese [12:28:55] and the spamregex extension is broken [12:33:55] feltipen: you are right. i was looking for something else. [12:34:53] thx though [12:37:53] 03proes * r26206 10/trunk/extensions/Wikidata/OmegaWiki/OmegaWikiEditors.php: Make Source identifier in Collection membership read only [12:39:02] feltipen: finally i got it; i meant this one: http://www.mediawiki.org/wiki/Extension:ConfirmEdit [12:46:11] oh great [12:46:12] thanks! [12:46:16] ill check it out after work [12:50:57] 03nhuffschmid * r26207 10/trunk/wap/ (10 files in 2 dirs): added greek language support [13:02:51] hello guys. i want to setup ldap authentication for authentication with mediawiki 1.10 & LDAP_Authentication. there is one thing that i am unsure: can i set the password attribute somehow? i mean..phpbb needs the password-attribute named as "userPassword".....what name does it need to be with mediawiki? thx! [13:03:26] i followed this section: http://www.mediawiki.org/wiki/Extension:LDAP_Authentication/Configuration_Examples#Configuration_for_a_Non-AD_Server_2 [13:12:57] What's the best way to test (from MyQuickTemplate::execute()) if the current page is "Main Page" & not display

Main Page

? [13:22:50] hayy [13:23:34] so i have mediawiki up, i've tried doing the autoinstall - for some reason it doesn't create LocalSettings.php and it doesn't error [13:25:01] oblio: to get more errors: edit config/index.php and set "error_reporting( E_ALL );" [13:29:19] punkrock: it's already set to E_ALL [13:38:45] anyone? :-D are there any php.ini settings i should check? [13:39:44] Is this naiive? if( strcmp($this->data['title'], 'MediaWiki:Mainpage') != 0 ) { [13:42:38] oblio: ok. lets see. you start the installation via the install script, right? [13:42:55] yep [13:43:03] you call it, and pass all the parameters to it that are needed. [13:43:26] after that it returns with a message that LocalSettings.php was generated, right? [13:43:48] but there is no LocalSettings.php in the mediawiki root folder, right? [13:59:46] 03siebrand * r26208 10/trunk/wap/ (7 files in 2 dirs): Added Dutch language support [14:03:17] 03greg * r26209 10/trunk/phase3/ (includes/DatabasePostgres.php maintenance/updaters.inc): Use same typnames as schema for ease. Put added column before column type checks. [14:34:31] 03(NEW) RFE: Display name for pages in category - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11490 15enhancement; normal; MediaWiki: Categories; (Betlista) [14:44:34] punkrock: yes [14:44:38] punkrock: that is exactly the case [14:44:50] punkrock: i enter in my settings, it says it has generated the file [14:44:52] and no file is there [14:45:13] 09:46 // "-v David_Brown" by root [14:45:13] 09:47 // "-v Blue_Thomas" by root [14:45:13] 09:47 // "-v Stephen_Hsu" by root [14:45:13] 09:48 // "-v David_Corning" by root [14:45:15] oops [14:46:14] LocalSettings.php should be in config/ folder after installation, you need to move it from that to your wiki's root folder [14:46:29] oblio: listen to Jack_Phoenix :) [14:46:40] you have to copy it to the root.... [14:59:06] 03greg * r26210 10/trunk/phase3/ (includes/DatabasePostgres.php maintenance/updaters.inc): [14:59:06] Postgres updating: [14:59:06] Map bpchar to char [14:59:06] Don't change default search_path if schema not 'mediawiki' in LocalSettings [14:59:06] Clean up the output of updaters.inc [14:59:06] Make sure we set search_path and others for current session when altering user. [15:00:34] 03(NEW) Sorting in reverse order - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11491 15enhancement; normal; Wikimedia: Bugzilla; (huji.huji) [15:03:34] punkrock, jack_phoenix: as i was saying - the file is not created [15:03:39] it's not in config/ [15:03:40] it's not anywhere [15:03:51] find . -name LocalSettings.php returns nothing [15:03:55] in the web root [15:04:22] 03(FIXED) On redirect pages, "article" tab in top bar should lead to nonredirected page (&redirect=no) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3324 +comment (10huji.huji) [15:05:08] rf [15:05:11] Annyone=? [15:05:24] knows a extension for getting mediawiki into joomla? [15:07:20] oblio: and you are sure that you are looking in the right mediawiki instance? [15:07:48] Zizanzu_: none that I know of. [15:08:02] oblio: you use linux. at least some *nix [15:09:39] if you add an 'exit;' in the second line of the install script and execute the installation again, is the page empty then? [15:10:00] ok [15:10:14] oblio: can you run the install script several times? [15:11:30] then at least there is something wrong. it should create the LocalSettings.php and after that will show up a information message instead of a configuration page. [15:13:03] 03(mod) On redirect pages, "article" tab in top bar should lead to nonredirected page (&redirect=no) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3324 +comment (10huji.huji) [15:19:47] punkrock: yes, there is only one mediawiki instance. yes, it is linux. i can run it several times. it says it completes. it never creates the file. [15:19:51] unless it doesn't complete and doesn't error [15:20:08] the last line on the page after i submit is [15:20:11] "granting user permissions" [15:20:18] and it prints the sql for permissioning to my db user [15:20:23] and that's it [15:20:31] no errors in the error_log or on the screen [15:21:01] maybe it's failing loading the mysql driver and not printing an error [15:21:11] and hasn't actually generated the file, it just started generating it [15:21:17] started to attempt to generate it [15:25:53] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10brion) [15:28:08] 03(mod) Remove deprecated extAddSpecialPage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11461 (10brion) [15:31:36] 03(mod) Please import Upper Sorbian Test project into http://hsb. wiktionary.org - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11469 (10brion) [15:36:17] 03(WONTFIX) Interwiki and interlanguage links must use lowercase codes - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11482 +comment (10brion) [15:37:33] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10roan.kattouw) [15:44:01] 03(NEW) pt.wikipedia.org : bold print for changes in watchlist - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11492 normal; normal; Wikimedia: Site requests; (lijealso) [15:44:01] 04(REOPENED) On redirect pages, "article" tab in top bar should lead to nonredirected page (&redirect=no) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=3324 +comment (10brion) [15:44:50] 03(mod) Remove deprecated extAddSpecialPage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11461 (10JSchulz_4587) [15:51:02] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10brion) [15:55:59] I'm trying to create a custom skin for this: http://58.96.34.198/transitcamp/goldcoast/wiki/skins/transitcamp/transitcamp_index.html [15:57:13] ...trying to figure out the best way to have (editable) links with tags in the sidebar [15:58:25] ...started off thinking about hard-coding the links as an array of MyLogoLink objects in the PHP [16:00:49] I think I could either add a new message (similar to sidebar) to Special:Allmessages, or perhaps get the skin to import a whole wiki page (like struts:tiles) [16:03:19] If I add a new message, I suspect any changes would be scrapped when I install the next version of MediaWiki? [16:03:22] 03(mod) Please import Upper Sorbian Test project into http://hsb. wiktionary.org - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11469 (10jorohr) [16:12:57] is there a way to export a mediawiki en masse to a pdf, or .doc or ... ? [16:13:53] 03leogregianin * r26211 10/trunk/tools/planet/pt/config.ini: +2 feeds [16:17:30] 03(NEW) Replace extAddSpecialPage with normal $wgSpecialPages and $wgAutoloadClasses usage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11493 trivial; normal; MediaWiki extensions: General/Unknown; (vasilvv) [16:17:38] brion-work: made http://bugzilla.wikimedia.org/show_bug.cgi?id=11493 for you [16:18:09] thx :) [16:19:24] we're killing ExtensionFunctions.php? YAY! \o/ [16:23:15] 03(mod) Remove deprecated extAddSpecialPage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11461 (10robchur) [16:24:28] *Jack_Phoenix wonders what happened to http://bugzilla.wikimedia.org/show_bug.cgi?id=7803 [16:25:50] hey, anyone know how to use [[Image:MyPhoto.jpg]] and have it not be a link? [16:48:16] I am trying to grant other users ADMIN access. How do I go about doing so or what is a good search term to enter to find that info. [16:48:23] 03(mod) Remove deprecated extAddSpecialPage - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11461 (10JSchulz_4587) [16:48:40] ssnickersman: Special:Userrights [16:51:54] 03(FIXED) Username not rendered properly in tab - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11460 (10mike.lifeguard) [16:55:55] 03(mod) Username not rendered properly in tab - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11460 (10robchur) [16:59:41] Where can I go to block IP addresses? [16:59:53] Special:Blockip [16:59:59] Thanks! [17:00:54] the list of the special pages is aviable at Special:Specialpages, restrictes pages are at the bottom of the page in a specific section [17:00:55] Can somebody recommend if I should use Special:AllMessages or Template:ExternalLinks to acheive the iconic external links: http://58.96.34.198/transitcamp/goldcoast/wiki/skins/transitcamp/transitcamp_index.html [17:05:42] ...can you include a Template: page in a Skin? [17:15:32] 03siebrand * r26212 10/trunk/phase3/languages/messages/ (MessagesLa.php MessagesLi.php MessagesWa.php): [17:15:32] Localisation updates from Betawiki. [17:15:32] * Latin: special page translations [17:15:32] * Limburgian: fallback Dutch (nl) [17:15:32] * Walloon: fallback French (fr) [17:40:22] 03yaron * r26213 10/trunk/extensions/SemanticForms/specials/SF_AddData.php: Removed now-unnecessary setting of $target_title [17:41:15] 03yaron * r26214 10/trunk/extensions/SemanticForms/specials/SF_CreateForm.php: Improved checks of inputs so they can work with non-English languages [17:43:09] 03yaron * r26215 10/trunk/extensions/SemanticForms/includes/SF_TemplateField.inc: [17:43:09] Replaced direct access of SMW member variable, removed unneeded newline [17:43:09] in generated template [17:44:26] 03yaron * r26216 10/trunk/extensions/SemanticForms/includes/SF_FormClasses.inc: [17:44:26] getAllFields() now, when finding the semantic field being set on a specific [17:44:26] template fields, also looks for #arraymap parser function calls [17:45:28] 03yaron * r26217 10/trunk/extensions/SemanticForms/languages/SF_LanguageZh_tw.php: Fixed class name [17:52:31] 03yaron * r26218 10/trunk/extensions/SemanticForms/includes/SF_FormPrinter.inc: [17:52:31] Replaced direct access of SMW member variables (bug 11467), added [17:52:31] array_key_exists() calls to eliminate PHP error messages (bug 11466), added [17:52:31] handling for two new input types - "listbox" and "checkboxes", both of which [17:52:31] read and output a delimited list of values (bug 11184), added more class [17:52:33] definitions in HTML tags to allow for more CSS control (bug 10875, to some [17:52:35] extent), made HTML being generated somewhat more W3C-valid. [17:55:23] 03yaron * r26219 10/trunk/extensions/SemanticForms/includes/SF_GlobalFunctions.php: [17:55:23] Added Harold Solbrig's sffLinkText() replacement code (bug 11464), added [17:55:23] Sergey Chernyshev's code for handling blank/"main" namespace (bug 11379) [17:57:27] I just upgraded to 1.11.0 [17:57:42] suddenly the rewrite stuff does not work. Everything edits /index.php [17:57:54] <_Danny_B_> where (in svn) can i find handling of suffix of the link (such as [[foo]]bar -> [[foo|foobar]]) ? thx [17:58:12] removing $wgArticlePath="/kb/$1" fixes this [17:58:47] 03yaron * r26220 10/trunk/extensions/SemanticForms/languages/SF_LanguageEn.php: Added 'sf_blank_namespace' content messge (bug 11379) [17:58:59] I have a mod rewrite rule that does RewriteRule ^(.*) /kb/index.php/$1 -PT,L,QSA] [17:59:14] :/ [17:59:42] 03yaron * r26221 10/trunk/extensions/SemanticForms/INSTALL: New version: 0.6.4 [18:01:28] :/ [18:34:33] is there a way to wipe all revision history on every page without shell access to the machine? [18:37:44] hello [18:37:50] anyone here? [18:40:29] khatahn: depends [18:40:54] If you can run cronjobs (cpanel does this) then yes, also if you are allowed run phpshell also yes [18:42:55] How could I do "developer-style" accounts for our wiki-family – they should have access to buraucrat and sysop privileges, but wouldn't need to show up on the User list as such. [18:43:51] I don't think that's possible, unless you hack the code. [18:44:10] It's easy if you don't mind if it shows up on the user list as "developer" or some such. [18:44:21] minute: ah, i'll have to find out. thanks for the tips. [18:44:51] khatahn: You're welcome, enjoy the rest of your day. [18:44:56] I have to run in a few minutes though. [18:51:52] 03(FIXED) sffLinkText should not use SMWInlineQuery for page links - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11464 +comment (10yaron57) [18:52:47] 03(FIXED) Eliminate spurious errors - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11466 +comment (10yaron57) [18:54:21] 03(FIXED) SF should not directly access SMW member variables - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11467 +comment (10yaron57) [18:56:03] 03(FIXED) List box input - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11184 +comment (10yaron57) [18:57:56] 03(FIXED) Absolute paths to CSS in special pages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11357 +comment (10yaron57) [18:58:00] woah, phpshell actually does work. that's one damn useful app :) [18:59:24] 03(mod) No way to define default form for default (blank) namespace ( Main) - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11379 (10yaron57) [19:02:04] 03(mod) Style auto-completion fields - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=10875 (10yaron57) [19:04:18] Hi all [19:08:51] 03brion * r26222 10/trunk/phase3/skins/monobook/main.css: fix for bad CSS selector in r26175 [19:13:48] Has anyone made their wiki available offline by any chance? [19:14:24] what do you mean by "offline" here? [19:14:25] offline = without internet? [19:15:41] yea [19:16:02] like I want my visitors to be able to download an .exe that lets them browse maybe just the text of the articles without images [19:16:25] I've seen there's quite a few programs relating to Wikipedia, but nothing that looked like it would work well [19:16:56] Not that I know of [19:17:36] Indeed, it may be make less sense too. [19:18:03] less sense? [19:18:07] Wikipedia articles are not fixed. They are changed every second. So you have to decide which version of each page you want your users to be able to browse [19:18:30] Hojjat, have you not heard of the Wikipedia CD/DVD projects? [19:18:41] Oh yes. There is also Wikipedia on PDAs! [19:18:48] yea, and iPods [19:19:06] I didn't mean it is impossible, I said it isn't perfect [19:19:12] oh yea, I agree there [19:19:20] anyways, to your quesiton, I haven't heared of such a program. [19:19:30] Yet you may be able to creat one yourself. Just get one of the database dumps. [19:19:37] there's quite a few listed here: http://intelligentdesigns.net/blog/?p=73 but none that looked like they would work very well for my needs. [19:20:43] *Hojjat agrees [19:21:37] hi [19:21:42] hi [19:21:51] i plan to merge some of the changes from the api-vodafone branch over the weekend [19:21:56] hope it won't break much :) [19:22:17] pending changes: page edit, new account reg [19:22:42] no new functionality will be added - just reorg of the core files [19:23:24] O rly? [19:23:29] You think it's stable enough? [19:23:59] good question :) [19:24:14] i think the changes i will merge are only reorg-related [19:24:33] in other words - one function will become two, but from the outside it will continue doing the same thing [19:25:56] Okay [19:26:18] The little I've toyed with the vodafone branch, it seems to work, but it has the clear signs of being immature :) [19:26:31] Are you going to bring over edit already? [19:27:19] not the api [19:27:26] just the core method changes [19:27:38] this way i don't make a huge step once it becomes mature [19:27:39] what software should i use to convert a video file to png ? [19:27:51] camera? [19:29:07] A screenshot utility? [19:31:16] 03(NEW) Update for Minnan localisation and its extension messages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11494 15enhancement; normal; MediaWiki: Internationalization; (shinjiman) [19:32:16] Hey guys, has anyone done raw wikitext -> html using mediawiki? Can point me in the right direction? [19:32:58] 03(mod) Update for Minnan localisation and its extension messages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11494 (10shinjiman) [19:34:14] 03(mod) Update for Minnan localisation and its extension messages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11494 (10shinjiman) [19:36:05] 03erik * r26223 10/trunk/extensions/Wikidata/ (App.php LocalApp.php.sample): MW-like default/local settings separation [19:37:43] No one? :/ [19:42:31] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10roan.kattouw) [19:42:47] bkruse_home: usually people are interested in doing the opposite. [19:43:24] Try looking at the code that converts the wiki code in the database to HTML. [19:43:27] Pathoschild: I realize this, but I want to convert wikitext -> static html on the fly.... [19:43:56] That's already done for output; I assume you want the HTML in a text box given arbitrary code, right? [19:45:23] Pathoschild: Given wikitext, generate a static html page, with the css properly intact. [19:45:44] bkruse_home: given wikitext, or given a wiki page? [19:46:25] Duesentrieb: Nah, its just wikitext [19:46:25] or [19:46:33] bkruse_home: the parser is heavily entangeled with the rest of the wiki system. it needs a lot of context, for example the name of the page. [19:46:34] wikimarkup of a wikipage, rather, sorry, that was not fully clear [19:47:14] bkruse_home: you can use action=render on a wiki page. but that does not give you all css references, since they are in the html header. [19:47:14] Duesentrieb: So i guess ill have to go through it it and hack it myself? :/ [19:47:42] you can try. though i don't quite understand what you are actually trying to achive [19:47:43] I can get the references, its the actual putting a style attribute in the proper html tag [19:48:06] style attributes?... i don't get it [19:48:23] the parser doesn't add style attributes usually... [19:48:27] Duesentrieb: Eg, style="toc-1" or style="header" [19:48:30] Duesentrieb: I just need a program to do wikitext -> static html on the fly so I can serve it up [19:48:46] bkruse_home: that's class=, not style= [19:48:56] Duesentrieb: ahh, sorry, yes [19:49:17] bkruse_home: "ikitext -> static html on the fly so I can serve it up" <--- that's what the wiki does all the time... [19:50:13] Duesentrieb: But out of a database right? I just need some sort of standalone file to do it, I guess ill have to start ripping at internals [19:51:02] it's going to be tough. mediawiki's parser (read: munger) doesn't easily lend itself to that, sadly. [19:51:51] Duesentrieb: Ugh...Well, I could include the whole mediawiki source, I just need a function that will take a file input as an argument, there has to be something close ot that... [19:52:44] bkruse_home: the closest i know is the dumpHtml.php command line file. it also takes text from the database, but i suppose you can copy&modify to read from a file [19:53:18] Duesentrieb: Ahh, perfect! in maintenance/ or whatever right? [19:53:27] you'll probably have to create a dummy Page object though. perhaps look at hot the Expandtemplates extension does it [19:53:34] yes, maiontenance for dumpHtml [19:53:43] Duesentrieb: I will look into this and keep you updated on my progress, do you think this would include the monobook css and what not? [19:54:15] bkruse_home: yes it will. it creates full html pages [19:54:32] very much like the ones served by the wiki. [19:54:39] Perfect! [19:54:45] Duesentrieb: Perfect, and yes, I see what you mean about that object now that im looking at it [19:54:53] if you don't want all the navigation cruft with it, you can somehow right that too... [19:55:20] a dummy skin would do. or look at how mediawiki handles the render action. [19:55:35] hm... naw, go with the skin, you need it for the css [19:56:10] Done, thats what I needed Duesentrieb. Ill it out and keep you updated, thank you so much! [19:57:32] Hi all [19:58:22] my wiki install seems to cache pages, can I clear the cache somewhere? [20:01:51] q_no: touch your LocalSettings.php file to purge all pages. [20:02:01] q_no: use action=purge as a url param for individual pages [20:02:03] <_Danny_B_> where in svn can i find handling of suffix of the link (such as [[foo]]bar -> [[foo|foobar]]) ? thx [20:02:21] _Danny_B_: grep for linktrail. it's in the parser, somehow. [20:02:52] ah, thx Duesentrieb :) [20:07:24] Duesentrieb: This is going to be difficult to convert... [20:07:51] not as difficult as doing it from scratch... [20:08:45] Duesentrieb: Nice. Good point [20:11:19] <_Danny_B_> hmm parser.php doesn't have linktrail word in it, any synonymum for that? [20:14:07] 03brion * r26224 10/trunk/extensions/OggHandler/ (3 files): Dump the broken 0.2.2.1-patched Cortado build and replace it with a working 0.2.2 patched build, including the new audio fix. [20:15:35] _Danny_B_: Linker.php: $wgContLang->linkTrail(); [20:16:57] _Danny_B_: look for Linker::splitTrail in the parser [20:17:17] <_Danny_B_> thx, trying to find the regexp for the suffix [20:18:37] <_Danny_B_> seems to me it's defined in $wgContLang which i have to find now [20:18:57] _Danny_B_: the regex is defined in the language file [20:19:09] it depends on the content langauge [20:19:20] <_Danny_B_> aha! [20:24:38] <_Danny_B_> Duesentrieb: did you mean LanguageXx.php? [20:24:48] yes [20:27:24] <_Danny_B_> wither i'm blind or it isn't there. or it has some fallback to somewhere else. i don't see it in languagecs.php :-/ [20:34:20] _Danny_B_: then it probably inherits it from languageen or something [20:36:11] <_Danny_B_> that's what i was thinking about, but i didn't find languageen.php [20:41:03] 03(NEW) Search button not returning anything - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11495 trivial; normal; MediaWiki: Search; (twenson) [20:43:05] any particular place to ask why extensions dont work? [20:56:13] hello, I am trying to install media wiki on ubuntu but when I enter http://localhost/wiki it downloads a phtml file. Can anyone help? [20:58:04] zeus_: that sounds like you don't have php installed properly. [20:58:54] Duesentrieb: everythinng is isntalled in ubuntu, I don't know what else to do [20:59:16] zeus_: something is broken in your ubuntu. i don't know what to tell you. [21:01:13] dpkg-reconfigure php5 [21:23:02] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10Bryan.TongMinh) [21:30:11] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10roan.kattouw) [21:39:52] 03(mod) Fetching revision history fails without error message - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11430 (10Bryan.TongMinh) [21:40:14] could somebody enable debugging on Commons? [21:40:36] wrong channel [21:43:47] 03(NEW) Sysops can put raw HTML in some MediaWiki:-messages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11496 normal; high; MediaWiki: Internationalization; (webboy) [21:58:14] does anyone know if an archived version of pages-meta-history.xml is available? it's failed the last 2 times and any version would do fine [22:01:08] 14(INVALID) Sysops can put raw HTML in some MediaWiki:-messages - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=11496 +comment (10danny_b) [22:07:54] <[daedalus]> Little question... I have mediawiki v 1.11.0 and I want to disable viewing by anonymous users. I tried this: http://paste-it.net/3744 but it is still possible to see other pages... What did I wrong or did I forgot? [22:10:54] hi, im looking to theme mediawiki so that it looks like the rest of my site, but im unfamiliar with the skinning/theming engine in use... anyone got a good tutorial [22:11:14] 03leogregianin * r26225 10/trunk/tools/planet/pt/config.ini: [22:15:52] !skin | silverblade [22:15:57] hm... [22:16:07] *silverblade becomes skinned [22:16:26] !skins is http://www.mediawiki.org/wiki/Manual:Skins [22:16:26] Successfully added keyword: skins [22:16:32] !skins | silverblade [22:16:32] silverblade : http://www.mediawiki.org/wiki/Manual:Skins [22:16:36] better :) [22:17:21] excellent. thanks. also is there a way to lock down a wiki so that only one person can edit it? or a select few? i ask because i mainly just use my wiki as a notepad [22:17:27] i realise it defeats the object ;) [22:18:28] !access | silverblade [22:18:28] silverblade : For information on preventing access to your wiki, please see . [22:18:48] *Duesentrieb likes the bot [22:19:05] evidently ;) [22:20:28] i'm hiring a wiki/css designer. If you are any good i'll hire you. ryangravener@gmail.com [22:37:15] Greetings. I just recently installed MediaWiki and uploaded a logo. In LocalSettings.php I set the $wgLogo parameter to the file name. When I access the main page, I don't see the logo - but if I click discussion, edit, or history, it shows up. But going back to the main page it is blank. I have cleared the cache, etc. just to see if that helped [22:38:21] hi all [22:38:23] 03aaron * r26226 10/trunk/extensions/FlaggedRevs/ (FlaggedRevs.php FlaggedRevsPage_body.php): [22:38:23] *Don't show ! marks for unreviewable pages [22:38:23] *Some fixes [22:39:50] Anyone knows if there is a mediawiki extension to show the articles content titles in the categoty list? (So you will show all articles in a category and also the content titles of the articles) [22:42:48] Nukeador: "content titles"? [22:43:07] Nukeador: oh, you mean sections inside the articles? [22:43:12] Yes yes [22:43:22] that would be hard to do. the headings arn't stored in the database. [22:43:31] uhm [22:43:35] not separately from the text anyway. [22:44:23] 03(mod) Oracle support - 10http://bugzilla.wikimedia.org/show_bug.cgi?id=652 +comment (10pdhogan) [22:44:24] Nukeador: maybe this is an alternative: http://www.mediawiki.org/wiki/Extension%3AHierarchy [22:44:34] The thing is that I need a way to show a link to the article and also to the sections. It's the best way to show a FAQ [22:44:37] let me see... [22:47:02] Nukeador: also look into DynamicPageList - maybe it can also show headings. keep in mind that this is going to be slow... [22:47:24] ok, thanks [22:50:04] 03siebrand * r26227 10/trunk/phase3/languages/messages/MessagesVls.php: [22:50:04] Localisation updates from Betawiki. [22:50:04] * West Flemish: fallback Dutch (nl) [23:02:37] 03daniel * r26228 10/trunk/phase3/includes/mime.info: added mime type aliases for djvu [23:16:20] is it possible to have 2 wikis from the same install of media wiki? [23:16:53] sorry FAQ [23:25:26] i want to put a full blown computer in my car [23:27:02] don't we all [23:27:19] ST47: the question is, what car would work best? [23:27:30] Well, it'd need to have space [23:27:46] well it would be a micro [23:27:48] or mini [23:28:08] And electricity. [23:28:31] *ST47 doesn't think that your average car can run a computer [23:30:12] 03leogregianin * r26229 10/trunk/phase3/languages/messages/MessagesPt_br.php: update language [23:32:47] 03aaron * r26230 10/trunk/extensions/FlaggedRevs/ (3 files): [23:32:47] *Log even if settings defaults for consistency and tracking if site defaults change. [23:32:47] *More fixes, cleanup. [23:33:03] 03david * r26231 10/branches/liquidthreads/extensions/LqtBaseView.php: Maximum indentation level (set to 4 for now). [23:33:29] aftermarket alternator [23:56:50] 03aaron * r26232 10/trunk/phase3/includes/EditPage.php: *Don't add redundant perm errors, as the text can get doubled up on edit [23:58:26] 03siebrand * r26233 10/trunk/phase3/ (16 files in 2 dirs): [23:58:26] Localisation updates from Betawiki. [23:58:26] * am, ar, bat-smg, bcl, bpy, cy, dsb, ext, fi, hr, ja, la, nl, sdc, sei.