summaryrefslogtreecommitdiff
path: root/doc/reference
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2013-05-04 00:27:37 +0200
committerDirk Baechle <dl9obn@darc.de>2013-05-04 00:27:37 +0200
commitb714ec23a5771ef0e243721846a81654358bbb78 (patch)
treef51a43bf08f0d20c287e55164c34a6d2b6584f7f /doc/reference
parent94bc2dcdf2f042f73cf81832739f1e15a2c21589 (diff)
downloadscons-b714ec23a5771ef0e243721846a81654358bbb78.tar.gz
- corrected xincludes for MAN pages
- started to work on support for UserGuide examples - added xslt for transforming SCons XSD to Docbook documents - added SConstructs for all documents and titlepage for the UserGuide
Diffstat (limited to 'doc/reference')
-rw-r--r--doc/reference/SConstruct47
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/reference/SConstruct b/doc/reference/SConstruct
new file mode 100644
index 00000000..b306b4f6
--- /dev/null
+++ b/doc/reference/SConstruct
@@ -0,0 +1,47 @@
+#
+# SConstruct file for building SCons documentation.
+#
+
+#
+# __COPYRIGHT__
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+import os
+
+env = Environment(ENV={'PATH' : os.environ['PATH']},
+ tools=['docbook'],
+ toolpath=['../../src/engine/SCons/Tool'])
+
+has_pdf = False
+if (env.WhereIs('fop') or
+ env.WhereIs('xep') or
+ env.WhereIs('jw')):
+ has_pdf = True
+
+#
+# Create document
+#
+env.DocbookXInclude('reference_xi.xml', 'main.xml')
+env.DocbookXslt('reference.xml', 'reference_xi.xml',
+ xsl='../xslt/to_docbook.xslt')
+env.DocbookHtml('reference.html','reference.xml')
+if has_pdf:
+ env.DocbookPdf('reference.pdf','reference.xml')