Last change
on this file since 542 was
542,
checked in by Henrik Bettermann, 18 years ago
|
index pages reorganized (part 1)
|
File size:
782 bytes
|
Rev | Line | |
---|
[542] | 1 | ## Script (Python) "index_html" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=batch=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
| 12 | return the correct index_html |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | |
---|
| 16 | request = context.REQUEST |
---|
| 17 | redirect = request.RESPONSE.redirect |
---|
| 18 | pm = context.portal_membership |
---|
| 19 | |
---|
| 20 | if pm.isAnonymousUser(): |
---|
| 21 | return redirect("%s/srp_anonymous_view" % request.get('URL1')) |
---|
| 22 | |
---|
| 23 | member = pm.getAuthenticatedMember() |
---|
| 24 | roles = member.getRoles() |
---|
| 25 | isManager = "Manager" in roles or "SectionManager" in roles |
---|
| 26 | isStudent = "Student" in roles |
---|
| 27 | |
---|
| 28 | if isManager: |
---|
| 29 | return redirect("%s/srp_manager_view" % absolute_url()) |
---|
| 30 | |
---|
| 31 | if isStudent: |
---|
| 32 | return redirect("%s/srp_anonymous_view" % absolute_url()) |
---|
| 33 | |
---|
Note: See
TracBrowser for help on using the repository browser.