source: WAeUP_SRP/base/skins/waeup_academics/getCertificatesInfo.py @ 2534

Last change on this file since 2534 was 2273, checked in by joachim, 17 years ago

fix for #1 fceokene

  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1## Script (Python) "getCertificatesInfo"
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: getCertificatesInfo.py 2273 2007-09-25 09:24:06Z joachim $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18mtool = context.portal_membership
19
20info = {}
21#dep_id = request.get('PATH_TRANSLATED').split('/')[-2]
22dep_id = context.aq_parent.getId()
23info['action'] = "%s" % context.absolute_url()
24info['choosen_ids'] = request.get('ids',[])
25info['doc'] = context.getContent()
26res = context.portal_catalog(meta_type="Department",id = dep_id)
27info['courses'] = []
28if not res:
29    return info
30brain = res[-1]
31cp = brain.getPath()
32info['container_path'] = cp
33info['dep_id'] = dep_id
34
35res = context.portal_catalog(container_path="%s/certificates" % cp)
36items = []
37for r in res:
38    row = {}
39    try:
40        ro = r.getObject()
41        rd = ro.getContent()
42        row['id'] = r.getId
43        row['title'] = rd.Title()
44        row['url'] = ro.absolute_url()
45        row['review_state'] = wf.getInfoFor(ro,'review_state','None')
46        row['is_editable'] = mtool.checkPermission('Modify portal content', ro)
47        items.append(row)
48    except AttributeError:
49        continue
50info['items'] = items
51return info
Note: See TracBrowser for help on using the repository browser.