summaryrefslogtreecommitdiff
path: root/django/forms/fields.py
AgeCommit message (Expand)Author
2014-01-11Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeFieldClaude Paroz
2014-01-11Fixed #21752 -- Prevented custom widget step attribute to be overwrittenClaude Paroz
2013-12-16Removed duplicated `TimeField` in __all__.Artur Barseghyan
2013-12-16Fixed #17413 -- Serialization of form errors along with all metadata.Loic Bistuer
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-18Fixed #21397 -- Re-added flexibility to TypedChoiceField coercionClaude Paroz
2013-11-02Merge pull request #1848 from rayashmanjr/masterAlex Gaynor
2013-11-02Correct flake8 violation E261Ray Ashman Jr
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-09-28Fixed #20439 -- Started deprecation of IPAddressFieldErik Romijn
2013-09-21Ensured that BoundField.as_widget always returns properly localized fields.Florian Apolloner
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
2013-09-10Fixed #19298 -- Added MultiValueField.__deepcopy__Tim Graham
2013-09-06Fixed #4287 -- Fixed NaN and +/- Infinity handling in FloatFieldDaniel Langer
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-06Fixed #15511 -- Allow optional fields on ``MultiValueField` subclasses.Tai Lee
2013-08-02Fixed #18777 -- Localized form fields with as_text/as_hiddenAleksandra Sendecka
2013-07-29Removed most of absolute_import importsClaude Paroz
2013-07-22Fixed #20781 -- Fixed _has_changed regression with MultiValueFieldClaude Paroz
2013-07-19Fixed #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