summaryrefslogtreecommitdiff
path: root/django/newforms
AgeCommit message (Expand)Author
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-07-19Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...Jacob Kaplan-Moss
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-07-18Fixed #7816 -- Fixed error in a few DeprecationWarnings. Thanks, leahculverAdrian Holovaty
2008-07-18Fixed #1443 -- Django's various bits now support dates before 1900. Thanks to...Adrian Holovaty
2008-07-12Fixed #7673: make sure to rewind uploaded image data when validating ImageFie...Jacob Kaplan-Moss
2008-07-07Fixed #7614: the quickening has come, and there now is only one UploadedFile....Jacob Kaplan-Moss
2008-07-06Changed ModelFormMetaclass to have the normal signature for a __new__ method.Malcolm Tredinnick
2008-07-06Fixed #7621 -- Enable superclassing of the various metaclasses we use.Malcolm Tredinnick
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-06-30Fixed #5957 -- Enforce the "required" attribute on BooleanField in newforms.Malcolm Tredinnick
2008-06-19Fixed #7475: fixed a possible race condition in ModelChoiceIterator. Thanks, ...Jacob Kaplan-Moss
2008-06-18Fixed #4860: added 'for' attributes to labels in newforms widgets. Thanks to ...Jacob Kaplan-Moss
2008-06-16Fixed #7454 -- Removed unnecessary import in newforms/fields.py. Thanks, lorienAdrian Holovaty
2008-06-16Fixed #7171 -- Removed some redundant code in ModelChoiceField. Thanks for th...Adrian Holovaty
2008-03-20Fixed #5917 -- More error robustness in date parsing in SelectDateWidget, plusMalcolm Tredinnick
2008-03-19Fixed #4620: you can now easily add custom labels to ModelChoiceFields via su...Jacob Kaplan-Moss
2008-03-19Fixed #5894: added FilePathField to newforms. Thanks, Alex Gaynor.Jacob Kaplan-Moss
2008-03-18Fixed #6230: Fixed the addition of id values to the select widgets inMalcolm Tredinnick
2008-02-29Fixed #5811 -- Added an explicit conversion to unicode that was otherwise cau...Malcolm Tredinnick
2008-02-15Trivial comment change in ModelFormMetaclass to better reflect what we are do...Malcolm Tredinnick
2008-02-14Modified [7112] to make things behave more in line with Python subclassing wh...Malcolm Tredinnick
2008-02-14Fixed #6337. Refs #3632 -- Fixed ModelForms subclassing, to the extent that i...Malcolm Tredinnick
2008-02-04Fixed #6113 -- Added auto-escaping "safe" marking for the MultiWidget. Thanks...Malcolm Tredinnick
2008-02-03Fixed #6313 -- Typo fix pointed out by thejaswi_puthraya.Malcolm Tredinnick
2008-01-18Fixed #6302 for ImageFields.Jacob Kaplan-Moss
2008-01-17Fixed #6302. FileField no longer requires a value if one already exists. Than...Joseph Kocherhans
2007-12-19Fixed comma splices in PendingDeprecationWarnings of form_for_model and form_...Adrian Holovaty
2007-12-17Fixed #6197 -- Added (optional) formfield_callback argument to ModelForms.__n...Malcolm Tredinnick
2007-12-13Changed ModelForms to allow inheritance as long as their model attributes are...Joseph Kocherhans
2007-12-13Fixed #6162. ModelForm's __init__ signature now matches Form's. This is a bac...Joseph Kocherhans
2007-12-04Small docstring edit to change from [6745]Adrian Holovaty
2007-12-02Added PendingDeprecationWarmings for form_for_instance/form_for_model.Joseph Kocherhans
2007-12-02Fixed #6042 -- ModelForms implementation from Joseph Kocherhans. Still mightMalcolm Tredinnick
2007-12-02Fixed #5743 -- Tweaked the exceptions raised when importing settings so that weMalcolm Tredinnick
2007-12-01Simplified the newforms error_messages setting code from [6625]Adrian Holovaty
2007-11-29Fixed #6014 -- More robust error handling when validating decimal fields.Malcolm Tredinnick
2007-11-29Fixed #5959 -- Fixed handling of False values in hidden boolean fields. Thanks,Malcolm Tredinnick
2007-11-28Fixed #5991 -- Marked the generated HTML for newforms.extra.SelectDateWidget asMalcolm Tredinnick
2007-11-28Fixed #5730: Conditionally escape widget contents in newforms to avoidMalcolm Tredinnick
2007-11-26Fixed #5993 -- Made `RadioSelect` easier to subclass by giving it a default `...Gary Wilson Jr
2007-11-19Made use of `EMPTY_VALUES` in `ModelChoiceField.clean()`.Gary Wilson Jr
2007-11-18Fixed #5975 -- Gave `ModelChoiceField` and `ModelMultipleChoiceField` ability...Gary Wilson Jr
2007-11-14Implemented auto-escaping of variable output in templates. Fully controllable...Malcolm Tredinnick
2007-11-13Fixed #4787, #5913 -- Updating the queryset on a `ModelChoiceField` or `Model...Gary Wilson Jr
2007-11-11Fixed #5918 -- Removed `SortedDictFromList` since `SortedDict` now can do eve...Gary Wilson Jr
2007-11-04For readability, use _() as an alias to mark translatable strings.Malcolm Tredinnick
2007-10-29Style fixes.Gary Wilson Jr
2007-10-28Fixed #3457 -- Allow overridding of error messages for newforms Fields.Gary Wilson Jr
2007-10-28Removed duplicate decimal import.Gary Wilson Jr