[Zope-dev] Thread in ZODB

2004-04-10 Thread Andre Meyer
Hi Zopers Here is a nice challenge, I hope: I have a multi-threaded Python application that I want to link to Zope. The idea is to provide a Web interface for viewing and editing the state of multiple threads running in Python. On thread should be associated with Zope and act as the door

RE: [Zope-dev] Thread in ZODB

2004-04-10 Thread zope
The same question was asked and answered ~10 days ago. Search google (1st hit for the error message) and the archives before (cross)post. http://marc.theaimsgroup.com/?t=10807723155r=1w=2 Sandor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [Zope-dev] Re: [Zope3-dev] proposal: serving static content faster

2004-04-10 Thread Paul Winkler
On Fri, Apr 09, 2004 at 08:11:20PM -0400, Chris McDonough wrote: On Fri, 2004-04-09 at 18:02, Paul Winkler wrote: That's easy. LocalFS, CMFCore.FSFile, and ExtFile 1.1.3 all read the entire file into memory before sending anything back to the client. That's why ExtFile 1.4 is so much better

[Zope-dev] circular referenced persistent objects

2004-04-10 Thread zope
I have the following setup (unrelated lines are omitted): class Deliverer(Folder): def manage_afterAdd(self, item, container): if item is self: self.__ac_local_roles__ = dr_localroles(self) class dr_localroles(Persistent): def __init__(self, dr): self.dr = dr