home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _a8d91aa22a886917e92f9946d938957f < prev    next >
Text File  |  2000-03-23  |  40KB  |  861 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>HTML::Template - Perl module to use HTML Templates from CGI scripts</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> HTML::Template - Perl module to use HTML Templates from CGI scripts</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#motivation">MOTIVATION</A></LI>
  26.     <LI><A HREF="#the tags">The Tags</A></LI>
  27.     <UL>
  28.  
  29.         <LI><A HREF="#<tmpl_var escape=1 name=parameter_name>"><TMPL_VAR ?ESCAPE=1? NAME=``PARAMETER_NAME''></A></LI>
  30.         <LI><A HREF="#<tmpl_loop name=loop_name> </tmpl_loop>"><TMPL_LOOP NAME=``LOOP_NAME''> </TMPL_LOOP></A></LI>
  31.         <LI><A HREF="#<tmpl_include name=filename.tmpl>"><TMPL_INCLUDE NAME=``filename.tmpl''></A></LI>
  32.         <LI><A HREF="#<tmpl_if name=control_parameter_name> </tmpl_if>"><TMPL_IF NAME=``CONTROL_PARAMETER_NAME''> </TMPL_IF></A></LI>
  33.         <LI><A HREF="#<tmpl_else>"><TMPL_ELSE></A></LI>
  34.         <LI><A HREF="#<tmpl_unless name=control_parameter_name> </tmpl_unless>"><TMPL_UNLESS NAME=``CONTROL_PARAMETER_NAME''> </TMPL_UNLESS></A></LI>
  35.     </UL>
  36.  
  37.     <LI><A HREF="#methods">Methods</A></LI>
  38.     <UL>
  39.  
  40.         <LI><A HREF="#new()"><CODE>new()</CODE></A></LI>
  41.         <LI><A HREF="#param">param</A></LI>
  42.         <LI><A HREF="#clear_params()"><CODE>clear_params()</CODE></A></LI>
  43.         <LI><A HREF="#output()"><CODE>output()</CODE></A></LI>
  44.     </UL>
  45.  
  46.     <LI><A HREF="#frequently asked questions">FREQUENTLY ASKED QUESTIONS</A></LI>
  47.     <LI><A HREF="#bugs">BUGS</A></LI>
  48.     <LI><A HREF="#credits">CREDITS</A></LI>
  49.     <LI><A HREF="#public cvs server">PUBLIC CVS SERVER</A></LI>
  50.     <LI><A HREF="#author">AUTHOR</A></LI>
  51.     <LI><A HREF="#license">LICENSE</A></LI>
  52. </UL>
  53. <!-- INDEX END -->
  54.  
  55. <HR>
  56. <P>
  57. <H1><A NAME="name">NAME</A></H1>
  58. <P>HTML::Template - Perl module to use HTML Templates from CGI scripts</P>
  59. <P>
  60. <HR>
  61. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  62. <UL>
  63. <LI>Linux</LI>
  64. <LI>Solaris</LI>
  65. <LI>Windows</LI>
  66. </UL>
  67. <HR>
  68. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  69. <P>First you make a template - this is just a normal HTML file with a few
  70. extra tags, the simplest being <TMPL_VAR></P>
  71. <P>For example, test.tmpl:</P>
  72. <PRE>
  73.   <HTML>
  74.   <HEAD><TITLE>Test Template</TITLE>
  75.   <BODY>
  76.   My Home Directory is <TMPL_VAR NAME=HOME>
  77.   <P>
  78.   My Path is set to <TMPL_VAR NAME=PATH>
  79.   </BODY>
  80.   </HTML></PRE>
  81. <P>Now create a small CGI program:</P>
  82. <PRE>
  83.   use HTML::Template;</PRE>
  84. <PRE>
  85.   # open the html template
  86.   my $template = HTML::Template->new(filename => 'test.tmpl');</PRE>
  87. <PRE>
  88.   # fill in some parameters
  89.   $template->param(
  90.       HOME => $ENV{HOME},
  91.       PATH => $ENV{PATH},
  92.   );</PRE>
  93. <PRE>
  94.   # send the obligatory Content-Type
  95.   print "Content-Type: text/html\n\n";</PRE>
  96. <PRE>
  97.   # print the template
  98.   print $template->output;</PRE>
  99. <P>If all is well in the universe this should show something like this in
  100. your browser when visiting the CGI:</P>
  101. <P>My Home Directory is /home/some/directory
  102. My Path is set to /bin;/usr/bin</P>
  103. <P>
  104. <HR>
  105. <H1><A NAME="description">DESCRIPTION</A></H1>
  106. <P>This module attempts to make using HTML templates simple and natural.  It
  107. extends standard HTML with a few new HTML-esque tags - <TMPL_VAR>,
  108. <TMPL_LOOP>, <TMPL_INCLUDE>, <TMPL_IF> and <TMPL_ELSE>.  The file
  109. written with HTML and these new tags is called a template.  It is
  110. usually saved separate from your script - possibly even created by
  111. someone else!  Using this module you fill in the values for the
  112. variables, loops and branches declared in the template.  This allows
  113. you to separate design - the HTML - from the data, which you generate
  114. in the Perl script.</P>
  115. <P>This module is licensed under the GPL.  See the LICENSE section
  116. below for more details.</P>
  117. <P>
  118. <HR>
  119. <H1><A NAME="motivation">MOTIVATION</A></H1>
  120. <P>It is true that there are a number of packages out there to do HTML
  121. templates.  On the one hand you have things like HTML::Embperl which
  122. allows you freely mix Perl with HTML.  On the other hand lie
  123. home-grown variable substitution solutions.  Hopefully the module can
  124. find a place between the two.</P>
  125. <P>One advantage of this module over a full HTML::Embperl-esque solution
  126. is that it enforces an important divide - design and programming.  By
  127. limiting the programmer to just using simple variables and loops in
  128. the HTML, the template remains accessible to designers and other
  129. non-perl people.  The use of HTML-esque syntax goes further to make
  130. the format understandable to others.  In the future this similarity
  131. could be used to extend existing HTML editors/analyzers to support
  132. HTML::Template.</P>
  133. <P>An advantage of this module over home-grown tag-replacement schemes is
  134. the support for loops.  In my work I am often called on to produce
  135. tables of data in html.  Producing them using simplistic HTML
  136. templates results in CGIs containing lots of HTML since the HTML
  137. itself cannot represent loops.  The introduction of loop statements in
  138. the HTML simplifies this situation considerably.  The designer can
  139. layout a single row and the programmer can fill it in as many times as
  140. necessary - all they must agree on is the parameter names.</P>
  141. <P>For all that, I think the best thing about this module is that it does
  142. just one thing and it does it quickly and carefully.  It doesn't try
  143. to replace Perl and HTML, it just augments them to interact a little
  144. better.  And it's pretty fast.</P>
  145. <P>
  146. <HR>
  147. <H1><A NAME="the tags">The Tags</A></H1>
  148. <P>Note: even though these tags look like HTML they are a little
  149. different in a couple of ways.  First, they must appear entirely on
  150. one line.  Second, they're allowed to ``break the rules''.  Something
  151. like:</P>
  152. <PRE>
  153.    <IMG SRC="<TMPL_VAR NAME=IMAGE_SRC>"></PRE>
  154. <P>is not really valid HTML, but it is a perfectly valid use and will
  155. work as planned.</P>
  156. <P>The ``NAME='' in the tag is optional, although for extensibility's sake I
  157. recommend using it.  Example - ``<TMPL_LOOP LOOP_NAME>'' is acceptable.</P>
  158. <P>If you're a fanatic about valid HTML and would like your templates
  159. to conform to valid HTML syntax, you may optionally type template tags
  160. in the form of HTML comments. This may be of use to HTML authors who
  161. would like to validate their templates' HTML syntax prior to
  162. HTML::Template processing, or who use DTD-savvy editing tools.</P>
  163. <PRE>
  164.   <!-- TMPL_VAR NAME=PARAM1 --></PRE>
  165. <P>In order to realize a dramatic savings in bandwidth, the standard
  166. (non-comment) tags will be used throughout the rest of this
  167. documentation.</P>
  168. <P>
  169. <H2><A NAME="<tmpl_var escape=1 name=parameter_name>"><TMPL_VAR ?ESCAPE=1? NAME=``PARAMETER_NAME''></A></H2>
  170. <P>The <TMPL_VAR> tag is very simple.  For each <TMPL_VAR> tag in the
  171. template you call $template->param(PARAMETER_NAME => ``VALUE'').  When
  172. the template is output the <TMPL_VAR> is replaced with the VALUE text
  173. you specified.  If you don't set a parameter it just gets skipped in
  174. the output.</P>
  175. <P>Optionally you can use the ``ESCAPE=HTML'' option in the tag to indicate
  176. that you want the value to be HTML-escaped before being returned from
  177. output (the old ESCAPE=1 syntax is still supported).  This means that
  178. the ``, <, >, and & characters get translated into &quot;, &lt;, &gt;
  179. and &amp; respectively.  This is useful when you want to use a
  180. TMPL_VAR in a context where those characters would cause trouble.
  181. Example:</P>
  182. <PRE>
  183.    <INPUT NAME=param TYPE=TEXT VALUE="<TMPL_VAR NAME="param">"></PRE>
  184. <P>If you called <CODE>param()</CODE> with a value like sam``my you'll get in trouble
  185. with HTML's idea of a double-quote.  On the other hand, if you use
  186. ESCAPE=HTML, like this:</P>
  187. <PRE>
  188.    <INPUT NAME=param TYPE=TEXT VALUE="<TMPL_VAR ESCAPE=HTML NAME="param">"></PRE>
  189. <P>You'll get what you wanted no matter what value happens to be passed in for
  190. param.  You can also write ESCAPE=``HTML'', ESCAPE='HTML' and ESCAPE='1'.
  191. Substitute a 0 for the HTML and you turn off escaping, which is the default
  192. anyway.</P>
  193. <P>There is also the ``ESCAPE=URL'' option which may be used for VARs that
  194. populate a URL.  It will do URL escaping, like replacing ' ' with '+'
  195. and '/' with '%2F'.</P>
  196. <P>
  197. <H2><A NAME="<tmpl_loop name=loop_name> </tmpl_loop>"><TMPL_LOOP NAME=``LOOP_NAME''> </TMPL_LOOP></A></H2>
  198. <P>The <TMPL_LOOP> tag is a bit more complicated.  The <TMPL_LOOP> tag
  199. allows you to delimit a section of text and give it a name.  Inside
  200. the <TMPL_LOOP> you place <TMPL_VAR>s.  Now you pass to <CODE>param()</CODE> a list
  201. (an array ref) of parameter assignments (hash refs).  The loop
  202. iterates over this list and produces output from the text block for
  203. each pass.  Unset parameters are skipped.  Here's an example:</P>
  204. <PRE>
  205.    In the template:</PRE>
  206. <PRE>
  207.    <TMPL_LOOP NAME=EMPLOYEE_INFO>
  208.          Name: <TMPL_VAR NAME=NAME> <P>
  209.          Job: <TMPL_VAR NAME=JOB> <P>
  210.         <P>
  211.    </TMPL_LOOP></PRE>
  212. <PRE>
  213.    In the script:</PRE>
  214. <PRE>
  215.    $template->param(EMPLOYEE_INFO => [ 
  216.                                        { name => 'Sam', job => 'programmer' },
  217.                                        { name => 'Steve', job => 'soda jerk' },
  218.                                      ]
  219.                    );
  220.    print $template->output();</PRE>
  221. <P></P>
  222. <PRE>
  223.  
  224.    The output:</PRE>
  225. <PRE>
  226.    Name: Sam <P>
  227.    Job: programmer <P>
  228.    <P>
  229.    Name: Steve <P>
  230.    Job: soda jerk <P>
  231.    <P></PRE>
  232. <P>As you can see above the <TMPL_LOOP> takes a list of variable
  233. assignments and then iterates over the loop body producing output.</P>
  234. <P>Often you'll want to generate a <TMPL_LOOP>'s contents
  235. programmatically.  Here's an example of how this can be done (many
  236. other ways are possible!):</P>
  237. <PRE>
  238.    # a couple of arrays of data to put in a loop:
  239.    my @words = qw(I Am Cool);
  240.    my @numbers = qw(1 2 3);</PRE>
  241. <PRE>
  242.    my @loop_data = ();  # initialize an array to hold your loop</PRE>
  243. <PRE>
  244.    while (@words and @numbers) {
  245.      my %row_data;  # get a fresh hash for the row data</PRE>
  246. <PRE>
  247.      # fill in this row
  248.      $row_data{WORD} = shift @words;
  249.      $row_data{NUMBER} = shift @numbers;
  250. </PRE>
  251. <PRE>
  252.  
  253.      # the crucial step - push a reference to this row into the loop!
  254.      push(@loop_data, \%row_data);
  255.    }</PRE>
  256. <PRE>
  257.    # finally, assign the loop data to the loop param, again with a
  258.    # reference:
  259.    $template->param(THIS_LOOP => \@loop_data);</PRE>
  260. <P>The above example would work with a template like:</P>
  261. <PRE>
  262.    <TMPL_LOOP NAME="THIS_LOOP">
  263.       Word: <TMPL_VAR NAME="WORD"><BR>
  264.       Number: <TMPL_VAR NAME="NUMBER"><P>
  265.    </TMPL_LOOP></PRE>
  266. <P>It would produce output like:</P>
  267. <PRE>
  268.    Word: I
  269.    Number: 1</PRE>
  270. <PRE>
  271.    Word: Am
  272.    Number: 2</PRE>
  273. <PRE>
  274.    Word: Cool
  275.    Number: 3</PRE>
  276. <P><TMPL_LOOP>s within <TMPL_LOOP>s are fine and work as you would
  277. expect.  If the syntax for the <CODE>param()</CODE> call has you stumped, here's an
  278. example of a param call with one nested loop:</P>
  279. <PRE>
  280.   $template->param('ROW',[
  281.                           { name => 'Bobby',
  282.                             nicknames => [
  283.                                           { name => 'the big bad wolf' }, 
  284.                                           { name => 'He-Man' },
  285.                                          ],
  286.                           },
  287.                          ],
  288.                   );</PRE>
  289. <P>Basically, each <TMPL_LOOP> gets an array reference.  Inside the array
  290. are any number of hash references.  These hashes contain the
  291. name=>value pairs for a single pass over the loop template.</P>
  292. <P>Inside a <TMPL_LOOP>, the only variables that are usable are the ones
  293. from the <TMPL_LOOP>.  The variables in the outer blocks are not
  294. visible within a template loop.  For the computer-science geeks among
  295. you, a <TMPL_LOOP> introduces a new scope much like a perl subroutine
  296. call.  Unlike perl, there are no global variables in the templates.</P>
  297. <P>
  298. <H2><A NAME="<tmpl_include name=filename.tmpl>"><TMPL_INCLUDE NAME=``filename.tmpl''></A></H2>
  299. <P>This tag includes a template directly into the current template at the
  300. point where the tag is found.  The included template contents are used
  301. exactly as if its contents were physically included in the master
  302. template.</P>
  303. <P>The file specified can be a full path - beginning with a '/'.  If it
  304. isn't a full path, the path to the enclosing file is tried first.
  305. After that the path in the environment variable HTML_TEMPLATE_ROOT is
  306. tried next, if it exists.  Next, the ``path'' <CODE>new()</CODE> option is consulted.
  307. As a final attempt, the filename is passed to <A HREF="../../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A> directly.  See
  308. below for more information on HTML_TEMPLATE_ROOT and the ``path'' option
  309. to new().</P>
  310. <P>As a protection against infinitly recursive includes, an arbitary
  311. limit of 10 levels deep is imposed.  You can alter this limit with the
  312. ``max_includes'' option.  See the entry for the ``max_includes'' option
  313. below for more details.</P>
  314. <P>
  315. <H2><A NAME="<tmpl_if name=control_parameter_name> </tmpl_if>"><TMPL_IF NAME=``CONTROL_PARAMETER_NAME''> </TMPL_IF></A></H2>
  316. <P>The <TMPL_IF> tag allows you to include or not include a block of the
  317. template based on the value of a given parameter name.  If the
  318. parameter is given a value that is true for Perl - like '1' - then the
  319. block is included in the output.  If it is not defined, or given a
  320. false value - like '0' - then it is skipped.  The parameters are
  321. specified the same way as with TMPL_VAR.</P>
  322. <P>Example Template:</P>
  323. <PRE>
  324.    <TMPL_IF NAME="BOOL">
  325.      Some text that only gets displayed if BOOL is true!
  326.    </TMPL_IF></PRE>
  327. <P>Now if you call $template->param(BOOL => 1) then the above block will
  328. be included by output.</P>
  329. <P><TMPL_IF> </TMPL_IF> blocks can include any valid HTML::Template
  330. construct - VARs and LOOPs and other IF/ELSE blocks.  Note, however,
  331. that intersecting a <TMPL_IF> and a <TMPL_LOOP> is invalid.</P>
  332. <PRE>
  333.    Not going to work:
  334.    <TMPL_IF BOOL>
  335.       <TMPL_LOOP SOME_LOOP>
  336.    </TMPL_IF>
  337.       </TMPL_LOOP></PRE>
  338. <P>If the name of a TMPL_LOOP is used in a TMPL_IF, the IF block will
  339. output if the loop has at least one row.  Example:</P>
  340. <PRE>
  341.   <TMPL_IF LOOP_ONE>
  342.     This will output if the loop is not empty.
  343.   </TMPL_IF></PRE>
  344. <PRE>
  345.   <TMPL_LOOP LOOP_ONE>
  346.     ....
  347.   </TMPL_LOOP></PRE>
  348. <P>WARNING: Much of the benefit of HTML::Template is in decoupling your
  349. Perl and HTML.  If you introduce numerous cases where you have
  350. TMPL_IFs and matching Perl if()s, you will create a maintenance
  351. problem in keeping the two synchronized.  I suggest you adopt the
  352. practice of only using TMPL_IF if you can do so without requiring a
  353. matching <CODE>if()</CODE> in your Perl code.</P>
  354. <P>
  355. <H2><A NAME="<tmpl_else>"><TMPL_ELSE></A></H2>
  356. <P>You can include an alternate block in your TMPL_IF block by using
  357. TMPL_ELSE.  NOTE: You still end the block with </TMPL_IF>, not
  358. </TMPL_ELSE>!
  359. </P>
  360. <PRE>
  361.  
  362.    Example:</PRE>
  363. <PRE>
  364.    <TMPL_IF BOOL>
  365.      Some text that is included only if BOOL is true
  366.    <TMPL_ELSE>
  367.      Some text that is included only if BOOL is false
  368.    </TMPL_IF></PRE>
  369. <P>
  370. <H2><A NAME="<tmpl_unless name=control_parameter_name> </tmpl_unless>"><TMPL_UNLESS NAME=``CONTROL_PARAMETER_NAME''> </TMPL_UNLESS></A></H2>
  371. <P>This tag is the opposite of <TMPL_IF>.  The block is output if the
  372. CONTROL_PARAMETER is set false or not defined.  You can use
  373. <TMPL_ELSE> with <TMPL_UNLESS> just as you can with <TMPL_IF>.</P>
  374. <PRE>
  375.   Example:</PRE>
  376. <PRE>
  377.   <TMPL_UNLESS BOOL>
  378.     Some text that is output only if BOOL is FALSE.
  379.   <TMPL_ELSE>
  380.     Some text that is output only if BOOL is TRUE.
  381.   </TMPL_UNLESS></PRE>
  382. <P>If the name of a TMPL_LOOP is used in a TMPL_UNLESS, the UNLESS block
  383. output if the loop has zero rows.</P>
  384. <PRE>
  385.   <TMPL_UNLESS LOOP_ONE>
  386.     This will output if the loop is empty.
  387.   </TMPL_UNLESS>
  388. </PRE>
  389. <PRE>
  390.  
  391.   <TMPL_LOOP LOOP_ONE>
  392.     ....
  393.   </TMPL_LOOP></PRE>
  394. <P>
  395. <HR>
  396. <H1><A NAME="methods">Methods</A></H1>
  397. <P>
  398. <H2><A NAME="new()"><CODE>new()</CODE></A></H2>
  399. <P>Call <CODE>new()</CODE> to create a new Template object:</P>
  400. <PRE>
  401.   my $template = HTML::Template->new( filename => 'file.tmpl', 
  402.                                       option => 'value' 
  403.                                     );</PRE>
  404. <P>You must call <CODE>new()</CODE> with at least one name => value pair specifying how
  405. to access the template text.  You can use ``filename => 'file.tmpl''' to
  406. specify a filename to be opened as the template.  Alternately you can
  407. use:</P>
  408. <PRE>
  409.   my $t = HTML::Template->new( scalarref => $ref_to_template_text, 
  410.                                option => 'value' 
  411.                              );</PRE>
  412. <P>and</P>
  413. <PRE>
  414.   my $t = HTML::Template->new( arrayref => $ref_to_array_of_lines , 
  415.                                option => 'value' 
  416.                              );</PRE>
  417. <P>These initialize the template from in-memory resources.  In almost
  418. every case you'll want to use the filename parameter.  If you're
  419. worried about all the disk access from reading a template file just
  420. use mod_perl and the cache option detailed below.</P>
  421. <P>The three <CODE>new()</CODE> calling methods can also be accessed as below, if you
  422. prefer.</P>
  423. <PRE>
  424.   my $t = HTML::Template->new_file('file.tmpl', option => 'value');</PRE>
  425. <PRE>
  426.   my $t = HTML::Template->new_scalar_ref($ref_to_template_text, 
  427.                                         option => 'value');</PRE>
  428. <PRE>
  429.   my $t = HTML::Template->new_array_ref($ref_to_array_of_lines, 
  430.                                        option => 'value');</PRE>
  431. <P>And as a final option, for those that might prefer it, you can call new as:</P>
  432. <PRE>
  433.   my $t = HTML::Template->new(type => 'filename', 
  434.                               source => 'file.tmpl');</PRE>
  435. <P>Which works for all three of the source types.</P>
  436. <P>If the environment variable HTML_TEMPLATE_ROOT is set and your
  437. filename doesn't begin with /, then the path will be relative to the
  438. value of $HTML_TEMPLATE_ROOT.  Example - if the environment variable
  439. HTML_TEMPLATE_ROOT is set to ``/home/sam'' and I call
  440. HTML::Template-><CODE>new()</CODE> with filename set to ``sam.tmpl'', the
  441. HTML::Template will try to open ``/home/sam/sam.tmpl'' to access the
  442. template file.  You can also affect the search path for files with the
  443. ``path'' option to <CODE>new()</CODE> - see below for more information.</P>
  444. <P>You can modify the Template object's behavior with new.  These options
  445. are available:</P>
  446. <UL>
  447. <LI>
  448. die_on_bad_params - if set to 0 the module will let you call
  449. $template->param(param_name => 'value') even if 'param_name' doesn't
  450. exist in the template body.  Defaults to 1.
  451. <P></P>
  452. <LI>
  453. strict - if set to 0 the module will allow things that look like they might be TMPL_* tags to get by without dieing.  Example:
  454. <PRE>
  455.    <TMPL_HUH NAME=ZUH></PRE>
  456. <P>Would normally cause an error, but if you call new with strict => 0,
  457. HTML::Template will ignore it.  Defaults to 1.</P>
  458. <P></P>
  459. <LI>
  460. cache - if set to 1 the module will cache in memory the parsed
  461. templates based on the filename parameter and modification date of the
  462. file.  This only applies to templates opened with the filename
  463. parameter specified, not scalarref or arrayref templates.  Caching
  464. also looks at the modification times of any files included using
  465. <TMPL_INCLUDE> tags, but again, only if the template is opened with
  466. filename parameter.
  467. <P>This is mainly of use in a persistent environment like
  468. Apache/mod_perl.  It has absolutely no benefit in a normal CGI
  469. environment since the script is unloaded from memory after every
  470. request.  For a cache that does work for normal CGIs see the
  471. 'shared_cache' option below.</P>
  472. <P>Note that different <CODE>new()</CODE> parameter settings do not cause a cache
  473. refresh, only a change in the modification time of the template will
  474. trigger a cache refresh.  For most usages this is fine.  My simplistic
  475. testing shows that using cache yields a 90% performance increase under
  476. mod_perl.  Cache defaults to 0.</P>
  477. <P></P>
  478. <LI>
  479. shared_cache - if set to 1 the module will store its cache in shared
  480. memory using the IPC::SharedCache module (available from CPAN).  The
  481. effect of this will be to maintain a single shared copy of each parsed
  482. template for all instances of HTML::Template to use.  This can be a
  483. significant reduction in memory usage in a multiple server
  484. environment.  As an example, on one of our systems we use 4MB of
  485. template cache and maintain 25 httpd processes - shared_cache results
  486. in saving almost 100MB!  Of course, some reduction in speed versus
  487. normal caching is to be expected.  Another difference between normal
  488. caching and shared_cache is that shared_cache will work in a CGI
  489. environment - normal caching is only useful in a persistent
  490. environment like Apache/mod_perl.
  491. <P>By default HTML::Template uses the IPC key 'TMPL' as a shared root
  492. segment (0x4c504d54 in hex), but this can be changed by setting the
  493. 'ipc_key' <CODE>new()</CODE> parameter to another 4-character or integer key.
  494. Other options can be used to affect the shared memory cache correspond
  495. to IPC::SharedCache options - ipc_mode, ipc_segment_size and
  496. ipc_max_size.  See <A HREF="../../../IPC/SharedCache.html">the IPC::SharedCache manpage</A> for a description of how these
  497. work - in most cases you shouldn't need to change them from the
  498. defaults.</P>
  499. <P>For more information about the shared memory cache system used by
  500. HTML::Template see <A HREF="../../../IPC/SharedCache.html">the IPC::SharedCache manpage</A>.</P>
  501. <P></P>
  502. <LI>
  503. double_cache - if set to 1 the module will use a combination of
  504. shared_cache and normal cache mode for the best possible caching.  Of
  505. course, it also uses the most memory of all the cache modes.  All the
  506. same ipc_* options that work with shared_cache apply to double_cache
  507. as well.  By default double_cache is off.
  508. <P></P>
  509. <LI>
  510. blind_cache - if set to 1 the module behaves exactly as with normal
  511. caching but does not check to see if the file has changed on each
  512. request.  This option should be used with caution, but could be of use
  513. on high-load servers.  My tests show blind_cache performing only 1 to
  514. 2 percent faster than cache under mod_perl.
  515. <P>NOTE: Combining this option with shared_cache can result in stale
  516. templates stuck permanently in shared memory!</P>
  517. <P></P>
  518. <LI>
  519. associate - this option allows you to inherit the parameter values
  520. from other objects.  The only requirement for the other object is that
  521. it have a <CODE>param()</CODE> method that works like HTML::Template's param().  A
  522. good candidate would be a CGI.pm query object.  Example:
  523. <PRE>
  524.   my $query = new CGI;
  525.   my $template = HTML::Template->new(filename => 'template.tmpl',
  526.                                      associate => $query);</PRE>
  527. <P>Now, $template-><CODE>output()</CODE> will act as though</P>
  528. <PRE>
  529.   $template->param('FormField', $cgi->param('FormField'));</PRE>
  530. <P>had been specified for each key/value pair that would be provided by
  531. the $cgi-><CODE>param()</CODE> method.  Parameters you set directly take precedence
  532. over associated parameters.</P>
  533. <P>You can specify multiple objects to associate by passing an anonymous
  534. array to the associate option.  They are searched for parameters in
  535. the order they appear:</P>
  536. <PRE>
  537.   my $template = HTML::Template->new(filename => 'template.tmpl',
  538.                                      associate => [$query, $other_obj]);</PRE>
  539. <P>The old <CODE>associateCGI()</CODE> call is still supported, but should be
  540. considered obsolete.</P>
  541. <P>NOTE: The parameter names are matched in a case-insensitve manner.  If
  542. you have two parameters in a CGI object like 'NAME' and 'Name' one
  543. will be chosen randomly by associate.</P>
  544. <P></P>
  545. <LI>
  546. loop_context_vars - when this parameter is set to true (it is false by
  547. default) three loop context variables are made available inside a
  548. loop: __FIRST__, __LAST__ and __INNER__.  They can be used with
  549. <TMPL_IF>, <TMPL_UNLESS> and <TMPL_ELSE> to control how a loop is
  550. output.  Example:
  551. <PRE>
  552.    <TMPL_LOOP NAME="FOO">
  553.       <TMPL_IF NAME="__FIRST__">
  554.         This only outputs on the first pass.
  555.       </TMPL_IF></PRE>
  556. <PRE>
  557.       <TMPL_IF NAME="__INNER__">
  558.         This outputs on passes that are neither first nor last.
  559.       </TMPL_IF></PRE>
  560. <PRE>
  561.       <TMPL_IF NAME="__LAST__">
  562.         This only outputs on the last pass.
  563.       <TMPL_IF>
  564.    </TMPL_LOOP></PRE>
  565. <P>One use of this feature is to provide a ``separator'' similar in effect
  566. to the perl function join().  Example:</P>
  567. <PRE>
  568.    <TMPL_LOOP FRUIT>
  569.       <TMPL_IF __LAST__> and </TMPL_IF>
  570.       <TMPL_VAR KIND><TMPL_UNLESS __LAST__>, <TMPL_ELSE>.</TMPL_UNLESS>
  571.    </TMPL_LOOP></PRE>
  572. <P>Would output (in a browser) something like:</P>
  573. <PRE>
  574.   Apples, Oranges, Brains, Toes, and Kiwi.</PRE>
  575. <P>Given an appropriate <CODE>param()</CODE> call, of course.  NOTE: A loop with only
  576. a single pass will get both __FIRST__ and __LAST__ set to true, but
  577. not __INNER__.</P>
  578. <P></P>
  579. <LI>
  580. path - you can set this variable with a list of paths to search for
  581. files specified with the ``filename'' option to <CODE>new()</CODE> and for files
  582. included with the <TMPL_INCLUDE> tag.  This list is only consulted
  583. when the filename is relative - i.e. does not begin with a '/'.  The
  584. HTML_TEMPLATE_ROOT environment variable is always tried first if it
  585. exists.  In the case of a <TMPL_INCLUDE> file, the path to the
  586. including file is also tried before path is consulted.
  587. <P>Example:</P>
  588. <PRE>
  589.    my $template = HTML::Template->new( filename => 'file.tmpl',
  590.                                        path => [ '/path/to/templates',
  591.                                                  '/alternate/path'
  592.                                                ]
  593.                                       );</PRE>
  594. <P></P>
  595. <LI>
  596. max_includes - set this variable to determine the maximum depth that
  597. includes can reach.  Set to 10 by default.  Including files to a depth
  598. greater than this value causes an error message to be displayed.  Set
  599. to 0 to disable this protection.
  600. <P></P>
  601. <LI>
  602. vanguard_compatibility_mode - if set to 1 the module will expect to
  603. see <TMPL_VAR>s that look like %NAME% in addition to the standard
  604. syntax.  Also sets die_on_bad_params => 0.  If you're not at Vanguard
  605. Media trying to use an old format template don't worry about this one.
  606. Defaults to 0.
  607. <P></P>
  608. <LI>
  609. debug - if set to 1 the module will write random debugging information
  610. to STDERR.  Defaults to 0.
  611. <P></P>
  612. <LI>
  613. stack_debug - if set to 1 the module will use Data::Dumper to print
  614. out the contents of the parse_stack to STDERR.  Defaults to 0.
  615. <P></P>
  616. <LI>
  617. cache_debug - if set to 1 the module will send information on cache
  618. loads, hits and misses to STDERR.  Defaults to 0.
  619. <P></P>
  620. <LI>
  621. shared_cache_debug - if set to 1 the module will turn on the debug
  622. option in IPC::SharedCache - see <A HREF="../../../IPC/SharedCache.html">the IPC::SharedCache manpage</A> for
  623. details. Defaults to 0.
  624. <P></P>
  625. <LI>
  626. memory_debug - if set to 1 the module will send information on cache
  627. memory usage to STDERR.  Requires the GTop module.  Defaults to 0.
  628. <P></P></UL>
  629. <P>
  630. <H2><A NAME="param">param</A></H2>
  631. <P><CODE>param()</CODE> can be called in a number of ways</P>
  632. <P>1) To return a list of parameters in the template :</P>
  633. <PRE>
  634.    my @parameter_names = $self->param();</PRE>
  635. <P>2) To return the value set to a param :</P>
  636. <PRE>
  637.    my $value = $self->param('PARAM');</PRE>
  638. <P>3) To set the value of a parameter :</P>
  639. <PRE>
  640.       # For simple TMPL_VARs:
  641.       $self->param(PARAM => 'value');</PRE>
  642. <PRE>
  643.       # with a subroutine reference that gets called to get the value of
  644.       # the scalar.
  645.       $self->param(PARAM => sub { return 'value' });</PRE>
  646. <PRE>
  647.       # And TMPL_LOOPs:
  648.       $self->param(LOOP_PARAM => 
  649.                    [ 
  650.                     { PARAM => VALUE_FOR_FIRST_PASS, ... }, 
  651.                     { PARAM => VALUE_FOR_SECOND_PASS, ... } 
  652.                     ...
  653.                    ]
  654.                   );</PRE>
  655. <P>4) To set the value of a a number of parameters :</P>
  656. <PRE>
  657.      # For simple TMPL_VARs:
  658.      $self->param(PARAM => 'value', 
  659.                   PARAM2 => 'value'
  660.                  );</PRE>
  661. <PRE>
  662.       # And with some TMPL_LOOPs:
  663.       $self->param(PARAM => 'value', 
  664.                    PARAM2 => 'value',
  665.                    LOOP_PARAM => 
  666.                    [ 
  667.                     { PARAM => VALUE_FOR_FIRST_PASS, ... }, 
  668.                     { PARAM => VALUE_FOR_SECOND_PASS, ... } 
  669.                     ...
  670.                    ],
  671.                    ANOTHER_LOOP_PARAM => 
  672.                    [ 
  673.                     { PARAM => VALUE_FOR_FIRST_PASS, ... }, 
  674.                     { PARAM => VALUE_FOR_SECOND_PASS, ... } 
  675.                     ...
  676.                    ]
  677.                   );</PRE>
  678. <P>5) To set the value of a a number of parameters using a hash-ref :</P>
  679. <PRE>
  680.       $self->param(
  681.                    { 
  682.                       PARAM => 'value', 
  683.                       PARAM2 => 'value',
  684.                       LOOP_PARAM => 
  685.                       [ 
  686.                         { PARAM => VALUE_FOR_FIRST_PASS, ... }, 
  687.                         { PARAM => VALUE_FOR_SECOND_PASS, ... } 
  688.                         ...
  689.                       ],
  690.                       ANOTHER_LOOP_PARAM => 
  691.                       [ 
  692.                         { PARAM => VALUE_FOR_FIRST_PASS, ... }, 
  693.                         { PARAM => VALUE_FOR_SECOND_PASS, ... } 
  694.                         ...
  695.                       ]
  696.                     }
  697.                    );</PRE>
  698. <P>
  699. <H2><A NAME="clear_params()"><CODE>clear_params()</CODE></A></H2>
  700. <P>Sets all the parameters to undef.  Useful internally, if nowhere else!</P>
  701. <P>
  702. <H2><A NAME="output()"><CODE>output()</CODE></A></H2>
  703. <P><CODE>output()</CODE> returns the final result of the template.  In most situations you'll want to print this, like:</P>
  704. <PRE>
  705.    print $template->output();</PRE>
  706. <P>When output is called each occurrence of <TMPL_VAR NAME=name> is
  707. replaced with the value assigned to ``name'' via param().  If a named
  708. parameter is unset it is simply replaced with ''.  <TMPL_LOOPS> are
  709. evaluated once per parameter set, accumlating output on each pass.</P>
  710. <P>Calling <CODE>output()</CODE> is guaranteed not to change the state of the
  711. Template object, in case you were wondering.  This property is mostly
  712. important for the internal implementation of loops.</P>
  713. <P>
  714. <HR>
  715. <H1><A NAME="frequently asked questions">FREQUENTLY ASKED QUESTIONS</A></H1>
  716. <P>In the interest of greater understanding I've started a FAQ section of
  717. the perldocs.  Please look in here before you send me email.</P>
  718. <P>1) Is there a place to go to discuss HTML::Template and/or get help?</P>
  719. <P>There's a mailing-list for HTML::Template at <A HREF="mailto:htmltmpl@lists.vm.com.">htmltmpl@lists.vm.com.</A>
  720. Send a blank message to <A HREF="mailto:htmltmpl-subscribe@lists.vm.com">htmltmpl-subscribe@lists.vm.com</A> to join!</P>
  721. <P>2) I want support for <TMPL_XXX>!  How about it?</P>
  722. <P>Maybe.  I definitely encourage people to discuss their ideas for
  723. HTML::Template on the mailing list.  Please be ready to explain to me
  724. how the new tag fits in with HTML::Template's mission to provide a
  725. fast, lightweight system for using HTML templates.</P>
  726. <P>NOTE: Offering to program said addition and provide it in the form of
  727. a patch to the most recent version of HTML::Template will definitely
  728. have a softening effect on potential opponents!</P>
  729. <P>3) I found a bug, can you fix it?</P>
  730. <P>That depends.  Did you send me the VERSION of HTML::Template, a test
  731. script and a test template?  If so, then almost certainly.</P>
  732. <P>If you're feeling really adventurous, HTML::Template has a publically
  733. available CVS server.  See below for more information in the PUBLIC
  734. CVS SERVER section.</P>
  735. <P>4) <TMPL_VAR>s from the main template aren't working inside a <TMPL_LOOP>!  Why?</P>
  736. <P>This is the intended behavior.  <TMPL_LOOP> introduces a separate
  737. scope for <TMPL_VAR>s much like a subroutine call in Perl introduces a
  738. separate scope for ``my'' variables.  If you need to have a variable
  739. from the main template work inside a loop you'll need to manually
  740. provide the value for each iteration of the loop.</P>
  741. <P>5) Why do you use /[Tt]/ instead of /t/i?  It's so ugly!</P>
  742. <P>Simple - the case-insensitive match switch is very inefficient.
  743. According to _Mastering_Regular_Expressions_ from O'Reilly Press,
  744. /[Tt]/ is faster and more space efficient than /t/i - by as much as
  745. double against long strings.  //i essentially does a <A HREF="../../../lib/Pod/perlfunc.html#item_lc"><CODE>lc()</CODE></A> on the
  746. string and keeps a temporary copy in memory.</P>
  747. <P>When this changes, and it is in the 5.6 development series, I will
  748. gladly use //i.  Believe me, I realize [Tt] is hideously ugly.</P>
  749. <P>6) How can I pre-load my templates using cache-mode and mod_perl?</P>
  750. <P>Add something like this to your startup.pl:</P>
  751. <PRE>
  752.    use HTML::Template;
  753.    use File::Find;</PRE>
  754. <PRE>
  755.    print STDERR "Pre-loading HTML Templates...\n";
  756.    find(
  757.         sub {
  758.           return unless /\.tmpl$/;
  759.           HTML::Template->new(
  760.                               filename => "$File::Find::dir/$_",
  761.                               cache => 1,
  762.                              );
  763.         },
  764.         '/path/to/templates',
  765.         '/another/path/to/templates/'
  766.       );</PRE>
  767. <P>Note that you'll need to modify the ``return unless'' line to specify
  768. the extension you use for your template files - I use .tmpl, as you
  769. can see.  You'll also need to specify the path to your template files.</P>
  770. <P>One potential problem: the ``/path/to/templates/'' must be EXACTLY the
  771. same path you use when you call HTML::Template->new().  Otherwise the
  772. cache won't know they're the same file and will load a new copy -
  773. instead getting a speed increase, you'll double your memory usage.  To
  774. find out if this is happening set cache_debug => 1 in your application
  775. code and look for ``CACHE MISS'' messages in the logs.</P>
  776. <P>7) What characters are allowed in TMPL_* NAMEs?</P>
  777. <P>Numbers, letters, '.', '/', '+', '-' and '_'.</P>
  778. <P>
  779. <HR>
  780. <H1><A NAME="bugs">BUGS</A></H1>
  781. <P>I am aware of no bugs - if you find one, join the mailing list and
  782. tell us about it (<A HREF="mailto:htmltmpl@lists.vm.com">htmltmpl@lists.vm.com</A>)  You can join the
  783. HTML::Template mailing-list by sending a blank email to
  784. <A HREF="mailto:htmltmpl-subscribe@lists.vm.com.">htmltmpl-subscribe@lists.vm.com.</A>  Of course, you can still email me
  785. directly (<A HREF="mailto:sam@tregar.com">sam@tregar.com</A>) with bugs, but I reserve the right to
  786. forward said bug reports to the mailing list.</P>
  787. <P>When submitting bug reports, be sure to include full details,
  788. including the VERSION of the module, a test script and a test template
  789. demonstrating the problem!</P>
  790. <P>If you're feeling really adventurous, HTML::Template has a publically
  791. available CVS server.  See below for more information in the PUBLIC
  792. CVS SERVER section.</P>
  793. <P>
  794. <HR>
  795. <H1><A NAME="credits">CREDITS</A></H1>
  796. <P>This module was the brain child of my boss, Jesse Erlbaum
  797. (<A HREF="mailto:jesse@vm.com">jesse@vm.com</A>) here at Vanguard Media.  The most original idea in this
  798. module - the <TMPL_LOOP> - was entirely his.</P>
  799. <P>Fixes, Bug Reports, Optimizations and Ideas have been generously
  800. provided by:</P>
  801. <PRE>
  802.    Richard Chen
  803.    Mike Blazer
  804.    Adriano Nagelschmidt Rodrigues
  805.    Andrej Mikus
  806.    Ilya Obshadko
  807.    Kevin Puetz
  808.    Steve Reppucci
  809.    Richard Dice
  810.    Tom Hukins
  811.    Eric Zylberstejn
  812.    David Glasser
  813.    Peter Marelas
  814.    James William Carlson
  815.    Frank D. Cringle
  816.    Winfried Koenig
  817.    Matthew Wickline
  818.    Doug Steinwand
  819.    Drew Taylor
  820.    Tobias Brox
  821.    Michael Lloyd</PRE>
  822. <P>Thanks!</P>
  823. <P>
  824. <HR>
  825. <H1><A NAME="public cvs server">PUBLIC CVS SERVER</A></H1>
  826. <P>HTML::Template now has a publicly accessible CVS server provided by
  827. SourceForge (www.sourceforge.net).  You can access it by going to
  828. <A HREF="http://sourceforge.net/cvs/?group_id=1075.">http://sourceforge.net/cvs/?group_id=1075.</A>  Give it a try!</P>
  829. <P>
  830. <HR>
  831. <H1><A NAME="author">AUTHOR</A></H1>
  832. <P>Sam Tregar, <A HREF="mailto:sam@tregar.com">sam@tregar.com</A> (you can also find me on the mailing list
  833. at <A HREF="mailto:htmltmpl@lists.vm.com">htmltmpl@lists.vm.com</A> - join it by sending a blank message to
  834. <A HREF="mailto:htmltmpl-subscribe@lists.vm.com).">htmltmpl-subscribe@lists.vm.com).</A></P>
  835. <P>
  836. <HR>
  837. <H1><A NAME="license">LICENSE</A></H1>
  838. <P>HTML::Template : A module for using HTML Templates with Perl</P>
  839. <P>Copyright (C) 1999 Sam Tregar (<A HREF="mailto:sam@tregar.com">sam@tregar.com</A>)</P>
  840. <P>This program is free software; you can redistribute it and/or modify
  841. it under the terms of the GNU General Public License as published by
  842. the Free Software Foundation; either version 2 of the License, or (at
  843. your option) any later version.</P>
  844. <P>This program is distributed in the hope that it will be useful, but
  845. WITHOUT ANY WARRANTY; without even the implied warranty of
  846. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  847. General Public License for more details.</P>
  848. <P>You should have received a copy of the GNU General Public License
  849. along with this program; if not, write to the Free Software
  850. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  851. USA</P>
  852. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  853. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  854. <STRONG><P CLASS=block> HTML::Template - Perl module to use HTML Templates from CGI scripts</P></STRONG>
  855. </TD></TR>
  856. </TABLE>
  857.  
  858. </BODY>
  859.  
  860. </HTML>
  861.