Project

General

Profile

1
# Properties file defining options for the MetaCatServlet.java servlet
2
#
3
# Matt Jones, Dan Higgins, Jivka Bojilova
4
# '$Id: metacat.properties 5311 2010-04-14 18:31:03Z daigle $'
5
#
6

    
7
######## Configuration utility section  ################
8

    
9
configutil.propertiesConfigured=false
10
configutil.authConfigured=false
11
configutil.skinsConfigured=false
12
configutil.databaseConfigured=false
13
configutil.geoserverConfigured=false
14

    
15
############### Server Values #################
16

    
17
server.name=localhost
18
server.httpPort=80
19
server.httpSSLPort=443
20

    
21
############### Application Values ############
22

    
23
## one of the few places where we use ANT tokens
24
application.metacatVersion=@metacatVersion@
25
application.metacatReleaseInfo=@metacatReleaseInfo@
26

    
27
application.deployDir=
28
## 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
application.backupDir=
33
application.datafilepath=/var/metacat/data
34
application.inlinedatafilepath=/var/metacat/inline-data
35
application.documentfilepath=/var/metacat/documents
36
application.expandedArchivePath=/var/metacat/expanded-archives
37
application.tempDir=/var/metacat/temporary
38
# the location of cgi scripts relative to the metacat context directory
39
application.cgiDir=/cgi-bin
40
#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

    
48
############### Database Values ###############
49

    
50
database.connectionURI=jdbc:postgresql://localhost/metacat
51
database.user=
52
database.password=
53
database.type=
54
database.driver=
55
database.adapter=
56
database.scriptsuffix.postgres=postgres.sql
57
database.scriptsuffix.oracle=oracle.sql
58
database.scriptsuffix.sqlserver=sqlserver.sql
59
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
database.upgradeVersion.1.9.1=upgrade-db-to-1.9.1
69
database.upgradeVersion.1.9.2=upgrade-db-to-1.9.2
70
database.upgradeVersion.1.10.0=upgrade-db-to-1.10.0
71
database.initialConnections=5
72
database.incrementConnections=5
73
database.maximumConnections=200
74
database.maximumConnectionAge=120000
75
database.maximumConnectionTime=60000
76
database.maximumUsageNumber=100
77
database.connectionCountWarnLimit=15
78
database.numberOfIndexingThreads=5
79
database.indexingTimerTaskTime=604800000
80
database.indexingInitialDelay=3600000
81
database.maximumIndexDelay=5000
82
database.runDBConnectionRecycleThread=off
83
database.cycleTimeOfDBConnection=30000
84
database.queryignoredparams=enableediting,foo
85
database.usexmlindex=true
86
# 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
#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

    
107

    
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
######## 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
#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

    
139
######## Authentication and LDAP ##############################################
140

    
141
auth.class=edu.ucsb.nceas.metacat.AuthLdap
142
# Use AuthStub to test and guarantee authentication
143
## auth.class=edu.ucsb.nceas.metacat.AuthStub
144
auth.timeoutMinutes=180
145
# 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
auth.base=dc=ecoinformatics,dc=org
150
auth.allowedSubmitters=
151
auth.deniedSubmitters=
152
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
153
#auth.moderators=cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
154

    
155
# 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

    
182
############### Session Values ###############
183
session.timeoutMinutes=360
184

    
185
############### Organization Values ###############
186
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
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
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

    
214
organization.name.unaffiliated=unaffiliated
215
organization.base.unaffiliated=dc=ecoinformatics,dc=org
216
organization.org.unaffiliated=o=unaffiliated
217
organization.user.unaffiliated=cn=Manager
218
organization.password.unaffiliated=
219

    
220
######## XML / EML  #########################################
221

    
222
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
xml.rdf_syntax_namespace=http://www.w3.org/1999/02/22-rdf-syntax-ns#
227
xml.useFullSchemaValidation=true
228
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
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1,eml://ecoinformatics.org/eml-2.1.0
234
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

    
291
######## Outgoing email  #########################################
292

    
293
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

    
298
######## Replication properties  #########################################
299

    
300
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
replication.timedreplication=false
308
replication.firsttimedreplication=10:00 PM
309
replication.timedreplicationinterval=172800000
310
replication.forcereplicationwaitingtime=30000
311

    
312
######## Skins  #########################################
313

    
314
skin.names=default,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc
315
######## Document Section  #########################################
316

    
317
#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
document.eml201DocumentCorrected=true
322
document.sitecode=nceas
323
document.accNumSeparator=.
324
document.accNumPrefix=autogen
325

    
326
######## Harvester section            #########################################
327

    
328
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

    
351
######## 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
#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
# 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
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

    
375
######## Spatial section              #########################################
376

    
377
spatial.runSpatialOption=true
378
spatial.regenerateCacheOnRestart=true
379
# Comma-seperated list of schemas containing spatial bounding boxes
380
# name corresponds to the docname stored in xml_documents table
381
spatial.spatialDocnameList=eml,fgdc,metadata
382
# XML paths to the four bounding coordinates
383
# 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
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

    
401
######## Geoserver section              #######################################
402

    
403
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
######## workflowScheduler section              #######################################
414

    
415
workflowScheduler.url=http://indus.msi.ucsb.edu/workflowscheduler/scheduler
416

    
417
######## SiteMap section              #########################################
418

    
419
# relative directory path in which sitemap files should be written
420
## sitemapDirectory=@install-dir@/sitemaps
421

    
422
# Interval (in milliseconds) between rebuilding the sitemap
423
sitemap.interval=86400000
424

    
425
######## Workflow engine section              #########################################
426
executionEngine.endPointAddress=http://localhost:8080/axis2/services/KeplerWebService
427

    
428
######## junit test section  ################
429

    
430
test.printdebug=true
431
test.metacatUrl=http://indus.msi.ucsb.edu/knb/metacat
432
test.contextUrl=http://indus.msi.ucsb.edu/knb
433
test.workflowSchedulerUrl=http://indus.msi.ucsb.edu/workflowscheduler/scheduler
434
test.metacatDeployDir=/usr/local/tomcat/webapps/knb
435
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
test.piscoUser=uid=piscotest,o=PISCO,dc=ecoinformatics,dc=org
440
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
######## 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
dev.runConfiguration=true
453

    
(23-23/44)