aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.xml10
-rw-r--r--doc/index.rst12
2 files changed, 15 insertions, 7 deletions
diff --git a/build.xml b/build.xml
index cd80c06..a51bdbb 100644
--- a/build.xml
+++ b/build.xml
@@ -214,13 +214,20 @@
<include name="doc/ChangeLog"/>
<include name="doc/**.txt"/>
<include name="doc/**.rst"/>
+ <include name="doc/**/*.rst"/>
</fileset>
</foreach>
</target>
<target name="build-doc-file" depends="check">
<echo msg="${fname}"/>
- <exec command="rst2html ${fname} > dist/${fname}.html" checkreturn="1"/>
+ <php function="preg_replace" returnProperty="outfile">
+ <param value="/^(.+)(.rst|.txt)$/"/>
+ <param value="\1.html"/>
+ <param value="${fname}"/>
+ </php>
+ <!--<echo msg="${fname} - ${outfile}"/>-->
+ <exec command="rst2html ${fname} > dist/${outfile}" checkreturn="1"/>
</target>
@@ -334,6 +341,7 @@
<mkdir dir="dist" />
<mkdir dir="dist/doc" />
+ <mkdir dir="dist/doc/developers" />
</target>
</project>
diff --git a/doc/index.rst b/doc/index.rst
index fc75aa6..a260642 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -34,10 +34,10 @@ Developer documentation
- `Running unit testes`__
- `How to translate SemanticScuttle`__
-__ rules.html
-__ api.html
-__ debugging.html
-__ release-new-version.html
-__ running-unit-tests.html
-__ translation.html
+__ developers/rules.html
+__ developers/api.html
+__ developers/debugging.html
+__ developers/release-new-version.html
+__ developers/running-unit-tests.html
+__ developers/translation.html