summaryrefslogtreecommitdiff
path: root/django/newforms/forms.py
AgeCommit message (Expand)Author
2007-06-23Fixed #4527 -- Changed the way errors are displayed in Form.as_p() to avoidMalcolm Tredinnick
2007-05-26Fixed #3718 -- Exposed form errors to cleaning methods as soon as they areMalcolm Tredinnick
2007-05-26Fixed #4297 -- Made form errors available to sub-classes. Thanks, Gary Wilson.Malcolm Tredinnick
2007-05-26Fixed #4390, #4385 -- Made it clear that cleaned_data wasn't being assigned toMalcolm Tredinnick
2007-05-16Fixed #4318 -- Fixed unused imports and other various style tweaks in newform...Adrian Holovaty
2007-05-14Changed the fix from [5231] so that the backwards-incompatibility is made moreMalcolm Tredinnick
2007-05-14Renamed form-specific cleaning methods to be do_clean_*, rather than clean_*.Malcolm Tredinnick
2007-05-12Fixed #4018 -- Added code to allow callables as initial data in newforms. Tha...Russell Keith-Magee
2007-04-27Fixed #3698 -- Modified newforms labels to only add a colon if the label text...Russell Keith-Magee
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-04Cleaned up [4924]. Sorry; wasn't concentrating enough.Malcolm Tredinnick
2007-04-04Fixed #3597 -- Fixed unicode encoding problem in form rendering. Thanks,Malcolm Tredinnick
2007-04-04Moved smart_unicode and StrAndUnicode to django.utils.encoding. They are usefulMalcolm Tredinnick
2007-02-19Fixed #3510 -- newforms validation errors are now HTML-escaped for HTML outpu...Adrian Holovaty
2007-02-15Fixed #3506 -- Changed newforms BoundField.help_text to an empty string if No...Adrian Holovaty
2007-02-15Fixed #3456 -- Made it easier/more intuitive to render newforms help_text in ...Adrian Holovaty
2007-02-15Added empty space in newforms BaseForm.__init__() to visually group a lengthy...Adrian Holovaty
2007-02-14Implemented subclassing Forms in newformsAdrian Holovaty
2007-02-13Fixed #3489 -- Changed newforms to use copy.copy() in constructing self.field...Adrian Holovaty
2007-01-28Fixed #3255 -- Added help_text argument to newforms Field class.Adrian Holovaty
2007-01-27Fixed #3334 -- Changed newforms Form class construction so that appending to ...Adrian Holovaty
2007-01-20newforms: Moved flatatt function from widgets.py to util.pyAdrian Holovaty
2007-01-20newforms: Added attrs optional argument to BoundForm.label_tag()Adrian Holovaty
2007-01-10Fixed #3278 -- newforms: Fixed bug in DeclarativeFieldsMetaclass where it ina...Adrian Holovaty
2007-01-09Fixed #3193 -- newforms: Modified as_hidden() to handle MultipleChoiceField c...Adrian Holovaty
2007-01-09newforms: Added 'initial' parameter to Form, which lets initial data be speci...Adrian Holovaty
2007-01-09newforms: Fixed Unicode issue on Python 2.3 when a BoundField's __unicode__()...Adrian Holovaty
2007-01-05newforms: Changed Form.ignore_errors to Form.is_bound, which is more descript...Adrian Holovaty
2007-01-04newforms: Changed Form so that clean_data only exists if a Form is valid. Tha...Adrian Holovaty
2006-12-28newforms: Added 'initial' parameter to Field. This allows you to specify init...Adrian Holovaty
2006-12-26newforms: A label can now be the empty string, in which case a label won't be...Adrian Holovaty
2006-12-26newforms: Changed Form.as_table() to display errors in same <td> as the fieldAdrian Holovaty
2006-12-24newforms: Removed Widget.requires_data_list parameter, which was made redunda...Adrian Holovaty
2006-12-17newforms: Added BaseForm to django.newforms namespaceAdrian Holovaty
2006-12-15newforms: Split the Form class into BaseForm and Form. The former has all the...Adrian Holovaty
2006-12-13Fixed #3139 -- newforms BoundField no longer returns empty errors when using ...Adrian Holovaty
2006-12-13Fixed #3112 -- Changed newforms Form.as_table() to use <th> instead of <td> f...Adrian Holovaty
2006-12-13Fixed #3114 -- newforms MultipleChoiceField now handles MultiValueDicts prope...Adrian Holovaty
2006-12-12Fixed #3132 -- Added prefix support for newforms. Thanks, jkocherhansAdrian Holovaty
2006-12-11newforms: Changed Form to use auto_id by defaultAdrian Holovaty
2006-12-08Fixed #3102 -- newforms: Fields can now designate their human-friendly labels...Adrian Holovaty
2006-12-07newforms: Changed Form._html_output() to use dictionary-style format strings ...Adrian Holovaty
2006-12-07newforms: Abstracted common code in Form as_table(), as_ul() and as_p() into ...Adrian Holovaty
2006-12-07Fixed #3107 -- newforms: Added Form.as_p()Adrian Holovaty
2006-12-07newforms: Form.as_ul() no longer puts hidden fields between <li>s. Similar to...Adrian Holovaty
2006-12-07newforms: Same fix as [4174], except for Form.as_table()Adrian Holovaty
2006-12-07Fixed #3101 -- newforms: Form.as_table() no longer puts hidden fields between...Adrian Holovaty
2006-12-07newforms: Small potential bugfix in Form.as_ul() -- called unicode() on Bound...Adrian Holovaty
2006-12-07newforms: Changed Table.as_table() and Table.as_ul() to put hidden-form error...Adrian Holovaty
2006-12-07newforms: Simplified BoundField._errors()Adrian Holovaty