Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
Provide optionalChoice field in the content type. Pre-1.3.0 releases of
Browse files Browse the repository at this point in the history
z3c.form simply ignored missing fields, but the latest version reports
the error.
  • Loading branch information
strichter committed Jun 25, 2007
1 parent c106b52 commit e66af79
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@
CHANGES
=======

Version 1.1.2 (6/25/2007)
-------------------------

- Bug: Provide optionalChoice field in the content type. Pre-1.3.0 releases of
``z3c.form`` simply ignored missing fields, but the latest version reports
the error. Thanks to Luke Miller for the report.

Version 1.1.1 (6/24/2007)
-------------------------

- Fix: Add new ``zope.rdb`` dependency to the setup and buildout
- Bug: Add new ``zope.rdb`` dependency to the setup and buildout
configuration.

Version 1.1.0 (6/22/2007)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*rnames):

setup (
name='z3c.formdemo',
version='1.1.1',
version='1.1.2',
author = "Stephan Richter, Roger Ineichen and the Zope Community",
author_email = "zope3-dev@zope.org",
description = "A set of demo applications for z3c.form and z3c.formui",
Expand Down
2 changes: 2 additions & 0 deletions src/z3c/formdemo/widgets/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ class AllFields(persistent.Persistent):
bytesField = FieldProperty(interfaces.IAllFields['bytesField'])
bytesLineField = FieldProperty(interfaces.IAllFields['bytesLineField'])
choiceField = FieldProperty(interfaces.IAllFields['choiceField'])
optionalChoiceField = FieldProperty(
interfaces.IAllFields['optionalChoiceField'])
dateField = FieldProperty(interfaces.IAllFields['dateField'])
datetimeField = FieldProperty(interfaces.IAllFields['datetimeField'])
decimalField = FieldProperty(interfaces.IAllFields['decimalField'])
Expand Down

0 comments on commit e66af79

Please sign in to comment.