Last change
on this file since 1838 was
1826,
checked in by Henrik Bettermann, 17 years ago
|
show more text on srp_view and less on login_staff
|
-
Property svn:keywords set to
Id
|
File size:
717 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 1826 2007-05-28 19:39:02Z 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(): |
---|
[543] | 20 | return redirect("%s/campus_anonymous_view" % request.get('URL1')) |
---|
[542] | 21 | |
---|
[1826] | 22 | #campus = context.portal_url.getPortalObject().campus |
---|
[542] | 23 | |
---|
[603] | 24 | if context.isStudent(): |
---|
[542] | 25 | return redirect("%s/students_index" % campus.students.absolute_url()) |
---|
[901] | 26 | else: |
---|
[1826] | 27 | #return redirect("%s/campus/campus_view" % context.portal_url()) |
---|
| 28 | return redirect('%s/srp_view' % context.portal_url()) |
---|
[542] | 29 | |
---|
Note: See
TracBrowser for help on using the repository browser.