Re: [htmltmpl] using HTML::Template with CGI:Ajax

2007-04-12 Thread Greg Jetter
pjx); > > Sorry I don't have any concise examples since I use CGI::Ajax with > CGI::Application and there's a lot of irrelevant stuff, but this should > work for you > > Dan > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[

Re: [htmltmpl] using HTML::Template with CGI:Ajax

2007-04-12 Thread Dan Horne
tuff, but this should work for you Dan > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Greg Jetter > Sent: Friday, 13 April 2007 12:30 p.m. > To: [EMAIL PROTECTED] > Subject: [htmltmpl] using HTML::Template with CGI:Ajax >

[htmltmpl] using HTML::Template with CGI:Ajax

2007-04-12 Thread Greg Jetter
HI folks: I'm trying to figure out how to use  the two  modules together , I've been using HTML::Template for a wile now  and and commfy using it , I want to start using  the  CGI::Ajax module  and am looking for  examples or advice on how to call my template file  and have it work wit

Re: [htmltmpl] Using HTML::Template to prefill in values

2005-01-10 Thread Clifton Royston
On Mon, Jan 10, 2005 at 06:33:54PM +1100, Michael Kraus wrote: > I'm curious about using HTML::Template to pre-fill in form field values. ... > > What I'm currently using is this method > > > value=""> > > This works great for filling in text boxes. However, how can this be > done for select bo

Re: [htmltmpl] Using HTML::Template to prefill in values

2005-01-10 Thread Carl Franks
Micheal, You've got the right idea there, that's generally how it's done and yes, it's a bit of a pain. One other option is to fill the template without the form selections, then use HTML::FillInForm to set the form parameters. Another option if you're just dealing with date / time select menus

Re: [htmltmpl] Using HTML::Template to prefill in values

2005-01-10 Thread Daniel Axtell
On Monday 10 January 2005 2:33 am, Michael Kraus wrote: > G'day all... > > I'm curious about using HTML::Template to pre-fill in form field values. > > What I'm currently using is this method > > > value=""> > > This works great for filling in text boxes. However, how can this be > done for select

[htmltmpl] Using HTML::Template to prefill in values

2005-01-09 Thread Michael Kraus
G'day all... I'm curious about using HTML::Template to pre-fill in form field values. What I'm currently using is this method value=""> This works great for filling in text boxes. However, how can this be done for select boxes (drop-down lists)? Currently I've got a select box that looks like

Re: [htmltmpl] Using HTML::Template

2004-03-04 Thread Mathew Robertson
yep H::T is very good at this - and you could probably something simple like this, in less than 50 lines of code.   Mathew   - Original Message - From: J C To: [EMAIL PROTECTED] Sent: Friday, March 05, 2004 7:03 AM Subject: [htmltmpl] Using HTML::Template

[htmltmpl] Using HTML::Template

2004-03-04 Thread J C
I need to be able to do the following with a Perl script and send out emails via HTML or text (if they don't want HTML emails): I need to read in a file that would contain information like (customer id, first name, last name, address, etc.) I really don't want the HTML tags in the Perl script. I'l

RE: [htmltmpl] using HTML::Template to generate static web pages

2003-10-15 Thread Offer Kaye
Hi all, Just wanted to say thanks to everybody who answered. After using H::T for less than a week I can already say - it is great, I love it! :-) Thanks again for all your answers, Offer Kaye --- This SF.net email is sponsored by: SF.net Giv

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-13 Thread Gerke, Dr. Michael
Roger Burton West <[EMAIL PROTECTED]> wrote: >I've used it for: > >PostScript (mostly for parameter insertion) >.ini files >plain text (that gets fiddly with line breaks) >source code formatting >...oh, and HTML. Sometime I use H:T for static or dynamic HTML too. But my first usage was and is t

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-13 Thread Pete Prodoehl
Offer Kaye wrote: The documentation for HTML::Template talks about using it as a CGI script, to generate the HTML code "on-the-fly". However, I would like to use it as a regular Perl script, to generate static HTML pages. To me, a templating system at it's base does one thing, provides a way to c

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-12 Thread Karen J. Cravens
On Sun, 12 Oct 2003, Douglas Kirkland wrote: DK>I thought H::T was designed to make dynamic and static pages. The only DK>difference I found is where the output is sent. Not just pages, either... I use it to generate autoresponder emails and other fun things. -- Karen J. Cravens [EMAIL PROTEC

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-12 Thread Douglas Kirkland
On Saturday 11 October 2003 13:30, Offer Kaye wrote: > I'm an HTML::Template newbie, and I was wondering whether the veterans > on this list could help me. > > The documentation for HTML::Template talks about using it as a CGI > script, to generate the HTML code "on-the-fly". > However, I would li

RE: [htmltmpl] using HTML::Template to generate static web pages

2003-10-12 Thread Charles K. Clarkson
Roger Burton West <[EMAIL PROTECTED]> wrote: : I've used it for: : : PostScript (mostly for parameter insertion) : .ini files : plain text (that gets fiddly with line breaks) : source code formatting : ...oh, and HTML. I use it to create Promissory Notes when selling used mobile homes. Cha

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-12 Thread Roger Burton West
On Sat, Oct 11, 2003 at 04:58:28PM -0400, David Kaufman wrote: >having said that, i *don't* usually use it to generate static *HTML* >files, but mostly for other things such as conf files and other >miscellaneous system administration work, and this is definitely *not* it's >stated purpose. I've u

RE: [htmltmpl] using HTML::Template to generate static web pages

2003-10-11 Thread Offer Kaye
> maintaining) web sites as sets of static html files so > ...especially if > you're comfortable with the process of building and compiling > software with > make, makefiles and the like, webmake may be just what you're > looking for. > > if you do decide to use webmake, please post back here w

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-11 Thread Karen J. Cravens
On Sat, 11 Oct 2003, Offer Kaye wrote: OK>However, I would like to use it as a regular Perl script, to generate OK>static HTML pages. I know this *can* be done, since I tried it on the OK>example provided in the documentation. But I'm wondering whether OK>HTML::Template is really suitable for this

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-11 Thread David Kaufman
Offer Kaye <[EMAIL PROTECTED]> wrote: > [...] I would like to use it as a regular Perl script, to generate > static HTML pages. I know this *can* be done, since I tried it on the > example provided in the documentation. But I'm wondering whether > HTML::Template is really suitable for this kind of

Re: [htmltmpl] using HTML::Template to generate static web pages

2003-10-11 Thread m . spring
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, HTML::Template is *definitely* suitable for this task, too. CGI::Application::Generator uses it to create stubs in a perl module file, and I have heard rumors that people use HTML::Template for Postscript or Pdf generation - so generating static

[htmltmpl] using HTML::Template to generate static web pages

2003-10-11 Thread Offer Kaye
Hi, I'm an HTML::Template newbie, and I was wondering whether the veterans on this list could help me. The documentation for HTML::Template talks about using it as a CGI script, to generate the HTML code "on-the-fly". However, I would like to use it as a regular Perl script, to generate static HTM

Re: [htmltmpl] Using HTML::Template to cache text for performance?

2002-12-19 Thread Sam Tregar
On Thu, 19 Dec 2002, Cory Trese wrote: > Has anyone used HTML::Template as a general caching system for XML or text > files? Is their a compelling reason not to? No, and I wouldn't recommend it. HTML::Template contains thousands of lines of Perl code that would go to waste if used as a "only" c

[htmltmpl] Using HTML::Template to cache text for performance?

2002-12-19 Thread Cory Trese
Hello, I have a set of XML files that I read often. These files are stored in the file system (and will remain so in all likelihood) and accessed by modules running (in most cases) under a Perl accelerator like mod_perl or PerlEx. I am considering loading them using HTML::Template to take advan

Re: [htmltmpl] using html::template for mail merge? pointers anyone?

2002-07-07 Thread Andrew Johnson
Zachary Buckholz wrote: > Does anyone have any pointers on the best way to utilize HTML::Template > and a mail merge module? > > I finished my initial project http://www.securitysaint.com using > HTML::Template and CGI::Application but I want to build onto it by > sending weekly status emails

Re: [htmltmpl] using html::template for mail merge? pointers anyone?

2002-07-06 Thread Philip S Tellis
Sometime on Jul 6, Zachary Buckholz assembled some asciibets to say: > Does anyone have any pointers on the best way to utilize > HTML::Template and a mail merge module? Well, I do this to send out birthday wishes to everyone in my department, with Cc's to everyone else: bday.tmpl: From: To: ,

[htmltmpl] using html::template for mail merge? pointers anyone?

2002-07-06 Thread Zachary Buckholz
Does anyone have any pointers on the best way to utilize HTML::Template and a mail merge module?   I finished my initial project http://www.securitysaint.com using HTML::Template and CGI::Application but I want to build onto it by sending weekly status emails to the users giving them stats