RE: Streamed file upload without form from actionscript

2012-02-23 Thread Sells, Fred
Here's some snippets from my code that work. I had to remove a lot that is specific to my organization, so no guarantees... -from xmitzipfile.py-- def processZipfileBuffer(user, buffer): email = create_mail_object()

Streamed file upload without form from actionscript

2012-02-23 Thread chrapo
Hi, I want to upload large image files from actionscript from Flex. The file upload tutorial https://docs.djangoproject.com/en/dev/topics/http/file-uploads/ handles streamed file upload from a form so the file is transformed in request.FILE['name'], but I don't know how to replicate this in action