source: WAeUP_SRP/trunk/skins/waeup_academics/getCoursesInfo.py @ 599

Last change on this file since 599 was 598, checked in by joachim, 18 years ago

added is_editable for showing the edit link and the review_state

File size: 1.5 KB
Line 
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"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18member = mtool.getAuthenticatedMember()
19path_info = request.get('PATH_INFO').split('/')
20
21info = {}
22member_id = str(member)
23#dep_id = request.get('PATH_TRANSLATED').split('/')[-2]
24dep_id = context.aq_parent.getId()
25roles = member.getRoles()
26info['is_manager'] = 'Manager' in roles or 'SectionManager' in roles
27info['is_student'] = 'Student' in roles
28info['action'] = "%s" % context.absolute_url()
29info['choosen_ids'] = request.get('ids',[])
30info['doc'] = context.getContent()
31res = context.portal_catalog(meta_type="Department",id = dep_id)
32info['courses'] = []
33if not res:
34    return info
35brain = res[-1]
36cp = brain.getPath()
37info['container_path'] = cp
38info['dep_id'] = dep_id
39
40res = context.portal_catalog(container_path="%s/courses" % cp)
41items = []
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['url'] = ro.absolute_url()
49    row['review_state'] = wf.getInfoFor(ro,'review_state','None')
50    row['is_editable'] = mtool.checkPermission('Modify portal content', ro)
51    items.append(row)
52info['courses'] = items
53return info
Note: See TracBrowser for help on using the repository browser.