[Zope-dev] Getting all objectIds, recursively (ZODB)
Morten W. Petersen
morten@esol.no
15 Oct 2000 21:51:45 +0200
[Erik Enge]
| On 15 Oct 2000, Morten W. Petersen wrote:
|
| > Is there a method available that'll return a nested list of ids (or
| > something similar) of the current object?
|
| "current object"? You probably mean objects?
No, the current (containing) object.
| Couldn't you do that with getParentNode().id?
Then I'd get the parent of the current object, wouldn't I?
An example to elaborate:
ZOPE
tmp
folder_a
folder_b
item_a
Now, if I'm in the context of tmp, I'd like to have a method that will
return this list:
['tmp',
['folder_a',[]],
['folder_b',[
'item_a',[]]
]
]
Anyhow, I got a tip to read the ZDOM.py file.. thanks. =)
-Morten