avoid problems with missing trailing slash

This commit is contained in:
lars 2012-07-17 09:19:34 +00:00
parent 0300339326
commit 38027320ff

View file

@ -47,6 +47,9 @@ if "HTMAN_CONFIG" in os.environ:
CONFIG_FILE_LOCATIONS = [os.environ["HTMAN_CONFIG"]]
@bobo.query('')
def redirect_frontpage():
return bobo.redirect(web_defaults["base_url"] + '/')
@bobo.query('/')
def show_frontpage():
values = web_defaults.copy()