[Checkins] SVN: z3c.breadcrumb/trunk/ - Bug: Fixed the package's long description.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Jan 23 13:35:19 EST 2008


Log message for revision 83118:
  - Bug: Fixed the package's long description.
  
  - Feature: Use the correct ``DocFileSuite`` class that counts tests 
    properly.
  
  

Changed:
  U   z3c.breadcrumb/trunk/CHANGES.txt
  U   z3c.breadcrumb/trunk/setup.py
  U   z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py

-=-
Modified: z3c.breadcrumb/trunk/CHANGES.txt
===================================================================
--- z3c.breadcrumb/trunk/CHANGES.txt	2008-01-23 18:06:53 UTC (rev 83117)
+++ z3c.breadcrumb/trunk/CHANGES.txt	2008-01-23 18:35:19 UTC (rev 83118)
@@ -2,20 +2,23 @@
 CHANGES
 =======
 
-1.0.2dev (unreleased)
----------------------
+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)
 ------------------
 
-- test coverage 100%
+- Bug: Test coverage brought up to 100%.
 
-- register default IBreadcrumbs adapter
+- Feature: Register default ``IBreadcrumbs`` adapter.
 
-- default IBreadcrumbs stops only on virtual host root, not on ISite object
+- Bug: Default ``IBreadcrumbs`` stops only on virtual host root, not on
+  ``ISite`` object
 
 
 1.0.0 (7/10/2007)

Modified: z3c.breadcrumb/trunk/setup.py
===================================================================
--- z3c.breadcrumb/trunk/setup.py	2008-01-23 18:06:53 UTC (rev 83117)
+++ z3c.breadcrumb/trunk/setup.py	2008-01-23 18:35:19 UTC (rev 83118)
@@ -16,16 +16,14 @@
 $Id$
 """
 import os
-import xml.sax.saxutils
 from setuptools import setup, find_packages
 
 def read(*rnames):
-    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-    return xml.sax.saxutils.escape(text)
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup (
     name='z3c.breadcrumb',
-    version='1.0.2dev',
+    version='1.0.2',
     author = "Roger Ineichen,Stephan Richter and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "A pluggable breadcrumbs implementation based on adapters.",

Modified: z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py
===================================================================
--- z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py	2008-01-23 18:06:53 UTC (rev 83117)
+++ z3c.breadcrumb/trunk/src/z3c/breadcrumb/tests.py	2008-01-23 18:35:19 UTC (rev 83118)
@@ -16,9 +16,9 @@
 """
 __docformat__ = 'restructuredtext'
 
-import unittest, doctest
-from zope.app.testing import setup
-from zope.app.testing import placelesssetup
+import unittest
+from zope.testing import doctest
+from zope.app.testing import placelesssetup, setup
 
 
 def setUp(test):



More information about the Checkins mailing list