Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/model_forms
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+1
|
* Fixed all the E203 violationsAlex Gaynor2013-10-271-3/+3
|
* Fix all violators of E231Alex Gaynor2013-10-261-1/+1
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-232-0/+4
|
* Fixed E225 pep8 warnings.Tim Graham2013-10-231-1/+1
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-65/+65
|
* Removed unused local variables in tests.Tim Graham2013-10-191-7/+7
|
* Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol2013-10-181-9/+9
|
* Fixed #21268 -- Fixed E303 pep8 warningsAlasdair Nicol2013-10-181-4/+0
|
* Merge pull request #1382 from loic/ticket19617Marc Tamlyn2013-10-151-0/+36
|\ | | | | Fixed #19617 -- Refactored form metaclasses to support more inheritance scenarios.
| * Fixed #8620 -- Updated the Form metaclass to support ↵Loic Bistuer2013-10-141-0/+23
| | | | | | | | excluding fields by shadowing them.
| * Fixed #19617 -- Refactored Form metaclasses to support ↵Loic Bistuer2013-10-141-0/+13
| | | | | | | | | | | | more inheritance scenarios. Thanks apollo13, funkybob and mjtamlyn for the reviews.
* | Fixed #21266 -- Fixed E201,E202 pep8 warnings.Larry O'Neill2013-10-151-1/+1
|/
* Fixed #21041 -- Removed a duplicate form in tests.Tim Graham2013-09-051-6/+0
| | | | Thanks tuxcanfly.
* Fixed "indentation is not a multiple of four" pep8 issues.Tim Graham2013-09-031-8/+8
|
* Fixed #16986 -- Model.clean() can report errors on ↵Loic Bistuer2013-08-052-1/+13
| | | | | | | | | individual fields. This commit provides the tests for this issue but the actual problem was solved by the ValidationError refactor in f34cfec and ee77d4b. Refs #20199.
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Fixed a couple form/formset deprecation warnings in tests.Tim Graham2013-07-011-0/+2
|
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+1
| | | | Refs #20680.
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-2/+2
|
* Fixed #20199 -- Allow ModelForm fields to override ↵Loic Bistuer2013-06-182-1/+29
| | | | error_messages from model fields
* Fixed #20548 -- Removed all PendingDeprecationWarnings ↵Marc Tamlyn2013-06-141-1/+4
| | | | from django test suite
* Fixed #20000 -- Allowed ModelForm meta overrides for ↵Loic Bistuer2013-06-131-10/+59
| | | | label, help_text and error_messages
* Revert "Began implementing a shared set of test models ↵Florian Apolloner2013-06-102-52/+64
| | | | | | to speed up tests." This reverts commit 22b7870e40a3ecf022b423de6cd867dcb35a6940.
* Fixed #20228 - Documented unique_for_date and exclude ↵Tim Graham2013-05-282-2/+35
| | | | | | behavior. Thanks Deepak Thukral for the patch.
* Made fix for #9321 less buggy and more effective.Ramiro Morales2013-05-232-1/+38
| | | | | | | | | | | | | 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.
* Use assertIsInstance in tests.Marc Tamlyn2013-05-211-6/+6
| | | | Gives much nicer errors when it fails.
* Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley2013-05-151-9/+3
| | | | This starts the deprecation period for PIL (support to end in 1.8).
* Fixed #19733 - deprecated ModelForms without 'fields' or ↵Luke Plant2013-05-091-12/+99
| | | | | | | | 'exclude', and added '__all__' shortcut This also updates all dependent functionality, including modelform_factory and modelformset_factory, and the generic views `ModelFormMixin`, `CreateView` and `UpdateView` which gain a new `fields` attribute.
* Fix #15126: Better error message when passing invalid ↵Baptiste Mispelon2013-04-071-0/+34
| | | | options to ModelForm.Meta.
* Began implementing a shared set of test models to speed ↵Florian Apolloner2013-03-132-64/+51
| | | | up tests.
* Merged regressiontests and modeltests into the test root.Florian Apolloner2013-02-265-0/+1834