Mercurial > genshi > mirror
annotate examples/cherrypy/index.py @ 285:1f5753346a75 trunk
Updated change log.
author | cmlenz |
---|---|
date | Thu, 12 Oct 2006 12:43:46 +0000 |
parents | 8a13cbab435e |
children | 406915754870 |
rev | line source |
---|---|
266 | 1 import os |
2 import sys | |
3 | |
4 import cherrypy | |
5 from genshi.template import TemplateLoader | |
6 | |
7 loader = TemplateLoader([os.path.dirname(os.path.abspath(__file__))]) | |
8 | |
9 | |
10 class Example(object): | |
11 | |
12 @cherrypy.expose | |
13 def index(self): | |
14 tmpl = loader.load('index.html') | |
15 return tmpl.generate(name='world').render('xhtml') | |
16 | |
17 | |
18 cherrypy.root = Example() | |
19 | |
20 if __name__ == '__main__': | |
21 cherrypy.config.update(file='config.txt') | |
22 cherrypy.server.start() |