Last change
on this file since 624 was
603,
checked in by Henrik Bettermann, 18 years ago
|
batch of fixes to open the frontend for the first time
|
File size:
992 bytes
|
Rev | Line | |
---|
[551] | 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: student_edit.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 = {} |
---|
[600] | 21 | info['is_manager'] = context.isManager() |
---|
[603] | 22 | info['is_student'] = context.isStudent() |
---|
[573] | 23 | info['action'] = "%s" % context.campus.absolute_url() |
---|
[551] | 24 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 25 | items = [] |
---|
| 26 | facs = context.portal_catalog(portal_type='Faculty') |
---|
| 27 | for f in facs: |
---|
| 28 | row = {} |
---|
| 29 | fo = f.getObject() |
---|
| 30 | fd = fo.getContent() |
---|
[586] | 31 | row['id'] = fo.getId() |
---|
[551] | 32 | row['title'] = fd.LongTitle() |
---|
| 33 | row['url'] = fo.absolute_url() |
---|
[603] | 34 | row['is_editable'] = mtool.checkPermission('Modify portal content', fo) |
---|
[551] | 35 | items.append(row) |
---|
| 36 | info['items'] = items |
---|
| 37 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.