| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixed various tests on MySQL with MyISAM storage engine. | Mariusz Felisiak | 2022-04-18 | 1 | -0/+3 |
| | | |||||
| * | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -63/+84 |
| | | |||||
| * | Fixed #33084 -- Removed incorrect system check for ManyToManyField with ↵ | Hasan Ramezani | 2021-09-09 | 1 | -0/+17 |
| | | | | | limit_choices_to. | ||||
| * | Fixed #1891, Fixed #11707 -- Prevented duplicates with limit_choices_to on ↵ | alvinshaita | 2020-10-27 | 1 | -2/+7 |
| | | | | | multi-value relations. | ||||
| * | Refs #28009 -- Added empty_value tests for CharField subclasses. | David Smith | 2020-09-25 | 1 | -0/+3 |
| | | |||||
| * | Fixed #31596 -- Changed ForeignKey.validate() to use the base manager. | Jon Dufresne | 2020-06-25 | 1 | -0/+9 |
| | | |||||
| * | Fixed #26813 -- Prevented empty choice in ModelChoiceField with RadioSelect ↵ | Hasan Ramezani | 2020-02-05 | 1 | -0/+3 |
| | | | | | for fields with blank=False. | ||||
| * | Followed style guide for model attribute ordering. | Matt Wiens | 2018-12-27 | 1 | -3/+3 |
| | | |||||
| * | Moved choices inside of test models per coding style. | Manan | 2018-12-10 | 1 | -12/+10 |
| | | |||||
| * | Eliminated the need to modify a model forms test when new test files are added. | Tim Graham | 2018-02-28 | 1 | -1/+1 |
| | | |||||
| * | Fixed #28242 -- Moved ImageField file extension validation to the form field. | Manatsawin Hanmongkolchai | 2017-06-01 | 1 | -0/+11 |
| | | |||||
| * | Removed obsolete references to form_for_instance(). | Tim Graham | 2017-02-28 | 1 | -8/+0 |
| | | |||||
| * | Refs #23919 -- Used yield from. | Vytis Banaitis | 2017-02-23 | 1 | -2/+1 |
| | | |||||
| * | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | 2017-01-25 | 1 | -6/+6 |
| | | |||||
| * | Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage. | Tim Graham | 2017-01-20 | 1 | -2/+1 |
| | | | | These functions do nothing on Python 3. | ||||
| * | Refs #23919 -- Removed most of remaining six usage | Claude Paroz | 2017-01-18 | 1 | -1/+0 |
| | | | | | Thanks Tim Graham for the review. | ||||
| * | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | 2017-01-18 | 1 | -2/+1 |
| | | | | | Thanks Tim Graham and Simon Charette for the reviews. | ||||
| * | Refs #23919 -- Removed python_2_unicode_compatible decorator usage | Claude Paroz | 2017-01-18 | 1 | -17/+0 |
| | | |||||
| * | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | 2017-01-18 | 1 | -2/+0 |
| | | |||||
| * | Refs #26154 -- Removed deprecated CommaSeparatedIntegerField. | Tim Graham | 2017-01-17 | 1 | -8/+0 |
| | | |||||
| * | Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵ | Tim Graham | 2016-09-22 | 1 | -0/+2 |
| | | | | | | | FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review. | ||||
| * | Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6. | Tim Graham | 2016-09-17 | 1 | -1/+1 |
| | | | | | http://bugs.python.org/issue27364 | ||||
| * | Refs #25415 -- Fixed invalid models in the test suite. | Adam Chainz | 2016-09-09 | 1 | -1/+1 |
| | | |||||
| * | Fixed #27039 -- Fixed empty data fallback to model field default in model forms. | Tim Graham | 2016-08-24 | 1 | -0/+1 |
| | | |||||
| * | Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL. | Jon Dufresne | 2016-06-13 | 1 | -0/+4 |
| | | | | | Previously, empty values were saved as strings. | ||||
| * | Fixed E128 flake8 warnings in tests/. | Tim Graham | 2016-04-08 | 1 | -5/+8 |
| | | |||||
| * | Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, ↵ | haxoza | 2016-02-19 | 1 | -0/+6 |
| | | | | | required=False. | ||||
| * | Fixed #24706 -- Made ModelForm._post_clean() handle a ValidationError raised ↵ | Keryn Knight | 2015-09-07 | 1 | -0/+21 |
| | | | | | | | when constructing the model instance. Thanks Loïc Bistuer for review and advice. | ||||
| * | Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ↵ | Tim Graham | 2015-08-07 | 1 | -0/+6 |
| | | | | | form with UUIDField pk. | ||||
| * | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | 2015-07-27 | 1 | -10/+15 |
| | | | | | ForeignKey/OneToOneField | ||||
| * | Fixed #24428 -- Fixed has_changed for fields with coercion | Claude Paroz | 2015-03-05 | 1 | -0/+17 |
| | | | | | Thanks Carsten Fuchs for the report. | ||||
| * | Guaranteed removal of temporary files during tests. | Aymeric Augustin | 2015-02-23 | 1 | -1/+1 |
| | | | | | | | | Dropped the DJANGO_TEST_TEMP_DIR environment variable. Before this change, proper removal depended on the developer passing dir=os.environ['DJANGO_TEST_TMP_DIR'] to tempfile functions. | ||||
| * | Sorted imports with isort; refs #23860. | Tim Graham | 2015-02-06 | 1 | -2/+1 |
| | | |||||
| * | Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range | Michael Hall | 2014-12-13 | 1 | -1/+2 |
| | | |||||
| * | Fixed #23865 -- documented how to assign errors to a field in Model.clean() | Alasdair Nicol | 2014-11-21 | 1 | -0/+2 |
| | | | | | | Also added a unit test wit the simpler syntax which we have documented, where the dictionary values are strings. | ||||
| * | Fixed #22979 -- Moved bug* tests | Tushar Bhatia | 2014-07-26 | 1 | -0/+16 |
| | | |||||
| * | Fixed #13776 -- Fixed ModelForm.is_valid() exception with non-nullable FK ↵ | Anubhav Joshi | 2014-06-04 | 1 | -0/+6 |
| | | | | | | | and blank=True. Thanks peterbe for the report. | ||||
| * | Removed hard-coded help_text for ManyToManyFields that use a SelectMultiple ↵ | Tim Graham | 2014-03-21 | 1 | -5/+0 |
| | | | | | | | widget Per deprecation timeline; refs #9321. | ||||
| * | Removed PIL compatability layer per deprecation timeline. | Tim Graham | 2014-03-21 | 1 | -3/+3 |
| | | | | | refs #19934. | ||||
| * | Merged model_forms_regress with model_forms tests | Claude Paroz | 2014-03-14 | 1 | -0/+59 |
| | | |||||
| * | Fixed #6103 -- Splitted tests in model_forms tests | Claude Paroz | 2014-03-14 | 1 | -2/+2 |
| | | |||||
| * | Fixed #2445 -- Allowed limit_choices_to attribute to be a callable. | Christopher Adams | 2014-02-11 | 1 | -1/+19 |
| | | | | | | | | ForeignKey or ManyToManyField attribute ``limit_choices_to`` can now be a callable that returns either a ``Q`` object or a dict. Thanks michael at actrix.gen.nz for the original suggestion. | ||||
| * | PEP8 cleanup | Jason Myers | 2013-11-02 | 1 | -0/+28 |
| | | | | | Signed-off-by: Jason Myers <jason@jasonamyers.com> | ||||
| * | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | 2013-11-02 | 1 | -1/+1 |
| | | |||||
| * | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | 2013-10-23 | 1 | -0/+1 |
| | | |||||
| * | Fixed #16986 -- Model.clean() can report errors on individual fields. | Loic Bistuer | 2013-08-06 | 1 | -1/+5 |
| | | | | | | | | This commit provides the tests for this issue but the actual problem was solved by the ValidationError refactor in f34cfec and ee77d4b. Refs #20199. | ||||
| * | Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵ | Loic Bistuer | 2013-06-18 | 1 | -0/+10 |
| | | | | | fields | ||||
| * | Revert "Began implementing a shared set of test models to speed up tests." | Florian Apolloner | 2013-06-10 | 1 | -5/+22 |
| | | | | | This reverts commit 22b7870e40a3ecf022b423de6cd867dcb35a6940. | ||||
| * | Fixed #20228 - Documented unique_for_date and exclude behavior. | Tim Graham | 2013-05-28 | 1 | -1/+11 |
| | | | | | Thanks Deepak Thukral for the patch. | ||||
| * | Made fix for #9321 less buggy and more effective. | Ramiro Morales | 2013-05-23 | 1 | -0/+4 |
| | | | | | | | | | | | | | | Don't try to be smart about building a good-looking help string because it evaluates translations too early, simply use the same old strategy as before. Thanks Donald Stufft for the report. Also, actually fix the case reported by the OP by special-casing CheckboxSelectMultiple. Added tests. Refs #9321. | ||||
