Thread: [htmltmpl] ModPerl and HTML::Template?
Brought to you by:
samtregar
From: joseph c. <jc...@re...> - 2005-05-04 20:23:44
|
Has anyone used HTML::Template with modperl or Apache::ASP? |
From: Timm M. <tm...@ag...> - 2005-05-04 20:27:57
|
At 03:25 PM 5/4/2005, joseph canton wrote: >Has anyone used HTML::Template with modperl or Apache::ASP? Yes. In fact, many of the caching options are only good under an environment like mod_perl. Timm Murray IT Web Asst. ASA-CSSA-SSSA 677 S Segoe Rd. Madison, WI 53711-1086 Phone: 608-268-4944 Fax: 608-273-2021 www.agronomy.org www.crops.org www.soils.org |
From: Philip T. <phi...@gm...> - 2005-05-04 20:27:26
|
joseph canton wrote: > Has anyone used HTML::Template with modperl or Apache::ASP? Bricolage |
From: Sam T. <sa...@tr...> - 2005-05-04 20:52:22
|
On Wed, 4 May 2005, joseph canton wrote: > Has anyone used HTML::Template with modperl or Apache::ASP? Yes! Krang (http://krang.sf.net) is a large-scale Apache/mod_perl app which uses HTML::Template. -sam |
From: David H. <da...@ho...> - 2005-05-04 21:41:33
|
On 4 May 2005, at 21:25, joseph canton wrote: > Has anyone used HTML::Template with modperl or Apache::ASP? > > Apache::Template - loads the sucker right in and you can use it PHP-style. And yes, I'm very, very sorry. |
From: Mike C. <htm...@bl...> - 2005-05-05 18:30:36
|
joseph canton wrote: > Has anyone used HTML::Template with modperl or Apache::ASP? I was one of the main developers of http://www.fotoserve.com/ which uses a combination of mod_perl 1 and HTML::Template. The combination works like a dream. Mike |
From: MArk W. <ma...@or...> - 2005-05-06 08:17:06
|
If you visit the UK DTI Government website (www.companieshouse.gov.uk) and use any of thier data services, they are all built with mod_perl and HTML::Template. We even use HTML::Template for dynamic generation of emails to customers. It works very well and we make use of the caching facilities. MArk Williams Senior developer Orchid Telematics > joseph canton wrote: > > > Has anyone used HTML::Template with modperl or Apache::ASP? > > I was one of the main developers of http://www.fotoserve.com/ which uses > a combination of mod_perl 1 and HTML::Template. The combination works > like a dream. > > Mike > |
From: Justin S. <ju...@sk...> - 2005-05-06 08:50:49
|
> We even use HTML::Template for dynamic generation of emails to > customers. > It works very well and we make use of the caching facilities. Slightly off topic, but do you do anything special for PlainText email messages? I'm assuming that HTML::Template isn't the largest snob when it comes to afflictions of weird whitespace issues, since HTML doesn't either. I've used HTML::Template to create some PlainText emails, but I always had to fumble with multiple if/unless tags on the same line to do what I want and format acceptably. I also say this because I develop a program that centers around sending email, and it used HTML::Template for almost all of its HTML screens, and I'm not really looking forward to taking advantage of another system for regular text (I heart H::T) Cheers, Justin Simoni -- // is an artist, living and working in Denver, Colorado // URL: http://justinsimoni.com // PHO: 720.436.7701 On May 6, 2005, at 2:16 AM, MArk Williams wrote: > If you visit the UK DTI Government website (www.companieshouse.gov.uk) > and use any of thier data services, they are all built with mod_perl > and HTML::Template. We even use HTML::Template for dynamic generation > of emails to customers. > It works very well and we make use of the caching facilities. > MArk Williams > Senior developer > Orchid Telematics > > >> joseph canton wrote: >> > Has anyone used HTML::Template with modperl or Apache::ASP? >> I was one of the main developers of http://www.fotoserve.com/ which >> uses a combination of mod_perl 1 and HTML::Template. The combination >> works like a dream. >> Mike > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: NEC IT Guy Games. > Get your fingers limbered up and give it your best shot. 4 great > events, 4 > opportunities to win big! Highest score wins.NEC IT Guy Games. Play to > win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20 > _______________________________________________ > Html-template-users mailing list > Htm...@li... > https://lists.sourceforge.net/lists/listinfo/html-template-users > |
From: Roger B. W. <ro...@fi...> - 2005-05-06 08:56:27
|
On Fri, May 06, 2005 at 02:50:43AM -0600, Justin Simoni wrote: >I've used HTML::Template to create some PlainText emails, but I always >had to fumble with multiple if/unless tags on the same line to do what >I want and format acceptably. Yup. H::T doesn't do anything to the whitespace you give it, so all the newlines one normally uses to break up code will be propagated into the output file. Even with that, it's still better than many of the other options... :-) Roger |