# HG changeset patch # User paulb # Date 1138381227 0 # Node ID 727867e25309904fccf57abd9c374186797291b1 # Parent 0014798ee7d8eed5e2477972ba59830caf45ebc2 [project @ 2006-01-27 17:00:27 by paulb] Added a recursive template example to the demonstration. diff -r 0014798ee7d8 -r 727867e25309 examples/Common/DemoApp.py --- a/examples/Common/DemoApp.py Fri Jan 27 17:00:08 2006 +0000 +++ b/examples/Common/DemoApp.py Fri Jan 27 17:00:27 2006 +0000 @@ -18,6 +18,7 @@ from Dictionary.Dict import Dict import Questionnaire import PEP241 +import Recursive import VerySimple # A very simple index page. @@ -41,6 +42,7 @@
  • A simple word lookup interface
  • A questionnaire generator
  • A Python package repository user interface
  • +
  • A recursive template example
  • A very simple example
  • You can run all of the examples independently, too. See the @@ -69,6 +71,7 @@ "dictionary" : Dictionary.get_site(dict), "questionnaire" : Questionnaire.get_site(), "pep241" : PEP241.get_site(), + "recursive" : Recursive.get_site(), "verysimple" : VerySimple.get_site(), "" : DemoResource(), })