-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
212 lines (134 loc) · 4.89 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
=======
Changes
=======
1.0.0 (2012-11-30)
==================
- Make dojoform AMD compliant.
0.34.0 (2012-06-19)
===================
- Fix bug in Range widget preventing standard form
submission, and do labels better.
0.33.0 (2012-06-19)
===================
- Fix bug in Range widgets preventing labels
from appearing
0.32.0 (2012-03-18)
===================
- Switch order of Save and Cancel buttons
in record list form dialog
0.31.0 (2012-02-20)
===================
- Fix for date widget
(https://tracker.zope.com/tracker/issue11679)
0.30.0 (2011-12-19)
===================
- Add a class name to the RichTextDisplay widget
0.29.0 (2011-11-21)
===================
- Fix for range enforcement
(https://tracker.zope.com/tracker/issue12599)
0.28.0 (2011-10-03)
===================
- CKEditor destruction
(https://tracker.zope.com/tracker/issue12341)
0.27.0 (2011-09-22)
===================
- RangeWidgets use spinners
0.26.0 (2011-07-08)
===================
- Better support for D&D recordlists
0.23.0 (unreleased)
===================
- Fix bugs in zc.RangeWidget.
0.22.0 (2011-01-20)
===================
- Fix build_form to work with the left_fields format that zc.ajaxform
generates.
0.21.0 (2010-12-02)
===================
- Avoid bizarre complication of record building in build_record
method, fixing bugs in the process.
0.18.0 (2010-10-08)
===================
- Add date and time widgets.
- Add UI improvements for dialogs when using Dojo 1.5.
- Clean up dependencies.
- Make the highest-level container a dijit.form.Form, so that
widgets can easily be validated on the client-side by calling
the form's validate method.
- Reinstate default automatic form startup (added back in 0.16.2), and add
an argument `startup` to `build_form` to control the behavior.
- Add a workaround to the "Add/Modify Record" dialog for an issue with
text fields in CKEditor pop-ups not being editable.
0.17.0 (2010-07-12)
===================
- Add convenience function (zc.dojo.alert) for displaying alert messages.
- Add convenience function (zc.dojo.confirm) for displaying confirmation
dialogs.
- Make zope.schema.List widget validate contents of the adding form.
- Make zope.schema.List widget give consistent ids to its Buttons.
- Make zope.schema.List widget display an error message when its Delete
button is clicked with no rows selected.
- Fix an issue where the Edit dialog of the zope.schema.List widget wasn't
filling in the values for zope.schema.Int fields.
- Fix an issue where the zope.schema.List widget's Edit button wasn't
bailing out when clicked without a row selected, thus causing
Javascript errors.
- Fix broken selenium tests.
- Fix issue with the RichText widget when no default value is provided.
- Quell all jslint errors and warnings.
0.16.2 (2010-08-27)
===================
- Revert change made in 0.13.0 that removed the call to the form's
startup method.
0.16.1 (2010-06-29)
===================
- Increased the height of the form used to edit records
0.16.0 (2010-06-09)
===================
- Keep track of window event handlers in the ckeditor widget; handlers are
added to the zc.dojo.GLOBAL_HANDLERS list.
- Revert change in 0.15.0.
0.15.0 (2010-05-13)
===================
- Added data_files entry to setup.py for `default.css` file added in 0.14.0.
0.14.0 (2010-05-13)
===================
- Added `default.css` to resources, a style sheet that can be used for nicer
presentation.
- Whitespace/lint cleanup in `zc.dojo.js`.
0.13.0 (2010-04-27)
===================
- Removed call to .startup() on form; it is the client's job to start the form
after optionally adding additional widgets to it.
- Added a rich text widget (zc.ajaxform.widgets.RichText).
- Made the rich text widget's height and width configurable via display
options.
- Bug fix: zope.schema.Text was errantly given a rich text widget. It now uses
a plain text widget.
- Bug fix (I think): removed some style ("width:100%") from the right
ContentPane that caused the form to be too wide.
0.10.0 through 0.12.0
=====================
Missing change log.
0.9.0 (2010-03-29)
==================
- Cosmetic fixes (eg., scrollbar cleanup)
0.8.0 (2010-02-17)
==================
- Support for List quick content type
0.7.0 (2009-11-24)
==================
- Removed dependency on ``zc.extjsresource``.
- Removed dependency on ``zope.deferredimport``.
- Added a `postStartup` hook for widgets, called after form startup.
- Added a CKEditor widget as an optional replacement for the Dojo WYSIWYG
editor widget.
- Added `fit()` method to generated form. This resizes the height of the
form to that of its largest region.
- Added `ComboBox` widget.
- Fixed text selection on display widgets.
- Changed the rich-text display widget to be an `iframe` instead of a full
Dojo rich-text editor.
- ``zc.dojo.build_form`` now sets the tab-index for all widgets in the form.
XXX missing previous release history