source:
WAeUP_SRP/fceokene/waeup_custom/getCosCombinedVoc.py
@
3546
Last change on this file since 3546 was 3252, checked in by , 17 years ago | |
---|---|
File size: 412 bytes |
Rev | Line | |
---|---|---|
[2815] | 1 | ##parameters=key=None |
2 | # $Id: getCosCombinedVoc.py 2814 2007-11-28 12:26:51Z henrik $ | |
3 | """ | |
4 | Return the combined courses as an vocabulary | |
5 | ||
6 | """ | |
7 | if key is None: | |
8 | l = [] | |
9 | for k,v in context.portal_vocabularies.cos.items(): | |
10 | l += (k,v), | |
11 | return l | |
12 | for voc in (context.portal_vocabularies.cos,): | |
13 | title = voc.get(key,None) | |
14 | if title is not None: | |
15 | return title | |
[3252] | 16 | else: |
17 | raise KeyError |
Note: See TracBrowser for help on using the repository browser.