[Checkins] SVN: zope.tal/trunk/ Prep historical release.

Tres Seaver tseaver at palladion.com
Wed Apr 5 00:02:52 EDT 2006


Log message for revision 66481:
  Prep historical release.

Changed:
  A   zope.tal/trunk/CHANGES.txt
  A   zope.tal/trunk/README.txt
  U   zope.tal/trunk/setup.py

-=-
Added: zope.tal/trunk/CHANGES.txt
===================================================================
--- zope.tal/trunk/CHANGES.txt	2006-04-05 03:53:58 UTC (rev 66480)
+++ zope.tal/trunk/CHANGES.txt	2006-04-05 04:02:52 UTC (rev 66481)
@@ -0,0 +1,32 @@
+zope.tal Package Changelog
+==========================
+
+zope.tal version 3.2.1 (2006/03/26)
+-----------------------------------
+
+- Corresponds to the verison of the zope.tal package shipped as part of
+  the Zope 3.2.1 release.
+
+zope.tal version 3.2.0 (2006/01/05)
+-----------------------------------
+
+- Corresponds to the verison of the zope.tal package shipped as part of
+  the Zope 3.2.0 release.
+
+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.
+
+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.
+
+zope.tal version 3.0.0 (2004/11/07)
+-----------------------------------
+
+- Corresponds to the verison of the zope.tal package shipped as part of
+  the Zope X3.0.0 release.


Property changes on: zope.tal/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.tal/trunk/README.txt
===================================================================
--- zope.tal/trunk/README.txt	2006-04-05 03:53:58 UTC (rev 66480)
+++ zope.tal/trunk/README.txt	2006-04-05 04:02:52 UTC (rev 66481)
@@ -0,0 +1,45 @@
+zope.tal Package Readme
+=======================
+
+Overview
+--------
+
+The Zope3 Template Attribute Languate (TAL) specifies the custom namespace
+and attributes which are used by the Zope Page Templates renderer to inject
+dynamic markup into a page.  It also includes the Macro Expansion for TAL
+(METAL) macro language used in page assembly.
+
+The dynamic values themselves are specified using a companion language,
+TALES (see the 'zope.tales' package for more).
+
+See: http://www.zope.org/Wikis/DevSite/Projects/ZPT/TAL%20Specification%201.4
+
+Changes
+-------
+
+See CHANGES.txt.
+
+Installation
+------------
+
+See INSTALL.txt.
+
+
+Developer Resources
+-------------------
+
+- Subversion browser:
+
+  http://svn.zope.org/zope.tal/
+
+- Read-only Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.tal/trunk
+
+- Writable Subversion checkout:
+
+  $ svn co svn://svn.zope.org/repos/main/zope.tal/trunk
+
+- Note that the 'src/zope/tal' package is acutally a 'svn:externals' link
+  to the corresponding package in the Zope3 trunk (or to a specific tag,
+  for released versions of the package).


Property changes on: zope.tal/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.tal/trunk/setup.py
===================================================================
--- zope.tal/trunk/setup.py	2006-04-05 03:53:58 UTC (rev 66480)
+++ zope.tal/trunk/setup.py	2006-04-05 04:02:52 UTC (rev 66481)
@@ -1,6 +1,6 @@
 ##############################################################################
 #
-# Copyright (c) 2004 Zope Corporation and Contributors.
+# Copyright (c) 2006 Zope Corporation and Contributors.
 # All Rights Reserved.
 #
 # This software is subject to the provisions of the Zope Public License,
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Setup for zope.i18nmessageid package
+"""Setup for zope.tal package
 
 $Id$
 """
@@ -24,13 +24,12 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.tal',
-      version='3.2',
+      version='1.0',
       url='http://svn.zope.org/zope.tal',
       license='ZPL 2.1',
-      description='tal',
+      description='Zope3 Template Application Languate (TAL)',
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
-      long_description='',
       
       packages=['zope', 'zope.tal'],
       package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},



More information about the Checkins mailing list