Last change
on this file since 11107 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 | """ |
---|
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 | mtool = context.portal_membership |
---|
19 | |
---|
20 | info = {} |
---|
21 | #dep_id = request.get('PATH_TRANSLATED').split('/')[-2] |
---|
22 | dep_id = context.aq_parent.getId() |
---|
23 | info['action'] = "%s" % context.absolute_url() |
---|
24 | info['choosen_ids'] = request.get('ids',[]) |
---|
25 | info['doc'] = context.getContent() |
---|
26 | res = context.portal_catalog(meta_type="Department",id = dep_id) |
---|
27 | info['courses'] = [] |
---|
28 | if not res: |
---|
29 | return info |
---|
30 | brain = res[-1] |
---|
31 | cp = brain.getPath() |
---|
32 | info['container_path'] = cp |
---|
33 | info['dep_id'] = dep_id |
---|
34 | |
---|
35 | res = context.portal_catalog(container_path="%s/certificates" % cp) |
---|
36 | items = [] |
---|
37 | for 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) |
---|
47 | info['items'] = items |
---|
48 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.