Last change
on this file since 1719 was
960,
checked in by joachim, 18 years ago
|
remove catalog-query
|
-
Property svn:keywords set to
Id
|
File size:
656 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 960 2006-11-28 15:00:59Z joachim $ |
---|
[542] | 11 | """ |
---|
| 12 | return the correct campus_index_html |
---|
| 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 | |
---|
[960] | 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: |
---|
| 27 | return redirect("%s/campus_view" % campus.absolute_url()) |
---|
[542] | 28 | |
---|
Note: See
TracBrowser for help on using the repository browser.