summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
AgeCommit message (Expand)Author
2012-02-04Fixed #14184 -- Enabled running the validators in MultiValueFields. Thanks, p...Jannis Leidel
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-11-15Fixed #15912 -- Ensured that `forms.CharField.widget_attrs()` always returns ...Julien Phalip
2011-11-13Fixed #17134: Corrected Python 2.5 fallback code for parsing microseconds in ...Karen Tracey
2011-11-07Fixed #17125 -- Made it possible to change a `RegexField`'s regular expressio...Julien Phalip
2011-10-28Fixed #17127 -- Made field validators list independent per form instance. Tha...Carl Meyer
2011-10-17Remove several more relative imports.Alex Gaynor
2011-09-09Fixes #16664 -- URLField's to_python method fails with ValueError on some url...Chris Beaven
2011-09-09Fix and test for cleaning a non-string value in a URLFieldChris Beaven
2011-06-16Fixed #15127 -- Properly copy the choices of choice fields. Thanks, dready an...Jannis Leidel
2011-06-13Fixed #16246 -- Fixed GenericIPAddressField tests on PostgreSQL.Jannis Leidel
2011-06-11Minor cosmetic cleanup for r16347.Jannis Leidel
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel
2011-06-10More removal of poorly legible constructs to workaround Python 2.4 shortcomings.Ramiro Morales
2011-06-09Fixed #9459: forms.HiddenInput and DateTime field loses microseconds. Thanks ...Andrew Godwin
2011-05-03Fixed #13770 -- Extended BooleanField form field to also clean `u'false'` to ...Jannis Leidel
2011-05-01Fixed #5714 -- Strip whitespaces around date and time form field values befor...Jannis Leidel
2011-04-22Fixed #13584 -- Optionally allow empty files with django.forms.FileField. Tha...Chris Beaven
2011-04-22Fixed #15758 -- Removed stale constants that were missed in r15983.Jannis Leidel
2011-04-02Removed deprecated en_format helper function.Russell Keith-Magee
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-01-13Fixed #13631 -- Made sure that max_length and min_length are retained as attr...Russell Keith-Magee
2010-12-05Fixed #12398 -- Added a TypedMultipleChoiceField. Thanks to Tai Lee.Russell Keith-Magee
2010-12-02Fixed #8217 -- Correctly sort files in FilePathFields on older Python version...Jannis Leidel
2010-11-21Fixes #13804 -- URLField validation failure for a url containing '://' on the...Chris Beaven
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-10-07Fixed #11907 -- EmailField now runs strip() on its input. This means mistaken...Adrian Holovaty
2010-10-01Fixed #7048 -- Added ClearableFileInput widget to clear file fields. Thanks f...Jannis Leidel
2010-09-11Fixed #13390 -- `SplitDateTimeWidget` now recognizes when it's no longer requ...Justin Bronn
2010-08-14Fixed #13679, #13231, #7287 -- Ensured that models that have ForeignKeys/Many...Russell Keith-Magee
2010-05-21Fixed #13560 -- Fixed localization of widgets.Jannis Leidel
2010-03-27Fixed #13032 - Added localize parameter to form fields to be able to selecti...Jannis Leidel
2010-03-01Fixed #12779 - Sanitize numeric form field input according to decimal and tho...Jannis Leidel
2010-02-23Fixed a few more spots related to #11859. Thanks, cramm and Alex Gaynor.Joseph Kocherhans
2010-02-22Fixed #7777 -- Added validation handling for NaN, Inf and -Inf in DecimalFiel...Russell Keith-Magee
2010-02-14Fixed #6054: work around PIL's installation brokeness by detecting either of ...Jacob Kaplan-Moss
2010-01-05Merged soc2009/model-validation to trunk. Thanks, Honza!Joseph Kocherhans
2010-01-05Fixed deprecation warning nuisance introduced in r11964. Thanks to Luke Plant...Jannis Leidel
2009-12-22Fixed #7980 - Improved i18n framework to support locale aware formatting (dat...Jannis Leidel
2009-12-17Fixed #11753 - Q objects with callables no longer explode on Python 2.4. Than...Jacob Kaplan-Moss
2009-10-09SECURITY ALERT: Corrected regular expressions for URL and email fields.Jacob Kaplan-Moss
2009-09-10Fixed #10950 - unused import.Luke Plant
2009-05-02Fixed #9609 -- Modified the clean method of(Null)Boolean field to accept '1' ...Russell Keith-Magee
2009-04-16Fixed #9948 -- Corrected URLField validation to match RFC1035 (URL analog of ...Russell Keith-Magee
2009-04-16Fixed #9890 -- Modified the regex validation for email addresses to match RFC...Russell Keith-Magee
2009-04-08Fixed #8422: FilePathField now respects required=False.Jacob Kaplan-Moss
2009-03-30Fixed #10149. FileFields in a form now validate max_length. Based on a patch ...Joseph Kocherhans
2009-03-22Fixed #8962 -- Consistently support format and input_format in the various (i...Karen Tracey
2008-11-10Fixed #7064: Made DemicmalField validation support max_digits equal to decima...Karen Tracey
2008-11-10Fixed #6035 -- Gave the SplitDateTimeField the proper default widget. Thanks...Karen Tracey