Last change
on this file since 17946 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 | """ |
---|
12 | return Info about the Faculties |
---|
13 | """ |
---|
14 | request = context.REQUEST |
---|
15 | |
---|
16 | wf = context.portal_workflow |
---|
17 | path_info = request.get('PATH_INFO').split('/') |
---|
18 | |
---|
19 | info = {} |
---|
20 | info['action'] = "%s/faculty_view" % context.absolute_url() |
---|
21 | info['choosen_ids'] = request.get('ids',[]) |
---|
22 | info['doc'] = context.getContent() |
---|
23 | brain = context.portal_catalog(meta_type="Department", id = context.getId())[-1] |
---|
24 | cp = brain.getPath() |
---|
25 | info['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 |
---|
37 | res = context.portal_catalog(container_path="%s/certificates" % cp) |
---|
38 | items = [] |
---|
39 | for 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) |
---|
47 | info['certificates'] = items |
---|
48 | return info |
---|
49 | |
---|
Note: See
TracBrowser for help on using the repository browser.