# HG changeset patch # User paulb # Date 1094247347 0 # Node ID d76cf84b94be323845de2b58363a777a72f294a7 # Parent 9e59e8a3d2707514e185e7bacbda2f5442828167 [project @ 2004-09-03 21:35:47 by paulb] Added the Unicode example. diff -r 9e59e8a3d270 -r d76cf84b94be examples/CGI/UnicodeHandler.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/CGI/UnicodeHandler.py Fri Sep 03 21:35:47 2004 +0000 @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +# NOTE: Path manipulation requires manual customisation. + +import sys +sys.path.append("/home/paulb/Software/Python/WebStack") +sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common") + +from WebStack.Adapters import CGI +from Unicode import UnicodeResource + +resource = UnicodeResource() +CGI.respond(resource) + +# vim: tabstop=4 expandtab shiftwidth=4