# HG changeset patch
# User cmlenz
# Date 1213717358 0
# Node ID 6a424a74f5be8b2fcd1747d1bc89285c9ac1a69b
# Parent 9f28d17b1f723cb61c9d17b26ad6e41c1157568d
Remove obsolete webpy example.
diff --git a/examples/webpy/README.txt b/examples/webpy/README.txt
deleted file mode 100644
--- a/examples/webpy/README.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Sample application that demonstrates the use of Genshi templates in web.py
-(http://webpy.org/).
-
-Try introducing errors (not just XML well-formedness errors, those are boring)
-in the template, and you'll see a nice error screen with pretty good
-information about the exact error.
diff --git a/examples/webpy/hello.html b/examples/webpy/hello.html
deleted file mode 100644
--- a/examples/webpy/hello.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- web.py with Genshi
-
-
-
-
diff --git a/examples/webpy/hello.py b/examples/webpy/hello.py
deleted file mode 100644
--- a/examples/webpy/hello.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import os
-from genshi.template import TemplateLoader
-import web
-
-loader = TemplateLoader([os.path.dirname(os.path.abspath(__file__))],
- auto_reload=True)
-urls = ('/(.*)', 'hello')
-
-
-class hello(object):
-
- def GET(self, name):
- i = web.input(times=1)
- if not name:
- name = 'world'
- name = name.decode('utf-8')
-
- tmpl = loader.load('hello.html')
- stream = tmpl.generate(name=name, times=int(i.times))
-
- web.header('Content-Type', 'text/html; charset=utf-8', unique=True)
- print stream.render('html')
-
-
-if __name__ == '__main__':
- web.webapi.internalerror = web.debugerror
- web.run(urls, globals())