[Templates-cvs] cvs commit: Template2/docs/src/Release Changes.html HACKING.html INSTALL.html README.html TODO.html
cvs@template-toolkit.org
cvs@template-toolkit.org
Mon, 12 Jan 2004 11:51:53 +0000
cvs 04/01/12 11:51:52
Modified: docs/src/Release Changes.html HACKING.html INSTALL.html
README.html TODO.html
Log:
prep for version 2.12
Revision Changes Path
1.59 +33 -2 Template2/docs/src/Release/Changes.html
Index: Changes.html
===================================================================
RCS file: /template-toolkit/Template2/docs/src/Release/Changes.html,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- Changes.html 2004/01/06 18:30:58 1.58
+++ Changes.html 2004/01/12 11:51:51 1.59
@@ -7,7 +7,7 @@
# Changes
#
# DESCRIPTION
-# Revision history for the Template Toolkit version 2.11, detailing
+# Revision history for the Template Toolkit version 2.12, 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
@@ -23,8 +23,39 @@
# Any changes you make here may be lost!
#
#------------------------------------------------------------------------
-# $Id: Changes.html,v 1.58 2004/01/06 18:30:58 abw Exp $
+# $Id: Changes.html,v 1.59 2004/01/12 11:51:51 abw Exp $
#========================================================================
+
+
+#------------------------------------------------------------------------
+# Version 2.12 - 12th January 2004
+#------------------------------------------------------------------------
+
+* Added the version() method to Template::Base to report the version
+ number of a module. Added some tests to t/base.t.
+
+* Added the --template_module option to ttree, to allow the user to
+ specify a template processing module other than the default 'Template'
+ to be used. Also changed various print statements to send all
+ verbose output to stdout, whereas previously it was split across stdout
+ and stderr.
+
+
+#------------------------------------------------------------------------
+# Version 2.11b - 7th January 2004 ## DEVELOPER RELEASE ##
+#------------------------------------------------------------------------
+
+* Applied patch from Myk Melez to ensure the 'component' variable
+ remains correctly set to the current templates. See
+ http://template-toolkit.org/pipermail/templates/2004-January/005483.html
+
+
+#------------------------------------------------------------------------
+# Version 2.11a - 6th Januray 2004 ## DEVELOPER RELEASE ##
+#------------------------------------------------------------------------
+
+* Fixed bug in t/date.t and corrected version number of
+ Template::Grammar.
#------------------------------------------------------------------------
1.30 +2 -2 Template2/docs/src/Release/HACKING.html
Index: HACKING.html
===================================================================
RCS file: /template-toolkit/Template2/docs/src/Release/HACKING.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- HACKING.html 2004/01/06 18:30:59 1.29
+++ HACKING.html 2004/01/12 11:51:51 1.30
@@ -5,9 +5,9 @@
Template Toolkit
- Version 2.11
+ Version 2.12
- 06 January 2004
+ 12 January 2004
Copyright (C) 1996-2004 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
1.31 +9 -9 Template2/docs/src/Release/INSTALL.html
Index: INSTALL.html
===================================================================
RCS file: /template-toolkit/Template2/docs/src/Release/INSTALL.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- INSTALL.html 2004/01/06 18:30:59 1.30
+++ INSTALL.html 2004/01/12 11:51:51 1.31
@@ -5,9 +5,9 @@
Template Toolkit
- Version 2.11
+ Version 2.12
- 06 January 2004
+ 12 January 2004
Copyright (C) 1996-2004 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
@@ -46,8 +46,8 @@
To install the Template Toolkit:
- tar zxf Template-Toolkit-2.11.tar.gz
- cd Template-Toolkit-2.11
+ tar zxf Template-Toolkit-2.12.tar.gz
+ cd Template-Toolkit-2.12
perl Makefile.PL
make
make test
@@ -133,19 +133,19 @@
Template-Toolkit-<version>.tar.gz
-where <version> represents the current version number, e.g. 2.11.
+where <version> represents the current version number, e.g. 2.12.
To install the Template Toolkit, unpack the distribution archive to
create an installation directory. Something like this:
- tar zxf Template-Toolkit-2.11.tar.gz
+ tar zxf Template-Toolkit-2.12.tar.gz
or
- gunzip Template-Toolkit-2.11.tar.gz
- tar xf Template-Toolkit-2.11.tar
+ gunzip Template-Toolkit-2.12.tar.gz
+ tar xf Template-Toolkit-2.12.tar
You can then 'cd' into the directory created,
- cd Template-Toolkit-2.11
+ cd Template-Toolkit-2.12
and perform the usual Perl installation procedure:
1.51 +5 -5 Template2/docs/src/Release/README.html
Index: README.html
===================================================================
RCS file: /template-toolkit/Template2/docs/src/Release/README.html,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- README.html 2004/01/06 18:30:59 1.50
+++ README.html 2004/01/12 11:51:51 1.51
@@ -5,9 +5,9 @@
Template Toolkit
- Version 2.11
+ Version 2.12
- 06 January 2004
+ 12 January 2004
Copyright (C) 1996-2004 Andy Wardley. All Rights Reserved
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
@@ -47,8 +47,8 @@
To install the Template Toolkit:
- tar zxf Template-Toolkit-2.11.tar.gz
- cd Template-Toolkit-2.11
+ tar zxf Template-Toolkit-2.12.tar.gz
+ cd Template-Toolkit-2.12
perl Makefile.PL
make
make test
@@ -354,7 +354,7 @@
---------------------
In terms of the template language and features available, versions
-2.01 through to 2.11 should be fully backwardly compatible with
+2.01 through to 2.12 should be fully backwardly compatible with
version 2.00.
Version 2.00 is backwardly compatible with version 1 in all but a few
1.59 +1 -1 Template2/docs/src/Release/TODO.html
Index: TODO.html
===================================================================
RCS file: /template-toolkit/Template2/docs/src/Release/TODO.html,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- TODO.html 2004/01/06 18:30:59 1.58
+++ TODO.html 2004/01/12 11:51:51 1.59
@@ -7,7 +7,7 @@
# TODO
#
# DESCRIPTION
-# TODO list for the Template Toolkit version 2.11, containing
+# TODO list for the Template Toolkit version 2.12, containing
# known bugs, limitations, planned enhancements, long term visions
# and a few whacky ideas.
#
@@ -15,7 +15,7 @@
# Andy Wardley <abw@wardley.org>
#
#------------------------------------------------------------------------
-# $Id: TODO.html,v 1.58 2004/01/06 18:30:59 abw Exp $
+# $Id: TODO.html,v 1.59 2004/01/12 11:51:51 abw Exp $
#========================================================================
#------------------------------------------------------------------------