Skip to content

Commit

Permalink
* prep for 2.07b
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.tt2.org/tt/Template2/trunk@429 d5a88997-0a34-4036-9ed2-92fb5d660d91
  • Loading branch information
abw committed Jul 7, 2002
1 parent f059867 commit 86f0e01
Show file tree
Hide file tree
Showing 170 changed files with 850 additions and 332 deletions.
14 changes: 12 additions & 2 deletions Changes
Expand Up @@ -3,7 +3,7 @@
# Changes
#
# DESCRIPTION
# Revision history for the Template Toolkit version 2.07a, detailing
# Revision history for the Template Toolkit version 2.07b, detailing
# significant changes between versions, most recent first. Some
# way down the file you'll find a section detailing major changes from
# version 1.* to 2.* and a list of "Gotchas!" that you might have to
Expand All @@ -23,7 +23,17 @@
#========================================================================

#------------------------------------------------------------------------
# Version 2.07a - ## DEVELOPER RELEASE ##
# Version 2.07b - July 7th 2002 ## DEVELOPER RELEASE ##
#------------------------------------------------------------------------

* Added the CONSTANTS, CONSTANTS_NAMESPACE and NAMESPACE options, the
Template::Namespace::Constants module, documentation and t/constants.t
test suite. This adds support for compile-time constant folding and
other custom namespace handlers.


#------------------------------------------------------------------------
# Version 2.07a - July 5th 2002 ## DEVELOPER RELEASE ##
#------------------------------------------------------------------------

* Changed the Perl and XS stashes to automatically promote a scalar
Expand Down
4 changes: 2 additions & 2 deletions HACKING
@@ -1,9 +1,9 @@

Template Toolkit

Version 2.07a
Version 2.07b

05 July 2002
07 July 2002

Copyright (C) 1996-2002 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
Expand Down
18 changes: 9 additions & 9 deletions INSTALL
@@ -1,9 +1,9 @@

Template Toolkit

Version 2.07a
Version 2.07b

05 July 2002
07 July 2002

Copyright (C) 1996-2002 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
Expand Down Expand Up @@ -42,8 +42,8 @@ need to install them. They're all available from CPAN if you do.

To install the Template Toolkit:

tar zxf Template-Toolkit-2.07a.tar.gz
cd Template-Toolkit-2.07a
tar zxf Template-Toolkit-2.07b.tar.gz
cd Template-Toolkit-2.07b
perl Makefile.PL
make
make test
Expand Down Expand Up @@ -129,19 +129,19 @@ The Template Toolkit is distributed as a gzipped tar archive file:

Template-Toolkit-<version>.tar.gz

where <version> represents the current version number, e.g. 2.07a.
where <version> represents the current version number, e.g. 2.07b.

To install the Template Toolkit, unpack the distribution archive to
create an installation directory. Something like this:

tar zxf Template-Toolkit-2.07a.tar.gz
tar zxf Template-Toolkit-2.07b.tar.gz
or
gunzip Template-Toolkit-2.07a.tar.gz
tar xf Template-Toolkit-2.07a.tar
gunzip Template-Toolkit-2.07b.tar.gz
tar xf Template-Toolkit-2.07b.tar

You can then 'cd' into the directory created,

cd Template-Toolkit-2.07a
cd Template-Toolkit-2.07b

and perform the usual Perl installation procedure:

Expand Down
4 changes: 4 additions & 0 deletions MANIFEST
Expand Up @@ -51,6 +51,7 @@ docs/src/Modules/Template/Document.html
docs/src/Modules/Template/Exception.html
docs/src/Modules/Template/Filters.html
docs/src/Modules/Template/Iterator.html
docs/src/Modules/Template/Namespace/Constants.html
docs/src/Modules/Template/Parser.html
docs/src/Modules/Template/Plugin.html
docs/src/Modules/Template/Plugin/Autoformat.html
Expand Down Expand Up @@ -388,6 +389,7 @@ lib/Template/Manual/Syntax.pod
lib/Template/Manual/Variables.pod
lib/Template/Manual/Views.pod
lib/Template/Modules.pod
lib/Template/Namespace/Constants.pm
lib/Template/Parser.pm
lib/Template/Plugin.pm
lib/Template/Plugin/Autoformat.pm
Expand Down Expand Up @@ -462,10 +464,12 @@ t/compile3.t
t/compile4.t
t/compile5.t
t/config.t
t/constants.t
t/context.t
t/datafile.t
t/date.t
t/dbi.t
t/debug.t
t/directive.t
t/directry.t
t/document.t
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.SKIP
Expand Up @@ -5,13 +5,15 @@
^Template-Toolkit-\d\.\d+\.tar\.gz$
~$
\.old$
\.\#
\.ttc$
\.gz$
\.defaults\.cfg
^benchmark/
^blib/
^clib/
^docsrc/
^docset/
^project/
^todo/
^junk/
Expand Down
22 changes: 15 additions & 7 deletions README
@@ -1,9 +1,9 @@

Template Toolkit

Version 2.07a
Version 2.07b

05 July 2002
07 July 2002

Copyright (C) 1996-2002 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
Expand Down Expand Up @@ -43,8 +43,8 @@ need to install them. They're all available from CPAN if you do.

To install the Template Toolkit:

tar zxf Template-Toolkit-2.07a.tar.gz
cd Template-Toolkit-2.07a
tar zxf Template-Toolkit-2.07b.tar.gz
cd Template-Toolkit-2.07b
perl Makefile.PL
make
make test
Expand Down Expand Up @@ -103,15 +103,23 @@ appropriate sex, then you can always return it for a full refund. :-)
WHAT'S NEW?
-----------

The most exciting new feature in version 2.05 is Doug Steinwand's
Version 2.08 adds compile time constant folding which can result in a
significant performance boost when processing templates. It also
offers several other minor enhancements and bug fixes.

Version 2.07 was a major maintenance release, fixing numerous minor bugs
and smoothing out various rough edges. Version 2.06 was a very minor
bug release version.

The most exciting new feature in version 2.05 was Doug Steinwand's
high-speed drop-in replacement for Template::Stash written in
Perl XS. With this in place, the Template Toolkit typically runs
twice as fast as before!

Pretty much everything else in 2.05 and 2.04 before it consisted
of minor bug fixes and improvements.

Version 2.03 includes Craig Barratt's 'latex' filter and GD plugins
Version 2.03 included Craig Barratt's 'latex' filter and GD plugins
and Dave Cross's tutorial on using the Template Toolkit for creating
and reusing XML data files.

Expand Down Expand Up @@ -336,7 +344,7 @@ VERSION COMPATABILITY
---------------------

In terms of the template language and features available, versions
2.01 through to 2.07a should be fully backwardly compatible with
2.01 through to 2.07b should be fully backwardly compatible with
version 2.00.

Version 2.00 is backwardly compatible with version 1 in all but a few
Expand Down
2 changes: 1 addition & 1 deletion TODO
Expand Up @@ -3,7 +3,7 @@
# TODO
#
# DESCRIPTION
# TODO list for the Template Toolkit version 2.07a, containing
# TODO list for the Template Toolkit version 2.07b, containing
# known bugs, limitations, planned enhancements, long term visions
# and a few whacky ideas.
#
Expand Down
4 changes: 2 additions & 2 deletions bin/tpage
Expand Up @@ -112,8 +112,8 @@ L<http://www.andywardley.com/|http://www.andywardley.com/>
=head1 VERSION
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
=head1 COPYRIGHT
Expand Down
4 changes: 2 additions & 2 deletions bin/ttree
Expand Up @@ -635,8 +635,8 @@ L<http://www.andywardley.com/|http://www.andywardley.com/>
=head1 VERSION
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
=head1 COPYRIGHT
Expand Down
18 changes: 16 additions & 2 deletions docs/lib/docset/config
Expand Up @@ -248,7 +248,7 @@ docset => {
prev => 'Manual',
next => 'Library',

pagelist => [ 'Template', 'Base', 'Config', 'Constants', 'Context', 'Document', 'Exception', 'Filters', 'Iterator', 'Parser', 'Plugin', 'Plugins', 'Provider', 'Service', 'Stash', 'Stash_Context', 'Stash_XS', 'Test', 'Plugin_Autoformat', 'Plugin_CGI', 'Plugin_DBI', 'Plugin_Datafile', 'Plugin_Date', 'Plugin_Directory', 'Plugin_Dumper', 'Plugin_File', 'Plugin_Filter', 'Plugin_Format', 'Plugin_GD_Image', 'Plugin_GD_Polygon', 'Plugin_GD_Constants', 'Plugin_GD_Text', 'Plugin_GD_Text_Align', 'Plugin_GD_Text_Wrap', 'Plugin_GD_Graph_lines', 'Plugin_GD_Graph_lines3d', 'Plugin_GD_Graph_bars', 'Plugin_GD_Graph_bars3d', 'Plugin_GD_Graph_points', 'Plugin_GD_Graph_linespoints', 'Plugin_GD_Graph_area', 'Plugin_GD_Graph_mixed', 'Plugin_GD_Graph_pie', 'Plugin_GD_Graph_pie3d', 'Plugin_HTML', 'Plugin_Iterator', 'Plugin_Pod', 'Plugin_String', 'Plugin_Table', 'Plugin_URL', 'Plugin_View', 'Plugin_Wrap', 'Plugin_XML_DOM', 'Plugin_XML_RSS', 'Plugin_XML_Simple', 'Plugin_XML_Style', 'Plugin_XML_XPath' ],
pagelist => [ 'Template', 'Base', 'Config', 'Constants', 'Context', 'Document', 'Exception', 'Filters', 'Iterator', 'Namespace_Constants', 'Parser', 'Plugin', 'Plugins', 'Provider', 'Service', 'Stash', 'Stash_Context', 'Stash_XS', 'Test', 'Plugin_Autoformat', 'Plugin_CGI', 'Plugin_DBI', 'Plugin_Datafile', 'Plugin_Date', 'Plugin_Directory', 'Plugin_Dumper', 'Plugin_File', 'Plugin_Filter', 'Plugin_Format', 'Plugin_GD_Image', 'Plugin_GD_Polygon', 'Plugin_GD_Constants', 'Plugin_GD_Text', 'Plugin_GD_Text_Align', 'Plugin_GD_Text_Wrap', 'Plugin_GD_Graph_lines', 'Plugin_GD_Graph_lines3d', 'Plugin_GD_Graph_bars', 'Plugin_GD_Graph_bars3d', 'Plugin_GD_Graph_points', 'Plugin_GD_Graph_linespoints', 'Plugin_GD_Graph_area', 'Plugin_GD_Graph_mixed', 'Plugin_GD_Graph_pie', 'Plugin_GD_Graph_pie3d', 'Plugin_HTML', 'Plugin_Iterator', 'Plugin_Pod', 'Plugin_String', 'Plugin_Table', 'Plugin_URL', 'Plugin_View', 'Plugin_Wrap', 'Plugin_XML_DOM', 'Plugin_XML_RSS', 'Plugin_XML_Simple', 'Plugin_XML_Style', 'Plugin_XML_XPath' ],

pages => {
Template => {
Expand Down Expand Up @@ -366,6 +366,19 @@ docset => {
about => 'Data iterator used by the FOREACH directive',

prev => 'Filters',
next => 'Namespace_Constants',
},
Namespace_Constants => {
id => 'Namespace_Constants',
name => 'Template::Namespace::Constants',
title => 'Template::Namespace::Constants',
podname => 'Template::Namespace::Constants',
url => 'Modules/Template/Namespace/Constants.html',
uplink => '../../..',
author => 'abw',
about => 'Compile time constant folding',

prev => 'Iterator',
next => 'Parser',
},
Parser => {
Expand All @@ -378,7 +391,7 @@ docset => {
author => 'abw',
about => 'LALR(1) parser for compiling template documents',

prev => 'Iterator',
prev => 'Namespace_Constants',
next => 'Plugin',
},
Plugin => {
Expand Down Expand Up @@ -1299,6 +1312,7 @@ docset => {
'Template::Exception' => 'Modules/Template/Exception.html',
'Template::Filters' => 'Modules/Template/Filters.html',
'Template::Iterator' => 'Modules/Template/Iterator.html',
'Template::Namespace::Constants' => 'Modules/Template/Namespace/Constants.html',
'Template::Parser' => 'Modules/Template/Parser.html',
'Template::Plugin' => 'Modules/Template/Plugin.html',
'Template::Plugins' => 'Modules/Template/Plugins.html',
Expand Down
4 changes: 2 additions & 2 deletions docs/src/FAQ/FAQ.html
Expand Up @@ -319,8 +319,8 @@
[% WRAPPER section
title="VERSION"
-%]<p>
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
</p>
[%- END %]
[% WRAPPER section
Expand Down
4 changes: 2 additions & 2 deletions docs/src/Library/HTML.html
Expand Up @@ -292,8 +292,8 @@
[% WRAPPER section
title="VERSION"
-%]<p>
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
</p>
[%- END %]
[% WRAPPER section
Expand Down
4 changes: 2 additions & 2 deletions docs/src/Library/PostScript.html
Expand Up @@ -47,8 +47,8 @@
[% WRAPPER section
title="VERSION"
-%]<p>
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
</p>
[%- END %]
[% WRAPPER section
Expand Down
4 changes: 2 additions & 2 deletions docs/src/Library/Splash.html
Expand Up @@ -892,8 +892,8 @@
[% WRAPPER section
title="VERSION"
-%]<p>
2.49, distributed as part of the
Template Toolkit version 2.07a, released on 05 July 2002.
2.50, distributed as part of the
Template Toolkit version 2.07b, released on 07 July 2002.
</p>
[%- END %]
[% WRAPPER section
Expand Down

0 comments on commit 86f0e01

Please sign in to comment.