summaryrefslogtreecommitdiff
path: root/tests/regressiontests
AgeCommit message (Expand)Author
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-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
2007-01-03Fixes #3176, #3004 -- Added an argument to the floatfilter to allow users to ...Russell Keith-Magee
2007-01-03Fixes #3217 -- Added regression tests for options on the Admin metaclass. Inc...Russell Keith-Magee
2007-01-03Fixed problem with SelectDateWidget test caused by 2006/2007 year rollover. T...Russell Keith-Magee
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-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-26newforms: Implemented RadioFieldRenderer.__getitem__(), which allows for inde...Adrian Holovaty
2006-12-24newforms: Added django.newforms.extras.widgets, with SelectDateWidget impleme...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-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-08newforms: Added Field.widget_attrs() hook, which lets a Field designate HTML ...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-07Fixed #3101 -- newforms: Form.as_table() no longer puts hidden fields between...Adrian Holovaty
2006-12-07newforms: Changed Table.as_table() and Table.as_ul() to put hidden-form error...Adrian Holovaty
2006-12-05Template system now supports variables whose str() returns a Unicode object w...Adrian Holovaty
2006-11-30newforms: Added check_test argument to CheckboxInput and changed its render()...Adrian Holovaty
2006-11-30newforms: Added some more documentation to unit testsAdrian 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-29newforms: Implemented CheckboxSelectMultipleAdrian 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-28newforms: Changed Form unit tests to use f.clean_data rather than f.clean(), ...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-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: 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-26Fixed #3065 -- newforms: Fixed rendering problem with RadioSelect as a member...Adrian Holovaty
2006-11-23newforms: Added unit test to test field order. Refs #3054Adrian Holovaty
2006-11-16newforms: Fixed #3008 -- Widgets now support strings containing utf-8 charact...Adrian Holovaty
2006-11-16newforms: Fixed #3027 -- Changed Form as_table(), as_ul(), as_table_with_erro...Adrian Holovaty
2006-11-15newforms: Added unit test showing it's possible to construct the fields in a ...Adrian Holovaty