Last change
on this file since 831 was
805,
checked in by joachim, 18 years ago
|
propset Id
|
-
Property svn:keywords set to
Id
|
File size:
704 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 805 2006-11-09 09:38:29Z 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 | |
---|
| 22 | campus = context.portal_catalog(meta_type = "University")[-1].getObject() |
---|
| 23 | |
---|
[603] | 24 | if context.isManager(): |
---|
[542] | 25 | return redirect("%s/campus_manager_view" % campus.absolute_url()) |
---|
[543] | 26 | |
---|
[603] | 27 | if context.isStudent(): |
---|
[542] | 28 | return redirect("%s/students_index" % campus.students.absolute_url()) |
---|
| 29 | |
---|
Note: See
TracBrowser for help on using the repository browser.