[Checkins] SVN: z3c.breadcrumb/tags/1.0.3/ Tag 1.0.3

Dan Korostelev nadako at gmail.com
Sat Dec 13 08:45:17 EST 2008


Log message for revision 94017:
  Tag 1.0.3

Changed:
  A   z3c.breadcrumb/tags/1.0.3/
  D   z3c.breadcrumb/tags/1.0.3/CHANGES.txt
  A   z3c.breadcrumb/tags/1.0.3/CHANGES.txt
  D   z3c.breadcrumb/tags/1.0.3/setup.py
  A   z3c.breadcrumb/tags/1.0.3/setup.py

-=-
Deleted: z3c.breadcrumb/tags/1.0.3/CHANGES.txt
===================================================================
--- z3c.breadcrumb/trunk/CHANGES.txt	2008-12-13 11:13:37 UTC (rev 94014)
+++ z3c.breadcrumb/tags/1.0.3/CHANGES.txt	2008-12-13 13:45:17 UTC (rev 94017)
@@ -1,33 +0,0 @@
-=======
-CHANGES
-=======
-
-unreleased (2008-02-08)
-----------------------
-
-- Bug: Fixed ``IBreadcrumbs`` to match implementation.
-
-
-1.0.2 (2008-01-23)
-------------------
-
-- Bug: Fixed the package's long description.
-
-- Feature: Use the correct ``DocFileSuite`` class that counts tests properly.
-
-
-1.0.1 (2007-01-21)
-------------------
-
-- Bug: Test coverage brought up to 100%.
-
-- Feature: Register default ``IBreadcrumbs`` adapter.
-
-- Bug: Default ``IBreadcrumbs`` stops only on virtual host root, not on
-  ``ISite`` object
-
-
-1.0.0 (7/10/2007)
------------------
-
-- Initial Release

Copied: z3c.breadcrumb/tags/1.0.3/CHANGES.txt (from rev 94016, z3c.breadcrumb/trunk/CHANGES.txt)
===================================================================
--- z3c.breadcrumb/tags/1.0.3/CHANGES.txt	                        (rev 0)
+++ z3c.breadcrumb/tags/1.0.3/CHANGES.txt	2008-12-13 13:45:17 UTC (rev 94017)
@@ -0,0 +1,34 @@
+=======
+CHANGES
+=======
+
+1.0.3 (2008-12-13)
+------------------
+
+- Bug: Fixed ``IBreadcrumbs`` to match implementation.
+- Clean up dependencies.
+
+
+1.0.2 (2008-01-23)
+------------------
+
+- Bug: Fixed the package's long description.
+
+- Feature: Use the correct ``DocFileSuite`` class that counts tests properly.
+
+
+1.0.1 (2007-01-21)
+------------------
+
+- Bug: Test coverage brought up to 100%.
+
+- Feature: Register default ``IBreadcrumbs`` adapter.
+
+- Bug: Default ``IBreadcrumbs`` stops only on virtual host root, not on
+  ``ISite`` object
+
+
+1.0.0 (7/10/2007)
+-----------------
+
+- Initial Release

Deleted: z3c.breadcrumb/tags/1.0.3/setup.py
===================================================================
--- z3c.breadcrumb/trunk/setup.py	2008-12-13 11:13:37 UTC (rev 94014)
+++ z3c.breadcrumb/tags/1.0.3/setup.py	2008-12-13 13:45:17 UTC (rev 94017)
@@ -1,72 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2007 Zope Foundation 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
-
-$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='z3c.breadcrumb',
-    version='1.0.3dev',
-    author = "Roger Ineichen,Stephan Richter and the Zope Community",
-    author_email = "zope3-dev at zope.org",
-    description = "A pluggable breadcrumbs implementation based on adapters.",
-    long_description=(
-        read('README.txt')
-        + '\n\n' +
-        'Detailed Documentation\n'
-        '**********************\n'
-        + '\n' +
-        read('src', 'z3c', 'breadcrumb', 'README.txt')
-        + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license = "ZPL 2.1",
-    keywords = "zope3 breadcrumb adapter",
-    classifiers = [
-        'Development Status :: 4 - Beta',
-        '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://svn.zope.org/z3c.breadcrumb',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['z3c'],
-    extras_require = dict(
-        test = ['zope.testing'],
-        ),
-    install_requires = [
-        'setuptools',
-        'zope.app.component',
-        'zope.component',
-        'zope.interface',
-        'zope.location',
-        'zope.publisher',
-        'zope.schema',
-        'zope.traversing',
-        ],
-    dependency_links = ['http://download.zope.org/distribution'],
-    zip_safe = False,
-    )

Copied: z3c.breadcrumb/tags/1.0.3/setup.py (from rev 94016, z3c.breadcrumb/trunk/setup.py)
===================================================================
--- z3c.breadcrumb/tags/1.0.3/setup.py	                        (rev 0)
+++ z3c.breadcrumb/tags/1.0.3/setup.py	2008-12-13 13:45:17 UTC (rev 94017)
@@ -0,0 +1,71 @@
+##############################################################################
+#
+# Copyright (c) 2007 Zope Foundation 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
+
+$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='z3c.breadcrumb',
+    version='1.0.3',
+    author = "Roger Ineichen,Stephan Richter and the Zope Community",
+    author_email = "zope3-dev at zope.org",
+    description = "A pluggable breadcrumbs implementation based on adapters.",
+    long_description=(
+        read('README.txt')
+        + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************\n'
+        + '\n' +
+        read('src', 'z3c', 'breadcrumb', 'README.txt')
+        + '\n\n' +
+        read('CHANGES.txt')
+        ),
+    license = "ZPL 2.1",
+    keywords = "zope3 breadcrumb adapter",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        '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/z3c.breadcrumb',
+    packages = find_packages('src'),
+    include_package_data = True,
+    package_dir = {'':'src'},
+    namespace_packages = ['z3c'],
+    extras_require = dict(
+        test = ['zope.app.testing'],
+        ),
+    install_requires = [
+        'setuptools',
+        'zope.component',
+        'zope.interface',
+        'zope.location',
+        'zope.publisher',
+        'zope.schema',
+        'zope.traversing',
+        ],
+    dependency_links = ['http://download.zope.org/distribution'],
+    zip_safe = False,
+    )



More information about the Checkins mailing list