source: WAeUP_SRP/trunk/skins/waeup_default/index_html.py @ 866

Last change on this file since 866 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 611 bytes
RevLine 
[542]1## Script (Python) "index_html"
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: index_html.py 805 2006-11-09 09:38:29Z joachim $
[542]11"""
12return the correct index_html
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if pm.isAnonymousUser():
20    return redirect("%s/srp_anonymous_view" % request.get('URL1'))
21
[603]22if context.isManager():
[543]23    return redirect("%s/srp_manager_view" % context.absolute_url())
[542]24
[603]25if context.isStudent():
[543]26    return redirect("%s/srp_anonymous_view" % context.absolute_url())
[542]27
Note: See TracBrowser for help on using the repository browser.