Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-08 Thread Florent Guillaume
Benji York <[EMAIL PROTECTED]> wrote: > Jim Fulton wrote: > > We don't want to *require* objects to provide ILocation. > > > > I don't know what the right answer is here. I'll think about it. I'd > > love some good suggestions. > > Perhaps an ILocation adapter that would keep the __name__ and _

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Benji York
Jim Fulton wrote: We don't want to *require* objects to provide ILocation. I don't know what the right answer is here. I'll think about it. I'd love some good suggestions. Perhaps an ILocation adapter that would keep the __name__ and __parent__ information in a separate place (attribute anno

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Jim Fulton
Jim Fulton wrote: Martijn Faassen wrote: ... If an object doesn't participate in the location framework, then we have to create a second object that provides location, the ContainedProxy. There are really two distinct objects. You want the intid to point to the proxy, so you get the location

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Jim Fulton
Roger Ineichen wrote: Hi Martijn and Jim Behalf Of Martijn Faassen Sent: Thursday, July 07, 2005 2:22 PM To: zope3-dev (E-mail) Subject: [Zope3-dev] interaction between LocationProxy and IIntId utility Hi there, [..] Finally with some help from Stephan Richter giving us the clue that t

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Jim Fulton
Martijn Faassen wrote: Jim Fulton wrote: ... - Implement ILocation in your content objects. This is the simplest course. It sounds like, for your application, the content objects should know about their locations, since you want them to be able to generate events that contain location infor

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Martijn Faassen
Jim Fulton wrote: Martijn Faassen wrote: [snip] What is stored in the ZODB are LocationProxy wrapped objects. I think you mean ContainedProxy objects. Yes, I imagine so. The location proxy wrappers get a unique id reference in the IntId utility, not the objects themselves. Now when you s

Re: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Jim Fulton
Martijn Faassen wrote: Hi there, We just noticed that some objects were not being cataloged correctly. After a lot of debugging, we noticed the following: The IntId utility wouldn't find the unique id for an object when a modified event was sent. As a result, it wasn't being indexed. We fi

RE: [Zope3-dev] interaction between LocationProxy and IIntId utility

2005-07-07 Thread Roger Ineichen
Hi Martijn and Jim Behalf Of Martijn Faassen > Sent: Thursday, July 07, 2005 2:22 PM > To: zope3-dev (E-mail) > Subject: [Zope3-dev] interaction between LocationProxy and > IIntId utility > > Hi there, > [..] > > Finally with some help from Stephan Richter giving us the > clue that this > __