summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
AgeCommit message (Expand)Author
2012-09-26Fixed #17899 -- Rewrote [Ee]-mail to [Ee]mailAdrien Lemaire
2012-09-23Fixed #18982 - Caught TypeError in DateField.cleanAymeric Augustin
2012-09-10Document and test 'type' usage in Widget attrsClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-30Fixed second security issue in image uploading. Disclosure and release forthc...Florian Apolloner
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-31Fixed #18409 -- Made RegexField work with unicode characters.Julien Phalip
2012-05-16Hidden __pycache__ dirs for FilePathField. Refs #17393.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-22Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in add...Alex Gaynor
2012-04-05Removed pre-2.6 compatibility code in date-based form fields. Refs #9459.Claude Paroz
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
2012-03-29Fixed #11150 -- Removed dependency on cStringIO in ImageField validation. Tha...Claude Paroz
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