[556] | 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 |
---|
[603] | 17 | path_info = request.get('PATH_INFO').split('/') |
---|
[556] | 18 | mtool = context.portal_membership |
---|
| 19 | |
---|
| 20 | info = {} |
---|
[573] | 21 | #dep_id = request.get('PATH_TRANSLATED').split('/')[-2] |
---|
| 22 | dep_id = context.aq_parent.getId() |
---|
[600] | 23 | info['is_manager'] = context.isManager() |
---|
| 24 | info['is_student'] = context.isStudent() |
---|
[573] | 25 | info['action'] = "%s" % context.absolute_url() |
---|
[556] | 26 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 27 | info['doc'] = context.getContent() |
---|
[566] | 28 | res = context.portal_catalog(meta_type="Department",id = dep_id) |
---|
| 29 | info['courses'] = [] |
---|
| 30 | if not res: |
---|
| 31 | return info |
---|
| 32 | brain = res[-1] |
---|
[556] | 33 | cp = brain.getPath() |
---|
| 34 | info['container_path'] = cp |
---|
| 35 | info['dep_id'] = dep_id |
---|
| 36 | |
---|
| 37 | res = context.portal_catalog(container_path="%s/courses" % cp) |
---|
| 38 | items = [] |
---|
| 39 | for r in res: |
---|
| 40 | row = {} |
---|
| 41 | ro = r.getObject() |
---|
| 42 | rd = ro.getContent() |
---|
| 43 | row['id'] = r.getId |
---|
| 44 | row['title'] = rd.Title() |
---|
| 45 | row['url'] = ro.absolute_url() |
---|
[563] | 46 | row['review_state'] = wf.getInfoFor(ro,'review_state','None') |
---|
[598] | 47 | row['is_editable'] = mtool.checkPermission('Modify portal content', ro) |
---|
[556] | 48 | items.append(row) |
---|
| 49 | info['courses'] = items |
---|
| 50 | return info |
---|