[Checkins] SVN: zope.app.error/tags/3.5.2/ Tag 3.5.2

Dan Korostelev nadako at gmail.com
Thu Jan 22 06:02:10 EST 2009


Log message for revision 94931:
  Tag 3.5.2

Changed:
  A   zope.app.error/tags/3.5.2/
  D   zope.app.error/tags/3.5.2/CHANGES.txt
  A   zope.app.error/tags/3.5.2/CHANGES.txt
  D   zope.app.error/tags/3.5.2/README.txt
  A   zope.app.error/tags/3.5.2/README.txt
  D   zope.app.error/tags/3.5.2/setup.py
  A   zope.app.error/tags/3.5.2/setup.py
  D   zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml
  A   zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml

-=-
Deleted: zope.app.error/tags/3.5.2/CHANGES.txt
===================================================================
--- zope.app.error/trunk/CHANGES.txt	2009-01-22 09:58:38 UTC (rev 94927)
+++ zope.app.error/tags/3.5.2/CHANGES.txt	2009-01-22 11:02:10 UTC (rev 94931)
@@ -1,20 +0,0 @@
-=======
-CHANGES
-=======
-
-Version 3.5.1 (2007-09-27)
---------------------------
-
-- rebumped to replace faulty egg
-
-
-Version 3.5.0 
--------------
-
-- Move core components to ``zope.error``
-
-
-Version 3.4.0 (2007/9/24)
--------------------------
-
-- Initial documented release

Copied: zope.app.error/tags/3.5.2/CHANGES.txt (from rev 94930, zope.app.error/trunk/CHANGES.txt)
===================================================================
--- zope.app.error/tags/3.5.2/CHANGES.txt	                        (rev 0)
+++ zope.app.error/tags/3.5.2/CHANGES.txt	2009-01-22 11:02:10 UTC (rev 94931)
@@ -0,0 +1,37 @@
+=======
+CHANGES
+=======
+
+3.5.2 (2009-01-22)
+------------------
+
+- Removed zope.app.zapi from dependencies, replacing its
+  uses with direct imports.
+
+- Clean dependencies.
+
+- Changed mailing list address to zope-dev at zope.org, changed
+  url from cheeseshop to pypi.
+
+- Use zope.ManageServices permission instead of zope.ManageContent
+  for errorRedirect view and menu item, because all IErrorReportingUtility
+  views are registered for zope.ManageServices as well. 
+
+- Fix package's README.txt
+
+3.5.1 (2007-09-27)
+------------------
+
+- rebumped to replace faulty egg
+
+
+3.5.0
+-----
+
+- Move core components to ``zope.error``
+
+
+3.4.0 (2007-09-24)
+------------------
+
+- Initial documented release

Deleted: zope.app.error/tags/3.5.2/README.txt
===================================================================
--- zope.app.error/trunk/README.txt	2009-01-22 09:58:38 UTC (rev 94927)
+++ zope.app.error/tags/3.5.2/README.txt	2009-01-22 11:02:10 UTC (rev 94931)
@@ -1 +0,0 @@
-This package provides an error reporting utility which is able to store errors.

Copied: zope.app.error/tags/3.5.2/README.txt (from rev 94929, zope.app.error/trunk/README.txt)
===================================================================
--- zope.app.error/tags/3.5.2/README.txt	                        (rev 0)
+++ zope.app.error/tags/3.5.2/README.txt	2009-01-22 11:02:10 UTC (rev 94931)
@@ -0,0 +1,2 @@
+This package provides management views for the error reporting
+utility defined in zope.error package.

Deleted: zope.app.error/tags/3.5.2/setup.py
===================================================================
--- zope.app.error/trunk/setup.py	2009-01-22 09:58:38 UTC (rev 94927)
+++ zope.app.error/tags/3.5.2/setup.py	2009-01-22 11:02:10 UTC (rev 94931)
@@ -1,64 +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.error 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.app.error',
-    version = '3.5.1',
-    author='Zope Corporation and Contributors',
-    author_email='zope3-dev at zope.org',
-    description = "Error reporting utility management UI for Zope3",
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license='ZPL 2.1',
-    keywords = "zope3 error reporting utility views UI",
-    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://cheeseshop.python.org/pypi/zope.app.error',
-	packages=find_packages('src'),
-	package_dir = {'': 'src'},
-    extras_require=dict(
-        test=['zope.app.testing']),
-    namespace_packages=['zope', 'zope.app'],
-    install_requires=['setuptools',
-                      'zope.exceptions',
-                      'zope.error',
-                      'zope.app.appsetup',
-                      'zope.publisher',
-                      'zope.app.container',
-                      ],
-    include_package_data = True,
-
-    zip_safe = False,
-    )

Copied: zope.app.error/tags/3.5.2/setup.py (from rev 94930, zope.app.error/trunk/setup.py)
===================================================================
--- zope.app.error/tags/3.5.2/setup.py	                        (rev 0)
+++ zope.app.error/tags/3.5.2/setup.py	2009-01-22 11:02:10 UTC (rev 94931)
@@ -0,0 +1,61 @@
+##############################################################################
+#
+# 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.error 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.app.error',
+    version = '3.5.2',
+    author='Zope Corporation and Contributors',
+    author_email='zope-dev at zope.org',
+    description = "Error reporting utility management UI for Zope3",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license='ZPL 2.1',
+    keywords = "zope3 error reporting utility views UI",
+    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.app.error',
+	packages=find_packages('src'),
+	package_dir = {'': 'src'},
+    extras_require=dict(
+        test=['zope.app.testing']),
+    namespace_packages=['zope', 'zope.app'],
+    install_requires=['setuptools',
+                      'zope.error',
+                      'zope.app.publisher',
+                      ],
+    include_package_data = True,
+
+    zip_safe = False,
+    )

Deleted: zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml
===================================================================
--- zope.app.error/trunk/src/zope/app/error/browser/configure.zcml	2009-01-22 09:58:38 UTC (rev 94927)
+++ zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml	2009-01-22 11:02:10 UTC (rev 94931)
@@ -1,46 +0,0 @@
-<zope:configure
-    xmlns:zope="http://namespaces.zope.org/zope"
-    xmlns="http://namespaces.zope.org/browser">
-
-  <pages
-      for="*"
-      permission="zope.ManageContent"
-      class=".ErrorRedirect" >
-
-    <page name="errorRedirect.html" attribute="action" />
-  </pages>
-
-  <menuItem
-      for="*"
-      menu="zmi_actions"
-      title="Errors"
-      action="@@errorRedirect.html" />
-
-  <!--Error Logging Utility -->
-
-  <pages
-      for="zope.error.interfaces.IErrorReportingUtility"
-      permission="zope.ManageServices"
-      class=".EditErrorLog">
-
-    <page name="index.html" template="error.pt"
-          menu="zmi_views" title="Errors" />
-    <page name="configure.html" template="error_config.pt"
-          menu="zmi_views" title="Configure" />
-    <page name="edit.html" attribute="updateProperties" />
-    <page name="showEntry.html" template="errorentry.pt"/>
-    <page name="showTextTBEntry.html" template="texttbentry.pt"/>
-  </pages>
-
-  <addMenuItem
-     class="zope.error.error.ErrorReportingUtility"
-     title="Error Logging Utility"
-     description="Error Reporting Utility for Logging Errors"
-     permission="zope.ManageServices" />
-
-  <icon name="zmi_icon"
-      for="zope.error.interfaces.IErrorReportingUtility"
-      file="error.gif" />
-
-</zope:configure>
-

Copied: zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml (from rev 94928, zope.app.error/trunk/src/zope/app/error/browser/configure.zcml)
===================================================================
--- zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml	                        (rev 0)
+++ zope.app.error/tags/3.5.2/src/zope/app/error/browser/configure.zcml	2009-01-22 11:02:10 UTC (rev 94931)
@@ -0,0 +1,42 @@
+<zope:configure
+    xmlns:zope="http://namespaces.zope.org/zope"
+    xmlns="http://namespaces.zope.org/browser">
+
+  <page
+      for="*"
+      name="errorRedirect.html"
+      permission="zope.ManageServices"
+      class=".ErrorRedirect"
+      attribute="action"
+      menu="zmi_actions"
+      title="Errors"
+      />
+
+  <!--Error Logging Utility -->
+
+  <pages
+      for="zope.error.interfaces.IErrorReportingUtility"
+      permission="zope.ManageServices"
+      class=".EditErrorLog">
+
+    <page name="index.html" template="error.pt"
+          menu="zmi_views" title="Errors" />
+    <page name="configure.html" template="error_config.pt"
+          menu="zmi_views" title="Configure" />
+    <page name="edit.html" attribute="updateProperties" />
+    <page name="showEntry.html" template="errorentry.pt"/>
+    <page name="showTextTBEntry.html" template="texttbentry.pt"/>
+  </pages>
+
+  <addMenuItem
+     class="zope.error.error.ErrorReportingUtility"
+     title="Error Logging Utility"
+     description="Error Reporting Utility for Logging Errors"
+     permission="zope.ManageServices" />
+
+  <icon name="zmi_icon"
+      for="zope.error.interfaces.IErrorReportingUtility"
+      file="error.gif" />
+
+</zope:configure>
+



More information about the Checkins mailing list