summaryrefslogtreecommitdiff
path: root/django/newforms/forms.py
AgeCommit message (Expand)Author
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
2006-12-05newforms: Added __unicode__() methods wherever there were __str__() methods, ...Adrian Holovaty
2006-12-05newforms: Changed BoundField form, field and name attributes to remove leadin...Adrian Holovaty
2006-11-30Fixed #3082 -- newforms: Changed Form as_table() and as_ul() not to display v...Adrian Holovaty
2006-11-30newforms: Added BoundField.as_hidden()Adrian Holovaty
2006-11-29newforms: Added BoundField.data propertyAdrian Holovaty
2006-11-29newforms: Added Widget.value_from_datadict hook, which allows a Widget to def...Adrian Holovaty
2006-11-29Fixed #3078 -- newforms: Added HTML escaping to label_tag() calls. Thanks, Sm...Adrian Holovaty
2006-11-29newforms: The <input> tags in a RadioSelect now each have a distinct ID. Also...Adrian Holovaty
2006-11-29Fixed #3064 -- newforms: Added <label> support through BoundField.label_tag()...Adrian Holovaty
2006-11-27newforms: Small short-circuit optimization to BoundField.as_widget()Adrian Holovaty
2006-11-27newforms: Normalized all error <ul>s to use class='errorlist'Adrian Holovaty
2006-11-27newforms: Added Form.non_field_errors() and added more examples/documentation...Adrian Holovaty
2006-11-27newforms: Added BoundField.label, which calculates the label of the field bas...Adrian Holovaty
2006-11-27Fixed #3026 -- newforms: Form class now suppresses validation and errors if n...Adrian Holovaty
2006-11-27newforms: Changed Form.errors to be a property rather than a function. Refs #...Adrian Holovaty
2006-11-27newforms: Removed redundant declaration of Form.clean(). Thanks, SmileyChris....Adrian Holovaty
2006-11-26Fixed #3065 -- newforms: Fixed rendering problem with RadioSelect as a member...Adrian Holovaty
2006-11-23Fixed #3054 -- newforms Form now keeps track of field orderAdrian Holovaty
2006-11-16newforms: Fixed #3027 -- Changed Form as_table(), as_ul(), as_table_with_erro...Adrian Holovaty
2006-11-15Fixed #3025 -- Added auto_id option to Form.__init__(). Thanks, SmileyChrisAdrian Holovaty
2006-11-04django.newforms: Implemented hook for validation not tied to a particular fie...Adrian Holovaty
2006-10-28Split django.newforms into forms, fields, widgets, util. Also moved unit test...Adrian Holovaty