source: WAeUP_SRP/trunk/skins/waeup_academics/getLevelInfo.py @ 1145

Last change on this file since 1145 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.5 KB
Line 
1## Script (Python) "getLevelInfo"
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: getLevelInfo.py 913 2006-11-21 10:49:45Z henrik $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18path_info = request.get('PATH_INFO').split('/')
19try:
20    i = int(path_info[-1])
21    p = 0
22except:
23    p = 1
24info = {}
25pt = request.get('PATH_TRANSLATED').split('/')
26
27dep_id = pt[-(3+p)]
28cert_id = pt[-(2+p)]
29level_id = pt[-(1+p)]
30info['action'] = "%s" % context.absolute_url()
31info['choosen_ids'] = request.get('ids',[])
32info['doc'] = context.getContent()
33brain = context.portal_catalog(meta_type="Certificate",id = cert_id)[-1]
34cp = brain.getPath()
35info['container_path'] = cp
36info['dep_id'] = dep_id
37info['cert_id'] = cert_id
38
39res = context.portal_catalog(meta_type="CertificateCourse", container_path="%s/%s" % (cp,level_id))
40first = []
41second = []
42for r in res:
43    row = {}
44    ro = r.getObject()
45    rd = ro.getContent()
46    row['id'] = r.getId
47    row['title'] = rd.Title()
48    row['core'] = rd.core_or_elective
49    row['semester'] = rd.semester
50    row['url'] = ro.absolute_url()
51    row['review_state'] = wf.getInfoFor(ro,'review_state','None')
52    row['is_editable'] = mtool.checkPermission('Modify portal content', ro)
53    if rd.semester == 'first':
54        first.append(row)
55    else:
56        second.append(row)
57first.sort()
58second.sort()
59info['first'] = first
60info['second'] = second
61return info
Note: See TracBrowser for help on using the repository browser.