summaryrefslogtreecommitdiff
path: root/django/newforms
AgeCommit message (Expand)Author
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
2007-10-22Fixed #5794 -- Be more robust when rendering a DateTimeInput widget. Thanks,Malcolm Tredinnick
2007-10-21Removed unwanted import that snuck into [6578].Malcolm Tredinnick
2007-10-21Changed the default form presentation of datetime values to not include theMalcolm Tredinnick
2007-10-21DateTimeField can now clean values that come from SplitDateTimeWidget.Malcolm Tredinnick
2007-10-20Changed newforms.CheckboxInput widget to return False as its value when notMalcolm Tredinnick
2007-10-04Changed some Widget subclasses to be consistent about how they handle the pas...Malcolm Tredinnick
2007-10-04Added a __deepcopy__() method to the Widget class in order to avoid a number ...Malcolm Tredinnick
2007-09-16Fixed #4067 -- Fixed validation of IPAddressFields in newforms. Thanks to nei...Malcolm Tredinnick
2007-09-16Fixed #4975 -- Allow the default label suffix character to be configured. Tha...Malcolm Tredinnick
2007-09-15Fixed #5471 -- Fixed cleaning of boolean field data when it's used as a hidde...Malcolm Tredinnick
2007-09-15Fixed #5355 -- Fixed data cleaning for DecimalField.Malcolm Tredinnick
2007-09-15Fixed #5387 -- Added is_multipart method to forms. Original patch from Petr M...Malcolm Tredinnick
2007-09-15Fixed some Python 2.3 unicode conversion problems. Uncovered by the tests, bu...Malcolm Tredinnick
2007-09-14Fixed #3848 -- Added more comprehensive checks to ImageField validation, chec...Russell Keith-Magee
2007-09-14Fiex #5331 -- Modified newforms URLField to prepend http:// if no protocol is...Russell Keith-Magee
2007-09-14Fixed #3489 -- Added proper deepcopying to form fields so that widget instanc...Malcolm Tredinnick
2007-09-14Fixed #3421 -- Added IP and localhost validation to newforms URLField. Thanks...Russell Keith-Magee
2007-09-13Fixed #4752 -- Make default ErrorList customisable in newforms display. Based...Malcolm Tredinnick
2007-09-13Fixed #5370 -- Allow lazy translations in ValidationError classes. Patch from...Malcolm Tredinnick
2007-09-11Fixed #4478 -- Added a catch for an error thrown by PIL when attempting to va...Russell Keith-Magee
2007-09-08Fixed imports to adhere to PEP 8 and stripped trailing whitespace.Gary Wilson Jr
2007-09-08Fixed #5232 -- Fixed the validation of `DecimalField` so that the negative si...Gary Wilson Jr
2007-08-12Fixed #5095 -- newforms now checks for EnvironmentError when importing settin...Adrian Holovaty
2007-08-12Fixed #4622 -- Fixed SelectDateWidget to work correctly when used as a hidden...Malcolm Tredinnick
2007-08-06Fixed #3297 -- Implemented FileField and ImageField for newforms. Thanks to t...Russell Keith-Magee
2007-08-05Fixed #4001 -- Added dynamic save_m2m method() to forms created with form_for...Russell Keith-Magee
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr