[Checkins] SVN: z3c.form/trunk/ Get ready for a proper 1.8.0 release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Jan 23 16:09:00 EST 2008


Log message for revision 83124:
  Get ready for a proper 1.8.0 release.
  

Changed:
  _U  z3c.form/trunk/
  U   z3c.form/trunk/CHANGES.txt
  U   z3c.form/trunk/setup.py

-=-

Property changes on: z3c.form/trunk
___________________________________________________________________
Name: svn:ignore
   - develop-eggs
eggs
parts
.installed.cfg
build
dist
bin

   + coverage
develop-eggs
eggs
parts
.installed.cfg
build
dist
bin


Modified: z3c.form/trunk/CHANGES.txt
===================================================================
--- z3c.form/trunk/CHANGES.txt	2008-01-23 20:58:01 UTC (rev 83123)
+++ z3c.form/trunk/CHANGES.txt	2008-01-23 21:09:00 UTC (rev 83124)
@@ -2,45 +2,47 @@
 CHANGES
 =======
 
-Version 1.7.2 (2008-01-21)
+Version 1.8.0 (2008-01-23)
 --------------------------
 
-- bugfix release, seems that zcml files are missing again. Try to use newest
-  setuptools.
+- Feature: Implemented ``IDisplayForm`` interface.
 
+- Feature: Added integration tests for form interfaces. Added default class
+  attribute called ``widgets`` in form class with default value ``None``. This
+  helps to pass the integration tests. Now, the ``widgets`` attribute can also
+  be used as a indicator for updated forms.
 
-Version 1.7.1 (2008-01-21)
---------------------------
+- Feature: Implemented additional ``createAndAdd`` hook in ``AddForm``. This
+  allows you to implement create and add in a single method. It also supports
+  graceful abortion of a create and add process if we do not return the new
+  object. This means it can also be used as a hook for custom error messages
+  for errors happen during create and add.
 
-- Implemented IDisplayForm interface
+- Feature: Add a hidden widget template for the ``ISelectWidget``.
 
-- Added integration tests for form interfaces. Added default class attribute
-  called widgets in form class with default value ``None``. This helps to 
-  pass the integration tests. Now, the widget attribute can also be used as a 
-  indicator for updated forms.
+- Feature: Arrows in the ordered select widget replaced by named entities.
 
-- Implemented additional createAndAdd hook in AddForm. This allows you to
-  implement create and add in a single method. It also supports gracefull
-  abort of a creat and add process if we do not return the new object. Which
-  means it can also be used as a hook for custom error messages for errors
-  happen during create and add.
+- Feature: Added ``CollectionSequenceDataConverter`` to ``setupFormDefaults``.
 
-- Feature: Add a hidden widget template for the ``ISelectWidget``.
+- Feature: Templates for the CheckBox widget are now registered in
+  ``checkbox.zcml``.
 
-- Feature: arrows in orderedselect replaced by named entities 
+- Feature: If a value cannot be converted from its unicode representation to a
+  field value using the field's ``IFromUnicode`` interface, the resulting type
+  error now shows the field name, if available.
 
 - Bug: ``createId`` could not handle arbitrary unicode input. Thanks to
   Andreas Reuleaux for reporting the bug and a patch for it. (Added
   descriptive doctests for the function in the process.)
 
-- Bug: Interface invariants where not working when not all fields
-  needed for computing the invariant are in the submitted form.
+- Bug: Interface invariants where not working when not all fields needed for
+  computing the invariant are in the submitted form.
 
-- Bug: orderedselect didn't submit selected values 
+- Bug: Ordered select didn't submit selected values.
 
-- Bug orderedselect lists displayed tokens instead of value
+- Bug: Ordered select lists displayed tokens instead of value,
 
-- Bug SequenzWidget displayed tokens instead of value
+- Bug: ``SequenceWidget`` displayed tokens instead of value.
 
 
 Version 1.7.0 (2007-10-09)

Modified: z3c.form/trunk/setup.py
===================================================================
--- z3c.form/trunk/setup.py	2008-01-23 20:58:01 UTC (rev 83123)
+++ z3c.form/trunk/setup.py	2008-01-23 21:09:00 UTC (rev 83124)
@@ -43,9 +43,9 @@
 
 setup (
     name='z3c.form',
-    version='1.7.3dev',
+    version='1.8.0',
     author = "Stephan Richter, Roger Ineichen and the Zope Community",
-    author_email = "zope3-dev at zope.org",
+    author_email = "zope-dev at zope.org",
     description = "An advanced form and widget framework for Zope 3",
     long_description=(
         read('README.txt')
@@ -68,7 +68,7 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://cheeseshop.python.org/pypi/z3c.form',
+    url = 'http://pypi.python.org/pypi/z3c.form',
     packages = find_packages('src'),
     include_package_data = True,
     package_dir = {'':'src'},



More information about the Checkins mailing list