[Zope] How to get PARENTS[-1] from within a Python Product

Dieter Maurer dieter@handshake.de
Sun, 27 Aug 2000 23:51:12 +0200 (CEST)


Ira Hochman writes:
 > How does one retrieve the equivalent of PARENTS[-1] from within a Python
 > Product in Zope?
ZPublisher places "REQUEST" at the top of the acquisition chain.
"PARENTS" is an attribute of "REQUEST".

Therefore, you should be able to simple use "self.PARENTS[-1]".

If it does not, try "self.REQUEST.PARENTS[-1]".



Dieter