summaryrefslogtreecommitdiff
path: root/django/newforms/fields.py
AgeCommit message (Expand)Author
2007-02-05newforms: Changed ChoiceField error message *not* to include user-provided inputAdrian Holovaty
2007-01-28Fixed #3255 -- Added help_text argument to newforms Field class.Adrian Holovaty
2007-01-24newforms: Implemented NullBooleanField and NullBooleanSelectAdrian Holovaty
2007-01-23newforms: Added MultiValueField, SplitDateTimeField, MultiWidget, SplitDateTi...Adrian Holovaty
2007-01-21Fixed #3196 -- Fixed inconsistency in setting choices on ChoiceFields dynamic...Adrian Holovaty
2007-01-21newforms: Fixed confusing behavior when setting choices for ChoiceFields and ...Adrian Holovaty
2007-01-20Fixed #3303 -- Cleaned some newforms clean() method implementations. Thanks f...Adrian Holovaty
2007-01-20Fixed #3337 -- Changed newforms Field subclasses to use super(). Thanks for t...Adrian Holovaty
2007-01-13Fixed #3281 -- newforms: URLField now works properly with required=False and ...Adrian Holovaty
2007-01-13Fixed #3293 -- newforms: Changed IntegerField.clean() to return None if field...Adrian Holovaty
2007-01-09Fixed #3193 -- newforms: Modified as_hidden() to handle MultipleChoiceField c...Adrian Holovaty
2006-12-28newforms: Added 'initial' parameter to Field. This allows you to specify init...Adrian Holovaty
2006-12-26newforms: Added max_length and min_length optional arguments to RegexField, E...Adrian Holovaty
2006-12-17Fixed #3153 -- newforms 'label' argument now can contain wacky characters. Th...Adrian Holovaty
2006-12-15newforms: Implemented min_value and max_value options for IntegerFieldAdrian Holovaty
2006-12-15newforms: Fixed unexpected behavior with CharField(required=False, min_length...Adrian Holovaty
2006-12-14Fixed #3143 -- Added TimeField to newforms. Thanks, jkocherhansAdrian Holovaty
2006-12-08Fixed #3102 -- newforms: Fields can now designate their human-friendly labels...Adrian Holovaty
2006-12-08newforms: Added Field.widget_attrs() hook, which lets a Field designate HTML ...Adrian Holovaty
2006-12-08Fixed small Unicode error in newforms. Thanks, Honza Král. Refs #3114Adrian Holovaty
2006-12-06Fixed #3095 -- Added translation strings to newforms. Thanks for the patch, H...Adrian Holovaty
2006-12-05newforms: Removed DEFAULT_ENCODING import from fields.pyAdrian Holovaty
2006-11-27newforms: Added a bunch of unit tests and fixed some bugs in the case of requ...Adrian Holovaty
2006-11-27Fixed #3038 -- newforms: RegexField no longer validates empty input for requi...Adrian Holovaty
2006-11-23Fixed #3054 -- newforms Form now keeps track of field orderAdrian Holovaty
2006-11-16newforms: Fixed #3008 -- Widgets now support strings containing utf-8 charact...Adrian Holovaty
2006-11-10Fixed #2997 -- Fixed URLField validation in django.newforms. Thanks, jkocherhansAdrian Holovaty
2006-11-07Implemented [4035] (improvement in URL validation) in django.newformsAdrian Holovaty
2006-11-04django.newforms: Implemented hook for validation not tied to a particular fie...Adrian Holovaty
2006-11-02Added ChoiceField, MultipleChoiceField to django.newformsAdrian Holovaty
2006-11-01Added URLField to django.newforms.fieldsAdrian Holovaty
2006-10-28Split django.newforms into forms, fields, widgets, util. Also moved unit test...Adrian Holovaty