Mercurial > genshi > mirror
view examples/cherrypy/index.py @ 296:ebc084d5bcdb trunk
Some changes to usage of absolute vs. relative template paths to ensure that the filenamed-keyed cache employed by the `TemplateLoader` doesn't mix up templates with the same name, but from different subdirectories.
author | cmlenz |
---|---|
date | Fri, 13 Oct 2006 14:27:15 +0000 |
parents | 8a13cbab435e |
children | 406915754870 |
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()