Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: HTML::Template and hashes of hashes

by jeffa (Bishop)
on Mar 15, 2004 at 22:19 UTC ( [id://336862]=note: print w/replies, xml ) Need Help??


in reply to HTML::Template and hashes of hashes

Treat them as Lists of Hashes, even if it's only one hash in the list:
my $VAR1 = { 'apptimeupdated' => '20040315145142', 'apptype' => [{ 'apt_defstatus' => [{ 'name' => 'Pending', }], 'value' => '50', }], }; my $tmpl = HTML::Template->new(filehandle => \*DATA); $tmpl->param($VAR1); print $tmpl->output; __DATA__ <tmpl_var apptimeupdated> <tmpl_loop apptype> <tmpl_var value> <tmpl_loop apt_defstatus> <tmpl_var name> </tmpl_loop> </tmpl_loop>
I hate to say it ... but i would use TT here instead, since it works better with your existing data structure:
my $VAR1 = { 'apptimeupdated' => '20040315145142', 'apptype' => { 'apt_defstatus' => { 'name' => 'Pending', }, 'value' => '50', }, }; my $tt = Template->new; $tt->process(\*DATA, $VAR1) || die $tt->error(); __DATA__ [% apptimeupdated %] [% apptype.value %] [% apptype.apt_defstatus.name %]
OK ... so i don't hate to say it. TT rocks. ;)

jeffa

L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)

Replies are listed 'Best First'.
Re: Re: HTML::Template and hashes of hashes
by jdtoronto (Prior) on Mar 16, 2004 at 01:29 UTC
    Thanks jeffa you are right about TT. But this app is 5-6000 lines in and is all based on H::T. I have the TT Book and will be learning it before I start on another project.

    jdtoronto

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://336862]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-19 21:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found