view examples/cherrypy/index.py @ 320:2295fb564250 trunk

Forgot to add myghty templates for [393].
author cmlenz
date Tue, 24 Oct 2006 16:44:32 +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()
Copyright (C) 2012-2017 Edgewall Software