summaryrefslogtreecommitdiff
path: root/django/newforms/widgets.py
AgeCommit message (Expand)Author
2008-07-19Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...Jacob Kaplan-Moss
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-07-18Fixed #1443 -- Django's various bits now support dates before 1900. Thanks to...Adrian Holovaty
2008-06-18Fixed #4860: added 'for' attributes to labels in newforms widgets. Thanks to ...Jacob Kaplan-Moss
2008-02-04Fixed #6113 -- Added auto-escaping "safe" marking for the MultiWidget. Thanks...Malcolm Tredinnick
2007-11-28Fixed #5730: Conditionally escape widget contents in newforms to avoidMalcolm Tredinnick
2007-11-26Fixed #5993 -- Made `RadioSelect` easier to subclass by giving it a default `...Gary Wilson Jr
2007-11-14Implemented auto-escaping of variable output in templates. Fully controllable...Malcolm Tredinnick
2007-10-22Fixed #5794 -- Be more robust when rendering a DateTimeInput widget. Thanks,Malcolm Tredinnick
2007-10-21Removed unwanted import that snuck into [6578].Malcolm Tredinnick
2007-10-21Changed the default form presentation of datetime values to not include theMalcolm Tredinnick
2007-10-20Changed newforms.CheckboxInput widget to return False as its value when notMalcolm Tredinnick
2007-10-04Changed some Widget subclasses to be consistent about how they handle the pas...Malcolm Tredinnick
2007-10-04Added a __deepcopy__() method to the Widget class in order to avoid a number ...Malcolm Tredinnick
2007-09-15Fixed #5387 -- Added is_multipart method to forms. Original patch from Petr M...Malcolm Tredinnick
2007-08-06Fixed #3297 -- Implemented FileField and ImageField for newforms. Thanks to t...Russell Keith-Magee
2007-08-01Fixed #4228 -- Removed hardcoding of `RadioFieldRenderer` in the `RadioSelect...Gary Wilson Jr
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-07-01Added some clearer docstrings to MultiValueField and MultiWidgetAdrian Holovaty
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-23Fixed #4607 -- Tweaked checks for features missing in Python 2.3 to not assumeMalcolm Tredinnick
2007-05-16Fixed #4318 -- Fixed unused imports and other various style tweaks in newform...Adrian Holovaty
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-26Fixed #3787, #3788 -- Corrected check for IndexError on MultiValueField, and ...Russell Keith-Magee
2007-04-24Fixed #3870, Refs #3787 -- Fixed handling of widget attributes on RadioSelect...Russell Keith-Magee
2007-04-09Fixed #3929 -- Newforms Textarea widget now always includes 'rows' and 'cols'...Adrian Holovaty
2007-04-04Moved smart_unicode and StrAndUnicode to django.utils.encoding. They are usefulMalcolm Tredinnick
2007-04-01Fixed #3810 -- In newforms, copy attribute dictionaries before modifying themMalcolm Tredinnick
2007-02-15Fixed #3409 -- Added render_value argument to newforms PasswordInput. Thanks ...Adrian Holovaty
2007-01-27Fixed #3312 -- CheckboxSelectMultiple no longer uses duplicate ID attributes ...Adrian Holovaty
2007-01-27Fixed #3300 -- Changed newforms Select widget to collapse 'choices' into a li...Adrian Holovaty
2007-01-24newforms: Implemented NullBooleanField and NullBooleanSelectAdrian Holovaty
2007-01-23newforms: Added MultiValueField, SplitDateTimeField, MultiWidget, SplitDateTi...Adrian Holovaty
2007-01-20newforms: Moved flatatt function from widgets.py to util.pyAdrian Holovaty
2007-01-13Fixed #3289 -- newforms: Added value_from_datadict method to MultipleHiddenInputAdrian Holovaty
2007-01-10Fixed #3266 -- newforms: Made RadioSelect accept funky characters. Thanks for...Adrian Holovaty
2007-01-09Fixed #3193 -- newforms: Modified as_hidden() to handle MultipleChoiceField c...Adrian Holovaty
2006-12-26newforms: Implemented RadioFieldRenderer.__getitem__(), which allows for inde...Adrian Holovaty
2006-12-24newforms: Removed Widget.requires_data_list parameter, which was made redunda...Adrian Holovaty
2006-12-13Fixed #3114 -- newforms MultipleChoiceField now handles MultiValueDicts prope...Adrian Holovaty
2006-12-05newforms: Added __unicode__() methods wherever there were __str__() methods, ...Adrian Holovaty
2006-11-30newforms: Added check_test argument to CheckboxInput and changed its render()...Adrian Holovaty
2006-11-30Fixed #3082 -- newforms: Changed Form as_table() and as_ul() not to display v...Adrian Holovaty
2006-11-29newforms: Added Widget.value_from_datadict hook, which allows a Widget to def...Adrian Holovaty
2006-11-29newforms: Added docstring to Widget.build_attrs()Adrian Holovaty
2006-11-29newforms: Implemented CheckboxSelectMultipleAdrian Holovaty
2006-11-29newforms: The <input> tags in a RadioSelect now each have a distinct ID. Also...Adrian Holovaty
2006-11-16newforms: Fixed #3008 -- Widgets now support strings containing utf-8 charact...Adrian Holovaty
2006-11-15newforms: Implemented RadioSelect, with unit testsAdrian Holovaty
2006-11-15newforms: Cleaned up some un-DRYness by adding Widget.build_attrs(). Also sli...Adrian Holovaty