
Template::Alloy::HTE - HTML::Template and HTML::Template::Expr roles.

The Template::Alloy::HTE role provides syntax and interface support for the HTML::Template and HTML::Template::Expr modules.
Provides for extra or extended features that may not be as commonly used. This module should not normally be used by itself.
See the Template::Alloy documentation for configuration and other parameters.

Alloy can use the same base template syntax and configuration items as HTE and HT. The internals of Alloy were written to support TT3, but were general enough to be extended to support HTML::Template as well. The result is HTML::Template::Expr compatible syntax, with Alloy speed and a wide range of additional features.
The TMPL_VAR, TMPL_IF, TMPL_ELSE, TMPL_UNLESS, TMPL_LOOP, and TMPL_INCLUDE all work identically to HTML::Template.
<TMPL_SET a = "bar">
<TMPL_SET b = [1 .. 25]>
<TMPL_SET foo = PROCESS 'filename.tt'>
<TMPL_GET foo> # similar to <TMPL_VAR NAME="foo">
<TMPL_GET b.3>
<TMPL_GET my.nested.chained.variable.1>
<TMPL_GET my_var | html>
<TMPL_USE foo = DBI(db => ...)>
<TMPL_CALL foo.connect>
Any of the TT directives can be used in HTML::Template documents.
For many die-hard HTML::Template fans, it is probably quite scary to be providing all of the TT functionality. All of the extended TT functionality can be disabled by setting the NO_TT configuration item. The NO_TT configuration is automatically set if the SYNTAX is set to "ht" and the output method is called.
<TMPL_IF foo>
FOO
<TMPL_ELSIF bar>
BAR
<TMPL_ELSE>
Done then
</TMPL_IF>
Foo
<~TMPL_VAR EXPR="1+2"~>
Bar
Prints Foo3Bar
<TMPL_SET foo = 'FOO'>
<TMPL_CONFIG INTERPOLATE => 1>
$foo <TMPL_GET foo> ${ 1 + 2 }
Prints
FOO FOO 3
<TMPL_CONFIG SYNTAX => 'tt3'>
<TMPL_INCLUDE "filename.tt">
<TMPL_VAR EXPR="1 + 2 * 3"> Properly prints 7.

Alloy does not resolve variables until the template is output.
Alloy is strict on parsing HT documents.
Alloy doesn't have shared caching. Yet.
Alloy will check the full path array on each include.
The HTML::Template style options are included here, but you can use the TT style DEBUG and DUMP directives to do intropection.
Alloy uses TT's recursion protection.
Alloy doesn't offer these.

register_functionDefines a new function for later use as text vmethod or top level function.
clear_paramEmpties the paramter list.
queryNot supported.
new_fileCreates a new object that will process the passed file.
$obj = Template::Alloy->new_file("my/file.hte");
new_scalar_refCreates a new object that will process the passed scalar ref.
$obj = Template::Alloy->new_scalar_ref(\"some template text");
new_array_refNew object that will process the passed array (each item represents a line).
$obj = Template::Alloy->new_array_ref(\@array);
new_filehandle$obj = Template::Alloy->new_filehandle(\*FH);
parse_tree_hteCalled by parse_tree when syntax is set to ht or hte. Parses for tags HTML::Template style.
paramSee Template::Alloy.
outputSee Template::Alloy.

Paul Seamons <paul at seamons dot com>

This module may be distributed under the same terms as Perl itself.