summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-12-10 17:50:18 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-12-10 17:50:18 +0000
commit203853eddc8bffccc25eb8549237da05f325e606 (patch)
treee8aa0aa072840499e7ce7d9f2605e9b739489b48 /doc
parent0dff7f4ed286ac108a7784cc7e5d38e805b233bb (diff)
downloadsqlalchemy-203853eddc8bffccc25eb8549237da05f325e606.tar.gz
would help to have the files all checked in....
Diffstat (limited to 'doc')
-rw-r--r--doc/build/content/documentation.myt20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/build/content/documentation.myt b/doc/build/content/documentation.myt
new file mode 100644
index 000000000..af73c2a61
--- /dev/null
+++ b/doc/build/content/documentation.myt
@@ -0,0 +1,20 @@
+<%flags>inherit='base.myt'</%flags>
+<%args>
+ extension
+ toc
+</%args>
+<%method title>
+ SQLAlchemy Documentation
+</%method>
+<& index.myt, toc=toc, extension=extension, onepage=True &>
+% for file in toc.filenames:
+% current = toc.get_by_file(file)
+<A name="<% current.path %>"></a>
+<& nav.myt:pagenav, item=current, extension=extension, onepage=True &>
+<div class="topnavmain">
+ <div class="topnavheader"><% current.description %></div>
+</div>
+<div class="sectioncontent">
+% m.comp(file + ".myt", toc=toc, extension=extension, onepage=True)
+</div>
+%