[542] | 1 | ## Script (Python) "academics_index" |
---|
[538] | 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: academics_index.py 937 2006-11-25 09:00:34Z henrik $ |
---|
[538] | 11 | """ |
---|
[542] | 12 | return the appropriate page in the academics section |
---|
[538] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
[542] | 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | if pm.isAnonymousUser(): |
---|
[681] | 20 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 21 | else: |
---|
[551] | 22 | if context.portal_type == 'AcademicsFolder': |
---|
[937] | 23 | return context.academics_view() |
---|
[551] | 24 | elif context.portal_type == 'Faculty': |
---|
[653] | 25 | return context.faculty_view() |
---|
[552] | 26 | elif context.portal_type == 'Department': |
---|
[653] | 27 | return context.department_view() |
---|
[556] | 28 | elif context.portal_type == 'CoursesFolder': |
---|
[653] | 29 | return context.courses_view() |
---|
[683] | 30 | elif context.portal_type == 'CertificatesFolder': |
---|
[739] | 31 | return context.certificates_view() |
---|
[556] | 32 | elif context.portal_type == 'Certificate': |
---|
[653] | 33 | return context.certificate_view() |
---|
[556] | 34 | elif context.portal_type == 'StudyLevel': |
---|
[653] | 35 | return context.level_view() |
---|
[556] | 36 | elif context.portal_type in ('CertificateCourse','Course'): |
---|
[739] | 37 | return context.waeup_document_view() |
---|
[901] | 38 | return redirect("%s/srp_view" % context.portal_url()) |
---|
[538] | 39 | |
---|