]> Dogcows Code - chaz/p5-CGI-Ex/blob - lib/CGI/Ex/Template.pod
9d2c3c673b93b633b0553eccfeaac294ac80ba76
[chaz/p5-CGI-Ex] / lib / CGI / Ex / Template.pod
1 =head1 NAME
2
3 CGI::Ex::Template - Fast and lightweight TT2/3 template engine
4
5 =head1 SYNOPSIS
6
7 my $t = CGI::Ex::Template->new(
8 INCLUDE_PATH => ['/path/to/templates'],
9 );
10
11 my $swap = {
12 key1 => 'val1',
13 key2 => 'val2',
14 code => sub { 42 },
15 hash => {a => 'b'},
16 };
17
18 $t->process('my/template.tt', $swap)
19 || die $t->error;
20
21 ### Anything in the Template::Toolkit SYNOPSIS would fit here also
22
23 =head1 DESCRIPTION
24
25 CGI::Ex::Template happened by accident (accidentally on purpose). The
26 CGI::Ex::Template (CET hereafter) was originally a part of the CGI::Ex
27 suite that performed simple variable interpolation. It used TT2 style
28 variables in TT2 style tags "[% foo.bar %]". That was all the
29 original CGI::Ex::Template did. This was fine and dandy for a couple
30 of years. In winter of 2005-2006 CET was revamped to add a few
31 features. One thing led to another and soon CET provided for most of
32 the features of TT2 as well as some from TT3. CGI::Ex::Template is a
33 full-featured implementation of the Template::Toolkit language.
34
35 CGI::Ex::Template (CET hereafter) is smaller, faster, uses less memory
36 and less CPU than TT2. However, it is most likely less portable, less
37 extendable, and probably has many of the bugs that TT2 has already massaged
38 out from years of bug reports and patches from a very active community
39 and mailing list. CET does not have a vibrant community behind it. Fixes
40 applied to TT2 will take longer to get into CET, should they get in at all.
41 An attempt will be made to follow updates made to TT2 to keep the two
42 in sync at a language level. There already has been, and it is expected that
43 there will continue to be code sharing between the two projects. (Acutally
44 I will try and keep applicable fixes in sync with TT).
45
46 Most of the standard Template::Toolkit documentation covering directives,
47 variables, configuration, plugins, filters, syntax, and vmethods should
48 apply to CET just fine (This pod tries to explain everything - but there is
49 too much). The section on differences between CET and TT will explain
50 what too look out for.
51
52 Note: A clarification on "faster". All templates are going to take
53 different amounts of time to process. Different types of DIRECTIVES
54 parse and play more quickly than others. The test script
55 samples/benchmark/bench_template.pl was used to obtain sample numbers.
56 In general the following statements are true:
57
58 If you load a new Template object each time and pass a filename, CET
59 is around 4 times faster.
60
61 If you load a new Template object and pass a string ref, CET
62 is around 3.5 times faster.
63
64 If you load a new Template object and use CACHE_EXT, CET
65 is around 1.5 times faster.
66
67 If you use a cached object with a cached in memory template,
68 then CET is 50% faster.
69
70 If you use Template::Stash::XS with a cached in memory template,
71 then CET is about as fast.
72
73 Using TT with a compiled-in-memory template is only 33%
74 faster than CET with a new object compiling each time.
75
76 It is pretty hard to beat the speed of XS stash with compiled in
77 memory templates. Many systems don't have access to those so
78 CET may make more sense. Hopefully as TT is revised, many of the CET
79 speed advantages can be incorporated so that the core TT is just as
80 fast or faster.
81
82 So should you use CGI::Ex::Template ? Well, try it out. It may
83 give you no visible improvement. Or it could.
84
85
86 =head1 PUBLIC METHODS
87
88 The following section lists most of the publicly available methods. Some less
89 commonly used public methods are listed later in this document.
90
91 =over 4
92
93 =item C<new>
94
95 my $obj = CGI::Ex::Template->new({
96 INCLUDE_PATH => ['/my/path/to/content', '/my/path/to/content2'],
97 });
98
99 Arguments may be passed as a hash or as a hashref. Returns a CGI::Ex::Template object.
100
101 There are currently no errors during CGI::Ex::Template object creation.
102
103 =item C<process>
104
105 This is the main method call for starting processing. Any errors that result in the
106 template processing being stopped will be stored and available via the ->error method.
107
108 Process takes three arguments.
109
110 $t->process($in, $swap, $out)
111 || die $t->error;
112
113 The $in argument can be any one of:
114
115 String containing the filename of the template to be processed. The filename should
116 be relative to INCLUDE_PATH. (See INCLUDE_PATH, ABSOLUTE, and RELATIVE configuration items).
117 In memory caching and file side caching are available for this type.
118
119 A reference to a scalar containing the contents of the template to be processed.
120
121 A coderef that will be called to return the contents of the template.
122
123 An open filehandle that will return the contents of the template when read.
124
125 The $swap argument should be hashref containing key value pairs that will be
126 available to variables swapped into the template. Values can be hashrefs, hashrefs
127 of hashrefs and so on, arrayrefs, arrayrefs of arrayrefs and so on, coderefs, objects,
128 and simple scalar values such as numbers and strings. See the section on variables.
129
130 The $out argument can be any one of:
131
132 undef - meaning to print the completed template to STDOUT.
133
134 String containing a filename. The completed template will be placed in the file.
135
136 A reference to a string. The contents will be appended to the scalar reference.
137
138 A coderef. The coderef will be called with the contents as a single argument.
139
140 An object that can run the method "print". The contents will be passed as
141 a single argument to print.
142
143 An arrayref. The contents will be pushed onto the array.
144
145 An open filehandle. The contents will be printed to the open handle.
146
147 Additionally - the $out argument can be configured using the OUTPUT configuration
148 item.
149
150 =item C<process_simple>
151
152 Similar to the process method but with the following restrictions:
153
154 The $in parameter is limited to a filename or a reference a string containing the contents.
155
156 The $out parameter may only be a reference to a scalar string that output will be appended to.
157
158 Additionally, the following configuration variables will be ignored: VARIABLES,
159 PRE_DEFINE, BLOCKS, PRE_PROCESS, PROCESS, POST_PROCESS, AUTO_RESET, OUTPUT.
160
161 =item C<error>
162
163 Should something go wrong during a "process" command, the error that occurred can
164 be retrieved via the error method.
165
166 $obj->process('somefile.html', {a => 'b'}, \$string_ref)
167 || die $obj->error;
168
169 =item C<define_vmethod>
170
171 This method is available for defining extra Virtual methods or filters. This method is similar
172 to Template::Stash::define_vmethod.
173
174 =back
175
176 =head1 TODO
177
178 Add WRAPPER configuration item (the WRAPPER directive is supported).
179
180 Add ERROR config item
181
182 =head1 HOW IS CGI::Ex::Template DIFFERENT
183
184 CET uses the same base template syntax and configuration items as TT2,
185 but the internals of CET were written from scratch. Additionally much
186 of the planned TT3 syntax is supported. The following is a list of
187 some of the ways that the configuration and syntax of CET are
188 different from that of TT2. Note: items that are planned to work in
189 TT3 are marked with (TT3).
190
191 =over 4
192
193 =item Numerical hash keys work
194
195 [% a = {1 => 2} %]
196
197 =item Quoted hash key interpolation is fine
198
199 [% a = {"$foo" => 1} %]
200
201 =item Multiple ranges in same constructor
202
203 [% a = [1..10, 21..30] %]
204
205 =item Constructor types can call virtual methods. (TT3)
206
207 [% a = [1..10].reverse %]
208
209 [% "$foo".length %]
210
211 [% 123.length %] # = 3
212
213 [% 123.4.length %] # = 5
214
215 [% -123.4.length %] # = -5 ("." binds more tightly than "-")
216
217 [% (a ~ b).length %]
218
219 [% "hi".repeat(3) %]
220
221 [% {a => b}.size %]
222
223 =item The "${" and "}" variable interpolators can contain expressions,
224 not just variables.
225
226 [% [0..10].${ 1 + 2 } %] # = 4
227
228 [% {ab => 'AB'}.${ 'a' ~ 'b' } %] # = AB
229
230 [% color = qw/Red Blue/; FOR [1..4] ; color.${ loop.index % color.size } ; END %]
231 # = RedBlueRedBlue
232
233 =item Arrays can be accessed with non-integer numbers.
234
235 [% [0..10].${ 2.3 } %] # = 3
236
237 =item Reserved names are less reserved. (TT3)
238
239 [% GET GET %] # gets the variable named "GET"
240
241 [% GET $GET %] # gets the variable who's name is stored in "GET"
242
243 =item Filters and SCALAR_OPS are interchangeable. (TT3)
244
245 [% a | length %]
246
247 [% b . lower %]
248
249 =item Pipe "|" can be used anywhere dot "." can be and means to call
250 the virtual method. (TT3)
251
252 [% a = {size => "foo"} %][% a.size %] # = foo
253
254 [% a = {size => "foo"} %][% a|size %] # = 1 (size of hash)
255
256 =item Pipe "|" and "." can be mixed. (TT3)
257
258 [% "aa" | repeat(2) . length %] # = 4
259
260 =item Added Virtual Object Namespaces. (TT3)
261
262 The Text, List, and Hash types give direct access
263 to virtual methods.
264
265 [% a = "foobar" %][% Text.length(a) %] # = 6
266
267 [% a = [1 .. 10] %][% List.size(a) %] # = 10
268
269 [% a = {a=>"A", b=>"B"} ; Hash.size(a) %] = 2
270
271 [% foo = {a => 1, b => 2}
272 | Hash.keys
273 | List.join(", ") %] # = a, b
274
275 =item Added "fmt" scalar, list, and hash virtual methods.
276
277 [% list.fmt("%s", ", ") %]
278
279 [% hash.fmt("%s => %s", "\n") %]
280
281 =item Whitespace is less meaningful. (TT3)
282
283 [% 2-1 %] # = 1 (fails in TT2)
284
285 =item Added pow operator.
286
287 [% 2 ** 3 %] [% 2 pow 3 %] # = 8 8
288
289 =item Added self modifiers (+=, -=, *=, /=, %=, **=, ~=). (TT3)
290
291 [% a = 2; a *= 3 ; a %] # = 6
292 [% a = 2; (a *= 3) ; a %] # = 66
293
294 =item Added pre and post increment and decrement (++ --). (TT3)
295
296 [% ++a ; ++a %] # = 12
297 [% a-- ; a-- %] # = 0-1
298
299 =item Added qw// contructor. (TT3)
300
301 [% a = qw(a b c); a.1 %] # = b
302
303 [% qw/a b c/.2 %] # = c
304
305 =item Allow for scientific notation. (TT3)
306
307 [% a = 1.2e-20 %]
308
309 [% 123.fmt('%.3e') %] # = 1.230e+02
310
311 =item Allow for hexidecimal input. (TT3)
312
313 [% a = 0xff0000 %][% a %] # = 16711680
314
315 [% a = 0xff2 / 0xd; a.fmt('%x') %] # = 13a
316
317 =item FOREACH variables can be nested.
318
319 [% FOREACH f.b = [1..10] ; f.b ; END %]
320
321 Note that nested variables are subject to scoping issues.
322 f.b will not be reset to its value before the FOREACH.
323
324 =item Post operative directives can be nested. (TT3)
325
326 Andy Wardley calls this side-by-side effect notation.
327
328 [% one IF two IF three %]
329
330 same as
331
332 [% IF three %][% IF two %][% one %][% END %][% END %]
333
334
335 [% a = [[1..3], [5..7]] %][% i FOREACH i = j FOREACH j = a %] # = 123567
336
337 =item Semi-colons on directives in the same tag are optional. (TT3)
338
339 [% SET a = 1
340 GET a
341 %]
342
343 [% FOREACH i = [1 .. 10]
344 i
345 END %]
346
347 Note: a semi-colon is still required in front of any block directive
348 that can be used as a post-operative directive.
349
350 [% 1 IF 0
351 2 %] # prints 2
352
353 [% 1; IF 0
354 2
355 END %] # prints 1
356
357 =item CATCH blocks can be empty.
358
359 TT2 requires them to contain something.
360
361 =item Added a DUMP directive.
362
363 Used for Data::Dumpering the passed variable or expression.
364
365 [% DUMP a.a %]
366
367 =item CET does not generate Perl code.
368
369 It generates an "opcode" tree.
370
371 =item CET uses storable for its compiled templates.
372
373 If EVAL_PERL is off, CET will not eval_string on ANY piece of information.
374
375 =item There is no context.
376
377 CET provides a context object that mimics the Template::Context
378 interface for use by some TT filters, eval perl blocks, and plugins.
379
380 =item There is no stash.
381
382 Well there is but it isn't an object.
383
384 CET only supports the variables passed in VARIABLES, PRE_DEFINE, and
385 those passed to the process method. CET provides a stash object that
386 mimics the Template::Stash interface for use by some TT filters, eval
387 perl blocks, and plugins.
388
389 =item There is no provider.
390
391 CET uses the load_parsed_tree method to get and cache templates.
392
393 =item There is no grammar.
394
395 CET has its own built in recursive grammar system.
396
397 =item There is no VIEW directive.
398
399
400 =item There are no references.
401
402 There were in initial beta tests, but it was decided to remove the little used feature which
403 took a length of code to implement.
404
405 =item The DEBUG directive is more limited.
406
407 It only understands DEBUG_DIRS (8) and DEBUG_UNDEF (2).
408
409 =item When debug dirs is on, directives on different lines separated by colons show the line they
410 are on rather than a general line range.
411
412 =item There is no ANYCASE configuration item.
413
414 There was in initial beta tests, but it was dropped in favor of consistent parsing syntax (and
415 a minimal amount of speedup).
416
417 =item There is no V1DOLLAR configuration item.
418
419 This is a TT version 1 compatibility item and is not available in CET.
420
421 =back
422
423 =head1 VARIABLES
424
425 This section discusses how to use variables and expressions in the TT mini-language.
426
427 A variable is the most simple construct to insert into the TT mini language. A variable
428 name will look for the matching value inside CGI::Ex::Templates internal stash of variables
429 which is essentially a hash reference. This stash is initially populated by either passing
430 a hashref as the second argument to the process method, or by setting the "VARIABLES" or
431 "PRE_DEFINE" configuration variables.
432
433 ### some sample variables
434 my %vars = (
435 one => '1.0',
436 foo => 'bar',
437 vname => 'one',
438 some_code => sub { "You passed me (".join(', ', @_).")" },
439 some_data => {
440 a => 'A',
441 bar => 3234,
442 c => [3, 1, 4, 1, 5, 9],
443 vname => 'one',
444 },
445 my_list => [20 .. 50],
446 cet => CGI::Ex::Template->new,
447 );
448
449 ### pass the variables into the CET process
450 $cet->process($template_name, \%vars)
451 || die $cet->error;
452
453 ### pass the variables during object creation (will be available to every process call)
454 my $cet = CGI::Ex::Template->new(VARIABLES => \%vars);
455
456 =head2 GETTING VARIABLES
457
458 Once you have variables defined, they can be used directly in the template by using their name
459 in the stash. Or by using the GET directive.
460
461 [% foo %]
462 [% one %]
463 [% GET foo %]
464
465 Would print when processed:
466
467 bar
468 1.0
469 bar
470
471 To access members of a hashref or an arrayref, you can chain together the names using a ".".
472
473 [% some_data.a %]
474 [% my_list.0] [% my_list.1 %] [% my_list.-1 %]
475 [% some_data.c.2 %]
476
477 Would print:
478
479 A
480 20 21 50
481 4
482
483 If the value of a variable is a code reference, it will be called. You can add a set of parenthesis
484 and arguments to pass arguments. Arguments are variables and can be as complex as necessary.
485
486 [% some_code %]
487 [% some_code() %]
488 [% some_code(foo) %]
489 [% some_code(one, 2, 3) %]
490
491 Would print:
492
493 You passed me ().
494 You passed me ().
495 You passed me (bar).
496 You passed me (1.0, 2, 3).
497
498 If the value of a variable is an object, methods can be called using the "." operator.
499
500 [% cet %]
501
502 [% cet.dump_parse('1 + 2').replace('\s+', ' ') %]
503
504 Would print something like:
505
506 CGI::Ex::Template=HASH(0x814dc28)
507
508 $VAR1 = [ \[ '+', '1', '2' ], 0 ];
509
510 Each type of data (string, array and hash) have virtual methods
511 associated with them. Virtual methods allow for access to functions
512 that are commonly used on those types of data. For the full list of
513 built in virtual methods, please see the section titled VIRTUAL
514 METHODS
515
516 [% foo.length %]
517 [% my_list.size %]
518 [% some_data.c.join(" | ") %]
519
520 Would print:
521
522 3
523 31
524 3 | 1 | 4 | 5 | 9
525
526 It is also possible to "interpolate" variable names using a "$". This allows for storing
527 the name of a variable inside another variable. If a variable name is a little
528 more complex it can be embedded inside of "${" and "}".
529
530 [% $vname %]
531 [% ${vname} %]
532 [% ${some_data.vname} %]
533 [% some_data.$foo %]
534 [% some_data.${foo} %]
535
536 Would print:
537
538 1.0
539 1.0
540 1.0
541 3234
542 3234
543
544 In CET it is also possible to embed any expression (non-directive) in "${" and "}"
545 and it is possible to use non-integers for array access. (This is not available in TT2)
546
547 [% ['a'..'z'].${ 2.3 } %]
548 [% {ab => 'AB'}.${ 'a' ~ 'b' } %]
549 [% color = qw/Red Blue/; FOR [1..4] ; color.${ loop.index % color.size } ; END %]
550
551 Would print:
552
553 c
554 AB
555 RedBlueRedBlue
556
557 =head2 SETTING VARIABLES.
558
559 To define variables during processing, you can use the = operator. In most cases
560 this is the same as using the SET directive.
561
562 [% a = 234 %][% a %]
563 [% SET b = "Hello" %][% b %]
564
565 Would print:
566
567 234
568 Hello
569
570 It is also possible to create arrayrefs and hashrefs.
571
572 [% a = [1, 2, 3] %]
573 [% b = {key1 => 'val1', 'key2' => 'val2'} %]
574
575 [% a.1 %]
576 [% b.key1 %] [% b.key2 %]
577
578 Would print:
579
580 2
581 val1 val2
582
583 It is possible to set multiple values in the same SET directive.
584
585 [% SET a = 'A'
586 b = 'B'
587 c = 'C' %]
588 [% a %] [% b %] [% c %]
589
590 Would print:
591
592 A B C
593
594 It is also possible to unset variables, or to set members of
595 nested data structures.
596
597 [% a = 1 %]
598 [% SET a %]
599
600 [% b.0.c = 37 %]
601
602 ([% a %])
603 [% b.0.c %]
604
605 Would print
606
607 ()
608 37
609
610 =head1 LITERALS AND CONSTRUCTORS
611
612 The following are the types of literals (numbers and strings) and
613 constructors (hash and array constructs) allowed in CET. They can be
614 used as arguments to functions, in place of variables in directives,
615 and in place of variables in expressions. In CET it is also possible
616 to call virtual methods on literal values.
617
618 =over 4
619
620 =item Integers and Numbers.
621
622 [% 23423 %] Prints an integer.
623 [% 3.14159 %] Prints a number.
624 [% pi = 3.14159 %] Sets the value of the variable.
625 [% 3.13159.length %] Prints 7 (the string length of the number)
626
627 Scientific notation is supported.
628
629 [% 314159e-5 + 0 %] Prints 3.14159.
630
631 [% .0000001.fmt('%.1e') %] Prints 1.0e-07
632
633 Hexidecimal input is also supported.
634
635 [% 0xff + 0 %] Prints 255
636
637 [% 48875.fmt('%x') %] Prints beeb
638
639 =item Single quoted strings.
640
641 Returns the string. No variable interpolation happens.
642
643 [% 'foobar' %] Prints "foobar".
644 [% '$foo\n' %] Prints "$foo\\n". # the \\n is a literal "\" and an "n"
645 [% 'That\'s nice' %] Prints "That's nice".
646 [% str = 'A string' %] Sets the value of str.
647 [% 'A string'.split %] Splits the string on ' ' and returns the list.
648
649 Note: virtual methods can only be used on literal strings in CET, not in TT.
650
651 =item Double quoted strings.
652
653 Returns the string. Variable interpolation happens.
654
655 [% "foobar" %] Prints "foobar".
656 [% "$foo" %] Prints "bar" (assuming the value of foo is bar).
657 [% "${foo}" %] Prints "bar" (assuming the value of foo is bar).
658 [% "foobar\n" %] Prints "foobar\n". # the \n is a newline.
659 [% str = "Hello" %] Sets the value of str.
660 [% "foo".replace('foo','bar') %] Prints "bar".
661
662 Note: virtual methods can only be used on literal strings in CET, not in TT.
663
664 =item Array Constructs.
665
666 [% [1, 2, 3] %] Prints something like ARRAY(0x8309e90).
667 [% array1 = [1 .. 3] %] Sets the value of array1.
668 [% array2 = [foo, 'a', []] %] Sets the value of array2.
669 [% [4, 5, 6].size %] Prints 3.
670 [% [7, 8, 9].reverse.0 %] Prints 9.
671
672 Note: virtual methods can only be used on array contructs in CET, not in TT.
673
674 =item Quoted Array Constructs.
675
676 [% qw/1 2 3/ %] Prints something like ARRAY(0x8309e90).
677 [% array1 = qw{Foo Bar Baz} %] Sets the value of array1.
678 [% qw[4 5 6].size %] Prints 3.
679 [% qw(Red Blue).reverse.0 %] Prints Blue.
680
681 Note: this works in CET and is planned for TT3.
682
683 =item Hash Constructs.
684
685 [% {foo => 'bar'} %] Prints something like HASH(0x8305880)
686 [% hash = {foo => 'bar', c => {}} %] Sets the value of hash.
687 [% {a => 'A', b => 'B'}.size %] Prints 2.
688 [% {'a' => 'A', 'b' => 'B'}.size %] Prints 2.
689 [% name = "Tom" %]
690 [% {Tom => 'You are Tom',
691 Kay => 'You are Kay'}.$name %] Prints You are Tom
692
693 Note: virtual methods can only be used on hash contructs in CET, not in TT.
694
695 =head1 EXPRESSIONS
696
697 Expressions are one or more variables or literals joined together with
698 operators. An expression can be used anywhere a variable can be used
699 with the exception of the variable name in the SET directive, and the
700 filename of PROCESS, INCLUDE, WRAPPER, and INSERT.
701
702 The following section shows some samples of expressions. For a full list
703 of available operators, please see the section titled OPERATORS.
704
705 [% 1 + 2 %] Prints 3
706 [% 1 + 2 * 3 %] Prints 7
707 [% (1 + 2) * 3 %] Prints 9
708
709 [% x = 2 %]
710 [% y = 3 %]
711 [% z = x * (y - 1) %] Prints 4
712
713 =head1 VIRTUAL METHODS
714
715 The following is the list of builtin virtual methods and filters that
716 can be called on each type of data.
717
718 In CGI::Ex::Template, the "|" operator can be used to call virtual
719 methods just the same way that the "." operator can. The main
720 difference between the two is that on access to hashrefs or objects,
721 the "|" means to always call the virtual method or filter rather than
722 looking in the hashref for a key by that name, or trying to call that
723 method on the object. This is similar to how TT3 will function.
724
725 Virtual methods are also made available via Virtual Objects which
726 are discussed in a later section.
727
728 =head2 SCALAR VIRTUAL METHODS AND FILTERS
729
730 The following is the list of builtin virtual methods and filters
731 that can be called on scalar data types. In CET and TT3, filters and
732 virtual methods are more closely related than in TT2. In general anywhere a
733 virtual method can be used a filter can be used also - and likewise all scalar
734 virtual methods can be used as filters.
735
736 In addition to the filters listed below, CET will automatically load
737 Template::Filters and use them if Template::Toolkit is installed.
738
739 In addition to the scalar virtual methods, any scalar will be
740 automatically converted to a single item list if a list virtual method
741 is called on it.
742
743 Scalar virtual methods are also available through the "Text" virtual
744 object (except for true filters such as eval and redirect).
745
746 =over 4
747
748 =item '0'
749
750 [% item = 'foo' %][% item.0 %] Returns self. Allows for scalars to mask as arrays (scalars
751 already will, but this allows for more direct access).
752
753 =item chunk
754
755 [% item.chunk(60).join("\n") %] Split string up into a list of chunks of text 60 chars wide.
756
757 =item collapse
758
759 [% item.collapse %] Strip leading and trailing whitespace and collapse all other space to one space.
760
761 =item defined
762
763 [% item.defined %] Always true - because the undef sub translates all undefs to ''.
764
765 =item indent
766
767 [% item.indent(3) %] Indent that number of spaces.
768
769 [% item.indent("Foo: ") %] Add the string "Foo: " to the beginning of every line.
770
771 =item eval
772
773 [% item.eval %]
774
775 Process the string as though it was a template. This will start the parsing
776 engine and will use the same configuration as the current process. CET is several times
777 faster at doing this than TT is and is considered acceptable.
778
779 This is a filter and is not available via the Text virtual object.
780
781 =item evaltt
782
783 Same as the eval filter.
784
785 =item file
786
787 Same as the redirect filter.
788
789 =item fmt
790
791 [% item.fmt('%d') %]
792
793 Similar to format. Returns a string formatted with the passed pattern. Default pattern is %s.
794
795 =item format
796
797 [% item.format('%d') %] Print the string out in the specified format. It is similar to
798 the "as" virtual method, except that the item is split on newline and each line is
799 processed separately.
800
801 =item hash
802
803 [% item.hash %] Returns a one item hash with a key of "value" and a value of the item.
804
805 =item html
806
807 [% item.html %] Performs a very basic html encoding (swaps out &, <, > and " for the html entities)
808
809 =item int
810
811 [% item.int %] Return the integer portion of the value (0 if none).
812
813 =item lcfirst
814
815 [% item.lcfirst %] Capitalize the leading letter.
816
817 =item length
818
819 [% item.length %] Return the length of the string.
820
821 =item list
822
823 [% item.list %] Returns a list with a single value of the item.
824
825 =item lower
826
827 [% item.lower %] Return a lower-casified string.
828
829 =item match
830
831 [% item.match("(\w+) (\w+)") %] Return a list of items matching the pattern.
832
833 [% item.match("(\w+) (\w+)", 1) %] Same as before - but match globally.
834
835 =item null
836
837 [% item.null %] Do nothing.
838
839 =item rand
840
841 [% item = 10; item.rand %] Returns a number greater or equal to 0 but less than 10.
842 [% 1.rand %]
843
844 Note: This filter is not available as of TT2.15.
845
846 =item remove
847
848 [% item.remove("\s+") %] Same as replace - but is global and replaces with nothing.
849
850 =item redirect
851
852 [% item.redirect("output_file.html") %]
853
854 Writes the contents out to the specified file. The filename
855 must be relative to the OUTPUT_PATH configuration variable and the OUTPUT_PATH variable must be set.
856
857 This is a filter and is not available via the Text virtual object.
858
859 =item repeat
860
861 [% item.repeat(3) %] Repeat the item 3 times
862
863 [% item.repeat(3, ' | ') %] Repeat the item 3 times separated with ' | '
864
865 =item replace
866
867 [% item.replace("\s+", "&nbsp;") %] Globally replace all space with &nbsp;
868
869 [% item.replace("foo", "bar", 0) %] Replace only the first instance of foo with bar.
870
871 [% item.replace("(\w+)", "($1)") %] Surround all words with parenthesis.
872
873 =item search
874
875 [% item.search("(\w+)") %] Tests if the given pattern is in the string.
876
877 =item size
878
879 [% item.size %] Always returns 1.
880
881 =item split
882
883 [% item.split %] Returns an arrayref from the item split on " "
884
885 [% item.split("\s+") %] Returns an arrayref from the item split on /\s+/
886
887 [% item.split("\s+", 3) %] Returns an arrayref from the item split on /\s+/ splitting until 3 elements are found.
888
889 =item stderr
890
891 [% item.stderr %] Print the item to the current STDERR handle.
892
893 =item substr
894
895 [% item.substr(i) %] Returns a substring of item starting at i and going to the end of the string.
896
897 [% item.substr(i, n) %] Returns a substring of item starting at i and going n characters.
898
899 =item trim
900
901 [% item.trim %] Strips leading and trailing whitespace.
902
903 =item ucfirst
904
905 [% item.ucfirst %] Lower-case the leading letter.
906
907 =item upper
908
909 [% item.upper %] Return a upper-casified string.
910
911 =item uri
912
913 [% item.uri %] Perform a very basic URI encoding.
914
915 =back
916
917 =head2 LIST VIRTUAL METHODS
918
919 The following methods can be called on an arrayref type data structures (scalar
920 types will automatically promote to a single element list and call these methods
921 if needed):
922
923 Additionally, list virtual methods can be accessed via the List
924 Virtual Object.
925
926 =over 4
927
928 =item fmt
929
930 [% mylist.fmt('%s', ', ') %]
931
932 Passed a pattern and an string to join on. Returns a string of the values of the list
933 formatted with the passed pattern and joined with the passed string.
934 Default pattern is %s and the default join string is a space.
935
936 =item first
937
938 [% mylist.first(3) %] Returns a list of the first 3 items in the list.
939
940 =item grep
941
942 [% mylist.grep("^\w+\.\w+$") %] Returns a list of all items matching the pattern.
943
944 =item hash
945
946 [% mylist.hash %] Returns a hashref with the array indexes as keys and the values as values.
947
948 =item join
949
950 [% mylist.join %] Joins on space.
951 [% mylist.join(", ") Joins on the passed argument.
952
953 =item last
954
955 [% mylist.last(3) %] Returns a list of the last 3 items in the list.
956
957 =item list
958
959 [% mylist.list %] Returns a reference to the list.
960
961 =item max
962
963 [% mylist.max %] Returns the last item in the array.
964
965 =item merge
966
967 [% mylist.merge(list2) %] Returns a new list with all defined items from list2 added.
968
969 =item nsort
970
971 [% mylist.nsort %] Returns the numerically sorted items of the list. If the items are
972 hashrefs, a key containing the field to sort on can be passed.
973
974 =item pop
975
976 [% mylist.pop %] Removes and returns the last element from the arrayref (the stash is modified).
977
978 =item push
979
980 [% mylist.push(23) %] Adds an element to the end of the arrayref (the stash is modified).
981
982 =item random
983
984 [% mylist.random %] Returns a random item from the list.
985 [% ['a' .. 'z'].random %]
986
987 Note: This filter is not available as of TT2.15.
988
989 =item reverse
990
991 [% mylist.reverse %] Returns the list in reverse order.
992
993 =item shift
994
995 [% mylist.shift %] Removes and returns the first element of the arrayref (the stash is modified).
996
997 =item size
998
999 [% mylist.size %] Returns the number of elements in the array.
1000
1001 =item slice
1002
1003 [% mylist.slice(i, n) %] Returns a list from the arrayref beginning at index i and continuing for n items.
1004
1005 =item sort
1006
1007 [% mylist.sort %] Returns the alphabetically sorted items of the list. If the items are
1008 hashrefs, a key containing the field to sort on can be passed.
1009
1010 =item splice
1011
1012 [% mylist.splice(i, n) %] Removes items from array beginning at i and continuing for n items.
1013
1014 [% mylist.splice(i, n, list2) %] Same as before, but replaces removed items with the items
1015 from list2.
1016
1017 =item unique
1018
1019 [% mylist.unique %] Return a list of the unique items in the array.
1020
1021 =item unshift
1022
1023 [% mylist.unshift(23) %] Adds an item to the beginning of the arrayref.
1024
1025 =back 4
1026
1027 =head2 HASH VIRTUAL METHODS
1028
1029 The following methods can be called on hash type data structures:
1030
1031 Additionally, list virtual methods can be accessed via the Hash
1032 Virtual Object.
1033
1034 =over 4
1035
1036 =item fmt
1037
1038 [% myhash.fmt('%s => %s', "\n") %]
1039
1040 Passed a pattern and an string to join on. Returns a string of the key/value pairs
1041 of the hash formatted with the passed pattern and joined with the passed string.
1042 Default pattern is "%s\t%s" and the default join string is a newline.
1043
1044 =item defined
1045
1046 [% myhash.defined('a') %] Checks if a is defined in the hash.
1047
1048 =item delete
1049
1050 [% myhash.delete('a') %] Deletes the item from the hash.
1051
1052 =item each
1053
1054 [% myhash.each.join(", ") %] Turns the contents of the hash into a list - subject
1055 to change as TT is changing the operations of each and list.
1056
1057 =item exists
1058
1059 [% myhash.exists('a') %] Checks if a is in the hash.
1060
1061 =item hash
1062
1063 [% myhash.hash %] Returns a reference to the hash.
1064
1065 =item import
1066
1067 [% myhash.import(hash2) %] Overlays the keys of hash2 over the keys of myhash.
1068
1069 =item item
1070
1071 [% myhash.item(key) %] Returns the hashes value for that key.
1072
1073 =item items
1074
1075 [% myhash.items %] Returns a list of the key and values (flattened hash)
1076
1077 =item keys
1078
1079 [% myhash.keys.join(', ') %] Returns an arrayref of the keys of the hash.
1080
1081 =item list
1082
1083 [% myhash.list %] Returns an arrayref with the hash as a single value (subject to change).
1084
1085 =item pairs
1086
1087 [% myhash.pairs %] Returns an arrayref of hashrefs where each hash contains {key => $key, value => $value}
1088 for each value of the hash.
1089
1090 =item nsort
1091
1092 [% myhash.nsort.join(", ") %] Returns a numerically sorted list of the keys.
1093
1094 =item size
1095
1096 [% myhash.size %] Returns the number of key/value pairs in the hash.
1097
1098 =item sort
1099
1100 [% myhash.sort.join(", ") Returns an alphabetically sorted list.
1101
1102 =item values
1103
1104 [% myhash.values.join(', ') %] Returns an arrayref of the values of the hash.
1105
1106 =back
1107
1108 =head1 VIRTUAL OBJECTS
1109
1110 TT3 has a concept of Text, List, and Hash virtual objects which provide
1111 direct access to the scalar, list, and hash virtual methods. In the TT3
1112 engine this will allow for more concise generated code. Because CET does
1113 not generated perl code to be executed later, CET provides for these virtual
1114 objects but does so as more of a namespace (using the methods does not
1115 provide a speed optimization in your template - just may help clarify things).
1116
1117 [% a = "foo"; a.length %] => 3
1118
1119 [% a = "foo"; Text.length(a) %] => 3
1120
1121 [% a = Text.new("foo"); a.length %] => 3
1122
1123
1124 [% a = [1 .. 30]; a.size %] => 30
1125
1126 [% a = [1 .. 30]; List.size(a) %] => 30
1127
1128 [% a = List.new(1 .. 30); a.size %] => 30
1129
1130
1131 [% a = {a => 1, b => 2}; a.size %] => 2
1132
1133 [% a = {a => 1, b => 2}; Hash.size(a) %] => 2
1134
1135 [% a = Hash.new({a => 1, b => 2}); a.size %] => 2
1136
1137 [% a = Hash.new(a => 1, b => 2); a.size %] => 2
1138
1139 [% a = Hash.new(a = 1, b = 2); a.size %] => 2
1140
1141 [% a = Hash.new('a', 1, 'b', 2); a.size %] => 2
1142
1143 One limitation is that if you pass a key named "Text",
1144 "List", or "Hash" in your variable stash - the corresponding
1145 virtual object will be hidden.
1146
1147 Additionally, you can use all of the Virtual object methods with
1148 the pipe operator.
1149
1150 [% {a => 1, b => 2}
1151 | Hash.keys
1152 | List.join(", ") %] => a, b
1153
1154 Again, there aren't any speed optimizations to using the virtual
1155 objects in CET, but it can help clarify the intent in some cases.
1156
1157 Note: these aren't really objects. All of the "virtual objects" are
1158 references to the $SCALAR_OPS, $LIST_OPS, and $HASH_OPS hashes
1159 found in the $VOBJS hash of CGI::Ex::Template.
1160
1161 =head1 DIRECTIVES
1162
1163 This section contains the alphabetical list of DIRECTIVES available in
1164 the TT language. DIRECTIVES are the "functions" and control
1165 structures of the Template Toolkit mini-language. For further
1166 discussion and examples beyond what is listed below, please refer to
1167 the TT directives documentation.
1168
1169 [% IF 1 %]One[% END %]
1170 [% FOREACH a = [1 .. 3] %]
1171 a = [% a %]
1172 [% END %]
1173
1174 [% SET a = 1 %][% SET a = 2 %][% GET a %]
1175
1176 Multiple directives can be inside the same set of '[%' and '%]' tags
1177 as long as they are separated by space or semi-colons (;). Any block
1178 directive that can also be used as a post-operative directive (such as
1179 IF, WHILE, FOREACH, UNLESS, FILTER, and WRAPPER) must be separated
1180 from preceding directives with a semi-colon if it is being used as a
1181 block directive. It is more safe to always use a semi-colon. Note:
1182 separating by space is only available in CET but is a planned TT3
1183 feature.
1184
1185 [% SET a = 1 ; SET a = 2 ; GET a %]
1186 [% SET a = 1
1187 SET a = 2
1188 GET a
1189 %]
1190
1191 [% GET 1
1192 IF 0 # is a post-operative
1193 GET 2 %] # prints 2
1194
1195 [% GET 1;
1196 IF 0 # it is block based
1197 GET 2
1198 END
1199 %] # prints 1
1200
1201 The following is the list of directives.
1202
1203 =over 4
1204
1205 =item C<BLOCK>
1206
1207 Saves a block of text under a name for later use in PROCESS, INCLUDE,
1208 and WRAPPER directives. Blocks may be placed anywhere within the
1209 template being processed including after where they are used.
1210
1211 [% BLOCK foo %]Some text[% END %]
1212 [% PROCESS foo %]
1213
1214 Would print
1215
1216 Some text
1217
1218 [% INCLUDE foo %]
1219 [% BLOCK foo %]Some text[% END %]
1220
1221 Would print
1222
1223 Some text
1224
1225 Anonymous BLOCKS can be used for capturing.
1226
1227 [% a = BLOCK %]Some text[% END %][% a %]
1228
1229 Would print
1230
1231 Some text
1232
1233 Anonymous BLOCKS can be used with macros.
1234
1235
1236 =item C<BREAK>
1237
1238 Alias for LAST. Used for exiting FOREACH and WHILE loops.
1239
1240 =item C<CALL>
1241
1242 Calls the variable (and any underlying coderefs) as in the GET method, but
1243 always returns an empty string.
1244
1245 =item C<CASE>
1246
1247 Used with the SWITCH directive. See the L</"SWITCH"> directive.
1248
1249 =item C<CATCH>
1250
1251 Used with the TRY directive. See the L</"TRY"> directive.
1252
1253 =item C<CLEAR>
1254
1255 Clears any of the content currently generated in the innermost block
1256 or template. This can be useful when used in conjunction with the TRY
1257 statement to clear generated content if an error occurs later.
1258
1259 =item C<DEBUG>
1260
1261 Used to reset the DEBUG_FORMAT configuration variable, or to turn
1262 DEBUG statements on or off. This only has effect if the DEBUG_DIRS or
1263 DEBUG_ALL flags were passed to the DEBUG configuration variable.
1264
1265 [% DEBUG format '($file) (line $line) ($text)' %]
1266 [% DEBUG on %]
1267 [% DEBUG off %]
1268
1269 =item C<DEFAULT>
1270
1271 Similar to SET, but only sets the value if a previous value was not
1272 defined or was zero length.
1273
1274 [% DEFAULT foo = 'bar' %][% foo %] => 'bar'
1275
1276 [% foo = 'baz' %][% DEFAULT foo = 'bar' %][% foo %] => 'baz'
1277
1278 =item C<DUMP>
1279
1280 This is not provided in TT. DUMP inserts a Data::Dumper printout
1281 of the variable or expression. If no argument is passed it will
1282 dump the entire contents of the current variable stash (with
1283 private keys removed.
1284
1285 If the template is being processed in a web request, DUMP will html
1286 encode the DUMP automatically.
1287
1288 [% DUMP %] # dumps everything
1289
1290 [% DUMP 1 + 2 %]
1291
1292 =item C<ELSE>
1293
1294 Used with the IF directive. See the L</"IF"> directive.
1295
1296 =item C<ELSIF>
1297
1298 Used with the IF directive. See the L</"IF"> directive.
1299
1300 =item C<END>
1301
1302 Used to end a block directive.
1303
1304 =item C<FILTER>
1305
1306 Used to apply different treatments to blocks of text. It may operate as a BLOCK
1307 directive or as a post operative directive. CET supports all of the filters in
1308 Template::Filters. The lines between scalar virtual methods and filters is blurred (or
1309 non-existent) in CET. Anything that is a scalar virtual method may be used as a FILTER.
1310
1311 TODO - enumerate the at least 7 ways to pass and use filters.
1312
1313 =item C<'|'>
1314
1315 Alias for the FILTER directive. Note that | is similar to the
1316 '.' in CGI::Ex::Template. Therefore a pipe cannot be used directly after a
1317 variable name in some situations (the pipe will act only on that variable).
1318 This is the behavior employed by TT3.
1319
1320 =item C<FINAL>
1321
1322 Used with the TRY directive. See the L</"TRY"> directive.
1323
1324 =item C<FOR>
1325
1326 Alias for FOREACH
1327
1328 =item C<FOREACH>
1329
1330 Allows for iterating over the contents of any arrayref. If the variable is not an
1331 arrayref, it is automatically promoted to one.
1332
1333 [% FOREACH i IN [1 .. 3] %]
1334 The variable i = [% i %]
1335 [%~ END %]
1336
1337 [% a = [1 .. 3] %]
1338 [% FOREACH j IN a %]
1339 The variable j = [% j %]
1340 [%~ END %]
1341
1342 Would print:
1343
1344 The variable i = 1
1345 The variable i = 2
1346 The variable i = 3
1347
1348 The variable j = 1
1349 The variable j = 2
1350 The variable j = 3
1351
1352 You can also use the "=" instead of "IN" or "in".
1353
1354 [% FOREACH i = [1 .. 3] %]
1355 The variable i = [% i %]
1356 [%~ END %]
1357
1358 Same as before.
1359
1360 Setting into a variable is optional.
1361
1362 [% a = [1 .. 3] %]
1363 [% FOREACH a %] Hi [% END %]
1364
1365 Would print:
1366
1367 hi hi hi
1368
1369 If the item being iterated is a hashref and the FOREACH does not
1370 set into a variable, then values of the hashref are copied into
1371 the variable stash.
1372
1373 [% FOREACH [{a => 1}, {a => 2}] %]
1374 Key a = [% a %]
1375 [%~ END %]
1376
1377 Would print:
1378
1379 Key a = 1
1380 Key a = 2
1381
1382 The FOREACH process uses the CGI::Ex::Template::Iterator class to handle
1383 iterations (It is compatible with Template::Iterator). During the FOREACH
1384 loop an object blessed into the iterator class is stored in the variable "loop".
1385
1386 The loop variable provides the following information during a FOREACH:
1387
1388 index - the current index
1389 max - the max index of the list
1390 size - the number of items in the list
1391 count - index + 1
1392 number - index + 1
1393 first - true if on the first item
1394 last - true if on the last item
1395 next - return the next item in the list
1396 prev - return the previous item in the list
1397
1398 The following:
1399
1400 [% FOREACH [1 .. 3] %] [% loop.count %]/[% loop.size %] [% END %]
1401
1402 Would print:
1403
1404 1/3 2/3 3/3
1405
1406 The iterator is also available using a plugin. This allows for access
1407 to multiple "loop" variables in a nested FOREACH directive.
1408
1409 [%~ USE outer_loop = Iterator(["a", "b"]) %]
1410 [%~ FOREACH i = outer_loop %]
1411 [%~ FOREACH j = ["X", "Y"] %]
1412 [% outer_loop.count %]-[% loop.count %] = ([% i %] and [% j %])
1413 [%~ END %]
1414 [%~ END %]
1415
1416 Would print:
1417
1418 1-1 = (a and X)
1419 1-2 = (a and Y)
1420 2-1 = (b and X)
1421 2-2 = (b and Y)
1422
1423 FOREACH may also be used as a post operative directive.
1424
1425 [% "$i" FOREACH i = [1 .. 5] %] => 12345
1426
1427 =item C<GET>
1428
1429 Return the value of a variable or expression.
1430
1431 [% GET a %]
1432
1433 The GET keyword may be omitted.
1434
1435 [% a %]
1436
1437 [% 7 + 2 - 3 %] => 6
1438
1439 See the section on VARIABLES.
1440
1441 =item C<IF (IF / ELSIF / ELSE)>
1442
1443 Allows for conditional testing. Expects an expression as its only
1444 argument. If the expression is true, the contents of its block are
1445 processed. If false, the processor looks for an ELSIF block. If an
1446 ELSIF's expression is true then it is processed. Finally it looks for
1447 an ELSE block which is processed if none of the IF or ELSIF's
1448 expressions were true.
1449
1450 [% IF a == b %]A equaled B[% END %]
1451
1452 [% IF a == b -%]
1453 A equaled B
1454 [%- ELSIF a == c -%]
1455 A equaled C
1456 [%- ELSE -%]
1457 Couldn't determine that A equaled anything.
1458 [%- END %]
1459
1460 IF may also be used as a post operative directive.
1461
1462 [% 'A equaled B' IF a == b %]
1463
1464 =item C<INCLUDE>
1465
1466 Parse the contents of a file or block and insert them. Variables defined
1467 or modifications made to existing variables are discarded after
1468 a template is included.
1469
1470 [% INCLUDE path/to/template.html %]
1471
1472 [% INCLUDE "path/to/template.html" %]
1473
1474 [% file = "path/to/template.html" %]
1475 [% INCLUDE $file %]
1476
1477 [% BLOCK foo %]This is foo[% END %]
1478 [% INCLUDE foo %]
1479
1480 Arguments may also be passed to the template:
1481
1482 [% INCLUDE "path/to/template.html" a = "An arg" b = "Another arg" %]
1483
1484 Filenames must be relative to INCLUDE_PATH unless the ABSOLUTE
1485 or RELATIVE configuration items are set.
1486
1487 =item C<INSERT>
1488
1489 Insert the contents of a file without template parsing.
1490
1491 Filenames must be relative to INCLUDE_PATH unless the ABSOLUTE
1492 or RELATIVE configuration items are set.
1493
1494 =item C<LAST>
1495
1496 Used to exit out of a WHILE or FOREACH loop.
1497
1498 =item C<MACRO>
1499
1500 Takes a directive and turns it into a variable that can take arguments.
1501
1502 [% MACRO foo(i, j) BLOCK %]You passed me [% i %] and [% j %].[% END %]
1503
1504 [%~ foo("a", "b") %]
1505 [% foo(1, 2) %]
1506
1507 Would print:
1508
1509 You passed me a and b.
1510 You passed me 1 and 2.
1511
1512 Another example:
1513
1514 [% MACRO bar(max) FOREACH i = [1 .. max] %]([% i %])[% END %]
1515
1516 [%~ bar(4) %]
1517
1518 Would print:
1519
1520 (1)(2)(3)(4)
1521
1522 =item C<META>
1523
1524 Used to define variables that will be available via either the
1525 template or component namespace.
1526
1527 Once defined, they cannot be overwritten.
1528
1529 [% template.foobar %]
1530 [%~ META foobar = 'baz' %]
1531 [%~ META foobar = 'bing' %]
1532
1533 Would print:
1534
1535 baz
1536
1537 =item C<NEXT>
1538
1539 Used to go to the next iteration of a WHILE or FOREACH loop.
1540
1541 =item C<PERL>
1542
1543 Only available if the EVAL_PERL configuration item is true (default is false).
1544
1545 Allow eval'ing the block of text as perl. The block will be parsed and then eval'ed.
1546
1547 [% a = "BimBam" %]
1548 [%~ PERL %]
1549 my $a = "[% a %]";
1550 print "The variable \$a was \"$a\"";
1551 $stash->set('b', "FooBar");
1552 [% END %]
1553 [% b %]
1554
1555 Would print:
1556
1557 The variable $a was "BimBam"
1558 FooBar
1559
1560 During execution, anything printed to STDOUT will be inserted into the template. Also,
1561 the $stash and $context variables are set and are references to objects that mimic the
1562 interface provided by Template::Context and Template::Stash. These are provided for
1563 compatibility only. $self contains the current CGI::Ex::Template object.
1564
1565 =item C<PROCESS>
1566
1567 Parse the contents of a file or block and insert them. Unlike INCLUDE,
1568 no variable localization happens so variables defined or modifications made
1569 to existing variables remain after the template is processed.
1570
1571 [% PROCESS path/to/template.html %]
1572
1573 [% PROCESS "path/to/template.html" %]
1574
1575 [% file = "path/to/template.html" %]
1576 [% PROCESS $file %]
1577
1578 [% BLOCK foo %]This is foo[% END %]
1579 [% PROCESS foo %]
1580
1581 Arguments may also be passed to the template:
1582
1583 [% PROCESS "path/to/template.html" a = "An arg" b = "Another arg" %]
1584
1585 Filenames must be relative to INCLUDE_PATH unless the ABSOLUTE
1586 or RELATIVE configuration items are set.
1587
1588 =item C<RAWPERL>
1589
1590 Only available if the EVAL_PERL configuration item is true (default is false).
1591 Similar to the PERL directive, but you will need to append
1592 to the $output variable rather than just calling PRINT.
1593
1594 =item C<RETURN>
1595
1596 Used to exit the innermost block or template and continue processing
1597 in the surrounding block or template.
1598
1599 =item C<SET>
1600
1601 Used to set variables.
1602
1603 [% SET a = 1 %][% a %] => "1"
1604 [% a = 1 %][% a %] => "1"
1605 [% b = 1 %][% SET a = b %][% a %] => "1"
1606 [% a = 1 %][% SET a %][% a %] => ""
1607 [% SET a = [1, 2, 3] %][% a.1 %] => "2"
1608 [% SET a = {b => 'c'} %][% a.b %] => "c"
1609
1610 =item C<STOP>
1611
1612 Used to exit the entire process method (out of all blocks and templates).
1613 No content will be processed beyond this point.
1614
1615 =item C<SWITCH>
1616
1617 Allow for SWITCH and CASE functionality.
1618
1619 [% a = "hi" %]
1620 [% b = "bar" %]
1621 [% SWITCH a %]
1622 [% CASE "foo" %]a was foo
1623 [% CASE b %]a was bar
1624 [% CASE ["hi", "hello"] %]You said hi or hello
1625 [% CASE DEFAULT %]I don't know what you said
1626 [% END %]
1627
1628 Would print:
1629
1630 You said hi or hello
1631
1632 =item C<TAGS>
1633
1634 Change the type of enclosing braces used to delineate template tags. This
1635 remains in effect until the end of the enclosing block or template or until
1636 the next TAGS directive. Either a named set of tags must be supplied, or
1637 two tags themselves must be supplied.
1638
1639 [% TAGS html %]
1640
1641 [% TAGS <!-- --> %]
1642
1643 The named tags are (duplicated from TT):
1644
1645 template => ['[%', '%]'], # default
1646 metatext => ['%%', '%%'], # Text::MetaText
1647 star => ['[*', '*]'], # TT alternate
1648 php => ['<?', '?>'], # PHP
1649 asp => ['<%', '%>'], # ASP
1650 mason => ['<%', '>' ], # HTML::Mason
1651 html => ['<!--', '-->'], # HTML comments
1652
1653 =item C<THROW>
1654
1655 Allows for throwing an exception. If the exception is not caught
1656 via the TRY DIRECTIVE, the template will abort processing of the directive.
1657
1658 [% THROW mytypes.sometime 'Something happened' arg1 => val1 %]
1659
1660 See the TRY directive for examples of usage.
1661
1662 =item C<TRY>
1663
1664 The TRY block directive will catch exceptions that are thrown
1665 while processing its block (It cannot catch parse errors unless
1666 they are in included files or evaltt'ed strings. The TRY block
1667 will then look for a CATCH block that will be processed. While
1668 it is being processed, the "error" variable will be set with the thrown
1669 exception as the value. After the TRY block - the FINAL
1670 block will be ran whether or not an error was thrown (unless a CATCH
1671 block throws an error).
1672
1673 Note: Parse errors cannot be caught unless they are in an eval FILTER, or are
1674 in a separate template being INCLUDEd or PROCESSed.
1675
1676 [% TRY %]
1677 Nothing bad happened.
1678 [% CATCH %]
1679 Caught the error.
1680 [% FINAL %]
1681 This section runs no matter what happens.
1682 [% END %]
1683
1684 Would print:
1685
1686 Nothing bad happened.
1687 This section runs no matter what happens.
1688
1689 Another example:
1690
1691 [% TRY %]
1692 [% THROW "Something happened" %]
1693 [% CATCH %]
1694 Error: [% error %]
1695 Error.type: [% error.type %]
1696 Error.info: [% error.info %]
1697 [% FINAL %]
1698 This section runs no matter what happens.
1699 [% END %]
1700
1701 Would print:
1702
1703 Error: undef error - Something happened
1704 Error.type: undef
1705 Error.info: Something happened
1706 This section runs no matter what happens.
1707
1708 You can give the error a type and more information including named arguments.
1709 This information replaces the "info" property of the exception.
1710
1711 [% TRY %]
1712 [% THROW foo.bar "Something happened" "grrrr" foo => 'bar' %]
1713 [% CATCH %]
1714 Error: [% error %]
1715 Error.type: [% error.type %]
1716 Error.info: [% error.info %]
1717 Error.info.0: [% error.info.0 %]
1718 Error.info.1: [% error.info.1 %]
1719 Error.info.args.0: [% error.info.args.0 %]
1720 Error.info.foo: [% error.info.foo %]
1721 [% END %]
1722
1723 Would print something like:
1724
1725 Error: foo.bar error - HASH(0x82a395c)
1726 Error.type: foo.bar
1727 Error.info: HASH(0x82a395c)
1728 Error.info.0: Something happened
1729 Error.info.1: grrrr
1730 Error.info.args.0: Something happened
1731 Error.info.foo: bar
1732
1733 You can also give the CATCH block a type to catch. And you
1734 can nest TRY blocks. If types are specified, CET will try and
1735 find the closest matching type. Also, an error object can
1736 be re-thrown using $error as the argument to THROW.
1737
1738 [% TRY %]
1739 [% TRY %]
1740 [% THROW foo.bar "Something happened" %]
1741 [% CATCH bar %]
1742 Caught bar.
1743 [% CATCH DEFAULT %]
1744 Caught default - but rethrew.
1745 [% THROW $error %]
1746 [% END %]
1747 [% CATCH foo %]
1748 Caught foo.
1749 [% CATCH foo.bar %]
1750 Caught foo.bar.
1751 [% CATCH %]
1752 Caught anything else.
1753 [% END %]
1754
1755 Would print:
1756
1757 Caught default - but rethrew.
1758
1759 Caught foo.bar.
1760
1761 =item C<UNLESS>
1762
1763 Same as IF but condition is negated.
1764
1765 [% UNLESS 0 %]hi[% END %] => hi
1766
1767 Can also be a post operative directive.
1768
1769 =item C<USE>
1770
1771 Allows for loading a Template::Toolkit style plugin.
1772
1773 [% USE iter = Iterator(['foo', 'bar']) %]
1774 [%~ iter.get_first %]
1775 [% iter.size %]
1776
1777 Would print:
1778
1779 foo
1780 2
1781
1782 Note that it is possible to send arguments to the new object
1783 constructor. It is also possible to omit the variable name being
1784 assigned. In that case the name of the plugin becomes the variable.
1785
1786 [% USE Iterator(['foo', 'bar', 'baz']) %]
1787 [%~ Iterator.get_first %]
1788 [% Iterator.size %]
1789
1790 Would print:
1791
1792 foo
1793 3
1794
1795 Plugins that are loaded are looked up for in the namespace listed in
1796 the PLUGIN_BASE directive which defaults to Template::Plugin. So in
1797 the previous example, if Template::Toolkit was installed, the iter
1798 object would loaded by the class Template::Plugin::Iterator. In CET,
1799 an effective way to disable plugins is to set the PLUGIN_BASE to a
1800 non-existent base such as "_" (In TT it will still fall back to look
1801 in Template::Plugin).
1802
1803 Note: The iterator plugin will fall back and use
1804 CGI::Ex::Template::Iterator if Template::Toolkit is not installed. No
1805 other plugins come installed with CGI::Ex::Template.
1806
1807 The names of the Plugin being loaded from PLUGIN_BASE are case
1808 insensitive. However, using case insensitive names is bad as it
1809 requires scanning the @INC directories for any module matching the
1810 PLUGIN_BASE and caching the result (OK - not that bad).
1811
1812 If the plugin is not found and the LOAD_PERL directive is set, then
1813 CET will try and load a module by that name (note: this type of lookup
1814 is case sensitive and will not scan the @INC dirs for a matching
1815 file).
1816
1817 # The LOAD_PERL directive should be set to 1
1818 [% USE cet = CGI::Ex::Template %]
1819 [%~ cet.dump_parse('2 * 3').replace('\s+', ' ') %]
1820
1821 Would print:
1822
1823 $VAR1 = [ \[ '*', '2', '3' ], 0 ];
1824
1825 See the PLUGIN_BASE, and PLUGINS configuration items.
1826
1827 See the documentation for Template::Manual::Plugins.
1828
1829 =item C<WHILE>
1830
1831 Will process a block of code while a condition is true.
1832
1833 [% WHILE i < 3 %]
1834 [%~ i = i + 1 %]
1835 i = [% i %]
1836 [%~ END %]
1837
1838 Would print:
1839
1840 i = 1
1841 i = 2
1842 i = 3
1843
1844 You could also do:
1845
1846 [% i = 4 %]
1847 [% WHILE (i = i - 1) %]
1848 i = [% i %]
1849 [%~ END %]
1850
1851 Would print:
1852
1853 i = 3
1854 i = 2
1855 i = 1
1856
1857 Note that (f = f - 1) is a valid expression that returns the value
1858 of the assignment. The parenthesis are not optional.
1859
1860 WHILE has a built in limit of 1000 iterations. This is controlled by the
1861 global variable $WHILE_MAX in CGI::Ex::Template.
1862
1863 WHILE may also be used as a post operative directive.
1864
1865 [% "$i" WHILE (i = i + 1) < 7 %] => 123456
1866
1867 =item C<WRAPPER>
1868
1869 Block directive. Processes contents of its block and then passes them
1870 in the [% content %] variable to the block or filename listed in the
1871 WRAPPER tag.
1872
1873 [% WRAPPER foo %]
1874 My content to be processed.[% a = 2 %]
1875 [% END %]
1876
1877 [% BLOCK foo %]
1878 A header ([% a %]).
1879 [% content %]
1880 A footer ([% a %]).
1881 [% END %]
1882
1883 This would print.
1884
1885 A header (2).
1886 My content to be processed.
1887 A footer (2).
1888
1889 The WRAPPER directive may also be used as a post directive.
1890
1891 [% BLOCK baz %]([% content %])[% END -%]
1892 [% "foobar" WRAPPER baz %]
1893
1894 Would print
1895
1896 (foobar)');
1897
1898 =back
1899
1900
1901
1902 =head1 OPERATORS
1903
1904 The following operators are available in CGI::Ex::Template. Except
1905 where noted these are the same operators available in TT. They are
1906 listed in the order of their precedence (the higher the precedence the
1907 tighter it binds).
1908
1909 =over 4
1910
1911 =item C<.>
1912
1913 The dot operator. Allows for accessing sub-members, methods, or
1914 virtual methods of nested data structures.
1915
1916 my $obj->process(\$content, {a => {b => [0, {c => [34, 57]}]}}, \$output);
1917
1918 [% a.b.1.c.0 %] => 34
1919
1920 Note: on access to hashrefs, any hash keys that match the sub key name
1921 will be used before a virtual method of the same name. For example if
1922 a passed hash contained pair with a keyname "defined" and a value of
1923 "2", then any calls to hash.defined(another_keyname) would always
1924 return 2 rather than using the vmethod named "defined." To get around
1925 this limitation use the "|" operator (listed next). Also - on objects
1926 the "." will always try and call the method by that name. To always
1927 call the vmethod - use "|".
1928
1929 =item C<|>
1930
1931 The pipe operator. Similar to the dot operator. Allows for
1932 explicit calling of virtual methods and filters (filters are "merged"
1933 with virtual methods in CGI::Ex::Template and TT3) when accessing
1934 hashrefs and objects. See the note for the "." operator.
1935
1936 The pipe character is similar to TT2 in that it can be used in place
1937 of a directive as an alias for FILTER. It similar to TT3 in that it
1938 can be used for virtual method access. This duality is one source of
1939 difference between CGI::Ex::Template and TT2 compatibility. Templates
1940 that have directives that end with a variable name that then use the
1941 "|" directive to apply a filter will be broken as the "|" will be
1942 applied to the variable name.
1943
1944 The following two cases will do the same thing.
1945
1946 [% foo | html %]
1947
1948 [% foo FILTER html %]
1949
1950 Though they do the same thing, internally, foo|html is stored as a
1951 single variable while "foo FILTER html" is stored as the variable foo
1952 which is then passed to the FILTER html.
1953
1954 A TT2 sample that would break in CGI::Ex::Template or TT3 is:
1955
1956 [% PROCESS foo a = b | html %]
1957
1958 Under TT2 the content returned by "PROCESS foo a = b" would all be
1959 passed to the html filter. Under CGI::Ex::Template and TT3, b would
1960 be passed to the html filter before assigning it to the variable "a"
1961 before the template foo was processed.
1962
1963 A simple fix is to do any of the following:
1964
1965 [% PROCESS foo a = b FILTER html %]
1966
1967 [% | html %][% PROCESS foo a = b %][% END %]
1968
1969 [% FILTER html %][% PROCESS foo a = b %][% END %]
1970
1971 This shouldn't be too much hardship and offers the great return of disambiguating
1972 virtual method access.
1973
1974 =item C<++ -->
1975
1976 Pre and post increment and decrement. My be used as either a prefix
1977 or postfix operator.
1978
1979 [% ++a %][% ++a %] => 12
1980
1981 [% a++ %][% a++ %] => 01
1982
1983 [% --a %][% --a %] => -1-2
1984
1985 [% a-- %][% a-- %] => 0-1
1986
1987 =item C<** ^ pow>
1988
1989 Right associative binary. X raised to the Y power. This isn't available in TT 2.15.
1990
1991 [% 2 ** 3 %] => 8
1992
1993 =item C<!>
1994
1995 Prefix not. Negation of the value.
1996
1997 =item C<->
1998
1999 Prefix minus. Returns the value multiplied by -1.
2000
2001 [% a = 1 ; b = -a ; b %] => -1
2002
2003 =item C<*>
2004
2005 Left associative binary. Multiplication.
2006
2007 =item C</ div DIV>
2008
2009 Left associative binary. Division. Note that / is floating point division, but div and
2010 DIV are integer division.
2011
2012 [% 10 / 4 %] => 2.5
2013 [% 10 div 4 %] => 2
2014
2015 =item C<% mod MOD>
2016
2017 Left associative binary. Modulus.
2018
2019 [% 15 % 8 %] => 7
2020
2021 =item C<+>
2022
2023 Left associative binary. Addition.
2024
2025 =item C<->
2026
2027 Left associative binary. Minus.
2028
2029 =item C<_ ~>
2030
2031 Left associative binary. String concatenation.
2032
2033 [% "a" ~ "b" %] => ab
2034
2035 =item C<< < > <= >= >>
2036
2037 Non associative binary. Numerical comparators.
2038
2039 =item C<lt gt le ge>
2040
2041 Non associative binary. String comparators.
2042
2043 =item C<== eq>
2044
2045 Non associative binary. Equality test. TT chose to use Perl's eq for both operators.
2046 There is no test for numeric equality.
2047
2048 =item C<!= ne>
2049
2050 Non associative binary. Non-equality test. TT chose to use Perl's ne for both
2051 operators. There is no test for numeric non-equality.
2052
2053 =item C<&&>
2054
2055 Left associative binary. And. All values must be true. If all values are true, the last
2056 value is returned as the truth value.
2057
2058 [% 2 && 3 && 4 %] => 4
2059
2060 =item C<||>
2061
2062 Right associative binary. Or. The first true value is returned.
2063
2064 [% 0 || '' || 7 %] => 7
2065
2066 Note: perl is left associative on this operator - but it doesn't matter because
2067 || has its own precedence level. Setting it to right allows for CET to short
2068 circuit earlier in the expression optree (left is (((1,2), 3), 4) while right
2069 is (1, (2, (3, 4))).
2070
2071 =item C<..>
2072
2073 Non associative binary. Range creator. Returns an arrayref containing the values
2074 between and including the first and last arguments.
2075
2076 [% t = [1 .. 5] %] => variable t contains an array with 1,2,3,4, and 5
2077
2078 It is possible to place multiple ranges in the same [] constructor. This is not available in TT.
2079
2080 [% t = [1..3, 6..8] %] => variable t contains an array with 1,2,3,6,7,8
2081
2082 The .. operator is the only operator that returns a list of items.
2083
2084 =item C<? :>
2085
2086 Ternary - right associative. Can be nested with other ?: pairs.
2087
2088 [% 1 ? 2 : 3 %] => 2
2089 [% 0 ? 2 : 3 %] => 3
2090
2091 =item C<*= += -= /= **= %= ~=>
2092
2093 Self-modifying assignment - right associative. Sets the left hand side
2094 to the operation of the left hand side and right (clear as mud).
2095 In order to not conflict with SET, FOREACH and other operations, this
2096 operator is only available in parenthesis.
2097
2098 [% a = 2 %][% a += 3 %] --- [% a %] => --- 5 # is was handled by SET
2099 [% a = 2 %][% (a += 3) %] --- [% a %] => 5 --- 5
2100
2101 =item C<=>
2102
2103 Assignment - right associative. Sets the left-hand side to the value of the righthand side. In order
2104 to not conflict with SET, FOREACH and other operations, this operator is only
2105 available in parenthesis. Returns the value of the righthand side.
2106
2107 [% a = 1 %] --- [% a %] => --- 1 # is was handled by SET
2108 [% (a = 1) %] --- [% a %] => 1 --- 1
2109
2110 =item C<not NOT>
2111
2112 Prefix. Lower precedence version of the '!' operator.
2113
2114 =item C<and AND>
2115
2116 Left associative. Lower precedence version of the '&&' operator.
2117
2118 =item C<or OR>
2119
2120 Right associative. Lower precedence version of the '||' operator.
2121
2122 =item C<hash>
2123
2124 This operator is not used in TT. It is used internally
2125 by CGI::Ex::Template to delay the creation of a hash until the
2126 execution of the compiled template.
2127
2128 =item C<array>
2129
2130 This operator is not used in TT. It is used internally
2131 by CGI::Ex::Template to delay the creation of an array until the
2132 execution of the compiled template.
2133
2134 =back
2135
2136
2137 =head1 CHOMPING
2138
2139 Chomping refers to the handling of whitespace immediately before and
2140 immediately after template tags. By default, nothing happens to this
2141 whitespace. Modifiers can be placed just inside the opening and just
2142 before the closing tags to control this behavior.
2143
2144 Additionally, the PRE_CHOMP and POST_CHOMP configuration variables can
2145 be set and will globally control all chomping behavior for tags that
2146 do not have their own chomp modifier. PRE_CHOMP and POST_CHOMP can
2147 be set to any of the following values:
2148
2149 none: 0 + Template::Constants::CHOMP_NONE
2150 one: 1 - Template::Constants::CHOMP_ONE
2151 collapse: 2 = Template::Constants::CHOMP_COLLAPSE
2152 greedy: 3 ~ Template::Constants::CHOMP_GREEDY
2153
2154 =over 4
2155
2156 =item CHOMP_NONE
2157
2158 Don't do any chomping. The "+" sign is used to indicate CHOMP_NONE.
2159
2160 Hello.
2161
2162 [%+ "Hi." +%]
2163
2164 Howdy.
2165
2166 Would print:
2167
2168 Hello.
2169
2170 Hi.
2171
2172 Howdy.
2173
2174 =item CHOMP_ONE (formerly known as CHOMP_ALL)
2175
2176 Delete any whitespace up to the adjacent newline. The "-" is used to indicate CHOMP_ONE.
2177
2178 Hello.
2179
2180 [%- "Hi." -%]
2181
2182 Howdy.
2183
2184 Would print:
2185
2186 Hello.
2187 Hi.
2188 Howdy.
2189
2190 =item CHOMP_COLLAPSE
2191
2192 Collapse adjacent whitespace to a single space. The "=" is used to indicate CHOMP_COLLAPSE.
2193
2194 Hello.
2195
2196 [%= "Hi." =%]
2197
2198 Howdy.
2199
2200 Would print:
2201
2202 Hello. Hi. Howdy.
2203
2204 =item CHOMP_GREEDY
2205
2206 Remove all adjacent whitespace. The "~" is used to indicate CHOMP_GREEDY.
2207
2208 Hello.
2209
2210 [%~ "Hi." ~%]
2211
2212 Howdy.
2213
2214 Would print:
2215
2216 Hello.Hi.Howdy.
2217
2218 =head1 CONFIGURATION
2219
2220 The following TT2 configuration variables are supported (in
2221 alphabetical order). Note: for further discussion you can refer to
2222 the TT config documentation.
2223
2224 These variables should be passed to the "new" constructor.
2225
2226 my $obj = CGI::Ex::Template->new(
2227 VARIABLES => \%hash_of_variables,
2228 AUTO_RESET => 0,
2229 TRIM => 1,
2230 POST_CHOMP => "=",
2231 PRE_CHOMP => "-",
2232 );
2233
2234
2235 =over 4
2236
2237 =item ABSOLUTE
2238
2239 Boolean. Default false. Are absolute paths allowed for included files.
2240
2241 =item AUTO_RESET
2242
2243 Boolean. Default 1. Clear blocks that were set during the process method.
2244
2245 =item BLOCKS
2246
2247 A hashref of blocks that can be used by the process method.
2248
2249 BLOCKS => {
2250 block_1 => sub { ... }, # coderef that returns a block
2251 block_2 => 'A String', # simple string
2252 },
2253
2254 Note that a Template::Document cannot be supplied as a value (TT
2255 supports this). However, it is possible to supply a value that is
2256 equal to the hashref returned by the load_parsed_tree method.
2257
2258 =item CACHE_SIZE
2259
2260 Number of compiled templates to keep in memory. Default undef.
2261 Undefined means to allow all templates to cache. A value of 0 will
2262 force no caching. The cache mechanism will clear templates that have
2263 not been used recently.
2264
2265 =item COMPILE_DIR
2266
2267 Base directory to store compiled templates. Default undef. Compiled
2268 templates will only be stored if one of COMPILE_DIR and COMPILE_EXT is
2269 set.
2270
2271 =item COMPILE_EXT
2272
2273 Extension to add to stored compiled template filenames. Default undef.
2274
2275 =item CONSTANTS
2276
2277 Hashref. Used to define variables that will be "folded" into the
2278 compiled template. Variables defined here cannot be overridden.
2279
2280 CONSTANTS => {my_constant => 42},
2281
2282 A template containing:
2283
2284 [% constants.my_constant %]
2285
2286 Will have the value 42 compiled in.
2287
2288 Constants defined in this way can be chained as in [%
2289 constant.foo.bar.baz %].
2290
2291 =item CONSTANT_NAMESPACE
2292
2293 Allow for setting the top level of values passed in CONSTANTS. Default
2294 value is 'constants'.
2295
2296 =item DEBUG
2297
2298 Takes a list of constants |'ed together which enables different
2299 debugging modes. Alternately the lowercase names may be used
2300 (multiple values joined by a ",").
2301
2302 The only supported TT values are:
2303 DEBUG_UNDEF (2) - debug when an undefined value is used.
2304 DEBUG_DIRS (8) - debug when a directive is used.
2305 DEBUG_ALL (2047) - turn on all debugging.
2306
2307 Either of the following would turn on undef and directive debugging:
2308
2309 DEBUG => 'undef, dirs', # preferred
2310 DEBUG => 2 | 8,
2311 DEBUG => DEBUG_UNDEF | DEBUG_DIRS, # constants from Template::Constants
2312
2313 =item DEBUG_FORMAT
2314
2315 Change the format of messages inserted when DEBUG has DEBUG_DIRS set on.
2316 This essentially the same thing as setting the format using the DEBUG
2317 directive.
2318
2319 =item DEFAULT
2320
2321 The name of a default template file to use if the passed one is not found.
2322
2323 =item DELIMITER
2324
2325 String to use to split INCLUDE_PATH with. Default is :. It is more
2326 straight forward to just send INCLUDE_PATH an arrayref of paths.
2327
2328 =item END_TAG
2329
2330 Set a string to use as the closing delimiter for TT. Default is "%]".
2331
2332 =item EVAL_PERL
2333
2334 Boolean. Default false. If set to a true value, PERL and RAWPERL blocks
2335 will be allowed to run. This is a potential security hole, as arbitrary
2336 perl can be included in the template. If Template::Toolkit is installed,
2337 a true EVAL_PERL value also allows the perl and evalperl filters to be used.
2338
2339 =item FILTERS
2340
2341 Allow for passing in TT style filters.
2342
2343 my $filters = {
2344 filter1 => sub { my $str = shift; $s =~ s/./1/gs; $s },
2345 filter2 => [sub { my $str = shift; $s =~ s/./2/gs; $s }, 0],
2346 filter3 => [sub { my ($context, @args) = @_; return sub { my $s = shift; $s =~ s/./3/gs; $s } }, 1],
2347 };
2348
2349 my $str = q{
2350 [% a = "Hello" %]
2351 1 ([% a | filter1 %])
2352 2 ([% a | filter2 %])
2353 3 ([% a | filter3 %])
2354 };
2355
2356 my $obj = CGI::Ex::Template->new(FILTERS => $filters);
2357 $obj->process(\$str) || die $obj->error;
2358
2359 Would print:
2360
2361 1 (11111)
2362 2 (22222)
2363 3 (33333)
2364
2365 Filters passed in as an arrayref should contain a coderef and a value
2366 indicating if they are dynamic or static (true meaning dynamic). The
2367 dynamic filters are passed the pseudo context object and any arguments
2368 and should return a coderef that will be called as the filter. The filter
2369 coderef is then passed the string.
2370
2371 =item INCLUDE_PATH
2372
2373 A string or an arrayref or coderef that returns an arrayref that
2374 contains directories to look for files included by processed
2375 templates.
2376
2377 =item INCLUDE_PATHS
2378
2379 Non-TT item. Same as INCLUDE_PATH but only takes an arrayref. If not specified
2380 then INCLUDE_PATH is turned into an arrayref and stored in INCLUDE_PATHS.
2381 Overrides INCLUDE_PATH.
2382
2383 =item INTERPOLATE
2384
2385 Boolean. Specifies whether variables in text portions of the template will be
2386 interpolated. For example, the $variable and ${var.value} would be substituted
2387 with the appropriate values from the variable cache (if INTERPOLATE is on).
2388
2389 [% IF 1 %]The variable $variable had a value ${var.value}[% END %]
2390
2391
2392 =item LOAD_PERL
2393
2394 Indicates if the USE directive can fall back and try and load a perl module
2395 if the indicated module was not found in the PLUGIN_BASE path. See the
2396 USE directive.
2397
2398 =item NAMESPACE
2399
2400 No Template::Namespace::Constants support. Hashref of hashrefs representing
2401 constants that will be folded into the template at compile time.
2402
2403 CGI::Ex::Template->new(NAMESPACE => {constants => {
2404 foo => 'bar',
2405 }});
2406
2407 Is the same as
2408
2409 CGI::Ex::Template->new(CONSTANTS => {
2410 foo => 'bar',
2411 });
2412
2413 Any number of hashes can be added to the NAMESPACE hash.
2414
2415 =item OUTPUT
2416
2417 Alternate way of passing in the output location for processed templates.
2418 If process is not passed an output argument, it will look for this value.
2419
2420 See the process method for a listing of possible values.
2421
2422 =item OUTPUT_PATH
2423
2424 Base path for files written out via the process method or via the redirect
2425 and file filters. See the redirect virtual method and the process method
2426 for more information.
2427
2428 =item PLUGINS
2429
2430 A hashref of mappings of plugin modules.
2431
2432 PLUGINS => {
2433 Iterator => 'Template::Plugin::Iterator',
2434 DBI => 'MyDBI',
2435 },
2436
2437 See the USE directive for more information.
2438
2439 =item PLUGIN_BASE
2440
2441 Default value is Template::Plugin. The base module namespace
2442 that template plugins will be looked for. See the USE directive
2443 for more information.
2444
2445 =item POST_CHOMP
2446
2447 Set the type of chomping at the ending of a tag.
2448 See the section on chomping for more information.
2449
2450 =item POST_PROCESS
2451
2452 A list of templates to be processed and appended to the content
2453 after the main template. During this processing the "template"
2454 namespace will contain the name of the main file being processed.
2455
2456 This is useful for adding a global footer to all templates.
2457
2458 =item PRE_CHOMP
2459
2460 Set the type of chomping at the beginning of a tag.
2461 See the section on chomping for more information.
2462
2463 =item PRE_DEFINE
2464
2465 Same as the VARIABLES configuration item.
2466
2467 =item PRE_PROCESS
2468
2469 A list of templates to be processed before and pre-pended to the content
2470 before the main template. During this processing the "template"
2471 namespace will contain the name of the main file being processed.
2472
2473 This is useful for adding a global header to all templates.
2474
2475 =item PROCESS
2476
2477 Specify a file to use as the template rather than the one passed in
2478 to the ->process method.
2479
2480 =item RECURSION
2481
2482 Boolean. Default false. Indicates that INCLUDED or PROCESSED files
2483 can refer to each other in a circular manner. Be careful about recursion.
2484
2485 =item RELATIVE
2486
2487 Boolean. Default false. If true, allows filenames to be specified
2488 that are relative to the currently running process.
2489
2490 =item START_TAG
2491
2492 Set a string to use as the opening delimiter for TT. Default is "[%".
2493
2494 =item TAG_STYLE
2495
2496 Allow for setting the type of tag delimiters to use for parsing the TT.
2497 See the TAGS directive for a listing of the available types.
2498
2499 =item TRIM
2500
2501 Remove leading and trailing whitespace from blocks and templates.
2502 This operation is performed after all enclosed template tags have
2503 been executed.
2504
2505 =item UNDEFINED_ANY
2506
2507 This is not a TT configuration option. This option expects to be a code
2508 ref that will be called if a variable is undefined during a call to play_expr.
2509 It is passed the variable identity array as a single argument. This
2510 is most similar to the "undefined" method of Template::Stash. It allows
2511 for the "auto-defining" of a variable for use in the template. It is
2512 suggested that UNDEFINED_GET be used instead as UNDEFINED_ANY is a little
2513 to general in defining variables.
2514
2515 You can also sub class the module and override the undefined_any method.
2516
2517 =item UNDEFINED_GET
2518
2519 This is not a TT configuration option. This option expects to be a code
2520 ref that will be called if a variable is undefined during a call to GET.
2521 It is passed the variable identity array as a single argument. This is more useful
2522 than UNDEFINED_ANY in that it is only called during a GET directive
2523 rather than in embedded expressions (such as [% a || b || c %]).
2524
2525 You can also sub class the module and override the undefined_get method.
2526
2527 =item VARIABLES
2528
2529 A hashref of variables to initialize the template stash with. These
2530 variables are available for use in any of the executed templates.
2531 See the section on VARIABLES for the types of information that can be passed in.
2532
2533 =back
2534
2535
2536
2537 =head1 UNSUPPORTED TT CONFIGURATION
2538
2539 =over 4
2540
2541 =item ANYCASE
2542
2543 This will not be supported. You will have to use the full case directive names.
2544 (It was in the beta code but was removed prior to release).
2545
2546 =item WRAPPER
2547
2548 This will be supported - just not done yet.
2549
2550 =item ERROR
2551
2552 This will be supported - just not done yet.
2553
2554 =item V1DOLLAR
2555
2556 This will not be supported.
2557
2558 =item LOAD_TEMPLATES
2559
2560 CGI::Ex::Template has its own mechanism for loading and storing
2561 compiled templates. TT would use a Template::Provider that would
2562 return a Template::Document. The closest thing in CGI::Ex::Template
2563 is the load_parsed_template method. There is no immediate plan to
2564 support the TT behavior.
2565
2566 =item LOAD_PLUGINS
2567
2568 CGI::Ex::Template uses its own mechanism for loading plugins. TT
2569 would use a Template::Plugins object to load plugins requested via the
2570 USE directive. The functionality for doing this in CGI::Ex::Template
2571 is contained in the list_plugins method and the play_USE method. There
2572 is no immediate plan to support the TT behavior.
2573
2574 Full support is offered for the PLUGINS and LOAD_PERL configuration items.
2575
2576 Also note that CGI::Ex::Template only natively supports the Iterator plugin.
2577 Any of the other plugins requested will need to provided by installing
2578 Template::Toolkit or the appropriate plugin module.
2579
2580 =item LOAD_FILTERS
2581
2582 CGI::Ex::Template uses its own mechanism for loading filters. TT
2583 would use the Template::Filters object to load filters requested via the
2584 FILTER directive. The functionality for doing this in CGI::Ex::Template
2585 is contained in the list_filters method and the play_expr method.
2586
2587 Full support is offered for the FILTERS configuration item.
2588
2589 =item TOLERANT
2590
2591 This option is used by the LOAD_TEMPLATES and LOAD_PLUGINS options and
2592 is not applicable in CGI::Ex::Template.
2593
2594 =item SERVICE
2595
2596 CGI::Ex::Template has no concept of service (theoretically the CGI::Ex::Template
2597 is the "service").
2598
2599 =item CONTEXT
2600
2601 CGI::Ex::Template provides its own pseudo context object to plugins,
2602 filters, and perl blocks. The CGI::Ex::Template model doesn't really
2603 allow for a separate context. CGI::Ex::Template IS the context.
2604
2605 =item STASH
2606
2607 CGI::Ex::Template manages its own stash of variables. A pseudo stash
2608 object is available via the pseudo context object for use in plugins,
2609 filters, and perl blocks.
2610
2611 =item PARSER
2612
2613 CGI::Ex::Template has its own built in parser. The closest similarity is
2614 the parse_tree method. The output of parse_tree is an optree that is
2615 later run by execute_tree.
2616
2617 =item GRAMMAR
2618
2619 CGI::Ex::Template maintains its own grammar. The grammar is defined
2620 in the parse_tree method and the callbacks listed in the global
2621 $DIRECTIVES hashref.
2622
2623 =back
2624
2625
2626 =head1 VARIABLE PARSE TREE
2627
2628 CGI::Ex::Template parses templates into an tree of operations. Even
2629 variable access is parsed into a tree. This is done in a manner
2630 somewhat similar to the way that TT operates except that nested
2631 variables such as foo.bar|baz contain the '.' or '|' in between each
2632 name level. Operators are parsed and stored as part of the variable (it
2633 may be more appropriate to say we are parsing a term or an expression).
2634
2635 The following table shows a variable or expression and the corresponding parsed tree
2636 (this is what the parse_expr method would return).
2637
2638 one [ 'one', 0 ]
2639 one() [ 'one', [] ]
2640 one.two [ 'one', 0, '.', 'two', 0 ]
2641 one|two [ 'one', 0, '|', 'two', 0 ]
2642 one.$two [ 'one', 0, '.', ['two', 0 ], 0 ]
2643 one(two) [ 'one', [ ['two', 0] ] ]
2644 one.${two().three} [ 'one', 0, '.', ['two', [], '.', 'three', 0], 0]
2645 2.34 2.34
2646 "one" "one"
2647 "one"|length [ \"one", 0, '|', 'length', 0 ]
2648 "one $a two" [ \ [ '~', 'one ', ['a', 0], ' two' ], 0 ]
2649 [0, 1, 2] [ \ [ 'array', 0, 1, 2 ], 0 ]
2650 [0, 1, 2].size [ \ [ 'array', 0, 1, 2 ], 0, '.', 'size', 0 ]
2651 ['a', a, $a ] [ \ [ 'array', 'a', ['a', 0], [['a', 0], 0] ], 0]
2652 {a => 'b'} [ \ [ 'hash', 'a', 'b' ], 0 ]
2653 {a => 'b'}.size [ \ [ 'hash', 'a', 'b' ], 0, '.', 'size', 0 ]
2654 {$a => b} [ \ [ 'hash', ['a', 0], ['b', 0] ], 0 ]
2655 1 + 2 [ \ [ '+', 1, 2 ], 0]
2656 a + b [ \ [ '+', ['a', 0], ['b', 0] ], 0 ]
2657 a * (b + c) [ \ [ '*', ['a', 0], [ \ ['+', ['b', 0], ['c', 0]], 0 ]], 0 ]
2658 (a + b) [ \ [ '+', ['a', 0], ['b', 0] ]], 0 ]
2659 (a + b) * c [ \ [ '*', [ \ [ '+', ['a', 0], ['b', 0] ], 0 ], ['c', 0] ], 0 ]
2660 a ? b : c [ \ [ '?', ['a', 0], ['b', 0], ['c', 0] ], 0 ]
2661 a || b || c [ \ [ '||', ['a', 0], [ \ [ '||', ['b', 0], ['c', 0] ], 0 ] ], 0 ]
2662 ! a [ \ [ '!', ['a', 0] ], 0 ]
2663
2664 Some notes on the parsing.
2665
2666 Operators are parsed as part of the variable and become part of the variable tree.
2667
2668 Operators are stored in the variable tree using a reference to the arrayref - which
2669 allows for quickly descending the parsed variable tree and determining that the next
2670 node is an operator.
2671
2672 Parenthesis () can be used at any point in an expression to disambiguate precedence.
2673
2674 "Variables" that appear to be literal strings or literal numbers
2675 are returned as the literal (no operator tree).
2676
2677 The following perl can be typed at the command line to view the parsed variable tree:
2678
2679 perl -e 'use CGI::Ex::Template; print CGI::Ex::Template::dump_parse("foo.bar + 2")."\n"'
2680
2681 Also the following can be included in a template to view the output in a template:
2682
2683 [% USE cet = CGI::Ex::Template %]
2684 [%~ cet.dump_parse('foo.bar + 2').replace('\s+', ' ') %]
2685
2686
2687 =head1 SEMI PUBLIC METHODS
2688
2689 The following list of methods are other interesting methods of CET that
2690 may be re-implemented by subclasses of CET.
2691
2692 =over 4
2693
2694 =item C<dump_parse>
2695
2696 This method allows for returning a Data::Dumper dump of a parsed variable. It is mainly used for testing.
2697
2698 =item C<exception>
2699
2700 Creates an exception object blessed into the package listed in
2701 $CGI::Ex::Template::PACKAGE_EXCEPTION.
2702
2703 =item C<execute_tree>
2704
2705 Executes a parsed tree (returned from parse_tree)
2706
2707 =item C<play_expr>
2708
2709 Turns a variable identity array into the parsed variable. This
2710 method is also responsible for playing operators and running virtual methods
2711 and filters. The method could more accurately be called play_expression.
2712
2713 =item C<include_filename>
2714
2715 Takes a file path, and resolves it into the full filename using
2716 paths from INCLUDE_PATH or INCLUDE_PATHS.
2717
2718 =item C<_insert>
2719
2720 Resolves the file passed, and then returns its contents.
2721
2722 =item C<list_filters>
2723
2724 Dynamically loads the filters list from Template::Filters when a filter
2725 is used that is not natively implemented in CET.
2726
2727 =item C<list_plugins>
2728
2729 Returns an arrayref of modules that are under a base Namespace.
2730
2731 my @modules = @{ $self->list_plugins({base => 'Template::Plugins'}) }:
2732
2733 =item C<load_parsed_tree>
2734
2735 Given a filename or a string reference will return a parsed document
2736 hash that contains the parsed tree.
2737
2738 my $doc = $self->load_parsed_tree($file) || $self->throw('undef', "Zero length content");
2739
2740 =item C<parse_args>
2741
2742 Allow for the multitudinous ways that TT parses arguments. This allows
2743 for positional as well as named arguments. Named arguments can be separated with a "=" or "=>",
2744 and positional arguments should be separated by " " or ",". This only returns an array
2745 of parsed variables. To get the actual values, you must call play_expr on each value.
2746
2747 =item C<parse_tree>
2748
2749 Used by load_parsed_tree. This is the main grammar engine of the program. It
2750 uses method in the $DIRECTIVES hashref to parse different DIRECTIVE TYPES.
2751
2752 =item C<parse_expr>
2753
2754 Used to parse a variable, an expression, a literal string, or a number. It
2755 returns a parsed variable tree. Samples of parsed variables can be found in the VARIABLE PARSE TREE
2756 section.
2757
2758 =item C<set_variable>
2759
2760 Used to set a variable. Expects a variable identity array and the value to set. It
2761 will autovifiy as necessary.
2762
2763 =item C<throw>
2764
2765 Creates an exception object from the arguments and dies.
2766
2767 =item C<undefined_any>
2768
2769 Called during play_expr if a value is returned that is undefined. This could
2770 be used to magically create variables on the fly. This is similar to Template::Stash::undefined.
2771 It is suggested that undefined_get be used instead. Default behavior returns undef. You
2772 may also pass a coderef via the UNDEFINED_ANY configuration variable. Also, you can try using
2773 the DEBUG => 'undef', configuration option which will throw an error on undefined variables.
2774
2775 =item C<undefined_get>
2776
2777 Called when a variable is undefined during a GET directive. This is useful to
2778 see if a value that is about to get inserted into the text is undefined. undefined_any is a little
2779 too general for most cases. Also, you may pass a coderef via the UNDEFINED_GET configuration variable.
2780
2781 =back
2782
2783
2784 =head1 OTHER UTILITY METHODS
2785
2786 The following is a brief list of other methods used by CET. Generally, these
2787 shouldn't be overwritten by subclasses.
2788
2789 =over 4
2790
2791 =item C<apply_precedence>
2792
2793 Allows for parsed operator array to be translated to a tree based
2794 upon operator precedence.
2795
2796 =item C<context>
2797
2798 Used to create a "pseudo" context object that allows for portability
2799 of TT plugins, filters, and perl blocks that need a context object.
2800
2801 =item C<DEBUG>
2802
2803 TT2 Holdover that is used once for binmode setting during a TT2 test.
2804
2805 =item C<debug_node>
2806
2807 Used to get debug info on a directive if DEBUG_DIRS is set.
2808
2809 =item C<filter_*>
2810
2811 Methods by these names implement filters that are more than one line.
2812
2813 =item C<get_line_number_by_index>
2814
2815 Used to turn string index position into line number
2816
2817 =item C<interpolate_node>
2818
2819 Used for parsing text nodes for dollar variables when interpolate is on.
2820
2821 =item C<parse_*>
2822
2823 Methods by these names are used by parse_tree to parse the template. These are the grammar.
2824
2825 =item C<play_*>
2826
2827 Methods by these names are used by execute_tree to execute the parsed tree.
2828
2829 =item C<play_operator>
2830
2831 Used to execute any found operators
2832
2833 =item C<_process>
2834
2835 Called by process and the PROCESS, INCLUDE and other directives.
2836
2837 =item C<slurp>
2838
2839 Reads contents of passed filename - throws file exception on error.
2840
2841 =item C<split_paths>
2842
2843 Used to split INCLUDE_PATH or other directives if an arrayref is not passed.
2844
2845 =item C<_vars>
2846
2847 Return a reference to the current stash of variables. This is currently only used
2848 by the pseudo context object and may disappear at some point.
2849
2850 =item C<vmethod_*>
2851
2852 Methods by these names implement virtual methods that are more than one line.
2853
2854 =item C<weak_copy>
2855
2856 Used to create a weak reference to self to avoid circular references. (this
2857 is needed by macros)
2858
2859 =back
2860
2861
2862 =head1 AUTHOR
2863
2864 Paul Seamons <paul at seamons dot com>
2865
2866 =cut
This page took 0.149043 seconds and 3 git commands to generate.