Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephane Crozat
hdoc
Commits
c0685863
Commit
c0685863
authored
Jan 05, 2017
by
simei.yin
Browse files
add comments to ant file
parent
7aef6932
Changes
1
Hide whitespace changes
Inline
Side-by-side
opale_to_basex/opale_to_basex.ant
View file @
c0685863
<project name="opale_to_basex" default="clean">
<project name="opale_to_basex" default="clean">
<property file="build.properties"/>
<property file="build.properties"/>
<echo message="To be implemented..."/>
<target name="AllFiles">
<target name="AllFiles">
<delete>
<delete>
<fileset dir="${outputPath}" />
<fileset dir="${outputPath}" />
</delete>
</delete>
<!-- Copy input files into input folder of project opale_to_hdoc and execute it -->
<copy todir="${inputOpaleToHdoc}">
<copy todir="${inputOpaleToHdoc}">
<fileset dir="${inputPath}"/>
<fileset dir="${inputPath}"/>
</copy>
</copy>
<ant antfile="../opale_to_hdoc/opale_to_hdoc.ant" inheritAll="false"/>
<ant antfile="../opale_to_hdoc/opale_to_hdoc.ant" inheritAll="false"/>
<copy todir="${inputHdocToBasex}">
<!-- Copy input files into input folder of project hdoc_to_basex and execute it -->
<copy todir="${inputHdocToBasex}">
<fileset dir="${outputOpaleToHdoc}"/>
<fileset dir="${outputOpaleToHdoc}"/>
</copy>
</copy>
<ant antfile="../hdoc_to_basex/hdoc_to_basex.ant" inheritAll="false"/>
<ant antfile="../hdoc_to_basex/hdoc_to_basex.ant" inheritAll="false"/>
<copy todir="${outputPath}" >
<!-- copy output files into output of this projet -->
<copy todir="${outputPath}" >
<fileset dir="${outputHdocToBasex}"/>
<fileset dir="${outputHdocToBasex}"/>
</copy>
</copy>
</target>
</target>
<target name="clean" depends="AllFiles">
<!-- -->
<target name="clean" depends="AllFiles">
<!-- clean temp files -->
<delete includeemptydirs="true" verbose="true">
<delete includeemptydirs="true" verbose="true">
<fileset dir="${inputOpaleToHdoc}">
<fileset dir="${inputOpaleToHdoc}">
<include name="*.scar"/>
<include name="*.scar"/>
</fileset>
</fileset>
</delete>
</delete>
<delete includeemptydirs="true" verbose="true">
<delete includeemptydirs="true" verbose="true">
<fileset dir="${outputOpaleToHdoc}">
<fileset dir="${outputOpaleToHdoc}">
<include name="*.hdoc"/>
<include name="*.hdoc"/>
</fileset>
</fileset>
</delete>
</delete>
<delete includeemptydirs="true" verbose="true">
<delete includeemptydirs="true" verbose="true">
<fileset dir="${inputHdocToBasex}">
<fileset dir="${inputHdocToBasex}">
<include name="*.hdoc"/>
<include name="*.hdoc"/>
</fileset>
</fileset>
</delete>
</delete>
<delete includeemptydirs="true" verbose="true">
<delete includeemptydirs="true" verbose="true">
<fileset dir="${outputHdocToBasex}"/>
<fileset dir="${outputHdocToBasex}"/>
</delete>
</delete>
</target>
</target>
</project>
</project>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment