Re: [Zope3-dev] How to resolve bi-directionally navigable association?

2005-08-28 Thread Stephan Richter
On Monday 08 August 2005 12:43, Adam Groszer wrote: class IItem(interface):     unit = Object(         title=uUnit,         description=uUnit,         required = False,         schema=IUnit) class IUnit(interface):     item = Object(         title=uItem,         description=uItem,      

[Zope3-dev] How to resolve bi-directionally navigable association?

2005-08-08 Thread Adam Groszer
Sorry for the crosspost, may I have some expert advice on the following: As the subject sais, how can I resolve bi-directionally navigable association in Z3? Both objects have to have references of each other, that means that also the schemas have to have references. class IItem(interface):