view examples/cherrypy/index.py @ 278:8de2620504b9

Fix the handling of namespace context for match templates.
author cmlenz
date Mon, 02 Oct 2006 10:49:32 +0000
parents aa16cebbcfe4
children 3879c9ad3472
line wrap: on
line source
import os
import sys

import cherrypy
from genshi.template import TemplateLoader

loader = TemplateLoader([os.path.dirname(os.path.abspath(__file__))])


class Example(object):

    @cherrypy.expose
    def index(self):
        tmpl = loader.load('index.html')
        return tmpl.generate(name='world').render('xhtml')


cherrypy.root = Example()

if __name__ == '__main__':
    cherrypy.config.update(file='config.txt')
    cherrypy.server.start()
Copyright (C) 2012-2017 Edgewall Software