Last change
on this file since 689 was
600,
checked in by joachim, 18 years ago
|
added new methods isManager and isStudent, which are now used in all
getXXXInfo Scripts,
searchAcademics Form added - search not working yet.
|
File size:
1.2 KB
|
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 | member = mtool.getAuthenticatedMember() |
---|
| 19 | path_info = request.get('PATH_INFO').split('/') |
---|
| 20 | |
---|
| 21 | info = {} |
---|
| 22 | member_id = str(member) |
---|
[598] | 23 | roles = member.getRolesInContext(context) |
---|
[600] | 24 | info['is_manager'] = context.isManager() |
---|
| 25 | info['is_student'] = context.isStudent() |
---|
[573] | 26 | info['action'] = "%s" % context.absolute_url() |
---|
[551] | 27 | info['choosen_ids'] = request.get('ids',[]) |
---|
| 28 | items = [] |
---|
| 29 | info['doc'] = context.getContent() |
---|
| 30 | brain = context.portal_catalog(meta_type="Faculty", id = context.getId())[-1] |
---|
| 31 | cp = brain.getPath() |
---|
| 32 | info['container_path'] = cp |
---|
| 33 | res = context.portal_catalog(container_path=cp) |
---|
| 34 | for r in res: |
---|
| 35 | row = {} |
---|
| 36 | ro = r.getObject() |
---|
| 37 | rd = ro.getContent() |
---|
| 38 | row['id'] = r.getId |
---|
| 39 | row['title'] = rd.LongTitle() |
---|
| 40 | row['url'] = ro.absolute_url() |
---|
[598] | 41 | row['is_editable'] = mtool.checkPermission('Modify portal content', ro) |
---|
[551] | 42 | items.append(row) |
---|
| 43 | info['items'] = items |
---|
| 44 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.