## Script (Python) "computeRelatedItems" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters= ##title=find related items for an object ## from AccessControl import Unauthorized if hasattr(context, 'getRelatedItems'): outgoing = context.getRelatedItems() incoming = [] # if you want to show up the items which point to this one, too, then use the # line below #incoming = context.getBRefs('relatesTo') res = [] mtool = context.portal_membership in_out = outgoing+incoming for d in range(len(in_out)): try: obj = in_out[d] except Unauthorized: continue if obj not in res: if mtool.checkPermission('View', obj): res.append(obj) return res