Child: [2cf1fa] (diff)

Download this file

template.py    36 lines (24 with data), 951 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
"""Fallback controller."""
from allura.lib.base import BaseController
__all__ = ['TemplateController']
class TemplateController(BaseController):
"""
The fallback controller for allura.
By default, the final controller tried to fulfill the request
when no other routes match. It may be used to display a template
when all else fails, e.g.::
def view(self, url):
return render('/%s' % url)
Or if you're using Mako and want to explicitly send a 404 (Not
Found) response code when the requested template doesn't exist::
import mako.exceptions
def view(self, url):
try:
return render('/%s' % url)
except mako.exceptions.TopLevelLookupException:
abort(404)
"""
def view(self, url):
"""Abort the request with a 404 HTTP status code."""
abort(404)