Revision 3994
Added by berkley over 16 years ago
lib/harvester/runHarvestListEditor.sh | ||
---|---|---|
2 | 2 |
METACAT_LIB=$METACAT_HOME/lib |
3 | 3 |
LIB_JARS=$METACAT_LIB/xercesImpl.jar |
4 | 4 |
export CLASSPATH=$METACAT_CLASSES:$LIB_JARS |
5 |
java -cp $METACAT_CLASSES:$LIB_JARS edu.ucsb.nceas.metacat.harvesterClient.HarvestListEditor |
|
5 |
cd $METACAT_LIB/harvester |
|
6 |
java edu.ucsb.nceas.metacat.harvesterClient.HarvestListEditor |
lib/metacat.properties | ||
---|---|---|
236 | 236 |
|
237 | 237 |
delay=0 |
238 | 238 |
|
239 |
harvesterAdministrator=berkley@nceas.ucsb.edu
|
|
239 |
harvesterAdministrator=name@institution.edu
|
|
240 | 240 |
|
241 | 241 |
logPeriod=90 |
242 | 242 |
|
build.properties | ||
---|---|---|
1 | 1 |
# Ant build properties files for the metacat build |
2 | 2 |
|
3 | 3 |
# Tomcat Properties |
4 |
tomcat=/usr/local/devtools/tomcat |
|
5 |
deploy.dir=/usr/local/devtools/tomcat/webapps
|
|
4 |
tomcat=/usr/local/devtools/jakarta-tomcat
|
|
5 |
deploy.dir=/var/www/org.ecoinformatics.knb
|
|
6 | 6 |
#deploy.dir=${tomcat}/webapps |
7 | 7 |
|
8 | 8 |
# Tomcat version - tomcat4 or tomcat5 |
9 | 9 |
tomcatversion=tomcat5 |
10 | 10 |
|
11 | 11 |
# Servlet properties |
12 |
metacat.context=sms
|
|
12 |
metacat.context=knb
|
|
13 | 13 |
authority.context=authority |
14 | 14 |
|
15 | 15 |
# Server Properties |
16 |
config.hostname=linus.nceas.ucsb.edu
|
|
16 |
config.hostname=knb.ecoinformatics.org
|
|
17 | 17 |
config.port=80 |
18 | 18 |
config.port.https=443 |
19 | 19 |
# Server is the domain name for replication purpose, which should be with https port |
... | ... | |
44 | 44 |
|
45 | 45 |
# Metacat database user and password and location of file stores |
46 | 46 |
user=metacat |
47 |
password=dta4all
|
|
47 |
password=yourPasswordHere
|
|
48 | 48 |
datafilepath=/var/metacat/data |
49 | 49 |
inlinedatafilepath=/var/metacat/inline-data |
50 | 50 |
|
... | ... | |
52 | 52 |
cvsroot=:ext:${env.USER}@cvs.ecoinformatics.org:/cvs |
53 | 53 |
|
54 | 54 |
# Configure the installed skins, and select the default |
55 |
default-style=sms
|
|
55 |
default-style=default
|
|
56 | 56 |
|
57 | 57 |
# this is the url to the web context root for the knb site. |
58 | 58 |
# It is used for the qformat=knb skin only |
... | ... | |
120 | 120 |
|
121 | 121 |
# The metacat current dir's abolute value. If you set install.ecogrid=false, this variable |
122 | 122 |
# do NOT need to be configured |
123 |
metacat.dir=/home/berkley/project/metacat
|
|
123 |
metacat.dir=/home/tao/project/metacat
|
|
124 | 124 |
|
build.xml | ||
---|---|---|
209 | 209 |
<property name="eml-version" value="2.0.0beta6" /> |
210 | 210 |
<property name="eml-tag" value="EML_2_0_0_BETA_6_FOR_METACAT" /> |
211 | 211 |
<property name="eml2_0_0-tag" value="RELEASE_EML_2_0_0_UPDATE_1" /> |
212 |
<property name="eml2_0_1-schema-tag" value="RELEASE_EML_2_0_1_UPDATE_6" />
|
|
212 |
<property name="eml2_0_1-schema-tag" value="RELEASE_EML_2_0_1" /> |
|
213 | 213 |
<property name="eml2_0_1-style-tag" value="RELEASE_EML_2_0_1_UPDATE_6" /> |
214 | 214 |
<property name="eml2_0_0namespace" value="eml://ecoinformatics.org/eml-2.0.0" /> |
215 | 215 |
<property name="eml2_0_1namespace" value="eml://ecoinformatics.org/eml-2.0.1" /> |
... | ... | |
433 | 433 |
<javac srcdir="${build.src}" |
434 | 434 |
destdir="${build.dest}" |
435 | 435 |
debug="${debug}" |
436 |
excludes="**/*.sql **/stringclient/** **/client/*.java"> |
|
436 |
excludes="**/*.sql **/stringclient/** **/client/*.java **/harvesterClient/*.java">
|
|
437 | 437 |
<classpath> |
438 | 438 |
<path refid="compile.classpath"/> |
439 | 439 |
</classpath> |
... | ... | |
998 | 998 |
<target name="install-skin" depends="init" |
999 | 999 |
description="Install a Skin"> |
1000 | 1000 |
|
1001 |
<!--<input message="Please enter name of the skin" |
|
1002 |
addproperty="skin-name"/>--> |
|
1003 |
<property name="skin-name" value="sms"/> |
|
1001 |
<input message="Please enter name of the skin" |
|
1002 |
addproperty="skin-name"/> |
|
1004 | 1003 |
|
1005 | 1004 |
<mkdir dir="${installdir}/style/skins/${skin-name}" /> |
1006 | 1005 |
<copy todir="${installdir}/style/skins/${skin-name}" filtering="yes"> |
... | ... | |
1015 | 1014 |
<copy todir="${installdir}/style/skins/${skin-name}" filtering="no"> |
1016 | 1015 |
<fileset dir="lib/style/skins/${skin-name}"> |
1017 | 1016 |
<include name="**/*.png"/> |
1017 |
<include name="**/*.gif"/> |
|
1018 | 1018 |
<include name="**/*.jpg"/> |
1019 | 1019 |
<exclude name="**/CVS*"/> |
1020 | 1020 |
<exclude name="**/.#*"/> |
Also available in: Unified diff
removing commits that I didn't mean to make