1 |
113
|
jones
|
<?xml version="1.0"?>
|
2 |
1311
|
berkley
|
<!--
|
3 |
670
|
jones
|
* '$RCSfile$'
|
4 |
|
|
* Authors: Matt Jones, Chad Berkley, Jivka Bojilova
|
5 |
|
|
* Copyright: 2000 Regents of the University of California and the
|
6 |
|
|
* National Center for Ecological Analysis and Synthesis
|
7 |
|
|
* For Details: http://www.nceas.ucsb.edu/
|
8 |
113
|
jones
|
*
|
9 |
670
|
jones
|
* '$Author$'
|
10 |
1292
|
tao
|
* '$Date$'
|
11 |
|
|
* '$Revision$'
|
12 |
666
|
jones
|
*
|
13 |
670
|
jones
|
* Build file for the Ant cross-platform build system for metacat
|
14 |
|
|
* See http://jakarta.apache.org for details on Ant
|
15 |
113
|
jones
|
*
|
16 |
303
|
jones
|
* usage: ant [compile|jar|install|jdoc]
|
17 |
666
|
jones
|
*
|
18 |
|
|
* This program is free software; you can redistribute it and/or modify
|
19 |
|
|
* it under the terms of the GNU General Public License as published by
|
20 |
|
|
* the Free Software Foundation; either version 2 of the License, or
|
21 |
|
|
* (at your option) any later version.
|
22 |
|
|
*
|
23 |
|
|
* This program is distributed in the hope that it will be useful,
|
24 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
25 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
26 |
|
|
* GNU General Public License for more details.
|
27 |
|
|
*
|
28 |
|
|
* You should have received a copy of the GNU General Public License
|
29 |
|
|
* along with this program; if not, write to the Free Software
|
30 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
31 |
1311
|
berkley
|
-->
|
32 |
329
|
jones
|
<project name="metacat" default="jar" basedir=".">
|
33 |
2277
|
jones
|
<property environment="env"/>
|
34 |
1929
|
brooke
|
<property file="build.properties"/> <!-- USER SPECIFIC PROPS -->
|
35 |
|
|
|
36 |
2599
|
jones
|
<!-- Determine which tomcat we are using and tomcat-specific settings -->
|
37 |
|
|
<condition property="jsdk" value="${tomcat}/lib/common/servlet.jar">
|
38 |
|
|
<equals arg1="${tomcatversion}" arg2="tomcat3" />
|
39 |
|
|
</condition>
|
40 |
|
|
<condition property="jsdk" value="${tomcat}/common/lib/servlet.jar">
|
41 |
|
|
<equals arg1="${tomcatversion}" arg2="tomcat4" />
|
42 |
|
|
</condition>
|
43 |
|
|
<condition property="jsdk" value="${tomcat}/common/lib/servlet-api.jar">
|
44 |
|
|
<equals arg1="${tomcatversion}" arg2="tomcat5" />
|
45 |
|
|
</condition>
|
46 |
|
|
|
47 |
|
|
<path id="compile.classpath">
|
48 |
|
|
<pathelement location="${jsdk}"/>
|
49 |
|
|
<pathelement location="lib" />
|
50 |
|
|
<fileset dir="lib">
|
51 |
|
|
<include name="*.jar"/>
|
52 |
|
|
</fileset>
|
53 |
|
|
<fileset dir="lib/lsid_lib">
|
54 |
|
|
<include name="*.jar"/>
|
55 |
|
|
</fileset>
|
56 |
|
|
<fileset dir="${jdbc_base}">
|
57 |
2617
|
tao
|
<include name="${jdbc-jar-name}"/>
|
58 |
2599
|
jones
|
<include name="msbase.jar"/>
|
59 |
|
|
<include name="msutil.jar"/>
|
60 |
|
|
<include name="mssqlserver.jar"/>
|
61 |
|
|
</fileset>
|
62 |
|
|
</path>
|
63 |
|
|
|
64 |
1929
|
brooke
|
<target name="check-db">
|
65 |
|
|
<condition property="use-oracle">
|
66 |
|
|
<equals arg1="${database}" arg2="oracle" />
|
67 |
|
|
</condition>
|
68 |
|
|
<condition property="use-postgresql">
|
69 |
|
|
<equals arg1="${database}" arg2="postgresql" />
|
70 |
|
|
</condition>
|
71 |
|
|
<condition property="use-sqlserver">
|
72 |
|
|
<equals arg1="${database}" arg2="sqlserver" />
|
73 |
|
|
</condition>
|
74 |
|
|
</target>
|
75 |
|
|
|
76 |
|
|
<target name="oracle" if="use-oracle">
|
77 |
931
|
jones
|
<!-- Customize these properties if you are using oracle -->
|
78 |
1929
|
brooke
|
<echo message="Using oracle..."/>
|
79 |
925
|
berkley
|
<property name="dbDriver" value="oracle.jdbc.driver.OracleDriver"/>
|
80 |
|
|
<property name="dbAdapter" value="edu.ucsb.nceas.dbadapter.OracleAdapter"/>
|
81 |
2617
|
tao
|
<property name="jdbc-jar-name" value="classes111.zip" />
|
82 |
|
|
<property name="jdbc" value="${jdbc_base}/${jdbc-jar-name}" />
|
83 |
1744
|
tao
|
<!-- Property to indicate is not MSSQL installation-->
|
84 |
|
|
<property name="other" value="yes"/>
|
85 |
2175
|
tao
|
<property name="install-sql"
|
86 |
2103
|
jones
|
value="xmltables.sql" />
|
87 |
2175
|
tao
|
<property name="upgrade-1.2-sql"
|
88 |
2103
|
jones
|
value="upgrade-db-to-1.2.sql" />
|
89 |
2175
|
tao
|
<property name="upgrade-1.3-sql"
|
90 |
2103
|
jones
|
value="upgrade-db-to-1.3.sql" />
|
91 |
2175
|
tao
|
<property name="upgrade-1.4-sql"
|
92 |
2103
|
jones
|
value="upgrade-db-to-1.4.sql" />
|
93 |
2518
|
sgarg
|
<property name="upgrade-1.5-sql"
|
94 |
2431
|
sgarg
|
value="upgrade-db-to-1.5.sql" />
|
95 |
2518
|
sgarg
|
<property name="upgrade-1.6-sql"
|
96 |
|
|
value="upgrade-db-to-1.6.sql" />
|
97 |
925
|
berkley
|
</target>
|
98 |
1311
|
berkley
|
|
99 |
1929
|
brooke
|
<target name="postgresql" if="use-postgresql">
|
100 |
931
|
jones
|
<!-- Customize these properties if you are using postgres -->
|
101 |
1929
|
brooke
|
<echo message="Using PostgreSQL..."/>
|
102 |
925
|
berkley
|
<property name="dbDriver" value="org.postgresql.Driver"/>
|
103 |
1311
|
berkley
|
<property name="dbAdapter"
|
104 |
931
|
jones
|
value="edu.ucsb.nceas.dbadapter.PostgresqlAdapter"/>
|
105 |
2610
|
tao
|
<property name="jdbc-jar-name" value="postgresql-8.0-312.jdbc3.jar" />
|
106 |
|
|
<property name="jdbc" value="lib/${jdbc-jar-name}" />
|
107 |
1744
|
tao
|
<!-- Property to indicate is not MSSQL installation-->
|
108 |
|
|
<property name="other" value="yes"/>
|
109 |
2175
|
tao
|
<property name="install-sql"
|
110 |
2277
|
jones
|
value="xmltables-postgres.sql" />
|
111 |
2175
|
tao
|
<property name="upgrade-1.2-sql"
|
112 |
2277
|
jones
|
value="upgrade-db-to-1.2-postgres.sql" />
|
113 |
2175
|
tao
|
<property name="upgrade-1.3-sql"
|
114 |
2277
|
jones
|
value="upgrade-db-to-1.3-postgres.sql" />
|
115 |
2175
|
tao
|
<property name="upgrade-1.4-sql"
|
116 |
2277
|
jones
|
value="upgrade-db-to-1.4-postgres.sql" />
|
117 |
2518
|
sgarg
|
<property name="upgrade-1.5-sql"
|
118 |
2431
|
sgarg
|
value="upgrade-db-to-1.5-postgres.sql" />
|
119 |
2518
|
sgarg
|
<property name="upgrade-1.6-sql"
|
120 |
|
|
value="upgrade-db-to-1.6-postgres.sql" />
|
121 |
1744
|
tao
|
</target>
|
122 |
2175
|
tao
|
|
123 |
1929
|
brooke
|
<target name="sqlserver" if="use-sqlserver">
|
124 |
1739
|
tao
|
<!-- Customize these properties if you are using SQL server -->
|
125 |
1929
|
brooke
|
<echo message="Using SQL Server..."/>
|
126 |
1739
|
tao
|
<property name="dbDriver" value="com.microsoft.jdbc.sqlserver.SQLServerDriver"/>
|
127 |
|
|
<property name="dbAdapter"
|
128 |
|
|
value="edu.ucsb.nceas.dbadapter.SqlserverAdapter"/>
|
129 |
2296
|
sgarg
|
<property name="jdbc" value="${jdbc_base}/msbase.jar" />
|
130 |
|
|
<property name="jdbc-add1" value="${jdbc_base}/msutil.jar" />
|
131 |
|
|
<property name="jdbc-add2" value="${jdbc_base}/mssqlserver.jar" />
|
132 |
1744
|
tao
|
<!-- Property to indicate is a MSSQL installation-->
|
133 |
|
|
<property name="MSSQL" value="yes"/>
|
134 |
2175
|
tao
|
<property name="install-sql"
|
135 |
2118
|
costa
|
value="xmltables-sqlserver.sql" />
|
136 |
1739
|
tao
|
</target>
|
137 |
1311
|
berkley
|
|
138 |
1929
|
brooke
|
<target name="config" depends="check-db,oracle,postgresql,sqlserver">
|
139 |
1814
|
tao
|
<!-- usr for client testing, generally you don't need change-->
|
140 |
2277
|
jones
|
<property name="mcuser" value="uid=jones,o=NCEAS,dc=ecoinformatics,dc=org"/>
|
141 |
1783
|
jones
|
<property name="mcpassword" value=""/>
|
142 |
1801
|
tao
|
<property name="mcanotheruser" value="uid=jtao,o=LTER,dc=ecoinformatics,dc=org"/>
|
143 |
|
|
<property name="mcanotherpassword" value=""/>
|
144 |
|
|
|
145 |
1827
|
jones
|
<property name="debug" value="on" />
|
146 |
2053
|
sgarg
|
<property name="debuglevel" value="55" />
|
147 |
1716
|
berkley
|
|
148 |
1522
|
berkley
|
<property name="morphosourcedir" value="../morpho" />
|
149 |
1570
|
tao
|
<property name="defaultcontenttype" value="application/octet-stream" />
|
150 |
1780
|
jones
|
<property name="utilitiesdir" value="../utilities" />
|
151 |
2175
|
tao
|
|
152 |
1941
|
brooke
|
<echo>*********** tomcatversion = ${tomcatversion}</echo>
|
153 |
|
|
<echo>*********** set jsdk to ${jsdk}</echo>
|
154 |
1103
|
tao
|
</target>
|
155 |
|
|
|
156 |
931
|
jones
|
<target name="init" depends="config">
|
157 |
|
|
<!-- It is less likely you'll need to make any changes from here down,
|
158 |
|
|
but customization is possible -->
|
159 |
1929
|
brooke
|
<property name="installdir" value="${webapps}/${context}" />
|
160 |
|
|
<property name="temp-dir" value="/tmp/${context}" />
|
161 |
|
|
<property name="name" value="metacat"/>
|
162 |
|
|
<property name="Name" value="MetaCat"/>
|
163 |
|
|
<property name="debugprefix" value="${Name}:"/>
|
164 |
2577
|
sgarg
|
<property name="release" value="1.6.0"/>
|
165 |
1929
|
brooke
|
<property name="replication-path" value="/${context}/servlet/replication"/>
|
166 |
2331
|
costa
|
<property name="harvester-registration-login-path" value="/${context}/harvesterRegistrationLogin"/>
|
167 |
|
|
<property name="harvester-registration-path" value="/${context}/harvesterRegistration"/>
|
168 |
1952
|
jones
|
<property name="servlet-path" value="/${context}/metacat"/>
|
169 |
1929
|
brooke
|
<property name="html-path" value="/${context}"/>
|
170 |
2180
|
tao
|
<property name="systemidserver" value="http://${httpserver}"/>
|
171 |
2175
|
tao
|
<property name="style-common-relpath"
|
172 |
1933
|
brooke
|
value="/style/common"/>
|
173 |
2175
|
tao
|
<property name="style-common-cvsrelpath"
|
174 |
1938
|
brooke
|
value="lib${style-common-relpath}"/>
|
175 |
2175
|
tao
|
<property name="style-common-fullpath"
|
176 |
1933
|
brooke
|
value="/${installdir}${style-common-relpath}"/>
|
177 |
2343
|
sgarg
|
<property name="templates.dir" value="${style-common-fullpath}/templates"/>
|
178 |
2175
|
tao
|
<property name="style-common-path"
|
179 |
1933
|
brooke
|
value="/${context}${style-common-relpath}"/>
|
180 |
1929
|
brooke
|
<property name="style-skins-relpath" value="/style/skins"/>
|
181 |
|
|
<property name="style-skins-path" value="/${context}${style-skins-relpath}"/>
|
182 |
|
|
<property name="replication-log" value="/tmp/metacatreplication.log"/>
|
183 |
1579
|
tao
|
<property name="replicationerrorlog" value="/tmp/metacatreplication.err"/>
|
184 |
1929
|
brooke
|
<property name="config-dir" value="${webapps}/${style-skins-path}" />
|
185 |
2461
|
sgarg
|
<property name="util-module" value="utilities" />
|
186 |
1929
|
brooke
|
<property name="eml-module" value="eml" />
|
187 |
|
|
<property name="eml-version" value="2.0.0beta6" />
|
188 |
|
|
<property name="eml-tag" value="EML_2_0_0_BETA_6_FOR_METACAT" />
|
189 |
2232
|
sgarg
|
<property name="eml2_0_0-tag" value="RELEASE_EML_2_0_0_UPDATE_1" />
|
190 |
2477
|
sgarg
|
<property name="eml2_0_1-tag" value="RELEASE_EML_2_0_1_UPDATE_1" />
|
191 |
2228
|
sgarg
|
<property name="eml2_0_0namespace" value="eml://ecoinformatics.org/eml-2.0.0" />
|
192 |
|
|
<property name="eml2_0_1namespace" value="eml://ecoinformatics.org/eml-2.0.1" />
|
193 |
|
|
<property name="eml2_1_0namespace" value="eml://ecoinformatics.org/eml-2.1.0" />
|
194 |
1929
|
brooke
|
<property name="stmmlnamespace" value="http://www.xml-cml.org/schema/stmml" />
|
195 |
1933
|
brooke
|
<property name="eml-css" value="eml_xsl.css"/>
|
196 |
|
|
<property name="eml-module.default.css"
|
197 |
|
|
value="default.css"/>
|
198 |
348
|
jones
|
|
199 |
1929
|
brooke
|
<!-- Config for registry variables -->
|
200 |
1933
|
brooke
|
<property name="scope" value="obfs"/>
|
201 |
|
|
<property name="responseForm" value="genericResponse.tmpl"/>
|
202 |
|
|
<property name="entryForm" value="entryForm.tmpl"/>
|
203 |
|
|
<property name="guide" value="genericGuide.tmpl"/>
|
204 |
2343
|
sgarg
|
<property name="confirmData" value="confirmData.tmpl"/>
|
205 |
|
|
<property name="deleteData" value="deleteData.tmpl"/>
|
206 |
|
|
<property name="genericHeader" value="genericHeader.tmpl"/>
|
207 |
|
|
<property name="genericFooter" value="genericFooter.tmpl"/>
|
208 |
|
|
<property name="adminname" value="KNB Support"/>
|
209 |
|
|
<property name="recipient" value="knb-software\@nceas.ucsb.edu"/>
|
210 |
1929
|
brooke
|
|
211 |
2343
|
sgarg
|
<property name="defaultStage" value="initregister"/>
|
212 |
|
|
<property name="defaultHeader" value="genericHeader.tmpl"/>
|
213 |
|
|
<property name="defaultFooter" value="genericFooter.tmpl"/>
|
214 |
|
|
<property name="defaultChangePass" value="ldapChangePass.tmpl"/>
|
215 |
|
|
<property name="defaultResetPass" value="ldapResetPass.tmpl"/>
|
216 |
|
|
<property name="changePassSuccess" value="ldapChangePassSuccess.tmpl"/>
|
217 |
|
|
<property name="resetPassSuccess" value="ldapResetPassSuccess.tmpl"/>
|
218 |
|
|
<property name="registerFailed" value="ldapRegisterFailed.tmpl"/>
|
219 |
|
|
<property name="registerLter" value="ldapRegisterLter.tmpl"/>
|
220 |
|
|
<property name="registerMatch" value="ldapRegisterMatch.tmpl"/>
|
221 |
|
|
<property name="registerSuccess" value="ldapRegisterSuccess.tmpl"/>
|
222 |
|
|
<property name="register" value="ldapRegister.tmpl"/>
|
223 |
|
|
<property name="searchResults" value="searchResults.tmpl"/>
|
224 |
|
|
|
225 |
|
|
<filter token="scope" value="${scope}"/>
|
226 |
|
|
<filter token="responseForm" value="${responseForm}"/>
|
227 |
|
|
<filter token="entryForm" value="${entryForm}"/>
|
228 |
|
|
<filter token="guide" value="${guide}"/>
|
229 |
|
|
<filter token="confirmData" value="${confirmData}"/>
|
230 |
|
|
<filter token="deleteData" value="${deleteData}"/>
|
231 |
|
|
<filter token="genericHeader" value="${genericHeader}"/>
|
232 |
|
|
<filter token="genericFooter" value="${genericFooter}"/>
|
233 |
|
|
<filter token="adminname" value="${adminname}"/>
|
234 |
|
|
<filter token="recipient" value="${recipient}"/>
|
235 |
|
|
|
236 |
|
|
<filter token="ldapurl" value="ldap.ecoinformatics.org"/>
|
237 |
|
|
<filter token="ldapSearchBase" value="dc=ecoinformatics,dc=org"/>
|
238 |
|
|
<filter token="ldap_user" value="cn=Manager,dc=ecoinformatics,dc=org"/>
|
239 |
|
|
<filter token="ldap_password" value="ldap_password"/>
|
240 |
|
|
<filter token="mailhost" value="smtp.ecoinformatics.org"/>
|
241 |
|
|
<filter token="sender" value="knb-software\@nceas.ucsb.edu"/>
|
242 |
2461
|
sgarg
|
<filter token="cgiurl" value="http://${server}/cgi-bin/ldapweb.cgi"/>
|
243 |
2343
|
sgarg
|
|
244 |
882
|
jones
|
<filter token="docrooturl" value="./" />
|
245 |
2356
|
sgarg
|
<filter token="database" value="${database}" />
|
246 |
588
|
berkley
|
<filter token="jdbc-connect" value="${jdbc-connect}"/>
|
247 |
882
|
jones
|
<filter token="dbDriver" value="${dbDriver}"/>
|
248 |
915
|
berkley
|
<filter token="dbAdapter" value="${dbAdapter}"/>
|
249 |
614
|
bojilova
|
<filter token="install-dir" value="${installdir}"/>
|
250 |
1929
|
brooke
|
<filter token="temp-dir" value="${temp-dir}"/>
|
251 |
586
|
berkley
|
<filter token="server" value="${server}"/>
|
252 |
977
|
tao
|
<filter token="systemidserver" value="${systemidserver}"/>
|
253 |
1929
|
brooke
|
<filter token="cgi-prefix" value="${cgi-prefix}"/>
|
254 |
|
|
<filter token="ldapUrl" value="${ldapUrl}"/>
|
255 |
586
|
berkley
|
<filter token="replication-log" value="${replication-log}"/>
|
256 |
1579
|
tao
|
<filter token="replicationerrorlog" value="${replicationerrorlog}"/>
|
257 |
348
|
jones
|
<filter token="release" value="${release}"/>
|
258 |
|
|
<filter token="servlet-path" value="${servlet-path}"/>
|
259 |
359
|
bojilova
|
<filter token="html-path" value="${html-path}"/>
|
260 |
362
|
jones
|
<filter token="user" value="${user}"/>
|
261 |
|
|
<filter token="password" value="${password}"/>
|
262 |
1783
|
jones
|
<filter token="mcuser" value="${mcuser}"/>
|
263 |
|
|
<filter token="mcpassword" value="${mcpassword}"/>
|
264 |
1801
|
tao
|
<filter token="mcanotheruser" value="${mcanotheruser}"/>
|
265 |
|
|
<filter token="mcanotherpassword" value="${mcanotherpassword}"/>
|
266 |
1929
|
brooke
|
<filter token="knb-site-url" value="${knb-site-url}"/>
|
267 |
1933
|
brooke
|
<filter token="eml-css" value="${eml-css}"/>
|
268 |
1929
|
brooke
|
<filter token="style-skins-relpath" value="${style-skins-relpath}"/>
|
269 |
|
|
<filter token="style-skins-path" value="${style-skins-path}"/>
|
270 |
|
|
<filter token="style-common-relpath" value="${style-common-relpath}"/>
|
271 |
|
|
<filter token="style-common-fullpath" value="${style-common-fullpath}"/>
|
272 |
|
|
<filter token="style-common-path" value="${style-common-path}"/>
|
273 |
2343
|
sgarg
|
<filter token="templates.dir" value="${templates.dir}"/>
|
274 |
|
|
|
275 |
1929
|
brooke
|
<!-- The "style-path" filter is used by the eml xsl stylesheets!! -->
|
276 |
|
|
<filter token="style-path" value="${style-skins-path}"/>
|
277 |
525
|
berkley
|
<filter token="replication-path" value="${replication-path}"/>
|
278 |
2299
|
costa
|
<filter token="harvester-registration-login-path" value="${harvester-registration-login-path}"/>
|
279 |
|
|
<filter token="harvester-registration-path" value="${harvester-registration-path}"/>
|
280 |
832
|
jones
|
<filter token="config-dir" value="${config-dir}"/>
|
281 |
|
|
<filter token="default-style" value="${default-style}"/>
|
282 |
877
|
jones
|
<filter token="eml-version" value="${eml-version}"/>
|
283 |
2175
|
tao
|
<filter token="eml2_0_0namespace" value="${eml2_0_0namespace}"/>
|
284 |
2228
|
sgarg
|
<filter token="eml2_0_1namespace" value="${eml2_0_1namespace}"/>
|
285 |
2175
|
tao
|
<filter token="eml2_1_0namespace" value="${eml2_1_0namespace}"/>
|
286 |
1718
|
tao
|
<filter token="stmmlnamespace" value="${stmmlnamespace}"/>
|
287 |
1009
|
tao
|
<filter token="context" value="${context}"/>
|
288 |
1292
|
tao
|
<filter token="forcereplicationwaitingtime" value="${forcereplicationwaitingtime}" />
|
289 |
1051
|
tao
|
<filter token="debuglevel" value="${debuglevel}" />
|
290 |
1079
|
tao
|
<filter token="datafilepath" value="${datafilepath}" />
|
291 |
1455
|
tao
|
<filter token="inlinedatafilepath" value="${inlinedatafilepath}" />
|
292 |
1522
|
berkley
|
<filter token="defaultcontenttype" value="${defaultcontenttype}" />
|
293 |
1538
|
berkley
|
<filter token="debugprefix" value="${debugprefix}"/>
|
294 |
2308
|
jones
|
<filter token="administrators" value="${administrators}"/>
|
295 |
2577
|
sgarg
|
<filter token="moderators" value="${moderators}"/>
|
296 |
|
|
<filter token="allowedSubmitters" value="${allowedSubmitters}"/>
|
297 |
|
|
<filter token="deniedSubmitters" value="${deniedSubmitters}"/>
|
298 |
1487
|
tao
|
|
299 |
2343
|
sgarg
|
<filter token="defaultStage" value="${defaultStage}"/>
|
300 |
|
|
<filter token="defaultHeader" value="${defaultHeader}"/>
|
301 |
|
|
<filter token="defaultFooter" value="${defaultFooter}"/>
|
302 |
|
|
<filter token="defaultChangePass" value="${defaultChangePass}"/>
|
303 |
|
|
<filter token="defaultResetPass" value="${defaultResetPass}"/>
|
304 |
|
|
<filter token="changePassSuccess" value="${changePassSuccess}"/>
|
305 |
|
|
<filter token="resetPassSuccess" value="${resetPassSuccess}"/>
|
306 |
|
|
<filter token="registerFailed" value="${registerFailed}"/>
|
307 |
|
|
<filter token="registerLter" value="${registerLter}"/>
|
308 |
|
|
<filter token="registerMatch" value="${registerMatch}"/>
|
309 |
|
|
<filter token="registerSuccess" value="${registerSuccess}"/>
|
310 |
|
|
<filter token="register" value="${register}"/>
|
311 |
|
|
<filter token="searchResults" value="${searchResults}"/>
|
312 |
2549
|
tao
|
|
313 |
|
|
<filter token="timedreplication" value="${timedreplication}" />
|
314 |
|
|
<filter token="firsttimedreplication" value="${firsttimedreplication}" />
|
315 |
|
|
<filter token="timedreplicationinterval" value="${timedreplicationinterval}" />
|
316 |
|
|
|
317 |
|
|
<property name="srcdir" value="./src" />
|
318 |
2599
|
jones
|
<property name="lib.dir" value="./lib" />
|
319 |
1783
|
jones
|
<property name="testdir" value="./test" />
|
320 |
2277
|
jones
|
<property name="testtorun" value="BuildIndexTest" />
|
321 |
1116
|
tao
|
<property name="junittestsdir" value="./test/edu/ucsb/nceas/metacattest" />
|
322 |
|
|
<property name="junitnettestsdir" value="./test/edu/ucsb/nceas/metacatnettest" />
|
323 |
348
|
jones
|
<property name="build.dir" value="./build"/>
|
324 |
|
|
<property name="build.src" value="${build.dir}/src"/>
|
325 |
|
|
<property name="build.dest" value="${build.dir}/classes"/>
|
326 |
516
|
jones
|
<property name="build.docs" value="${build.dir}/docs"/>
|
327 |
348
|
jones
|
<property name="build.samples" value="${build.dir}/samples"/>
|
328 |
|
|
<property name="build.tests" value="${build.dir}/tests"/>
|
329 |
1778
|
tao
|
<property name="build.tmp" value="${build.dir}/tmp"/>
|
330 |
1116
|
tao
|
<property name="build.metacattest" value="${build.tests}/metacattest"/>
|
331 |
|
|
<property name="build.metacatnettest" value="${build.tests}/metacatnettest"/>
|
332 |
348
|
jones
|
<property name="build.data" value="${build.dir}/data"/>
|
333 |
806
|
jones
|
<property name="build.javadocs" value="${build.dir}/docs/api"/>
|
334 |
1952
|
jones
|
<property name="build.war" value="${build.dir}/war"/>
|
335 |
348
|
jones
|
|
336 |
882
|
jones
|
<property name="dist.dir" value="dist"/>
|
337 |
806
|
jones
|
<property name="ver.dir" value="${dist.dir}/${name}-${release}"/>
|
338 |
|
|
<property name="ver.src" value="${ver.dir}/src"/>
|
339 |
2461
|
sgarg
|
<property name="util.dir" value="${dist.dir}/${util-module}"/>
|
340 |
2401
|
costa
|
<!-- directories for creating a Harvest List Editor distribution -->
|
341 |
|
|
<property name="dist.dir.hle" value="disthle"/>
|
342 |
|
|
<property name="ver.dir.hle" value="${dist.dir.hle}/harvest-list-editor-${release}"/>
|
343 |
806
|
jones
|
|
344 |
254
|
jones
|
<property name="package.home" value="edu/ucsb/nceas/metacat" />
|
345 |
2317
|
jones
|
<condition property="utilities.required">
|
346 |
|
|
<or>
|
347 |
|
|
<not><available file="lib/httpclient.jar"/></not>
|
348 |
|
|
<not><available file="lib/utilities.jar"/></not>
|
349 |
|
|
</or>
|
350 |
|
|
</condition>
|
351 |
2318
|
jones
|
<condition property="eml.required">
|
352 |
|
|
<or>
|
353 |
|
|
<not><available file="lib/schema/eml-2.0.1/eml.xsd"/></not>
|
354 |
|
|
<not><available file="lib/schema/eml-2.0.0/eml.xsd"/></not>
|
355 |
|
|
<not><available file="lib/dtd/eml-dataset-2.0.0beta6.dtd"/></not>
|
356 |
|
|
</or>
|
357 |
|
|
</condition>
|
358 |
2599
|
jones
|
|
359 |
113
|
jones
|
</target>
|
360 |
1311
|
berkley
|
|
361 |
348
|
jones
|
<target name="prepare" depends="init">
|
362 |
|
|
<mkdir dir="${build.dir}"/>
|
363 |
|
|
<mkdir dir="${build.src}"/>
|
364 |
|
|
<mkdir dir="${build.dest}"/>
|
365 |
516
|
jones
|
<mkdir dir="${build.javadocs}"/>
|
366 |
1778
|
tao
|
<mkdir dir="${build.tmp}"/>
|
367 |
348
|
jones
|
|
368 |
822
|
jones
|
<copy todir="${build.src}" filtering="yes">
|
369 |
|
|
<fileset dir="${srcdir}">
|
370 |
|
|
<include name="edu/**"/>
|
371 |
|
|
<include name="com/**"/>
|
372 |
877
|
jones
|
<include name="**/*.sql"/>
|
373 |
822
|
jones
|
<exclude name="**/CVS*"/>
|
374 |
|
|
<exclude name="**/.#*"/>
|
375 |
|
|
</fileset>
|
376 |
|
|
</copy>
|
377 |
2344
|
sgarg
|
<available file="lib/style/common/emlb6toeml2" type="dir"
|
378 |
1954
|
jones
|
property="styles.not.needed"/>
|
379 |
348
|
jones
|
</target>
|
380 |
|
|
|
381 |
1939
|
brooke
|
<target name="compile" depends="prepare,utilities"
|
382 |
1986
|
jones
|
description="Compiles java code to build dir, and copies metacat props files there">
|
383 |
1939
|
brooke
|
|
384 |
1311
|
berkley
|
<javac srcdir="${build.src}"
|
385 |
|
|
destdir="${build.dest}"
|
386 |
1827
|
jones
|
debug="${debug}"
|
387 |
2599
|
jones
|
excludes="**/*.sql **/stringclient/** **/client/*.java **/harvesterClient/*.java">
|
388 |
|
|
<classpath>
|
389 |
|
|
<path refid="compile.classpath"/>
|
390 |
|
|
</classpath>
|
391 |
|
|
</javac>
|
392 |
1311
|
berkley
|
</target>
|
393 |
113
|
jones
|
|
394 |
2322
|
jones
|
<target name="jar" depends="compile,geteml"
|
395 |
1939
|
brooke
|
description="Compiles and jars metacat java code to metacat.jar in build dir">
|
396 |
|
|
|
397 |
353
|
jones
|
<delete file="${build.dir}/${name}.jar" />
|
398 |
635
|
jones
|
<jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}"
|
399 |
2135
|
costa
|
excludes="**/protocols/ **/harvesterClient/" />
|
400 |
1311
|
berkley
|
</target>
|
401 |
|
|
|
402 |
1939
|
brooke
|
<target name="protocol" depends="compile"
|
403 |
|
|
description="Compiles and jars protocol java code to protocol.jar in build dir">
|
404 |
635
|
jones
|
<delete file="${build.dir}/protocol.jar" />
|
405 |
|
|
<jar jarfile="${build.dir}/protocol.jar" basedir="${build.dest}"
|
406 |
|
|
includes="**/protocols/" />
|
407 |
1311
|
berkley
|
</target>
|
408 |
113
|
jones
|
|
409 |
2317
|
jones
|
<target name="utilities" depends="config" if="utilities.required">
|
410 |
1796
|
jones
|
<ant dir="${utilitiesdir}" target="clean" inheritAll="false" />
|
411 |
|
|
<ant dir="${utilitiesdir}" target="jar" inheritAll="false" />
|
412 |
1780
|
jones
|
<copy file="${utilitiesdir}/lib/httpclient.jar" todir="lib" />
|
413 |
|
|
<copy file="${utilitiesdir}/build/utilities.jar" todir="lib" />
|
414 |
|
|
</target>
|
415 |
|
|
|
416 |
2461
|
sgarg
|
<target name="getutilities" depends="prepare"
|
417 |
|
|
description="Checks utility out of cvs and copies it to your metacat cvs sandbox">
|
418 |
|
|
<echo>Enter CVS password: </echo>
|
419 |
|
|
<cvs cvsRoot="${cvsroot}"
|
420 |
2468
|
sgarg
|
package="${util-module}"
|
421 |
2461
|
sgarg
|
dest="${build.tmp}" />
|
422 |
|
|
</target>
|
423 |
|
|
|
424 |
1939
|
brooke
|
<target name="client" depends="utilities, prepare"
|
425 |
|
|
description="Compiles metacat-client java code to build dir">
|
426 |
1780
|
jones
|
<javac srcdir="${build.src}"
|
427 |
|
|
destdir="${build.dest}"
|
428 |
2599
|
jones
|
includes="edu/ucsb/nceas/metacat/client/*">
|
429 |
|
|
<classpath>
|
430 |
|
|
<path refid="compile.classpath"/>
|
431 |
|
|
</classpath>
|
432 |
|
|
</javac>
|
433 |
1780
|
jones
|
</target>
|
434 |
|
|
|
435 |
1939
|
brooke
|
<target name="clientjar" depends="client"
|
436 |
|
|
description="Compiles and jars metacat-client java code to metacat-client.jar in build dir">
|
437 |
1780
|
jones
|
<delete file="${build.dir}/${name}-client.jar" />
|
438 |
|
|
<jar jarfile="${build.dir}/${name}-client.jar" basedir="${build.dest}"
|
439 |
|
|
includes="**/metacat/client/" />
|
440 |
|
|
</target>
|
441 |
|
|
|
442 |
2059
|
costa
|
<target name="harvester" depends="client"
|
443 |
1950
|
costa
|
description="Compiles harvester java code to build dir">
|
444 |
|
|
<javac srcdir="${build.src}"
|
445 |
|
|
destdir="${build.dest}"
|
446 |
2599
|
jones
|
includes="edu/ucsb/nceas/metacat/harvesterClient/*">
|
447 |
|
|
<classpath>
|
448 |
|
|
<path refid="compile.classpath"/>
|
449 |
|
|
</classpath>
|
450 |
|
|
</javac>
|
451 |
1950
|
costa
|
</target>
|
452 |
|
|
|
453 |
|
|
<target name="harvesterjar" depends="harvester"
|
454 |
2059
|
costa
|
description="Compiles and jars harvester java code to harvester.jar in build dir">
|
455 |
|
|
<delete file="${build.dir}/harvester.jar" />
|
456 |
|
|
<jar jarfile="${build.dir}/harvester.jar" basedir="${build.dest}"
|
457 |
1950
|
costa
|
includes="**/metacat/harvesterClient/" />
|
458 |
|
|
</target>
|
459 |
|
|
|
460 |
2369
|
costa
|
<target name="harvestListEditorDist" depends="harvesterjar"
|
461 |
|
|
description="Prepares a distribution of the Harvest List Editor tool">
|
462 |
2401
|
costa
|
<mkdir dir="${dist.dir.hle}"/>
|
463 |
|
|
<delete dir="${ver.dir.hle}" />
|
464 |
|
|
<mkdir dir="${ver.dir.hle}"/>
|
465 |
|
|
<copy todir="${ver.dir.hle}" file="${build.dir}/harvester.jar"/>
|
466 |
|
|
<copy todir="${ver.dir.hle}" file="lib/xercesImpl.jar"/>
|
467 |
|
|
<copy todir="${ver.dir.hle}" file="lib/harvester/harvestList.xsd"/>
|
468 |
|
|
<copy todir="${ver.dir.hle}" file="lib/harvester/harvestListEditor.bat"/>
|
469 |
|
|
<copy todir="${ver.dir.hle}" file="lib/harvester/harvestListEditor.sh"/>
|
470 |
|
|
<delete file="./harvest-list-editor-${release}.zip"/>
|
471 |
|
|
<zip zipfile="./harvest-list-editor-${release}.zip" basedir="${ver.dir.hle}" />
|
472 |
|
|
<delete file="./harvest-list-editor-${release}.tar.gz" />
|
473 |
|
|
<tar tarfile="./harvest-list-editor-${release}.tar" basedir="${ver.dir.hle}" />
|
474 |
|
|
<gzip zipfile="./harvest-list-editor-${release}.tar.gz"
|
475 |
|
|
src="./harvest-list-editor-${release}.tar"/>
|
476 |
|
|
<delete file="./harvest-list-editor-${release}.tar" />
|
477 |
2369
|
costa
|
</target>
|
478 |
|
|
|
479 |
2318
|
jones
|
<target name="geteml" depends="getemlpre2,geteml2+" if="eml.required"
|
480 |
1939
|
brooke
|
description="Calls getemlpre2 and geteml2+ targets" />
|
481 |
|
|
|
482 |
2318
|
jones
|
<target name="getemlpre2" depends="prepare" if="eml.required"
|
483 |
1939
|
brooke
|
description="Checks EML-beta6 out of cvs and copies dtds and xsl to your metacat cvs sandbox">
|
484 |
1612
|
tao
|
<echo>Enter CVS password: </echo>
|
485 |
|
|
<cvs cvsRoot="${cvsroot}"
|
486 |
|
|
package="${eml-module}"
|
487 |
|
|
tag="${eml-tag}"
|
488 |
1939
|
brooke
|
dest="${build.tmp}/eml_${eml-tag}" />
|
489 |
1612
|
tao
|
<mkdir dir="lib/dtd" />
|
490 |
|
|
<copy todir="lib/dtd" filtering="yes">
|
491 |
1939
|
brooke
|
<fileset dir="${build.tmp}/eml_${eml-tag}/${eml-module}">
|
492 |
1612
|
tao
|
<include name="*.dtd"/>
|
493 |
|
|
</fileset>
|
494 |
|
|
<mapper type="glob" from="eml-*.dtd" to="eml-*-${eml-version}.dtd" />
|
495 |
|
|
</copy>
|
496 |
2228
|
sgarg
|
|
497 |
|
|
<copy todir="${style-common-cvsrelpath}" filtering="yes">
|
498 |
|
|
<fileset dir="${build.tmp}/eml_${eml-tag}/${eml-module}/style">
|
499 |
|
|
<include name="**/*.xsl"/>
|
500 |
|
|
</fileset>
|
501 |
|
|
</copy>
|
502 |
1939
|
brooke
|
</target>
|
503 |
|
|
|
504 |
2318
|
jones
|
<target name="geteml2+" depends="prepare" if="eml.required"
|
505 |
1939
|
brooke
|
description="Checks eml-2 out of cvs and copies schema and xsl to your metacat cvs sandbox">
|
506 |
|
|
<echo>Enter CVS password: </echo>
|
507 |
1612
|
tao
|
<cvs cvsRoot="${cvsroot}"
|
508 |
|
|
package="${eml-module}"
|
509 |
2228
|
sgarg
|
tag="${eml2_0_0-tag}"
|
510 |
|
|
dest="${build.tmp}/eml_${eml2_0_0-tag}" />
|
511 |
|
|
<mkdir dir="lib/schema/eml-2.0.0" />
|
512 |
|
|
<copy todir="lib/schema/eml-2.0.0" filtering="yes">
|
513 |
|
|
<fileset dir="${build.tmp}/eml_${eml2_0_0-tag}/${eml-module}">
|
514 |
1612
|
tao
|
<include name="*.xsd"/>
|
515 |
|
|
</fileset>
|
516 |
2175
|
tao
|
|
517 |
1939
|
brooke
|
<!-- shouldn't we have a mapper here like this??
|
518 |
|
|
<mapper type="glob" from="eml-*.xsd" to="eml-*-${eml-version}.xsd" />
|
519 |
2175
|
tao
|
|
520 |
|
|
Jing's code didn't nave one - does it need to be added?
|
521 |
1939
|
brooke
|
NOTE that eml-version is set to beta 6, so this would need changing -->
|
522 |
2175
|
tao
|
|
523 |
1612
|
tao
|
</copy>
|
524 |
1939
|
brooke
|
<antcall target="copyxsl">
|
525 |
2228
|
sgarg
|
<param name="cvs.tagname" value="${eml2_0_0-tag}" />
|
526 |
|
|
<param name="dirname" value="eml-2.0.0" />
|
527 |
1939
|
brooke
|
</antcall>
|
528 |
2228
|
sgarg
|
|
529 |
|
|
<echo>Enter CVS password: </echo>
|
530 |
|
|
<cvs cvsRoot="${cvsroot}"
|
531 |
|
|
package="${eml-module}"
|
532 |
|
|
tag="${eml2_0_1-tag}"
|
533 |
|
|
dest="${build.tmp}/eml_${eml2_0_1-tag}" />
|
534 |
|
|
<mkdir dir="lib/schema/eml-2.0.1" />
|
535 |
|
|
<copy todir="lib/schema/eml-2.0.1" filtering="yes">
|
536 |
|
|
<fileset dir="${build.tmp}/eml_${eml2_0_1-tag}/${eml-module}">
|
537 |
|
|
<include name="*.xsd"/>
|
538 |
|
|
</fileset>
|
539 |
|
|
</copy>
|
540 |
|
|
<antcall target="copyxsl">
|
541 |
|
|
<param name="cvs.tagname" value="${eml2_0_1-tag}" />
|
542 |
|
|
<param name="dirname" value="eml-2.0.1" />
|
543 |
|
|
</antcall>
|
544 |
1939
|
brooke
|
</target>
|
545 |
|
|
|
546 |
2175
|
tao
|
<target name="copyxsl"
|
547 |
1939
|
brooke
|
description="Copies xsl stylesheets from checkout in build/tmp to your metacat cvs sandbox">
|
548 |
|
|
|
549 |
|
|
<delete file="${style-common-cvsrelpath}/${eml-css}"/>
|
550 |
2175
|
tao
|
|
551 |
2228
|
sgarg
|
<copy todir="${style-common-cvsrelpath}/${dirname}" filtering="yes">
|
552 |
|
|
<fileset dir="${build.tmp}/eml_${cvs.tagname}/${eml-module}/style/eml">
|
553 |
1929
|
brooke
|
<include name="**/*.xsl"/>
|
554 |
1612
|
tao
|
</fileset>
|
555 |
|
|
</copy>
|
556 |
1939
|
brooke
|
|
557 |
2175
|
tao
|
|
558 |
|
|
<!-- now copy default css from eml module and put it in style-common-path
|
559 |
1933
|
brooke
|
dir with a new name, so other skin-specific css can import it if reqd -->
|
560 |
1939
|
brooke
|
<copy file="${build.tmp}/eml_${cvs.tagname}/${eml-module}/${eml-module.default.css}"
|
561 |
1938
|
brooke
|
tofile="${style-common-cvsrelpath}/${eml-css}" />
|
562 |
1612
|
tao
|
|
563 |
1463
|
tao
|
</target>
|
564 |
2175
|
tao
|
|
565 |
|
|
|
566 |
|
|
|
567 |
2322
|
jones
|
<target name="register-schemas" depends="prepare"
|
568 |
|
|
description="Registers the Schemas with a new Metacat instance">
|
569 |
877
|
jones
|
<echo/>
|
570 |
2322
|
jones
|
<echo>Registering the Schemas with the new Metacat instance...</echo>
|
571 |
877
|
jones
|
<sql driver="${dbDriver}"
|
572 |
|
|
url="${jdbc-connect}"
|
573 |
|
|
userid="${user}"
|
574 |
|
|
password="${password}"
|
575 |
2599
|
jones
|
src="${build.src}/loaddtdschema.sql">
|
576 |
|
|
<classpath>
|
577 |
|
|
<path refid="compile.classpath"/>
|
578 |
|
|
</classpath>
|
579 |
|
|
</sql>
|
580 |
877
|
jones
|
</target>
|
581 |
1716
|
berkley
|
|
582 |
1939
|
brooke
|
<target name="installdb" depends="prepare"
|
583 |
|
|
description="Installs the database tables">
|
584 |
1827
|
jones
|
<echo/>
|
585 |
|
|
<echo>Installing the database tables...</echo>
|
586 |
2445
|
sgarg
|
<echo>In case of failure, run the sql script manually. Look at Metacat install instructions for more details</echo>
|
587 |
2599
|
jones
|
<echo/>
|
588 |
1827
|
jones
|
<sql driver="${dbDriver}"
|
589 |
|
|
url="${jdbc-connect}"
|
590 |
|
|
userid="${user}"
|
591 |
|
|
password="${password}"
|
592 |
2599
|
jones
|
src="${build.src}/${install-sql}">
|
593 |
|
|
<classpath>
|
594 |
|
|
<path refid="compile.classpath"/>
|
595 |
|
|
</classpath>
|
596 |
|
|
</sql>
|
597 |
1827
|
jones
|
</target>
|
598 |
|
|
|
599 |
2599
|
jones
|
<target name="dropdb" depends="prepare"
|
600 |
|
|
description="WARNING: Drops the database tables">
|
601 |
|
|
<echo/>
|
602 |
|
|
<echo>Dropping the database tables...</echo>
|
603 |
|
|
<echo>In case of failure, run the sql script manually. Look at Metacat install instructions for more details</echo>
|
604 |
|
|
<echo/>
|
605 |
|
|
<sql driver="${dbDriver}"
|
606 |
|
|
url="${jdbc-connect}"
|
607 |
|
|
userid="${user}"
|
608 |
|
|
password="${password}"
|
609 |
|
|
src="${build.src}/drop-postgres.sql">
|
610 |
|
|
<classpath>
|
611 |
|
|
<path refid="compile.classpath"/>
|
612 |
|
|
</classpath>
|
613 |
|
|
</sql>
|
614 |
|
|
</target>
|
615 |
|
|
|
616 |
1939
|
brooke
|
<target name="upgrade12" depends="prepare"
|
617 |
|
|
description="Updates the database tables to upgrade to version 1.2">
|
618 |
1827
|
jones
|
<echo/>
|
619 |
|
|
<echo>Updating the database tables to upgrade to version 1.2...</echo>
|
620 |
|
|
<sql driver="${dbDriver}"
|
621 |
|
|
url="${jdbc-connect}"
|
622 |
|
|
userid="${user}"
|
623 |
|
|
password="${password}"
|
624 |
2599
|
jones
|
src="${build.src}/${upgrade-1.2-sql}">
|
625 |
|
|
<classpath>
|
626 |
|
|
<path refid="compile.classpath"/>
|
627 |
|
|
</classpath>
|
628 |
|
|
</sql>
|
629 |
1827
|
jones
|
</target>
|
630 |
|
|
|
631 |
1939
|
brooke
|
<target name="upgrade13" depends="prepare"
|
632 |
|
|
description="Updates the database tables to upgrade to version 1.3">
|
633 |
1827
|
jones
|
<echo/>
|
634 |
|
|
<echo>Updating the database tables to upgrade to version 1.3...</echo>
|
635 |
|
|
<sql driver="${dbDriver}"
|
636 |
|
|
url="${jdbc-connect}"
|
637 |
|
|
userid="${user}"
|
638 |
|
|
password="${password}"
|
639 |
2599
|
jones
|
src="${build.src}/${upgrade-1.3-sql}">
|
640 |
|
|
<classpath>
|
641 |
|
|
<path refid="compile.classpath"/>
|
642 |
|
|
</classpath>
|
643 |
|
|
</sql>
|
644 |
1827
|
jones
|
</target>
|
645 |
|
|
|
646 |
2103
|
jones
|
<target name="upgrade14" depends="prepare"
|
647 |
|
|
description="Updates the database tables to upgrade to version 1.4">
|
648 |
|
|
<echo/>
|
649 |
|
|
<echo>Updating the database tables to upgrade to version 1.4...</echo>
|
650 |
|
|
<sql driver="${dbDriver}"
|
651 |
|
|
url="${jdbc-connect}"
|
652 |
|
|
userid="${user}"
|
653 |
|
|
password="${password}"
|
654 |
2599
|
jones
|
src="${build.src}/${upgrade-1.4-sql}">
|
655 |
|
|
<classpath>
|
656 |
|
|
<path refid="compile.classpath"/>
|
657 |
|
|
</classpath>
|
658 |
|
|
</sql>
|
659 |
2103
|
jones
|
</target>
|
660 |
|
|
|
661 |
2395
|
tao
|
<target name="upgrade15" depends="sqlupgrade15"
|
662 |
2391
|
tao
|
description="Updates the database tables to upgrade to version 1.5">
|
663 |
2353
|
sgarg
|
<echo/>
|
664 |
2461
|
sgarg
|
<echo>Updating the database tables to upgrade to version 1.5...</echo>
|
665 |
2353
|
sgarg
|
<copy file="${srcdir}/upgrade_db_to_1_5.java"
|
666 |
2391
|
tao
|
todir="${build.tmp}" filtering="yes"/>
|
667 |
2461
|
sgarg
|
|
668 |
2353
|
sgarg
|
<javac srcdir="${build.tmp}"
|
669 |
|
|
destdir="${build.tmp}"
|
670 |
|
|
debug="${debug}"
|
671 |
2599
|
jones
|
includes="upgrade_db_to_1_5.java">
|
672 |
|
|
<classpath>
|
673 |
|
|
<path refid="compile.classpath"/>
|
674 |
|
|
</classpath>
|
675 |
|
|
</javac>
|
676 |
2461
|
sgarg
|
|
677 |
2599
|
jones
|
<java classname="upgrade_db_to_1_5">
|
678 |
|
|
<classpath>
|
679 |
|
|
<path refid="compile.classpath"/>
|
680 |
|
|
<fileset dir="${build.tmp}"/>
|
681 |
|
|
</classpath>
|
682 |
|
|
</java>
|
683 |
2353
|
sgarg
|
|
684 |
2393
|
tao
|
</target>
|
685 |
2461
|
sgarg
|
|
686 |
2518
|
sgarg
|
<target name="upgrade16" depends="prepare"
|
687 |
|
|
description="Updates the database tables from version 1.5 to version 1.6">
|
688 |
|
|
<echo/>
|
689 |
|
|
<echo>Updating the database tables to upgrade to version 1.6...</echo>
|
690 |
|
|
<sql driver="${dbDriver}"
|
691 |
|
|
url="${jdbc-connect}"
|
692 |
|
|
userid="${user}"
|
693 |
|
|
password="${password}"
|
694 |
2599
|
jones
|
src="${build.src}/${upgrade-1.6-sql}">
|
695 |
|
|
<classpath>
|
696 |
|
|
<path refid="compile.classpath"/>
|
697 |
|
|
</classpath>
|
698 |
|
|
</sql>
|
699 |
2518
|
sgarg
|
</target>
|
700 |
|
|
|
701 |
|
|
|
702 |
2395
|
tao
|
<target name="sqlupgrade15" depends="prepare">
|
703 |
|
|
<echo>Updating the database tables to upgrade to version 1.5 by sql command</echo>
|
704 |
2393
|
tao
|
<sql driver="${dbDriver}"
|
705 |
|
|
classpath="${jdbc}:${jdbc-add1}:${jdbc-add2}"
|
706 |
|
|
url="${jdbc-connect}"
|
707 |
|
|
userid="${user}"
|
708 |
|
|
password="${password}"
|
709 |
|
|
src="${build.src}/${upgrade-1.5-sql}" />
|
710 |
2444
|
sgarg
|
<sql driver="${dbDriver}"
|
711 |
|
|
classpath="${jdbc}:${jdbc-add1}:${jdbc-add2}"
|
712 |
|
|
url="${jdbc-connect}"
|
713 |
|
|
userid="${user}"
|
714 |
|
|
password="${password}"
|
715 |
|
|
rdbms="oracle"
|
716 |
|
|
delimiter="/">
|
717 |
|
|
<transaction>
|
718 |
|
|
CREATE TRIGGER xml_returnfield_before_insert
|
719 |
|
|
BEFORE INSERT ON xml_returnfield FOR EACH ROW
|
720 |
|
|
BEGIN
|
721 |
|
|
SELECT xml_returnfield_id_seq.nextval
|
722 |
|
|
INTO :new.returnfield_id
|
723 |
|
|
FROM dual;
|
724 |
|
|
END;
|
725 |
|
|
/
|
726 |
|
|
</transaction>
|
727 |
|
|
<transaction>
|
728 |
|
|
CREATE TRIGGER xml_queryresult_before_insert
|
729 |
|
|
BEFORE INSERT ON xml_queryresult FOR EACH ROW
|
730 |
|
|
BEGIN
|
731 |
|
|
SELECT xml_queryresult_id_seq.nextval
|
732 |
|
|
INTO :new.queryresult_id
|
733 |
|
|
FROM dual;
|
734 |
|
|
END;
|
735 |
|
|
/
|
736 |
|
|
</transaction>
|
737 |
|
|
</sql>
|
738 |
2393
|
tao
|
</target>
|
739 |
2353
|
sgarg
|
|
740 |
1952
|
jones
|
<target name="install" depends="war" description="* Full Install *">
|
741 |
1079
|
tao
|
<mkdir dir="${datafilepath}" />
|
742 |
1455
|
tao
|
<mkdir dir="${inlinedatafilepath}" />
|
743 |
1079
|
tao
|
<chmod dir="${datafilepath}" perm="ug+w" />
|
744 |
1929
|
brooke
|
<mkdir dir="${temp-dir}"/>
|
745 |
|
|
<chmod dir="${temp-dir}" perm="ug+w" />
|
746 |
1952
|
jones
|
<copy file="${build.dir}/${context}.war" todir="${webapps}"/>
|
747 |
|
|
</target>
|
748 |
2175
|
tao
|
|
749 |
|
|
<target name="upgrade" depends="install"
|
750 |
1952
|
jones
|
description="* Upgrade an existing metacat installation with a new version *">
|
751 |
|
|
<unwar src="${webapps}/${context}.war" dest="${webapps}/${context}" />
|
752 |
|
|
</target>
|
753 |
|
|
|
754 |
2175
|
tao
|
<target name="install-registry" depends="init,getConversionXSL"
|
755 |
1952
|
jones
|
description="Install Registry">
|
756 |
2175
|
tao
|
|
757 |
1952
|
jones
|
<copy file="${srcdir}/perl/register-dataset.cgi"
|
758 |
|
|
todir="${inst.cgi.dir}" filtering="yes"/>
|
759 |
|
|
<chmod file="${inst.cgi.dir}/register-dataset.cgi" perm="ugo+x" />
|
760 |
2175
|
tao
|
|
761 |
1952
|
jones
|
<mkdir dir="${temp-dir}" />
|
762 |
2343
|
sgarg
|
<copy todir="${temp-dir}" filtering="yes">
|
763 |
|
|
<fileset dir="lib/style/common/emlb6toeml2">
|
764 |
1952
|
jones
|
<include name="*.xsl"/>
|
765 |
|
|
<include name="*.xml"/>
|
766 |
|
|
</fileset>
|
767 |
2343
|
sgarg
|
</copy>
|
768 |
1952
|
jones
|
|
769 |
|
|
<echo message="Install Registry completed." />
|
770 |
|
|
</target>
|
771 |
|
|
|
772 |
2343
|
sgarg
|
<target name="install-ldap" depends="init">
|
773 |
|
|
<copy file="${srcdir}/perl/ldapweb.cgi"
|
774 |
|
|
todir="${inst.cgi.dir}" filtering="yes"/>
|
775 |
|
|
<chmod file="${inst.cgi.dir}/ldapweb.cgi" perm="ugo+x" />
|
776 |
|
|
<copy file="lib/ldapweb.cfg"
|
777 |
|
|
todir="${inst.cgi.dir}" filtering="yes"/>
|
778 |
|
|
<chmod file="${inst.cgi.dir}/ldapweb.cfg" perm="ugo+x" />
|
779 |
|
|
<mkdir dir="${templates.dir}" />
|
780 |
|
|
<copy todir="${templates.dir}" filtering="yes">
|
781 |
|
|
<fileset dir="lib/style/common/templates">
|
782 |
|
|
<include name="${defaultChangePass}"/>
|
783 |
|
|
<include name="${defaultResetPass}"/>
|
784 |
|
|
<include name="${changePassSuccess}"/>
|
785 |
|
|
<include name="${resetPassSuccess}"/>
|
786 |
|
|
<include name="${registerFailed}"/>
|
787 |
|
|
<include name="${registerLter}"/>
|
788 |
|
|
<include name="${registerMatch}"/>
|
789 |
|
|
<include name="${registerSuccess}"/>
|
790 |
|
|
<include name="${register}"/>
|
791 |
|
|
<include name="${searchResults}"/>
|
792 |
|
|
</fileset>
|
793 |
|
|
</copy>
|
794 |
|
|
<echo message="ldapweb install complete." />
|
795 |
|
|
</target>
|
796 |
|
|
|
797 |
|
|
|
798 |
2175
|
tao
|
<target name="install-skin" depends="init"
|
799 |
2052
|
sgarg
|
description="Install a Skin">
|
800 |
|
|
|
801 |
2175
|
tao
|
<input message="Please enter name of the skin"
|
802 |
2052
|
sgarg
|
addproperty="skin-name"/>
|
803 |
|
|
|
804 |
|
|
<mkdir dir="${installdir}/style/skins/${skin-name}" />
|
805 |
|
|
<copy todir="${installdir}/style/skins/${skin-name}" filtering="yes">
|
806 |
|
|
<fileset dir="lib/style/skins/${skin-name}">
|
807 |
2054
|
sgarg
|
<exclude name="*.png"/>
|
808 |
|
|
<exclude name="*.gif"/>
|
809 |
2210
|
jones
|
<exclude name="*.jpg"/>
|
810 |
2277
|
jones
|
<exclude name="**/CVS*"/>
|
811 |
|
|
<exclude name="**/.#*"/>
|
812 |
2052
|
sgarg
|
</fileset>
|
813 |
|
|
</copy>
|
814 |
2054
|
sgarg
|
<copy todir="${installdir}/style/skins/${skin-name}" filtering="no">
|
815 |
|
|
<fileset dir="lib/style/skins/${skin-name}">
|
816 |
|
|
<include name="*.png"/>
|
817 |
|
|
<include name="*.gif"/>
|
818 |
2210
|
jones
|
<include name="*.jpg"/>
|
819 |
2277
|
jones
|
<exclude name="**/CVS*"/>
|
820 |
|
|
<exclude name="**/.#*"/>
|
821 |
2054
|
sgarg
|
</fileset>
|
822 |
|
|
</copy>
|
823 |
2277
|
jones
|
<!--
|
824 |
2210
|
jones
|
<mkdir dir="${installdir}/style/skins/${skin-name}/images" />
|
825 |
|
|
<copy todir="${installdir}/style/skins/${skin-name}/images" filtering="no">
|
826 |
|
|
<fileset dir="lib/style/skins/${skin-name}/images">
|
827 |
|
|
<include name="*.png"/>
|
828 |
|
|
<include name="*.gif"/>
|
829 |
|
|
<include name="*.jpg"/>
|
830 |
|
|
</fileset>
|
831 |
|
|
</copy>
|
832 |
2277
|
jones
|
-->
|
833 |
2052
|
sgarg
|
|
834 |
|
|
<echo message="Install Skin completed." />
|
835 |
|
|
</target>
|
836 |
|
|
|
837 |
1952
|
jones
|
<target name="war" depends="warPrepare,warMSSQL"
|
838 |
|
|
description="Create a web archive (WAR) for servlet deployment">
|
839 |
2175
|
tao
|
<war destfile="${build.dir}/${context}.war"
|
840 |
1952
|
jones
|
webxml="${build.war}/web.xml">
|
841 |
|
|
<fileset dir="${war.context}"/>
|
842 |
|
|
<lib dir="${war.lib}"/>
|
843 |
|
|
<webinf dir="${war.webinf}"/>
|
844 |
|
|
</war>
|
845 |
|
|
</target>
|
846 |
|
|
|
847 |
2059
|
costa
|
<target name="warPrepare" depends="jar,clientjar,harvesterjar"
|
848 |
1952
|
jones
|
description="Prepare files for creating a web archive (WAR)">
|
849 |
|
|
|
850 |
|
|
<property name="war.lib" value="${build.war}/lib" />
|
851 |
|
|
<property name="war.webinf" value="${build.war}/WEB-INF" />
|
852 |
|
|
<property name="war.context" value="${build.war}/${context}" />
|
853 |
|
|
<mkdir dir="${war.lib}" />
|
854 |
|
|
<mkdir dir="${war.webinf}" />
|
855 |
|
|
<mkdir dir="${war.context}" />
|
856 |
2610
|
tao
|
|
857 |
|
|
<copy file="${jdbc}" tofile="${war.lib}/jdbc.jar" />
|
858 |
1952
|
jones
|
<copy file="${build.dir}/${name}.jar" todir="${war.lib}" />
|
859 |
|
|
<copy file="${build.dir}/${name}-client.jar" todir="${war.lib}" />
|
860 |
2059
|
costa
|
<copy file="${build.dir}/harvester.jar" todir="${war.lib}" />
|
861 |
1952
|
jones
|
<copy todir="${war.lib}" filtering="no">
|
862 |
1823
|
jones
|
<fileset dir="lib">
|
863 |
2610
|
tao
|
<not>
|
864 |
|
|
<filename name="${jdbc-jar-name}"/>
|
865 |
|
|
</not>
|
866 |
|
|
<include name="*.jar"/>
|
867 |
1823
|
jones
|
</fileset>
|
868 |
|
|
<fileset dir="lib/xalan">
|
869 |
|
|
<include name="*.jar"/>
|
870 |
|
|
</fileset>
|
871 |
|
|
</copy>
|
872 |
1729
|
tao
|
<copy file="lib/web.xml.${tomcatversion}"
|
873 |
1952
|
jones
|
tofile="${build.war}/web.xml" />
|
874 |
|
|
<copy file="lib/metacat.properties" todir="${war.webinf}"
|
875 |
1951
|
jones
|
filtering="yes" />
|
876 |
2583
|
sgarg
|
<copy file="lib/log4j.properties" todir="${war.webinf}"
|
877 |
|
|
filtering="yes" />
|
878 |
1952
|
jones
|
<copy todir="${war.context}" filtering="no">
|
879 |
822
|
jones
|
<fileset dir="lib">
|
880 |
|
|
<include name="**/*.jpg"/>
|
881 |
|
|
<include name="**/*.png"/>
|
882 |
|
|
<include name="**/*.gif"/>
|
883 |
|
|
</fileset>
|
884 |
|
|
</copy>
|
885 |
1952
|
jones
|
<copy todir="${war.context}" filtering="yes">
|
886 |
822
|
jones
|
<fileset dir="lib">
|
887 |
|
|
<exclude name="*.jar"/>
|
888 |
|
|
<exclude name="*.properties"/>
|
889 |
|
|
<exclude name="web.xml"/>
|
890 |
1437
|
berkley
|
<exclude name="**/*.jpg"/>
|
891 |
|
|
<exclude name="**/*.png"/>
|
892 |
|
|
<exclude name="**/*.gif"/>
|
893 |
822
|
jones
|
</fileset>
|
894 |
|
|
</copy>
|
895 |
1952
|
jones
|
<copy todir="${war.context}" filtering="no">
|
896 |
1929
|
brooke
|
<fileset dir="lib">
|
897 |
|
|
<include name="**/*.jpg"/>
|
898 |
|
|
<include name="**/*.png"/>
|
899 |
|
|
<include name="**/*.gif"/>
|
900 |
|
|
</fileset>
|
901 |
|
|
</copy>
|
902 |
1311
|
berkley
|
</target>
|
903 |
1929
|
brooke
|
|
904 |
1952
|
jones
|
<target name="warMSSQL" if="MSSQL" depends="warPrepare">
|
905 |
|
|
<copy file="${jdbc-add1}" tofile="${war.lib}/msutil.jar" />
|
906 |
|
|
<copy file="${jdbc-add2}" tofile="${war.lib}/mssqlserver.jar" />
|
907 |
1929
|
brooke
|
</target>
|
908 |
|
|
|
909 |
2175
|
tao
|
<target name="getConversionXSL" depends="prepare"
|
910 |
1954
|
jones
|
unless="styles.not.needed"
|
911 |
1939
|
brooke
|
description="Gets the conversion stylesheets for eml2 beta 6 to eml 2.0.0">
|
912 |
2497
|
sgarg
|
|
913 |
1929
|
brooke
|
<echo>Enter CVS password: </echo>
|
914 |
2497
|
sgarg
|
<cvs cvsRoot="${cvsroot}"
|
915 |
|
|
package="${eml-module}"
|
916 |
|
|
tag="${eml2_0_1-tag}"
|
917 |
|
|
dest="${build.tmp}/eml_${eml2_0_1-tag}" />
|
918 |
2343
|
sgarg
|
|
919 |
|
|
<mkdir dir="lib/style/common/emlb6toeml2" />
|
920 |
|
|
<copy todir="lib/style/common/emlb6toeml2" filtering="yes">
|
921 |
2497
|
sgarg
|
<fileset dir="${build.tmp}/eml_${eml2_0_1-tag}/${eml-module}/lib/beta6toeml2/xsl">
|
922 |
2343
|
sgarg
|
<include name="*.xsl"/>
|
923 |
|
|
<include name="*.xml"/>
|
924 |
|
|
</fileset>
|
925 |
|
|
</copy>
|
926 |
1929
|
brooke
|
</target>
|
927 |
|
|
|
928 |
2135
|
costa
|
<target name="testprep" depends="jar,clientjar,harvesterjar">
|
929 |
1783
|
jones
|
<mkdir dir="${build.tests}"/>
|
930 |
|
|
<copy todir="${build.tests}" filtering="yes">
|
931 |
|
|
<fileset dir="${testdir}">
|
932 |
|
|
<include name="edu/**"/>
|
933 |
|
|
</fileset>
|
934 |
|
|
</copy>
|
935 |
971
|
tao
|
<!-- copy and compile the tests into a jar file -->
|
936 |
1783
|
jones
|
<javac srcdir="${build.tests}"
|
937 |
|
|
destdir="${build.tests}"
|
938 |
1612
|
tao
|
debug="on"
|
939 |
2599
|
jones
|
includes="**/*.java">
|
940 |
|
|
<classpath>
|
941 |
|
|
<path refid="compile.classpath"/>
|
942 |
|
|
<fileset dir="${build.dir}">
|
943 |
|
|
<includes name="${name}.jar"/>
|
944 |
|
|
<includes name="${name}-client.jar"/>
|
945 |
|
|
<includes name="harvester.jar"/>
|
946 |
|
|
</fileset>
|
947 |
|
|
</classpath>
|
948 |
|
|
</javac>
|
949 |
204
|
jones
|
|
950 |
1311
|
berkley
|
<jar jarfile="${build.dir}/${name}-junittests.jar"
|
951 |
1783
|
jones
|
basedir="${build.tests}"
|
952 |
1311
|
berkley
|
includes="**/*.class" />
|
953 |
1822
|
jones
|
</target>
|
954 |
971
|
tao
|
|
955 |
1939
|
brooke
|
<target name="test" depends="testprep"
|
956 |
|
|
description="Uses the ant junit task to run all JUnit tests">
|
957 |
1822
|
jones
|
|
958 |
971
|
tao
|
<!-- use the ant "junit" task to run JUnit tests. -->
|
959 |
1783
|
jones
|
<junit printsummary="yes" haltonfailure="no" fork="yes"
|
960 |
971
|
tao
|
haltonerror="no">
|
961 |
1783
|
jones
|
<jvmarg value="-Djava.protocol.handler.pkgs=HTTPClient"/>
|
962 |
971
|
tao
|
<classpath>
|
963 |
2599
|
jones
|
<path refid="compile.classpath"/>
|
964 |
|
|
<fileset dir="${build.dir}">
|
965 |
|
|
<includes name="${name}.jar"/>
|
966 |
|
|
<includes name="${name}-client.jar"/>
|
967 |
|
|
<includes name="harvester.jar"/>
|
968 |
|
|
<includes name="${name}-junittests.jar"/>
|
969 |
|
|
</fileset>
|
970 |
971
|
tao
|
</classpath>
|
971 |
|
|
|
972 |
|
|
<formatter type="plain" />
|
973 |
|
|
|
974 |
|
|
<batchtest fork="yes" todir="${build.dir}">
|
975 |
1783
|
jones
|
<fileset dir="${build.tests}">
|
976 |
1116
|
tao
|
<include name="**/*.class" />
|
977 |
971
|
tao
|
</fileset>
|
978 |
|
|
</batchtest>
|
979 |
|
|
</junit>
|
980 |
|
|
</target>
|
981 |
1103
|
tao
|
|
982 |
1939
|
brooke
|
<target name="runonetest" depends="testprep"
|
983 |
|
|
description="Uses the ant junit task to run a single JUnit test, defined by the ${testtorun} property">
|
984 |
1500
|
tao
|
|
985 |
1939
|
brooke
|
<echo>testtorun: ${testtorun}</echo>
|
986 |
|
|
|
987 |
1500
|
tao
|
<!-- use the ant "junit" task to run JUnit tests. -->
|
988 |
1783
|
jones
|
<junit printsummary="yes" haltonfailure="no" fork="yes"
|
989 |
1500
|
tao
|
haltonerror="no">
|
990 |
2044
|
tao
|
<!--<jvmarg value="-Djava.protocol.handler.pkgs=HTTPClient"/>-->
|
991 |
1500
|
tao
|
<classpath>
|
992 |
2599
|
jones
|
<path refid="compile.classpath"/>
|
993 |
|
|
<fileset dir="${build.dir}">
|
994 |
|
|
<includes name="${name}.jar"/>
|
995 |
|
|
<includes name="${name}-client.jar"/>
|
996 |
|
|
<includes name="harvester.jar"/>
|
997 |
|
|
<includes name="${name}-junittests.jar"/>
|
998 |
|
|
</fileset>
|
999 |
1500
|
tao
|
</classpath>
|
1000 |
|
|
|
1001 |
|
|
<formatter type="plain" />
|
1002 |
|
|
|
1003 |
|
|
<batchtest fork="yes" todir="${build.dir}">
|
1004 |
1783
|
jones
|
<fileset dir="${build.tests}">
|
1005 |
1500
|
tao
|
<include name="**/${testtorun}.class" />
|
1006 |
|
|
</fileset>
|
1007 |
|
|
</batchtest>
|
1008 |
|
|
</junit>
|
1009 |
|
|
</target>
|
1010 |
|
|
|
1011 |
2175
|
tao
|
<target name="testharvester"
|
1012 |
2135
|
costa
|
depends="testprep"
|
1013 |
|
|
description="Uses the ant junit task to test only the Harvester code">
|
1014 |
2175
|
tao
|
<junit printsummary="yes"
|
1015 |
|
|
haltonfailure="off"
|
1016 |
2135
|
costa
|
fork="yes"
|
1017 |
|
|
haltonerror="off">
|
1018 |
2599
|
jones
|
<classpath>
|
1019 |
|
|
<path refid="compile.classpath"/>
|
1020 |
|
|
<fileset dir="${build.dir}">
|
1021 |
|
|
<includes name="${name}.jar"/>
|
1022 |
|
|
<includes name="${name}-client.jar"/>
|
1023 |
|
|
<includes name="harvester.jar"/>
|
1024 |
|
|
<includes name="${name}-junittests.jar"/>
|
1025 |
|
|
</fileset>
|
1026 |
|
|
</classpath>
|
1027 |
2135
|
costa
|
<formatter type="plain" />
|
1028 |
|
|
<batchtest fork="yes" todir="${build.dir}">
|
1029 |
|
|
<fileset dir="${build.tests}">
|
1030 |
|
|
<include name="**/harvesterClient/*.class" />
|
1031 |
|
|
</fileset>
|
1032 |
|
|
</batchtest>
|
1033 |
|
|
</junit>
|
1034 |
|
|
</target>
|
1035 |
|
|
|
1036 |
1939
|
brooke
|
<target name="gethttpclient" depends="prepare"
|
1037 |
|
|
description="checks out and compiles morpho httpclient code">
|
1038 |
1311
|
berkley
|
<!--mkdir dir="${morphosourcedir}" -->
|
1039 |
1487
|
tao
|
<cvs cvsRoot="${cvsroot}"
|
1040 |
1103
|
tao
|
package="morpho"
|
1041 |
|
|
dest="." />
|
1042 |
1107
|
tao
|
<ant dir="${morphosourcedir}" inheritAll="false" target="jar" />
|
1043 |
1103
|
tao
|
</target>
|
1044 |
|
|
|
1045 |
|
|
<!-- run this target, we need to check out a another morpho souce dir was checked out. -->
|
1046 |
1939
|
brooke
|
<target name="nettest" depends="install"
|
1047 |
|
|
description="compiles and runs the metacatnettest code">
|
1048 |
2175
|
tao
|
|
1049 |
1103
|
tao
|
<echo>***********************************
|
1050 |
1311
|
berkley
|
Please run ant gethttpclient first!
|
1051 |
|
|
***********************************
|
1052 |
1103
|
tao
|
</echo>
|
1053 |
|
|
<!-- copy and compile the tests into a jar file -->
|
1054 |
1116
|
tao
|
<mkdir dir="${build.metacatnettest}"/>
|
1055 |
1103
|
tao
|
<javac srcdir="${junitnettestsdir}"
|
1056 |
1116
|
tao
|
destdir="${build.metacatnettest}"
|
1057 |
2599
|
jones
|
includes="**/*.java">
|
1058 |
|
|
<classpath>
|
1059 |
|
|
<path refid="compile.classpath"/>
|
1060 |
|
|
<fileset dir="${build.dir}">
|
1061 |
|
|
<includes name="${name}.jar"/>
|
1062 |
|
|
</fileset>
|
1063 |
|
|
</classpath>
|
1064 |
|
|
</javac>
|
1065 |
1103
|
tao
|
|
1066 |
|
|
<jar jarfile="${build.dir}/${name}-junitnettests.jar"
|
1067 |
1116
|
tao
|
basedir="${build.metacatnettest}"
|
1068 |
1103
|
tao
|
includes="**/*.class" />
|
1069 |
|
|
|
1070 |
|
|
<!-- use the ant "junit" task to run JUnit tests. -->
|
1071 |
1107
|
tao
|
<junit printsummary="yes" haltonfailure="no" fork="yes"
|
1072 |
1103
|
tao
|
haltonerror="no">
|
1073 |
1107
|
tao
|
<jvmarg value="-Djava.protocol.handler.pkgs=HTTPClient" />
|
1074 |
1103
|
tao
|
<classpath>
|
1075 |
2599
|
jones
|
<path refid="compile.classpath"/>
|
1076 |
|
|
<fileset dir="${build.dir}">
|
1077 |
|
|
<includes name="${name}.jar"/>
|
1078 |
|
|
<includes name="${name}-junitnettests.jar"/>
|
1079 |
|
|
</fileset>
|
1080 |
1103
|
tao
|
</classpath>
|
1081 |
|
|
|
1082 |
|
|
<formatter type="plain" />
|
1083 |
|
|
|
1084 |
|
|
<batchtest fork="yes" todir="${build.dir}">
|
1085 |
1116
|
tao
|
<fileset dir="${build.metacatnettest}">
|
1086 |
|
|
<include name="**/*.class" />
|
1087 |
1103
|
tao
|
</fileset>
|
1088 |
|
|
</batchtest>
|
1089 |
|
|
</junit>
|
1090 |
1311
|
berkley
|
</target>
|
1091 |
1103
|
tao
|
|
1092 |
1939
|
brooke
|
<target name="cleanweb" depends="clean"
|
1093 |
|
|
description="deletes tomcat web context dir and all its contents">
|
1094 |
1522
|
berkley
|
<delete dir="${installdir}" />
|
1095 |
|
|
</target>
|
1096 |
|
|
|
1097 |
|
|
|
1098 |
1939
|
brooke
|
<target name="clean" depends="init"
|
1099 |
2320
|
jones
|
description="deletes build dir and files that can be regenerated form the release">
|
1100 |
822
|
jones
|
<delete dir="${build.dir}" />
|
1101 |
2320
|
jones
|
</target>
|
1102 |
|
|
|
1103 |
|
|
<target name="fullclean" depends="clean"
|
1104 |
|
|
description="deletes even jars that depend on external sources such as stylesheets and jars">
|
1105 |
|
|
<delete file="lib/httpclient.jar" />
|
1106 |
|
|
<delete file="lib/utilities.jar" />
|
1107 |
1939
|
brooke
|
<delete includeEmptyDirs="true" failonerror="false">
|
1108 |
|
|
<fileset dir="${style-common-cvsrelpath}">
|
1109 |
|
|
<include name="${eml-css}" />
|
1110 |
|
|
<include name="eml-*/*.xsl" />
|
1111 |
|
|
<include name="eml-*" />
|
1112 |
|
|
</fileset>
|
1113 |
2320
|
jones
|
</delete>
|
1114 |
113
|
jones
|
</target>
|
1115 |
|
|
|
1116 |
1939
|
brooke
|
<target name="jdoc" depends="prepare"
|
1117 |
|
|
description="generates javadoc documentation">
|
1118 |
822
|
jones
|
<javadoc packagenames="edu.ucsb.nceas.*"
|
1119 |
516
|
jones
|
sourcepath="${build.src}"
|
1120 |
|
|
destdir="${build.javadocs}"
|
1121 |
113
|
jones
|
author="true"
|
1122 |
|
|
version="true"
|
1123 |
|
|
use="true"
|
1124 |
348
|
jones
|
windowtitle="${Name} API"
|
1125 |
|
|
doctitle="<h1>${Name}</h1>"
|
1126 |
2599
|
jones
|
bottom="<i>Copyright © 2000 National Center for Ecological Analysis and Synthesis. All Rights Reserved.</i>">
|
1127 |
|
|
<classpath>
|
1128 |
|
|
<path refid="compile.classpath"/>
|
1129 |
|
|
</classpath>
|
1130 |
|
|
</javadoc>
|
1131 |
113
|
jones
|
</target>
|
1132 |
|
|
|
1133 |
2461
|
sgarg
|
<target name="dist"
|
1134 |
|
|
depends="geteml,jar,protocol,jdoc,getConversionXSL,getutilities"
|
1135 |
1939
|
brooke
|
description="prepares a full release distribution">
|
1136 |
806
|
jones
|
<mkdir dir="${dist.dir}"/>
|
1137 |
|
|
<delete dir="${ver.dir}" />
|
1138 |
|
|
<mkdir dir="${ver.dir}"/>
|
1139 |
|
|
<copy todir="${ver.dir}">
|
1140 |
1311
|
berkley
|
<fileset dir="."
|
1141 |
2401
|
costa
|
excludes="**/CVS* **/.#* src/** test/** build/** docs/** ${dist.dir}/** ${dist.dir.hle}/**"/>
|
1142 |
806
|
jones
|
</copy>
|
1143 |
|
|
<copy todir="${ver.dir}" file="build.xml"/>
|
1144 |
2317
|
jones
|
<copy todir="${ver.dir}" file="build.properties"/>
|
1145 |
882
|
jones
|
|
1146 |
|
|
<copy todir="${ver.dir}/docs" filtering="yes">
|
1147 |
|
|
<fileset dir="docs" excludes="**/*gif **/*jpg **/*png" />
|
1148 |
|
|
</copy>
|
1149 |
|
|
<copy todir="${ver.dir}/docs" filtering="no">
|
1150 |
|
|
<fileset dir="docs" includes="**/*gif **/*jpg **/*png" />
|
1151 |
|
|
</copy>
|
1152 |
806
|
jones
|
<copy todir="${ver.dir}/docs/dev">
|
1153 |
|
|
<fileset dir="${build.dir}/docs"/>
|
1154 |
|
|
</copy>
|
1155 |
917
|
berkley
|
<copy todir="${ver.dir}/src">
|
1156 |
|
|
<fileset dir="${build.dir}/src"/>
|
1157 |
|
|
</copy>
|
1158 |
2391
|
tao
|
<!-- copy loaddtdschemal.sql form src dir(which has the server token to ver.dir/src-->
|
1159 |
|
|
<copy todir="${ver.dir}/src" file="${srcdir}/loaddtdschema.sql" overwrite="yes" filtering="no"/>
|
1160 |
2395
|
tao
|
<copy todir="${ver.dir}/src" file="${srcdir}/upgrade-db-to-1.5.sql" overwrite="yes" filtering="no"/>
|
1161 |
2323
|
jones
|
<!--
|
1162 |
992
|
berkley
|
<delete dir="./${ver.dir}/${build.dir}"/>
|
1163 |
|
|
<delete dir="./${ver.dir}/dist"/>
|
1164 |
2323
|
jones
|
-->
|
1165 |
882
|
jones
|
<delete file="./${name}-${release}.zip"/>
|
1166 |
1312
|
tao
|
<zip zipfile="./${name}-${release}.zip" basedir="${dist.dir}" excludes="${name}-${release}/src/**, ${name}-${release}/build/src/**"/>
|
1167 |
882
|
jones
|
<delete file="./${name}-${release}.tar.gz" />
|
1168 |
1312
|
tao
|
<tar tarfile="./${name}-${release}.tar" basedir="${dist.dir}" excludes="${name}-${release}/src/**, ${name}-${release}/build/src/**"/>
|
1169 |
1311
|
berkley
|
<gzip zipfile="./${name}-${release}.tar.gz"
|
1170 |
882
|
jones
|
src="./${name}-${release}.tar"/>
|
1171 |
|
|
<delete file="./${name}-${release}.tar" />
|
1172 |
1311
|
berkley
|
</target>
|
1173 |
806
|
jones
|
|
1174 |
1939
|
brooke
|
<target name="distsrc" depends="dist"
|
1175 |
|
|
description="prepares a source distribution">
|
1176 |
806
|
jones
|
<mkdir dir="${ver.src}"/>
|
1177 |
|
|
<copy todir="${ver.src}">
|
1178 |
|
|
<fileset dir="./src"/>
|
1179 |
|
|
</copy>
|
1180 |
2461
|
sgarg
|
<mkdir dir="${util.dir}"/>
|
1181 |
|
|
<copy todir="${util.dir}">
|
1182 |
|
|
<fileset dir="${build.tmp}/utilities" excludes="**/CVS*" />
|
1183 |
|
|
</copy>
|
1184 |
806
|
jones
|
|
1185 |
882
|
jones
|
<delete file="./${name}-src-${release}.zip"/>
|
1186 |
|
|
<zip zipfile="./${name}-src-${release}.zip" basedir="${dist.dir}"/>
|
1187 |
|
|
<delete file="./${name}-src-${release}.tar.gz" />
|
1188 |
|
|
<tar tarfile="./${name}-src-${release}.tar" basedir="${dist.dir}"/>
|
1189 |
1311
|
berkley
|
<gzip zipfile="./${name}-src-${release}.tar.gz"
|
1190 |
882
|
jones
|
src="./${name}-src-${release}.tar"/>
|
1191 |
|
|
<delete file="./${name}-src-${release}.tar" />
|
1192 |
807
|
jones
|
<delete dir="${dist.dir}"/>
|
1193 |
1311
|
berkley
|
</target>
|
1194 |
806
|
jones
|
|
1195 |
1702
|
tao
|
<target name="stylesheettest">
|
1196 |
1939
|
brooke
|
<xslt in="${input}" out="eml.html" style="${style-common-cvsrelpath}/eml-2.0.0/eml-2.0.0.xsl">
|
1197 |
1702
|
tao
|
<param name="displaymodule" expression="${displaymodule}"/>
|
1198 |
|
|
<param name="docid" expression="${input}"/>
|
1199 |
|
|
<param name="entitytype" expression="${entitytype}"/>
|
1200 |
|
|
<param name="entityindex" expression="${entityindex}"/>
|
1201 |
|
|
<outputproperty name="method" value="html"/>
|
1202 |
|
|
<outputproperty name="standalone" value="yes"/>
|
1203 |
|
|
<outputproperty name="encoding" value="iso8859_1"/>
|
1204 |
|
|
<outputproperty name="indent" value="yes"/>
|
1205 |
|
|
</xslt>
|
1206 |
|
|
</target>
|
1207 |
2175
|
tao
|
|
1208 |
1819
|
tao
|
<target name="gridinit" depends="init">
|
1209 |
|
|
<property name="java2wsdl.tool" value="org.apache.axis.wsdl.Java2WSDL" />
|
1210 |
|
|
<property name="wsdldecorator.tool" value="org.globus.ogsa.tools.wsdl.DecorateWSDL" />
|
1211 |
|
|
<property name="wsdl.tool" value="org.globus.ogsa.tools.wsdl.GSDL2Java"/>
|
1212 |
|
|
<property environment="env"/>
|
1213 |
|
|
<property name="binding.file" value="${env.GLOBUS_LOCATION}/schema/ogsi/ogsi_bindings.wsdl"/>
|
1214 |
1820
|
tao
|
<path id="webservicepath">
|
1215 |
|
|
<pathelement location="."/>
|
1216 |
|
|
<pathelement location="${env.JAVA_HOME}/../lib/tools.jar"/>
|
1217 |
|
|
<pathelement location="${build.dest}"/>
|
1218 |
|
|
<fileset dir="${env.GLOBUS_LOCATION}/lib">
|
1219 |
|
|
<include name="*.jar"/>
|
1220 |
|
|
</fileset>
|
1221 |
|
|
</path>
|
1222 |
1819
|
tao
|
</target>
|
1223 |
|
|
|
1224 |
1821
|
tao
|
<target name="gridprepare" depends="gridinit, prepare">
|
1225 |
2175
|
tao
|
</target>
|
1226 |
|
|
|
1227 |
1821
|
tao
|
<target name="compileinterface" depends="clean, gridprepare">
|
1228 |
1817
|
tao
|
<javac srcdir="${build.src}" destdir="${build.dest}" includes="**/${interface.name}.java" />
|
1229 |
1811
|
tao
|
</target>
|
1230 |
2175
|
tao
|
|
1231 |
1811
|
tao
|
<target name="generateWSDL" depends="compileinterface">
|
1232 |
|
|
<echo message="Generating wsdl from ${interface.name} interface"/>
|
1233 |
|
|
<java classname="${java2wsdl.tool}"
|
1234 |
1814
|
tao
|
dir="${build.src}" fork="yes"
|
1235 |
1811
|
tao
|
classpathref="webservicepath" failonerror="true" >
|
1236 |
|
|
<arg value="-P"/>
|
1237 |
|
|
<arg value="${interface.name}PortType"/>
|
1238 |
|
|
<arg value="-S"/>
|
1239 |
|
|
<arg value="${interface.name}Service"/>
|
1240 |
|
|
<arg value="-y"/>
|
1241 |
|
|
<arg value="WRAPPED"/>
|
1242 |
|
|
<arg value="-u"/>
|
1243 |
|
|
<arg value="LITERAL"/>
|
1244 |
|
|
<arg value="-l"/>
|
1245 |
|
|
<arg value="http://localhost/ogsa/services/${interface.name}Service"/>
|
1246 |
|
|
<arg value="-n"/>
|
1247 |
|
|
<arg value="http://${services.namespace}/${interface.name}"/>
|
1248 |
|
|
<arg value="${interface.package}.${interface.name}"/>
|
1249 |
|
|
</java>
|
1250 |
|
|
</target>
|
1251 |
2175
|
tao
|
|
1252 |
1811
|
tao
|
<target name="decorateWSDL" depends="generateWSDL">
|
1253 |
|
|
<property name="wsdl.file" value="${interface.name}Service.wsdl"/>
|
1254 |
1814
|
tao
|
<java classname="${wsdldecorator.tool}" dir="${build.src}"
|
1255 |
1811
|
tao
|
fork="yes"
|
1256 |
|
|
classpathref="webservicepath" failonerror="true" >
|
1257 |
|
|
<arg value="${binding.file}"/>
|
1258 |
|
|
<arg value="${wsdl.file}"/>
|
1259 |
|
|
</java>
|
1260 |
|
|
</target>
|
1261 |
2175
|
tao
|
|
1262 |
1811
|
tao
|
<target name="generatestubs" depends="decorateWSDL">
|
1263 |
|
|
<echo message=" Generating stubs " />
|
1264 |
1814
|
tao
|
<echo message="wsdl file is ${wsdl.file}"/>
|
1265 |
|
|
<echo message="build.src is ${build.src}"/>
|
1266 |
1811
|
tao
|
<java classname="${wsdl.tool}" dir="${build.src}" fork="yes"
|
1267 |
|
|
classpathref="webservicepath" failonerror="true" >
|
1268 |
1814
|
tao
|
<arg value="${wsdl.file}"/>
|
1269 |
1811
|
tao
|
</java>
|
1270 |
|
|
</target>
|
1271 |
2175
|
tao
|
|
1272 |
1811
|
tao
|
<target name="compileStubsAndImpl" depends="generatestubs, utilities">
|
1273 |
|
|
<echo message=" Compiling stubs " />
|
1274 |
|
|
<javac srcdir="${build.src}" destdir="${build.dest}" classpathref="webservicepath" includes="**/${interface.name}/*.java" />
|
1275 |
|
|
<echo message=" Compiling impl " />
|
1276 |
|
|
<javac srcdir="${build.src}" destdir="${build.dest}" classpathref="webservicepath" classpath="./lib/utilities.jar" includes="**/impl/*.java" />
|
1277 |
|
|
</target>
|
1278 |
2175
|
tao
|
|
1279 |
1811
|
tao
|
<target name="jarStubsAndImpl" depends="compileStubsAndImpl">
|
1280 |
|
|
<echo message=" jar stubs classes " />
|
1281 |
|
|
<jar destfile="${build.dir}/${interface.name}-stubs.jar" basedir="${build.dest}" includes="**/${interface.name}/*.class" />
|
1282 |
|
|
<echo message=" jar impl classes " />
|
1283 |
|
|
<jar destfile="${build.dir}/${interface.name}.jar" basedir="${build.dest}" includes="**/impl/*.class" />
|
1284 |
|
|
</target>
|
1285 |
2175
|
tao
|
|
1286 |
1811
|
tao
|
<target name="gar" depends="jarStubsAndImpl">
|
1287 |
|
|
<echo message=" jar the gar file"/>
|
1288 |
|
|
<mkdir dir="${build.dir}/gar"/>
|
1289 |
|
|
<mkdir dir="${build.dir}/gar/schema/edu"/>
|
1290 |
|
|
<copy file="${build.dir}/${interface.name}.jar" todir="${build.dir}/gar" />
|
1291 |
|
|
<copy file="${build.dir}/${interface.name}-stubs.jar" todir="${build.dir}/gar" />
|
1292 |
1814
|
tao
|
<copy file="lib/utilities.jar" todir="${build.dir}/gar" />
|
1293 |
|
|
<copy file="lib/server-deploy.wsdd" todir="${build.dir}/gar" />
|
1294 |
|
|
<copy file="${build.src}/${interface.name}Service.wsdl" todir="${build.dir}/gar/schema/edu" />
|
1295 |
|
|
<jar destfile="lib/${interface.name}.gar" basedir="${build.dir}/gar"/>
|
1296 |
1811
|
tao
|
</target>
|
1297 |
2175
|
tao
|
|
1298 |
1814
|
tao
|
<target name="compilewebclient" depends="prepare">
|
1299 |
|
|
<javac srcdir="${build.src}" destdir="${build.dest}" includes="**/application/*.java" classpathref="webservicepath" />
|
1300 |
|
|
</target>
|
1301 |
2175
|
tao
|
|
1302 |
1814
|
tao
|
<target name="runwebclient" depends="compilewebclient">
|
1303 |
2175
|
tao
|
<java classname="edu.ucsb.nceas.metacat.stringclient.application.MetacatStringServiceApplication"
|
1304 |
1814
|
tao
|
dir="${build.dest}" fork="yes"
|
1305 |
|
|
classpathref="webservicepath" classpath="./lib/utilities.jar" failonerror="true">
|
1306 |
|
|
<arg value="${serviceUrl}"/>
|
1307 |
|
|
<arg value="${docid}"/>
|
1308 |
|
|
</java>
|
1309 |
|
|
</target>
|
1310 |
2598
|
harris
|
|
1311 |
|
|
<target name="spatial_option" depends="init" description=" -- compiles code for the spatial option">
|
1312 |
|
|
|
1313 |
|
|
<echo message="Compiling the metatcat shapefile creator"/>
|
1314 |
|
|
<echo message="using the shapelib at: ${shapelib.dir}"/>
|
1315 |
|
|
<exec dir="." executable="g++" os="Linux, Unix" failonerror="true">
|
1316 |
|
|
<arg line="./src/spatial/cpp/metacat_shapefile.cpp -I ${shapelib.dir} -c -o build/metacat_shapefile.o" />
|
1317 |
|
|
</exec>
|
1318 |
|
|
|
1319 |
|
|
<exec dir="." executable="g++" os="Linux, Unix" failonerror="true">
|
1320 |
|
|
<arg line="build/metacat_shapefile.o ${shapelib.dir}/libshp.a -o bin/test.out" />
|
1321 |
|
|
</exec>
|
1322 |
|
|
</target>
|
1323 |
|
|
|
1324 |
113
|
jones
|
</project>
|