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
---
gt;
Date: 3/6/06 10:17 am
To: "html-template-users@lists.sourceforge.net"
Subj: [htmltmpl] Usage question
On 3/6/06, Michael Peters <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote:
Mark A. Fuller wrote:
> If you want to give the designer t
On 3/6/06, Michael Peters <[EMAIL PROTECTED]
> wrote:
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. Some
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'
hello all! I am new in the list, I have been using HTML::Template for 3 month! great work!!I would like to ask for your suggestion for the following problem:We have a complex web application using HTML::Template. This application uses MySQL and a lot of modules, and is not easy to install.
We need