##parameters=key=None # $Id: getDepartmentsVoc.py 3339 2008-03-16 08:38:39Z henrik $ """ 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[0].Title raise KeyError