Hi,

> > Take a look at how Form Preview works. You should be able to adapt
> > that to your above workflow:
> >http://www.djangoproject.com/documentation/form_preview/
>
> Thanks , that looks exactly like what I need!
> I do not think however it is possible to use it with uploads as
> django/contrib/formtools/preview.py does not seem to bind the upload
> file to the form :

Right and for a good reason. The second stage of the preview form
renders all of the submitted form fields as hidden fields. To render a
large file upload field like that would cause problems in the user's
browser (that hidden field could potentially have a very very large
base64 encoded string etc.)

>
>     def preview_post(self, request):
>         "Validates the POST data. If valid, displays the preview page.
> Else, redisplays form."
>         f = self.form(request.POST, auto_id=AUTO_ID)
>
> so validation always fails.
> There is also a warning in this file that preview_post is a METHOD
> SUBCLASSES SHOULDN'T OVERRIDE.
> Any idea why not and what to watch out for if I do

I am not sure but may be that method name is not guaranteed to remain
the same?

You might want to consider just creating a copy of the form preview
application for your custom use. Here's one way to handle file
uploads. When the file is upload in the first stage, save it in a
temporary location (the new Upload File handlers let you do this quite
easily.) Incorporate the filename and filesize into your custom hash
and render the filename in a hidden field (instead of the file's
contents.) The rest should follow from that.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to