source: WAeUP_SRP/trunk/skins/waeup_student/getStudyCourseInfo.py @ 912

Last change on this file since 912 was 911, checked in by Henrik Bettermann, 18 years ago

new local roles implemented
role SectionOfficer? not yet tested

  • Property svn:keywords set to Id
File size: 971 bytes
Line 
1## Script (Python) "getStudyCourseInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
10# $Id: getStudyCourseInfo.py 911 2006-11-20 15:11:29Z henrik $
11"""
12return Info about the Students StudyCourse
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18
19info = {}
20info['is_sm'] = context.isSectionManager()
21info['is_so'] = context.isSectionOfficer()
22info['is_student'] = context.isStudent()
23info['action'] = "%s" % context.campus.absolute_url()
24info['choosen_ids'] = request.get('ids',[])
25info['doc'] = context.getContent()
26items = []
27levels = context.objectValues()
28for l in levels:
29    row = {}
30    ld = l.getContent()
31    row['id'] = l.getId()
32    if hasattr(ld,'Title'):
33        row['title'] = ld.Title()
34    else:
35        row['title'] = getattr(ld,'title','no title')
36    row['url'] = l.absolute_url()
37    items.append(row)
38info['items'] = items
39return info
Note: See TracBrowser for help on using the repository browser.