RE: [htmltmpl] Usage question

2006-03-07 Thread Paulsen, Brian
I did. I'll dig it up to share again. Brian -Original Message- From: Bodo Schulze [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 07, 2006 6:57 AM To: Paulsen, Brian Cc: html-template-users@lists.sourceforge.net Subject: Re: [htmltmpl] Usage question Brian Paulsen wrote; > If

Re: [htmltmpl] Usage question

2006-03-07 Thread Bodo Schulze
Brian Paulsen wrote; > If it helps, I wrote a filter that takes a Dreamweaver template file and conv > erted it to a HTML::Template file. This allowed the Dreamweaver savvy design > er to test out modifications with the template there. Would be great if you shared this filter. Bodo ---

RE: [htmltmpl] Usage question

2006-03-07 Thread Paulsen, Brian
If it helps, I wrote a filter that takes a Dreamweaver template file and converted it to a HTML::Template file. This allowed the Dreamweaver savvy designer to test out modifications with the template there. Original Message From: "Matias Alejo Garcia" <[EMAIL PROTECTED]> Date: 3/6/06

Re: [htmltmpl] Usage question

2006-03-06 Thread Michael Peters
Mark A. Fuller wrote: > If you want to give the designer the actual templates (but not require her to > install the entire application), you could write a little script that would > load each template, set variables and ->output() it to a file. Something like > a script to run through some te

Re: [htmltmpl] Usage question

2006-03-06 Thread Matias Alejo Garcia
Thanks you for your answers!On 3/6/06, Sam Tregar <[EMAIL PROTECTED]> wrote: On Sun, 5 Mar 2006, Matias Alejo Garcia wrote:> Is there any way to, once the $template is filled, to dump the variables to> a file?Sure.  The full parameter set is available via param():my %data = "" { ($_, $template-

Re: [htmltmpl] Usage question

2006-03-05 Thread Sam Tregar
On Sun, 5 Mar 2006, Matias Alejo Garcia wrote: Is there any way to, once the $template is filled, to dump the variables to a file? Sure. The full parameter set is available via param(): my %data = map { ($_, $template->param($_) } $template->param(); You can dump that hash to a file with

Re: [htmltmpl] Usage question

2006-03-05 Thread Mark A. Fuller
From: Matias Alejo Garcia <[EMAIL PROTECTED]> > >Is there any way to, once the $template is filled, to dump the variables to >a file? I may not understand this correctly. But, you can print your $template->output() to a file (instead of STDOUT). Give essentially static HTML to the designer. She'