source: WAeUP_SRP/trunk/skins/waeup_academics/getFacultiesInfo.py @ 911

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

new local roles implemented
role SectionOfficer? not yet tested

  • Property svn:keywords set to Id
File size: 1.0 KB
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"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18path_info = request.get('PATH_INFO').split('/')
19
20info = {}
21info['is_sm'] = context.isSectionManager()
22info['is_so'] = context.isSectionOfficer()
23info['is_student'] = context.isStudent()
24info['action'] = "%s" % context.campus.absolute_url()
25info['choosen_ids'] = request.get('ids',[])
26items = []
27facs = context.portal_catalog(portal_type='Faculty')
28for f in facs:
29    row = {}
30    fo = f.getObject()
31    fd = fo.getContent()
32    row['id'] = fo.getId()
33    row['title'] = fd.LongTitle()
34    row['url'] = fo.absolute_url()
35    row['is_editable'] = mtool.checkPermission('Modify portal content', fo)
36    items.append(row)
37info['items'] = items
38return info
Note: See TracBrowser for help on using the repository browser.