Inter-object navigation.

This commit is contained in:
Gaetan Delannay 2009-11-17 10:05:19 +01:00
parent 7cdc3c1ed6
commit d9484b104e
10 changed files with 247 additions and 48 deletions

View file

@ -9,4 +9,8 @@ class ToolWrapper:
if initiatorUid:
res = self.o.uid_catalog(UID=initiatorUid)[0].getObject().appy()
return res
def getObject(self, uid):
'''Allow to retrieve an object from its unique identifier p_uid.'''
return self.o.getObject(uid, appy=True)
# ------------------------------------------------------------------------------