Thread: [htmltmpl] bulletinboard
Brought to you by:
samtregar
From: Paul B. G. <pb...@ya...> - 2004-02-17 22:12:38
|
Hi, I was wondering if anyone knew of a open-source bulletin board that uses HTML::TMPL? I think it would make customizing much more simple. thanks, --paul __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html |
From: Karen J. C. <si...@ph...> - 2004-02-17 22:24:32
|
On Tue, 17 Feb 2004, Paul B. Giese wrote: PBG>I was wondering if anyone knew of a open-source PBG>bulletin board that uses HTML::TMPL? And a Wiki, and a Mhonarc replacement, and a blogger, too. Oh, and a pony. (I'm writing all of the above (except the pony), since I haven't found one yet.) -- Karen J. Cravens si...@ph... |
From: P K. <pk...@ei...> - 2004-02-17 22:39:14
|
Karen J. Cravens wrote: >On Tue, 17 Feb 2004, Paul B. Giese wrote: > >PBG>I was wondering if anyone knew of a open-source >PBG>bulletin board that uses HTML::TMPL? > >And a Wiki, and a Mhonarc replacement, and a blogger, too. Oh, and a >pony. > >(I'm writing all of the above (except the pony), since I haven't found one >yet.) > > > no problem about the last one... the good folks at Fotango are... It was fun being at OSCON when this beast was born... http://www.poniecode.org/ ;-) |
From: Karen J. C. <si...@ph...> - 2004-02-17 22:55:25
|
On Tue, 17 Feb 2004, P Kishor wrote: PK> It was fun being at OSCON when this beast was born... Aw, rub it in, whydoncha? -- Karen J. Cravens si...@ph... |
From: Joel <htm...@jo...> - 2004-02-17 22:39:28
|
Hi all, We use ikonBoard, http://www.ikonboard.com, a free message boards system th= at runs off of DBM or MySQL.=20 It does NOT use HTML::Template, but it IS written in Perl and it's quite ni= ce. It's extremely extensible using the administrative control panel. You basic= ally have the ability to edit 99% of the HTML that is presented to the user.=20 It's also FREE, which is an added bonus for all the features it provides. T= he only thing it doesn't do which I wish it did is to act as an archive for mailing lists and the like, but I figure I can hack up a script to add stuf= f like that to the database directly. --Joel >Hi, > >I was wondering if anyone knew of a open-source >bulletin board that uses HTML::TMPL? > >I think it would make customizing much more simple. > >thanks, > >--paul > >__________________________________ >Do you Yahoo!? >Yahoo! Finance: Get your refund fast by filing online. >http://taxes.yahoo.com/filing.html > > >------------------------------------------------------- >SF.Net is sponsored by: Speed Start Your Linux Apps Now. >Build and deploy apps & Web services for Linux with >a free DVD software kit from IBM. Click Now! >http://ads.osdn.com/?ad_id=3D1356&alloc_id=3D3438&op=3Dclick >_______________________________________________ >Html-template-users mailing list >Htm...@li... >https://lists.sourceforge.net/lists/listinfo/html-template-users |
From: Karen J. C. <si...@ph...> - 2004-02-17 23:01:38
|
On Tue, 17 Feb 2004, Joel wrote: J>It's also FREE, which is an added bonus for all the features it provides. The J>only thing it doesn't do which I wish it did is to act as an archive for J>mailing lists and the like, but I figure I can hack up a script to add stuff J>like that to the database directly. The problem I had with Ikonboard was that it didn't do any file locking... get two posts simultaneously and they'd stomp all over each other. Shades of Matt's WWWBoard. Of course, that was a couple of years ago, so it may have matured since then, and probably has. -- Karen J. Cravens si...@ph... |
From: Joel <htm...@jo...> - 2004-02-17 23:18:03
|
>On Tue, 17 Feb 2004, Joel wrote: > >The problem I had with Ikonboard was that it didn't do any file >locking...get two posts simultaneously and they'd stomp all over each >other. Shades of Matt's WWWBoard. Of course, that was a couple of >years ago, so it may have matured since then, and probably has. > I think I know what you mean by stomping and given a DBM situation, I can see that happening. You'd have a problem with the bit of code that gets the next ID for an incoming post. There's a definite concurrency issue there if you don't have something intelligent. I do not know if they have resolved that.=20 Using it with MySQL would eliminate such a problem given that the database is built to accomodate such a situation. (Insert two rows at the 'same time' and you'll still get two IDs from the database) =46or the record, we've only ever used it in a database. It just makes sense. --Joel (Let's see if my text wraps properly this time.) |