Got file uploading to work.

The dpaste views.py lines...

file_instance.originalfile = cleaned_form_data['originalfile']
file_instance.save()

...can be replaced with the line...

file_instance.save_originalfile_file( 
cleaned_form_data['originalfile'].filename,
cleaned_form_data['originalfile'].content )

(Useful reference: 
http://www.djangoproject.com/documentation/db-api/#save-foo-file-filename-raw-contents)

There are a few other things that can be improved with this minimalist
example; I'll post other improvements here and eventually submit a
complete simple newforms upload example to djangosnippets.org.

/birkin
--~--~---------~--~----~------------~-------~--~----~
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