[Checkins] SVN: zope.app.wsgi/tags/3.4.1/ Releasing zope.app.wsgi 3.4.1.

Marius Gedminas marius at pov.lt
Wed Jul 30 13:04:58 EDT 2008


Log message for revision 89034:
  Releasing zope.app.wsgi 3.4.1.
  
  

Changed:
  A   zope.app.wsgi/tags/3.4.1/
  D   zope.app.wsgi/tags/3.4.1/README.txt
  A   zope.app.wsgi/tags/3.4.1/README.txt
  D   zope.app.wsgi/tags/3.4.1/setup.py
  A   zope.app.wsgi/tags/3.4.1/setup.py
  D   zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml
  A   zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml

-=-
Copied: zope.app.wsgi/tags/3.4.1 (from rev 89029, zope.app.wsgi/trunk)

Deleted: zope.app.wsgi/tags/3.4.1/README.txt
===================================================================
--- zope.app.wsgi/trunk/README.txt	2008-07-30 16:39:44 UTC (rev 89029)
+++ zope.app.wsgi/tags/3.4.1/README.txt	2008-07-30 17:04:57 UTC (rev 89034)
@@ -1,42 +0,0 @@
-This package provides the ``WSGIPublisherApplication`` class which
-exposes the object publishing machinery in ``zope.publisher`` as a
-WSGI application.  It also lets us bring up the Zope application
-server (parsing ``zope.conf`` and ``site.zcml``) with a mere function
-call::
-
-    >>> db = zope.app.wsgi.config('zope.conf')
-
-This is especially useful for debugging.
-
-To bring up Zope and obtain the WSGI application object at the same
-time, use the ``getWSGIApplication`` function.  Here's an example of a
-factory a la PasteDeploy_::
-
-    def application_factory(global_conf):
-        zope_conf = os.path.join(global_conf['here'], 'zope.conf')
-        return zope.app.wsgi.getWSGIApplication(zope_conf)
-
-.. _PasteDeploy: http://pythonpaste.org/deploy/
-
-
-Changes
-=======
-
-3.4.1 (unreleased)
-------------------
-
-* Added Trove classifiers.
-
-3.4.0 (2007-09-14)
-------------------
-
-* Fixed the tests to run on Python 2.5 as well as Python 2.4.
-
-* Split ``getApplication`` into ``config`` and ``getApplication`` so
-  that ``config`` could be reused, for example for debugging.
-
-3.4.0a1 (2007-04-22)
---------------------
-
-Initial release as a separate project, corresponds to zope.app.wsgi
-from Zope 3.4.0a1

Copied: zope.app.wsgi/tags/3.4.1/README.txt (from rev 89033, zope.app.wsgi/trunk/README.txt)
===================================================================
--- zope.app.wsgi/tags/3.4.1/README.txt	                        (rev 0)
+++ zope.app.wsgi/tags/3.4.1/README.txt	2008-07-30 17:04:57 UTC (rev 89034)
@@ -0,0 +1,48 @@
+This package provides the ``WSGIPublisherApplication`` class which
+exposes the object publishing machinery in ``zope.publisher`` as a
+WSGI application.  It also lets us bring up the Zope application
+server (parsing ``zope.conf`` and ``site.zcml``) with a mere function
+call::
+
+    >>> db = zope.app.wsgi.config('zope.conf')
+
+This is especially useful for debugging.
+
+To bring up Zope and obtain the WSGI application object at the same
+time, use the ``getWSGIApplication`` function.  Here's an example of a
+factory a la PasteDeploy_::
+
+    def application_factory(global_conf):
+        zope_conf = os.path.join(global_conf['here'], 'zope.conf')
+        return zope.app.wsgi.getWSGIApplication(zope_conf)
+
+.. _PasteDeploy: http://pythonpaste.org/deploy/
+
+
+Changes
+=======
+
+3.4.1 (2008-07-30)
+------------------
+
+* Added Trove classifiers.
+
+* Notify WSGIPublisherApplicationCreated event when WSGI application is
+  created.
+
+* Fixed deprecation warning in ftesting.zcml: ZopeSecurityPolicy moved to
+  zope.securitypolicy.
+
+3.4.0 (2007-09-14)
+------------------
+
+* Fixed the tests to run on Python 2.5 as well as Python 2.4.
+
+* Split ``getApplication`` into ``config`` and ``getApplication`` so
+  that ``config`` could be reused, for example for debugging.
+
+3.4.0a1 (2007-04-22)
+--------------------
+
+Initial release as a separate project, corresponds to zope.app.wsgi
+from Zope 3.4.0a1

Deleted: zope.app.wsgi/tags/3.4.1/setup.py
===================================================================
--- zope.app.wsgi/trunk/setup.py	2008-07-30 16:39:44 UTC (rev 89029)
+++ zope.app.wsgi/tags/3.4.1/setup.py	2008-07-30 17:04:57 UTC (rev 89034)
@@ -1,55 +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.app.wsgi package
-
-$Id$
-"""
-from setuptools import setup, find_packages, Extension
-
-setup(name='zope.app.wsgi',
-      version = '3.4.1dev',
-      url='http://pypi.python.org/pypi/zope.app.wsgi',
-      license='ZPL 2.1',
-      description='WSGI application for the zope.publisher',
-      long_description=open('README.txt').read(),
-      author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
-      classifiers=['Environment :: Web Environment',
-                   'Intended Audience :: Developers',
-                   'License :: OSI Approved :: Zope Public License',
-                   'Programming Language :: Python',
-                   'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
-                   'Framework :: Zope3',
-                   ],
-
-      packages=find_packages('src'),
-      package_dir = {'': 'src'},
-      namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.app.testing',
-                                  'zope.app.securitypolicy',
-                                  'zope.app.zcmlfiles',
-                                  'zope.testbrowser']),
-      install_requires=['setuptools',
-                        'ZConfig',
-                        'zope.app.appsetup',
-                        'zope.app.publication',
-                        'zope.app.wsgi',
-                        'zope.event',
-                        'zope.interface',
-                        'zope.publisher',
-                        'zope.security',
-                        ],
-      include_package_data = True,
-      zip_safe = False,
-      )

Copied: zope.app.wsgi/tags/3.4.1/setup.py (from rev 89033, zope.app.wsgi/trunk/setup.py)
===================================================================
--- zope.app.wsgi/tags/3.4.1/setup.py	                        (rev 0)
+++ zope.app.wsgi/tags/3.4.1/setup.py	2008-07-30 17:04:57 UTC (rev 89034)
@@ -0,0 +1,55 @@
+##############################################################################
+#
+# 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.app.wsgi package
+
+$Id$
+"""
+from setuptools import setup, find_packages, Extension
+
+setup(name='zope.app.wsgi',
+      version = '3.4.1',
+      url='http://pypi.python.org/pypi/zope.app.wsgi',
+      license='ZPL 2.1',
+      description='WSGI application for the zope.publisher',
+      long_description=open('README.txt').read(),
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      classifiers=['Environment :: Web Environment',
+                   'Intended Audience :: Developers',
+                   'License :: OSI Approved :: Zope Public License',
+                   'Programming Language :: Python',
+                   'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
+                   'Framework :: Zope3',
+                   ],
+
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope', 'zope.app'],
+      extras_require = dict(test=['zope.app.testing',
+                                  'zope.app.securitypolicy',
+                                  'zope.app.zcmlfiles',
+                                  'zope.testbrowser']),
+      install_requires=['setuptools',
+                        'ZConfig',
+                        'zope.app.appsetup',
+                        'zope.app.publication',
+                        'zope.app.wsgi',
+                        'zope.event',
+                        'zope.interface',
+                        'zope.publisher',
+                        'zope.security',
+                        ],
+      include_package_data = True,
+      zip_safe = False,
+      )

Deleted: zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml
===================================================================
--- zope.app.wsgi/trunk/src/zope/app/wsgi/ftesting.zcml	2008-07-30 16:39:44 UTC (rev 89029)
+++ zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml	2008-07-30 17:04:57 UTC (rev 89034)
@@ -1,45 +0,0 @@
-<configure
-   xmlns="http://namespaces.zope.org/zope"
-   i18n_domain="zope"
-   package="zope.app.wsgi"
-   >
-
-  <!-- This file is the equivalent of site.zcml and it is -->
-  <!-- used for functional testing setup -->
-
-  <include package="zope.app.securitypolicy" file="meta.zcml" />
-  <include package="zope.app.zcmlfiles" />
-
-  <include package="zope.app.securitypolicy" />
-
-  <securityPolicy
-    component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
-
-  <role id="zope.Manager" title="Site Manager" />
-
-  <grantAll role="zope.Manager" />
-
-  <!-- Principals -->
-
-  <unauthenticatedPrincipal
-      id="zope.anybody"
-      title="Unauthenticated User" />
-
-  <!-- Principal that tests generally run as -->
-  <principal
-      id="zope.mgr"
-      title="Manager"
-      login="mgr"
-      password="mgrpw" />
-
-  <!-- Bootstrap principal used to make local grant to the principal above -->
-  <principal
-      id="zope.globalmgr"
-      title="Manager"
-      login="globalmgr"
-      password="globalmgrpw" />
-
-  <grant role="zope.Manager" principal="zope.globalmgr" />
-
-</configure>
-

Copied: zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml (from rev 89031, zope.app.wsgi/trunk/src/zope/app/wsgi/ftesting.zcml)
===================================================================
--- zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml	                        (rev 0)
+++ zope.app.wsgi/tags/3.4.1/src/zope/app/wsgi/ftesting.zcml	2008-07-30 17:04:57 UTC (rev 89034)
@@ -0,0 +1,45 @@
+<configure
+   xmlns="http://namespaces.zope.org/zope"
+   i18n_domain="zope"
+   package="zope.app.wsgi"
+   >
+
+  <!-- This file is the equivalent of site.zcml and it is -->
+  <!-- used for functional testing setup -->
+
+  <include package="zope.app.securitypolicy" file="meta.zcml" />
+  <include package="zope.app.zcmlfiles" />
+
+  <include package="zope.app.securitypolicy" />
+
+  <securityPolicy
+    component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
+
+  <role id="zope.Manager" title="Site Manager" />
+
+  <grantAll role="zope.Manager" />
+
+  <!-- Principals -->
+
+  <unauthenticatedPrincipal
+      id="zope.anybody"
+      title="Unauthenticated User" />
+
+  <!-- Principal that tests generally run as -->
+  <principal
+      id="zope.mgr"
+      title="Manager"
+      login="mgr"
+      password="mgrpw" />
+
+  <!-- Bootstrap principal used to make local grant to the principal above -->
+  <principal
+      id="zope.globalmgr"
+      title="Manager"
+      login="globalmgr"
+      password="globalmgrpw" />
+
+  <grant role="zope.Manager" principal="zope.globalmgr" />
+
+</configure>
+



More information about the Checkins mailing list