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 | """ |
---|
12 | return Info about the Faculties |
---|
13 | """ |
---|
14 | request = context.REQUEST |
---|
15 | |
---|
16 | wf = context.portal_workflow |
---|
17 | mtool = context.portal_membership |
---|
18 | path_info = request.get('PATH_INFO').split('/') |
---|
19 | try: |
---|
20 | i = int(path_info[-1]) |
---|
21 | p = 0 |
---|
22 | except: |
---|
23 | p = 1 |
---|
24 | info = {} |
---|
25 | pt = request.get('PATH_TRANSLATED').split('/') |
---|
26 | |
---|
27 | dep_id = pt[-(3+p)] |
---|
28 | cert_id = pt[-(2+p)] |
---|
29 | level_id = pt[-(1+p)] |
---|
30 | info['action'] = "%s" % context.absolute_url() |
---|
31 | info['choosen_ids'] = request.get('ids',[]) |
---|
32 | info['doc'] = context.getContent() |
---|
33 | brain = context.portal_catalog(meta_type="Certificate",id = cert_id)[-1] |
---|
34 | cp = brain.getPath() |
---|
35 | info['container_path'] = cp |
---|
36 | info['dep_id'] = dep_id |
---|
37 | info['cert_id'] = cert_id |
---|
38 | |
---|
39 | res = context.portal_catalog(meta_type="CertificateCourse", container_path="%s/%s" % (cp,level_id)) |
---|
40 | first = [] |
---|
41 | second = [] |
---|
42 | for 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) |
---|
57 | first.sort() |
---|
58 | second.sort() |
---|
59 | info['first'] = first |
---|
60 | info['second'] = second |
---|
61 | return info |
---|