source: WAeUP_SRP/uniben/waeup_custom/getCosCombinedVoc.py @ 3253

Last change on this file since 3253 was 3253, checked in by joachim, 17 years ago

raise keyerror

File size: 614 bytes
Line 
1##parameters=key=None
2# $Id: getCosCombinedVoc.py 2814 2007-11-28 12:26:51Z henrik $
3"""
4Return the combined courses as an vocabulary
5
6"""
7if key is None:
8    l = []
9    for k,v in context.portal_vocabularies.cos.items():
10        l += (k,v),
11    for k,v in context.portal_vocabularies.cos_cest.items():
12        if k:
13            l += (k,v),
14    return l
15for voc in (context.portal_vocabularies.cos,
16            context.portal_vocabularies.cos_cest,
17            context.portal_vocabularies.cos_sandwich):
18    title = voc.get(key,None)
19    if title is not None:
20        return title
21    else:
22        raise KeyError
Note: See TracBrowser for help on using the repository browser.