[Checkins] SVN: zope.traversing/tags/3.4.1/ Release 3.4.1

Marius Gedminas marius at pov.lt
Wed Jul 30 14:01:37 EDT 2008


Log message for revision 89055:
  Release 3.4.1

Changed:
  A   zope.traversing/tags/3.4.1/
  D   zope.traversing/tags/3.4.1/CHANGES.txt
  A   zope.traversing/tags/3.4.1/CHANGES.txt
  D   zope.traversing/tags/3.4.1/setup.py
  A   zope.traversing/tags/3.4.1/setup.py
  D   zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml
  A   zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml

-=-
Copied: zope.traversing/tags/3.4.1 (from rev 89052, zope.traversing/branches/3.4)

Deleted: zope.traversing/tags/3.4.1/CHANGES.txt
===================================================================
--- zope.traversing/branches/3.4/CHANGES.txt	2008-07-30 17:57:32 UTC (rev 89052)
+++ zope.traversing/tags/3.4.1/CHANGES.txt	2008-07-30 18:01:36 UTC (rev 89055)
@@ -1,26 +0,0 @@
-Changes
-=======
-
-3.4.1 (unreleased)
-------------------
-
-...
-
-
-3.4.1a1 (2007-11-13)
---------------------
-
-- do not use unicode strings to set the application server in the virtual host
-  namespace. This caused absolute_url to create unicode URL's.
-
-
-3.4.0 (2007-09-29)
-------------------
-
-No further changes since 3.4.0a1.
-
-3.4.0a1 (2007-04-22)
---------------------
-
-Initial release as a separate project, corresponds to zope.traversing
-from Zope 3.4.0a1

Copied: zope.traversing/tags/3.4.1/CHANGES.txt (from rev 89054, zope.traversing/branches/3.4/CHANGES.txt)
===================================================================
--- zope.traversing/tags/3.4.1/CHANGES.txt	                        (rev 0)
+++ zope.traversing/tags/3.4.1/CHANGES.txt	2008-07-30 18:01:36 UTC (rev 89055)
@@ -0,0 +1,25 @@
+Changes
+=======
+
+3.4.1 (2008-07-30)
+------------------
+
+- Fixed deprecation warning caused by using an old module name for
+  ZopeSecurityPolicy in ftesting.zcml
+
+3.4.1a1 (2007-11-13)
+--------------------
+
+- do not use unicode strings to set the application server in the virtual host
+  namespace. This caused absolute_url to create unicode URL's.
+
+3.4.0 (2007-09-29)
+------------------
+
+No further changes since 3.4.0a1.
+
+3.4.0a1 (2007-04-22)
+--------------------
+
+Initial release as a separate project, corresponds to zope.traversing
+from Zope 3.4.0a1

Deleted: zope.traversing/tags/3.4.1/setup.py
===================================================================
--- zope.traversing/branches/3.4/setup.py	2008-07-30 17:57:32 UTC (rev 89052)
+++ zope.traversing/tags/3.4.1/setup.py	2008-07-30 18:01:36 UTC (rev 89055)
@@ -1,52 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Corporation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Setup for zope.traversing package
-
-$Id$
-"""
-from setuptools import setup, find_packages
-
-long_description = (open('README.txt').read() +
-                    '\n\n' +
-                    open('CHANGES.txt').read())
-
-setup(name='zope.traversing',
-      version = '3.4.1dev',
-      url='http://pypi.python.org/pypi/zope.traversing',
-      license='ZPL 2.1',
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      description="Resolving paths in the object hierarchy",
-      long_description=long_description,
-
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope',],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.app.securitypolicy',
-                                  'zope.app.zcmlfiles',
-                                  'zope.app.zptpage']),
-      install_requires=['setuptools',
-                        'zope.app.applicationcontrol',
-                        'zope.component',
-                        'zope.i18n',
-                        'zope.i18nmessageid',
-                        'zope.interface',
-                        'zope.proxy',
-                        'zope.publisher',
-                        'zope.security',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.traversing/tags/3.4.1/setup.py (from rev 89054, zope.traversing/branches/3.4/setup.py)
===================================================================
--- zope.traversing/tags/3.4.1/setup.py	                        (rev 0)
+++ zope.traversing/tags/3.4.1/setup.py	2008-07-30 18:01:36 UTC (rev 89055)
@@ -0,0 +1,52 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Setup for zope.traversing package
+
+$Id$
+"""
+from setuptools import setup, find_packages
+
+long_description = (open('README.txt').read() +
+                    '\n\n' +
+                    open('CHANGES.txt').read())
+
+setup(name='zope.traversing',
+      version = '3.4.1',
+      url='http://pypi.python.org/pypi/zope.traversing',
+      license='ZPL 2.1',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description="Resolving paths in the object hierarchy",
+      long_description=long_description,
+
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope',],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.app.securitypolicy',
+                                  'zope.app.zcmlfiles',
+                                  'zope.app.zptpage']),
+      install_requires=['setuptools',
+                        'zope.app.applicationcontrol',
+                        'zope.component',
+                        'zope.i18n',
+                        'zope.i18nmessageid',
+                        'zope.interface',
+                        'zope.proxy',
+                        'zope.publisher',
+                        'zope.security',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml
===================================================================
--- zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml	2008-07-30 17:57:32 UTC (rev 89052)
+++ zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml	2008-07-30 18:01:36 UTC (rev 89055)
@@ -1,33 +0,0 @@
-<configure
-   xmlns="http://namespaces.zope.org/zope"
-   i18n_domain="zope"
-   package="zope.traversing"
-   >
-
-  <!-- This file is the equivalent of site.zcml and it is -->
-  <!-- used for functional testing setup -->
-
-  <include package="zope.app.zcmlfiles" />
-  <include package="zope.app.zptpage"/>
-
-  <!-- Principals -->
-
-  <unauthenticatedPrincipal
-      id="zope.anybody"
-      title="Unauthenticated User" />
-
-
-  <include package="zope.app.securitypolicy" file="meta.zcml" />
-
-  <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
-
-  <role id="zope.Anonymous" title="Everybody"
-                 description="All users have this role implicitly" />
-
-  <!-- Replace the following directive if you don't want public access -->
-  <grant permission="zope.View"
-                  role="zope.Anonymous" />
-
-
-</configure>

Copied: zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml (from rev 89053, zope.traversing/branches/3.4/src/zope/traversing/tests/ftesting.zcml)
===================================================================
--- zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml	                        (rev 0)
+++ zope.traversing/tags/3.4.1/src/zope/traversing/tests/ftesting.zcml	2008-07-30 18:01:36 UTC (rev 89055)
@@ -0,0 +1,33 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope"
+   i18n_domain="zope"
+   package="zope.traversing"
+   >
+
+  <!-- This file is the equivalent of site.zcml and it is -->
+  <!-- used for functional testing setup -->
+
+  <include package="zope.app.zcmlfiles" />
+  <include package="zope.app.zptpage"/>
+
+  <!-- Principals -->
+
+  <unauthenticatedPrincipal
+      id="zope.anybody"
+      title="Unauthenticated User" />
+
+
+  <include package="zope.app.securitypolicy" file="meta.zcml" />
+
+  <securityPolicy
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+
+  <role id="zope.Anonymous" title="Everybody"
+                 description="All users have this role implicitly" />
+
+  <!-- Replace the following directive if you don't want public access -->
+  <grant permission="zope.View"
+                  role="zope.Anonymous" />
+
+
+</configure>



More information about the Checkins mailing list