7
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected over 4 years ago.
Aug 18, 2019 — Aug 18, 2020
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Minor fix which makes ordered form fields not break inheritance More... almost 17 years ago
Minor fix which makes ordered form fields not break inheritance also small typo fix in __init__.py
crast
as James Crasta
More... almost 17 years ago
Add contrib feature to setup.py so we can have it on PyPI More... almost 17 years ago
Add contrib feature to setup.py so we can have it on PyPI
crast
as James Crasta
More... almost 17 years ago
Added missing module docstrings, updated copyright year on all others to 2008. More... almost 17 years ago
Added missing module docstrings, updated copyright year on all others to 2008. Put in docs to be shown in PyPI page in docstring because I'm too lazy to do it on every upload.
crast
as James Crasta
More... almost 17 years ago
Form._fields is now a sequence of (name, value) tuples. More... almost 17 years ago
Form._fields is now a sequence of (name, value) tuples. This cleans up all the use-cases like iteration. Also fixed a small bug in instantiation where we were needlessly getting the field again even though we had it.
crast
as James Crasta
More... almost 17 years ago
Implement iterating fields in order. Fixes #7. More... almost 17 years ago
Implement iterating fields in order. Fixes #7. This is achieved by keeping a creation counter on the partially-instantiated fields and then building a sorted list of fields on the first instantiation of the form. The reason we don't do this in a metaclass is that to make it friendly to monkey-patched form classes which add/remove fields was a significant amount more code to support than doing it on the first instantiation.
crast
as James Crasta
More... almost 17 years ago
Added FileField to allow rendering file-input boxes. More... almost 17 years ago
Added FileField to allow rendering file-input boxes. This does not provide actual handling of file data, but will allow generating the widget from the form and will take any data given by the browser in the POST (probably the filename) Refs #10
crast
as James Crasta
More... almost 17 years ago
dded contrib package for django support. This package includes a templatetag which makes wtforms integration with django templates cleaner. More... almost 17 years ago
dded contrib package for django support. This package includes a templatetag which makes wtforms integration with django templates cleaner. Refs #9
crast
as James Crasta
More... almost 17 years ago
Make validation work without error on python 2.4/2.5. Also make ValueError allowed as a validation error. More... almost 17 years ago
Make validation work without error on python 2.4/2.5. Also make ValueError allowed as a validation error. Refs #2, fixes #11
crast
as James Crasta
More... almost 17 years ago
Compatibility fix for python 2.3/2.4 to allow partially initialized formfields to be instantiated in the form without error. More... almost 17 years ago
Compatibility fix for python 2.3/2.4 to allow partially initialized formfields to be instantiated in the form without error.
crast
as James Crasta
More... almost 17 years ago
Fix value bug in BooleanField.process_data; Looks like we were a bit too fast with the 2.4 support there. Thanks to hads for reporting the bug. More... almost 17 years ago
Fix value bug in BooleanField.process_data; Looks like we were a bit too fast with the 2.4 support there. Thanks to hads for reporting the bug. More... almost 17 years ago
diaf tabs More... almost 17 years ago
diaf tabs More... almost 17 years ago
Bit too fast there, only yielding values. Also fix whitespace, stupid tabs. Really fixes #6 this time. More... almost 17 years ago
Bit too fast there, only yielding values. Also fix whitespace, stupid tabs. Really fixes #6 this time. More... almost 17 years ago
Make form iterable, yielding the fields, based on suggestion from benoitc. Fixes #6. More... almost 17 years ago
Make form iterable, yielding the fields, based on suggestion from benoitc. Fixes #6. More... almost 17 years ago
Add HiddenField, derived from TextField. Fixes #5 More... almost 17 years ago
Add HiddenField, derived from TextField. Fixes #5 More... almost 17 years ago
Label return should always be unicode More... about 17 years ago
Label return should always be unicode More... about 17 years ago