# HG changeset patch # User paulb # Date 1095782363 0 # Node ID 3ff10a6ccfae1b2f3c09df10396e316a1d5fe003 # Parent a20cc96bebed4520f14975371eb298fde844c41e [project @ 2004-09-21 15:59:23 by paulb] Added the Unicode example for Webware CVS (later than 0.8.1). diff -r a20cc96bebed -r 3ff10a6ccfae examples/Webware/UnicodeContext/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/Webware/UnicodeContext/__init__.py Tue Sep 21 15:59:23 2004 +0000 @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +""" +Webware context for the Unicode application (post Webware 0.8.1). +""" + +from WebStack.Adapters.Webware import WebStackURLParser +from Unicode import UnicodeResource + +# NOTE: Initialising a shared resource. + +resource = UnicodeResource() +urlParser = WebStackURLParser(resource) + +# vim: tabstop=4 expandtab shiftwidth=4