[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
Tue, 13 Jan 2004 16:18:57 +0000


cvs         04/01/13 16:18:56

  Modified:    docs/src/Release Changes.html HACKING.html INSTALL.html
                        README.html TODO.html
  Log:
  prep for version 2.12a
  
  Revision  Changes    Path
  1.61      +18 -4     Template2/docs/src/Release/Changes.html
  
  Index: Changes.html
  ===================================================================
  RCS file: /template-toolkit/Template2/docs/src/Release/Changes.html,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- Changes.html	2004/01/12 12:37:14	1.60
  +++ Changes.html	2004/01/13 16:18:55	1.61
  @@ -7,7 +7,7 @@
   # Changes 
   #
   # DESCRIPTION
  -#   Revision history for the Template Toolkit version 2.12, detailing
  +#   Revision history for the Template Toolkit version 2.12a, 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,9 +23,23 @@
   #   Any changes you make here may be lost!
   #
   #------------------------------------------------------------------------
  -# $Id: Changes.html,v 1.60 2004/01/12 12:37:14 abw Exp $
  +# $Id: Changes.html,v 1.61 2004/01/13 16:18:55 abw Exp $
   #========================================================================
   
  +#------------------------------------------------------------------------
  +# Version 2.12a - 13th January 2004               ## DEVELOPER RELEASE ##
  +#------------------------------------------------------------------------
  +
  +* Fixed the bug in test 25 of t/date.t, hopefully for good this time, 
  +  thanks to the efforts of Steve Peters.  See:
  +  http://template-toolkit.org/pipermail/templates/2004-January/005560.html
  +
  +* Added the FILE_INFO option to Template::Parser.  Enabled by default, 
  +  this can be set to 0 to prevent the parser from adding file and line
  +  info to the generated Perl file.  Don't ask me why - Autrijus wanted
  +  it (which probably means he's up to something twisted again :-).  See:
  +  http://template-toolkit.org/pipermail/templates/2004-January/005552.html
  +
   
   #------------------------------------------------------------------------
   # Version 2.12 - 12th January 2004
  @@ -51,7 +65,7 @@
   
   
   #------------------------------------------------------------------------
  -# Version 2.11a - 6th Januray 2004                ## DEVELOPER RELEASE ##
  +# Version 2.11a - 6th January 2004                ## DEVELOPER RELEASE ##
   #------------------------------------------------------------------------
   
   * Fixed bug in t/date.t and corrected version number of 
  @@ -59,7 +73,7 @@
   
   
   #------------------------------------------------------------------------
  -# Version 2.11 - 6th Januray 2004           
  +# Version 2.11 - 6th January 2004           
   #------------------------------------------------------------------------
   
   * Bumped version number and updated documentation for release.
  
  
  
  1.31      +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.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- HACKING.html	2004/01/12 11:51:51	1.30
  +++ HACKING.html	2004/01/13 16:18:55	1.31
  @@ -5,9 +5,9 @@
   
                               Template Toolkit
   
  -                              Version 2.12
  +                              Version 2.12a
   
  -                             12 January 2004
  +                             13 January 2004
   
           Copyright (C) 1996-2004 Andy Wardley.  All Rights Reserved
           Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
  
  
  
  1.32      +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.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- INSTALL.html	2004/01/12 11:51:51	1.31
  +++ INSTALL.html	2004/01/13 16:18:55	1.32
  @@ -5,9 +5,9 @@
   
                               Template Toolkit
   
  -                              Version 2.12
  +                              Version 2.12a
   
  -                             12 January 2004
  +                             13 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.12.tar.gz
  -    cd Template-Toolkit-2.12
  +    tar zxf Template-Toolkit-2.12a.tar.gz
  +    cd Template-Toolkit-2.12a
       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.12.
  +where <version> represents the current version number, e.g. 2.12a.
   
   To install the Template Toolkit, unpack the distribution archive to
   create an installation directory.  Something like this:
   
  -    tar zxf Template-Toolkit-2.12.tar.gz
  +    tar zxf Template-Toolkit-2.12a.tar.gz
   or
  -    gunzip Template-Toolkit-2.12.tar.gz
  -    tar xf Template-Toolkit-2.12.tar
  +    gunzip Template-Toolkit-2.12a.tar.gz
  +    tar xf Template-Toolkit-2.12a.tar
   
   You can then 'cd' into the directory created,
   
  -    cd Template-Toolkit-2.12
  +    cd Template-Toolkit-2.12a
   
   and perform the usual Perl installation procedure:
   
  
  
  
  1.52      +8 -5      Template2/docs/src/Release/README.html
  
  Index: README.html
  ===================================================================
  RCS file: /template-toolkit/Template2/docs/src/Release/README.html,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- README.html	2004/01/12 11:51:51	1.51
  +++ README.html	2004/01/13 16:18:55	1.52
  @@ -5,9 +5,9 @@
   
                               Template Toolkit
   
  -                              Version 2.12
  +                              Version 2.12a
   
  -                             12 January 2004
  +                             13 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.12.tar.gz
  -    cd Template-Toolkit-2.12
  +    tar zxf Template-Toolkit-2.12a.tar.gz
  +    cd Template-Toolkit-2.12a
       perl Makefile.PL
       make
       make test
  @@ -107,6 +107,9 @@
   WHAT'S NEW?
   -----------
   
  +Version 2.12 followed on quickly from 2.11 to fix a minor, but 
  +annoying bug in the date.t test script. 
  +
   Version 2.11 includes a number of enhancements to ttree, and several
   minor bug fixes.  It also improves on how runtime errors and warnings
   are reported, by adding the template file and line number to the 
  @@ -354,7 +357,7 @@
   ---------------------
   
   In terms of the template language and features available, versions
  -2.01 through to 2.12 should be fully backwardly compatible with 
  +2.01 through to 2.12a should be fully backwardly compatible with 
   version 2.00.  
   
   Version 2.00 is backwardly compatible with version 1 in all but a few
  
  
  
  1.61      +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.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- TODO.html	2004/01/12 12:37:14	1.60
  +++ TODO.html	2004/01/13 16:18:55	1.61
  @@ -7,7 +7,7 @@
   # TODO
   #
   # DESCRIPTION
  -#   TODO list for the Template Toolkit version 2.12, containing
  +#   TODO list for the Template Toolkit version 2.12a, 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.60 2004/01/12 12:37:14 abw Exp $
  +# $Id: TODO.html,v 1.61 2004/01/13 16:18:55 abw Exp $
   #========================================================================
   
   #------------------------------------------------------------------------