openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
wtforms
Settings
|
Report Duplicate
7
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Activity Not Available
Commits
: Listings
Analyzed
about 1 year
ago. based on code collected
over 4 years
ago.
Aug 18, 2019 — Aug 18, 2020
Showing page 78 of 80
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Minor fix which makes ordered form fields not break inheritance
james
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
james
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.
james
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.
james
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.
james
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.
james
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.
james
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.
james
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.
[email protected]
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.
thomas
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.
Thomas Johansson
More...
almost 17 years ago
diaf tabs
thomas
More...
almost 17 years ago
diaf tabs
Thomas Johansson
More...
almost 17 years ago
Bit too fast there, only yielding values. Also fix whitespace, stupid tabs. Really fixes #6 this time.
Thomas Johansson
More...
almost 17 years ago
Bit too fast there, only yielding values. Also fix whitespace, stupid tabs. Really fixes #6 this time.
thomas
More...
almost 17 years ago
Make form iterable, yielding the fields, based on suggestion from benoitc. Fixes #6.
Thomas Johansson
More...
almost 17 years ago
Make form iterable, yielding the fields, based on suggestion from benoitc. Fixes #6.
thomas
More...
almost 17 years ago
Add HiddenField, derived from TextField. Fixes #5
Thomas Johansson
More...
almost 17 years ago
Add HiddenField, derived from TextField. Fixes #5
thomas
More...
almost 17 years ago
Label return should always be unicode
thomas
More...
about 17 years ago
Label return should always be unicode
Thomas Johansson
More...
about 17 years ago
←
1
2
…
72
73
74
75
76
77
78
79
80
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree