Last change
on this file since 810 was
805,
checked in by joachim, 18 years ago
|
propset Id
|
-
Property svn:keywords set to
Id
|
File size:
1.3 KB
|
Line | |
---|
1 | ## Script (Python) "cpsdocument_edit" |
---|
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 805 2006-11-09 09:38:29Z joachim $ |
---|
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['is_manager'] = context.isManager() |
---|
21 | info['is_student'] = context.isStudent() |
---|
22 | info['action'] = "%s/faculty_view" % context.absolute_url() |
---|
23 | info['choosen_ids'] = request.get('ids',[]) |
---|
24 | info['doc'] = context.getContent() |
---|
25 | brain = context.portal_catalog(meta_type="Department", id = context.getId())[-1] |
---|
26 | cp = brain.getPath() |
---|
27 | info['container_path'] = cp |
---|
28 | res = context.portal_catalog(container_path="%s/courses" % cp) |
---|
29 | items = [] |
---|
30 | for r in res: |
---|
31 | row = {} |
---|
32 | ro = r.getObject() |
---|
33 | rd = ro.getContent() |
---|
34 | row['id'] = r.getId |
---|
35 | row['title'] = rd.Title() |
---|
36 | row['url'] = ro.absolute_url() |
---|
37 | items.append(row) |
---|
38 | info['courses'] = items |
---|
39 | res = context.portal_catalog(container_path="%s/certificates" % cp) |
---|
40 | items = [] |
---|
41 | for r in res: |
---|
42 | row = {} |
---|
43 | ro = r.getObject() |
---|
44 | rd = ro.getContent() |
---|
45 | row['id'] = r.getId |
---|
46 | row['title'] = rd.Title() |
---|
47 | row['url'] = ro.absolute_url() |
---|
48 | items.append(row) |
---|
49 | info['certificates'] = items |
---|
50 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.