Ivan Sagalaev wrote:
> The regular HttpResponse already can serve files in some fashion:
>
>     f = open(filename)
>     return HttpResponse(f, mimetype='application/octet-stream')
>
> Here the file-like object will work as an iterator sending one line  at
> a time.

Thanks Ivan, this alleviates my concern of not having a
HttpReponseSendFile :)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@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-developers
-~----------~----~----~----~------~----~------~--~---

Reply via email to