Last change
on this file was
1558,
checked in by joachim, 18 years ago
|
merged trunk up to 1557
|
-
Property svn:keywords set to
Id
|
File size:
920 bytes
|
Rev | Line | |
---|
[874] | 1 | ## Script (Python) "get_searchable_review_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 1558 2007-03-15 16:44:41Z joachim $ |
---|
| 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 | |
---|
[875] | 20 | if key is not None: |
---|
| 21 | return voc.get(key) |
---|
| 22 | if "ClearanceOfficers" in member.getGroups(): |
---|
[1033] | 23 | return [item for item in voc.items() if item[0].startswith('clear') or |
---|
| 24 | item[0] in ("all",)] |
---|
[1558] | 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",)] |
---|
[875] | 28 | return voc.items() |
---|
[874] | 29 | |
---|
| 30 | |
---|
Note: See
TracBrowser for help on using the repository browser.