summaryrefslogtreecommitdiff
path: root/django/newforms
AgeCommit message (Expand)Author
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
2007-08-01Fixed #4228 -- Removed hardcoding of `RadioFieldRenderer` in the `RadioSelect...Gary Wilson Jr
2007-07-14Fixed a problem with translatable strings from [5686].Malcolm Tredinnick
2007-07-13Fixed #4469 -- Added slightly more informative error messages to max- andMalcolm Tredinnick
2007-07-13Fixed #4861 -- Removed some duplicated logic from the newforms RegexField byMalcolm Tredinnick
2007-07-13Fixed #4807 -- Fixed a couple of corner cases in decimal form input validation.Malcolm Tredinnick
2007-07-12Fixed #4755 -- Modified newforms MultipleChoiceField to use list comprehensio...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-01Added some clearer docstrings to MultiValueField and MultiWidgetAdrian Holovaty
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-23Fixed #4527 -- Changed the way errors are displayed in Form.as_p() to avoidMalcolm Tredinnick
2007-06-23Fixed #4630 -- Fixed some validation problems with SplitDateTimeField. ThanksMalcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-06-15Fixed #3972 -- Updated docstring. Patch from SmileyChris.Malcolm Tredinnick
2007-05-26Fixed #3718 -- Exposed form errors to cleaning methods as soon as they areMalcolm Tredinnick
2007-05-26Fixed #4297 -- Made form errors available to sub-classes. Thanks, Gary Wilson.Malcolm Tredinnick
2007-05-26Fixed #4390, #4385 -- Made it clear that cleaned_data wasn't being assigned toMalcolm Tredinnick
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-05-19Fixed #4316 -- Added docstring and tests for django.newforms.utils.flatatt().Malcolm Tredinnick
2007-05-16Fixed #4318 -- Fixed unused imports and other various style tweaks in newform...Adrian Holovaty
2007-05-14Changed the fix from [5231] so that the backwards-incompatibility is made moreMalcolm Tredinnick
2007-05-14Renamed form-specific cleaning methods to be do_clean_*, rather than clean_*.Malcolm Tredinnick
2007-05-12Fixed #4018 -- Added code to allow callables as initial data in newforms. Tha...Russell Keith-Magee
2007-05-12Added docs for form_for_model and form_for_instance, and added a fields argum...Russell Keith-Magee