[Checkins] SVN: zope.session/tags/3.9.0/ Tag 3.9.0

Dan Korostelev nadako at gmail.com
Thu Mar 19 05:15:06 EDT 2009


Log message for revision 98255:
  Tag 3.9.0

Changed:
  A   zope.session/tags/3.9.0/
  D   zope.session/tags/3.9.0/CHANGES.txt
  A   zope.session/tags/3.9.0/CHANGES.txt
  D   zope.session/tags/3.9.0/setup.py
  A   zope.session/tags/3.9.0/setup.py

-=-
Deleted: zope.session/tags/3.9.0/CHANGES.txt
===================================================================
--- zope.session/trunk/CHANGES.txt	2009-03-19 07:38:14 UTC (rev 98253)
+++ zope.session/tags/3.9.0/CHANGES.txt	2009-03-19 09:15:05 UTC (rev 98255)
@@ -1,111 +0,0 @@
-CHANGES
-=======
-
-3.8.2 (unreleased)
-------------------
-
-- Don't raise deprecation warnings on Python 2.6.
-
-- Drop dependency on ``zope.annotation``. Instead, we make classes implement
-  `IAttributeAnnotatable` in ZCML configuration, only if ``zope.annotation``
-  is available. If your code relies on annotatable `CookieClientIdManager` 
-  and `PersistentSessionDataContainer` and you don't include the zcml classes
-  configuration of this package, you'll need to use `classImplements` function
-  from ``zope.interface`` to make those classes implement `IAttributeAnnotatable`
-  again.
-
-- Drop dependency on zope.app.http, use standard date formatting function
-  from the ``email.utils`` module.
-
-- Zope 3 application bootstrapping code for session utilities was moved into
-  zope.app.appsetup package, thus drop dependency on zope.app.appsetup in this
-  package. 
-
-- Drop testing dependencies, as we don't need anything behind zope.testing and
-  previous dependencies was simply migrated from zope.app.session before.
-
-- Remove zpkg files and zcml slugs.
-
-- Update package's description a bit.
-
-3.8.1 (2009-02-23)
-------------------
-
-- Add an ability to set cookie effective domain for CookieClientIdManager.
-  This is useful for simple cases when you have your application set up on
-  one domain and you want your identification cookie be active for subdomains.
-
-- Python 2.6 compatibility change. Encode strings before calling hmac.new()
-  as the function no longer accepts the unicode() type.
-
-3.8.0 (2008-12-31)
-------------------
-
-- Add missing test dependency on ``zope.site`` and
-  ``zope.app.publication``.
-
-3.7.1 (2008-12-30)
-------------------
-
-- Specify i18n_domain for titles in apidoc.zcml
-
-- ZODB 3.9 no longer contains
-  ZODB.utils.ConflictResolvingMappingStorage, fixed tests, so they
-  work both with ZODB 3.8 and 3.9.
-
-
-3.7.0 (2008-10-03)
-------------------
-
-New features:
-
-- Added a 'postOnly' option on CookieClientIdManagers to only allow setting
-  the client id cookie on POST requests.  This is to further reduce risk from
-  broken caches handing the same client id out to multiple users. (Of
-  course, it doesn't help if caches are broken enough to cache POSTs.)
-
-3.6.0 (2008-08-12)
-------------------
-
-New features:
-
-- Added a 'secure' option on CookieClientIdManagers to cause the secure
-  set-cookie option to be used, which tells the browser not to send the
-  cookie over http.
-
-  This provides enhanced security for ssl-only applications.
-
-- Only set the client-id cookie if it isn't already set and try to
-  prevent the header from being cached.  This is to minimize risk from
-  broken caches handing the same client id out to multiple users. 
-
-3.5.2 (2008-06-12)
-------------------
-
-- Remove ConflictErrors caused on SessionData caused by setting
-  ``lastAccessTime``.
-
-3.5.1 (2008-04-30)
-------------------
-
-- Split up the ZCML to make it possible to re-use more reasonably.
-
-
-3.5.0 (2008-03-11)
-------------------
-
-- Change the default session "resolution" to a sane value and document/test it.
-
-
-3.4.1 (2007-09-25)
-------------------
-
-- Fixed some meta data and switch to tgz release.
-
-
-3.4.0 (2007-09-25)
-------------------
-
-- Initial release
-
-- Moved parts from ``zope.app.session`` to this packages

Copied: zope.session/tags/3.9.0/CHANGES.txt (from rev 98254, zope.session/trunk/CHANGES.txt)
===================================================================
--- zope.session/tags/3.9.0/CHANGES.txt	                        (rev 0)
+++ zope.session/tags/3.9.0/CHANGES.txt	2009-03-19 09:15:05 UTC (rev 98255)
@@ -0,0 +1,111 @@
+CHANGES
+=======
+
+3.9.0 (2009-03-19)
+------------------
+
+- Don't raise deprecation warnings on Python 2.6.
+
+- Drop dependency on ``zope.annotation``. Instead, we make classes implement
+  `IAttributeAnnotatable` in ZCML configuration, only if ``zope.annotation``
+  is available. If your code relies on annotatable `CookieClientIdManager` 
+  and `PersistentSessionDataContainer` and you don't include the zcml classes
+  configuration of this package, you'll need to use `classImplements` function
+  from ``zope.interface`` to make those classes implement `IAttributeAnnotatable`
+  again.
+
+- Drop dependency on zope.app.http, use standard date formatting function
+  from the ``email.utils`` module.
+
+- Zope 3 application bootstrapping code for session utilities was moved into
+  zope.app.appsetup package, thus drop dependency on zope.app.appsetup in this
+  package. 
+
+- Drop testing dependencies, as we don't need anything behind zope.testing and
+  previous dependencies was simply migrated from zope.app.session before.
+
+- Remove zpkg files and zcml slugs.
+
+- Update package's description a bit.
+
+3.8.1 (2009-02-23)
+------------------
+
+- Add an ability to set cookie effective domain for CookieClientIdManager.
+  This is useful for simple cases when you have your application set up on
+  one domain and you want your identification cookie be active for subdomains.
+
+- Python 2.6 compatibility change. Encode strings before calling hmac.new()
+  as the function no longer accepts the unicode() type.
+
+3.8.0 (2008-12-31)
+------------------
+
+- Add missing test dependency on ``zope.site`` and
+  ``zope.app.publication``.
+
+3.7.1 (2008-12-30)
+------------------
+
+- Specify i18n_domain for titles in apidoc.zcml
+
+- ZODB 3.9 no longer contains
+  ZODB.utils.ConflictResolvingMappingStorage, fixed tests, so they
+  work both with ZODB 3.8 and 3.9.
+
+
+3.7.0 (2008-10-03)
+------------------
+
+New features:
+
+- Added a 'postOnly' option on CookieClientIdManagers to only allow setting
+  the client id cookie on POST requests.  This is to further reduce risk from
+  broken caches handing the same client id out to multiple users. (Of
+  course, it doesn't help if caches are broken enough to cache POSTs.)
+
+3.6.0 (2008-08-12)
+------------------
+
+New features:
+
+- Added a 'secure' option on CookieClientIdManagers to cause the secure
+  set-cookie option to be used, which tells the browser not to send the
+  cookie over http.
+
+  This provides enhanced security for ssl-only applications.
+
+- Only set the client-id cookie if it isn't already set and try to
+  prevent the header from being cached.  This is to minimize risk from
+  broken caches handing the same client id out to multiple users. 
+
+3.5.2 (2008-06-12)
+------------------
+
+- Remove ConflictErrors caused on SessionData caused by setting
+  ``lastAccessTime``.
+
+3.5.1 (2008-04-30)
+------------------
+
+- Split up the ZCML to make it possible to re-use more reasonably.
+
+
+3.5.0 (2008-03-11)
+------------------
+
+- Change the default session "resolution" to a sane value and document/test it.
+
+
+3.4.1 (2007-09-25)
+------------------
+
+- Fixed some meta data and switch to tgz release.
+
+
+3.4.0 (2007-09-25)
+------------------
+
+- Initial release
+
+- Moved parts from ``zope.app.session`` to this packages

Deleted: zope.session/tags/3.9.0/setup.py
===================================================================
--- zope.session/trunk/setup.py	2009-03-19 07:38:14 UTC (rev 98253)
+++ zope.session/tags/3.9.0/setup.py	2009-03-19 09:15:05 UTC (rev 98255)
@@ -1,68 +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.session package
-
-$Id$
-"""
-
-import os
-
-from setuptools import setup, find_packages
-
-def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-
-setup(name='zope.session',
-    version = '3.8.2dev',
-    author='Zope Corporation and Contributors',
-    author_email='zope-dev at zope.org',
-    description='Client identification and sessions for Zope',
-    long_description=(
-        read('README.txt')
-        + '\n\n.. contents::\n\n' +
-        read('src', 'zope', 'session', 'design.txt')
-        + '\n\n' +
-        read('src', 'zope', 'session', 'api.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license='ZPL 2.1',
-    keywords = "zope3 session",
-    classifiers = [
-        'Development Status :: 5 - Production/Stable',
-        'Environment :: Web Environment',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: Zope Public License',
-        'Programming Language :: Python',
-        'Natural Language :: English',
-        'Operating System :: OS Independent',
-        'Topic :: Internet :: WWW/HTTP',
-        'Framework :: Zope3'],
-    url='http://pypi.python.org/pypi/zope.session',
-    packages=find_packages('src'),
-    package_dir = {'': 'src'},
-    namespace_packages=['zope',],
-    install_requires=[
-        'setuptools',
-        'ZODB3',
-        'zope.component',
-        'zope.i18nmessageid',
-        'zope.interface',
-        'zope.location',
-        'zope.publisher',
-        'zope.minmax',
-        ],
-    include_package_data = True,
-    zip_safe = False,
-    )

Copied: zope.session/tags/3.9.0/setup.py (from rev 98254, zope.session/trunk/setup.py)
===================================================================
--- zope.session/tags/3.9.0/setup.py	                        (rev 0)
+++ zope.session/tags/3.9.0/setup.py	2009-03-19 09:15:05 UTC (rev 98255)
@@ -0,0 +1,68 @@
+##############################################################################
+#
+# 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.session package
+
+$Id$
+"""
+
+import os
+
+from setuptools import setup, find_packages
+
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+setup(name='zope.session',
+    version='3.9.0',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    description='Client identification and sessions for Zope',
+    long_description=(
+        read('README.txt')
+        + '\n\n.. contents::\n\n' +
+        read('src', 'zope', 'session', 'design.txt')
+        + '\n\n' +
+        read('src', 'zope', 'session', 'api.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license='ZPL 2.1',
+    keywords = "zope3 session",
+    classifiers = [
+        'Development Status :: 5 - Production/Stable',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Zope Public License',
+        'Programming Language :: Python',
+        'Natural Language :: English',
+        'Operating System :: OS Independent',
+        'Topic :: Internet :: WWW/HTTP',
+        'Framework :: Zope3'],
+    url='http://pypi.python.org/pypi/zope.session',
+    packages=find_packages('src'),
+    package_dir = {'': 'src'},
+    namespace_packages=['zope',],
+    install_requires=[
+        'setuptools',
+        'ZODB3',
+        'zope.component',
+        'zope.i18nmessageid',
+        'zope.interface',
+        'zope.location',
+        'zope.publisher',
+        'zope.minmax',
+        ],
+    include_package_data = True,
+    zip_safe = False,
+    )



More information about the Checkins mailing list