[554] | 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 | roles = member.getRoles() |
---|
| 24 | info['is_manager'] = 'Manager' in roles or 'SectionManager' in roles |
---|
| 25 | info['is_student'] = 'Student' in roles |
---|
| 26 | info['action'] = "%s/faculty_index_view" % context.absolute_url() |
---|
| 27 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 28 | info['doc'] = context.getContent() |
---|
| 29 | brain = context.portal_catalog(meta_type="Department", id = context.getId())[-1] |
---|
| 30 | cp = brain.getPath() |
---|
| 31 | info['container_path'] = cp |
---|
| 32 | res = context.portal_catalog(container_path="%s/courses" % cp) |
---|
| 33 | items = [] |
---|
| 34 | for r in res: |
---|
| 35 | row = {} |
---|
| 36 | ro = r.getObject() |
---|
| 37 | rd = ro.getContent() |
---|
| 38 | row['id'] = r.getId |
---|
| 39 | row['title'] = rd.Title() |
---|
| 40 | row['url'] = ro.absolute_url() |
---|
| 41 | items.append(row) |
---|
| 42 | info['courses'] = items |
---|
| 43 | res = context.portal_catalog(container_path="%s/certificates" % cp) |
---|
| 44 | items = [] |
---|
| 45 | for r in res: |
---|
| 46 | row = {} |
---|
| 47 | ro = r.getObject() |
---|
| 48 | rd = ro.getContent() |
---|
| 49 | row['id'] = r.getId |
---|
| 50 | row['title'] = rd.Title() |
---|
| 51 | row['url'] = ro.absolute_url() |
---|
| 52 | items.append(row) |
---|
| 53 | info['certificates'] = items |
---|
| 54 | return info |
---|