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

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

is_* keys removed from get* functions

  • Property svn:keywords set to Id
File size: 844 bytes
RevLine 
[845]1## Script (Python) "getStudyCourseInfo"
[723]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##
[805]10# $Id: getStudyCourseInfo.py 913 2006-11-21 10:49:45Z henrik $
[723]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['action'] = "%s" % context.campus.absolute_url()
21info['choosen_ids'] = request.get('ids',[])
22info['doc'] = context.getContent()
23items = []
24levels = context.objectValues()
25for l in levels:
26    row = {}
27    ld = l.getContent()
28    row['id'] = l.getId()
29    if hasattr(ld,'Title'):
30        row['title'] = ld.Title()
31    else:
32        row['title'] = getattr(ld,'title','no title')
33    row['url'] = l.absolute_url()
34    items.append(row)
35info['items'] = items
36return info
Note: See TracBrowser for help on using the repository browser.