[Checkins] SVN: zc.table/trunk/ Fix tests and get ready for release.

Stephan Richter srichter at gmail.com
Thu Jul 23 16:38:39 EDT 2009


Log message for revision 102188:
  Fix tests and get ready for release.
  

Changed:
  U   zc.table/trunk/CHANGES.txt
  U   zc.table/trunk/buildout.cfg
  U   zc.table/trunk/setup.py
  U   zc.table/trunk/src/zc/table/column.txt
  U   zc.table/trunk/src/zc/table/fieldcolumn.txt

-=-
Modified: zc.table/trunk/CHANGES.txt
===================================================================
--- zc.table/trunk/CHANGES.txt	2009-07-23 20:25:08 UTC (rev 102187)
+++ zc.table/trunk/CHANGES.txt	2009-07-23 20:38:39 UTC (rev 102188)
@@ -2,6 +2,12 @@
 zc.table changes
 ================
 
+0.8.0 (2009-07-23)
+------------------
+
+- Updated tests to latest packages.
+
+
 0.7.0 (2008-05-20)
 ------------------
 

Modified: zc.table/trunk/buildout.cfg
===================================================================
--- zc.table/trunk/buildout.cfg	2009-07-23 20:25:08 UTC (rev 102187)
+++ zc.table/trunk/buildout.cfg	2009-07-23 20:38:39 UTC (rev 102188)
@@ -1,11 +1,6 @@
 [buildout]
 develop = .
 parts = test
-allow-picked-versions = false
-use-dependency-links = false
-versions = versions
-extends = http://download.zope.org/zope3.4/versions-3.4.0c7.cfg
-find-links = http://download.zope.org/simple
 
 [test]
 recipe = zc.recipe.testrunner

Modified: zc.table/trunk/setup.py
===================================================================
--- zc.table/trunk/setup.py	2009-07-23 20:25:08 UTC (rev 102187)
+++ zc.table/trunk/setup.py	2009-07-23 20:38:39 UTC (rev 102188)
@@ -2,7 +2,7 @@
 
 setup(
     name="zc.table",
-    version="0.7.1dev",
+    version="0.8.0",
     url="http://pypi.python.org/pypi/zc.table/",
     install_requires=[
         'setuptools',
@@ -11,6 +11,7 @@
         'zope.app.testing',
         'zope.cachedescriptors',
         'zope.component',
+        'zope.formlib',
         'zope.i18n',
         'zope.interface',
         'zope.schema',

Modified: zc.table/trunk/src/zc/table/column.txt
===================================================================
--- zc.table/trunk/src/zc/table/column.txt	2009-07-23 20:25:08 UTC (rev 102187)
+++ zc.table/trunk/src/zc/table/column.txt	2009-07-23 20:38:39 UTC (rev 102188)
@@ -226,8 +226,9 @@
     >>> request.form["test.NA==.email"] = u'walsh'
     >>> data = columns[1].input(contacts, request)
     Traceback (most recent call last):
-      ...
-    WidgetsError: WidgetInputError: ('email', u'', walsh)
+    ...
+    WidgetsError: WidgetInputError:
+        ('email', u'', ConstraintNotSatisfied(u'walsh'))
 
 Custom getters and setters
 --------------------------

Modified: zc.table/trunk/src/zc/table/fieldcolumn.txt
===================================================================
--- zc.table/trunk/src/zc/table/fieldcolumn.txt	2009-07-23 20:25:08 UTC (rev 102187)
+++ zc.table/trunk/src/zc/table/fieldcolumn.txt	2009-07-23 20:38:39 UTC (rev 102188)
@@ -365,7 +365,8 @@
     >>> data = columns[1].input(contacts, formatter)
     Traceback (most recent call last):
       ...
-    WidgetsError: WidgetInputError: ('email', u'Email Address', walsh)
+    WidgetsError: WidgetInputError:
+        ('email', u'Email Address', ConstraintNotSatisfied(u'walsh'))
 
 Custom getters and setters
 --------------------------



More information about the Checkins mailing list