##parameters=key=None # $Id: getDepartmentsVoc.py 3254 2008-02-28 13:06:20Z joachim $ """ Return the faculties as an vocabulary """ if key is None: res = context.portal_catalog.search({'meta_type': "Department"}) return [(d.getId(),d.Title,) for d in res] res = context.portal_catalog.search({'meta_type': "Department", 'id': key}) if res: return res[-1].Title raise KeyError