Hey ho, I am using HTML::Template::Expr to generate KML files :) I want to create folders on Google Earth using a "group by" SQL call to put things in different Google earth folders based on the distinct group by values. The group by field is user selectable, hence the need for a "variable" param field in the template. I need a template that looks something like this
<TMPL_LOOP NAME = ALL_FRUIT_LOOPS> <TMPL_LOOP NAME = USER_FRUIT_LOOPS> <TMPL_IF EXPR="(<TMPL_VAR NAME=USER_FRUIT_FIELD> eq <TMPL_VAR NA +ME=ALL_FRUIT_FIELD>)" > blah blah blah </TMPL_IF> </TMPL_LOOP> </TMPL_LOOP>
So with 100 kinds of fruit and 3 kinds of user fruits GE would end up with 3 folders each named apple, orange and banana. I am wondering if expressions are evaluated prior to the substitution but want to make sure before I move to another module ( Text::Template ) thanks

In reply to html::template question by liamlrb

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.