On Apr 16, 1:36 am, Rick Wagner <rwag...@physics.ucsd.edu> wrote:
> > From memory, file wrappers at django level, in order to work across
> > different hosting mechanisms supported, only allow a file name to be
> > supplied. At the WSGI level the file wrapper actually takes a file
> > like object. If you were doing this in raw WSGI, you could run your
> > tar ball creation as a separately exec'd pipeline and rather than
> > create a file in the file system, have tar output to the pipeline,
> > ie., use '-' instead of filename. The file object resulting from the
> > pipeline could then be used as input to the WSGI file wrapper object.
>
> > So, if this operation isn't somehow bound into needing Django itself,
> > and this is important to you, maybe you should create a separate
> > little WSGI application just for this purpose.
>
> > Actually, even if bound into needing Django you may still be able to
> > do it. Usingmod_wsgi, you could even delegate the special WSGI
> > application to run in same process as Django and mount it at a URL
> > which appears within Django application. Because though you are side
> > stepping Django dispatch, you couldn't though have it be protected by
> > Django based form authentication.
>
> > Graham
>
> Hi,
>
> First, the FileWrapper class in django.core.servers.basehttp.py
> accepts file-like objects,

Okay, then I am confusing it with changes proposed as part of a ticket
which would allow a way of sending back a file response using
optimised methods provided by hosting mechanism. For WSGI this is
wsgi.file_wrapper, but for mod_python the sendfile() function only
takes a file name. As such, the high level interface for that way of
returning a file could only take a file name and not a file like
object.

The ticket is:

  http://code.djangoproject.com/ticket/2131

Graham

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