From abw@ourshack.com Mon Jul 08 19:33:49 2002
Received: from abw by dog.ourshack.com with local (Exim 3.33 #1)
id 17RdKX-00043j-00
for templates-cvs@template-toolkit.org; Mon, 08 Jul 2002 19:33:49 +0100
Date: Mon, 8 Jul 2002 19:33:49 +0100
From: Andy Wardley
-Andy Wardley <abw@kfs.org>
+Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%]
@@ -319,8 +319,8 @@
[% WRAPPER section
title="VERSION"
-%]
-2.51, distributed as part of the
-Template Toolkit version 2.07b, released on 07 July 2002.
+2.52, distributed as part of the
+Template Toolkit version 2.07c, released on 09 July 2002.
-Andy Wardley <abw@kfs.org>
+Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%]
@@ -292,8 +292,8 @@
[% WRAPPER section
title="VERSION"
-%]
-2.51, distributed as part of the
-Template Toolkit version 2.07b, released on 07 July 2002.
+2.52, distributed as part of the
+Template Toolkit version 2.07c, released on 09 July 2002.
-Andy Wardley <abw@kfs.org>
+Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%]
@@ -47,8 +47,8 @@
[% WRAPPER section
title="VERSION"
-%]
-2.51, distributed as part of the
-Template Toolkit version 2.07b, released on 07 July 2002.
+2.52, distributed as part of the
+Template Toolkit version 2.07c, released on 09 July 2002.
-Andy Wardley <abw@kfs.org>
+Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%]
@@ -892,8 +892,8 @@
[% WRAPPER section
title="VERSION"
-%]
-2.51, distributed as part of the
-Template Toolkit version 2.07b, released on 07 July 2002.
+2.52, distributed as part of the
+Template Toolkit version 2.07c, released on 09 July 2002.
+When specified as a list, the INCLUDE_PATH path can contain elements +which dynamically generate a list of INCLUDE_PATH directories. These +generator elements can be specified as a reference to a subroutine or +an object which implements a paths() method. +
+ my $template = Template->new({
+ INCLUDE_PATH => [ '/usr/local/templates',
+ \&incpath_generator,
+ My::IncPath::Generator->new( ... ) ],
+ });
++Each time a template is requested and the INCLUDE_PATH examined, the +subroutine or object method will be called. A reference to a list of +directories should be returned. Generator subroutines should report +errors using die(). Generator objects should return undef and make an +error available via its error() method. +
++For example: +
+ sub incpath_generator {
+ # ...some code...
+
+ if ($all_is_well) {
+ return \@list_of_directories;
+ }
+ else {
+ die "cannot generate INCLUDE_PATH...\n";
+ }
+ }
++or: +
+package My::IncPath::Generator;+
# Template::Base (or Class::Base) provides error() method + use Template::Base; + use base qw( Template::Base );+
sub paths {
+ my $self = shift;
+# ...some code...+
if ($all_is_well) {
+ return \@list_of_directories;
+ }
+ else {
+ return $self->error("cannot generate INCLUDE_PATH...\n");
+ }
+ }
+1;
@@ -859,7 +908,8 @@ (e.g. GLOB or IO::Handle) opened for writing; a reference to a text string to which the output is appended (the string isn't cleared); a reference to a subroutine which is called, passing the output text as -an argument; or as a reference to any object that supports the print() +an argument; as a reference to an array, onto which the content will be +push()ed; or as a reference to any object that supports the print() method. This latter option includes the Apache::Request object which is passed as the argument to Apache/mod_perl handlers.
@@ -891,8 +941,14 @@ OUTPUT => \&output, });-example 5 (Apache/mod_perl handler): +example 5 (array reference):
+ my $template = Template->new({
+ OUTPUT => \@output,
+ })
++example 6 (Apache/mod_perl handler): +
sub handler {
my $r = shift;
my $t = Template->new({
@@ -908,6 +964,7 @@
$t->process($file, $vars, "/tmp/foo");
$t->process($file, $vars, "bar");
$t->process($file, $vars, \*MYGLOB);
+ $t->process($file, $vars, \@output);
$t->process($file, $vars, $r); # Apache::Request
...
@@ -977,11 +1034,12 @@
This template fragment would generate the following output:
## input text line 1 : [% tt_start_tag %] foo = 'World' [% tt_end_tag %] ##
- Hello World
-
+ Hello World
+
It is anticipated that a future version of the Template Toolkit will
support allow the different debugging options to be enabled or
-disabled individually.
+disabled individually.
+
@@ -1653,7 +1711,7 @@ [% WRAPPER section title="AUTHOR" -%]
-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -1662,7 +1720,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.34 +2 -2 Template2/docs/src/Manual/Credits.html Index: Credits.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Credits.html,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- Credits.html 2002/07/07 14:42:49 1.33 +++ Credits.html 2002/07/09 14:41:49 1.34 @@ -147,7 +147,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -156,7 +156,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.34 +2 -2 Template2/docs/src/Manual/Directives.html Index: Directives.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Directives.html,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- Directives.html 2002/07/07 17:25:13 1.33 +++ Directives.html 2002/07/09 14:41:49 1.34 @@ -1963,7 +1963,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -1972,7 +1972,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Filters.html Index: Filters.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Filters.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Filters.html 2002/07/07 14:42:50 1.32 +++ Filters.html 2002/07/09 14:41:51 1.33 @@ -504,7 +504,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -513,7 +513,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Internals.html Index: Internals.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Internals.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Internals.html 2002/07/07 14:42:50 1.32 +++ Internals.html 2002/07/09 14:41:51 1.33 @@ -535,7 +535,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -544,7 +544,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Intro.html Index: Intro.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Intro.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Intro.html 2002/07/07 14:42:50 1.32 +++ Intro.html 2002/07/09 14:41:51 1.33 @@ -258,7 +258,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -267,7 +267,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Plugins.html Index: Plugins.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Plugins.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Plugins.html 2002/07/07 14:42:50 1.32 +++ Plugins.html 2002/07/09 14:41:51 1.33 @@ -558,7 +558,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -567,7 +567,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +17 -2 Template2/docs/src/Manual/Refs.html Index: Refs.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Refs.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Refs.html 2002/07/07 14:42:50 1.32 +++ Refs.html 2002/07/09 14:41:52 1.33 @@ -113,13 +113,28 @@http://slashcode.org/+
+OpenFrame is an open source application framework for distributed +media applications. It ships with a generator for the Template +Toolkit. +
+http://openframe.fotango.com/+ +
+PCMT is the Personal Content Management Toolkit. It uses the Template +Toolkit as the presentation engine. +
+http://pcmt.sf.net/+ [%- END %] [%- END %] [% WRAPPER section title="AUTHOR" -%]
-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -128,7 +143,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Syntax.html Index: Syntax.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Syntax.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Syntax.html 2002/07/07 14:42:51 1.32 +++ Syntax.html 2002/07/09 14:41:52 1.33 @@ -276,7 +276,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -285,7 +285,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +16 -2 Template2/docs/src/Manual/Variables.html Index: Variables.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Variables.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Variables.html 2002/07/07 14:42:51 1.32 +++ Variables.html 2002/07/09 14:41:52 1.33 @@ -741,6 +741,20 @@ [% tt_start_tag %] first = mylist.shift [% tt_end_tag %]
[% tt_start_tag %] last = mylist.pop [% tt_end_tag %]
++Returns a list of the unique elements in a list, in the same order +as in the list itself. +
+[% tt_start_tag %] mylist = [ 1, 2, 3, 2, 3, 4, 1, 4, 3, 4, 5 ] [% tt_end_tag %] + [% tt_start_tag %] numbers = mylist.unique [% tt_end_tag %]+
+While this can be explicitly sorted, it is not required that the list +be sorted before the unique elements pulled out (unlike the Unix +command line utility). +
+[% tt_start_tag %] numbers = mylist.unique.sort [% tt_end_tag %]+
The following example demonstrates how an empty list ('folk') can be @@ -1180,7 +1194,7 @@ [% WRAPPER section title="AUTHOR" -%]
-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -1189,7 +1203,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.33 +2 -2 Template2/docs/src/Manual/Views.html Index: Views.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Manual/Views.html,v retrieving revision 1.32 retrieving revision 1.33 diff -u -r1.32 -r1.33 --- Views.html 2002/07/07 14:42:51 1.32 +++ Views.html 2002/07/09 14:41:52 1.33 @@ -608,7 +608,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -617,7 +617,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:41:55 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwBf-000DPD-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:41:55 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -768,7 +768,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:41:59 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwBj-000DQ6-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:41:59 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -114,8 +114,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Config.html Index: Config.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Config.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Config.html 2002/07/07 17:25:19 1.45 +++ Config.html 2002/07/09 14:41:56 1.46 @@ -151,7 +151,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -160,8 +160,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Constants.html Index: Constants.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Constants.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Constants.html 2002/07/07 17:25:20 1.45 +++ Constants.html 2002/07/09 14:41:56 1.46 @@ -94,7 +94,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -103,8 +103,8 @@ [% WRAPPER section title="VERSION" -%]
-2.50, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.51, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Context.html Index: Context.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Context.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Context.html 2002/07/07 17:25:20 1.45 +++ Context.html 2002/07/09 14:41:56 1.46 @@ -623,7 +623,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -632,8 +632,8 @@ [% WRAPPER section title="VERSION" -%]
-2.62, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.63, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Document.html Index: Document.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Document.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Document.html 2002/07/07 17:25:21 1.45 +++ Document.html 2002/07/09 14:41:56 1.46 @@ -203,7 +203,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -212,8 +212,8 @@ [% WRAPPER section title="VERSION" -%]
-2.52, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.53, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Exception.html Index: Exception.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Exception.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Exception.html 2002/07/07 17:25:21 1.45 +++ Exception.html 2002/07/09 14:41:56 1.46 @@ -82,7 +82,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -91,8 +91,8 @@ [% WRAPPER section title="VERSION" -%]
-2.47, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.48, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Filters.html Index: Filters.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Filters.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Filters.html 2002/07/07 17:25:22 1.45 +++ Filters.html 2002/07/09 14:41:56 1.46 @@ -694,7 +694,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -703,8 +703,8 @@ [% WRAPPER section title="VERSION" -%]
-2.55, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.56, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Iterator.html Index: Iterator.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Iterator.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Iterator.html 2002/07/07 17:25:22 1.45 +++ Iterator.html 2002/07/09 14:41:56 1.46 @@ -232,7 +232,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -241,8 +241,8 @@ [% WRAPPER section title="VERSION" -%]
-2.49, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.50, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Parser.html Index: Parser.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Parser.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Parser.html 2002/07/07 17:25:23 1.45 +++ Parser.html 2002/07/09 14:41:57 1.46 @@ -443,7 +443,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -452,8 +452,8 @@ [% WRAPPER section title="VERSION" -%]
-2.62, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.63, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin.html Index: Plugin.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Plugin.html 2002/07/07 17:25:23 1.45 +++ Plugin.html 2002/07/09 14:41:57 1.46 @@ -233,7 +233,7 @@ [% WRAPPER section title="AUTHOR" -%]
-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -242,8 +242,8 @@ [% WRAPPER section title="VERSION" -%]
-2.50, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.51, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugins.html Index: Plugins.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugins.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Plugins.html 2002/07/07 17:25:24 1.45 +++ Plugins.html 2002/07/09 14:41:57 1.46 @@ -770,7 +770,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -779,8 +779,8 @@ [% WRAPPER section title="VERSION" -%]
-2.54, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.55, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +71 -4 Template2/docs/src/Modules/Template/Provider.html Index: Provider.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Provider.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Provider.html 2002/07/07 17:25:25 1.45 +++ Provider.html 2002/07/09 14:41:57 1.46 @@ -24,7 +24,8 @@ "new(\\%options) ", "fetch(\$name)", "store(\$name, \$template)", - "include_path(\\@newpath))" + "include_path(\\@newpath))", + "paths()" ]; PROCESS tocitem title ="AUTHOR" @@ -104,6 +105,55 @@ that have ':' followed by a '/' or '\'. This avoids confusion when using directory names like 'C:\Blah Blah'. ++When specified as a list, the INCLUDE_PATH path can contain elements +which dynamically generate a list of INCLUDE_PATH directories. These +generator elements can be specified as a reference to a subroutine or +an object which implements a paths() method. +
+ my $provider = Template::Provider->new({
+ INCLUDE_PATH => [ '/usr/local/templates',
+ \&incpath_generator,
+ My::IncPath::Generator->new( ... ) ],
+ });
++Each time a template is requested and the INCLUDE_PATH examined, the +subroutine or object method will be called. A reference to a list of +directories should be returned. Generator subroutines should report +errors using die(). Generator objects should return undef and make an +error available via its error() method. +
++For example: +
+ sub incpath_generator {
+ # ...some code...
+
+ if ($all_is_well) {
+ return \@list_of_directories;
+ }
+ else {
+ die "cannot generate INCLUDE_PATH...\n";
+ }
+ }
++or: +
+package My::IncPath::Generator;+
# Template::Base (or Class::Base) provides error() method + use Template::Base; + use base qw( Template::Base );+
sub paths {
+ my $self = shift;
+# ...some code...+
if ($all_is_well) {
+ return \@list_of_directories;
+ }
+ else {
+ return $self->error("cannot generate INCLUDE_PATH...\n");
+ }
+ }
+1;
@@ -361,11 +411,28 @@ the new value.
[%- END %] +[% WRAPPER subsection + title = "paths()" +-%]+This method generates a copy of the INCLUDE_PATH list. Any elements in the +list which are dynamic generators (e.g. references to subroutines or objects +implementing a paths() method) will be called and the list of directories +returned merged into the output list. +
+
+It is possible to provide a generator which returns itself, thus sending
+this method into an infinite loop. To detect and prevent this from happening,
+the '$MAX_DIRS' package variable, set to 64 by default, limits the maximum
+number of paths that can be added to, or generated for the output list. If
+this number is exceeded then the method will immediately return an error
+reporting as much.
+
-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -374,8 +441,8 @@ [% WRAPPER section title="VERSION" -%]
-2.55, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.58, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Service.html Index: Service.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Service.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Service.html 2002/07/07 17:25:25 1.45 +++ Service.html 2002/07/09 14:41:57 1.46 @@ -434,7 +434,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -443,8 +443,8 @@ [% WRAPPER section title="VERSION" -%]
-2.55, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.58, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Stash.html Index: Stash.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Stash.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Stash.html 2002/07/07 17:25:25 1.45 +++ Stash.html 2002/07/09 14:41:57 1.46 @@ -173,7 +173,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -182,8 +182,8 @@ [% WRAPPER section title="VERSION" -%]
-2.60, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.63, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Test.html Index: Test.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Test.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Test.html 2002/07/07 17:25:26 1.45 +++ Test.html 2002/07/09 14:41:57 1.46 @@ -287,7 +287,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -296,8 +296,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:13 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwBx-000DRY-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:13 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-2.49, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.50, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/CGI.html Index: CGI.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/CGI.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- CGI.html 2002/07/07 17:25:27 1.45 +++ CGI.html 2002/07/09 14:41:59 1.46 @@ -73,7 +73,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -82,8 +82,8 @@ [% WRAPPER section title="VERSION" -%]
-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.36 +2 -2 Template2/docs/src/Modules/Template/Plugin/DBI.html Index: DBI.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/DBI.html,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- DBI.html 2002/07/07 17:25:28 1.35 +++ DBI.html 2002/07/09 14:42:00 1.36 @@ -443,8 +443,8 @@ [% WRAPPER section title="VERSION" -%]-2.45, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.46, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/Datafile.html Index: Datafile.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Datafile.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Datafile.html 2002/07/07 17:25:29 1.45 +++ Datafile.html 2002/07/09 14:42:00 1.46 @@ -95,7 +95,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -104,8 +104,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/Date.html Index: Date.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Date.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Date.html 2002/07/07 17:25:29 1.45 +++ Date.html 2002/07/09 14:42:01 1.46 @@ -155,8 +155,8 @@ [% WRAPPER section title="VERSION" -%]-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.53, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/Directory.html Index: Directory.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Directory.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Directory.html 2002/07/07 17:25:30 1.45 +++ Directory.html 2002/07/09 14:42:01 1.46 @@ -246,8 +246,8 @@ [% WRAPPER section title="VERSION" -%]-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/Dumper.html Index: Dumper.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Dumper.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Dumper.html 2002/07/07 17:25:30 1.45 +++ Dumper.html 2002/07/09 14:42:01 1.46 @@ -103,8 +103,8 @@ [% WRAPPER section title="VERSION" -%]-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/File.html Index: File.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/File.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- File.html 2002/07/07 17:25:31 1.45 +++ File.html 2002/07/09 14:42:01 1.46 @@ -267,8 +267,8 @@ [% WRAPPER section title="VERSION" -%]-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/Format.html Index: Format.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Format.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Format.html 2002/07/07 17:25:31 1.45 +++ Format.html 2002/07/09 14:42:02 1.46 @@ -52,7 +52,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -61,8 +61,8 @@ [% WRAPPER section title="VERSION" -%]
-2.49, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.50, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.23 +3 -3 Template2/docs/src/Modules/Template/Plugin/HTML.html Index: HTML.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/HTML.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- HTML.html 2002/07/07 17:25:35 1.22 +++ HTML.html 2002/07/09 14:42:02 1.23 @@ -110,7 +110,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -119,8 +119,8 @@ [% WRAPPER section title="VERSION" -%]
-2.41, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.42, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/Iterator.html Index: Iterator.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Iterator.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Iterator.html 2002/07/07 17:25:35 1.45 +++ Iterator.html 2002/07/09 14:42:02 1.46 @@ -54,7 +54,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -63,8 +63,8 @@ [% WRAPPER section title="VERSION" -%]
-2.47, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.48, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/Pod.html Index: Pod.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Pod.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Pod.html 2002/07/07 17:25:36 1.45 +++ Pod.html 2002/07/09 14:42:03 1.46 @@ -52,7 +52,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -61,8 +61,8 @@ [% WRAPPER section title="VERSION" -%]
-2.46, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.47, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/Table.html Index: Table.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Table.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Table.html 2002/07/07 17:25:36 1.45 +++ Table.html 2002/07/09 14:42:03 1.46 @@ -209,7 +209,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -218,8 +218,8 @@ [% WRAPPER section title="VERSION" -%]
-2.49, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.50, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/URL.html Index: URL.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/URL.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- URL.html 2002/07/07 17:25:37 1.45 +++ URL.html 2002/07/09 14:42:03 1.46 @@ -121,7 +121,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -130,8 +130,8 @@ [% WRAPPER section title="VERSION" -%]
-2.49, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.50, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Modules/Template/Plugin/View.html Index: View.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/View.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- View.html 2002/07/07 17:25:38 1.45 +++ View.html 2002/07/09 14:42:04 1.46 @@ -58,7 +58,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -67,8 +67,8 @@ [% WRAPPER section title="VERSION" -%]
-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/Wrap.html Index: Wrap.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/Wrap.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- Wrap.html 2002/07/07 17:25:38 1.45 +++ Wrap.html 2002/07/09 14:42:04 1.46 @@ -100,8 +100,8 @@ [% WRAPPER section title="VERSION" -%]-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:18 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwC2-000DRz-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:18 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Image.html Index: Image.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Image.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- Image.html 2002/07/07 17:25:40 1.20 +++ Image.html 2002/07/09 14:42:15 1.21 @@ -128,8 +128,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Polygon.html Index: Polygon.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Polygon.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- Polygon.html 2002/07/07 17:25:40 1.20 +++ Polygon.html 2002/07/09 14:42:15 1.21 @@ -100,8 +100,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Text.html Index: Text.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Text.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- Text.html 2002/07/07 17:25:41 1.20 +++ Text.html 2002/07/09 14:42:15 1.21 @@ -81,8 +81,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:28 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCB-000DSn-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:27 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/bars.html Index: bars.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/bars.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- bars.html 2002/07/07 17:25:42 1.20 +++ bars.html 2002/07/09 14:42:19 1.21 @@ -120,8 +120,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/bars3d.html Index: bars3d.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/bars3d.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- bars3d.html 2002/07/07 17:25:42 1.20 +++ bars3d.html 2002/07/09 14:42:21 1.21 @@ -101,8 +101,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/lines.html Index: lines.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/lines.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- lines.html 2002/07/07 17:25:46 1.20 +++ lines.html 2002/07/09 14:42:22 1.21 @@ -109,8 +109,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/lines3d.html Index: lines3d.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/lines3d.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- lines3d.html 2002/07/07 17:25:47 1.20 +++ lines3d.html 2002/07/09 14:42:22 1.21 @@ -101,8 +101,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/linespoints.html Index: linespoints.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/linespoints.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- linespoints.html 2002/07/07 17:25:47 1.20 +++ linespoints.html 2002/07/09 14:42:22 1.21 @@ -94,8 +94,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/mixed.html Index: mixed.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/mixed.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- mixed.html 2002/07/07 17:25:48 1.20 +++ mixed.html 2002/07/09 14:42:23 1.21 @@ -109,8 +109,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/pie.html Index: pie.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/pie.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- pie.html 2002/07/07 17:25:48 1.20 +++ pie.html 2002/07/09 14:42:23 1.21 @@ -82,8 +82,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/pie3d.html Index: pie3d.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/pie3d.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- pie3d.html 2002/07/07 17:25:49 1.20 +++ pie3d.html 2002/07/09 14:42:24 1.21 @@ -87,8 +87,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Graph/points.html Index: points.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Graph/points.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- points.html 2002/07/07 17:25:49 1.20 +++ points.html 2002/07/09 14:42:24 1.21 @@ -91,8 +91,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:36 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCK-000DUO-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:36 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -73,8 +73,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +3 -3 Template2/docs/src/Tools/ttree.html Index: ttree.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Tools/ttree.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- ttree.html 2002/07/07 17:25:57 1.45 +++ ttree.html 2002/07/09 14:42:35 1.46 @@ -115,7 +115,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -124,8 +124,8 @@ [% WRAPPER section title="VERSION" -%]
-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:29 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCD-000DT6-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:29 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.21 +2 -2 Template2/docs/src/Modules/Template/Plugin/GD/Text/Wrap.html Index: Wrap.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/GD/Text/Wrap.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- Wrap.html 2002/07/07 17:25:51 1.20 +++ Wrap.html 2002/07/09 14:42:29 1.21 @@ -123,8 +123,8 @@ [% WRAPPER section title="VERSION" -%]-1.40, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.41, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:31 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCF-000DTS-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:31 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:2.6, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/XML/RSS.html Index: RSS.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/XML/RSS.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- RSS.html 2002/07/07 17:25:52 1.45 +++ RSS.html 2002/07/09 14:42:30 1.46 @@ -137,8 +137,8 @@ [% WRAPPER section title="VERSION" -%]-2.48, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.49, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.45 +2 -2 Template2/docs/src/Modules/Template/Plugin/XML/Simple.html Index: Simple.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/XML/Simple.html,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- Simple.html 2002/07/07 17:25:52 1.44 +++ Simple.html 2002/07/09 14:42:30 1.45 @@ -69,8 +69,8 @@ [% WRAPPER section title="VERSION" -%]-2.46, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.47, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.46 +2 -2 Template2/docs/src/Modules/Template/Plugin/XML/XPath.html Index: XPath.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Plugin/XML/XPath.html,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- XPath.html 2002/07/07 17:25:52 1.45 +++ XPath.html 2002/07/09 14:42:30 1.46 @@ -119,8 +119,8 @@ [% WRAPPER section title="VERSION" -%]-2.51, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +2.52, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:32 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCG-000DTl-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:32 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -116,8 +116,8 @@ [% WRAPPER section title="VERSION" -%]
-1.43, distributed as part of the -Template Toolkit version 2.07b, released on 07 July 2002. +1.44, distributed as part of the +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.16 +1 -1 Template2/docs/src/Modules/Template/Stash/XS.html Index: XS.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Modules/Template/Stash/XS.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- XS.html 2002/07/07 14:43:04 1.15 +++ XS.html 2002/07/09 14:42:31 1.16 @@ -141,7 +141,7 @@ [% WRAPPER section title="VERSION" -%]-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:34 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCI-000DU9-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:34 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id:-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section 1.29 +2 -2 Template2/docs/src/Tutorial/Web.html Index: Web.html =================================================================== RCS file: /template-toolkit/Template2/docs/src/Tutorial/Web.html,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- Web.html 2002/07/07 14:43:06 1.28 +++ Web.html 2002/07/09 14:42:38 1.29 @@ -774,7 +774,7 @@ [% WRAPPER section title="AUTHOR" -%]-Andy Wardley <abw@kfs.org> +Andy Wardley <abw@andywardley.com>
[% ttlink('http://www.andywardley.com/', 'http://www.andywardley.com/') -%] @@ -783,7 +783,7 @@ [% WRAPPER section title="VERSION" -%]
-Template Toolkit version 2.07b, released on 07 July 2002. +Template Toolkit version 2.07c, released on 09 July 2002.
[%- END %] [% WRAPPER section From cvs@template-toolkit.org Tue Jul 09 15:42:39 2002 Received: from localhost.ourshack.com ([127.0.0.1] helo=dog.ourshack.com) by dog.ourshack.com with smtp (Exim 3.33 #1) id 17RwCN-000DUp-00 for templates-cvs@template-toolkit.org; Tue, 09 Jul 2002 15:42:39 +0100 From: cvs@template-toolkit.org To: templates-cvs@template-toolkit.org Message-Id: