aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-07-05 06:46:51 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-07-05 06:46:51 +0200
commit651d5df1f90985a28a4e7a47cf54292e6f7fefb2 (patch)
tree7f1e6a516cc1769783ca3b5e78659b8d1bf146ef /build.xml
parentae86aa2b5685f0e4f4c6cce9ee3511e60dff7dda (diff)
downloadsemanticscuttle-651d5df1f90985a28a4e7a47cf54292e6f7fefb2.tar.gz
semanticscuttle-651d5df1f90985a28a4e7a47cf54292e6f7fefb2.tar.bz2
add stylesheet to docs
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml13
1 files changed, 10 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 7b9229d..ef57fb4 100644
--- a/build.xml
+++ b/build.xml
@@ -208,10 +208,10 @@
</target>
- <!-- you need to have the python docutils package installed, since
- we use the rst2html tool -->
<target name="build-docs" description="render documentation">
- <rST format="html" uptodate="true">
+ <rST format="html" uptodate="false"
+ toolparam="--stylesheet=res/docs/style.css"
+ >
<fileset dir="doc">
<include name="ChangeLog"/>
<include name="**.txt"/>
@@ -221,6 +221,13 @@
<exclude name="developers/TODO.rst"/>
</fileset>
<mapper type="regexp" from="^doc/(.+?)(.rst|.txt)?$" to="dist/docs/\1.html"/>
+<!--
+ <filterchain>
+ <replacetokenswithfile dir="res/docs">
+ <
+ </replacetokenswithfile>
+ </filterchain>
+-->
</rST>
</target>