~ubuntu-branches/ubuntu/trusty/zope.app.form/trusty

« back to all changes in this revision

Viewing changes to PKG-INFO

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2010-12-02 01:37:03 UTC
  • Revision ID: james.westby@ubuntu.com-20101202013703-fvbpiae1ok9v73we
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Metadata-Version: 1.0
 
2
Name: zope.app.form
 
3
Version: 4.0.2
 
4
Summary: The Original Zope 3 Form Framework
 
5
Home-page: http://pypi.python.org/pypi/zope.app.form
 
6
Author: Zope Corporation and Contributors
 
7
Author-email: zope-dev@zope.org
 
8
License: ZPL 2.1
 
9
Description: This package provides the old form framework for Zope 3. It also
 
10
        implements a few high-level ZCML directives for declaring forms. More
 
11
        advanced alternatives are implemented in ``zope.formlib`` and
 
12
        ``z3c.form``. The widgets that were defined in here were moved to
 
13
        ``zope.formlib``. Version 4.0 and newer are maintained for backwards
 
14
        compatibility reasons only.
 
15
        
 
16
        
 
17
        
 
18
        Detailed documentation:
 
19
        
 
20
        
 
21
        =======
 
22
        CHANGES
 
23
        =======
 
24
        
 
25
        4.0.2 (2010-01-22)
 
26
        ==================
 
27
        
 
28
        - Seems like 4.0.1 was released already. Brown bag.
 
29
        
 
30
        4.0.1 (2010-01-08)
 
31
        ==================
 
32
        
 
33
        - Import 'escape' for backwards compatibility as packages turn out to be
 
34
          importing this too, even though it's actually from the Python standard
 
35
          library.
 
36
        
 
37
        - Widget documentation is now on PyPI too.
 
38
        
 
39
        4.0 (2010-01-08)
 
40
        ================
 
41
        
 
42
        - The widget implementations have been moved to zope.formlib. This
 
43
          makes this package depend on zope.formlib. The dependency of zope.formlib
 
44
          on this package has been broken.
 
45
        
 
46
        3.12.1 (2009-12-22)
 
47
        ===================
 
48
        
 
49
        - Added missing zope.datetime dependency.
 
50
        
 
51
        3.12.0 (2009-12-22)
 
52
        ===================
 
53
        
 
54
        - Use zope.browserpage in favor of zope.app.pagetemplate.
 
55
        
 
56
        3.11.1 (2009-12-22)
 
57
        ===================
 
58
        
 
59
        - Prefer zope.testing.doctest over doctestunit and adjust test output to newer
 
60
          zope.schema release.
 
61
        
 
62
        3.11.0 (2009-12-18)
 
63
        ===================
 
64
        
 
65
        - Use zope.component.testing in favor of zope.app.testing where possible.
 
66
        
 
67
        - Define dummy standard_macros for test purposes. This reduces the test
 
68
          dependencies by zope.app.basicskin and zope.browserresource.
 
69
        
 
70
        - Removed the zope.app.container and zope.app.publisher testing dependencies.
 
71
        
 
72
        - Refactored code to remove zope.app.component dependency.
 
73
        
 
74
        - Made the tests independent of zope.app.locales.
 
75
        
 
76
        - Reduce zope.app test dependencies by avoiding zope.app.securitypolicy and
 
77
          zope.app.zcmlfiles.
 
78
        
 
79
        3.10.0 (2009-12-17)
 
80
        ===================
 
81
        
 
82
        - Avoid the ``zope.app.basicskin`` dependency, by defining our own FormMacros.
 
83
        
 
84
        3.9.0 (2009-10-08)
 
85
        ==================
 
86
        
 
87
        - Internationalized 'Invalid value' used with ConversionError
 
88
        - Added dependency on transaction and test dependency on zope.app.component.
 
89
        - Moved dependencies on ZODB3 and zope.location to the test extra.
 
90
        - Reduced the dependency on zope.app.publisher to a dependency on
 
91
          zope.browsermenu plus a test dependency on zope.browserpage.
 
92
        
 
93
        3.8.1 (2009-07-23)
 
94
        ==================
 
95
        
 
96
        - Fix unittest failure due to translation update.
 
97
        
 
98
        3.8.0 (2009-05-24)
 
99
        ==================
 
100
        
 
101
        - Use standard properties instead of `zope.cachedescriptors`.
 
102
        
 
103
        - Require `zope.browser` 1.1 instead of `zope.app.container` for IAdding.
 
104
        
 
105
        3.7.3 (2009-05-11)
 
106
        ==================
 
107
        
 
108
        - Fixed invalid markup.
 
109
        
 
110
        3.7.2 (2009-03-12)
 
111
        ==================
 
112
        
 
113
        - Fixed bug where OrderedMultiSelectWidget did not respect the widgets
 
114
          size attribute.
 
115
        
 
116
        - Fixed bug in SequenceWidget where it crashed while trying to iterate
 
117
          a missing_value (None in most of cases) on _getRenderedValue.
 
118
        
 
119
        - Adapt to removal of deprecated interfaces from zope.component.interfaces.
 
120
          The IView was moved to zope.publisher and we use our custom IWidgetFactory
 
121
          interface instead of removed zope.component.interfaces.IViewFactory.
 
122
        
 
123
        - Fix tests to work on Python 2.6.
 
124
        
 
125
        3.7.1 (2009-01-31)
 
126
        ==================
 
127
        
 
128
        - Adapt to the upcoming zope.schema release 3.5.1 which will also silence the
 
129
          spurious `set` failures.
 
130
        
 
131
        3.7.0 (2008-12-11)
 
132
        ==================
 
133
        
 
134
        - use zope.browser.interfaces.ITerms instead of zope.app.form.browser.interfaces
 
135
        
 
136
        - Depending on zope.schema>=3.5a1 which uses the builtin ``set`` instead of the
 
137
          ``sets`` module.
 
138
        
 
139
        
 
140
        3.6.4 (2008-11-26)
 
141
        ==================
 
142
        
 
143
        - The URIDisplayWidget doesn't render an anchor for empty/None values.
 
144
        
 
145
        
 
146
        3.6.3 (2008-10-15)
 
147
        ==================
 
148
        
 
149
        - Get rid of deprecated usage of LayerField from
 
150
          zope.app.component.back35, replaced by
 
151
          zope.configuration.fields.GlobalInterface.
 
152
        
 
153
        3.6.2 (2008-09-08)
 
154
        ==================
 
155
        
 
156
        
 
157
        - Fixed restructured text in doc tests to unbreak the PyPI page.
 
158
        
 
159
        (3.6.1 skipped due to a typo)
 
160
        
 
161
        
 
162
        3.6.0 (2008-08-22)
 
163
        ==================
 
164
        
 
165
        - Dropdown widgets display an item for the missing value even if the field is
 
166
          required when no value is selected. See zope/app/form/browser/README.txt on
 
167
          how to switch this off for BBB.
 
168
        
 
169
        - Source select widgets for required fields are now required as well. They
 
170
          used not to be required on the assumption that some value would be selected
 
171
          by the browser, which had always been wrong except for dropdown widgets.
 
172
        
 
173
        
 
174
        3.5.0 (2008-06-05)
 
175
        ==================
 
176
        
 
177
        - Translate the title on SequenceWidget's "Add <title>" button.
 
178
        
 
179
        - No longer uses zapi.
 
180
        
 
181
        
 
182
        3.4.2 (2008-02-07)
 
183
        ==================
 
184
        
 
185
        - Made display widgets for sources translate message IDs correctly.
 
186
        
 
187
        
 
188
        3.4.1 (2007-10-31)
 
189
        ==================
 
190
        
 
191
        - Resolve ``ZopeSecurityPolicy`` deprecation warning.
 
192
        
 
193
        
 
194
        3.4.0 (2007-10-24)
 
195
        ==================
 
196
        
 
197
        - ``zope.app.form`` now supports Python2.5
 
198
        
 
199
        - Initial release independent of the main Zope tree.
 
200
        
 
201
        
 
202
        Before 3.4
 
203
        ==========
 
204
        
 
205
        This package was part of the Zope 3 distribution and did not have its own
 
206
        CHANGES.txt. For earlier changes please refer to either our subversion log or
 
207
        the CHANGES.txt of earlier Zope 3 releases.
 
208
        
 
209
Keywords: zope3 form widget zcml
 
210
Platform: UNKNOWN
 
211
Classifier: Development Status :: 5 - Production/Stable
 
212
Classifier: Environment :: Web Environment
 
213
Classifier: Intended Audience :: Developers
 
214
Classifier: License :: OSI Approved :: Zope Public License
 
215
Classifier: Programming Language :: Python
 
216
Classifier: Natural Language :: English
 
217
Classifier: Operating System :: OS Independent
 
218
Classifier: Topic :: Internet :: WWW/HTTP
 
219
Classifier: Framework :: Zope3