summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2007-02-10Fixed #3463 -- EmptyQuerySet's iterator() now returns a generator. Thanks, Ga...Adrian Holovaty
2007-02-10Improved runtests.py to normalize MIDDLEWARE_CLASSES during test execution. S...Adrian Holovaty
2007-02-10Fixed #2348 -- Improved error reporting when query filter arguments areMalcolm Tredinnick
2007-02-10Fixed #2027 -- added truncatewords_html filter that respects HTML tags whilstMalcolm Tredinnick
2007-02-09Fixed #3449 -- fixed regression test results so that they all pass now. ThanksMalcolm Tredinnick
2007-02-09Added a ``session`` attribute to the test Client, to make it easier to test i...Russell Keith-Magee
2007-01-29Fixed Python 2.4-ism in modeltests/test_client. Thanks for the find, Robert ...Jacob Kaplan-Moss
2007-01-29Fixed #3389 -- Many-to-many sets can now be assigned with primary key valuesAdrian Holovaty
2007-01-28newforms: Changed database Field formfield() methods to pass help_text to the...Adrian Holovaty
2007-01-28Fixed #3255 -- Added help_text argument to newforms Field class.Adrian Holovaty
2007-01-28Fixed #3263 -- newforms form_for_model() and form_for_instance() now handle f...Adrian Holovaty
2007-01-27newforms: Added a unit test that tests dynamic field addition with base field...Adrian Holovaty
2007-01-27Fixed #3334 -- Changed newforms Form class construction so that appending to ...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-27Fixed a flaw in the serializers that prevented OneToOneFields being serialize...Russell Keith-Magee
2007-01-25Fixed #3098 -- Added db_table parameter to m2m fields, allowing the specifica...Russell Keith-Magee
2007-01-25Fixed #3215, #3081, #2749 -- Fixed problem with mistaken deletion of objects ...Russell Keith-Magee
2007-01-24newforms: Implemented NullBooleanField and NullBooleanSelectAdrian Holovaty
2007-01-23newforms: Added MultiValueField, SplitDateTimeField, MultiWidget, SplitDateTi...Adrian Holovaty
2007-01-23Fixed #3283 -- Added support for empty QuerySets via none() method. Thanks fo...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-20newforms: Added attrs optional argument to BoundForm.label_tag()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-13Fixed #3289 -- newforms: Added value_from_datadict method to MultipleHiddenInputAdrian Holovaty
2007-01-13newforms: Added unit tests for MultipleHiddenInputAdrian Holovaty
2007-01-11newforms: Added unit tests and docs explaining that clean_data will only ever...Adrian Holovaty
2007-01-10Fixed #3267 -- newforms: Changed database TextField to render as Textarea in ...Adrian Holovaty
2007-01-10Fixed #3266 -- newforms: Made RadioSelect accept funky characters. Thanks for...Adrian Holovaty
2007-01-10Fixed #3278 -- newforms: Fixed bug in DeclarativeFieldsMetaclass where it ina...Adrian Holovaty
2007-01-09Fixed #3232 -- newforms: Added save_instance(), which saves a given bound for...Adrian Holovaty
2007-01-09newforms: Changed model auto-Form generation so that create() and apply_chang...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-08Fixed #3252 -- Fixed bugs in model_forms unit tests, related to recent newfor...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-04Fixed #2473 -- Added special case for '__in=[]' (empty set) queries, because ...Russell Keith-Magee
2007-01-03Fixed #2756 -- Modified the get_object_or_404/get_list_or_404 shortcuts to ac...Russell Keith-Magee
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-30Updated docstring in model_forms unit testAdrian Holovaty
2006-12-30newforms: Got form_for_instance() to select initial ManyToManyField values pr...Adrian Holovaty
2006-12-28newforms: Implemented apply_changes() method for form_for_instance FormsAdrian Holovaty
2006-12-28newforms: Implemented form_for_instance(). The resulting Form class does not ...Adrian Holovaty
2006-12-28newforms: Added 'initial' parameter to Field. This allows you to specify init...Adrian Holovaty
2006-12-27newforms: Implemented formfield() for database ForeignKey class and added uni...Adrian Holovaty