* add __repr__() to all current module objects (fixes #10) * pep8 fixes in all Python files (addresses #9) * create subdirectory for customer templates (addresses #2) git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@8 389c73d4-bf09-4d3d-a15e-f94a37d0667a
28 lines
860 B
Python
28 lines
860 B
Python
from pyalchemybiz.lib.base import *
|
|
|
|
|
|
class TemplateController(BaseController):
|
|
|
|
def view(self, url):
|
|
"""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)
|
|
|
|
By default this controller aborts the request with a 404 (Not
|
|
Found)
|
|
"""
|
|
abort(404)
|