source: WAeUP_SRP/trunk/skins/waeup_student/get_searchable_student_states.py @ 1149

Last change on this file since 1149 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"""
12return the searchable student_states depending on context
13"""
14wftool = context.portal_workflow
15mtool = context.portal_membership
16member = mtool.getAuthenticatedMember()
17roles = member.getRolesInContext(context)
18voc = context.portal_vocabularies.searchable_student_states
19
20if key is not None:
21    return voc.get(key)
22if "ClearanceOfficers" in member.getGroups():
23    return [item for item in voc.items() if item[0].startswith('clear') or
24                                         item[0] in ("all",)]
25return voc.items()
26
27
Note: See TracBrowser for help on using the repository browser.