From: Mike Bayer Date: Thu, 7 Jul 2005 03:36:24 +0000 (+0000) Subject: docs X-Git-Tag: rel_0_1_0~909 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9314e15b02197d55fd798133560641e11e84793b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git docs --- diff --git a/doc/build/components/autohandler b/doc/build/components/autohandler new file mode 100644 index 0000000000..f87e3a9b87 --- /dev/null +++ b/doc/build/components/autohandler @@ -0,0 +1,22 @@ +<%flags>inherit =None + + + <& REQUEST:title &> + + + + + +% m.call_next() + +
+
+ + + + +<%method title> +Welcome to Myghty! + + + diff --git a/doc/build/genhtml.py b/doc/build/genhtml.py new file mode 100644 index 0000000000..d456b9cf5e --- /dev/null +++ b/doc/build/genhtml.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python +import sys,re,os + +component_root = [ + {'components': './components'}, + {'content' : './content'} +] +doccomp = ['document_base.myt'] +output = os.path.dirname(os.getcwd()) + +sys.path = ['./lib/'] + sys.path + +import documentgen + +documentgen.genall(doccomp, component_root, output) + + +