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