Last change
on this file since 17950 was
1871,
checked in by Henrik Bettermann, 17 years ago
|
ticket #264
other occurences
|
-
Property svn:keywords set to
Id
|
File size:
921 bytes
|
Line | |
---|
1 | ## Script (Python) "get_searchable_student_states" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=key=None |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id: get_searchable_student_states.py 1871 2007-06-08 18:57:59Z henrik $ |
---|
11 | """ |
---|
12 | return the searchable student_states depending on context |
---|
13 | """ |
---|
14 | wftool = context.portal_workflow |
---|
15 | mtool = context.portal_membership |
---|
16 | member = mtool.getAuthenticatedMember() |
---|
17 | roles = member.getRolesInContext(context) |
---|
18 | voc = context.portal_vocabularies.searchable_student_states |
---|
19 | |
---|
20 | if key is not None: |
---|
21 | return voc.get(key) |
---|
22 | if "ClearanceOfficers" in member.getGroups(): |
---|
23 | return [item for item in voc.items() if item[0].startswith('clear') or |
---|
24 | item[0] in ("all",)] |
---|
25 | elif "CourseAdvisers" in member.getGroups(): |
---|
26 | return [item for item in voc.items() if item[0].startswith('courses') or |
---|
27 | item[0] in ("all",)] |
---|
28 | return voc.items() |
---|
29 | |
---|
30 | |
---|
Note: See
TracBrowser for help on using the repository browser.