[Zope-dev] Zope Tests: 5 OK

2007-04-10 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Mon Apr 9 12:00:00 2007 UTC to Tue Apr 10 12:00:00 2007 UTC. There were 5 messages: 5 from Zope Unit Tests. Tests passed OK --- Subject: OK : Zope-2.7 Python-2.3.6 : Linux From: Zope Unit Tests Date: Mon Apr 9 20:49:53 EDT 2007 URL

[Zope-dev] What's the deal with sublocations?

2007-04-10 Thread Stefan H. Holek
Most ObjectEvents are dispatched to "sublocations". I was wondering whether it is ok for me to expect a certain dispatch order, i.e. top- down (container before sublocation) or bottom-up (sublocation before container)? What I find is that this order depends on things like the exact interfa

[Zope-dev] Re: What's the deal with sublocations?

2007-04-10 Thread Philipp von Weitershausen
Stefan H. Holek wrote: Most ObjectEvents are dispatched to "sublocations". Well, the ones that deal with the object hierarchy. This mostly concerns IObjectMovedEvents and their sub-event types (added, removed). I don't think it makes a lot of sense to dispatch other object events. I was won

[Zope-dev] Re: What's the deal with sublocations?

2007-04-10 Thread Philipp von Weitershausen
Philipp von Weitershausen wrote: Stefan H. Holek wrote: Most ObjectEvents are dispatched to "sublocations". Well, the ones that deal with the object hierarchy. This mostly concerns IObjectMovedEvents and their sub-event types (added, removed). I don't think it makes a lot of sense to dispatc

[Zope-dev] Re: What's the deal with sublocations?

2007-04-10 Thread Stefan H. Holek
Thanks! On 10. Apr 2007, at 18:34, Philipp von Weitershausen wrote: No. The dispatch to sublocations is an event handler itself. One should not depend on the execution order of event handlers, therefore you should not depend on this dispatch happening before or after your own event handler