Project

General

Profile

1
# Ant build properties files for the metacat build
2

    
3
# Tomcat Properties
4
tomcat=/usr/local/devtools/jakarta-tomcat
5
deploy.dir=/var/www/org.ecoinformatics.knb
6
#deploy.dir=${tomcat}/webapps
7

    
8
# Tomcat version - tomcat3 or tomcat4 or tomcat5
9
tomcatversion=tomcat5
10

    
11
# Servlet properties
12
metacat.context=knb
13
authority.context=authority
14

    
15
# Server Properties
16
config.hostname=knb.ecoinformatics.org
17
config.port=80
18
server=${config.hostname}
19
httpserver=${server}
20
config.metacatserver=http://${server}/${metacat.context}/metacat
21
config.lsidauthority=ecoinformatics.org
22

    
23
# Installation directory for registry CGI scripts
24
inst.cgi.dir=/var/www/cgi-knb
25
cgi-prefix=http://${server}/cgi-bin
26
ldapUrl=ldap://ldap.ecoinformatics.org/dc=ecoinformatics,dc=org
27

    
28
# Select the database to use for metadata storage
29
# Valid values are oracle, postgresql, sqlserver
30
database=postgresql
31

    
32
# The JDBC connection string used to connect to the database
33
#jdbc-connect=jdbc:oracle:thin:@metacat.nceas.ucsb.edu:1521:knb
34
#jdbc-connect=jdbc:postgresql://localhost/postgres
35
#jdbc-connect=jdbc:microsoft:sqlserver://fatali.nceas.ucsb.edu:1433
36
jdbc-connect=jdbc:postgresql://localhost/metacat
37

    
38
# The base directory for locating JDBC jar files (not needed for postgresql)
39
jdbc_base=./lib
40
#jdbc-base=F:\\Program Files\\Microsoft SQL Server 2000 Driver for JDBC\\lib
41

    
42
# Metacat database user and password and location of file stores
43
user=metacat
44
password=yourPasswordHere
45
datafilepath=/var/metacat/data
46
inlinedatafilepath=/var/metacat/inline-data
47

    
48
# CVS access to retrieve latest EML 
49
cvsroot=:ext:${env.USER}@cvs.ecoinformatics.org:/cvs
50

    
51
# Configure the installed skins, and select the default
52
default-style=default
53

    
54
# this is the url to the web context root for the knb site. 
55
# It is used for the qformat=knb skin only
56
knb-site-url=http://knb.ecoinformatics.org
57

    
58
#Turn off or on for timed replication
59
#valide value is on, off 
60
timedreplication=off
61

    
62
# The time for starting first timed replication if timedreplication is on
63
# The value should be in SHORT format (e.g. 2:00 AM) without date
64
# The first timed replication will start at the setting time which is 
65
# shortest to the tomcat start time.
66
# Fox example, if the setting is 2:00 AM and tomcat was started at 8:00 AM.
67
# the first timed replication will start at 2:00 AM in the second day
68
# If the setting is 2:00 PM and tomcat was started at 8:00 AM, the first
69
# replication will start at 2:00 PM in the same day.
70
firsttimedreplication=10:00 PM
71

    
72
# The interval to next timed replication if timedreplication is on
73
# The value is in millisecond and default value is 48 hours
74
timedreplicationinterval=172800000
75

    
76
forcereplicationwaitingtime=30000
77

    
78
# Administrator accounts, in a colon separated list
79
administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
80

    
81
# Moderator accounts, in a colon seperated list
82
moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org
83

    
84
# Specify the list of users which should be allowed to submit documents. 
85
# If no value is specified, all users will be allowed to submit documents.
86
allowedSubmitters=
87

    
88
# Specify the list of users which should not be allowed to submit documents. 
89
# If no value is specified, all users will be allowed to submit documents.
90
deniedSubmitters=
91

    
92
## Metacat Spatial options
93
shapelib.dir=/home/harris/development/shapelib-1.2.10/
94

    
95
## Additional configuration options
96
# you probably don't want or need to change these
97
config.metadataLabelLsid=${config.lsidauthority}
98
build.dir=build
99
lsid.build.dir=${build.dir}/lsid
100
lib.dir=lib
101
lsid.lib.dir=${lib.dir}/lsid_lib
102
lsid.classes.dir=edu/ucsb/nceas/metacat/lsid
103
conf.dir=lib/lsid_conf
104
services.dir=${conf.dir}/services
105
webinf.dir=${conf.dir}/WEB-INF
106

    
107
compile.debug=true
108
compile.deprecation=false
109
compile.optimize=true
(3-3/5)