diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-07-05 06:46:51 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-07-05 06:46:51 +0200 |
commit | 651d5df1f90985a28a4e7a47cf54292e6f7fefb2 (patch) | |
tree | 7f1e6a516cc1769783ca3b5e78659b8d1bf146ef /build.xml | |
parent | ae86aa2b5685f0e4f4c6cce9ee3511e60dff7dda (diff) | |
download | semanticscuttle-651d5df1f90985a28a4e7a47cf54292e6f7fefb2.tar.gz semanticscuttle-651d5df1f90985a28a4e7a47cf54292e6f7fefb2.tar.bz2 |
add stylesheet to docs
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -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> |