1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
|
##################################################
##
## Name: CGI::FastTemplate
##
## Copyright (c) 1998-99 Jason Moore <jmoore@sober.com>. All rights
## reserved.
##
## This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## Artistic License for more details.
##
##
## Credits:
## - fancy regexp taken from article by Brian Slesinsky <bslesins@best.com>
## http://www.hotwired.com/webmonkey/code/97/21/index2a_page4.html?tw=perl
##
## - modified regexp to support ${VAR} and $VAR styles suggested by Eric L. Brine
## <q2ir@unb.ca>
##
## Documentation:
## See
## 'perldoc CGI::FastTemplate'
## or
## 'perldoc ./FastTemplate'
##
## History:
## See 'README'
##
## $Id: FastTemplate.pm,v 1.2 1999/06/27 02:12:23 jmoore Exp $
##
##################################################
package CGI::FastTemplate;
use strict;
$CGI::FastTemplate::VERSION = '1.09';
$CGI::FastTemplate::ROOT = undef;
$CGI::FastTemplate::VAR_ID = '$';
$CGI::FastTemplate::DELIM_LEFT = '{';
$CGI::FastTemplate::DELIM_RIGHT = '}';
##
## define indexes for object attributes
##
sub STRICT () {0};
sub namespace () {1};
sub namespaces () {2};
sub last_parse () {3};
sub template_name () {4};
sub template_data () {5};
sub ROOT () {6};
##################################################
##
sub new
##
## - instantiates FastTemplate
##
{
my($class,$root) = @_;
my $self = [];
bless $self, $class;
$self->init;
$self->[STRICT] = 1;
if (defined($root))
{
$self->set_root($root);
}
return($self);
}
##################################################
##
sub strict
##
{
my($self) = shift;
$self->[STRICT] = 1;
}
##################################################
##
sub no_strict
##
{
my($self) = shift;
$self->[STRICT] = undef;
}
##################################################
##
sub clear_all
##
## - initializes (or clears!) variables
##
{
my($self) = shift;
if (!ref($self))
{
print STDERR "FastTemplate: Unable to call init without instance.\n";
return();
}
$self->[namespace] = {}; ## main hash where we resolve variables
$self->[namespaces] = []; ## array of hash refs
$self->[last_parse] = undef; ## remember where we stored the last parse so print()
## will have a default
$self->[template_name] = {}; ## template name: template file
$self->[template_data] = {}; ## template name: template content/data
}
*init = \&clear_all; ## alias to 'clear' : 'init'
##################################################
##
sub clear_define
##
## - clears values entered with define()
##
{
my($self) = shift;
$self->[template_name] = {};
}
##################################################
##
sub clear_tpl
##
## - clears hash that holds loaded templates.
## - if passed an array of names, clears only those loaded templates
##
{
my($self) = shift;
my @args = @_;
if (@args == 0) ## clear entire cache
{
$self->[template_data] = {};
return(1);
}
## clear just a selection of entries
for (@args)
{
delete( ${$self->[template_data]}{$_} );
}
return(1);
}
##################################################
##
sub clear_href
##
## - removes from the end, a given number of hash references
## from the namespace list.
##
## - 1: number of hash references to erase
##
{
my($self, $number) = @_;
if (!defined($number))
{
$self->[namespaces] = [];
return(1);
}
for (1..$number)
{
pop(@{$self->[namespaces]}); ## toss it away
}
return(1);
}
#################################################
##
sub clear_parse
##
## - clears hash which holds parsed variables
## - if called with a scalar only clears that key/element in the namespace.
## so, $tpl->clear("ROWS") which is almost the same as,
## $tpl->assign(ROWS => "");
##
## - if called with an array, all keys in the array are deleted
## e.g. $tpl->clear("ROWS", "COLS"); has the same effect as
## $tpl->assign(ROWS => "",
## COLS => "");
##
##
{
my $self = shift;
if (@_ == 0) ## clear everything
{
$self->[namespace] = {}; ## main hash where we resolve variables
$self->[last_parse] = undef; ## remember where we stored the last parse so print()
return(1);
}
for (@_)
{
delete(${$self->[namespace]}{$_});
}
return(1);
}
*clear = \&clear_parse; ## alias clear -> clear_parse
##################################################
##
sub set_root
##
## - sets template root directory.
{
my($self, $root) = @_;
## set object default root directory
$CGI::FastTemplate::ROOT = $root;
## set instance template dir
##
## - no needed
##
if (ref($self))
{
$self->[ROOT] = $root;
}
return(1);
}
##################################################
##
sub define
##
## - sets alias/name to associate with template filenames
## - note: names are relative to ROOT directory (set with set_root)
## - e.g. the following works
## $tpl->set_root("/tmp/docs");
## $tpl->define( main => "../dev_docs");
## (assuming you have templates in /tmp/dev_docs)
##
## - files are not loaded until used, so go nuts when defining. each line
## only costs a wee bit of memory and compile time.
##
## - note: define is cumulative
##
{
my($self, %define) = @_;
for (keys(%define))
{
$self->[template_name]->{$_} = $define{$_};
}
return(1);
}
##################################################
##
sub assign
##
## - assigns values of a HASH directly to internal namespace
## HASH
##
## Args:
## - 1: hash reference (to add to array of namespaces)
## - 1: hash (to merge with main namespace hash)
##
## - returns: 1 on success
##
{
my $self = shift;
if (ref($_[0]) eq "HASH")
{
push(@{$self->[namespaces]}, $_[0]);
return(1);
}
my %assign = @_;
my($name,$value);
while ( ($name,$value) = each(%assign) )
{
$self->[namespace]->{$name} = $value;
}
return(1);
}
##################################################
##
sub parse
##
## - parses a scalar to resolve/interpolate any variables
## it finds.
##
## - 1: hash of what we are parse in TARGET:SOURCE form
## NOTE: SOURCE with a "." as the first character get appended
## to existing TARGET
##
{
my($self, %parse) = @_;
my $target;
for $target (keys(%parse))
{
##
## make all sources an array...
##
if (ref($parse{$target}) ne "ARRAY")
{
$parse{$target} = [$parse{$target}];
}
my($p, $append);
for $p (@{$parse{$target}})
{
if (substr($p,0,1) eq ".") ## detect append
{
$append = 1;
$p = substr($p, 1);
}
if (!exists($self->[template_name]{$p}))
{
print STDERR "FastTemplate: Template alias: $p does not exist.\n";
next;
}
## load template if we need to
if (!exists($self->[template_data]{$p}))
{
$self->slurp($self->[template_name]->{$p}, \$self->[template_data]->{$p} );
}
## copy SOURCE (template_data) to temp variable
## (can't use namespace, since we might be appending to it.)
my $temp_parse = $self->[template_data]->{$p};
#########
## parse
#########
$temp_parse =~ s/\$(?:([A-Z][A-Z0-9_]+)|\{([A-Z][A-Z0-9_]+)\})/
my $v = $self->[namespace]->{$+};
if (!defined($v))
{
## look in array of hash refs for value of variable
my $r;
for $r (@{$self->[namespaces]})
{
if (exists($$r{$+})) ## found it
{
$v = $$r{$+};
last;
}
}
}
if (!defined($v)) ## $v should be empty not undef, to prevent
{ ## warnings under -w
if ($self->[STRICT])
{
print STDERR "[CGI::FastTemplate] Warning: no value found for variable: $+\n";
$v = '$' . $+; ## keep original variable name in output
}
else
{
$v = ""; ## remove variable name
}
}
$v;
/ge;
$self->[last_parse] = $target;
## assign temp to final TARGET
if ($append)
{
$self->[namespace]->{$target} .= $temp_parse;
}
else
{
$self->[namespace]->{$target} = $temp_parse;
}
}
}
}
##################################################
##
sub slurp
##
## - slurps (loads) in file into a scalar.
## - cool trick to undef the end of line character
## grabbed from some usenet posting. (don't remember)
##
## - i think the maximum file size is (2**32-1) approx. 2 megs.
##
## - 1: filename (minus path)
## - 2: reference to put result in [optional]
## returns: scalar
##
##
{
my($self, $filename, $ref) = @_;
my $temp;
if (ref($self) && defined($self->[ROOT])) ## use instance ROOT
{
$filename = $self->[ROOT] . "/" . $filename;
}
elsif (defined($CGI::FastTemplate::ROOT)) ## use object ROOT
{
$filename = $CGI::FastTemplate::ROOT . "/" . $filename;
}
if (!open(TEMPLATE, $filename))
{
print STDERR "FastTemplate: slurp: cannot open: $filename ($!)";
return();
}
## cool trick!
local($/) = undef;
$temp = <TEMPLATE>;
close(TEMPLATE);
if (defined($ref)) ## fill reference
{
$$ref = $temp;
return(1);
}
return($temp);
}
##################################################
##
sub define_nofile
##
## - allows caller to bypass storing templates in files and
## using define() to map aliased to the file
##
## 1: hash (or hash ref) {template name => raw template data}
## e.g. $raw_tpl = 'Hello $NAME.';
##
## define_nofile(greeting => $raw_tpl);
##
## Note: single ticks (literal) in the above example are required when
## constructing templates to prevent the variables from being
## evalualted/interpolated _before_ being passed into the templating
## module.
##
## returns: 1 on success, undef on failure
##
{
my $self = shift;
my $href;
if (ref($_[0]) eq "HASH")
{
$href = $_[0];
}
else
{
my %h = @_;
$href = \%h;
}
my $k;
for $k (keys(%$href))
{
$self->[template_name]->{$k} = 1; ## exists will now be true (loading skipped)
$self->[template_data]->{$k} = $$href{$k}; ##
}
return(1);
}
*define_raw = \&define_nofile;
##################################################
##
sub print
##
## - calls built in perl function "print" on given
## hash key.
##
{
my($self, $var) = @_;
if (!defined($var))
{
if (!defined($self->[last_parse]))
{
print STDERR "FastTemplate: Nothing has been parsed. Nothing to print.\n";
return();
}
print $self->[namespace]->{$self->[last_parse]};
return(1);
}
print $self->[namespace]->{$var};
return(1);
}
##################################################
##
sub fetch
##
## - returns a scalar ref to a value in the namespace
##
## - 1: value to fetch
##
## - returns: scalar ref
##
{
my($self, $what) = @_;
if (!exists($self->[namespace]->{$what}))
{
print STDERR "Unable to fetch $what from FastTemplate object. Doesn't exist.\n";
return();
}
return( \$self->[namespace]->{$what} );
}
##################################################
##
## sub DESTROY () {}
##
## - null function
## - this is not required, so it should probably be removed completely in
## the next version.
##
1;
=head1 NAME
CGI::FastTemplate - Perl extension for managing templates, and performing variable interpolation.
=head1 SYNOPSIS
use CGI::FastTemplate;
$tpl = new CGI::FastTemplate();
$tpl = new CGI::FastTemplate("/path/to/templates");
CGI::FastTemplate->set_root("/path/to/templates"); ## all instances will use this path
$tpl->set_root("/path/to/templates"); ## this instance will use this path
$tpl->define( main => "main.tpl",
row => "table_row.tpl",
all => "table_all.tpl",
);
$tpl->assign(TITLE => "I am the title.");
my %defaults = ( FONT => "<font size=+2 face=helvetica>",
EMAIL => 'jmoore@sober.com',
);
$tpl->assign(\%defaults);
$tpl->parse(ROWS => ".row"); ## the '.' appends to ROWS
$tpl->parse(CONTENT => ["row", "all"]);
$tpl->parse(CONTENT => "main");
$tpl->print(); ## defaults to last parsed
$tpl->print("CONTENT"); ## same as print() as "CONTENT" was last parsed
$ref = $tpl->fetch("CONTENT");
=head1 DESCRIPTION
=head2 What is a template?
A template is a text file with variables in it. When a template is
parsed, the variables are interpolated to text. (The text can be a few
bytes or a few hundred kilobytes.) Here is a simple template with one
variable ('$NAME'):
Hello $NAME. How are you?
=head2 When are templates useful?
Templates are very useful for CGI programming, because adding HTML to your
perl code clutters your code and forces you to do any HTML modifications.
By putting all of your HTML in separate template files, you can let
a graphic or interface designer change the look of your application
without having to bug you, or let them muck around in your perl code.
=head2 There are other templating modules on CPAN, what makes FastTemplate
different?
CGI::FastTemplate has the following attributes:
B<Speed>
FastTemplate doesn't use eval, and parses with a single regular
expression. It just does simple variable interpolation (i.e. there is
no logic that you can add to templates - you keep the logic in the code).
That's why it's has 'Fast' in it's name!
B<Efficiency>
FastTemplate functions accept and return references whenever possible, which saves
needless copying of arguments (hashes, scalars, etc).
B<Flexibility>
The API is robust and flexible, and allows you to build very complex HTML
documents or HTML interfaces. It is 100% perl and works on Unix or NT.
Also, it isn't restricted to building HTML documents -- it could be used
to build any ascii based document (e.g. postscript, XML, email).
The similar modules on CPAN are:
Module HTML::Template (S/SA/SAMTREGAR/HTML-Template-0.04.tar.gz)
Module Taco::Template (KWILLIAMS/Taco-0.04.tar.gz)
Module Text::BasicTemplate (D/DC/DCARRAWAY/Text-BasicTemplate-0.9.8.tar.gz)
Module Text::Template (MJD/Text-Template-1.20.tar.gz)
Module HTML::Mason (J/JS/JSWARTZ/HTML-Mason-0.5.1.tar.gz)
=head2 What are the steps to use FastTemplate?
The main steps are:
1. define
2. assign
3. parse
4. print
These are outlined in detail in CORE METHODS below.
=head1 CORE METHODS
=head2 define(HASH)
The method define() maps a template filename to a (usually shorter) name. e.g.
my $tpl = new FastTemplate();
$tpl->define( main => "main.tpl",
footer => "footer.tpl",
);
This new name is the name that you will use to refer to the templates. Filenames
should not appear in any place other than a define().
(Note: This is a required step! This may seem like an annoying extra
step when you are dealing with a trivial example like the one above,
but when you are dealing with dozens of templates, it is very handy to
refer to templates with names that are indepandant of filenames.)
TIP: Since define() does not actually load the templates, it is faster
and more legible to define all the templates with one call to define().
=head2 define_nofile(HASH) alias: define_raw(HASH)
Sometimes it is desireable to not have to create a separate template file
for each template (though in the long run it is usually better to do so).
The method define_nofile() allows you to do this. For example, if you
were writing a news tool where you wanted to bold an item if it was
"new" you could do something like the following:
my $tpl = new FastTemplate();
$tpl->define_nofile( new => '<b>$ITEM_NAME</b> <BR>',
old => '$ITEM_NAME <BR>');
if ($new)
{
$tpl->parse($ITEM => "new");
}
else
{
$tpl->parse($ITEM => "old");
}
Of course, now you, the programmer has to update how new items are
displayed, whereas if it was in a template, you could offload that task
to someone else.
=head2 define_nofile(HASH REF) alias: define_raw(HASH REF)
A more efficient way of passing your arguments than using a real hash.
Just pass in a hash reference instead of a real hash.
=head2 assign(HASH)
The method assign() assigns values for variables. In order for a variable
in a template to be interpolated it must be assigned. There are two forms
which have some important differences. The simple form, is to accept
a hash and copy all the key/value pairs into a hash in FastTemplate.
There is only one hash in FastTemplate, so assigning a value for the
same key will overwrite that key.
e.g.
$tpl->assign(TITLE => "king kong");
$tpl->assign(TITLE => "godzilla"); ## overwrites "king kong"
=head2 assign(HASH REF)
A much more efficient way to pass in values is to pass in a hash
reference. (This is particularly nice if you get back a hash or hash
reference from a database query.) Passing a hash reference doesn't copy
the data, but simply keeps the reference in an array. During parsing if
the value for a variable cannot be found in the main FastTemplate hash,
it starts to look through the array of hash references for the value.
As soon as it finds the value it stops. It is important to remember to
remove hash references when they are no longer needed.
e.g.
my %foo = ("TITLE" => "king kong");
my %bar = ("TITLE" => "godzilla");
$tpl->assign(\%foo); ## TITLE resolves to "king kong"
$tpl->clear_href(1); ## remove last hash ref assignment (\%foo)
$tpl->assign(\%bar); ## TITLE resolves to "godzilla"
$tpl->clear_href(); ## remove all hash ref assignments
$tpl->assign(\%foo); ## TITLE resolves to "king kong"
$tpl->assign(\%bar); ## TITLE _still_ resolves to "king kong"
=head2 parse(HASH)
The parse function is the main function in FastTemplate. It accepts
a hash, where the keys are the TARGET and the values are the SOURCE
templates. There are three forms the hash can be in:
$tpl->parse(MAIN => "main"); ## regular
$tpl->parse(MAIN => ["table", "main"]); ## compound
$tpl->parse(MAIN => ".row"); ## append
In the regular version, the template named "main" is loaded if it hasn't
been already, all the variables are interpolated, and the result is
then stored in FastTemplate as the value MAIN. If the variable '$MAIN'
shows up in a later template, it will be interpolated to be the value of
the parsed "main" template. This allows you to easily nest templates,
which brings us to the compound style.
The compound style is designed to make it easier to nest templates.
The following are equivalent:
$tpl->parse(MAIN => "table");
$tpl->parse(MAIN => "main");
## is the same as:
$tpl->parse(MAIN => ["table", "main"]); ## this form saves function calls
## (and makes your code cleaner)
It is important to note that when you are using the compound form,
each template after the first, must contain the variable that you are
parsing the results into. In the above example, 'main' must contain
the variable '$MAIN', as that is where the parsed results of 'table'
is stored. If 'main' does not contain the variable '$MAIN' then the
parsed results of 'table' will be lost.
The append style is a bit of a kludge, but it allows you to append
the parsed results to the target variable. This is most useful when
building tables that have an dynamic number of rows - such as data from
a database query.
=head2 strict()
When strict() is on (it is on by default) all variables found during
template parsing that are unresolved have a warning printed to STDERR.
e.g.
[CGI::FastTemplate] Warning: no value found for variable: SOME_VARIABLE
Also, new as of version 1.04 the variables will be left in the output
document. This was done for two reasons: to allow for parsing to be done
in stages (i.e. multiple passes), and to make it easier to identify
undefined variables since they appear in the parsed output.
If you have been using an earlier version of FastTemplate and you want
the old behavior of replacing unknown variables with an empty string,
see: no_strict().
Note: version 1.07 adds support for two styles of variables, so that the
following are equivalent: $VAR and ${VAR} However, when using strict(),
variables with curly brackets that are not resolved are outputted as
plain variables. e.g. if ${VAR} has no value assigned to it, it would
appear in the output as $VAR. This is a slight inconsistency -- ideally
the unresolved variable would remain unchanged.
Note: STDERR output should be captured and logged by the webserver so you
can just tail the error log to see the output.
e.g.
tail -f /etc/httpd/logs/error_log
=head2 no_strict()
Turns off warning messages about unresolved template variables.
As of version 1.04 a call to no_strict() is required to replace unknown
variables with an empty string. By default, all instances of FastTemplate
behave as is strict() was called. Also, no_strict() must be set for
each instance of CGI::FastTemplate. e.g.
CGI::FastTemplate::no_strict; ## no
my $tpl = CGI::FastTemplate;
$tpl->no_strict; ## yes
=head2 print(SCALAR)
The method print() prints the contents of the named variable. If no
variable is given, then it prints the last variable that was used in a
call to parse which I find is a reasonable default.
e.g.
$tpl->parse(MAIN => "main");
$tpl->print(); ## prints value of MAIN
$tpl->print("MAIN"); ## same
This method is provided for convenience.
If you need to print other than STDOUT (e.g. socket, file handle) see fetch().
=head1 OTHER METHODS
=head2 fetch(SCALAR)
Returns a scalar reference to parsed data.
$tpl->parse(CONTENT => "main");
my $content = $tpl->fetch("CONTENT");
print $$content; ## print to STDOUT
print FILE $$content; ## print to filehandle or pipe
=head2 clear()
Note: All of 'clear' functions are for use under mod_perl (or anywhere
where your scripts are persistant). They generally aren't needed if
you are writing CGI scripts.
Clears the internal hash that stores data passed from calls to assign() and parse().
Often clear() is at the end of a mod_perl script:
$tpl->print();
$tpl->clear();
=head2 clear(ARRAY)
With no arguments, all assigned or parsed variables are cleared, but if passed an ARRAY of variable names, then only
those variables will be cleared.
e.g.
$tpl->assign(TITLE => "Welcome");
$tpl->clear("TITLE"); ## title is now empty
Another way of achieving the same effect of clearnign variables is to just assign an empty string.
e.g.
$tpl->assign(TITLE => ''); ## same as: $tpl->clear("TITLE");
=head2 clear_parse()
See: clear()
=head2 clear_href(NUMBER)
Removes a given number of hash references from the list of hash refs that is built using:
$tpl->assign(HASH REF);
If called with no arguments, it removes all hash references
from the array. This is often used for database queries where each row from the query
is a hash or hash reference.
e.g.
while($hash_row = $sth->fetchrow_hashref)
{
$tpl->assign($hash_row);
$tpl->parse(ROW => ".row");
$tpl->clear_href(1);
}
=head2 clear_define()
Clears the internal hash that stores data passed to:
$tpl->define();
Note: The hash that holds the loaded templates is not touched with
this method. See: clear_tpl
=head2 clear_tpl() clear_tpl(NAME)
The first time a template is used, it is loaded and stored in a hash
in memory. clear_tpl() removes all the templates being held in memory.
clear_tpl(NAME) only removes the one with NAME. This is generally not
required for normal CGI programming, but if you have long running scripts
(e.g. mod_perl) and have very large templates that a re infrequently
used gives you some control over how memory is being used.
=head2 clear_all()
Cleans the module of any data, except for the ROOT directory. Equivalent to:
$tpl->clear_define();
$tpl->clear_href();
$tpl->clear_tpl();
$tpl->clear_parse();
=head2 Variables
A variable is defined as:
$[A-Z0-9][A-Z0-9_]+
This means, that a variable must begin with a dollar sign '$'.
The second character must be an uppercase letter or digit 'A-Z0-9'.
Remaining characters can include an underscore.
As of version 1.07 variables can also be delimited by curly brackets.
${[A-Z0-9][A-Z0-9_]+}
For example, the following are valid variables:
$FOO
$F123F
$TOP_OF_PAGE
${NEW_STYLE}
=head2 Variable Interpolation (Template Parsing)
When the a template is being scanned for variables, pattern matching
is greedy. (For more info on "greediness" of regexps see L<perlre>.)
This is important, because if there are valid variable characters after
your variable, FastTemplate will consider them to be part of the variable.
As of version 1.07 you can use curly brackets as delimiters for your
variable names. e.g. ${VARIABLE} You do not need to use curly brackets
if the character immediately after your variable name is not an uppercase
letter, digit or underscore. ['A-Z0-9_']
If a variable cannot be resolved to a value then there are two
possibilities. If strict() has been called (it is on by default) then
the variable remains and a warning is printed to STDERR. If no_strict()
has been called then the variables is converted to an empty string [''].
See L<strict()> and L<no_strict()> for more info.
Some examples will make this clearer.
Assume:
$FOO = "foo";
$BAR = "bar";
$ONE = "1";
$TWO = "2";
$UND = "_";
Variable Interpolated/Parsed
------------------------------------------------
$FOO foo
$FOO-$BAR foo-bar
$ONE_$TWO 2 ## $ONE_ is undefined!
$ONE_$TWO $ONE_2 ## assume: strict()
$ONE$UND$TWO 1_2 ## kludge!
${ONE}_$TWO 1_2 ## much better
$$FOO $foo
$25,000 $25,000
=head2 FULL EXAMPLE
This example will build an HTML page that will consist of a table.
The table will have 3 numbered rows. The first step is to decide what
templates we need. In order to make it easy for the table to change to
a different number of rows, we will have a template for the rows of the
table, another for the table, and a third for the head/body part of the
HTML page.
Below are the templates. (Pretend each one is in a separate file.)
<!-- NAME: main.tpl -->
<html>
<head><title>$TITLE</title>
</head>
<body>
$MAIN
</body>
</html>
<!-- END: main.tpl -->
<!-- NAME: table.tpl -->
<table>
$ROWS
</table>
<!-- END: table.tpl -->
<!-- NAME: row.tpl -->
<tr>
<td>$NUMBER</td>
<td>$BIG_NUMBER</td>
</tr>
<!-- END: row.tpl -->
Now we can start coding...
## START ##
use CGI::FastTemplate;
my $tpl = new CGI::FastTemplate("/path/to/template/files");
$tpl->define( main => "main.tpl",
table => "table.tpl",
row => "row.tpl",
);
$tpl->assign(TITLE => "FastTemplate Test");
for $n (1..3)
{
$tpl->assign( NUMBER => $n,
BIG_NUMBER => $n*10);
$tpl->parse(ROWS => ".row");
}
$tpl->parse(MAIN => ["table", "main"]);
$tpl->print();
## END ##
When run it returns:
<!-- NAME: main.tpl -->
<html>
<head><title>FastTemplate Test</title>
</head>
<body>
<!-- NAME: table.tpl -->
<table>
<!-- NAME: row.tpl -->
<tr>
<td>1</td>
<td>10</td>
</tr>
<!-- END: row.tpl -->
<!-- NAME: row.tpl -->
<tr>
<td>2</td>
<td>20</td>
</tr>
<!-- END: row.tpl -->
<!-- NAME: row.tpl -->
<tr>
<td>3</td>
<td>30</td>
</tr>
<!-- END: row.tpl -->
</table>
<!-- END: table.tpl -->
</body>
</html>
<!-- END: main.tpl -->
If you're thinking you could have done the same thing in a few lines
of plain perl, well yes you probably could. But, how would a graphic
designer tweak the resulting HTML? How would you have a designer editing
the HTML while you're editing another part of the code? How would
you save the output to a file, or pipe it to another application
(e.g. sendmail)? How would you make your application multi-lingual?
How would you build an application that has options for high graphics,
or text-only? FastTemplate really starts to shine when you are building
mid to large scale web applications, simply because it begins to separate
the application's generic logic from the specific implementation.
=head1 COPYRIGHT
Copyright (c) 1998-99 Jason Moore <jmoore@sober.com>. All rights
reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Artistic License for more details.
=head1 AUTHOR
Jason Moore <jmoore@sober.com>
=head1 SEE ALSO
mod_perl(1).
=cut
|