Last change
on this file since 17946 was
901,
checked in by Henrik Bettermann, 18 years ago
|
srp_manager_view and campus_manager_view renamed
|
-
Property svn:keywords set to
Id
|
File size:
582 bytes
|
Line | |
---|
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')) |
---|
21 | elif context.isStudent(): |
---|
22 | return redirect("%s/srp_anonymous_view" % context.absolute_url()) |
---|
23 | else: |
---|
24 | return redirect("%s/srp_view" % context.absolute_url()) |
---|
25 | |
---|
Note: See
TracBrowser for help on using the repository browser.