[Templates-cvs] cvs commit: Template2 Changes HACKING INSTALL README TODO

cvs@template-toolkit.org cvs@template-toolkit.org
Mon, 12 Jan 2004 11:51:33 +0000


cvs         04/01/12 11:51:32

  Modified:    .        Changes HACKING INSTALL README TODO
  Log:
  prep for version 2.12
  
  Revision  Changes    Path
  2.77      +33 -2     Template2/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /template-toolkit/Template2/Changes,v
  retrieving revision 2.76
  retrieving revision 2.77
  diff -u -r2.76 -r2.77
  --- Changes	2004/01/06 18:28:48	2.76
  +++ Changes	2004/01/12 11:51:32	2.77
  @@ -3,7 +3,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 
  @@ -19,8 +19,39 @@
   #   Any changes you make here may be lost!
   #
   #------------------------------------------------------------------------
  -# $Id: Changes,v 2.76 2004/01/06 18:28:48 abw Exp $
  +# $Id: Changes,v 2.77 2004/01/12 11:51:32 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.
   
   
   #------------------------------------------------------------------------
  
  
  
  2.30      +2 -2      Template2/HACKING
  
  Index: HACKING
  ===================================================================
  RCS file: /template-toolkit/Template2/HACKING,v
  retrieving revision 2.29
  retrieving revision 2.30
  diff -u -r2.29 -r2.30
  --- HACKING	2004/01/06 18:28:48	2.29
  +++ HACKING	2004/01/12 11:51:32	2.30
  @@ -1,9 +1,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.
  
  
  
  2.32      +9 -9      Template2/INSTALL
  
  Index: INSTALL
  ===================================================================
  RCS file: /template-toolkit/Template2/INSTALL,v
  retrieving revision 2.31
  retrieving revision 2.32
  diff -u -r2.31 -r2.32
  --- INSTALL	2004/01/06 18:28:48	2.31
  +++ INSTALL	2004/01/12 11:51:32	2.32
  @@ -1,9 +1,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.
  @@ -42,8 +42,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
  @@ -129,19 +129,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:
   
  
  
  
  2.58      +5 -5      Template2/README
  
  Index: README
  ===================================================================
  RCS file: /template-toolkit/Template2/README,v
  retrieving revision 2.57
  retrieving revision 2.58
  diff -u -r2.57 -r2.58
  --- README	2004/01/06 18:28:48	2.57
  +++ README	2004/01/12 11:51:32	2.58
  @@ -1,9 +1,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.
  @@ -43,8 +43,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
  @@ -350,7 +350,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
  
  
  
  2.77      +1 -1      Template2/TODO
  
  Index: TODO
  ===================================================================
  RCS file: /template-toolkit/Template2/TODO,v
  retrieving revision 2.76
  retrieving revision 2.77
  diff -u -r2.76 -r2.77
  --- TODO	2004/01/06 18:28:48	2.76
  +++ TODO	2004/01/12 11:51:32	2.77
  @@ -3,7 +3,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.
   #
  @@ -11,7 +11,7 @@
   #   Andy Wardley   <abw@wardley.org>
   #
   #------------------------------------------------------------------------
  -# $Id: TODO,v 2.76 2004/01/06 18:28:48 abw Exp $
  +# $Id: TODO,v 2.77 2004/01/12 11:51:32 abw Exp $
   #========================================================================
   
   #------------------------------------------------------------------------