| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-26 | Fixed #23677 -- Removed contrib.formtools | Tim Graham | |
| 2014-06-09 | Fixed formtools tests with Python 2 | Claude Paroz | |
| Fixes #19905 again. | |||
| 2014-06-06 | Fixed #22772 -- Defer wizard temporary files deletion. | Simon Charette | |
| 2014-05-30 | Fixed #19905 -- Fixed leakage of file descriptors in form wizard. | Florian Apolloner | |
| 2014-05-19 | Fixed #22638 -- Changed CookieWizardView to ignore invalid cookies | Erik Romijn | |
| 2014-04-09 | Used more specific test assertions. | Aymeric Augustin | |
| 2014-04-06 | Fixed #21977 -- Deprecated SimpleTestCase.urls | Anubhav Joshi | |
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-22 | Fixed #22299 -- Cleanup wizard temp files when possible. | Simon Charette | |
| Thanks to @erikr for the review. | |||
| 2014-02-10 | Fixed #21994 -- Added form_dict argument to calls of WizardView.done() | Julian Wachholz | |
| Added an additional keyword argument ``form_dict`` to calls of WizardView.done() implementations which allows easier access to validated forms by their step name. | |||
| 2013-12-05 | Removed 'return' in __init__ | maurycyp | |
| 2013-11-02 | Continue to attack E302 violations | Alex Gaynor | |
| 2013-10-23 | Fixed #21298 -- Fixed E301 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-10-17 | Fixed #21259 -- Fixed formstools wizard for InlineFormSet. | Kathryn Killebrew | |
| 2013-10-17 | Removed importing formtools tests in __init__.py | Tim Graham | |
| Unnecessary since introduction of DiscoveryTestRunner in 9012833af8. | |||
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-08-04 | Fixed a number of lint warnings, particularly around unused variables. | Alex Gaynor | |
| 2013-07-29 | Deprecated django.utils.importlib | Claude Paroz | |
| This was a shim for pre-Python 2.7 support. | |||
| 2013-06-19 | Removed several unused imports. | Aymeric Augustin | |
| 2013-05-17 | Replaced an antiquated pattern. | Aymeric Augustin | |
| Thanks Lennart Regebro for pointing it out. | |||
| 2013-05-09 | Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and ↵ | Luke Plant | |
| 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. | |||
| 2013-04-02 | Modified formtools to work with unittest2 discovery. | Preston Timmons | |
| 2013-03-23 | Added some class attributes to pass initial form lists to the WizardView ↵ | Stephan Jaekel | |
| without the need to add them in the as_view call. | |||
| 2013-03-23 | Fixed #20048, #20060 -- Modified tests for contrib apps sensitive to custom ↵ | Russell Keith-Magee | |
| User models. Thanks to matiasb for the report of #20060 and the draft patch for #20048. | |||
| 2013-02-13 | Fixed #18558 -- Added url property to HttpResponseRedirect* | Hiroki Kiyohara | |
| Thanks coolRR for the report. | |||
| 2013-02-04 | Fixed #17061 -- Factored out importing object from a dotted path | Claude Paroz | |
| Thanks Carl Meyer for the report. | |||
| 2013-01-12 | Fixed #18026 -- Don't return an anonymous dict if extra_data in storage is ↵ | Stephan Jaekel | |
| empty. | |||
| 2012-12-24 | Use new TestCase methods for equality comparisons | Ian Clelland | |
| 2012-12-08 | Fixed #19357 -- Allow non-ASCII chars in filesystem paths | Claude Paroz | |
| Thanks kujiu for the report and Aymeric Augustin for the review. | |||
| 2012-10-31 | Add `form` to formwizard context (includes tests) | Kent Hauser | |
| 2012-09-25 | Fixed #19020 -- Do not depend on dict order in formtools tests | Claude Paroz | |
| Thanks metzen for the report and initial patch, and Łukasz Rekucki for an inspirational patch on his randomhash_fixes branch. | |||
| 2012-08-15 | Ensured that about half of the files opened in the formtools tests were ↵ | Alex Gaynor | |
| explicitly closed. | |||
| 2012-06-07 | Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. | Claude Paroz | |
| Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review. | |||
| 2012-05-25 | Specified when open should use binary mode. | Claude Paroz | |
| Thanks Vinaj Sajip for the help of his django3 branch. | |||
| 2012-05-03 | Replaced deprecated TestCase methods. Refs #17049. | Claude Paroz | |
| 2012-03-30 | Removed with_statement imports, useless in Python >= 2.6. Refs #17965. ↵ | Claude Paroz | |
| Thanks jonash for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17828 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-04 | Fixed #17677 -- Made sure the WizardView doesn't accidentally overwrite the ↵ | Jannis Leidel | |
| `instance` or `queryset` form parameters when they are already set by the `get_form_kwargs` method. Thanks to goodtune and Stephan Jäkel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17651 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2012-03-03 | Fixed #17819 -- Convinced the NamedUrlWizardView to stop dropping files when ↵ | Jannis Leidel | |
| stepping through the forms. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17634 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-12-19 | Fixed #17408 -- Cleaned up some namings in `contrib.formtools`. Thanks, ↵ | Julien Phalip | |
| Stephan Jaekel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17236 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-12-19 | Fixed #17151 -- Renamed `wizard_prev_step` to the clearer `wizard_goto_step` ↵ | Julien Phalip | |
| in `NamedUrlWizardView`. Thanks, Bradley Ayers and Stephan Jaekel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17233 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-12-19 | Fixed #17150 -- Made `NamedUrlWizardView.url_name` available in the template ↵ | Julien Phalip | |
| context. Thanks to Bradley Ayers for the suggestion and to Stephan Jaekel for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17232 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-12-19 | Fixed #17148 -- Fixed the signature of `WizardView.get_context_data()` to ↵ | Julien Phalip | |
| play nicer with mixin inheritance. Thanks, Bradley Ayers and Stephan Jaekel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17231 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-11-13 | Refs #17215: Avoid generating 47 leftover tmp dirs during a clean test run. | Karen Tracey | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@17094 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-09-11 | Fixed #14675 -- Completed removal of `from django.conf.urls.default import ↵ | Ramiro Morales | |
| *` usage. This applies to both our own [test] code and documentation examples. Also: * Moved the functions and handlers from `django.conf.urls.defaults` up to `django.conf.urls` deprecating the former module. * Added documentation for `handler403`. * Tweaked the URLs topic document a bit. Thanks to pupeno and cdestigter for their great work contributing patches. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16818 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2011-08-13 | Fixed #6644 -- Fixed django.contrib.formtools tests to be better isolated ↵ | Jannis Leidel | |
| when running outside of the Django test suite. Also moved around the new wizard's templates a bit to better fit the common app layout. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16616 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
