Line | |
---|
1 | ## Script (Python) "documents_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: documents_index.py 937 2006-11-25 09:00:34Z henrik $ |
---|
11 | """ |
---|
12 | return the appropriate page in the documents 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 | return context.documents_view() |
---|
23 | |
---|
Note: See
TracBrowser for help on using the repository browser.