[Templates-cvs] cvs commit: Template2/docsrc/src/Release Changes.tt2

cvs@template-toolkit.org cvs@template-toolkit.org


cvs         06/02/01 15:04:19

  Modified:    docsrc/src/Release Changes.tt2
  Log:
  * scalar.replace and list.push
  
  Revision  Changes    Path
  1.126     +14 -2     Template2/docsrc/src/Release/Changes.tt2
  
  Index: Changes.tt2
  ===================================================================
  RCS file: /template-toolkit/Template2/docsrc/src/Release/Changes.tt2,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- Changes.tt2	2006/01/30 20:04:33	1.125
  +++ Changes.tt2	2006/02/01 15:04:19	1.126
  @@ -20,11 +20,11 @@
   #   Any changes you make here may be lost!
   #
   #------------------------------------------------------------------------
  -# $Id: Changes.tt2,v 1.125 2006/01/30 20:04:33 abw Exp $
  +# $Id: Changes.tt2,v 1.126 2006/02/01 15:04:19 abw Exp $
   #========================================================================
   
   #------------------------------------------------------------------------
  -# Version 2.15
  +# Version 2.14a - 31st January 2006               ## DEVELOPER RELEASE ##
   #------------------------------------------------------------------------
   
   Stash
  @@ -66,14 +66,26 @@
   * Removed redundant performance profiling code from Template::Stash::XS.
     Must check with Doug that this is OK and he's not still using it...
   
  +
   Virtual Methods
   ---------------
   
  +* Changed the scalar.replace method to work properly with back
  +  references ($1, $2, etc) by incorporating the code from Nik
  +  Clayton's Template::Plugin::Subst module.
  +
  +  http://tt2.org/pipermail/templates/2006-February/008306.html
  +
   * Changed list.hash and hash.list vmethods to Do The Right Thing instead
     of some crack fuelled nonsense.  hash.list now returns [ %$hash ]
     and list.hash now returns [ @$list ]
   
     http://template-toolkit.org/pipermail/templates/2006-January/008256.html
  +
  +* Changed list.push and list.unshift to accept multiple arguments, thanks
  +  to Bill Moseley.
  +
  +  http://tt2.org/pipermail/templates/2006-January/008294.html
   
   * Fixed the split scalar virtual method which wasn't accepting the second
     argument (limit) correctly.  Thanks to Josh Rosenbaum for pointing