Skip to content

Commit

Permalink
Remove unneeded build stages now that docs are in markdown.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbjones committed Nov 22, 2018
1 parent 48b330a commit ec604a4
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,11 @@
<!-- Generate HTML documentation using an XSLT transform -->
<!-- Note that you MUST have a Xalan 1.x XSLT processor on
your CLASSPATH in order for this to work -->
<target name="docs" depends="init,docbookhtml,tablehtml">
<target name="docs" depends="init,docbookhtml">
<style basedir="." destdir="${build.docs}/eml-${version}" style="eml-documentation.xsl"
includes="xsd/*.xsd" excludes="eml-documentation.xsd" classpath="${cpath}" processor="trax"/>
<copy todir="${build.docs}" filtering="yes">
<fileset dir=".">
<include name="index.html"/>
<include name="default.css"/>
</fileset>
</copy>
Expand Down Expand Up @@ -260,6 +259,8 @@
<fileset dir="./docs">
<exclude name="${datamanager.name}/**"/>
</fileset>
<fileset dir="${build.docs}">
</fileset>
</copy>
<copy todir="${ver.src}" filtering="yes">
<fileset dir="${srcdir}">
Expand Down Expand Up @@ -327,20 +328,6 @@
</echo>
</target>

<target name="tablehtml" depends="init">
<copy file="default.css" todir="${build.docs}"/>
<style basedir="." style="buildDependencyTable.xsl"
in="xsd/eml.xsd"
out="${build.docs}/eml-${version}/eml-dependencies.html"
classpath="${cpath}" processor="trax"/>
<echo>
************************************************
Dependency Table rendered to HTML.
The html file is docs/eml-${version}/eml-dependencies.html.
************************************************
</echo>
</target>

<target name="buildenumerations" depends="init">
<style basedir="." style="getunits.xsl"
in="eml-unitDictionary.xml"
Expand Down

0 comments on commit ec604a4

Please sign in to comment.