source: WAeUP_SRP/base/skins/waeup_academics/getCoursesCertificatesInfo.py @ 3254

Last change on this file since 3254 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) "getCoursesCertificatesInfo"
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: getCoursesCertificatesInfo.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('/')
18
19info = {}
20info['action'] = "%s/faculty_view" % context.absolute_url()
21info['choosen_ids'] = request.get('ids',[])
22info['doc'] = context.getContent()
23brain = context.portal_catalog(meta_type="Department", id = context.getId())[-1]
24cp = brain.getPath()
25info['container_path'] = cp
26#res = context.portal_catalog(container_path="%s/courses" % cp)
27#items = []
28#for r in res:
29#    row = {}
30#    ro = r.getObject()
31#    rd = ro.getContent()
32#    row['id'] = r.getId
33#    row['title'] = rd.Title()
34#    row['url'] = ro.absolute_url()
35#    items.append(row)
36#info['courses'] = items
37res = context.portal_catalog(container_path="%s/certificates" % cp)
38items = []
39for r in res:
40    row = {}
41    try:
42        ro = r.getObject()
43        rd = ro.getContent()
44        row['id'] = r.getId
45        row['title'] = rd.Title()
46        row['url'] = ro.absolute_url()
47        items.append(row)
48    except AttributeError:
49        continue
50info['certificates'] = items
51return info
52
Note: See TracBrowser for help on using the repository browser.