Project

General

Profile

1 82 jones
# Properties file defining options for the MetaCatServlet.java servlet
2 3081 jones
#
3 308 bojilova
# Matt Jones, Dan Higgins, Jivka Bojilova
4 82 jones
# '$Id$'
5
#
6 2156 costa
7 4122 daigle
######## Configuration utility section  ################
8 2156 costa
9 4080 daigle
configutil.propertiesConfigured=false
10 4582 daigle
configutil.authConfigured=false
11 4080 daigle
configutil.skinsConfigured=false
12
configutil.databaseConfigured=false
13 4195 daigle
configutil.geoserverConfigured=false
14 3081 jones
15 4080 daigle
############### Server Values #################
16 3081 jones
17 4080 daigle
server.name=localhost
18
server.httpPort=80
19
server.httpSSLPort=443
20 2156 costa
21 4080 daigle
############### Application Values ############
22 2156 costa
23 4080 daigle
## one of the few places where we use ANT tokens
24
application.metacatVersion=@metacatVersion@
25 4619 daigle
application.metacatReleaseInfo=@metacatReleaseInfo@
26 4170 daigle
27 4132 daigle
application.deployDir=
28 4080 daigle
## This is autodiscovered and populated by the config utility
29
application.context=
30
application.default-style=default
31
application.knbSiteURL=http://knb.ecoinformatics.org
32 4696 daigle
application.backupDir=
33 4080 daigle
application.datafilepath=/var/metacat/data
34
application.inlinedatafilepath=/var/metacat/inline-data
35 4334 daigle
application.documentfilepath=/var/metacat/documents
36 4948 daigle
application.expandedArchivePath=/var/metacat/expanded-archives
37 4214 daigle
application.tempDir=/var/metacat/temporary
38 4243 daigle
# the location of cgi scripts relative to the metacat context directory
39 4080 daigle
application.cgiDir=/cgi-bin
40 4211 daigle
#used for writing debug info into a anouther out file
41
application.writeDebugToFile=true
42
#output file name where debug info will written
43
# TODO SCW: these should be using the temp-dir property for their paths (change in code)
44
application.debugOutputFile=/tmp/metacat.debug
45
#delimitered text output file name where debug info will be written
46
application.delimiteredOutputFile=/tmp/metacat.debug.delimitered
47 2156 costa
48 4080 daigle
############### Database Values ###############
49 3780 daigle
50 4186 daigle
database.connectionURI=jdbc:postgresql://localhost/metacat
51 4080 daigle
database.user=
52
database.password=
53
database.type=
54 4291 daigle
database.driver=
55 4080 daigle
database.adapter=
56 4101 daigle
database.scriptsuffix.postgres=postgres.sql
57
database.scriptsuffix.oracle=oracle.sql
58
database.scriptsuffix.sqlserver=sqlserver.sql
59 4080 daigle
database.upgradeVersion.0.0.0=xmltables,loaddtdschema
60
database.upgradeVersion.1.2.0=upgrade-db-to-1.2
61
database.upgradeVersion.1.3.0=upgrade-db-to-1.3
62
database.upgradeVersion.1.4.0=upgrade-db-to-1.4
63
database.upgradeVersion.1.5.0=upgrade-db-to-1.5
64
database.upgradeVersion.1.6.0=upgrade-db-to-1.6
65
database.upgradeVersion.1.7.0=upgrade-db-to-1.7
66
database.upgradeVersion.1.8.0=upgrade-db-to-1.8
67
database.upgradeVersion.1.9.0=upgrade-db-to-1.9
68 4873 daigle
database.upgradeVersion.1.9.1=upgrade-db-to-1.9.1
69 4975 daigle
database.upgradeVersion.1.9.2=upgrade-db-to-1.9.2
70 5276 jones
database.upgradeVersion.1.10.0=upgrade-db-to-1.10.0
71 4080 daigle
database.initialConnections=5
72
database.incrementConnections=5
73 4840 daigle
database.maximumConnections=200
74 4080 daigle
database.maximumConnectionAge=120000
75
database.maximumConnectionTime=60000
76
database.maximumUsageNumber=100
77 5165 daigle
database.connectionCountWarnLimit=15
78 4080 daigle
database.numberOfIndexingThreads=5
79
database.indexingTimerTaskTime=604800000
80
database.indexingInitialDelay=3600000
81
database.maximumIndexDelay=5000
82
database.runDBConnectionRecycleThread=off
83
database.cycleTimeOfDBConnection=30000
84 4170 daigle
database.queryignoredparams=enableediting,foo
85
database.usexmlindex=true
86 4211 daigle
# used for the setting the size of resultset for applications like morpho
87
database.appResultsetSize=7000
88
# used for the setting the size of resultset for searches done using browsers
89
database.webResultsetSize=7000
90
# the value of xml_returnfield.usage_count should be more than this value
91
# for records to be entered into xml_queryresult. so if you want results for
92
# any combination of returnfields to be stored in xml_queryresult only when
93
# that combination has been requested 50 times, set this value to 50
94
database.xmlReturnfieldCount=0
95
# used for the setting the size of queryresult_string in queryresult table.
96
# the limit is 4000 for oracle
97
database.queryresultStringLength=500000
98
#the size of query result cache
99
database.queryresultCacheSize=500
100
#turn on or off the query result cache
101
database.queryCacheOn=true
102 5165 daigle
#the time in milliseconds that an squery can run before metacat logs a warning
103
database.queryTimeWarnLimit=30000
104
#the time in milliseconds that an squery can run before metacat logs a warning
105
database.squeryTimeWarnLimit=30000
106 2156 costa
107 5165 daigle
108
######## DB Query section              #######################################
109
#the time in milliseconds that a stylesheet transform can run before metacat logs a warning
110
dbquery.transformTimeWarnLimit=60000
111
#the time in milliseconds to get a document list before metacat logs a warning
112
dbquery.findDocListTimeWarnLimit=60000
113
#the time in milliseconds to get return values from queryresults table before metacat logs a warning
114
dbquery.findQueryResultsTimeWarnLimit=60000
115
#the time in milliseconds to run extended (index and node) queries before metacat logs a warning
116
dbquery.extendedQueryRunTimeWarnLimit=60000
117
#the time in milliseconds to store return fields before metacat logs a warning
118
dbquery.storeReturnFieldTimeWarnLimit=60000
119
#the time in milliseconds to totally process return fields before metacat logs a warning
120
dbquery.totalReturnFieldTimeWarnLimit=120000
121
122 4221 leinfelder
######## Datamanager section              #######################################
123
datamanager.adapter=PostgresAdapter
124
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
125
datamanager.server=localhost
126
datamanager.database=datamanager
127
datamanager.user=datamanager
128
datamanager.password=datamanager
129
datamanager.maxconnections=10
130
131 4248 leinfelder
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/knb/services/QueryService
132
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/knb/services/AuthenticatedQueryService
133
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/knb/services/AuthenticationService
134
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/knb/services/PutService
135
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/knb/services/IdentificationService
136
#datamanager.srb.endpoint=
137
#datamanager.srb.machinename=
138 4221 leinfelder
139 4582 daigle
######## Authentication and LDAP ##############################################
140 2156 costa
141 4080 daigle
auth.class=edu.ucsb.nceas.metacat.AuthLdap
142 4985 daigle
# Use AuthStub to test and guarantee authentication
143
## auth.class=edu.ucsb.nceas.metacat.AuthStub
144 4080 daigle
auth.timeoutMinutes=180
145 4582 daigle
# auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
146
auth.administrators=
147
auth.url=ldap://ldap.ecoinformatics.org:389/
148
auth.surl=ldap://ldap.ecoinformatics.org:389/
149 4729 daigle
auth.base=dc=ecoinformatics,dc=org
150 4582 daigle
auth.allowedSubmitters=
151
auth.deniedSubmitters=
152 4626 daigle
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
153 5148 daigle
#auth.moderators=cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
154 4626 daigle
155 4080 daigle
# time in milliseconds allowed for ldap server connections
156
ldap.connectTimeLimit=5000
157
# time in milliseconds allowed for ldap server searches
158
ldap.searchTimeLimit=30000
159
# count of return entries allowed for ldap server searches
160
ldap.searchCountLimit=30000
161
ldap.referral=follow
162
ldap.onlySecureConnection=false
163
ldap.onlySecureReferalsConnection=false
164
# LDAP templates
165
ldap.templates.stage=initregister
166
ldap.templates.header=genericHeader.tmpl
167
ldap.templates.footer=genericFooter.tmpl
168
ldap.templates.changePass=ldapChangePass.tmpl
169
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
170
ldap.templates.resetPass=ldapResetPass.tmpl
171
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
172
ldap.templates.register=ldapRegister.tmpl
173
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
174
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
175
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
176
ldap.templates.registerLter=ldapRegisterLter.tmpl
177
ldap.templates.success=ldapRegisterSuccess.tmpl
178
ldap.templates.failed=ldapRegisterFailed.tmpl
179
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
180
ldap.templates.searchResults=searchResults.tmpl
181 2156 costa
182 5041 daigle
############### Session Values ###############
183
session.timeoutMinutes=360
184
185 4160 daigle
############### Organization Values ###############
186 4776 daigle
organization.configured.NCEAS=false
187
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
188
organization.configured.OBFS=false
189
organization.name.OBFS=Organization of Biological Field Stations
190
organization.configured.OSUSB=false
191
organization.name.OSUSB=
192
organization.configured.UCNRS=false
193 4867 walbridge
organization.name.UCNRS=University of California Natural Reserve System
194
organization.base.UCNRS=ou=people,o=ucnrs.org
195
organization.user.UCNRS=uid=nrsadmin,o=NCEAS,dc=ecoinformatics,dc=org
196
organization.password.UCNRS=
197 4776 daigle
organization.configured.KU=false
198
organization.name.KU=
199
organization.configured.LTER=false
200
organization.name.LTER=
201
organization.configured.UVM=false
202
organization.name.UVM=
203
organization.configured.SDSC=false
204
organization.name.SDSC=
205
organization.configured.MSU=false
206
organization.name.MSU=
207
organization.configured.NAPIER=false
208
organization.name.NAPIER=
209
organization.configured.SANPARKS=false
210
organization.name.SANPARKS=Kruger National Park
211
organization.configured.SAEON=false
212
organization.name.SAEON=South African Environmental Observation Network Repository
213 4213 daigle
214 4776 daigle
organization.name.unaffiliated=unaffiliated
215 4395 walbridge
organization.base.unaffiliated=dc=ecoinformatics,dc=org
216
organization.org.unaffiliated=o=unaffiliated
217
organization.user.unaffiliated=cn=Manager
218
organization.password.unaffiliated=
219 4160 daigle
220 4080 daigle
######## XML / EML  #########################################
221
222 4213 daigle
xml.saxparser=org.apache.xerces.parsers.SAXParser
223
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
224
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
225
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
226 5122 leinfelder
xml.rdf_syntax_namespace=http://www.w3.org/1999/02/22-rdf-syntax-ns#
227 4806 daigle
xml.useFullSchemaValidation=true
228 4213 daigle
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
229
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
230
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
231
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
232
xml.packagedoctypeset=BIN,-//ecoinformatics.org//eml-access-2.0.0beta6//EN,-//ecoinformatics.org//eml-access-2.0.0beta4//EN,-//ecoinformatics.org//eml-attribute-2.0.0beta6//EN,-//ecoinformatics.org//eml-attribute-2.0.0beta4//EN,-//ecoinformatics.org//eml-constraint-2.0.0beta6//EN,-//ecoinformatics.org//eml-constraint-2.0.0beta4//EN,-//ecoinformatics.org//eml-coverage-2.0.0beta6//EN,-//ecoinformatics.org//eml-coverage-2.0.0beta4//EN,-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN,-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN,-//ecoinformatics.org//eml-entity-2.0.0beta6//EN,-//ecoinformatics.org//eml-entity-2.0.0beta4//EN,-//ecoinformatics.org//eml-literature-2.0.0beta6//EN,-//ecoinformatics.org//eml-literature-2.0.0beta4//EN,-//ecoinformatics.org//eml-physical-2.0.0beta6//EN,-//ecoinformatics.org//eml-physical-2.0.0beta4//EN,-//ecoinformatics.org//eml-project-2.0.0beta6//EN,-//ecoinformatics.org//eml-project-2.0.0beta4//EN,-//ecoinformatics.org//eml-protocol-2.0.0beta6//EN,-//ecoinformatics.org//eml-protocol-2.0.0beta4//EN,-//ecoinformatics.org//eml-software-2.0.0beta6//EN,-//ecoinformatics.org//eml-software-2.0.0beta4//EN
233 4840 daigle
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1,eml://ecoinformatics.org/eml-2.1.0
234 4812 daigle
xml.indexPaths=                            \
235
	@packageId,                            \
236
	/reviewHistory/review/packageId,       \
237
	abstract,                              \
238
	abstract/para,                         \
239
	access/allow/principal,                \
240
	additionalMetadata/moderatorComment    \
241
	associatedParty/individualName/surName,                           \
242
	associatedParty/organizationName,                                 \
243
	coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName,   \
244
	coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName,     \
245
	coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName,           \
246
	creator/individualName/surName,        \
247
	creator/individualName/givenName,      \
248
	creator/organizationName,              \
249
	dataset/access/allow/principal,        \
250
	dataset/dataTable/physical/distribution/online/url,               \
251
	dataset/dataTable/physical/distribution/online/url/@function,     \
252
	dataset/spatialRaster/physical/distribution/online/url,           \
253
	dataset/spatialRaster/physical/distribution/online/url/@function, \
254
	dataset/title,                         \
255
	eastBoundingCoordinate,                \
256
	eastbc,                                \
257
	EcogridRegEntry/description,           \
258
	EcogridRegEntry/endPoint,              \
259
	EcogridRegEntry/serviceName,           \
260
	entityName,                            \
261
	geographicCoverage/boundingCoordinates/eastBoundingCoordinate,    \
262
	geographicCoverage/boundingCoordinates/northBoundingCoordinate,   \
263
	geographicCoverage/boundingCoordinates/southBoundingCoordinate,   \
264
	geographicCoverage/boundingCoordinates/westBoundingCoordinate,    \
265
	geographicDescription,                 \
266
	givenName,                             \
267
	idinfo/citation/citeinfo/title,        \
268
	idinfo/citation/citeinfo/origin,       \
269
	idinfo/keywords/theme/themekey,        \
270
	individualName/surName,                \
271
	keyword,                               \
272
	literalLayout,                         \
273
	northbc,                               \
274
	northBoundingCoordinate,               \
275
	organizationName,                      \
276
	originator/individualName/surName,     \
277
	originator/individualName/givenName,   \
278
	originator/organizationName,           \
279
	para,                                  \
280
	placekey,                              \
281
	southBoundingCoordinate,               \
282
	southbc,                               \
283
	surName,                               \
284
	taxonomicClassification/taxonRankName,          \
285
	taxonomicClassification/taxonRankValue,         \
286
	taxonRankValue,                        \
287
	title,                                 \
288
	westBoundingCoordinate,                \
289
	westbc
290 2156 costa
291 4080 daigle
######## Outgoing email  #########################################
292 2156 costa
293 4080 daigle
email.mailhost=localhost
294
email.sender=knb-software@nceas.ucsb.edu
295
email.admin=KNB Support
296
email.recipient=knb-software@nceas.ucsb.edu
297 2156 costa
298 4170 daigle
######## Replication properties  #########################################
299 4211 daigle
300 4170 daigle
replication.logdir=
301
## deltaT=60
302
## debuglevel=55
303
replication.datafileflag=datafile
304
## TODO MCD this seems to be used in other placed besides replication
305
replication.datafilesizelimit=1000
306
replication.defaultcontenttype=application/octet-stream
307 4178 daigle
replication.timedreplication=false
308
replication.firsttimedreplication=10:00 PM
309
replication.timedreplicationinterval=172800000
310 4211 daigle
replication.forcereplicationwaitingtime=30000
311 2156 costa
312 4080 daigle
######## Skins  #########################################
313 4211 daigle
314 5141 daigle
skin.names=default,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc
315 4211 daigle
######## Document Section  #########################################
316 2156 costa
317 4090 daigle
#The flag to indicate if invalidated eml 201 documents were corrected.
318
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
319
#schema, which accidentily points to wrong version of eml-resource.xsd.
320
#If this value is false, metacat will run a class to correct eml201 doucment.
321 5311 daigle
document.eml201DocumentCorrected=true
322 4211 daigle
document.sitecode=nceas
323
document.accNumSeparator=.
324 5285 jones
document.accNumPrefix=autogen
325 4090 daigle
326 3081 jones
######## Harvester section            #########################################
327 2156 costa
328 4170 daigle
harvester.connectToMetacat=true
329
harvester.delay=0
330
harvester.administrator=name@institution.edu
331
harvester.logPeriod=90
332
harvester.maxHarvests=0
333
harvester.period=24
334
harvester.smtpServer=localhost
335
harvester.GetDocError=Error getting EML document from site,Error
336
harvester.GetDocSuccess=Success getting EML document from site,Debug
337
harvester.GetHarvestListError=Error getting harvest list from site,Error
338
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
339
harvester.HarvesterStartup=Harvester start up,Info
340
harvester.HarvesterShutdown=Harvester shut down,Info
341
harvester.InsertDocError=Error inserting EML document to Metacat,Error
342
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
343
harvester.MetacatHasDoc=Metacat already has this EML document,Info
344
harvester.UpdateDocError=Error updating EML document to Metacat,Error
345
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
346
harvester.ValidateDocError=Error validating EML docoument,Error
347
harvester.ValidateDocSuccess=Success validating EML document,Debug
348
harvester.ValidateHarvestListError=Error validating harvest list,Error
349
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
350 2156 costa
351 4943 costa
######## OAI-PMH section              #######################################
352
353
oaipmh.maxListSize=5
354
oaipmh.repositoryIdentifier=metacat.lternet.edu
355
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
356
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
357
# Duration of resumption tokens
358
AbstractCatalog.secondsToLive=3600
359
# Choose one of the following two
360
AbstractCatalog.granularity=YYYY-MM-DD
361
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
362
# Custom Identify response values
363
Identify.repositoryName=Metacat OAI-PMH Data Provider
364
Identify.adminEmail=mailto:tech_support@LTERnet.edu
365
Identify.earliestDatestamp=2000-01-01T00:00:00Z
366
Identify.deletedRecord=no
367
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
368 4944 costa
#Identify.description.1=<description><oai-identifier xmlns\="http\://www.openarchives.org/OAI/2.0/oai-identifier" xmlns\:xsi\="http\://www.w3.org/2001/XMLSchema-instance" xsi\:schemaLocation\="http\://www.openarchives.org/OAI/2.0/oai-identifier http\://www.openarchives.org/OAI/2.0/oai-identifier.xsd"><scheme>oai</scheme><repositoryIdentifier>metacat.lternet.edu</repositoryIdentifier><delimiter>\:</delimiter><sampleIdentifier>http\://metacat.lternet.edu/knb/metacat/knb-lter-lno.1</sampleIdentifier></oai-identifier></description>
369 4943 costa
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
370
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
371 4946 costa
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
372
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
373
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
374 4943 costa
375 4080 daigle
######## Spatial section              #########################################
376 3034 perry
377 4178 daigle
spatial.runSpatialOption=true
378
spatial.regenerateCacheOnRestart=true
379 3120 perry
# Comma-seperated list of schemas containing spatial bounding boxes
380
# name corresponds to the docname stored in xml_documents table
381 4178 daigle
spatial.spatialDocnameList=eml,fgdc,metadata
382 3034 perry
# XML paths to the four bounding coordinates
383 3120 perry
# These paths must be included in your indexPaths variable in build.properties
384
# Note the naming convention:
385
#   {docname}_{direction}BoundingCoordinatePath=.....
386
# Has not been tested with other schemas besides EML
387 4178 daigle
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
388
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
389
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
390
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
391
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
392
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
393
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
394
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
395
spatial.metadata_westBoundingCoordinatePath=westbc
396
spatial.metadata_eastBoundingCoordinatePath=eastbc
397
spatial.metadata_southBoundingCoordinatePath=southbc
398
spatial.metadata_northBoundingCoordinatePath=northbc
399
spatial.docTitle=dataset/title
400 3244 jones
401 4195 daigle
######## Geoserver section              #######################################
402 4211 daigle
403 4195 daigle
geoserver.loginPostPage=admin/loginSubmit.do
404
geoserver.loginSuccessString=admin/logout.do
405
geoserver.passwordPostPage=config/loginEditSubmit.do
406
geoserver.passwordSuccessString=Data loaded without incident
407
geoserver.applyPostPage=admin/saveToGeoServer.do
408
geoserver.defaultUsername=admin
409
geoserver.defaultPassword=geoserver
410
geoserver.username=
411
geoserver.password=
412
413 5027 daigle
######## workflowScheduler section              #######################################
414
415
workflowScheduler.url=http://indus.msi.ucsb.edu/workflowscheduler/scheduler
416
417 4080 daigle
######## SiteMap section              #########################################
418 3244 jones
419
# relative directory path in which sitemap files should be written
420 4080 daigle
## sitemapDirectory=@install-dir@/sitemaps
421 3244 jones
422
# Interval (in milliseconds) between rebuilding the sitemap
423 4208 daigle
sitemap.interval=86400000
424 3244 jones
425 4966 daigle
######## Workflow engine section              #########################################
426 4984 daigle
executionEngine.endPointAddress=http://localhost:8080/axis2/services/KeplerWebService
427 4966 daigle
428 4291 daigle
######## junit test section  ################
429
430
test.printdebug=true
431 5027 daigle
test.metacatUrl=http://indus.msi.ucsb.edu/knb/metacat
432
test.contextUrl=http://indus.msi.ucsb.edu/knb
433 5041 daigle
test.workflowSchedulerUrl=http://indus.msi.ucsb.edu/workflowscheduler/scheduler
434 4436 daigle
test.metacatDeployDir=/usr/local/tomcat/webapps/knb
435 4291 daigle
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
436
test.mcPassword=kepler
437
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
438
test.mcAnotherPassword=test
439 4336 daigle
test.piscoUser=uid=piscotest,o=PISCO,dc=ecoinformatics,dc=org
440 4291 daigle
test.piscoPassword=testPW
441
test.lterUser=uid=tmonkey,o=LTER,dc=ecoinformatics,dc=org
442
test.lterPassword=T3$tusr
443
test.testProperty=testing
444
445 4152 daigle
######## Developers Section #########################################
446
447
# Set dev.runConfiguration to false to keep the system from walking you
448
# through the configuration utility every time you reinstall metacat.
449
# Instead,  the system will use backed up configuration values.  If you
450
# haven't ever configured the app (no backup files) the system will take
451
# you through the configuration.
452 4182 walbridge
dev.runConfiguration=true