summaryrefslogtreecommitdiff
path: root/django/contrib/formtools/wizard
AgeCommit message (Collapse)Author
2014-11-26Fixed #23677 -- Removed contrib.formtoolsTim Graham
2014-08-19Removed unnecessary code-block directives.areski
2014-06-06Fixed #22772 -- Defer wizard temporary files deletion.Simon Charette
2014-05-30Fixed #19905 -- Fixed leakage of file descriptors in form wizard.Florian Apolloner
2014-05-28Fixed several typos in DjangoAlex Gaynor
2014-05-19Fixed #22638 -- Changed CookieWizardView to ignore invalid cookiesErik Romijn
2014-04-03Fixed #22372 -- Improved description of WizardView.get_context_data().Vishal Lal
Thanks simon29 for the report.
2014-03-22Fixed #22299 -- Cleanup wizard temp files when possible.Simon Charette
Thanks to @erikr for the review.
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
Thanks Piotr Kasprzyk for help with the patch.
2014-02-10Fixed #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.
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of ↵Berker Peksag
import_string(). Thanks Aymeric Augustin for the suggestion and review.
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-11-02Continue to attack E302 violationsAlex Gaynor
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-10-17Fixed #21259 -- Fixed formstools wizard for InlineFormSet.Kathryn Killebrew
2013-09-30* Fixing improper grammarAdam Haney
2013-08-04Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney
Thanks Loic Bistuer for the review.
2013-07-27Fixed a number of minor misspellings.Julien Phalip
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵Loic Bistuer
fields
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
2013-03-23Merge pull request #942 from stephrdev/trac-18000Jannis Leidel
Fixed #18000 -- Moved the code to handle goto requests to an extra WizardView method.
2013-03-23Added 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-23Moved the code to handle goto requests in a extra WizardView method.Stephan Jaekel
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
Thanks Carl Meyer for the report.
2013-01-12Fixed #18026 -- Don't return an anonymous dict if extra_data in storage is ↵Stephan Jaekel
empty.
2012-12-29Removed the legacy form wizard.Aymeric Augustin
2012-11-17Merge pull request #466 from kenthauser/ticket_19025Jannis Leidel
#19025 Add `form` to formwizard context (includes tests)
2012-11-01Added WizardView.file_storage exception message and docsTim Graham
Thanks Danilo Bargen for the patch.
2012-10-31Add `form` to formwizard context (includes tests)Kent Hauser
2012-08-13[py3] Fixed contrib.formtools testsClaude Paroz
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
* Renamed smart_unicode to smart_text (but kept the old name under Python 2 for backwards compatibility). * Renamed smart_str to smart_bytes. * Re-introduced smart_str as an alias for smart_text under Python 3 and smart_bytes under Python 2 (which is backwards compatible). Thus smart_str always returns a str objects. * Used the new smart_str in a few places where both Python 2 and 3 want a str.
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-06-22Corrected the `instance_dict` description for form wizards.Florian Apolloner
2012-05-03Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin
Thanks Ramiro for the patch.
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
Thanks Clueless for the initial patch. Note that unittest has been purposely left out (external package only used by Python 2.6).
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
2012-03-04Fixed #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-03Fixed #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-19Fixed #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-19Fixed #17163 -- Added the `NamedUrlWizardView.get_step_url()` method. ↵Julien Phalip
Thanks, Bradley Ayers. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17235 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-19Fixed #17162 -- Removed the useless `WizardView.get_wizard_name()` method. ↵Julien Phalip
Thanks, Bradley Ayers and Stephan Jaekel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17234 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-19Fixed #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-19Fixed #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-19Fixed #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-10-19Fixed #16393 -- FormWizard's cookie storage backend now works with all ↵Alex Gaynor
versions of simplejson and the standard library json module. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-09-26Fixed #16597 -- Added Sphinx cross-reference metadata to the form wizard ↵Ramiro Morales
docs. Thanks FunkyBob for the report and jkistler for the patch. Also, additional fixes in that document and in the WizardView docstrings. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16904 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-08-13Fixed #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