Last change
on this file since 17947 was
2256,
checked in by Henrik Bettermann, 17 years ago
|
fixed wrong redirect
|
-
Property svn:keywords set to
Id
|
File size:
790 bytes
|
Rev | Line | |
---|
[543] | 1 | ## Script (Python) "campus_index" |
---|
[542] | 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 | ## |
---|
[805] | 10 | # $Id: campus_index.py 2256 2007-09-18 12:51:08Z henrik $ |
---|
[542] | 11 | """ |
---|
[1785] | 12 | return the correct campus_index |
---|
[542] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | if pm.isAnonymousUser(): |
---|
[2046] | 20 | #return redirect("%s/srp_anonymous_view" % request.get('URL1')) |
---|
| 21 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
[542] | 22 | |
---|
[1826] | 23 | #campus = context.portal_url.getPortalObject().campus |
---|
[542] | 24 | |
---|
[603] | 25 | if context.isStudent(): |
---|
[2256] | 26 | return redirect("%s/campus/students/students_index" % context.portal_url()) |
---|
[901] | 27 | else: |
---|
[1826] | 28 | #return redirect("%s/campus/campus_view" % context.portal_url()) |
---|
| 29 | return redirect('%s/srp_view' % context.portal_url()) |
---|
[542] | 30 | |
---|
Note: See
TracBrowser for help on using the repository browser.