From mike at skinmaster.co.uk Sat May 1 04:33:34 2004 From: mike at skinmaster.co.uk (Michael Jervis) Date: Sat, 1 May 2004 09:33:34 +0100 Subject: [geeklog-devel] Comment Spam & lib-c*.php In-Reply-To: <4092D622.8010004@tonybibbs.com> Message-ID: >Sure send your code over for tracking IP's in comments. Change to comments add an ip column of type varchar length 15. Trivial change in comment.php, savecomment line 285 becomes: DB_save ($_TABLES['comments'], 'sid,uid,comment,date,title,pid,type,ip', "'$sid',$uid,'$comment',now(),'$title',$pid,'$type','{$_SERVER['REMOTE_ADDR' ]}'"); Trivial change in lib-common.php ;-) line 2774 in the function COM_getComment becomes: . $LANG01[28] . ' | '.$A['ip'] ); (i.e. after the delete option we have a pipe and the IP posted from) I think that was everything. Not rocket science. Shame it turned out the annon comment spam was coming from random IP addresses. Had to turn of annon commenting in the end. Perhaps some kind of comment approval system... hmm... >As for rearranging file locations. Guessed as much, ta for the reply though. From dirk at haun-online.de Tue May 11 14:15:33 2004 From: dirk at haun-online.de (Dirk Haun) Date: Tue, 11 May 2004 20:15:33 +0200 Subject: [geeklog-devel] New features in CVS Message-ID: <20040511181533.30259@smtp.haun-online.de> I had some time to play around a bit and decided to implement 2 features (now in CVS), for which I'd like to hear some feedback. 1) On top of Michael's patches to log IP addresses of comment posters, I've added an option that lets you click on that IP address and have it looked up by a website that does IP address lookups. The idea being that this could help you track down where abusers come from. My only concern is that this may be considered abuse of those services. But then again, it's not automated and you'll have to do a lot of clicking before they'll even notice and additional load. I've listed three such services in config.php, all commented out per default. Comments? 2) Feature request #204 asked for an option to let the admin post a story for someone, i.e. under their name. I've now added a dropdown menu in the admin's story editor that lets you pick the user that should be displayed as the author of the story. The only problem is, of course, that it may take a while when you have a lot of users. It's already noticable with the 7300+ users in the geeklog.net database. And I don't really want to know how long it would take on MFI (how many users, Marc? 250,000?). Maybe it would be easier (on the database ...) to replace the dropdown with a text entry field or something. Ideas, anyone? bye, Dirk -- http://www.haun-online.de/ http://mypod.de/ From tomw at pigstye.net Tue May 11 14:39:49 2004 From: tomw at pigstye.net (Tom Willett) Date: Tue, 11 May 2004 18:39:49 +0000 Subject: [geeklog-devel] New features in CVS In-Reply-To: <20040511181533.30259@smtp.haun-online.de> References: <20040511181533.30259@smtp.haun-online.de> Message-ID: <20040511183216.M41381@pigstye.net> I have from early on had a ip lookup function in the stats plugin. I used two different net based whois providers and they both soon started blocking access or regularly changed the interface. So I looked into and adopted phpwhois2. It contacts the whois servers directly and does not have this problem. You can see my implementation in my nettools hacks. I would recommend that if you do go with ip lookup that you look at phpwhois to avoid problems. -- Tom Willett tomw at pigstye.net ---------- Original Message ----------- From: "Dirk Haun" To: Sent: Tue, 11 May 2004 20:15:33 +0200 Subject: [geeklog-devel] New features in CVS > I had some time to play around a bit and decided to implement 2 features > (now in CVS), for which I'd like to hear some feedback. > > 1) On top of Michael's patches to log IP addresses of comment posters, > I've added an option that lets you click on that IP address and have it > looked up by a website that does IP address lookups. The idea being that > this could help you track down where abusers come from. > > My only concern is that this may be considered abuse of those services. > But then again, it's not automated and you'll have to do a lot of > clicking before they'll even notice and additional load. > > I've listed three such services in config.php, all commented out per default. > > Comments? > > 2) Feature request #204 asked for an option to let the admin post a story > for someone, i.e. under their name. I've now added a dropdown menu in the > admin's story editor that lets you pick the user that should be displayed > as the author of the story. > > The only problem is, of course, that it may take a while when you have a > lot of users. It's already noticable with the 7300+ users in the > geeklog.net database. And I don't really want to know how long it would > take on MFI (how many users, Marc? 250,000?). > > Maybe it would be easier (on the database ...) to replace the dropdown > with a text entry field or something. > > Ideas, anyone? > > bye, Dirk > > -- > http://www.haun-online.de/ > http://mypod.de/ > > _______________________________________________ > geeklog-devel mailing list > geeklog-devel at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-devel ------- End of Original Message ------- From dirk at haun-online.de Tue May 11 15:21:27 2004 From: dirk at haun-online.de (Dirk Haun) Date: Tue, 11 May 2004 21:21:27 +0200 Subject: [geeklog-devel] New features in CVS In-Reply-To: <20040511183216.M41381@pigstye.net> References: <20040511183216.M41381@pigstye.net> Message-ID: <20040511192127.16381@smtp.haun-online.de> Tom, >I would >recommend that if you do go with ip lookup that you look at phpwhois to >avoid problems. Thanks, Tom, I'll look into this. I see there's also a PEAR package for Whois lookups (Net_Whois), but it does appear to be less advanced. bye, Dirk -- http://www.haun-online.de/ http://www.tinyweb.de/ From tony at tonybibbs.com Wed May 12 14:21:22 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Wed, 12 May 2004 13:21:22 -0500 Subject: [geeklog-devel] Anonymous CVS fixed Message-ID: <40A26B22.1040708@tonybibbs.com> Long and short of it is between the two Gentoo builds (first one on the old temp server and second one being the current server) xinetd stuff changed. My first problem was xinetd wasn't even installed (let alone running) which cause connection errors. Then for over a week I had a connection related problem and after a wild goose chase it ended up being that in the cvspserver entry for xinetd I had to add "allow_from = 0.0.0.0" because, by xinetd's new default, it restricts all xinetd access to localhost. I'm sending this here to a) let you know that finally anonymous cvs should be working and b) to archive this answer for future reference. --Tony From dirk at haun-online.de Thu May 13 14:34:28 2004 From: dirk at haun-online.de (Dirk Haun) Date: Thu, 13 May 2004 20:34:28 +0200 Subject: [geeklog-devel] New features in CVS In-Reply-To: <20040511183216.M41381@pigstye.net> References: <20040511183216.M41381@pigstye.net> Message-ID: <20040513183428.21032@smtp.haun-online.de> Okay, I did some tests ... PEAR:Net_Whois is completely useless at the moment. Telling me that 62.67.200.68 is assigned to RIPE is about as informative as saying that Stuttgart is a place in Europe - not exactly wrong, but it could be a lot more precise. phpWhois does the job, although I found that some of the included .whois files are using short PHP open tags ( tags ... I've decided to leave the code as is for now, but remove the URLs of the various Whois services from config.php, as one of them already asked me to log in the next time I tried it. These things seem to change too often and would probably cause us more support problems than this entire feature is worth. Instead, I'd now recommend installing Tom's Nettools and provided a sample URL in config.php (commented out by default) for it. bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From dirk at haun-online.de Sat May 15 14:46:34 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sat, 15 May 2004 20:46:34 +0200 Subject: [geeklog-devel] Anonymous CVS fixed In-Reply-To: <40A26B22.1040708@tonybibbs.com> References: <40A26B22.1040708@tonybibbs.com> Message-ID: <20040515184634.6064@smtp.haun-online.de> Tony, >I'm sending this here to a) let you know that finally anonymous cvs >should be working and b) to archive this answer for future reference. Now if the CVS notifications would be working without me having to approve them manually ... bye, Dirk (yeah, I know I'm a pain ;-) -- http://www.haun-online.de/ http://mypod.de/ From tony at tonybibbs.com Tue May 18 17:20:42 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Tue, 18 May 2004 16:20:42 -0500 Subject: [geeklog-devel] Anonymous CVS fixed In-Reply-To: <20040515184634.6064@smtp.haun-online.de> References: <40A26B22.1040708@tonybibbs.com> <20040515184634.6064@smtp.haun-online.de> Message-ID: <40AA7E2A.9000605@tonybibbs.com> That shouldn't be so bad. Just need to figure out why it defaults to iowaoutdoors.org instead of geeklog.net for the domain address. I'm looking into it...have a new baby in our house hold so bare with me a bit. --Tony Dirk Haun wrote: >Tony, > > > >>I'm sending this here to a) let you know that finally anonymous cvs >>should be working and b) to archive this answer for future reference. >> >> > >Now if the CVS notifications would be working without me having to >approve them manually ... > >bye, Dirk (yeah, I know I'm a pain ;-) > > > > From vmf at abtech.org Thu May 20 14:56:15 2004 From: vmf at abtech.org (Vincent Furia) Date: Thu, 20 May 2004 14:56:15 -0400 Subject: [geeklog-devel] Comment Links Message-ID: <40ACFF4F.8030902@abtech.org> I've just submitted to CVS a method to link to comments directly. You can link to a comment directly by: /comments.php?mode=view&cid= There are still some issues to work out. Currently it is set up to display the comment specified by and its children (if any and when not in flat comment mode). This brings up a question: 1. How should the comment default mode be determined. Right now I have it that you can add an optional parameter to the url format= (where commentmode one of: threaded, nested, flat) and a default to threaded. Should a user's preferences be used? Should the site default be used? I'm not sure all the purposes this linking will be used for so I'm not sure what a good default (or way of determining default) would be. The comment bar really sucks for the display of comments like this. Any changes made to options using the comment bar pushes you back to article.php. So... 2. Should we overhaul the comment bar, remove it when displaying a direct link to a comment, or remove it for all uses in comment.php (i.e. linking to pid's using mode=display as well)? One last thing to think about. What template variables should we add now that this is available. One obvious variable is adding a {permalink} to the comment.thtml. Another is adding a link to the comment for Dirk's reporting of comment abuse. Any others? Note: I haven't added any yet (not even the obvious ones). In any case I'm not sure how much time I'll have to work on this in the next week. I have some big chores to take care of around the house and then I have to travel for business. Once I'm back I'll try to fix up these problems taking into account any feedback. -Vinny From dirk at haun-online.de Thu May 20 16:18:19 2004 From: dirk at haun-online.de (Dirk Haun) Date: Thu, 20 May 2004 22:18:19 +0200 Subject: [geeklog-devel] Geeklog on PHP-Magazin-CD Message-ID: <20040520201819.12579@smtp.haun-online.de> I almost forgot ... The current edition of the German PHP Magazin, , features a "market overview" of 80 CMS, including Geeklog. 30 of those CMS are on the CD that's included with the magazine. Again, Geeklog 1.3.9 is one of them. The interesting bit is that I forgot to ask them to include it on the CD :-) They sent a reminder to update the entry for the online version of that "market overview", , which I did. Listing groklaw.net as a reference site may have helped a bit here ... bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From tony at tonybibbs.com Mon May 24 11:56:11 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Mon, 24 May 2004 10:56:11 -0500 Subject: [geeklog-devel] Geeklog to be in PHP Architect Message-ID: <40B21B1B.2030008@tonybibbs.com> I have initial approval to write a 3,000 word article on Geeklog for php|Architect (http://www.phparch.com). I'm not sure how big of a publish-base they have yet but this should be a great opportunity to highlight Geeklog. My only concern at this point is I'm a bit hesitant to use the default xSilver theme on http://www.geeklog.net once the article is published. It would be nice to give Geeklog a more polished and professional look as I intend push it's features from more of a business perspective rather than that of a simple user wanting a personal site. This also begs where are we with Gl-pro? Are we still doing it? Is it dead? If not what is left and what can we do? I ask this because if we have this ready in time for the publication date then we may get some serious lookers. Also, I'd like to use this as another push for recruiting coders. I haven't been very good at it in the past so if anybody has ideas on how we might make this request from the community on gl.net and get that message fine tuned before the article runs that would be great. Oh, and yes, I will be looking to you other developers for input on the article. I have asked for the article to run in the August issue (I should hear back soon). If there are any key-points you think need hitting let me know. Here was a quick outline I came up with: 1) Introdcution to Geeklog > 2) Installation > 3) Basic Features > - Data access > - Security > - Security Model > - SQL Injection and XSS prevention > - Localization > - Creating Geeklog Skins > - Plugins > - Staticpags Plugin > - Forum Plugin > - Creating Plugins > - Content Syndication > 4) Geeklog's Area's of Improvement > 5) The Future of Geeklog Oh, and don't cringe too much on "The Future of Geeklog" part. I'm not going to make any promises on anything. Dirk, for that section it would be nice to get from you what you have planned for the 1.3.x branch here in the next 6-9 months (if we can even plan out that far). --Tony From dirk at haun-online.de Mon May 24 14:38:34 2004 From: dirk at haun-online.de (Dirk Haun) Date: Mon, 24 May 2004 20:38:34 +0200 Subject: [geeklog-devel] Geeklog to be in PHP Architect In-Reply-To: <40B21B1B.2030008@tonybibbs.com> References: <40B21B1B.2030008@tonybibbs.com> Message-ID: <20040524183834.4514@smtp.haun-online.de> Tony, >My only concern at this point is I'm a bit hesitant >to use the default xSilver theme on http://www.geeklog.net once the >article is published. I was actually thinking if we shouldn't have some sort of contest to find a new default Geeklog theme since I, too, am growing tired of XSilver. Obivously, we can't offer much more than fame as the first price, but maybe someone has some nifty idea ... And in that same general direction: I think we should reduce the number of themes that are included with Geeklog to, say, 5. The size of the Geeklog tarball has been steadily increasing over time and with 7 standard themes, we have a LOT of files in there, which even seems to have ticked off a few people on occasion. Uploading them all via ftp when you're installing Geeklog for the first time and you're not sure what's needed and what not can be tedious, I guess. >Also, I'd like to use this as another push for recruiting coders. Posting a followup to last year's "How can you help Geeklog?" may be a start. >Dirk, for that section it >would be nice to get from you what you have planned for the 1.3.x branch Well, shorter release cycles, for example ;-) I've finally upgraded my last remaining 1.3.7-based site to 1.3.9 two weekends ago and was already missing stuff that's in CVS. I think we should slowly start to wrap up 1.3.10 feature-wise, fix as many of the outstanding bugs as reasonably possible and start testing the hell out of it ... Sorry, Tony, that I used your post to go off on a few tangents here. I promise to come back to you on the other issues ... bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From tony at tonybibbs.com Mon May 24 15:32:00 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Mon, 24 May 2004 14:32:00 -0500 Subject: [geeklog-devel] Geeklog to be in PHP Architect In-Reply-To: <20040524183834.4514@smtp.haun-online.de> References: <40B21B1B.2030008@tonybibbs.com> <20040524183834.4514@smtp.haun-online.de> Message-ID: <40B24DB0.10106@tonybibbs.com> Dirk Haun wrote: >I was actually thinking if we shouldn't have some sort of contest to find >a new default Geeklog theme since I, too, am growing tired of XSilver. >Obivously, we can't offer much more than fame as the first price, but >maybe someone has some nifty idea ... > > > I agree. Maybe us developers could anty up a small amount of our own $$. I know that sounds a bit ridiculous but at this point I'd be willing to part with, say, $25 of my own hard earned money if it meant getting a good, high quality theme. If 3 or 4 of us could do that then you have a pretty good incentive. Just a thought, I'm OK with the "do it for clout" concept too. >And in that same general direction: I think we should reduce the number >of themes that are included with Geeklog to, say, 5. The size of the >Geeklog tarball has been steadily increasing over time and with 7 >standard themes, we have a LOT of files in there, which even seems to >have ticked off a few people on occasion. Uploading them all via ftp when >you're installing Geeklog for the first time and you're not sure what's >needed and what not can be tedious, I guess. > > > Lol, I say we go down to one. Seriously, I know the pain of having to update a bunch of theme files to complete one bug fix. It's a big pain and, frankly, the users should be downloading themes. We should treat Geeklog like XMMS. With SuSE, RH, etc, you get the main XMMS rpm and then XMMS-SKINS rpm separately. So as to not alienate existing default themes, we should find people willing to maintain them and, if there are no takers, then we should simply kill them. We could optionally provide a script that could download a theme into the layout directory...that would be a 10 minute deal since the gets of downloading, uncompressing and installing was already done by Jason's installer. --Tony From robg at macosxhints.com Tue May 25 08:35:02 2004 From: robg at macosxhints.com (Rob Griffiths) Date: Tue, 25 May 2004 05:35:02 -0700 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? Message-ID: Geeklog used to be one of the portals on the above site; it seems to have vanished. I used to send people there to do head-to-head with the other CMS projects, but I guess I'll stop doing that. Anyone know where it went / why it vanished? -rob. From slord at marelina.com Tue May 25 08:54:13 2004 From: slord at marelina.com (Simon Lord) Date: Tue, 25 May 2004 08:54:13 -0400 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: References: Message-ID: <9F4B3E52-AE4A-11D8-A0FE-003065C030F2@marelina.com> Didn't vanish. The site went to Pair for free hosting and faster servers (even though they are recently down a lot there too). And the CVS/development is done on donated servers in charge of Tony. On May 25, 2004, at 8:35 AM, Rob Griffiths wrote: > Geeklog used to be one of the portals on the above site; it seems to > have vanished. I used to send people there to do head-to-head with the > other CMS projects, but I guess I'll stop doing that. Anyone know > where it went / why it vanished? > > -rob. > > _______________________________________________ > geeklog-devel mailing list > geeklog-devel at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-devel > > Sincerely, Simon From robg at macosxhints.com Tue May 25 09:02:58 2004 From: robg at macosxhints.com (Rob Griffiths) Date: Tue, 25 May 2004 06:02:58 -0700 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: <9F4B3E52-AE4A-11D8-A0FE-003065C030F2@marelina.com> References: <9F4B3E52-AE4A-11D8-A0FE-003065C030F2@marelina.com> Message-ID: On May 25, 2004, at 5:54 AM, Simon Lord wrote: > Didn't vanish. The site went to Pair for free hosting and faster > servers (even though they are recently down a lot there too). And the > CVS/development is done on donated servers in charge of Tony. Sorry, didn't mean to imply that Geeklog had vanished from the net. Geeklog vanished as one of the installed CMS products on opensourcecms.com ... they let you "test drive" a bunch of them head-to-head, and Geeklog used to be amongst the list. Ironically, his site was just hacked and defaced because he was running an old PHP Nuke (sigh). -rob. From slord at marelina.com Tue May 25 09:18:09 2004 From: slord at marelina.com (Simon Lord) Date: Tue, 25 May 2004 09:18:09 -0400 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: References: <9F4B3E52-AE4A-11D8-A0FE-003065C030F2@marelina.com> Message-ID: Oohhhh. Brain fart. I thought you meant on sf.net (I saw "opensource" and associated the two instantly). No idea why it's gone, that was a great site to test drive Geeklog. On May 25, 2004, at 9:02 AM, Rob Griffiths wrote: > On May 25, 2004, at 5:54 AM, Simon Lord wrote: > >> Didn't vanish. The site went to Pair for free hosting and faster >> servers (even though they are recently down a lot there too). And the >> CVS/development is done on donated servers in charge of Tony. > > Sorry, didn't mean to imply that Geeklog had vanished from the net. > Geeklog vanished as one of the installed CMS products on > opensourcecms.com ... they let you "test drive" a bunch of them > head-to-head, and Geeklog used to be amongst the list. > > Ironically, his site was just hacked and defaced because he was > running an old PHP Nuke (sigh). > > -rob. > > _______________________________________________ > geeklog-devel mailing list > geeklog-devel at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-devel > > Sincerely, Simon From dwight at trumbower.com Tue May 25 10:08:48 2004 From: dwight at trumbower.com (Dwight Trumbower) Date: Tue, 25 May 2004 09:08:48 -0500 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: References: <9F4B3E52-AE4A-11D8-A0FE-003065C030F2@marelina.com> Message-ID: <40B35370.3020409@trumbower.com> Rob Griffiths wrote: > On May 25, 2004, at 5:54 AM, Simon Lord wrote: > >> Didn't vanish. The site went to Pair for free hosting and faster >> servers (even though they are recently down a lot there too). And the >> CVS/development is done on donated servers in charge of Tony. > > > Sorry, didn't mean to imply that Geeklog had vanished from the net. > Geeklog vanished as one of the installed CMS products on > opensourcecms.com ... they let you "test drive" a bunch of them > head-to-head, and Geeklog used to be amongst the list. > > Ironically, his site was just hacked and defaced because he was running > an old PHP Nuke (sigh). > > -rob. It was there last week. I wonder what happen. Dwight From dirk at haun-online.de Tue May 25 13:12:17 2004 From: dirk at haun-online.de (Dirk Haun) Date: Tue, 25 May 2004 19:12:17 +0200 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: References: Message-ID: <20040525181217.15128@smtp.haun-online.de> Rob, >Anyone know where it went / why it vanished? Well, I guess someone should ask them (which is what I did now) ... bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From geeklog at langfamily.ca Tue May 25 13:53:41 2004 From: geeklog at langfamily.ca (Blaine Lang) Date: Tue, 25 May 2004 13:53:41 -0400 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? References: <20040525181217.15128@smtp.haun-online.de> Message-ID: <001701c44281$36f496f0$650a10ac@XPBL2> Well from the only post in the Forum, it tells the whole story. They were hacked and all data was deleted. Their backups were never tested in 2 years and there was a problem with the cron job. So all data was completely lost and they have had to setup all over again. Not a very good story or message about Opensource CMS's - or more specifically PHPNuke. Blaine ----- Original Message ----- From: "Dirk Haun" To: Sent: Tuesday, May 25, 2004 1:12 PM Subject: Re: [geeklog-devel] Geeklog gone from opensourcecms.com? Rob, >Anyone know where it went / why it vanished? Well, I guess someone should ask them (which is what I did now) ... bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ _______________________________________________ geeklog-devel mailing list geeklog-devel at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-devel From tony at tonybibbs.com Tue May 25 13:59:49 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Tue, 25 May 2004 12:59:49 -0500 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: <001701c44281$36f496f0$650a10ac@XPBL2> References: <20040525181217.15128@smtp.haun-online.de> <001701c44281$36f496f0$650a10ac@XPBL2> Message-ID: <40B38995.6040802@tonybibbs.com> FWIW, Nuke was also mentioned in php|Architect in the May issue having had vulnerabilties. Ironic thing was that I remember reading an article (LJ or php|A) by one of the *nuke authors dinging us about our security track record. "Hey pot, kettle called" --Tony Blaine Lang wrote: >Well from the only post in the Forum, it tells the whole story. >They were hacked and all data was deleted. >Their backups were never tested in 2 years and there was a problem with the >cron job. So all data was completely lost and they have had to setup all >over again. > >Not a very good story or message about Opensource CMS's - or more >specifically PHPNuke. > >Blaine >----- Original Message ----- >From: "Dirk Haun" >To: >Sent: Tuesday, May 25, 2004 1:12 PM >Subject: Re: [geeklog-devel] Geeklog gone from opensourcecms.com? > > >Rob, > > > >>Anyone know where it went / why it vanished? >> >> > >Well, I guess someone should ask them (which is what I did now) ... > >bye, Dirk > > > > From dirk at haun-online.de Tue May 25 14:13:46 2004 From: dirk at haun-online.de (Dirk Haun) Date: Tue, 25 May 2004 20:13:46 +0200 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: <001701c44281$36f496f0$650a10ac@XPBL2> References: <001701c44281$36f496f0$650a10ac@XPBL2> Message-ID: <20040525191346.6304@smtp.haun-online.de> >Not a very good story or message about Opensource CMS's - or more >specifically PHPNuke. Fits in with the reply I got: >I noticed it was gone too... I can only assume they deleted it as I >didn't. It's on my list to be replaced. bye, Dirk -- http://www.haun-online.de/ http://www.tinyweb.de/ From dirk at haun-online.de Sat May 29 16:39:33 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sat, 29 May 2004 22:39:33 +0200 Subject: [geeklog-devel] [image] in text-mode stories? Message-ID: <20040529213933.4716@smtp.haun-online.de> Hmm, was [image] ever supposed to work in "plain text mode"? Tony? Someone on IRC just pointed out to me that the COM_makeClickableLinks function that I added in CVS messes up plain text posts that use [image]?tags - it turns the URL of the image into an tag, thus nesting the link within the . So what's the bug here? That [image] works in text mode or that COM_makeClickableLinks doesn't recognize the resulting tag? How are all of you using the [image] tags? In HTML posts only or also in text posts? bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From dirk at haun-online.de Sun May 30 11:41:20 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sun, 30 May 2004 17:41:20 +0200 Subject: [geeklog-devel] Geeklog gone from opensourcecms.com? In-Reply-To: References: Message-ID: <20040530164121.15844@smtp.haun-online.de> >Geeklog used to be one of the portals on the above site; it seems to >have vanished. Seems to be back now: http://www.opensourcecms.com/modules.php?name=Content&pa=showpage&pid=106 bye, Dirk -- http://www.haun-online.de/ http://www.tinyweb.de/