[Checkins] SVN: zope.tal/tags/3.2.0/ Package zope.tal-3.2.0 as an egg.

Tres Seaver tseaver at palladion.com
Wed Apr 5 00:45:12 EDT 2006


Log message for revision 66486:
  Package zope.tal-3.2.0 as an egg.

Changed:
  U   zope.tal/tags/3.2.0/CHANGES.txt
  U   zope.tal/tags/3.2.0/setup.py
  _U  zope.tal/tags/3.2.0/src/zope/

-=-
Modified: zope.tal/tags/3.2.0/CHANGES.txt
===================================================================
--- zope.tal/tags/3.2.0/CHANGES.txt	2006-04-05 04:19:15 UTC (rev 66485)
+++ zope.tal/tags/3.2.0/CHANGES.txt	2006-04-05 04:45:12 UTC (rev 66486)
@@ -13,18 +13,44 @@
 - Corresponds to the verison of the zope.tal package shipped as part of
   the Zope 3.2.0 release.
 
+- Ensured that 'tal:content=""' got properly handled by 'i18n:translate=""'.
+  See http://www.zope.org/Collectors/Zope3-dev/455.
+
+- Corrected TALInterpreter methods to call its own 'translate', rather
+  than invoking engine directly;  this caused 'i18nextract' to fail,
+  due to mysterious lossage of file positions.
+
 zope.tal version 3.1.0 (2005/10/03)
 -----------------------------------
 
 - Corresponds to the verison of the zope.tal package shipped as part of
   the Zope 3.1.0 release.
 
+- Changed the macro stack entries to have meaningful attribute names, in
+  order to make references to individual fields easier to decipher.
+
+- Synched FasterStringIO tweak with Zope2 impelmentation.
+
+- Disabled automagic translation of message IDs in TAL.
+
+- 'talparser.py':  pass current column position to element handlers.
+
+- 'driver.py':  added command-line option to force keeping source annotations.
+  Also, modified handling of files local to the package for easier testing.
+
+- Sundry documentation / coding style cleanups.
+
 zope.tal version 3.0.1 (2005/07/27)
 -----------------------------------
 
 - Corresponds to the verison of the zope.tal package shipped as part of
   the Zope X3.0.1 release.
 
+- Fixed bug in which 'i18n:translate' would remove line breaks from
+  '<pre>...</pre>' contents.  See:
+  http://www.zope.org/Collectors/Zope3-dev/314
+
+
 zope.tal version 3.0.0 (2004/11/07)
 -----------------------------------
 

Modified: zope.tal/tags/3.2.0/setup.py
===================================================================
--- zope.tal/tags/3.2.0/setup.py	2006-04-05 04:19:15 UTC (rev 66485)
+++ zope.tal/tags/3.2.0/setup.py	2006-04-05 04:45:12 UTC (rev 66486)
@@ -24,14 +24,16 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.tal',
-      version='1.0',
-      url='http://svn.zope.org/zope.tal',
+      version='3.2.0',
+      url='http://svn.zope.org/zope.tal/tags/3.2.0',
       license='ZPL 2.1',
       description='Zope3 Template Application Languate (TAL)',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
       
-      packages=['zope', 'zope.tal'],
+      packages=['zope',
+                'zope.tal',
+               ],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
 
       namespace_packages=['zope',],


Property changes on: zope.tal/tags/3.2.0/src/zope
___________________________________________________________________
Name: svn:externals
   - tal svn://svn.zope.org/repos/main/Zope3/trunk/src/zope/tal

   + tal svn://svn.zope.org/repos/main/Zope3/tags/Zope-3.2.0/src/zope/tal




More information about the Checkins mailing list