summaryrefslogtreecommitdiff
path: root/doc/docstructure.py
diff options
context:
space:
mode:
authorscoder <none@none>2008-04-18 21:42:35 +0200
committerscoder <none@none>2008-04-18 21:42:35 +0200
commitd829ebcce1fe9c762de4730eabcc9260ecb575f6 (patch)
tree9144e4e37986aabb1cc1b591a274c57b2e050ecc /doc/docstructure.py
parented6841179fdb9023b881c4486bda12f5a7d953d8 (diff)
downloadpython-lxml-d829ebcce1fe9c762de4730eabcc9260ecb575f6.tar.gz
[svn r3558] r4002@delle: sbehnel | 2008-04-18 21:38:47 +0200
external module to describe doc structure --HG-- branch : trunk
Diffstat (limited to 'doc/docstructure.py')
-rw-r--r--doc/docstructure.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/docstructure.py b/doc/docstructure.py
new file mode 100644
index 00000000..81966b68
--- /dev/null
+++ b/doc/docstructure.py
@@ -0,0 +1,24 @@
+
+SITE_STRUCTURE = [
+ ('lxml', ('main.txt', 'intro.txt', '../INSTALL.txt', 'lxml2.txt',
+ 'performance.txt', 'compatibility.txt', 'FAQ.txt')),
+ ('Developing with lxml', ('tutorial.txt', '@API reference',
+ 'api.txt', 'parsing.txt',
+ 'validation.txt', 'xpathxslt.txt',
+ 'objectify.txt', 'lxmlhtml.txt',
+ 'cssselect.txt', 'elementsoup.txt')),
+ ('Extending lxml', ('resolvers.txt', 'extensions.txt',
+ 'element_classes.txt', 'sax.txt', 'capi.txt')),
+ ('Developing lxml', ('build.txt', 'lxml-source-howto.txt',
+ '@Release Changelog', '../CREDITS.txt')),
+ ]
+
+HREF_MAP = {
+ "API reference" : "api/index.html"
+}
+
+BASENAME_MAP = {
+ 'main' : 'index',
+ 'INSTALL' : 'installation',
+ 'CREDITS' : 'credits',
+}