forked from oroinc/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
229 lines (200 loc) · 11.5 KB
/
build.xml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<project name="Oro Documentation Project" basedir="." default="help">
<target name="help" description="Print additional usage instructions.">
<echo>Main targets:</echo>
<echo/>
<echo> html Builds standalone HTML files.</echo>
<echo> dirhtml Builds HTML files named index.html in directories.</echo>
<echo> singlehtml Builds a single large HTML file.</echo>
<echo> pickle Builds pickle files.</echo>
<echo> json Builds JSON files.</echo>
<echo> htmlhelp Builds HTML files and a HTML help project.</echo>
<echo> qthelp Builds HTML files and a qthelp project.</echo>
<echo> devhelp Builds HTML files and a Devhelp project.</echo>
<echo> epub Builds an epub.</echo>
<echo> latex Builds LaTeX files, you can set paper=a4 or paper=letter.</echo>
<echo> latexpdf Builds LaTeX files and run them through pdflatex.</echo>
<echo> text Builds text files.</echo>
<echo> man Builds manual pages.</echo>
<echo> texinfo Builds Texinfo files.</echo>
<echo> info Builds Texinfo files and run them through makeinfo.</echo>
<echo> gettext Builds PO message catalogs.</echo>
<echo> changes Builds an overview of all changed/added/deprecated items.</echo>
<echo> linkcheck Checks all external links for integrity.</echo>
<echo> doctest Runs all doctests embedded in the documentation (if enabled).</echo>
<echo/>
<echo>Build artifacts are created within the "build" directory.</echo>
<echo/>
<echo>You can set the following properties:</echo>
<echo> sphinxbuild Absolute path to sphinx-build executable.</echo>
<echo> sphinxopts Sphinx-build options override (default is -nW).</echo>
<echo> builddir Build directory location.</echo>
<echo> paper Paper size for LaTeX (supported sizes: a4, letter).</echo>
<echo/>
</target>
<!-- Include Ant-Contrib to use "if", "var" and other goodies. -->
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="/usr/share/java/lib/ant-contrib-0.3.jar"/>
<!-- RedHat/CentOS/Fedora -->
<pathelement location="/usr/share/java/ant/ant-contrib.jar"/>
</classpath>
</taskdef>
<macrodef name="sphinx">
<attribute name="format" default="html"/>
<attribute name="options" default="${sphinxopts}"/>
<attribute name="destination" default="${builddir}/html"/>
<sequential>
<echo level="verbose">${sphinxbuild} -b @{format} @{options} . @{destination}</echo>
<exec dir="${basedir}" executable="${sphinxbuild}" failonerror="true">
<arg line="-b @{format}"/>
<arg line="-d ${builddir}/doctrees"/>
<arg line="${paperopt}"/>
<arg line="@{options}"/>
<arg value="."/>
<arg line="@{destination}"/>
</exec>
</sequential>
</macrodef>
<target name="init" description="Initialize the environment.">
<!-- Guess the best sphinx-build executable -->
<!-- Alternate installation with the user scheme -->
<condition property="sphinxbuild" value="${user.home}/.local/bin/sphinx-build">
<available file="${user.home}/.local/bin/sphinx-build" type="file"/>
</condition>
<!-- Fedora, Amazon Linux AMI -->
<condition property="sphinxbuild" value="/usr/bin/sphinx-build">
<available file="/usr/bin/sphinx-build" type="file"/>
</condition>
<!-- Debian -->
<condition property="sphinxbuild" value="/usr/share/sphinx/scripts/python2/sphinx-build">
<available file="/usr/share/sphinx/scripts/python2/sphinx-build" type="file"/>
</condition>
<!-- Default -->
<property name="sphinxbuild" value="sphinx-build"/>
<property name="sphinxopts" value="-nW"/>
<property name="builddir" value="${basedir}/_build"/>
<property name="paper" value="letter"/>
<condition property="paperopt" value="-D latex_paper_size=a4">
<equals arg1="${paper}" arg2="a4"/>
</condition>
<condition property="paperopt" value="-D latex_paper_size=letter">
<equals arg1="${paper}" arg2="letter"/>
</condition>
</target>
<target name="clean" description=".">
<delete dir="${builddir}" quiet="true"/>
</target>
<target name="html" depends="init" description="Builds standalone HTML files.">
<sphinx format="html" destination="${builddir}/html"/>
<echo level="info"/>
<echo level="info">Build finished. The HTML pages are in ${builddir}/html.</echo>
</target>
<target name="dirhtml" depends="init" description="Builds HTML files named index.html in directories.">
<sphinx format="dirhtml" destination="${builddir}/dirhtml"/>
<echo level="info"/>
<echo level="info">Build finished. The HTML pages are in ${builddir}/dirhtml.</echo>
</target>
<target name="singlehtml" depends="init" description="Builds a single large HTML file.">
<sphinx format="singlehtml" destination="${builddir}/singlehtml"/>
<echo level="info"/>
<echo level="info">Build finished. The HTML page is in ${builddir}/singlehtml.</echo>
</target>
<target name="pickle" depends="init" description="Builds pickle files.">
<sphinx format="pickle" destination="${builddir}/pickle"/>
<echo level="info"/>
<echo level="info">Build finished; now you can process the pickle files.</echo>
</target>
<target name="json" depends="init" description="Builds JSON files.">
<sphinx format="json" destination="${builddir}/json"/>
<echo level="info"/>
<echo level="info">Build finished; now you can process the JSON files.</echo>
</target>
<target name="htmlhelp" depends="init" description="Builds HTML files and a HTML help project.">
<sphinx format="htmlhelp" destination="${builddir}/htmlhelp"/>
<echo level="info"/>
<echo level="info">Build finished; now you can run HTML Help Workshop with the .hhp project file in ${builddir}/htmlhelp.</echo>
</target>
<target name="qthelp" depends="init" description="Builds HTML files and a qthelp project.">
<sphinx format="qthelp" destination="${builddir}/qthelp"/>
<echo level="info"/>
<echo level="info">Build finished; now you can run "qcollectiongenerator" with the .qhcp project file in ${builddir}/qthelp, like this:</echo>
<echo level="info"># qcollectiongenerator ${builddir}/qthelp/TheOroPlatform.qhcp</echo>
<echo level="info">To view the help file:</echo>
<echo level="info"># assistant -collectionFile ${builddir}/qthelp/TheOroPlatform.qhc</echo>
</target>
<target name="devhelp" depends="init" description="Builds HTML files and a Devhelp project.">
<sphinx format="devhelp" destination="${builddir}/devhelp"/>
<echo level="info"/>
<echo level="info">Build finished.</echo>
<echo level="info">To view the help file:</echo>
<echo level="info"># mkdir -p $$HOME/.local/share/devhelp/TheOroPlatform</echo>
<echo level="info"># ln -s ${builddir}/devhelp $$HOME/.local/share/devhelp/TheOroPlatform</echo>
<echo level="info"># devhelp</echo>
</target>
<target name="epub" depends="init" description="Builds an epub.">
<sphinx format="epub" destination="${builddir}/epub"/>
<echo level="info"/>
<echo level="info">Build finished. The epub file is in ${builddir}/epub.</echo>
</target>
<target name="latex" depends="init" description="Builds LaTeX files, you can set paper=a4 or paper=letter.">
<sphinx format="latex" destination="${builddir}/latex"/>
<echo level="info"/>
<echo level="info">Build finished; the LaTeX files are in ${builddir}/latex.</echo>
<echo level="info">Run make in that directory to run these through (pdf)latex (use make latexpdf here to do that automatically).</echo>
</target>
<target name="latexpdf" depends="init" description="Builds LaTeX files and run them through pdflatex.">
<sphinx format="latex" destination="${builddir}/latex"/>
<echo level="info">Running LaTeX files through pdflatex...</echo>
<exec dir="${basedir}" executable="make" failonerror="true">
<arg line="-C ${builddir}/latex"/>
<arg line="all-pdf"/>
</exec>
<echo level="info">pdflatex finished; the PDF files are in ${builddir}/latex.</echo>
</target>
<target name="text" depends="init" description="Builds text files.">
<sphinx format="text" destination="${builddir}/text"/>
<echo level="info"/>
<echo level="info">Build finished. The text files are in ${builddir}/text.</echo>
</target>
<target name="man" depends="init" description="Builds manual pages.">
<sphinx format="man" destination="${builddir}/man"/>
<echo level="info"/>
<echo level="info">Build finished. The manual pages are in ${builddir}/man.</echo>
</target>
<target name="texinfo" depends="init" description="Builds Texinfo files.">
<sphinx format="texinfo" destination="${builddir}/texinfo"/>
<echo level="info"/>
<echo level="info">Build finished. The Texinfo files are in ${builddir}/texinfo.</echo>
<echo level="info">Run make in that directory to run these through makeinfo (use make info here to do that automatically).</echo>
</target>
<target name="info" depends="init" description="Builds Texinfo files and run them through makeinfo.">
<sphinx format="texinfo" destination="${builddir}/texinfo"/>
<echo level="info">Running Texinfo files through makeinfo...</echo>
<exec dir="${basedir}" executable="make" failonerror="true">
<arg line="-C ${builddir}/texinfo"/>
<arg line="info"/>
</exec>
<echo level="info">makeinfo finished; the Info files are in ${builddir}/texinfo.</echo>
</target>
<target name="gettext" depends="init" description="Builds PO message catalogs.">
<!-- the i18n builder cannot share the environment and doctrees with the others -->
<sphinx format="gettext" options="$(PAPEROPT_${paper}) ${sphinxopts}" destination="${builddir}/locale"/>
<echo level="info"/>
<echo level="info">Build finished. The message catalogs are in ${builddir}/locale.</echo>
</target>
<target name="changes" depends="init" description="Builds an overview of all changed/added/deprecated items.">
<sphinx format="changes" destination="${builddir}/changes"/>
<echo level="info"/>
<echo level="info">The overview file is in ${builddir}/changes.</echo>
</target>
<target name="linkcheck" depends="init" description="Checks all external links for integrity.">
<sphinx format="linkcheck" destination="${builddir}/linkcheck"/>
<echo level="info"/>
<echo level="info">Link check complete; look for any errors in the above output or in ${builddir}/linkcheck/output.txt.</echo>
</target>
<target name="doctest" depends="init" description="Runs all doctests embedded in the documentation (if enabled).">
<sphinx format="doctest" destination="${builddir}/doctest"/>
<echo level="info">Testing of doctests in the sources finished, look at the results in ${builddir}/doctest/output.txt.</echo>
</target>
</project>