Last change
on this file since 11107 was
3611,
checked in by Henrik Bettermann, 16 years ago
|
implement lecturer module (for demo purposes only)
|
File size:
687 bytes
|
Rev | Line | |
---|
[1785] | 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: index_html.py 901 2006-11-20 07:33:16Z henrik $ |
---|
| 11 | """ |
---|
| 12 | return the correct index_html |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | if pm.isAnonymousUser(): |
---|
| 20 | return redirect("%s/srp_anonymous_view" % request.get('URL1')) |
---|
[3611] | 21 | # return redirect("http://uniben.edu/index.php") |
---|
| 22 | |
---|
[1785] | 23 | elif context.isStudent(): |
---|
| 24 | return redirect("%s/srp_anonymous_view" % context.absolute_url()) |
---|
| 25 | else: |
---|
[3611] | 26 | return redirect("%s/srp_view" % context.absolute_url()) |
---|
[1785] | 27 | |
---|
[3611] | 28 | |
---|
Note: See
TracBrowser for help on using the repository browser.