Last change
on this file since 282 was
280,
checked in by joachim, 18 years ago
|
=renamed skins/waeup_faculty to academics
|
-
Property svn:keywords set to
Id
|
File size:
302 bytes
|
Line | |
---|
1 | ##parameters=key=None |
---|
2 | # $Id: get_faculties_voc.py 280 2006-06-30 06:43:03Z joachim $ |
---|
3 | """ |
---|
4 | Return the faculties as an vocabulary |
---|
5 | |
---|
6 | """ |
---|
7 | if key is None: |
---|
8 | res = context.portal_catalog.search({'meta_type': "Faculty"}) |
---|
9 | return [(d.getId,d.Title,) for d in res] |
---|
10 | dep = context.portal_catalog.search({'meta_type': "Faculty", 'id': key})[-1] |
---|
11 | return dep.Title |
---|
Note: See
TracBrowser for help on using the repository browser.