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

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

script names corrected

  • Property svn:keywords set to Id
File size: 926 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 845 2006-11-11 21:29:50Z 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_manager'] = context.isManager()
21info['is_student'] = context.isStudent()
22info['action'] = "%s" % context.campus.absolute_url()
23info['choosen_ids'] = request.get('ids',[])
24info['doc'] = context.getContent()
25items = []
26levels = context.objectValues()
27for l in levels:
28    row = {}
29    ld = l.getContent()
30    row['id'] = l.getId()
31    if hasattr(ld,'Title'):
32        row['title'] = ld.Title()
33    else:
34        row['title'] = getattr(ld,'title','no title')
35    row['url'] = l.absolute_url()
36    items.append(row)
37info['items'] = items
38return info
Note: See TracBrowser for help on using the repository browser.