2008-02-02 | paulb | file changeset files shortlog | [project @ 2008-02-02 23:35:36 by paulb] Removed local default encoding attributes. Improved the SimpleMap resource documentation and initialisation features. |
paulb@416 | 1 | #!/usr/bin/env python |
paulb@416 | 2 | |
paulb@559 | 3 | from WebStack.Adapters.JavaServlet import deploy |
paulb@416 | 4 | from Calendar import CalendarResource |
paulb@493 | 5 | |
paulb@718 | 6 | CalendarApp = deploy(CalendarResource(), handle_errors=0) |
paulb@718 | 7 | #CalendarApp = deploy(CalendarResource("iso-8859-1"), handle_errors=0) |
paulb@416 | 8 | |
paulb@416 | 9 | # vim: tabstop=4 expandtab shiftwidth=4 |