source: WAeUP_SRP/trunk/skins/waeup_academics/getCoursesInfo.py @ 913

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

is_* keys removed from get* functions

  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1## Script (Python) "getCoursesInfo"
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: getCoursesInfo.py 913 2006-11-21 10:49:45Z henrik $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18mtool = context.portal_membership
19
20info = {}
21#dep_id = request.get('PATH_TRANSLATED').split('/')[-2]
22dep_id = context.aq_parent.getId()
23info['action'] = "%s" % context.absolute_url()
24info['choosen_ids'] = request.get('ids',[])
25info['doc'] = context.getContent()
26res = context.portal_catalog(meta_type="Department",id = dep_id)
27info['courses'] = []
28if not res:
29    return info
30brain = res[-1]
31cp = brain.getPath()
32info['container_path'] = cp
33info['dep_id'] = dep_id
34
35res = context.portal_catalog(container_path="%s/courses" % cp)
36items = []
37for sem in ('1','2'):
38    for r in res:
39        row = {}
40        ro = r.getObject()
41        rd = ro.getContent()
42        if rd.semester != sem:
43            continue
44        row['id'] = r.getId
45        row['title'] = rd.Title()
46        row['semester'] = rd.semester
47        row['url'] = ro.absolute_url()
48        row['review_state'] = wf.getInfoFor(ro,'review_state','None')
49        row['is_editable'] = mtool.checkPermission('Modify portal content', ro)
50        items.append(row)
51info['courses'] = items
52return info
Note: See TracBrowser for help on using the repository browser.