]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
docs
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 7 Jul 2005 03:36:24 +0000 (03:36 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 7 Jul 2005 03:36:24 +0000 (03:36 +0000)
doc/build/components/autohandler [new file with mode: 0644]
doc/build/genhtml.py [new file with mode: 0644]

diff --git a/doc/build/components/autohandler b/doc/build/components/autohandler
new file mode 100644 (file)
index 0000000..f87e3a9
--- /dev/null
@@ -0,0 +1,22 @@
+<%flags>inherit =None</%flags>
+<html>
+<head>
+       <title><& REQUEST:title &></title>
+       <link href="style.css" rel="stylesheet" type="text/css"></link>
+       <link href="syntaxhighlight.css" rel="stylesheet" type="text/css"></link>
+</head>
+<body>
+
+% m.call_next()
+
+<center>
+</center>
+</body>
+</html>
+
+
+<%method title>
+Welcome to Myghty!
+</%method>
+
+
diff --git a/doc/build/genhtml.py b/doc/build/genhtml.py
new file mode 100644 (file)
index 0000000..d456b9c
--- /dev/null
@@ -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)
+
+
+