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
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
---
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
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
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-
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
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'