# HG changeset patch # User paulb # Date 1121639878 0 # Node ID 8564e777004daf4e73eb773797ea7c1a7c22bad2 # Parent 7e924f759ce24a913cb3ef848f12c77442e670d3 [project @ 2005-07-17 22:37:58 by paulb] Added the very simple example to the demo. diff -r 7e924f759ce2 -r 8564e777004d examples/BaseHTTPRequestHandler/DemoApp.py --- a/examples/BaseHTTPRequestHandler/DemoApp.py Sun Jul 17 22:35:19 2005 +0000 +++ b/examples/BaseHTTPRequestHandler/DemoApp.py Sun Jul 17 22:37:58 2005 +0000 @@ -15,6 +15,7 @@ import Configurator import Questionnaire import PEP241 +import VerySimple # A very simple index page. @@ -35,6 +36,7 @@
  • A Webshop-style system configurator
  • A questionnaire generator
  • A Python package repository user interface
  • +
  • A very simple example
  • You can run all of the examples independently, too. See the examples directory for the code.

    @@ -48,6 +50,7 @@ "configurator" : Configurator.get_site(), "questionnaire" : Questionnaire.get_site(), "pep241" : PEP241.get_site(), + "verysimple" : VerySimple.get_site(), "" : DemoResource(), })