Last change
on this file since 2141 was
313,
checked in by joachim, 18 years ago
|
=get_department_voc, get_faculty_voc
|
-
Property svn:keywords set to
Id
|
File size:
345 bytes
|
Rev | Line | |
---|
[173] | 1 | ##parameters=key=None |
---|
| 2 | # $Id: get_faculties_voc.py 313 2006-07-15 15:29:56Z joachim $ |
---|
| 3 | """ |
---|
| 4 | Return the faculties as an vocabulary |
---|
| 5 | |
---|
| 6 | """ |
---|
[265] | 7 | if key is None: |
---|
| 8 | res = context.portal_catalog.search({'meta_type': "Faculty"}) |
---|
| 9 | return [(d.getId,d.Title,) for d in res] |
---|
[312] | 10 | res = context.portal_catalog.search({'meta_type': "Faculty", 'id': key}) |
---|
| 11 | if res: |
---|
| 12 | return [-1].Title |
---|
[313] | 13 | return "unknown Faculty %s" % key |
---|
Note: See
TracBrowser for help on using the repository browser.