Last change
on this file since 17935 was
913,
checked in by Henrik Bettermann, 18 years ago
|
is_* keys removed from get* functions
|
-
Property svn:keywords set to
Id
|
File size:
913 bytes
|
Line | |
---|
1 | ## Script (Python) "getFacultiesInfo" |
---|
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:getFacultiesInfo.py 486 2006-09-06 10:09:39Z joachim $ |
---|
11 | """ |
---|
12 | return Info about the Faculties |
---|
13 | """ |
---|
14 | request = context.REQUEST |
---|
15 | |
---|
16 | wf = context.portal_workflow |
---|
17 | mtool = context.portal_membership |
---|
18 | path_info = request.get('PATH_INFO').split('/') |
---|
19 | |
---|
20 | info = {} |
---|
21 | info['action'] = "%s" % context.campus.absolute_url() |
---|
22 | info['choosen_ids'] = request.get('ids',[]) |
---|
23 | items = [] |
---|
24 | facs = context.portal_catalog(portal_type='Faculty') |
---|
25 | for f in facs: |
---|
26 | row = {} |
---|
27 | fo = f.getObject() |
---|
28 | fd = fo.getContent() |
---|
29 | row['id'] = fo.getId() |
---|
30 | row['title'] = fd.LongTitle() |
---|
31 | row['url'] = fo.absolute_url() |
---|
32 | row['is_editable'] = mtool.checkPermission('Modify portal content', fo) |
---|
33 | items.append(row) |
---|
34 | info['items'] = items |
---|
35 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.