Mercurial > genshi > mirror
annotate examples/cherrypy/index.py @ 377:9aa6aa18fa35 trunk
Add `Attrs` class to `genshi.core.__all__`, so that it can be imported directly from the `genshi` package.
author | cmlenz |
---|---|
date | Thu, 23 Nov 2006 12:36:43 +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() |