summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
AgeCommit message (Expand)Author
2013-09-21[1.6.x] Ensured that BoundField.as_widget always returns properly localized f...Florian Apolloner
2013-09-10[1.6.x] Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-08-02[1.6.x] Fixed #18777 -- Localized form fields with as_text/as_hiddenAleksandra Sendecka
2013-07-22[1.6.x] Fixed #20781 -- Fixed _has_changed regression with MultiValueFieldClaude Paroz
2013-07-19[1.6.x] Fixed #20765 -- Set small values of `step` using exponential notation.Simon Charette
2013-06-20Fixed #20630 -- Removed `maxlength` attribute from `NumberInput`.Simon Charette
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...Loic Bistuer
2013-06-18Refactored ValidationError to allow persisting error params and error codes a...Loic Bistuer
2013-06-13Fixed #20594 -- Add validation to models.SlugField.Baptiste Mispelon
2013-05-18Fixed #20440 -- Ensured CharField's max_length/min_length are integersTome Cvitan
2013-05-18Added stripping of whitespace for SlugField and URLFieldDeni Bertovic
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
2013-04-13Fixed #17840 -- Generalized named placeholders in form error messagesClaude Paroz
2013-03-25Removed forced typecasting of help_text/label Field argumentsClaude Paroz
2013-03-20Fixed #18839 - Field.__init__() now calls super().Carny Cheng
2013-03-19Fixed #18003 -- Preserved tracebacks when re-raising errors.konarkmodi
2013-03-14Fixed #17051 -- Removed some 'invalid' field error messagesClaude Paroz
2013-03-14Fixed #20039 -- Fixed has_changed form detection for required TypedChoiceFieldsClaude Paroz
2013-03-07Fixed #19997 -- Added custom EMPTY_VALUES to form fieldsClaude Paroz
2013-03-01Fixed #16612 -- Improved has_changed detection for localized field valuesClaude Paroz
2013-02-23Fixed errors introduced in 21f333bcefccc151d6439246f8203d609ab6ca79. Refs #17751Florian Apolloner
2013-02-23Fix #17751: Added stripping of whitespace for IPAddressField/GenericIPAddress...Erik Romijn
2013-02-23Fixed #19686 -- Added HTML5 number input typeClaude Paroz
2013-01-30Fixed #19034 -- Added proper i18n pluralization for max/min length validation...Claude Paroz
2013-01-28Added HTML5 url input typeClaude Paroz
2013-01-28Added HTML5 email input typeClaude Paroz
2013-01-26Fixed #16123 -- Ensured strptime receive proper string typeClaude Paroz
2013-01-26Moved BooleanField 'required' validation in validate()Claude Paroz
2013-01-25Moved has_changed logic from widget to form fieldClaude Paroz
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