source: WAeUP_SRP/trunk/skins/waeup_academics/getCertificatesInfo.py @ 1879

Last change on this file since 1879 was 913, checked in by Henrik Bettermann, 18 years ago

is_* keys removed from get* functions

  • Property svn:keywords set to Id
File size: 1.2 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 913 2006-11-21 10:49:45Z henrik $
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    ro = r.getObject()
40    rd = ro.getContent()
41    row['id'] = r.getId
42    row['title'] = rd.Title()
43    row['url'] = ro.absolute_url()
44    row['review_state'] = wf.getInfoFor(ro,'review_state','None')
45    row['is_editable'] = mtool.checkPermission('Modify portal content', ro)
46    items.append(row)
47info['items'] = items
48return info
Note: See TracBrowser for help on using the repository browser.