aboutsummaryrefslogtreecommitdiff
path: root/spec/xs3p/examples/build.xml
blob: 8b4a4e57cbb859e4253134894b9a58da912cb7b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<project name="TestAnt" default="all" basedir=".">
	<description>Script to generate documentation for example schema files using Ant.</description>

	<property name="original-loc" value=".."/>
	<property name="xslt-file" value="xs3p.xsl"/>
	<property name="target-dir" value="ant-results"/>

	<target name="all" description="Generates documentation for all *.xsd files.">
      <xslt basedir="." destdir="${target-dir}"
       extension=".html" style="${original-loc}/${xslt-file}">
         <include name="*.xsd"/>
      </xslt>
	</target>

	<target name="test-external-links" description="Test linking between schema files.">
      <!-- Copy xslt file to local dir. -->
      <copy file="${original-loc}/${xslt-file}" todir="${basedir}"/>
      <!-- address.xsd -->
      <xslt in="address.xsd" out="${target-dir}/address.xsd.html" style="${xslt-file}">
         <param name="searchImportedSchemas" expression="true"/>
         <param name="searchIncludedSchemas" expression="true"/>
         <param name="linksFile" expression="links.xml"/>
      </xslt>
      <!-- ipo.xsd -->
      <xslt in="ipo.xsd" out="${target-dir}/ipo.xsd.html" style="${xslt-file}">
         <param name="searchImportedSchemas" expression="true"/>
         <param name="searchIncludedSchemas" expression="true"/>
         <param name="linksFile" expression="links.xml"/>
      </xslt>
      <!-- report.xsd -->
      <xslt in="report.xsd" out="${target-dir}/report.xsd.html" style="${xslt-file}">
         <param name="searchImportedSchemas" expression="true"/>
         <param name="searchIncludedSchemas" expression="true"/>
         <param name="linksFile" expression="links.xml"/>
      </xslt>
      <!-- Delete local copy of xslt file. -->
      <delete file="${basedir}/${xslt-file}"/>
	</target>

</project>