forked from fafhrd91/pform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
112 lines (60 loc) · 2.15 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
CHANGES
=======
0.6.3 (Unreleased)
------------------
- Use 'utf-8' as default form 'accept-charset'
- Support bootstrap3
0.6.2 (01-16-2013)
------------------
- Fixed composite and options templates for Chrome
0.6.1 (01-09-2012)
------------------
- Allow return additional data from action handler
- Pass different context to vocabulary factory
(depends on factory argument name: request, content, context)
0.6 (01-07-2013)
----------------
- Added `OptionsField`
- BaseMultiChoiceField.missing value is [] by default
- Copy field missing value during fieldset data extraction
- Fixed form csrf support
- Fixed 'checked' value for radio field
- Do not use missing value if value is not validation
0.5 (12-21-2012)
----------------
- Added `flat` attribute to field and fieldset,
with flat fieldset and composite field uses primary data
dictionary instead of sub dict
0.4.1 (12-20-2012)
------------------
- Fixed FileField validation
0.4 (12-12-2012)
----------------
- Added `Composite` field
- Render str in `form:error` message
- Removed `display` mode
- SimpleTerm and SimpleVocabulary renamed to Term and Vocabulary
- Removed `from_items` and `from_value` SimpleVocabulary methods,
use Vocabulary constructor instead
- Use `form` layer category for form and field templates
- Button class now inherits from InputField
0.3 (11-27-2012)
----------------
- Allow to add `str` as error in `Form.validate` method
- Better button handling
- Better tanslations for `Invalid` messages
- Changed arguments order for `Invalid` class contrustor
- Added sub errors support to `Invalid` class
- Added `extract` parameter to `Button` class, if extract is set then action
extract values from form, adds errors to message and pass data to handler
- Added `pform.button2` decorator, `extract` parameter is true
- Added `max_size` and `allowed_types` parameters to FileField
- Do not override widget's custom tmpl_widget
0.2 (11-13-2012)
----------------
- Fixed submit button template
- Allow to return http response from form update or action handler
- Added support for `player.layout()`
0.1 (11-07-2012)
----------------
- Initial release