source: WAeUP_SRP/branches/uli/skins/waeup_academics/getCoursesCertificatesInfo.py @ 17928

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

speed-up department_view

  • Property svn:keywords set to Id
File size: 1.2 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 1434 2007-02-18 08:58:35Z henrik $
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    ro = r.getObject()
42    rd = ro.getContent()
43    row['id'] = r.getId
44    row['title'] = rd.Title()
45    row['url'] = ro.absolute_url()
46    items.append(row)
47info['certificates'] = items
48return info
49
Note: See TracBrowser for help on using the repository browser.