[Zope] Serve large files efficiently from a pipe

2005-11-08 Thread Roman Suzi
dynamically generated content... Does Zope has anything for this? Thank you for any ideas on this topic! Sincerely yours, Roman Suzi -- [EMAIL PROTECTED] =\= My AI powered by GNU/Linux RedHat 7.3 ___ Zope maillist - Zope@zope.org http://mail.zope.org/mailman

Re: [Zope] Serve large files efficiently from a pipe

2005-11-08 Thread Roman Suzi
On Tue, 8 Nov 2005, Tino Wildenhain wrote: Roman Suzi schrieb: Hi! Newer Zope versions have an interesting ability to serve large files efficiently given the file name ( http://plope.com/Members/chrism/ploneconf2004/2004pres.txt ). What about serving large files given file(-like) handler

Re: [Zope] Serve large files efficiently from a pipe

2005-11-08 Thread Roman Suzi
On Tue, 8 Nov 2005, Paul Winkler wrote: On 11/8/05, Roman Suzi <[EMAIL PROTECTED]> wrote: > I don't know if writing to response one chunk at a time is proper solution? Will Zope store response body or sent it right away? I am not sure that it is the later... The classic way t

Re: [Zope] Serve large files efficiently from a pipe

2005-11-08 Thread Roman Suzi
On Tue, 8 Nov 2005, Dieter Maurer wrote: Roman Suzi wrote at 2005-11-8 13:05 +0200: ... What about serving large files given file(-like) handler? It could be very beneficial sometimes, especially with dynamically generated content... You must observe the restrictions required by HTTP! HTTP

Re: [Zope] Serve large files efficiently from a pipe

2005-11-09 Thread Roman Suzi
On Wed, 9 Nov 2005, Tino Wildenhain wrote: Am Dienstag, den 08.11.2005, 22:34 +0200 schrieb Roman Suzi: On Tue, 8 Nov 2005, Paul Winkler wrote: - I do not have named file... only file handler. But maybe named pipe will do the trick... However, missing content-length (and unfortunately

[Zope] Hooks for methods other than GET/POST on port 80?

2005-12-03 Thread Roman Suzi
T.REQUEST_METHOD == 'POST': # no problem elif REQUEST.REQUEST_METHOD == 'DELETE': # this is never reached... Zope doesnt call Y What do I tweak so object X will receive Y on a usual HTTP port 80? THANKS! Sincerely yours, Roman Suzi -- [EMAIL PROTECT

[Zope] How to make good architecture in Zope2?

2005-12-20 Thread Roman Suzi
real world examples, is extensive use of mix-ins. Is it the only feasible way to at least textually separate Logic from Presentation? (What about delegation?) Is there any pattern which doesn't look strange in Zope2 while letting me do what I described above? Thank you in advance! Rega

Re: [Zope] How to make good architecture in Zope2?

2005-12-21 Thread Roman Suzi
Lennart Regebro wrote: On 12/20/05, Roman Suzi <[EMAIL PROTECTED]> wrote: Lets suppose that I've done OO Analysis and have a dozen of nice classes which model my problem domain. Lets also suppose that I did it on the basis of known use cases. Now I want to build Web application