From b1dbff729fa11be2a02461e5fec9ba0eb1c2ffe6 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 17 Mar 2008 15:53:01 +0000 Subject: [PATCH] Added parse_params() hook to FormWizard git-svn-id: http://code.djangoproject.com/svn/django/trunk@7263 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/formtools/wizard.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/django/contrib/formtools/wizard.py b/django/contrib/formtools/wizard.py index 4fc7f885012..ee6d89adaec 100644 --- a/django/contrib/formtools/wizard.py +++ b/django/contrib/formtools/wizard.py @@ -49,6 +49,7 @@ class FormWizard(object): if 'extra_context' in kwargs: self.extra_context.update(kwargs['extra_context']) current_step = self.determine_step(request, *args, **kwargs) + self.parse_params(request, *args, **kwargs) # Sanity check. if current_step >= self.num_steps(): @@ -167,6 +168,15 @@ class FormWizard(object): return 0 return step + def parse_params(self, request, *args, **kwargs): + """ + Hook for setting some state, given the request object and whatever + *args and **kwargs were passed to __call__(), sets some state. + + This is called at the beginning of __call__(). + """ + pass + def get_template(self, step): """ Hook for specifying the name of the template to use for a given step.