The django-uploadify app allows bulk file uploads and for each
uploaded file, it fires a signal and passes the uploaded file data to
the receiver.  The author's example marks all the uploaded files with
a boolean (new_upload=True) and then returns a list of  files where
new_upload=True to the user.  If more than one user is uploading files
at the same time, they could get a list of files from other users.  I
would like to pass a user ID or some sort of session ID to the signal
receiver along with the file data so that it can be inserted into the
ORM along with the file data.  Does anyone know how I can do this?
Thanks
Mike
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to