Last change
on this file since 17936 was
1033,
checked in by joachim, 18 years ago
|
search for department included
search for student_id now directly goes to the Student.
|
-
Property svn:keywords set to
Id
|
File size:
736 bytes
|
Line | |
---|
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 1033 2006-12-12 11:05:00Z 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 | |
---|
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 | return voc.items() |
---|
26 | |
---|
27 | |
---|
Note: See
TracBrowser for help on using the repository browser.