source: main/trunk/greenstone3/build.xml@ 25570

Last change on this file since 25570 was 25570, checked in by sjm84, 12 years ago

CGI capabilities are now on by default. The build.xml file will insert the necessary perl path into the web.xml file

File size: 99.6 KB
RevLine 
[15124]1<?xml version="1.0"?>
2<!-- ======================================================================
3 March 2005
4
5 Greenstone3 build and install script
6
7 kjdon
8 ====================================================================== -->
9<project name="greenstone3" default="usage" basedir=".">
[20241]10 <echo>os.name: ${os.name}</echo>
[15124]11
[15799]12 <!-- ============ classpath =================== -->
13 <path id="project.classpath">
14 <fileset dir="lib/java">
15 <include name="**/*.jar"/>
16 </fileset>
17 </path>
18
19 <!-- ============ self defined tasks =================== -->
20 <taskdef name="mysetproxy" classname="org.greenstone.anttasks.MySetProxy" classpathref="project.classpath"/>
21 <taskdef name="getuserandpassword" classname="org.greenstone.anttasks.MyGetUserAndPassword" classpathref="project.classpath"/>
[19930]22 <taskdef name="rsr" classname="org.greenstone.anttasks.RegexSearchReplace" classpathref="project.classpath"/>
[21196]23 <!--<taskdef name="svn" classname="org.tigris.subversion.svnant.SvnTask" classpathref="project.classpath"/>-->
[15799]24 <taskdef name="if" classname="ise.antelope.tasks.IfTask" classpathref="project.classpath"/>
[23854]25 <taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" classpathref="project.classpath"/>
26
[19930]27
[15799]28 <!-- ===================== Property Definitions =========================== -->
29
30 <!--
[15124]31
32 Each of the following properties are used in the build script.
33 Values for these properties are set by the first place they are
34 defined, from the following list:
35
36 * Definitions on the "ant" command line (ant -Dfoo=bar compile).
37
38 * Definitions from a "build.properties" file in the top level
[15799]39 source directory of this application.
[15124]40
41 * Definitions from a "build.properties" file in the user's
[15799]42 home directory.
[15124]43
44 * Default definitions in this build.xml file.
45
46 You will note below that property values can be composed based on the
47 contents of previously defined properties. This is a powerful technique
48 that helps you minimize the number of changes required when your development
49 environment is modified. Note that property composition is allowed within
50 "build.properties" files as well as in the "build.xml" script.
51
[15799]52 -->
[18227]53
54 <!-- create build.properties if it has not been created yet -->
55 <if>
56 <bool><not><available file="build.properties"/></not></bool>
57 <copy file="build.properties.in" tofile="build.properties"/>
58 </if>
59
[18515]60 <!-- create the packages dir if it has not been created yet -->
61 <mkdir dir="packages"/>
[15799]62
[15859]63 <!--the first three properties have to be put on the top to be used by build.properties-->
[19960]64 <property name="gs2build.home" value="${basedir}${file.separator}gs2build"/>
[15124]65 <property name="src.packages.home" value="${basedir}/src/packages"/>
[15859]66 <property name="flax.svn.root" value="http://svn.greenstone.org/flax"/>
[19878]67
[15124]68 <property file="build.properties"/>
[16962]69 <if><bool><available file="${user.home}/build.properties"/></bool>
70 <property file="${user.home}/build.properties"/>
71 </if>
[15124]72
[20464]73 <!-- now we've read in properties, apply defaults -->
74 <property name="disable.collection.building" value="false"/>
75
[15124]76 <!-- get properties from the environment -->
77 <property environment="env"/>
[15799]78
[20127]79 <!-- get the filesets defining components and executables -->
[19975]80 <import file="resources/xml/components.xml"/>
[20127]81 <import file="resources/xml/executables.xml"/>
[15799]82
83 <!-- version properties for external packages -->
[20079]84 <!-- for Java versions < 1.4, we print out the message that Java is too old.
[25131]85 For Java 1.4, we use Tomcat 5.5, for Java5 and higher, we use Tomcat 7.0-->
86 <condition property="tomcat.version" value="apache-tomcat-5.5.25" else="apache-tomcat-7.0.26">
[20079]87 <equals arg1="1.4" arg2="${ant.java.version}"/>
88 </condition>
[25131]89 <condition property="tomcat.version.major" value="5" else="7">
[20079]90 <equals arg1="1.4" arg2="${ant.java.version}"/>
91 </condition>
[22320]92 <condition property="privileged.attribute" value="privileged='true'" else="">
[25384]93 <equals arg1="7" arg2="${tomcat.version.major}"/>
[22320]94 </condition>
[20233]95
[22405]96 <property name="axis.zip.version" value="axis-bin-1_4.zip"/>
97 <property name="axis.dir.version" value="axis-1_4"/>
[24077]98 <property name="sqlite.targz.version" value="sqlite-autoconf-3070602.tar.gz"/>
[15799]99
[15124]100 <property name="build.home" value="${basedir}/build"/>
101 <property name="src.home" value="${basedir}/src/java"/>
102 <property name="packages.home" value="${basedir}/packages"/>
103 <!-- this may be set in build.properties, eg if you move the web dir to
104 tomcats webapps directory -->
105 <property name="web.home" value="${basedir}/web"/>
106 <!-- jar files needed by applets go here -->
107 <property name="web.applet" value="${web.home}/applet"/>
[20085]108
[15124]109 <!-- jar files needed by the servlet (and extra ones) go here -->
110 <property name="web.lib" value="${web.home}/WEB-INF/lib"/>
111 <!-- other files needed by the servlet go here -->
112 <property name="web.classes" value="${web.home}/WEB-INF/classes"/>
113 <!--- flax: the WordNet home -->
114 <property name="wn.home" value="${web.home}/WEB-INF/classes/flax/WordNet"/>
115
116 <!-- jni libraries and java wrappers go here -->
117 <property name="lib.jni" value="${basedir}/lib/jni"/>
[19878]118
119 <!-- other jar files needed for installation (but not runtime) go here -->
[18110]120 <property name="lib.java" value="${basedir}/lib/java"/>
[15799]121
[15124]122 <property name="javadocs" value="${basedir}/docs/javadoc"/>
123
124 <property name="app.name" value="greenstone3"/>
125 <property name="app.path" value="/${app.name}"/>
126
[18124]127 <property name="admin.dir" value="${basedir}/admin"/>
[15124]128
129 <!-- defaults - set these on the command line or in build.properties or they will take these default values-->
130 <property name="app.version" value="trunk"/>
131 <property name="branch.path" value="trunk"/>
132 <property name="branch.revision" value="HEAD"/>
133
134 <!--constants -->
135 <property name="svn.root" value="http://svn.greenstone.org"/>
136
[19878]137 <!-- catalina home is set to tomcat basedir if already installed, otherwise
[15124]138 use greenstone's tomcat -->
[20085]139 <condition property="catalina.home" value="${tomcat.installed.path}" else="${packages.home}/tomcat">
[15124]140 <and>
141 <isset property="tomcat.installed.path"/>
142 <not>
[16936]143 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]144 </not>
145 </and>
146 </condition>
[25131]147
[15124]148 <property name="os.linux" value="Linux"/>
149 <property name="os.mac" value="Mac OS X"/>
150 <property name="os.solaris" value="SunOS"/>
151 <property name="os.unix" value="${os.linux},${os.mac},${os.solaris}"/>
[22056]152 <property name="os.windows" value="Windows 95,Windows 98,Windows 2000,Windows 2003,Windows XP,Windows NT,Windows ME,Windows Vista,Windows 7"/> <!-- check this!!!-->
[15124]153
154 <!-- this is true for linux and macs -->
155 <condition property="current.os.isunix">
156 <os family="unix"/>
157 </condition>
158
159 <condition property="current.os.isunixnotmac">
160 <and>
161 <os family="unix"/>
162 <not>
[19933]163 <os family="mac"/>
[15124]164 </not>
165 </and>
166 </condition>
[19878]167
[15124]168 <condition property="current.os.ismac">
169 <os family="mac"/>
170 </condition>
171
172 <condition property="current.os.iswindows">
173 <os family="windows"/>
174 </condition>
175
[19933]176 <!-- is there a better way to do this?? what about solaris?? -->
177 <condition property="os.bin.dir" value="windows">
178 <os family="windows"/>
179 </condition>
180 <condition property="os.bin.dir" value="darwin">
181 <os family="mac"/>
182 </condition>
183 <condition property="os.bin.dir" value="linux">
184 <and>
185 <os family="unix"/>
186 <not>
187 <os family="mac"/>
188 </not>
189 </and>
190 </condition>
191
192
[19878]193 <condition property="collection.building.disabled">
[20464]194 <and>
195 <isset property="disable.collection.building"/>
196 <istrue value="${disable.collection.building}"/>
197 </and>
[19878]198 </condition>
199
[15124]200 <condition property="collection.building.enabled">
201 <not>
[20464]202 <istrue value="${disable.collection.building}"/>
[15124]203 </not>
204 </condition>
[19878]205
[15124]206 <condition property="collection.building.enabled.windows">
207 <and>
[20464]208 <istrue value="${collection.building.enabled}"/>
[15124]209 <isset property="current.os.iswindows"/>
210 </and>
211 </condition>
212
213 <condition property="collection.building.enabled.unix">
214 <and>
[20464]215 <istrue value="${collection.building.enabled}"/>
[15124]216 <isset property="current.os.isunix"/>
217 </and>
218 </condition>
[22847]219
[20085]220 <condition property="static.arg" value="LDFLAGS=-static" else=" ">
[19931]221 <isset property="compile.static"/>
222 </condition>
[22184]223
[22845]224 <!-- If building a release then we want to adjust environment variables so that the support library can be see during compilation -->
225 <if><bool><isset property="use.support.lib"/></bool>
[23599]226 <property name="gnome-lib-dir" value="${basedir}/ext/gnome-lib-minimal/${os.bin.dir}"/>
[22845]227
[23599]228 <if><bool><isset property="env.CFLAGS"/></bool>
229 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CFLAGS}&quot;"/>
230 <else>
231 <property name="cflags.arg" value="CFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
232 </else>
233 </if>
[22845]234
[23599]235 <if><bool><isset property="env.CPPFLAGS"/></bool>
236 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CPPFLAGS}&quot;"/>
237 <else>
238 <property name="cppflags.arg" value="CPPFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
239 </else>
240 </if>
[22847]241
[23599]242 <if><bool><isset property="env.CXXFLAGS"/></bool>
243 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include ${env.CXXFLAGS}&quot;"/>
244 <else>
245 <property name="cxxflags.arg" value="CXXFLAGS=&quot;-I${gnome-lib-dir}/include&quot;"/>
246 </else>
247 </if>
248
249 <if><bool><isset property="env.LDFLAGS"/></bool>
250 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib ${env.LDFLAGS}&quot;"/>
251 <else>
252 <property name="ldflags.arg" value="LDFLAGS=&quot;-L${gnome-lib-dir}/lib&quot;"/>
253 </else>
254 </if>
255
256 <if><bool><isset property="env.PATH"/></bool>
257 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin:${env.PATH}&quot;"/>
258 <else>
259 <property name="path.arg" value="PATH=&quot;${gnome-lib-dir}/bin&quot;"/>
260 </else>
261 </if>
262
263 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
264 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig:${env.PKG_CONFIG_PATH}&quot;"/>
265 <else>
266 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${gnome-lib-dir}/lib/pkgconfig&quot;"/>
267 </else>
268 </if>
269
[23611]270 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
271 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
272 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.DYLD_LIBRARY_PATH}&quot;"/>
273 <else>
274 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
275 </else>
276 </if>
[23599]277 <else>
[23611]278 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
279 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib:${env.LD_LIBRARY_PATH}&quot;"/>
280 <else>
281 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${gnome-lib-dir}/lib&quot;"/>
282 </else>
283 </if>
[23599]284 </else>
285 </if>
286
287 <else>
288 <if><bool><isset property="env.CFLAGS"/></bool>
289 <property name="cflags.arg" value="CFLAGS=&quot;${env.CFLAGS}&quot;"/>
290 <else>
291 <property name="cflags.arg" value=" "/>
292 </else>
293 </if>
294
295 <if><bool><isset property="env.CPPFLAGS"/></bool>
296 <property name="cppflags.arg" value="CPPFLAGS=&quot;${env.CPPFLAGS}&quot;"/>
297 <else>
298 <property name="cppflags.arg" value=" "/>
299 </else>
300 </if>
301
302 <if><bool><isset property="env.CXXFLAGS"/></bool>
303 <property name="cxxflags.arg" value="CXXFLAGS=&quot;${env.CXXFLAGS}&quot;"/>
304 <else>
305 <property name="cxxflags.arg" value=" "/>
306 </else>
307 </if>
308
309 <if><bool><isset property="env.LDFLAGS"/></bool>
310 <property name="ldflags.arg" value="LDFLAGS=&quot;${env.LDFLAGS}&quot;"/>
311 <else>
312 <property name="ldflags.arg" value=" "/>
313 </else>
314 </if>
315
316 <if><bool><isset property="env.PATH"/></bool>
317 <property name="path.arg" value="PATH=&quot;${env.PATH}&quot;"/>
318 <else>
319 <property name="path.arg" value=" "/>
320 </else>
321 </if>
322
323 <if><bool><isset property="env.PKG_CONFIG_PATH"/></bool>
324 <property name="pcpath.arg" value="PKG_CONFIG_PATH=&quot;${env.PKG_CONFIG_PATH}&quot;"/>
325 <else>
326 <property name="pcpath.arg" value=" "/>
327 </else>
328 </if>
329
[23611]330 <if><bool><equals arg1="${os.bin.dir}" arg2="darwin"/></bool>
331 <if><bool><isset property="env.DYLD_LIBRARY_PATH"/></bool>
332 <property name="ldlpath.arg" value="DYLD_LIBRARY_PATH=&quot;${env.DYLD_LIBRARY_PATH}&quot;"/>
333 <else>
334 <property name="ldlpath.arg" value=" "/>
335 </else>
336 </if>
[23599]337 <else>
[23611]338 <if><bool><isset property="env.LD_LIBRARY_PATH"/></bool>
339 <property name="ldlpath.arg" value="LD_LIBRARY_PATH=&quot;${env.LD_LIBRARY_PATH}&quot;"/>
340 <else>
341 <property name="ldlpath.arg" value=" "/>
342 </else>
343 </if>
344 </else>
[23599]345 </if>
346 </else>
[22868]347 </if>
[23611]348 <property name="allargs" value="${cflags.arg} ${cxxflags.arg} ${cppflags.arg} ${ldflags.arg} ${path.arg} ${ldlpath.arg} ${pcpath.arg}"/>
[22868]349
[22184]350 <condition property="gs2.opt.args" value= " " else="--disable-mg --disable-mgpp --disable-accentfold --disable-gdbm --disable-sqlite">
351 <istrue value="${with.jni}"/>
352 </condition>
353 <condition property="gs2.compile.target" value="with-jni" else="without-jni">
354 <istrue value="${with.jni}"/>
355 </condition>
356 <condition property="gs2.install.target" value="install-with-jni" else="install-without-jni">
357 <istrue value="${with.jni}"/>
358 </condition>
359 <condition property="gs2.windows.enablejni" value="1" else="0">
360 <istrue value="${with.jni}"/>
361 </condition>
[22976]362 <condition property="gs2.windows.enablemg" value="1" else="0">
363 <istrue value="${with.jni}"/>
364 </condition>
365 <condition property="gs2.windows.enablemgpp" value="1" else="0">
366 <istrue value="${with.jni}"/>
367 </condition>
368 <!-- Should accent folding not also be set here ?? -->
369 <condition property="gs2.windows.usegdbm" value="1" else="0">
370 <istrue value="${with.jni}"/>
371 </condition>
372 <condition property="gs2.windows.usesqlite" value="1" else="0">
373 <istrue value="${with.jni}"/>
374 </condition>
[19931]375
[15799]376 <!-- where is search4j tool -->
[20085]377 <condition property="search4j.exec" value="bin/search4j.exe" else="bin/search4j">
[15799]378 <isset property="current.os.iswindows"/>
[15136]379 </condition>
380
[15799]381
[15124]382 <!-- ============= Base dirs for each package and component ============ -->
383 <property name="src.gsdl3.home" value="${src.home}/org/greenstone/gsdl3"/>
384 <property name="anttasks.home" value="${src.home}/org/greenstone/anttasks"/>
385 <property name="gli.home" value="${basedir}/gli"/>
386 <property name="javagdbm.home" value="${src.packages.home}/javagdbm"/>
387
[21347]388 <condition property="common.src.home" value="${basedir}/common-src" else="${gs2build.home}${file.separator}common-src">
[20464]389 <istrue value="${disable.collection.building}"/>
[19871]390 </condition>
[19931]391
392 <property name="build.src.home" value="${gs2build.home}/build-src"/>
[19871]393 <property name="gdbm.home" value="${common.src.home}/packages/gdbm"/>
394 <property name="mg.home" value="${common.src.home}/indexers/mg"/>
395 <property name="mgpp.home" value="${common.src.home}/indexers/mgpp"/>
396 <property name="lucene.home" value="${common.src.home}/indexers/lucene-gs"/>
397
[15799]398 <!-- ==================== Compilation Control Options ==================== -->
[15124]399
[15799]400 <!--
[15124]401
402 These properties control option settings on the Javac compiler when it
403 is invoked using the <javac> task.
404
405 compile.debug Should compilation include the debug option?
406
407 compile.deprecation Should compilation include the deprecation option?
408
409 compile.optimize Should compilation include the optimize option?
410
[15799]411 -->
[15124]412
413 <property name="compile.debug" value="true"/>
414 <property name="compile.deprecation" value="true"/>
415 <property name="compile.optimize" value="true"/>
416
[15799]417 <!--
[15124]418
419 Rather than relying on the CLASSPATH environment variable, Ant includes
420 features that makes it easy to dynamically construct the classpath you
421 need for each compilation. The example below constructs the compile
422 classpath to include the servlet.jar file, as well as the other components
423 that Tomcat makes available to web applications automatically, plus anything
424 that you explicitly added.
425
[15799]426 -->
[20079]427
428 <!-- All elements that Tomcat 5 exposes to applications -->
429 <path id="tomcat5">
[20085]430 <pathelement location="${catalina.home}/common/classes"/>
431 <fileset dir="${catalina.home}/common/endorsed">
432 <include name="*.jar"/>
433 </fileset>
434 <fileset dir="${catalina.home}/common/lib">
435 <include name="*.jar"/>
436 </fileset>
437 <!-- seems to be empty, but will leave in just in case some people make use of this to customise their install: -->
438 <pathelement location="${catalina.home}/shared/classes"/>
439 <fileset dir="${catalina.home}/shared/lib">
440 <include name="*.jar"/>
441 </fileset>
[20079]442 </path>
443
[25131]444 <!-- All elements that Tomcat 7 exposes to applications -->
445 <path id="tomcat7">
[20085]446 <fileset dir="${catalina.home}/lib">
447 <include name="*.jar"/>
448 </fileset>
[20079]449 </path>
450
[15124]451 <path id="compile.classpath">
452 <!-- Include all jar files and libraries in our jni lib directory -->
453 <pathelement location="${lib.jni}"/>
454 <fileset dir="${lib.jni}">
455 <include name="*.jar"/>
456 </fileset>
457 <!-- Include all jar files in our web lib directory -->
458 <pathelement location="${web.lib}"/>
459 <fileset dir="${web.lib}">
460 <include name="*.jar"/>
461 </fileset>
462
[18110]463 <pathelement location="${lib.java}"/>
464 <fileset dir="${lib.java}">
465 <include name="*.jar"/>
466 </fileset>
[15124]467
468 <!-- include the jar files from the source packages -->
469 <!-- mg and mgpp get installed into lib/jni but they may not be there yet
470 so we add them in by name -->
[22184]471 <!-- *** is there any way to make this optional, based on ${with.jni}? -->
[15124]472 <pathelement location="${lib.jni}/mg.jar"/>
473 <pathelement location="${lib.jni}/mgpp.jar"/>
474
[20085]475 <!-- Include all elements that Tomcat exposes to applications -->
476 <path refid="tomcat${tomcat.version.major}"/>
477
[15124]478 </path>
479
480 <path id="local.tomcat.classpath">
481 <!-- explicitly include the jni java wrappers in the classpath -->
482 <pathelement location="${lib.jni}"/>
483 <fileset dir="${lib.jni}">
484 <include name="*.jar"/>
485 </fileset>
[25095]486
487 <pathelement location="${web.lib}"/>
488 <fileset dir="${web.lib}">
489 <include name="derby.jar"/>
490 </fileset>
[15124]491 </path>
492
493 <path id="local.tomcat.path">
494 <pathelement location="${basedir}/bin/script"/>
495 <pathelement location="${basedir}/bin"/>
496 <pathelement location="${lib.jni}"/>
497 <pathelement path="${env.PATH}"/>
498 <pathelement path="${env.Path}"/>
499 <pathelement path="${wn.home}/bin"/>
500 </path>
501
502 <target name="test-setup">
503 <echo>ant java version=${ant.java.version}</echo>
504 <echo>is unix : ${current.os.isunix}</echo>
505 <echo>is mac : ${current.os.ismac}</echo>
506 <echo>is unixnotmac : ${current.os.isunixnotmac}</echo>
507 <echo>is windows : ${current.os.iswindows}</echo>
508 <echo>os.unix: ${os.unix}</echo>
509 </target>
[20085]510
[15799]511 <!-- ==================== Primary and Global Targets ============================= -->
[15124]512
[19873]513 <target name="prepare" depends="accept-properties,init,prepare-core,prepare-packages,prepare-common-src,prepare-collection-building,prepare-tomcat,prepare-axis,prepare-web,prepare-collections, prepare-flax"
[15124]514 description="Use this when you first checkout the code: 'ant prepare install'. This will do some additional subversion checkouts and downloads, so you need to be online to run this.">
515
516 <!-- make sure .sh files are executable -->
517 <chmod dir="${basedir}" perm="ugo+rx"
518 includes="*.sh"/>
519 <chmod dir="${basedir}/bin/script" perm="ugo+rx"
520 includes="*.sh,*.pl"/>
521 </target>
[16936]522
[19871]523 <!-- install-common-src and install-collection-building are mutually exclusive and either one or the other will be done depending on whether collection building is enabled or not -->
[19878]524 <target name="install" depends="init,install-common-src,install-collection-building,install-runtime"
[19843]525 description="Install Greenstone 3. Use this when you first checkout the code: 'ant prepare new-install'."/>
526
[19931]527 <target name="install-common-src" depends="init"
528 description="Install (configure, compile, install) only the common-src package (shared code from Greenstone 2). " >
[19894]529 <antcall target="configure-common-src"/>
530 <antcall target="compile-common-src"/>
531 <antcall target="install-auxiliary-jar-files"/>
532 <antcall target="install-jni-files"/>
533 </target>
[19878]534
[19894]535 <target name="install-collection-building" depends="init" if="collection.building.enabled"
536 description="Install (configure, compile, install) the Greenstone 2 collection building package." >
537 <antcall target="configure-collection-building"/>
[19931]538 <antcall target="tweak-makefiles" />
[19894]539 <antcall target="compile-collection-building"/>
540 </target>
541
[19878]542
[20209]543 <target name="install-runtime" depends="init,configure,configure-packages,configure-core,compile-web,compile-packages,compile-core,compile-classpath-jars"
[19878]544 description="Install (configure, compile, install) the runtime system. Needs either common-src or collection-building to have been installed first." />
545
546 <target name="svnupdate" depends="init,svnupdate-packages,svnupdate-core,svnupdate-common-src,svnupdate-collection-building,svnupdate-web"
[15124]547 description="Do a `svn update` for all sources. Doesn't recompile the code. You need to be online to run this."/>
548
549 <target name="configure" depends="init,configure-tomcat,configure-web"
[23855]550 description="Configure the installation (not the C++ code). Includes setting up config files. Should be re-run if you change the build.properties file, including if you change the port number."/>
[15124]551
[20209]552 <target name="clean" depends="init,clean-packages,clean-core,clean-common-src,clean-collection-building,clean-classpath-jars"
[19878]553 description="Remove all old compiled code. Includes runtime and collection-building if necessary"/>
[15124]554
[20209]555 <target name="distclean" depends="init,distclean-packages,clean-core,distclean-common-src,distclean-collection-building,clean-classpath-jars"
[19878]556 description="Remove all compiled code and also any Makefiles etc generated during configure-c++. Includes runtime and collection-building as necessary"/>
[15799]557
[19878]558 <target name="update" depends="init,svnupdate,clean,install"
559 description="Update (thru Subversion) all the source (including common-src or collection-building, and runtime), then clean, and re-install. To do this without any SVN updates, run it like 'ant -Dnosvn.mode=yes update'"/>
[15124]560
[23854]561
562 <target name="perl-for-building" depends="init">
563 <!-- uses perl.path if set in build.properties, otherwise try for
564 environment variable PERLPATH, and failing that assumes 'perl'
565 is on environment PATH -->
[23856]566 <!-- if, outside build.properties, we only set perl.path if we have gs2build/build-src (collection building), then we won't set perl.path in a (flax) binary, since it doesn't have build-src -->
[23857]567 <if><bool><available file="${gs2build.home}"/></bool>
[23854]568
569 <if><bool><not><isset property="perl.path"/></not></bool>
570
571 <if>
572 <bool>
573 <and>
574 <isset property="env.PERLPATH"/>
575 <not><equals arg1="${env.PERLPATH}" arg2=""/></not>
576 </and>
577 </bool>
578 <property name="perl.path" value="${env.PERLPATH}"/>
579 <else>
580 <echo>
[23896]581 Using PATH environment variable to locate Perl.
[23854]582 </echo>
583 <exec executable="which" os="${os.unix}" spawn="false" outputproperty="full.perl.path">
584 <arg value="perl" />
585 </exec>
586
[23941]587 <exec executable="${gs2build.home}/bin/windows/which" os="${os.windows}" spawn="false" outputproperty="full.perl.path">
588 <arg value="perl" />
589 </exec>
[23896]590
[23854]591 <stringutil string="${full.perl.path}" property="perl.path">
[23896]592 <replace regex="\/[^\/]*$" replacement="" />
[23854]593 </stringutil>
[23896]594 <if><bool><istrue value="${current.os.isunix}"/></bool>
595
596 <if><bool><not><equals arg1="${full.perl.path}" arg2="/usr/bin/perl"/></not></bool>
597 <echo>
[23854]598 Non-standard location of Perl found: ${full.perl.path}
599 Set the environment variable PERLPATH or the perl.path property in
600 build.properties to explicitly control the version of Perl used.
[23896]601 </echo>
602 </if>
[23854]603 </if>
604 </else>
605 </if>
606 </if>
607
608 <!-- full.perl.path is for pretty-printing only, e.g. used in target "start" -->
609 <if><bool><isset property="perl.path"/></bool>
610 <property name="full.perl.path" value="${perl.path}${file.separator}perl"/>
611 <else>
612 <property name="full.perl.path" value="perl (will use the enviroment variable PATH to find this executable)"/>
613 </else>
614 </if>
[23857]615
616 <!-- gs2build not available, perl.path -->
617 <else>
618 <property name="perl.path" value=""/>
619 </else>
620 </if>
[23854]621 </target>
622
[25549]623 <target name="get-default-servlet-url">
624 <echo>http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}</echo>
625 </target>
626
[23854]627 <target name="start" depends="init,configure-web,start-tomcat"
[15124]628 description="Startup the Tomcat server." >
[15799]629 <echo>${app.name} (${app.version}) server running using Apache Tomcat and Java</echo>
[16936]630 <echo>Tomcat: ${catalina.home}</echo>
631 <echo>Java : ${java.home}</echo>
[23849]632 <if><bool><available file="${build.src.home}"/></bool>
633 <echo>Perl : ${full.perl.path}</echo>
634 </if>
[23936]635 <if><bool><isset property="install.flax"/></bool>
636 <property name="url" value="http://${tomcat.server}:${tomcat.port}${app.path}/flax"/>
637 <else>
638 <property name="url" value="http://${tomcat.server}:${tomcat.port}${app.path}/"/>
639 </else>
640 </if>
641 <echo>URL : ${url}</echo>
[15799]642 <!-- assuming that index.html is not needed here -->
[15124]643 </target>
644
645 <target name="stop" depends="init,stop-tomcat"
646 description="Shutdown the Tomcat server."/>
647
648 <target name="restart" description="Shutdown and restart Tomcat" depends="init,stop,start"/>
649
650
[15799]651 <!-- =========== Help targets =================================== -->
[15124]652
653 <property name="install-command" value="ant [options] prepare install"/>
654
655 <target name="usage" description="Print a help message">
656 <echo message=" Execute 'ant -projecthelp' for a list of targets."/>
657 <echo message=" Execute 'ant -help' for Ant help."/>
[23849]658 <echo>
659 To install Greenstone3, run '${install-command}'.
660 There are properties defined in build.properties. The install
661 process will ask you if these properties are set correctly.
662 To avoid this prompt, use the '-Dproperties.accepted=yes'
663 option.
664 To log the output, use the '-logfile build.log' option.
665 The README.txt file has more information about the ant targets
666 and install process.
[15124]667 </echo>
668 </target>
669
670 <target name="help" depends="usage" description="Print a help message"/>
671
672 <target name="debug" depends="init" description="Display all the currently used properties">
673 <echoproperties/>
674 </target>
675
[15799]676 <!-- ====== initialization and setup targets ================== -->
[15124]677
678 <target name="accept-properties" unless="properties.accepted">
679 <input addproperty="properties.ok" validargs="y,n">The following properties (among others) are being used from a build.properties file found in this directory:
[15799]680 tomcat.server=${tomcat.server}
681 tomcat.port=${tomcat.port}
682 tomcat.installed.path=${tomcat.installed.path} (this is the location of Tomcat's base dir if it is already installed)
683 proxy.host=${proxy.host}
684 proxy.port=${proxy.port}
[19878]685 disable.collection.building=${disable.collection.building}
[19910]686 If these are not acceptable, please change them and rerun this target. Continue [y/n]?
[15124]687 </input>
688 <condition property="do.abort">
689 <equals arg1="n" arg2="${properties.ok}"/>
690 </condition>
691 <fail if="do.abort">Build aborted by user. Please change your properties settings and re-run the target</fail>
692 </target>
[20085]693
[15124]694 <!-- this sets up some initial properties -->
695 <target name="init">
696
[20085]697 <!-- has the gs3-setup script been run?? -->
698 <condition property="gs3-setup-not-done">
699 <not>
700 <isset property="env.GSDL3HOME"/>
701 </not>
702 </condition>
703
[20092]704 <!--<fail if="gs3-setup-not-done" message="please run 'gs3-setup' (Windows) or 'source gs3-setup.sh' (Linux/Mac) before running this target."/>-->
[20085]705
[15124]706 <condition property="java.too.old">
707 <or>
[16936]708 <equals arg1="1.1" arg2="${ant.java.version}"/>
709 <equals arg1="1.2" arg2="${ant.java.version}"/>
710 <equals arg1="1.3" arg2="${ant.java.version}"/>
[15124]711 </or>
712 </condition>
[20208]713 <fail if="java.too.old" message="You need Java 1.4 or greater to run Greenstone 3"/>
[15124]714
715 <available file="${basedir}/gli" property="gli.present"/>
[19878]716 <available file="${basedir}/common-src" property="common.src.present"/>
[15124]717 <available file="${basedir}/gs2build" property="gs2build.present"/>
718
719 <condition property="tomcat.islocal">
720 <or>
[16936]721 <not><isset property="tomcat.installed.path"/></not>
722 <equals arg1="" arg2="${tomcat.installed.path}"/>
[15124]723 </or>
724 </condition>
725
[15799]726 <echo>tomcat.port = ${tomcat.port}</echo>
[15124]727
728 <condition property="proxy.present">
729 <and>
[16936]730 <isset property="proxy.host"/>
731 <not><equals arg1="" arg2="${proxy.host}"/></not>
[15124]732 </and>
733 </condition>
734
[20235]735 <!--
[20290]736 the next block checks if the bundled tomcat is present in the 'packages' directory,
[25131]737 and checks for the lethal combination of tomcat 7 and java 1.4. Test for
[20290]738 tomcat6 is based on the presence of a file inserted by greenstone into the tomcat6
739 download, as there is no other surefire way to check tomcat version under java 1.4
[20235]740 -->
741 <condition property="packages.tomcat.ispresent" value="true" else="false">
742 <available file="packages/tomcat"/>
743 </condition>
[25131]744 <condition property="packages.tomcat.istomcat7" value="true" else="false">
745 <available file="packages/tomcat/tomcat7.txt"/>
[20290]746 </condition>
[20235]747 <if>
748 <bool>
[20290]749 <and>
750 <istrue value="${packages.tomcat.ispresent}"/>
[25131]751 <istrue value="${packages.tomcat.istomcat7}"/>
[20290]752 <equals arg1="1.4" arg2="${ant.java.version}"/>
753 </and>
[20235]754 </bool>
[20290]755 <fail>Your Java (version 1.4) is too old to work with the bundled Apache Tomcat (version 6). Please upgrade to Java version 1.5 or greater. Alternatively, you may remove the bundled Apache Tomcat from the 'packages' folder and then run 'ant prepare-tomcat'.</fail>
[20235]756 </if>
757
[15124]758 </target>
759
760 <target name="setup-proxy" depends="init" if="proxy.present">
761 <condition property="ask.user">
762 <or>
[16936]763 <equals arg1="" arg2="${proxy.user}"/>
764 <equals arg1="" arg2="${proxy.password}"/>
[15124]765 </or>
766 </condition>
[19878]767
[15124]768 <getuserandpassword message="Using proxy: ${proxy.host}:${proxy.port}" if="ask.user" username="${proxy.user}" userproperty="proxy.username" pwordproperty="proxy.password"/>
769 <mysetproxy proxyhost="${proxy.host}" proxyport="${proxy.port}" proxyuser="${proxy.username}" proxypassword="${proxy.password}"/>
770 </target>
771
[15799]772 <!-- ========== Web app Targets ================================ -->
773
[20089]774 <target name="prepare-web" depends="init">
[15124]775 <mkdir dir="${web.home}/applet"/>
776 <mkdir dir="${web.home}/logs"/>
[25446]777 <mkdir dir="${web.home}/logs/tmp"/>
[15124]778 </target>
779
[24607]780 <!-- if we are using java 1.5+, we need the xalan.jar file in web/WEB-INF/lib, but if we are using java 1.4, we can't have it there.
781 The test for whether we need it assumes we won't be trying to compile GS3 against Java versions less than 1.4. -->
[15124]782 <target name="configure-java-version" depends="init"
[15139]783 description="Activates or deactivates some jar libraries as needed depending on your java version">
[15136]784
[15799]785 <available property="have.xalan.jar" file="${web.lib}/xalan.jar"/>
[15124]786 <condition property="need.xalan.jar">
[15799]787 <or>
[24607]788 <not><equals arg1="1.4" arg2="${ant.java.version}"/></not>
[15799]789 </or>
790 </condition>
[15136]791
[15799]792 <!-- if they have xalan.jar but dont need it -->
793 <if>
794 <bool>
[16936]795 <and>
796 <isset property="have.xalan.jar"/>
797 <not><isset property="need.xalan.jar"/></not>
798 </and>
[15799]799 </bool>
800 <antcall target="deactivate-xalan-jar"/>
801 </if>
[15136]802
[15799]803 <!-- if they need xalan.jar but dont have it -->
804 <if>
805 <bool>
[16936]806 <and>
807 <not><isset property="have.xalan.jar"/></not>
808 <isset property="need.xalan.jar"/>
809 </and>
[15799]810 </bool>
811 <antcall target="activate-xalan-jar"/>
812 </if>
[15136]813
[15124]814 </target>
815
[15139]816 <target name="activate-xalan-jar">
[15799]817 <echo>activating xalan.jar</echo>
[15124]818 <copy file="${web.lib}/xalan.jar.tmp" tofile="${web.lib}/xalan.jar"/>
[20085]819 <if>
820 <bool>
821 <and>
822 <isset property="current.os.ismac"/>
823 <available file="${catalina.home}/common/endorsed" type="dir"/>
824 </and>
825 </bool>
826 <copy file="${web.lib}/xalan.jar.tmp" tofile="${catalina.home}/common/endorsed/xalan.jar"/>
[15799]827 </if>
[15124]828 </target>
[15035]829
[15139]830 <target name="deactivate-xalan-jar">
[15799]831 <echo>deactivating xalan.jar</echo>
[15124]832 <delete file="${web.lib}/xalan.jar"/>
[20089]833 <!-- should we be deleting common/endorsed/xalan.jar on mac?? -->
[15124]834 </target>
835
[15837]836
[25491]837 <target name="prepare-collections" depends="init"
838 description="Unpack all the collections from their svn zipped versions">
[16936]839 <property name="collect.dir" value="${web.home}/sites/localsite/collect"/>
[17008]840 <property name="index.zip" value="index.zip"/>
[15799]841
[16936]842 <echo message="installing collections..."/>
843 <antcall target="gs2mgdemo-install"/>
844 <antcall target="gs2mgppdemo-install"/>
845 <antcall target="gberg-install"/>
[25214]846 <antcall target="lucene-jdbm-demo-install"/>
[16936]847 </target>
[15837]848
[16936]849 <target name="gs2mgdemo-prepare" if="collect.dir">
850 <property name="gs2mgdemo.dir" value="${collect.dir}/gs2mgdemo"/>
[15799]851
[16936]852 <condition property="gs2mgdemo.present">
853 <and>
[15837]854 <available file="${gs2mgdemo.dir}/${index.zip}"/>
[16936]855 </and>
856 </condition>
857 </target>
[15799]858
[17008]859 <target name="gs2mgdemo-install" if="gs2mgdemo.present" depends="gs2mgdemo-prepare">
860 <unzip dest="${gs2mgdemo.dir}" src="${gs2mgdemo.dir}/${index.zip}" />
[16936]861 <echo>collection gs2mgdemo installed</echo>
862 </target>
[15799]863
[16936]864 <target name="gs2mgppdemo-prepare" if="collect.dir">
865 <property name="gs2mgppdemo.dir" value="${collect.dir}/gs2mgppdemo"/>
[15837]866
[16936]867 <condition property="gs2mgppdemo.present">
868 <and>
[15837]869 <available file="${gs2mgppdemo.dir}/${index.zip}"/>
[16936]870 </and>
871 </condition>
872 </target>
[15799]873
[16936]874 <target name="gs2mgppdemo-install" if="gs2mgppdemo.present" depends="gs2mgppdemo-prepare">
[17008]875 <unzip dest="${gs2mgppdemo.dir}" src="${gs2mgppdemo.dir}/${index.zip}" />
[16936]876 <echo>collection gs2mgppdemo installed</echo>
877 </target>
[15799]878
[16936]879 <target name="gberg-prepare" if="collect.dir">
880 <property name="gberg.dir" value="${collect.dir}/gberg"/>
[17008]881 <available file="${gberg.dir}/index/${index.zip}" property="gberg.present"/>
[16936]882 </target>
[15799]883
[16936]884 <target name="gberg-install" if="gberg.present" depends="gberg-prepare">
[19878]885 <unzip dest="${gberg.dir}/index" src="${gberg.dir}/index/${index.zip}"/>
[16936]886 <echo>collection gberg installed</echo>
887 </target>
[15799]888
[25214]889 <target name="lucene-jdbm-demo-prepare" if="collect.dir">
890 <property name="lucene-jdbm-demo.dir" value="${collect.dir}/lucene-jdbm-demo"/>
[25491]891 <available file="${lucene-jdbm-demo.dir}/${index.zip}" property="lucene-jdbm-demo.present"/>
[25214]892 </target>
893
894 <target name="lucene-jdbm-demo-install" if="lucene-jdbm-demo.present" depends="lucene-jdbm-demo-prepare">
[25491]895 <unzip dest="${lucene-jdbm-demo.dir}" src="${lucene-jdbm-demo.dir}/${index.zip}"/>
[25214]896 <echo>collection lucene-jdbm-demo installed</echo>
897 </target>
898
[23854]899 <target name="configure-web" depends="init,perl-for-building"
[15124]900 description="Configure only the web app config files">
901 <!-- we want a unix path in the global.properties file -->
902 <pathconvert targetos="unix" property="src.gsdl3.home.unix">
903 <path path="${web.home}"/>
904 </pathconvert>
[24868]905 <stringutil string="${perl.path}" property="escaped.perl.path">
906 <replace regex="\\" replacement="\\\\" />
907 </stringutil>
908
[15124]909 <filter token="gsdl3home" value="${src.gsdl3.home.unix}"/>
910 <filter token="gsdl3version" value="${app.version}"/>
911 <filter token="tomcat.server" value="${tomcat.server}"/>
912 <filter token="tomcat.port" value="${tomcat.port}"/>
[24868]913 <filter token="perlpath" value="${escaped.perl.path}"/>
[25570]914 <filter token="disable.collection.building" value="${disable.collection.building}"/>
[15124]915 <copy file="${basedir}/resources/java/global.properties.in" tofile="${web.classes}/global.properties" filtering="true" overwrite="true"/>
916 <copy file="${basedir}/resources/java/log4j.properties.in" tofile="${web.classes}/log4j.properties" filtering="true" overwrite="true"/>
917 <chmod file="${web.classes}/global.properties" perm="600"/>
918 <chmod file="${web.classes}/log4j.properties" perm="600"/>
919 </target>
920
921 <target name="compile-web" depends="init">
922 <javac srcdir="${web.classes}"
923 destdir="${web.classes}"
924 debug="${compile.debug}"
925 deprecation="${compile.deprecation}"
926 optimize="${compile.optimize}">
[16936]927 <classpath><path refid="compile.classpath"/></classpath>
[15124]928 </javac>
929 </target>
930
[20209]931 <target name="compile-classpath-jars" depends="init">
932 <if><bool><available file="admin/cp.mf"/></bool>
933 <jar destfile="admin/cp.jar" manifest="admin/cp.mf"/>
934 </if>
935 <if><bool><available file="${lib.java}/cp.mf"/></bool>
936 <jar destfile="${lib.java}/cp.jar" manifest="${lib.java}/cp.mf"/>
937 </if>
938 <if><bool><available file="${lib.jni}/cp.mf"/></bool>
939 <jar destfile="${lib.jni}/cp.jar" manifest="${lib.jni}/cp.mf"/>
940 </if>
941 <if><bool><available file="${web.lib}/cp.mf"/></bool>
942 <jar destfile="${web.lib}/cp.jar" manifest="${web.lib}/cp.mf"/>
943 </if>
944 <jar destfile="cp.jar">
945 <manifest>
[20211]946 <attribute name="Class-Path" value="server.jar admin/cp.jar lib/java/cp.jar lib/jni/cp.jar web/WEB-INF/lib/cp.jar"/>
[20209]947 </manifest>
948 </jar>
949 </target>
950
951 <target name="clean-classpath-jars" depends="init">
952 <delete file="admin/cp.jar"/>
953 <delete file="${lib.java}/cp.jar"/>
954 <delete file="${lib.jni}/cp.jar"/>
955 <delete file="${web.lib}/cp.jar"/>
956 <delete file="cp.jar"/>
957 </target>
958
959
[15799]960 <target name="svnupdate-web" unless="nosvn.mode">
[20930]961 <exec executable="svn">
962 <arg value="update"/>
963 <arg value="${web.home}"/>
964 <arg value="-r"/><arg value="${branch.revision}"/>
965 </exec>
[15799]966 </target>
[15124]967
968 <target name="update-web" depends="init,svnupdate-web,configure-web"
969 description="update only the web stuff (config files)"/>
970
[15799]971 <!-- ======================= Tomcat Targets ========================== -->
[15124]972
973 <!-- this target downloads and installs Tomcat -->
[25131]974 <!-- we download tomcat (version 7 for Java 1.5 and later, version 5 for Java 1.4 plus the 1.4 compatibility package). -->
[20089]975 <target name="prepare-tomcat" depends="init,setup-proxy" if="tomcat.islocal"
[25131]976 description="downloads the appropriate version of Tomcat (Tomcat 5 if using Java 1.4, Tomcat 7 if using Java 1.5 or higher). If you want to change which version of Java you are using between 1.4 and 1.5/7 then you need to run prepare-tomcat">
977 <if>
[16951]978 <bool>
979 <not><available file="${packages.home}/tomcat/.flagfile"/></not>
980 </bool>
981
982 <!-- check that packages dir is there -->
983 <mkdir dir="${packages.home}"/>
984 <get src="http://www.greenstone.org/gs3files/${tomcat.version}.zip"
985 dest="${packages.home}/${tomcat.version}.zip"
986 usetimestamp="true"/>
987 <unzip src="${packages.home}/${tomcat.version}.zip"
988 dest="${packages.home}"/>
[20085]989
990 <!-- If we are using Java 1.4, we'd be using tomcat 5.5 in which case
991 we would need to have the tomcat compat package to work with Java 1.4-->
992 <if>
993 <bool><equals arg1="1.4" arg2="${ant.java.version}"/></bool>
994 <get src="http://www.greenstone.org/gs3files/${tomcat.version}-compat.zip"
995 dest="${packages.home}/${tomcat.version}-compat.zip"
996 usetimestamp="true"/>
997 <unzip src="${packages.home}/${tomcat.version}-compat.zip"
998 dest="${packages.home}"/>
999 </if>
1000
[16951]1001 <!-- delete any existing tomcat -->
1002 <delete dir="${packages.home}/tomcat"/>
1003 <move todir="${packages.home}/tomcat">
1004 <fileset dir="${packages.home}/${tomcat.version}"/>
1005 </move>
[25133]1006 <!--
[16951]1007 <copy file="${basedir}/resources/tomcat/setclasspath.bat"
1008 tofile="${packages.home}/tomcat/bin/setclasspath.bat"
1009 overwrite="true"/>
1010 <copy file="${basedir}/resources/tomcat/setclasspath.sh"
1011 tofile="${packages.home}/tomcat/bin/setclasspath.sh"
1012 overwrite="true"/>
[25133]1013 -->
[16951]1014 <!-- make sure we have execute permission for the .sh files -->
1015 <chmod dir="${packages.home}/tomcat/bin" perm="ugo+rx"
1016 includes="*.sh"/>
1017
1018 <echo file="${packages.home}/tomcat/.flagfile">
1019 the timestamp of this file is the time that tomcat was extracted from the zip files.
1020 it is used to figure out whether the files need to be refreshed or not in `ant prepare-tomcat`
1021 </echo>
1022
[20089]1023 <!-- this is not strictly a prepare tomcat thing, but if one changes
1024 Java, then they need to change tomcat as well, so might as well call
1025 it here -->
1026 <antcall target="configure-java-version"/>
[16951]1027 <else>
1028 <echo>Tomcat has been prepared, will not prepare</echo>
1029 <echo>Delete ${packages.home}/tomcat/.flagfile to force refresh</echo>
1030 </else>
1031
1032 </if>
1033
[15124]1034 </target>
1035
1036 <target name="configure-tomcat" depends="init,configure-tomcat-local,configure-tomcat-external"/>
1037
[25570]1038 <target name="configure-tomcat-local" depends="init,perl-for-building" if="tomcat.islocal">
[15124]1039 <!-- re-setup the server.xml file -->
[20079]1040 <copy file="${basedir}/resources/tomcat/server_tomcat${tomcat.version.major}.xml"
1041 tofile="${packages.home}/tomcat/conf/server.xml" overwrite="true">
[15124]1042 <filterset>
[16936]1043 <filter token="port" value="${tomcat.port}"/>
1044 <filter token="shutdown-port" value="${tomcat.shutdown.port}"/>
[15124]1045 </filterset>
1046 </copy>
1047 <!-- set up the greenstone3 context -->
1048 <copy file="${basedir}/resources/tomcat/greenstone3.xml" tofile="${packages.home}/tomcat/conf/Catalina/localhost/greenstone3.xml" overwrite="true">
1049 <filterset>
[16936]1050 <filter token="gsdl3webhome" value="${web.home}"/>
[22320]1051 <filter token="privilegedattribute" value ="${privileged.attribute}"/>
[15124]1052 </filterset>
1053 </copy>
[25570]1054
1055 <!-- set up the greenstone3 web.xml file -->
1056 <copy file="${basedir}/resources/tomcat/web.xml" tofile="${packages.home}/tomcat/conf/web.xml" overwrite="true">
1057 <filterset>
1058 <filter token="perlpath" value="${perl.path}"/>
1059 </filterset>
1060 </copy>
[15124]1061 </target>
1062
1063 <target name="configure-tomcat-external" depends="init" unless="tomcat.islocal">
1064 <!-- re-setup the server.xml file -->
1065 <!-- need to edit the config file, or do we get the user to do this???-->
1066 </target>
[22551]1067
[23854]1068
1069
[22551]1070<!-- Another way: http://ptrthomas.wordpress.com/2006/03/25/how-to-start-and-stop-tomcat-from-ant/ -->
[20089]1071 <target name="start-tomcat" description="Startup only Tomcat" depends="init" if="tomcat.islocal">
[15799]1072 <property name="tomcat.classpath" refid="local.tomcat.classpath"/>
[15124]1073 <property name="tomcat.path" refid="local.tomcat.path"/>
1074 <property name="catalina.opts" value="-Djava.util.prefs.syncInterval=2000000 -DGSDL3HOME=$GSDL3HOME -DGSDLOS=$GSDLOS -DPATH=$PATH -Xmx400M"/>
[25095]1075
1076 <echo file="${catalina.home}/bin/setenv.bat">set CLASSPATH=${tomcat.classpath}</echo>
1077 <echo file="${catalina.home}/bin/setenv.sh">export CLASSPATH=${tomcat.classpath}</echo>
1078
[21351]1079 <exec executable="${catalina.home}/bin/startup.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[15124]1080 <!--<env key="GSDLOS" value="linux"/> do we need this?? -->
1081 <env key="GSDL3HOME" value="${basedir}"/>
1082 <env key="PATH" path="${tomcat.path}"/>
1083 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
1084 <env key="CATALINA_HOME" value="${catalina.home}"/>
1085 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1086 <env key="LD_LIBRARY_PATH" path="${env.LD_LIBRARY_PATH}:${lib.jni}"/>
[22184]1087 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${lib.jni}:${gdbm.home}/lib"/> <!-- for mac os --> <!-- need gdbm here these days ??-->
[15124]1088 <env key="WNHOME" path="${wn.home}"/>
1089 </exec>
[25095]1090 <exec executable="${catalina.home}/bin/startup.bat" os="${os.windows}" dir="${catalina.home}/bin" spawn="false">
[15124]1091 <env key="GSDLOS" value="windows"/>
1092 <env key="GSDL3HOME" value="${basedir}"/>
1093 <env key="Path" path="${tomcat.path}"/>
1094 <env key="PATH" path="${tomcat.path}"/>
1095 <env key="CATALINA_OPTS" value="${catalina.opts}"/>
[16628]1096 <env key="CATALINA_HOME" value="${catalina.home}"/>
[15124]1097 <env key="CLASSPATH" path="${tomcat.classpath}"/>
1098 </exec>
1099 <!-- wait for the server to startup in case other targets need it running -->
1100 <waitfor maxwait="5" maxwaitunit="second">
1101 <and>
[16936]1102 <socket server="${tomcat.server}" port="${tomcat.port}"/>
1103 <http url="http://${tomcat.server}:${tomcat.port}${app.path}/index.html"/>
[15124]1104 </and>
1105 </waitfor>
1106 </target>
1107
[22551]1108 <!--ant task http: http://www.jajakarta.org/ant/ant-1.6.1/docs/ja/manual/api/org/apache/tools/ant/taskdefs/condition/Http.html-->
1109 <target name="reconfigure" description="Reconfigure the message router">
1110 <waitfor maxwait="5" maxwaitunit="second">
1111 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c"/>
1112 </waitfor>
1113 </target>
1114
1115 <!--Command-line args to Ant: http://www.jguru.com/faq/view.jsp?EID=471794-->
1116 <target name="reconfigure-collection" description="Reconfigure the collection">
1117 <waitfor maxwait="5" maxwaitunit="second">
1118 <http url="http://${tomcat.server}:${tomcat.port}${app.path}${server.default.servlet}?a=s&amp;sa=c&amp;sc=${collection}"/>
1119 </waitfor>
1120 </target>
1121
[15124]1122 <!-- windows: do we want to launch a webrowser?? -->
[25418]1123 <!-- shouldn't this test whether anything is running first?
1124 It's safer to always attempt to stop tomcat: that way we won't be dependent on the right time
1125 to check whether the server is stopped or still running before attempting to start again.
1126 This target, which was recently called force-stop-tomcat for a while but is back to being
1127 called stop-tomcat, now hides the Java exception output that appears whenever tomcat is already
1128 stopped as happens when stop-tomcat is called consecutively. -->
[25420]1129 <target name="force-stop-tomcat" description="Shutdown only Tomcat" depends="init" if="tomcat.islocal">
[21351]1130 <exec executable="${catalina.home}/bin/shutdown.sh" os="${os.unix}" dir="${catalina.home}/bin" spawn="false">
[15124]1131 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]1132 <arg line=">/dev/null 2>&amp;1"/>
[15124]1133 </exec>
[21351]1134 <exec executable="${catalina.home}/bin/shutdown.bat" os="${os.windows}" dir="${catalina.home}/bin" spawn="false">
[16628]1135 <env key="CATALINA_HOME" value="${catalina.home}"/>
[25418]1136 <arg line=">nul 2>&amp;1"/>
[25443]1137 </exec>
[15124]1138 </target>
1139
[25418]1140 <!-- Can also try the "socket" condition in place of the "http" condition
1141 And also use a <waitfor> in place of <condition>, such as:
1142 <waitfor maxwait="5" maxwaitunit="second" timeoutproperty="tomcat.isstopped"><http url="..."/></waitfor>
[25420]1143 The http URL resolves to host:port/greenstone3
1144 Condition uses <http/> rather than <socket/> for testing, since if the server was stopped, the socket
1145 might still be in use for some moments. We test the URL with the http condition since it's likelier to
1146 fail sooner if the server has indeed been stopped. -->
[25418]1147 <target name="check-tomcat-running">
1148 <condition property="tomcat.isrunning">
1149 <http url="http://${tomcat.server}:${tomcat.port}${app.path}"/>
1150 </condition>
[25321]1151 </target>
1152
[25443]1153 <!-- stop-tomcat checks if the tomcat server is already running. If it appears to be running
1154 (regardless of whether tomcat was just starting to shut down), this target calls force-stop-tomcat
1155 to issue the shutdown command to tomcat. Then it waits for at most 15 seconds for the server to
1156 actually stop by checking the socket at which tomcat listens every second, printing a warning
1157 at the end of the max wait time of 15 seconds if tomcat was still running. -->
1158 <target name="stop-tomcat" description="Shutdown only Tomcat if running" depends="check-tomcat-running" if="tomcat.isrunning">
[25321]1159 <antcall target="force-stop-tomcat"/>
[25443]1160
1161 <property name="wait.numchecks" value="15"/>
1162 <echo>Waiting for the server to shutdown... (${wait.numchecks} seconds max)</echo>
1163 <waitfor maxwait="${wait.numchecks}" maxwaitunit="second" checkevery="1" checkeveryunit="second" timeoutproperty="tomcat.timedout">
[25444]1164 <not><socket server="${tomcat.server}" port="${tomcat.port}"/></not>
[25443]1165 </waitfor>
1166
1167 <if>
1168 <bool>
1169 <isset property="${tomcat.timedout}"/>
1170 </bool>
1171 <property name="tomcat.isrunning" value="true"/>
1172 <echo>WARNING: Checked the socket ${wait.numchecks} times, but port ${tomcat.port} is still busy.</echo>
1173 <else>
1174 <echo>Tomcat is stopped.</echo>
1175 <property name="tomcat.isrunning" value="false"/>
1176 </else>
1177 </if>
[25420]1178 </target>
[25321]1179
[15124]1180 <target name="restart-tomcat" description="Shutdown and restart only Tomcat" depends="init,stop-tomcat,start-tomcat"/>
1181
1182 <target name="setup-catalina-ant-tasks">
1183 <!-- Configure the custom Ant tasks for the Tomcat Manager application -->
1184 <taskdef name="deploy" classname="org.apache.catalina.ant.DeployTask"
1185 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1186 <taskdef name="list" classname="org.apache.catalina.ant.ListTask"
1187 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1188 <taskdef name="reload" classname="org.apache.catalina.ant.ReloadTask"
1189 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1190 <taskdef name="resources" classname="org.apache.catalina.ant.ResourcesTask"
1191 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1192 <taskdef name="roles" classname="org.apache.catalina.ant.RolesTask"
1193 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1194 <taskdef name="start" classname="org.apache.catalina.ant.StartTask"
1195 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1196 <taskdef name="stop" classname="org.apache.catalina.ant.StopTask"
1197 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1198 <taskdef name="undeploy" classname="org.apache.catalina.ant.UndeployTask"
1199 classpath="${catalina.home}/server/lib/catalina-ant.jar"/>
1200 </target>
1201
[25449]1202 <!-- http://blog.andrewbeacock.com/2007/11/how-to-truncate-log-file-using-ubuntu.html
1203 Doing "cat </dev/null > packages/tomcat/logs/catalina.out" doesn't work as an ant target.
1204 It seems to have a problem with cat or </dev/null, with or without the < sign. -->
1205 <target name="clean-logs" description="Empties catalina.out, greenstone.log and contents of web/logs/tmp">
1206 <echo>Truncating catalina.out and greenstone.log, and emptying ${web.home}/logs/tmp</echo>
1207 <exec executable="truncate" os="${os.unix}" dir="${catalina.home}/logs" spawn="false">
1208 <arg value="-s0"/>
1209 <arg value="catalina.out"/>
1210 </exec>
1211 <exec executable="truncate" os="${os.unix}" dir="${web.home}/logs" spawn="false">
1212 <arg value="-s0"/>
1213 <arg value="greenstone.log"/>
1214 </exec>
[15124]1215
[25449]1216 <exec executable="cmd" os="${os.windows}" dir="${catalina.home}/logs" spawn="false">
1217 <arg line="/c echo. > catalina.out"/>
1218 </exec>
1219 <exec executable="cmd" os="${os.windows}" dir="${web.home}/logs" spawn="false">
1220 <arg line="/c echo. > greenstone.log"/>
1221 </exec>
1222
[25501]1223 <if>
1224 <bool><available file="${web.home}/logs/tmp" type="dir"/></bool>
1225 <delete>
1226 <fileset dir="${web.home}/logs/tmp" includes="**/*"/>
1227 </delete>
1228 </if>
[25449]1229 </target>
1230
[15799]1231 <!-- ======================= ant Targets ============================ -->
[15124]1232 <target name="prepare-ant" depends="init">
[16951]1233 <if>
1234 <bool>
1235 <not><available file="${packages.home}/ant/.flagfile"/></not>
1236 </bool>
1237
1238 <get src="http://www.greenstone.org/gs3files/apache-ant-1.7.0-bin.zip"
1239 dest="${packages.home}/apache-ant-1.7.0-bin.zip"
1240 usetimestamp="true"/>
1241 <unzip src="${packages.home}/apache-ant-1.7.0-bin.zip"
1242 dest="${packages.home}"/>
1243 <move todir="${packages.home}/ant">
1244 <fileset dir="${packages.home}/apache-ant-1.7.0"/>
1245 </move>
1246 <echo file="${packages.home}/ant/.flagfile">
1247 the timestamp of this file is the time that ant was extracted from the zip files.
1248 it is used to figure out whether the files need to be refreshed or not in `ant prepare-ant`
1249 </echo>
1250
1251 <else>
1252 <echo>Ant has been prepared, will not prepare</echo>
1253 <echo>Delete ${packages.home}/ant/.flagfile to force refresh</echo>
1254 </else>
1255
1256 </if>
[15124]1257 </target>
1258
[25338]1259 <!-- ======================= Admin Targets ============================ -->
1260
1261 <!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
1262 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
1263 But you can do: echo mypassword | ant config-admin -->
1264 <target name="config-admin" description="Reset admin password">
1265 <input addproperty="admin.password" defaultvalue="admin" message="New admin password (3-8 characters):&gt;">
1266 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
1267 </input>
[25343]1268 <!--<echo>PWD: ${admin.password}</echo>-->
[25338]1269 <antcall target="update-userdb">
1270 <param name="user.username" value="admin"/>
1271 <param name="user.password" value="${admin.password}"/>
1272 <param name="user.groups" value=""/>
1273 <param name="user.status" value=""/>
1274 <param name="user.comment" value="Password updated."/>
1275 <param name="user.email" value=""/>
1276 </antcall>
1277 </target>
1278
1279 <target name="config-user" description="Add or modify users" depends="get-user-data,update-userdb"/>
1280
1281 <target name="get-user-data" description="Get user details">
1282 <input addproperty="user.username" message="Username:&gt;"/>
1283 <input addproperty="user.password" defaultvalue="" message="Password (3-8 characters):&gt;">
1284 <handler classname="org.apache.tools.ant.input.SecureInputHandler" /> <!-- password won't be visible on screen -->
1285 </input>
1286 <input addproperty="user.groups" defaultvalue="" message="Groups (comma-separated list):&gt;"/>
1287 <input addproperty="user.status" defaultvalue="true" message="Enabled (true/false):&gt;"/>
1288 <input addproperty="user.comment" defaultvalue="" message="Comment:&gt;"/>
1289 <input addproperty="user.email" defaultvalue="" message="Email:&gt;"/>
1290 </target>
1291
1292<!-- This target won't work with Eclipse because the SecureInputHandler used below conflicts with it.
1293 See http://www.dcepler.net/post.cfm/hiding-password-input-in-ant
1294 But you can do: echo mypassword | ant config-admin -->
[25418]1295 <target name="update-userdb" description="Add or modify users" depends="check-tomcat-running">
1296
1297 <!-- stop tomcat if running, since derby db is embedded and only allows connections from one jvm instance at a time
1298 See http://db.apache.org/derby/papers/DerbyTut/embedded_intro.html
1299 The ${tomcat.isrunning} property is set by the depends-target "check-tomcat-running" -->
[25338]1300 <if>
1301 <bool>
1302 <istrue value="${tomcat.isrunning}"/>
1303 </bool>
[25418]1304 <antcall target="stop-tomcat"/>
[25338]1305 </if>
1306
1307 <!--<echo>${admin.password}</echo>--> <!-- for testing -->
1308 <java classname="org.greenstone.gsdl3.util.ModifyUsersDB">
1309 <classpath refid="compile.classpath"/> <!--for ${web.lib}/gsdl3.jar and supporting files-->
1310 <arg file="${web.home}/sites/localsite/etc/usersDB"/>
1311 <arg value="${user.username}"/>
1312 <arg value="password=${user.password}"/>
1313 <arg value="groups=${user.groups}"/>
1314 <arg value="status=${user.status}"/>
1315 <arg value="comment=${user.comment}"/>
1316 <arg value="email=${user.email}"/>
1317 </java>
1318
1319 <!-- run tomcat again if it used to be running -->
1320 <if>
1321 <bool>
1322 <istrue value="${tomcat.isrunning}"/>
1323 </bool>
1324 <antcall target="start-tomcat"/>
1325 </if>
1326 </target>
1327
1328
[20079]1329 <!-- ======================= Axis Targets ============================ -->
1330
[15124]1331 <target name="prepare-axis" depends="init">
[16951]1332
1333 <if>
1334 <bool>
1335 <not><available file="${packages.home}/axis/.flagfile"/></not>
1336 </bool>
1337
1338 <get src="http://www.greenstone.org/gs3files/${axis.zip.version}"
1339 dest="${packages.home}/${axis.zip.version}"
1340 usetimestamp="true"/>
1341 <unzip src="${packages.home}/${axis.zip.version}"
1342 dest="${packages.home}"/>
1343 <move todir="${packages.home}/axis">
1344 <fileset dir="${packages.home}/${axis.dir.version}"/>
1345 </move>
1346 <!-- install axis into greenstone web app -->
1347 <copy todir="${web.lib}">
1348 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/lib">
1349 <include name="*.jar"/>
1350 </fileset>
1351 </copy>
1352 <copy todir="${web.home}">
1353 <fileset dir="${packages.home}/axis/webapps/axis/">
1354 <include name="*.jsp"/>
1355 <include name="*.jws"/>
1356 </fileset>
1357 </copy>
1358 <copy tofile="${web.home}/axis.html" file="${packages.home}/axis/webapps/axis/index.html"/>
1359 <copy todir="${web.classes}">
1360 <fileset dir="${packages.home}/axis/webapps/axis/WEB-INF/classes">
1361 <include name="*.properties"/>
1362 </fileset>
1363 </copy>
1364 <echo file="${packages.home}/axis/.flagfile">
1365 the timestamp of this file is the time that axis was extracted from the zip files.
1366 it is used to figure out whether the files need to be refreshed or not in `ant prepare-axis`
1367 </echo>
1368
1369 <else>
1370 <echo>Axis has been prepared, will not prepare</echo>
1371 <echo>Delete ${packages.home}/axis/.flagfile to force refresh</echo>
1372 </else>
1373
1374 </if>
[15124]1375 </target>
1376
[15229]1377 <target name="soap-deploy-site" depends="init,get-sitename,get-siteuri,get-webservices,create-deployment-files,deploy-site"
[15124]1378 description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
[15799]1379
1380 <target name="deploy-site">
[15124]1381 <java classname="org.apache.axis.client.AdminClient">
1382 <classpath refid="compile.classpath"/>
1383 <arg value="-l"/>
1384 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]1385 <arg file="${basedir}/resources/soap/deploy.wsdd"/>
1386 </java>
1387 <delete file="${basedir}/resources/soap/deploy.wsdd"/> <!--clean up, no longer used-->
[15124]1388 </target>
1389
[15229]1390 <target name="soap-undeploy-site" depends="get-undeploy-service-name"
[15124]1391 description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
[15229]1392 <filter token="servicesname" value="${axis.undeploy.servicename}"/>
1393 <copy file="${basedir}/resources/soap/undeploy-site.wsdd.template"
1394 tofile="${basedir}/resources/soap/undeploy.wsdd"
1395 filtering="true"
1396 overwrite="true"/>
[15124]1397 <java classname="org.apache.axis.client.AdminClient">
1398 <classpath refid="compile.classpath"/>
1399 <arg value="-l"/>
1400 <arg value="http://${tomcat.server}:${tomcat.port}${app.path}/servlet/AxisServlet"/>
[15229]1401 <arg file="${basedir}/resources/soap/undeploy.wsdd"/>
[15124]1402 </java>
[15229]1403 <delete file="${basedir}/resources/soap/undeploy.wsdd"/> <!--clean up, no longer used-->
[15799]1404 </target>
[15124]1405
[16936]1406 <!-- this target used to deploy the default web service SOAPServer (base.webservice.name) on the localsite server
1407 with the default servicename of localsite-->
[15124]1408 <target name="deploy-localsite" depends="init"
1409 description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
1410 <antcall target="start-tomcat"/>
[15235]1411 <echo>Deploying ${base.webservice.name} web services for localsite under service name: localsite</echo>
[15229]1412 <antcall target="create-deployment-files">
1413 <param name="axis.sitename" value="localsite"/>
[15235]1414 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]1415 <param name="axis.siteuri" value="localsite"/>
1416 </antcall>
[15124]1417 <antcall target="deploy-site">
1418 <param name="axis.sitename" value="localsite"/>
[15235]1419 <param name="axis.servicesname" value="${base.webservice.name}"/>
[15229]1420 <param name="axis.siteuri" value="localsite"/>
[15124]1421 </antcall>
[15369]1422 <echo>The Greenstone server has been started up. If you do not want it running, please type: ant stop.</echo>
[15124]1423 </target>
[15799]1424
[16936]1425 <target name="get-sitename" unless="axis.sitename">
[15229]1426 <input addproperty="axis.sitename" defaultvalue="localsite">What site do you want to deploy services for?
[15235]1427Press Enter for default:localsite</input>
[15124]1428 </target>
1429
[15229]1430 <target name="get-undeploy-service-name" unless="axis.undeploy.servicename">
1431 <input addproperty="axis.undeploy.servicename" defaultvalue="localsite">Please enter the full name of the service you wish to undeploy.
1432To find out which web services you've got deployed, point your browser to http://HOST:PORT/greenstone3/services
[20209]1433Or press Enter for undeploying the default:localsite /&gt;</input>
[15229]1434 <echo>Name of service to undeploy: ${axis.undeploy.servicename}</echo>
[15124]1435 </target>
1436
[15229]1437 <target name="get-webservices" unless="axis.servicesname">
[15235]1438 <input addproperty="axis.servicesname" defaultvalue="${base.webservice.name}">Which set of web services do you want to deploy?
[15229]1439Choose from: ${web.services.list}
[20209]1440Or press Enter for default:${base.webservice.name} /&gt;</input>
[15229]1441 <echo>${axis.servicesname}</echo>
1442 </target>
1443
1444 <target name="get-siteuri" depends="get-sitename,get-webservices" unless="axis.siteuri">
[15235]1445 <input addproperty="axis.siteuri" defaultvalue="${axis.servicesname}${axis.sitename}">What name do you want the service to have? (Press Enter for default:${axis.servicesname}${axis.sitename})</input>
[15229]1446 <echo>Site: ${axis.sitename}, services: ${axis.servicesname}, servicesname: ${axis.siteuri}</echo>
1447 </target>
1448
1449 <target name="set-soapmethod" description="Determines whether the service in the wsdd should have the style attribute set to message or the provider attribute set to java:RPC" if="axis.servicesname">
1450 <condition property="soap.method" value="provider='java:MSG' style='message' use='literal'">
[15235]1451 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15124]1452 </condition>
[15229]1453
1454 <!--everything else defaults to java:RPC at present-->
1455 <condition property="soap.method" value="provider='java:RPC'">
1456 <not>
[15235]1457 <equals arg1="${axis.servicesname}" arg2="${base.webservice.name}"/>
[15229]1458 </not>
1459 </condition>
[16936]1460 </target>
[15799]1461
[16936]1462 <target name="create-deployment-files" depends="set-soapmethod" if="axis.sitename">
[15124]1463 <filter token="sitename" value="${axis.sitename}"/>
1464 <filter token="siteuri" value="${axis.siteuri}"/>
[15229]1465 <filter token="servicesname" value="${axis.servicesname}"/>
1466 <filter token="soapmethod" value="${soap.method}"/>
[15124]1467 <copy file="${basedir}/resources/soap/site.wsdd.template"
[15229]1468 tofile="${basedir}/resources/soap/deploy.wsdd"
1469 filtering="true"
1470 overwrite="true"/>
[15124]1471 <!-- create the java files and compile them -->
[15229]1472 <copy file="${basedir}/resources/java/${axis.servicesname}.java.in"
1473 tofile="${src.gsdl3.home}/${axis.servicesname}${axis.sitename}.java"
1474 filtering="true"
1475 overwrite="true"/>
[15124]1476 <mkdir dir="${build.home}"/>
1477 <javac srcdir="${src.home}"
1478 destdir="${build.home}"
1479 debug="${compile.debug}"
1480 deprecation="${compile.deprecation}"
1481 optimize="${compile.optimize}">
1482 <classpath refid="compile.classpath"/>
[15229]1483 <include name="org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.java" />
[15124]1484 </javac>
1485 <mkdir dir="${web.classes}/org/greenstone/gsdl3"/>
[15799]1486 <copy file="${build.home}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
1487 tofile="${web.classes}/org/greenstone/gsdl3/${axis.servicesname}${axis.sitename}.class"
1488 overwrite="true" />
[15124]1489 </target>
[15799]1490
[15124]1491
[15799]1492 <!-- ====================== Core targets ============================== -->
1493 <!-- core targets refer to the core gsdl3 java src -->
[15124]1494
[19878]1495 <target name="prepare-core"/>
[15124]1496
1497 <target name="configure-core"/>
1498
1499 <target name="update-core" depends="init,svnupdate-core,clean-core,compile-core"
1500 description="Update only the Greenstone core" />
1501
[15799]1502 <target name="svnupdate-core" unless="nosvn.mode">
[20930]1503 <exec executable="svn">
1504 <arg value="update"/>
1505 <arg value="${basedir}"/>
1506 <arg value="-r"/><arg value="${branch.revision}"/>
1507 </exec>
[15124]1508 </target>
1509
1510 <target name="clean-core"
1511 description="Clean only the Greenstone core">
[19878]1512 <!-- should this delete the gsdl3.jar from web/WEB-INF?? -->
[15124]1513 <delete dir="${build.home}"/>
1514 </target>
1515
[15799]1516 <target name="compile-core" depends="init"
[15124]1517 description="Compile only the Greenstone core">
1518 <mkdir dir="${build.home}"/>
[25131]1519
[23803]1520 <if><bool><isset property="with.jni"/></bool>
1521 <javac srcdir="${src.home}"
1522 destdir="${build.home}"
1523 debug="${compile.debug}"
1524 deprecation="${compile.deprecation}"
1525 optimize="${compile.optimize}">
1526 <classpath>
1527 <path refid="compile.classpath"/>
1528 </classpath>
1529 </javac>
1530 <else>
1531 <property name="gsprefix" value=""/>
1532 <javac srcdir="${src.home}"
1533 destdir="${build.home}"
1534 debug="${compile.debug}"
1535 deprecation="${compile.deprecation}"
1536 optimize="${compile.optimize}">
1537 <classpath>
1538 <path refid="compile.classpath"/>
1539 </classpath>
1540 <exclude name="org/greenstone/gsdl3/service/GS2MGPPRetrieve.java"/>
1541 <exclude name="org/greenstone/gsdl3/service/GS2MGPPSearch.java"/>
1542 <exclude name="org/greenstone/gsdl3/service/GS2MGSearch.java"/>
1543 <exclude name="org/greenstone/gsdl3/service/GS2MGRetrieve.java"/>
1544 <exclude name="org/greenstone/gsdl3/service/GoogleNgramMGPPSearch.java"/>
1545 <exclude name="org/greenstone/gsdl3/service/PhindPhraseBrowse.java"/>
1546 <exclude name="org/greenstone/gsdl3/util/GDBMWrapper.java"/>
1547 </javac>
1548 </else>
1549 </if>
[15124]1550 <jar destfile="${build.home}/gsdl3.jar">
1551 <fileset dir="${build.home}">
[16936]1552 <include name="org/greenstone/gsdl3/**"/>
[15124]1553 <include name="org/flax/**"/>
[16936]1554 <exclude name="**/Test.class"/>
[15124]1555 </fileset>
1556 <manifest>
[16936]1557 <attribute name="Built-By" value="${user.name}" />
[15124]1558 </manifest>
1559 </jar>
1560 <copy file="${build.home}/gsdl3.jar" todir="${web.lib}"/>
[22101]1561
1562 <jar destfile="${build.home}/gutil.jar">
1563 <fileset dir="${build.home}">
1564 <include name="org/greenstone/util/**"/>
1565 </fileset>
1566 <manifest>
1567 <attribute name="Built-By" value="${user.name}" />
1568 </manifest>
1569 </jar>
1570 <copy file="${build.home}/gutil.jar" todir="${web.lib}"/>
1571
[15124]1572 <!-- copy the localsite server in case we need it -->
[15235]1573 <copy file="${build.home}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" tofile="${web.classes}/org/greenstone/gsdl3/${base.webservice.name}localsite.class" />
[15124]1574
[17918]1575 <!-- Greenstone Administrator Interface -->
[15124]1576 <jar destfile="${build.home}/GAI.jar">
1577 <fileset dir="${build.home}">
[16936]1578 <include name="org/greenstone/admin/**"/>
[15124]1579 </fileset>
1580 <manifest>
[16936]1581 <attribute name="Built-By" value="${user.name}" />
[15124]1582 </manifest>
1583 </jar>
[17917]1584 <copy file="${build.home}/GAI.jar" todir="${web.lib}"/>
[18124]1585 <copy file="${build.home}/GAI.jar" todir="${admin.dir}"/>
[15124]1586 <jar destfile="${build.home}/phind.jar">
1587 <fileset dir="${build.home}">
[16936]1588 <include name="org/greenstone/applet/phind/**"/>
[15124]1589 </fileset>
1590 <manifest>
[16936]1591 <attribute name="Built-By" value="${user.name}" />
[15124]1592 </manifest>
1593 </jar>
1594 <mkdir dir="${web.applet}"/>
1595 <copy file="${build.home}/phind.jar" todir="${web.applet}"/>
1596 <!-- phind also needs xercesImpl.jar and xml-apis.jar to be in web/applet -->
[18515]1597 <if>
1598 <bool><istrue value="${tomcat.islocal}"/></bool>
[20085]1599 <copy file="${web.lib}/xercesImpl.jar" todir="${web.applet}"/>
1600 <copy file="${web.lib}/xml-apis.jar" todir="${web.applet}"/>
[18515]1601 </if>
1602
1603
[17116]1604 <!-- skip anttasks for now
[15124]1605 <jar destfile="${build.home}/anttasks.jar">
1606 <fileset dir="${build.home}">
[16936]1607 <include name="org/greenstone/anttasks/**"/>
[15124]1608 </fileset>
1609 <manifest>
[16936]1610 <attribute name="Built-By" value="${user.name}" />
[15124]1611 </manifest>
1612 </jar>
[17116]1613 <copy file="${build.home}/anttasks.jar" todir="${basedir}/lib/java"/>-->
[15124]1614 <jar destfile="${build.home}/gsdl3test.jar">
1615 <fileset dir="${build.home}">
[16936]1616 <include name="org/greenstone/gsdl3/**/*Test.class"/>
1617 <include name="org/greenstone/testing/**"/>
[15124]1618 </fileset>
1619 <manifest>
[16936]1620 <attribute name="Built-By" value="${user.name}" />
[15124]1621 </manifest>
1622 </jar>
1623 <jar destfile="${build.home}/server.jar">
1624 <fileset dir="${build.home}">
[16936]1625 <include name="org/greenstone/server/**"/>
[22634]1626 <include name="org/greenstone/util/**"/>
[15124]1627 </fileset>
1628 <fileset file="${basedir}/resources/java/server.properties"/>
1629 <manifest>
[16936]1630 <attribute name="Built-By" value="${user.name}"/>
[15124]1631 </manifest>
1632 </jar>
1633 <copy file="${build.home}/server.jar" todir="${basedir}"/>
1634 </target>
[15799]1635
1636 <!-- ================== Packages targets ================================ -->
[15124]1637 <!-- these targets refer to the greenstone source packages - these need
1638 updating less often, so are in separate targets to the core -->
[19871]1639 <target name="prepare-packages" depends="init"/>
[15124]1640
1641 <target name="update-packages" depends="init,svnupdate-packages,configure-packages,clean-packages,compile-packages"
1642 description="Update only the source packages"/>
1643
[15799]1644 <target name="svnupdate-packages" unless="nosvn.mode">
[20930]1645 <exec executable="svn">
1646 <arg value="update"/>
1647 <arg value="${src.packages.home}"/>
1648 <arg value="-r"/><arg value="${branch.revision}"/>
1649 </exec>
[15124]1650 </target>
[19931]1651
[15124]1652
[19871]1653 <target name="configure-packages" depends="init,configure-javagdbm"
[15124]1654 description="Configure only the packages."/>
1655
[22184]1656 <target name="configure-javagdbm" if="with.jni">
[15124]1657 <echo>
1658 Configuring JavaGDBM
1659 </echo>
[18417]1660
[19904]1661 <exec executable="${javagdbm.home}/configure" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15124]1662 <arg value="--prefix=${basedir}"/>
1663 <arg value="--libdir=${lib.jni}"/>
[19873]1664 <arg value="--with-gdbm=${gdbm.home}"/>
[15124]1665 </exec>
1666 </target>
1667
[19871]1668 <target name="clean-packages" depends="init,clean-javagdbm" description="Clean only the packages"/>
[15124]1669
1670 <target name="clean-javagdbm" depends="init">
1671 <exec executable="make" os="${os.unix}"
[19904]1672 dir="${javagdbm.home}" failonerror="true">
[15124]1673 <arg value="clean"/>
1674 </exec>
1675 </target>
1676
[19871]1677 <target name="distclean-packages" depends="init,distclean-javagdbm" description="Distclean only the packages"/>
[15185]1678
[15799]1679 <target name="distclean-javagdbm" depends="init">
1680 <exec executable="make" os="${os.unix}"
[19904]1681 dir="${javagdbm.home}" failonerror="true">
[15799]1682 <arg value="distclean"/>
1683 </exec>
1684 </target>
1685
1686 <target name="compile-packages" description="Compile only the source packages">
[22184]1687 <!-- javagdbm -->
1688 <antcall target="compile-javagdbm"/>
1689 <!-- Search4j -->
1690 <antcall target="compile-search4j"/>
1691 </target>
1692
1693 <target name="compile-javagdbm" description="Compile JavaGDBM" if="with.jni">
[15799]1694
[19878]1695 <!-- unix: -->
[15799]1696 <echo>compile javagdbm</echo>
[19904]1697 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true"/>
1698 <exec executable="make" os="${os.unix}" dir="${javagdbm.home}" failonerror="true">
[15799]1699 <arg value="install"/>
1700 </exec>
[15098]1701
[23852]1702 <!-- windows: Calling without the "compile" argument first will run winMake.bat with
1703 "all" which will then perform both the compile AND link targets in jni/win32.mak
1704 (thereby also generating gdbmjava.dll). Then we run the same command with
1705 the "install" argument to copy the gdbmjava.dll into the correct location. -->
[23849]1706 <echo>Windows: compile javagdbm</echo>
[24076]1707 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}" dir="${javagdbm.home}" failonerror="true">
1708 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23852]1709 </exec>
1710 <exec executable="${javagdbm.home}/winMake.bat" os="${os.windows}" dir="${javagdbm.home}" failonerror="true">
[24076]1711 <env key="GSDL3SRCHOME" path="${basedir}"/>
[23847]1712 <arg value="install"/>
[15799]1713 </exec>
[15124]1714
[15799]1715 <!-- install the jar file -->
[23847]1716 <echo>Install the javagdbm jar file ${javagdbm.home}/javagdbm.jar ${lib.jni}</echo>
[15799]1717 <copy file="${javagdbm.home}/javagdbm.jar" todir="${lib.jni}"/>
1718 </target>
1719
[17491]1720 <target name="compile-search4j">
[17509]1721
[19996]1722 <!-- windows -->
[19997]1723 <if><bool><istrue value="${current.os.iswindows}"/></bool>
[19996]1724 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1725 <arg value="/f"/>
1726 <arg value="win32.mak"/>
1727 <arg value='BINDIR="${basedir}\bin"'/>
1728 </exec>
1729 <exec executable="nmake" dir="${src.packages.home}/search4j" failonerror="true">
1730 <arg value="/f"/>
1731 <arg value="win32.mak"/>
1732 <arg value="install"/>
1733 <arg value='BINDIR="${basedir}\bin"'/>
1734 </exec>
[17509]1735
[19996]1736 <!-- unix -->
[19997]1737 <else><if><bool><istrue value="${current.os.isunix}"/></bool>
[19996]1738 <exec executable="${src.packages.home}/search4j/configure" dir="${src.packages.home}/search4j" failonerror="true">
1739 <arg value="--bindir=${basedir}/bin"/>
1740 <arg value="${static.arg}"/>
1741 </exec>
1742 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true"/>
1743 <exec executable="make" dir="${src.packages.home}/search4j" failonerror="true">
1744 <arg value="install"/>
1745 </exec>
[17509]1746
[19996]1747 <!-- else warn -->
1748 <else>
1749 <fail>this target does not support the current os</fail>
[17509]1750
[19996]1751 </else></if></else></if>
1752
[17491]1753 </target>
1754
[19871]1755 <target name="install-auxiliary-jar-files" depends="init">
[22184]1756
1757 <if>
1758 <bool><available file="${mg.home}/mg.jar"/></bool>
1759 <copy file="${mg.home}/mg.jar" todir="${lib.jni}"/>
1760 </if>
1761
1762 <if>
[22199]1763 <bool><available file="${mgpp.home}/mgpp.jar"/></bool>
[22184]1764 <copy file="${mgpp.home}/mgpp.jar" todir="${lib.jni}"/>
1765 </if>
1766
[24744]1767 <copy file="${lucene.home}/LuceneWrapper3.jar" todir="${web.lib}"/>
[19871]1768 </target>
1769
[22976]1770 <target name="install-jni-files" depends="init" if="with.jni">
1771 <antcall target="install-jni-files-linux"/>
1772 <antcall target="install-jni-files-windows"/>
1773 <antcall target="install-jni-files-macos"/>
1774 </target>
[15124]1775
[15799]1776 <target name="install-jni-files-linux" depends="init" if="current.os.isunixnotmac">
[15124]1777 <copy file="${mg.home}/jni/libmgretrievejni.so" todir="${lib.jni}"/>
1778 <copy file="${mg.home}/jni/libmgsearchjni.so" todir="${lib.jni}"/>
[15799]1779 <copy file="${mg.home}/jni/libmgpassjni.so" todir="${lib.jni}"/>
[15124]1780 <copy file="${mgpp.home}/jni/libmgppretrievejni.so" todir="${lib.jni}"/>
1781 <copy file="${mgpp.home}/jni/libmgppsearchjni.so" todir="${lib.jni}"/>
[15799]1782 <copy file="${mgpp.home}/jni/libmgpppassjni.so" todir="${lib.jni}"/>
1783 </target>
1784 <target name="install-jni-files-windows" depends="init" if="current.os.iswindows">
[15124]1785 <copy file="${mg.home}/jni/mgretrievejni.dll" todir="${lib.jni}"/>
1786 <copy file="${mg.home}/jni/mgsearchjni.dll" todir="${lib.jni}"/>
[15799]1787 <copy file="${mg.home}/jni/mgpassjni.dll" todir="${lib.jni}"/>
[15124]1788 <copy file="${mgpp.home}/jni/mgppretrievejni.dll" todir="${lib.jni}"/>
1789 <copy file="${mgpp.home}/jni/mgppsearchjni.dll" todir="${lib.jni}"/>
[15799]1790 <copy file="${mgpp.home}/jni/mgpppassjni.dll" todir="${lib.jni}"/>
1791 </target>
1792 <target name="install-jni-files-macos" depends="init" if="current.os.ismac">
[15124]1793 <copy file="${mg.home}/jni/libmgretrievejni.jnilib" todir="${lib.jni}"/>
1794 <copy file="${mg.home}/jni/libmgsearchjni.jnilib" todir="${lib.jni}"/>
[15799]1795 <copy file="${mg.home}/jni/libmgpassjni.jnilib" todir="${lib.jni}"/>
[15124]1796 <copy file="${mgpp.home}/jni/libmgppretrievejni.jnilib" todir="${lib.jni}"/>
1797 <copy file="${mgpp.home}/jni/libmgppsearchjni.jnilib" todir="${lib.jni}"/>
[15799]1798 <copy file="${mgpp.home}/jni/libmgpppassjni.jnilib" todir="${lib.jni}"/>
1799 </target>
1800
[19871]1801 <!-- ========common-src targets =================================-->
1802 <!-- these are used to get common-src (for indexers, gdbm, sqlite etc) when
1803 collection building is not enabled -->
1804
1805 <target name="update-common-src" depends="init" if="collection.building.disabled">
1806 </target>
[19931]1807
[19871]1808 <target name="svnupdate-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
[20930]1809 <exec executable="svn">
1810 <arg value="update"/>
1811 <arg value="${common.src.home}"/>
1812 <arg value="-r"/><arg value="${branch.revision}"/>
1813 </exec>
[19871]1814 </target>
1815
[19878]1816 <target name="prepare-common-src" depends="init" if="collection.building.disabled" unless="common.src.present">
[19871]1817 <antcall target="checkout-common-src"/>
1818 <antcall target="unzip-windows-packages"/>
1819 </target>
1820
1821 <target name="checkout-common-src" depends="init" if="collection.building.disabled" unless="nosvn.mode">
1822 <echo>checking out common-src</echo>
[20930]1823 <exec executable="svn">
1824 <arg value="checkout"/>
[21196]1825 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src"/>
[20930]1826 <arg value="common-src"/>
1827 <arg value="-r"/><arg value="${branch.revision}"/>
1828 </exec>
[19871]1829 </target>
1830
[19931]1831 <target name="configure-common-src" depends="init">
[19871]1832 <exec executable="${common.src.home}/configure" os="${os.unix}"
[19904]1833 dir="${common.src.home}" failonerror="true">
[19931]1834 <arg value="--prefix=${gs2build.home}"/> <!-- what value to use?? -->
[19933]1835 <arg value="--bindir=${gs2build.home}/bin/${os.bin.dir}"/> <!-- what value to use?? -->
[22184]1836 <arg line="${gs2.opt.args}"/>
[22854]1837 <arg line="${static.arg}"/>
[23611]1838 <arg line="${allargs}"/>
[19871]1839 </exec>
1840 </target>
1841
[19931]1842 <target name="clean-common-src" depends="init">
[19871]1843 <!-- unix: -->
[19904]1844 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]1845 <arg value="clean"/>
1846 </exec>
1847 <!-- windows: -->
[19904]1848 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
[19871]1849 <arg value="/f"/>
1850 <arg value="win32.mak"/>
1851 <arg value="clean"/>
[19960]1852 <arg value="GSDLHOME=${gs2build.home}"/>
[19871]1853 </exec>
1854 </target>
[19931]1855 <target name="distclean-common-src" depends="init">
[19960]1856 <!-- unix: -->
[19904]1857 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[19871]1858 <arg value="distclean"/>
1859 </exec>
[19960]1860 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
1861 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1862 <arg value="/f"/>
1863 <arg value="win32.mak"/>
1864 <arg value="clean"/>
1865 <arg value="GSDLHOME=${gs2build.home}"/>
1866 </exec>
[19871]1867 </target>
[19931]1868 <target name="compile-common-src" depends="init">
[19871]1869 <!-- unix: -->
[19904]1870 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]1871 <arg value="${gs2.compile.target}"/>
[19871]1872 </exec>
1873 <!-- windows: -->
[19904]1874 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
[19871]1875 <arg value="/f"/>
1876 <arg value="win32.mak"/>
[19934]1877 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]1878 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[22976]1879 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
1880 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
1881 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
1882 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
[19871]1883 </exec>
1884 </target>
1885
[19843]1886 <!-- ======= collection-building targets ===========================-->
[15124]1887
[19843]1888 <target name="update-collection-building" if="collection.building.enabled"
[19931]1889 depends="init,svnupdate-collection-building,gs2build-edit-setup-bat,configure-common-src,clean-common-src,compile-common-src,configure-collection-building,clean-collection-building,compile-collection-building"
[19843]1890 description="Update (SVN update, configure, compile etc) only the collection building components"/>
[15124]1891
[19843]1892 <target name="svnupdate-collection-building" if="collection.building.enabled" depends="init,svnupdate-gs2build,svnupdate-gli" unless="nosvn.mode"
1893 description="SVN update the collection building components">
1894 </target>
[15124]1895
[19843]1896 <target name="prepare-collection-building" depends="init,prepare-gs2build,prepare-gli" if="collection.building.enabled">
[15124]1897 </target>
1898
[19931]1899 <target name="configure-collection-building" depends="init,configure-build-src" if="collection.building.enabled"
1900 description="Configure the collection building components">
[19843]1901 </target>
[15098]1902
[19948]1903 <target name="clean-collection-building" depends="init,clean-gli,clean-build-src"
[19843]1904 description="Clean only the collection building components"
1905 if="collection.building.enabled"/>
[18495]1906
[19948]1907 <target name="distclean-collection-building" depends="init,clean-build-src,distclean-build-src"
[19843]1908 description="Distclean only the collection building components"
1909 if="collection.building.enabled"/>
1910
[19931]1911 <target name="compile-collection-building" depends="init,compile-build-src,compile-gli" if="collection.building.enabled"
[19843]1912 description="Compile only the collection building components">
[19931]1913 <!-- make install for common-src -->
1914 <!-- unix: -->
1915 <exec executable="make" os="${os.unix}" dir="${common.src.home}" failonerror="true">
[22184]1916 <arg value="${gs2.install.target}"/>
[19931]1917 </exec>
1918
1919 <!-- windows: -->
1920 <exec executable="nmake" dir="${common.src.home}" os="${os.windows}" failonerror="true">
1921 <arg value="/f"/>
1922 <arg value="win32.mak"/>
[21370]1923 <arg value="install"/>
[23837]1924 <arg value="GSDLHOME=${gs2build.home}"/>
[22184]1925 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
[23837]1926 <arg value="ENABLE_MG=${gs2.windows.enablemg}"/>
1927 <arg value="ENABLE_MGPP=${gs2.windows.enablemgpp}"/>
1928 <arg value="USE_GDBM=${gs2.windows.usegdbm}"/>
1929 <arg value="USE_SQLITE=${gs2.windows.usesqlite}"/>
1930 <!--
1931 <arg value="ENABLE_JNI=${gs2.windows.enablejni}"/>
1932 <arg value="USE_SQLITE=0"/>--> <!-- why is this not on by default? -->
[19931]1933 </exec>
1934
1935 <!-- install gs2build indexers for windows -->
1936 <if>
1937 <bool><istrue value="${current.os.iswindows}"/></bool>
1938 <copy todir="${gs2build.home}/bin/windows">
1939 <fileset dir="${gs2build.home}/common-src/indexers/bin">
1940 <include name="*.*"/>
1941 </fileset>
1942 </copy>
1943 </if>
1944
1945 <!-- LuceneWrapper jar file not installed by default -->
1946 <mkdir dir="${gs2build.home}/bin/java"/>
[24744]1947 <copy file="${lucene.home}/LuceneWrapper3.jar" todir="${gs2build.home}/bin/java"/>
[19931]1948
[15124]1949 </target>
[19843]1950
1951 <!-- ============== gli targets ================================= -->
[15799]1952 <target name="svnupdate-gli" if="collection.building.enabled" depends="init" unless="nosvn.mode">
[19929]1953
[20930]1954 <exec executable="svn">
1955 <arg value="update"/>
1956 <arg value="${gli.home}"/>
1957 <arg value="-r"/><arg value="${branch.revision}"/>
1958 </exec>
1959
[21196]1960 <exec executable="svn" dir="web/WEB-INF/cgi">
[20930]1961 <arg value="export"/>
1962 <arg value="-r"/><arg value="${branch.revision}"/>
[25136]1963 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gliserver.pl"/>
[20930]1964 </exec>
[21196]1965 <exec executable="svn" dir="web/WEB-INF/cgi">
1966 <arg value="export"/>
1967 <arg value="-r"/><arg value="${branch.revision}"/>
[25136]1968 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gsdlCGI.pm"/>
[21196]1969 </exec>
[20930]1970
[15124]1971 </target>
1972
[19843]1973 <target name="prepare-gli" depends="init" if="collection.building.enabled" unless="gli.present">
[19911]1974 <!-- checkout -->
[23808]1975 <if><bool><and><not><istrue value="${nosvn.mode}"/></not><isset property="with.gli.and.gems"/></and></bool>
[19929]1976
[20930]1977 <exec executable="svn">
1978 <arg value="checkout"/>
[21196]1979 <arg value="${svn.root}/main/${branch.path}/gli"/>
[20930]1980 <arg value="-r"/><arg value="${branch.revision}"/>
1981 </exec>
1982
[21196]1983 <exec executable="svn" dir="web/WEB-INF/cgi">
[20930]1984 <arg value="export"/>
1985 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]1986 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gliserver.pl"/>
[20930]1987 </exec>
[21196]1988 <exec executable="svn" dir="web/WEB-INF/cgi">
1989 <arg value="export"/>
1990 <arg value="-r"/><arg value="${branch.revision}"/>
[25570]1991 <arg value="${svn.root}/main/${branch.path}/greenstone2/common-src/cgi-bin/gsdlCGI.pm"/>
[21196]1992 </exec>
[20930]1993
[19911]1994 </if>
[15124]1995 </target>
[19843]1996
1997 <target name="clean-gli" depends="init" if="collection.building.enabled">
1998 <!-- gli -->
1999 <property name="gli.home" value="${basedir}/gli"/>
2000 <!-- linux -->
2001 <exec executable="clean.sh" os="${os.unix}" dir="${gli.home}"
[20826]2002 resolveExecutable="true" failonerror="true"/>
[19843]2003 <!-- windows -->
2004 <exec executable="clean.bat" os="${os.windows}" dir="${gli.home}"
[20826]2005 resolveExecutable="true" failonerror="true"/>
[19843]2006 </target>
2007
2008 <target name="compile-gli" depends="init" if="collection.building.enabled">
[23808]2009 <if><bool><isset property="with.gli.and.gems"/></bool>
[23807]2010 <!-- gli -->
2011 <property name="gli.home" value="${basedir}/gli"/>
[15098]2012
[23807]2013 <!-- linux -->
2014 <exec executable="makegli.sh" os="${os.unix}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
2015 <!--remote gli-->
2016 <exec executable="makejar.sh" os="${os.unix}" dir="${gli.home}"
2017 resolveExecutable="true" failonerror="true"/>
2018 <!-- windows -->
2019 <exec executable="makegli.bat" os="${os.windows}" dir="${gli.home}" resolveExecutable="true" failonerror="true"/>
2020 <!--remote gli-->
2021 <exec executable="makejar.bat" os="${os.windows}" dir="${gli.home}"
2022 resolveExecutable="true" failonerror="true"/>
2023 <copy file="${gli.home}/GLIServer.jar" todir="${gs2build.home}/bin/java" />
2024 </if>
[19843]2025 </target>
[15124]2026
[19843]2027 <target name="gli" description="Run the Greenstone Librarian Interface" depends="init" if="collection.building.enabled">
[21351]2028 <exec executable="${basedir}/gli/gli.sh" os="${os.linux},${os.solaris}" dir="${basedir}/gli" spawn="true">
[19843]2029 <env key="gsdl3path" path="${basedir}"/>
[19871]2030 <env key="gsdlpath" path="${gs2build.home}"/>
[19843]2031 </exec>
[21351]2032 <exec executable="${basedir}/gli/gli.sh" os="${os.mac}" dir="${basedir}/gli" spawn="true">
[19843]2033 <env key="gsdl3path" path="${basedir}"/>
[19871]2034 <env key="gsdlpath" path="${gs2build.home}"/>
[19873]2035 <env key="DYLD_LIBRARY_PATH" path="${env.DYLD_LIBRARY_PATH}:${gdbm.home}/lib"/>
[19843]2036 </exec>
[21351]2037 <exec executable="${basedir}/gli/gli.bat" os="${os.windows}" dir="${basedir}/gli" spawn="true">
[19843]2038 <env key="GSDL3PATH" path="${basedir}"/>
[19871]2039 <env key="GSDLPATH" path="${gs2build.home}"/>
[19843]2040 </exec>
2041 <echo>Running GLI from Ant means that you don't get to see any of the terminal output. If you have problems with GLI and want to see the output, please run the script gli.sh/bat from the greenstone3/gli directory.
2042 </echo>
2043 </target>
2044
2045 <!-- ================ gs2build targets =========================== -->
2046
2047 <target name="svnupdate-gs2build" if="collection.building.enabled" depends="init" unless="nosvn.mode">
2048 <echo>svn updating gs2build</echo>
[20930]2049 <exec executable="svn">
2050 <arg value="update"/>
2051 <arg value="${gs2build.home}"/>
2052 <arg value="-r"/><arg value="${branch.revision}"/>
2053 </exec>
[15799]2054 </target>
[19843]2055
[15124]2056 <target name="prepare-gs2build" depends="init" if="collection.building.enabled" unless="gs2build.present">
2057 <antcall target="checkout-gs2build"/>
2058 <antcall target="unzip-windows-packages"/>
2059 <antcall target="checkout-winbin"/>
2060 <antcall target="get-windows-binaries"/>
2061 <antcall target="delete-winbin"/>
2062 </target>
2063
[19843]2064 <target name="checkout-gs2build" depends="init" if="collection.building.enabled" unless="nosvn.mode">
2065 <echo>checking out gs2build</echo>
[20930]2066 <exec executable="svn">
2067 <arg value="checkout"/>
[21196]2068 <arg value="${svn.root}/main/${branch.path}/gs2build"/>
[20930]2069 <arg value="-r"/><arg value="${branch.revision}"/>
2070 </exec>
2071
[21196]2072
[19843]2073 </target>
2074
[15124]2075 <target name="checkout-winbin" depends="init" if="current.os.iswindows"
[15799]2076 unless="nosvn.mode">
[20930]2077
2078 <exec executable="svn">
2079 <arg value="checkout"/>
[21196]2080 <arg value="${svn.root}/main/${branch.path}/binaries/windows"/>
[20930]2081 <arg value="-r"/><arg value="${branch.revision}"/>
[21196]2082 <arg value="winbin"/>
[20930]2083 </exec>
2084
[15124]2085 </target>
2086
[15799]2087 <target name="update-winbin" depends="init" if="current.os.iswindows" unless="nosvn.mode">
[20930]2088 <exec executable="svn">
2089 <arg value="update"/>
2090 <arg value="winbin"/>
2091 <arg value="-r"/><arg value="${branch.revision}"/>
2092 </exec>
2093
[15799]2094 </target>
[15124]2095
2096 <target name="get-windows-binaries" depends="init" if="collection.building.enabled.windows">
2097 <move todir="${gs2build.home}/bin/windows" failonerror="false">
2098 <fileset dir="${basedir}/winbin/bin"/>
2099 </move>
2100 </target>
[19843]2101
[15124]2102 <target name="delete-winbin" depends="init" if="collection.building.enabled.windows">
2103 <delete dir="${basedir}/winbin"/>
2104 </target>
2105
[19871]2106 <target name="unzip-windows-packages" depends="init" if="current.os.iswindows">
2107 <unzip src="${common.src.home}/packages/windows/crypt/crypt.zip"
2108 dest="${common.src.home}/packages/windows/crypt"/>
[18179]2109 <untar compression="gzip"
[19871]2110 src="${common.src.home}/packages/sqlite/${sqlite.targz.version}"
2111 dest="${common.src.home}/packages/sqlite"/>
2112 <unzip src="${common.src.home}/indexers/packages/windows/iconv/iconv.zip"
2113 dest="${common.src.home}/indexers/packages/windows/iconv"/>
[15799]2114 </target>
[19878]2115
[15124]2116 <target name="gs2build-edit-setup-bat" if="collection.building.enabled.windows">
2117 <!-- we want a windows path in the setup.bat file -->
2118 <pathconvert targetos="windows" property="gs2build.home.windows">
2119 <path path="${gs2build.home}"/>
2120 </pathconvert>
2121 <move file="${gs2build.home}/setup.bat" tofile="${gs2build.home}/setup-tmp.bat">
2122 <filterset>
[16620]2123 <filter token="gsdlhome" value="${gs2build.home.windows}"/>
[15799]2124 </filterset>
[15124]2125 </move>
2126 <move file="${gs2build.home}/setup-tmp.bat" tofile="${gs2build.home}/setup.bat" />
2127 </target>
2128
[19843]2129
[19948]2130 <target name="clean-build-src" depends="init" if="collection.building.enabled">
[19871]2131 <!-- unix: -->
[19948]2132 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]2133 <arg value="clean"/>
2134 </exec>
2135 <!-- windows: -->
[19948]2136 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
[15799]2137 <arg value="/f"/>
2138 <arg value="win32.mak"/>
2139 <arg value="clean"/>
[19960]2140 <arg value="GSDLHOME=${gs2build.home}"/>
[15124]2141 </exec>
2142 </target>
2143
[19948]2144
2145 <target name="distclean-build-src" depends="init,clean-build-src" if="collection.building.enabled">
[19960]2146 <!-- unix: -->
[19948]2147 <exec executable="make" os="${os.unix}" dir="${build.src.home}" failonerror="true">
[15124]2148 <arg value="distclean"/>
2149 </exec>
[19960]2150 <!-- windows: distclean = clean + remove configure products (remove makefiles). But on Windows there is no removing makefiles, so we just call clean -->
2151 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
2152 <arg value="/f"/>
2153 <arg value="win32.mak"/>
2154 <arg value="clean"/>
2155 <arg value="GSDLHOME=${gs2build.home}"/>
2156 </exec>
[15124]2157 </target>
[19843]2158
[19931]2159 <target name="configure-build-src" depends="init" if="collection.building.enabled"
2160 description="Configure the build-src component">
2161 <exec executable="${build.src.home}/configure" os="${os.unix}"
2162 dir="${build.src.home}" failonerror="true">
2163 <arg value="--prefix=${gs2build.home}"/>
[23611]2164 <arg line="${gs2.opt.args} ${static.arg} ${allargs}"/>
[19931]2165 </exec>
2166 </target>
[19910]2167
[19931]2168 <!-- common-src is done separately and needs to be compiled first -->
2169 <target name="compile-build-src" depends="init" if="collection.building.enabled">
2170
2171 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[23611]2172 <arg line="${ldlpath.arg}"/>
[22845]2173 </exec>
2174
2175 <exec executable="make" dir="${build.src.home}" os="${os.unix}" failonerror="true">
[19931]2176 <arg value="install"/>
2177 </exec>
[19910]2178
[19931]2179 <!-- run the setup script -->
[20826]2180 <!-- <exec executable="${compile.windows.c++.setup}" os="${os.windows}" failonerror="true"/>-->
[19910]2181 <!--Above does not work: even though vcvars.bat executes, the env changes it makes don't get saved. Need user to run vcvars.bat first before calling ant-->
[19931]2182 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
[19910]2183 <arg value="/f"/>
2184 <arg value="win32.mak"/>
[19934]2185 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]2186 </exec>
[19931]2187 <exec executable="nmake" dir="${build.src.home}" os="${os.windows}" failonerror="true">
[19910]2188 <arg value="/f"/>
2189 <arg value="win32.mak"/>
2190 <arg value="install"/>
[19934]2191 <arg value="GSDLHOME=${gs2build.home}"/>
[19910]2192 </exec>
[15124]2193 </target>
2194
2195
[15799]2196 <!-- ======================== TESTING Targets ========================= -->
[15124]2197
2198 <target name="test" description="Run the (incomplete) JUnit test suite "
2199 depends="init">
2200 <mkdir dir="${basedir}/test"/>
2201 <junit printsummary="withOutAndErr"
2202 errorproperty="test.failed"
2203 failureproperty="test.failed"
2204 fork="${junit.fork}">
2205 <formatter type="plain"/>
2206 <classpath>
[16936]2207 <pathelement location="${build.home}/gsdl3test.jar"/>
2208 <path refid="compile.classpath"/>
[15124]2209 </classpath>
2210 <test name="${testcase}" if="testcase"/>
2211 <batchtest todir="${basedir}/test" unless="testcase">
[18505]2212 <fileset dir="${build.home}" includes="**/*Test.class" />
[15124]2213 </batchtest>
2214 </junit>
2215 <echo>
2216 *********************************************
[15799]2217 Test output can be found in directory 'test'
[15124]2218 *********************************************
2219 </echo>
2220 </target>
[15799]2221
[20950]2222 <!-- ======================== FLAX Targets ========================= -->
2223 <target name="prepare-flax" description="check out flax source code from another repository" if="install.flax">
2224 <echo>checking out flax ...</echo>
2225 <mkdir dir="${basedir}/src/java/org/flax"/>
2226 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/flax"/>
[22198]2227 <mkdir dir="${basedir}/src/java/org/greenstone/gsdl3/action/flax"/>
[20950]2228 <mkdir dir="${web.home}/WEB-INF/classes/flax"/>
2229 <mkdir dir="${web.home}/interfaces/flax"/>
2230 <mkdir dir="${web.home}/sites/flax"/>
2231 <mkdir dir="${basedir}/flax-resources"/>
2232 <mkdir dir="${basedir}/flax-lib"/>
[21272]2233 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/flax"/>
2234 <arg value="src/java/org/flax"/></exec>
2235 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/flax"/>
2236 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
[22198]2237 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/src/java/org/greenstone/gsdl3/action/flax"/>
2238 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
2239 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/WEB-INF/classes/flax"/>
[21272]2240 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
2241 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/interfaces/flax"/>
2242 <arg value="${web.home}/interfaces/flax"/></exec>
2243 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/web/sites/flax"/>
2244 <arg value="${web.home}/sites/flax"/></exec>
2245 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/flax-resources"/>
2246 <arg value="flax-resources"/></exec>
2247 <exec executable="svn"><arg value="checkout"/><arg value="${flax.checkout.path}/lib"/>
2248 <arg value="flax-lib"/></exec>
[20950]2249 <antcall target="flax-copy-files" />
2250 </target>
[23442]2251
2252 <target name="flax-copy-files" description="copy some flax files into the appropriate greenstone3 directories">
2253 <echo>copying flax files ...</echo>
2254 <copy file="${web.home}/WEB-INF/classes/flax/web.xml" todir="${web.home}/WEB-INF" overwrite="true" />
2255 <!-- A configuration file containing web service binding information for the axis engine -->
2256 <copy file="${web.home}/WEB-INF/classes/flax/server-config.wsdd" todir="${web.home}/WEB-INF" overwrite="true" />
2257 <!-- A static web service wsdl file which is queried by soap client. The reason this file is used (instead of the dynamically generated version) is in case any redirects are used in the Apache configuration (e.g., flax.nzdl.org:80 redirects to harakeke:8080) -->
[23696]2258 <copy file="${basedir}/flax-resources/FlaxWebService.wsdl" tofile="${web.home}/FlaxWebService.wsdl" overwrite="true"/>
[23442]2259 <copy todir="${web.home}/WEB-INF/lib">
2260 <fileset dir="${basedir}/flax-lib">
[23443]2261 <include name="*.jar"/>
[23442]2262 </fileset>
2263 </copy>
2264 </target>
[23681]2265 <target name="configure-flax-wsdl" description="Configure flax webservice with tomcat server/port">
[23986]2266 <copy file="${basedir}/flax-resources/FlaxWebService.wsdl" tofile="${web.home}/FlaxWebService.wsdl" overwrite="true"/>
[23696]2267 <rsr file="${web.home}/FlaxWebService.wsdl" pattern="@flaxpublicserver@:@flaxpublicport@" replacement="${tomcat.server}:${tomcat.port}"/>
[23936]2268 <echo>FLAX server for Moodle module is configured to: http://${tomcat.server}:${tomcat.port}.</echo>
[23681]2269 </target>
[20950]2270
2271 <target name="update-flax" description="update flax from repository">
2272 <echo>updating flax ...</echo>
[21272]2273 <exec executable="svn"><arg value="update"/>
2274 <arg value="src/java/org/flax"/></exec>
2275 <exec executable="svn"><arg value="update"/>
[22198]2276 <arg value="src/java/org/greenstone/gsdl3/action/flax"/></exec>
2277 <exec executable="svn"><arg value="update"/>
[21272]2278 <arg value="src/java/org/greenstone/gsdl3/flax"/></exec>
2279 <exec executable="svn"><arg value="update"/>
2280 <arg value="${web.home}/WEB-INF/classes/flax"/></exec>
2281 <exec executable="svn"><arg value="update"/>
2282 <arg value="${web.home}/interfaces/flax"/></exec>
2283 <exec executable="svn"><arg value="update"/>
[24366]2284 <arg value="${web.home}/web/sites/flax"/></exec>
2285 <exec executable="svn"><arg value="update"/>
[21272]2286 <arg value="flax-resources"/></exec>
2287 <exec executable="svn"><arg value="update"/>
2288 <arg value="flax-lib"/></exec>
[24098]2289 <antcall target="compile-core" />
[20950]2290 </target>
2291
[20963]2292
[19354]2293 <target name="compile-javadocs">
2294 <javadoc packagenames="org.greenstone.*"
2295 sourcepath="src/java"
2296 defaultexcludes="yes"
2297 destdir="docs/javadoc"
2298 author="true"
2299 version="true"
2300 use="true"
2301 windowtitle="Greenstone3 API">
2302 <doctitle><![CDATA[<h1>Greenstone3 API</h1>]]></doctitle>
2303 </javadoc>
2304 </target>
2305
[20089]2306<!-- ========== Some distribution targets ======================== -->
[19972]2307 <target name="remove-source">
[23809]2308 <if><bool><isset property="with.gli.and.gems"/></bool>
[19975]2309 <delete includeEmptyDirs="true">
2310 <fileset dir="." defaultexcludes="false">
2311 <patternset refid="greenstone3.source.component"/>
2312 </fileset>
2313 </delete>
[23809]2314
2315 <else>
2316 <delete includeEmptyDirs="true">
2317 <fileset dir="." defaultexcludes="false">
2318 <patternset refid="greenstone3.source.no.gli.component"/>
2319 </fileset>
2320 </delete>
2321 </else>
2322 </if>
[19972]2323 </target>
2324
[19903]2325 <target name="dist-tidy"
2326 description="'tidies-up' a greenstone3 installation for distribution.">
2327
2328 <!-- delete unneeded things -->
2329 <delete dir="${packages.home}/axis"/>
2330 <delete><fileset dir="${packages.home}" includes="*.zip"/></delete>
2331 <delete file="README-SVN.txt"/>
[20215]2332 <delete file="build.properties.in"/>
[19903]2333
[19961]2334 <!-- delete source files -->
[19972]2335 <antcall target="remove-source"/>
[19903]2336
2337 <!-- create empty directories -->
2338 <mkdir dir="${web.home}/applet"/>
2339 <mkdir dir="${web.home}/logs"/>
[25446]2340 <mkdir dir="${web.home}/logs/tmp"/>
[19903]2341
2342 <!-- os specific tidy-ups -->
[20051]2343 <!-- linux, mac -->
2344 <if><bool><istrue value="${current.os.isunix}"/></bool>
[19903]2345 <delete><fileset dir="." includes="*.bat"/></delete>
[23809]2346 <if><bool><isset property="with.gli.and.gems"/></bool>
2347 <delete><fileset dir="gli" includes="*.bat"/></delete>
2348 </if>
[19903]2349 <delete><fileset dir="gs2build" includes="*.bat"/></delete>
2350 <delete><fileset dir="bin/script" includes="*.bat"/></delete>
[19946]2351 <delete file="${basedir}/gs2build/win32cfg.h"/>
[19939]2352 <delete file="${basedir}/gs2build/win32.mak"/>
[20051]2353 <delete dir="${basedir}/winutil"/>
[19903]2354 <delete failonerror="false"><fileset dir="${lib.jni}" includes="*.dll"/></delete>
2355
[20051]2356 <!-- windows -->
2357 <else><if><bool><istrue value="${current.os.iswindows}"/></bool>
2358 <delete><fileset dir="." includes="*.sh,*.bash,*.csh"/></delete>
[23809]2359 <if><bool><isset property="with.gli.and.gems"/></bool>
2360 <delete><fileset dir="gli" includes="*.sh,*.bash,*.csh"/></delete>
2361 </if>
[20051]2362 <delete><fileset dir="gs2build" includes="*.sh,*.bash,*.csh"/></delete>
2363 <delete><fileset dir="bin/script" includes="*.sh,*.bash,*.csh"/></delete>
2364 </if></else></if>
2365
[19903]2366 </target>
2367
[20089]2368 <!-- fix up executable permissions for binary release -->
2369 <target name="fix-execute-permissions">
2370 <echo>Setting binaries to executable</echo>
[20127]2371 <chmod perm="775">
2372 <fileset dir="."><patternset refid="greenstone3.executables"/></fileset>
2373 </chmod>
[20089]2374 </target>
2375
2376 <!-- fix up executable permissions for source code release -->
2377 <target name="fix-execute-permissions-source">
[20127]2378 <chmod perm="775">
2379 <fileset dir="."><patternset refid="greenstone3.source.executables"/></fileset>
2380 </chmod>
[20089]2381 </target>
2382
2383
[19931]2384 <!-- ============= tweaks for making compilation static ========== -->
2385 <target name="tweak-makefiles" depends="init" if="compile.static">
2386 <antcall target="rtftohtml-add-static" />
2387 </target>
2388
2389 <target name="rtftohtml-add-static" depends="init" if="collection.building.enabled">
2390 <rsr file="${gs2build.home}/build-src/packages/rtftohtml/rtftohtml_src/Makefile" pattern="-o rtftohtml(.{2})EXEEXT(.{1})" replacement="-o rtftohtml$1EXEEXT$2 -static" />
2391 </target>
2392
[15028]2393</project>
[22184]2394
Note: See TracBrowser for help on using the repository browser.