1 | ## Script (Python) "cpsdocument_edit" |
---|
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: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
11 | """ |
---|
12 | return Info about the Faculties |
---|
13 | """ |
---|
14 | request = context.REQUEST |
---|
15 | |
---|
16 | wf = context.portal_workflow |
---|
17 | mtool = context.portal_membership |
---|
18 | member = mtool.getAuthenticatedMember() |
---|
19 | path_info = request.get('PATH_INFO').split('/') |
---|
20 | |
---|
21 | info = {} |
---|
22 | member_id = str(member) |
---|
23 | pt = request.get('PATH_TRANSLATED').split('/') |
---|
24 | dep_id = pt[5] |
---|
25 | cert_id = pt[7] |
---|
26 | level_id = pt[8] |
---|
27 | roles = member.getRoles() |
---|
28 | info['is_manager'] = 'Manager' in roles or 'SectionManager' in roles |
---|
29 | info['is_student'] = 'Student' in roles |
---|
30 | info['action'] = "%s/faculty_index_view" % 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(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 | if rd.semester == 'first': |
---|
52 | first.append(row) |
---|
53 | else: |
---|
54 | second.append(row) |
---|
55 | first.sort() |
---|
56 | second.sort() |
---|
57 | info['first'] = first |
---|
58 | info['second'] = second |
---|
59 | return info |
---|