1
|
# Properties file defining options for the MetaCatServlet.java servlet
|
2
|
#
|
3
|
# Matt Jones, Dan Higgins, Jivka Bojilova
|
4
|
# '$Id: metacat.properties 6552 2011-10-27 21:13:32Z leinfelder $'
|
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.9.3=upgrade-db-to-1.9.3
|
71
|
database.upgradeVersion.1.9.4=upgrade-db-to-1.9.4
|
72
|
database.upgradeVersion.1.9.5=upgrade-db-to-1.9.5
|
73
|
database.upgradeVersion.2.0.0=upgrade-db-to-2.0.0
|
74
|
## for running java-based utilities
|
75
|
database.upgradeUtility.1.5.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade1_5_0
|
76
|
database.upgradeUtility.2.0.0=edu.ucsb.nceas.metacat.admin.upgrade.Upgrade2_0_0
|
77
|
database.initialConnections=5
|
78
|
database.incrementConnections=5
|
79
|
database.maximumConnections=200
|
80
|
database.maximumConnectionAge=120000
|
81
|
database.maximumConnectionTime=60000
|
82
|
database.maximumUsageNumber=100
|
83
|
database.connectionCountWarnLimit=15
|
84
|
database.numberOfIndexingThreads=5
|
85
|
database.indexingTimerTaskTime=604800000
|
86
|
database.indexingInitialDelay=3600000
|
87
|
database.maximumIndexDelay=5000
|
88
|
database.runDBConnectionRecycleThread=off
|
89
|
database.cycleTimeOfDBConnection=30000
|
90
|
database.queryignoredparams=enableediting,foo
|
91
|
database.usexmlindex=true
|
92
|
# used for the setting the size of resultset for applications like morpho
|
93
|
database.appResultsetSize=7000
|
94
|
# used for the setting the size of resultset for searches done using browsers
|
95
|
database.webResultsetSize=7000
|
96
|
# the value of xml_returnfield.usage_count should be more than this value
|
97
|
# for records to be entered into xml_queryresult. so if you want results for
|
98
|
# any combination of returnfields to be stored in xml_queryresult only when
|
99
|
# that combination has been requested 50 times, set this value to 50
|
100
|
database.xmlReturnfieldCount=0
|
101
|
# used for the setting the size of queryresult_string in queryresult table.
|
102
|
# the limit is 4000 for oracle
|
103
|
database.queryresultStringLength=500000
|
104
|
#the size of query result cache
|
105
|
database.queryresultCacheSize=500
|
106
|
#turn on or off the query result cache
|
107
|
database.queryCacheOn=true
|
108
|
#the time in milliseconds that an squery can run before metacat logs a warning
|
109
|
database.queryTimeWarnLimit=30000
|
110
|
#the time in milliseconds that an squery can run before metacat logs a warning
|
111
|
database.squeryTimeWarnLimit=30000
|
112
|
|
113
|
|
114
|
######## DB Query section #######################################
|
115
|
#the time in milliseconds that a stylesheet transform can run before metacat logs a warning
|
116
|
dbquery.transformTimeWarnLimit=60000
|
117
|
#the time in milliseconds to get a document list before metacat logs a warning
|
118
|
dbquery.findDocListTimeWarnLimit=60000
|
119
|
#the time in milliseconds to get return values from queryresults table before metacat logs a warning
|
120
|
dbquery.findQueryResultsTimeWarnLimit=60000
|
121
|
#the time in milliseconds to run extended (index and node) queries before metacat logs a warning
|
122
|
dbquery.extendedQueryRunTimeWarnLimit=60000
|
123
|
#the time in milliseconds to store return fields before metacat logs a warning
|
124
|
dbquery.storeReturnFieldTimeWarnLimit=60000
|
125
|
#the time in milliseconds to totally process return fields before metacat logs a warning
|
126
|
dbquery.totalReturnFieldTimeWarnLimit=120000
|
127
|
|
128
|
######## Datamanager section #######################################
|
129
|
datamanager.adapter=PostgresAdapter
|
130
|
datamanager.implementation=edu.ucsb.nceas.metacat.dataquery.PostgresDatabaseConnectionPool
|
131
|
datamanager.server=localhost
|
132
|
datamanager.database=datamanager
|
133
|
datamanager.user=datamanager
|
134
|
datamanager.password=datamanager
|
135
|
datamanager.maxconnections=10
|
136
|
|
137
|
#datamanager.endpoint.query=http://ecogrid.ecoinformatics.org/knb/services/QueryService
|
138
|
#datamanager.endpoint.authenticatedquery=http://ecogrid.ecoinformatics.org/knb/services/AuthenticatedQueryService
|
139
|
#datamanager.endpoint.authentication=http://ecogrid.ecoinformatics.org/knb/services/AuthenticationService
|
140
|
#datamanager.endpoint.put=http://ecogrid.ecoinformatics.org/knb/services/PutService
|
141
|
#datamanager.endpoint.identifier=http://ecogrid.ecoinformatics.org/knb/services/IdentificationService
|
142
|
#datamanager.srb.endpoint=
|
143
|
#datamanager.srb.machinename=
|
144
|
|
145
|
######## Plugin section #######################################
|
146
|
plugin.handlers=
|
147
|
|
148
|
######## Authentication and LDAP ##############################################
|
149
|
|
150
|
auth.class=edu.ucsb.nceas.metacat.AuthLdap
|
151
|
# Use AuthStub to test and guarantee authentication
|
152
|
# auth.class=edu.ucsb.nceas.metacat.AuthStub
|
153
|
auth.timeoutMinutes=180
|
154
|
# auth.administrators=uid=jones,o=NCEAS,dc=ecoinformatics,dc=org
|
155
|
auth.administrators=
|
156
|
auth.url=ldap://ldap.ecoinformatics.org:389/
|
157
|
auth.surl=ldap://ldap.ecoinformatics.org:389/
|
158
|
auth.base=dc=ecoinformatics,dc=org
|
159
|
auth.allowedSubmitters=
|
160
|
auth.deniedSubmitters=
|
161
|
auth.moderators=cn=knb-prod,o=NCEAS,dc=ecoinformatics,dc=org:cn=esa-moderators,dc=ecoinformatics,dc=org
|
162
|
#auth.moderators=cn=parc-moderators,o=PARC,dc=ecoinformatics,dc=org
|
163
|
|
164
|
# time in milliseconds allowed for ldap server connections
|
165
|
ldap.connectTimeLimit=5000
|
166
|
# time in milliseconds allowed for ldap server searches
|
167
|
ldap.searchTimeLimit=30000
|
168
|
# count of return entries allowed for ldap server searches
|
169
|
ldap.searchCountLimit=30000
|
170
|
ldap.referral=follow
|
171
|
ldap.onlySecureConnection=false
|
172
|
ldap.onlySecureReferalsConnection=false
|
173
|
# LDAP templates
|
174
|
ldap.templates.stage=initregister
|
175
|
ldap.templates.header=genericHeader.tmpl
|
176
|
ldap.templates.footer=genericFooter.tmpl
|
177
|
ldap.templates.changePass=ldapChangePass.tmpl
|
178
|
ldap.templates.changePassSuccess=ldapChangePassSuccess.tmpl
|
179
|
ldap.templates.resetPass=ldapResetPass.tmpl
|
180
|
ldap.templates.resetPassSuccess=ldapResetPassSuccess.tmpl
|
181
|
ldap.templates.register=ldapRegister.tmpl
|
182
|
ldap.templates.registerFailed=ldapRegisterFailed.tmpl
|
183
|
ldap.templates.registerMatch=ldapRegisterMatch.tmpl
|
184
|
ldap.templates.registerSuccess=ldapRegisterSuccess.tmpl
|
185
|
ldap.templates.registerLter=ldapRegisterLter.tmpl
|
186
|
ldap.templates.success=ldapRegisterSuccess.tmpl
|
187
|
ldap.templates.failed=ldapRegisterFailed.tmpl
|
188
|
ldap.templates.mainServerFailure=ldapMainServerFailure.tmpl
|
189
|
ldap.templates.searchResults=searchResults.tmpl
|
190
|
|
191
|
############### Session Values ###############
|
192
|
session.timeoutMinutes=360
|
193
|
|
194
|
############### Organization Values ###############
|
195
|
organization.configured.NCEAS=false
|
196
|
organization.name.NCEAS=National Center for Ecological Analysis and Synthesis
|
197
|
organization.configured.OBFS=false
|
198
|
organization.name.OBFS=Organization of Biological Field Stations
|
199
|
organization.configured.OSUSB=false
|
200
|
organization.name.OSUSB=
|
201
|
organization.configured.UCNRS=false
|
202
|
organization.name.UCNRS=University of California Natural Reserve System
|
203
|
organization.base.UCNRS=ou=people,o=ucnrs.org
|
204
|
organization.user.UCNRS=uid=nrsadmin,o=NCEAS,dc=ecoinformatics,dc=org
|
205
|
organization.password.UCNRS=
|
206
|
organization.configured.KU=false
|
207
|
organization.name.KU=
|
208
|
organization.configured.LTER=false
|
209
|
organization.name.LTER=
|
210
|
organization.configured.UVM=false
|
211
|
organization.name.UVM=
|
212
|
organization.configured.SDSC=false
|
213
|
organization.name.SDSC=
|
214
|
organization.configured.MSU=false
|
215
|
organization.name.MSU=
|
216
|
organization.configured.NAPIER=false
|
217
|
organization.name.NAPIER=
|
218
|
organization.configured.SANPARKS=false
|
219
|
organization.name.SANPARKS=Kruger National Park
|
220
|
organization.configured.SAEON=false
|
221
|
organization.name.SAEON=South African Environmental Observation Network Repository
|
222
|
|
223
|
organization.name.unaffiliated=unaffiliated
|
224
|
organization.base.unaffiliated=dc=ecoinformatics,dc=org
|
225
|
organization.org.unaffiliated=o=unaffiliated
|
226
|
organization.user.unaffiliated=cn=Manager
|
227
|
organization.password.unaffiliated=
|
228
|
|
229
|
######## XML / EML #########################################
|
230
|
|
231
|
xml.saxparser=org.apache.xerces.parsers.SAXParser
|
232
|
xml.eml2_0_0namespace=eml://ecoinformatics.org/eml-2.0.0
|
233
|
xml.eml2_0_1namespace=eml://ecoinformatics.org/eml-2.0.1
|
234
|
xml.eml2_1_0namespace=eml://ecoinformatics.org/eml-2.1.0
|
235
|
xml.eml2_1_1namespace=eml://ecoinformatics.org/eml-2.1.1
|
236
|
xml.rdf_syntax_namespace=http://www.w3.org/1999/02/22-rdf-syntax-ns#
|
237
|
xml.useFullSchemaValidation=true
|
238
|
xml.packagedoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN, -//ecoinformatics.org//eml-dataset-2.0.0beta4//EN
|
239
|
xml.accessdoctype=-//ecoinformatics.org//eml-access-2.0.0beta6//EN, -//ecoinformatics.org//eml-access-2.0.0beta4//EN
|
240
|
xml.physicaldoctype=-//ecoinformatics.org//eml-physical-2.0.0beta6//EN, -//ecoinformatics.org//eml-physical-2.0.0beta4//EN
|
241
|
xml.entitydoctype=-//ecoinformatics.org//eml-entity-2.0.0beta6//EN, -//ecoinformatics.org//eml-entity-2.0.0beta4//EN
|
242
|
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
|
243
|
xml.indexNamespaces=eml://ecoinformatics.org/eml-2.0.0,eml://ecoinformatics.org/eml-2.0.1,eml://ecoinformatics.org/eml-2.1.0,eml://ecoinformatics.org/eml-2.1.1,http://www.kepler-project.org/kar-2.0.0,http://www.kepler-project.org/kar-2.1.0
|
244
|
xml.indexPaths= \
|
245
|
@packageId, \
|
246
|
/reviewHistory/review/packageId, \
|
247
|
abstract, \
|
248
|
abstract/value, \
|
249
|
abstract/para, \
|
250
|
abstract/para/value, \
|
251
|
access/allow/principal, \
|
252
|
additionalMetadata/metadata/spatialResolution/value, \
|
253
|
additionalMetadata/metadata/spatialResolution/units, \
|
254
|
additionalMetadata/moderatorComment, \
|
255
|
associatedParty/individualName/surName, \
|
256
|
associatedParty/organizationName, \
|
257
|
coverage/temporalCoverage/rangeOfDates/beginDate/alternativeTimeScale/timeScaleName, \
|
258
|
coverage/temporalCoverage/rangeOfDates/endDate/alternativeTimeScale/timeScaleName, \
|
259
|
coverage/temporalCoverage/singleDateTime/alternativeTimeScale/timeScaleName, \
|
260
|
coverage/temporalCoverage/rangeOfDates/beginDate/calendarDate, \
|
261
|
coverage/temporalCoverage/rangeOfDates/endDate/calendarDate, \
|
262
|
coverage/temporalCoverage/singleDateTime/calendarDate, \
|
263
|
coverage/temporalCoverage/rangeOfDates/beginDate/time, \
|
264
|
coverage/temporalCoverage/rangeOfDates/endDate/time, \
|
265
|
coverage/temporalCoverage/singleDateTime/time, \
|
266
|
creator/individualName/surName, \
|
267
|
creator/individualName/givenName, \
|
268
|
creator/organizationName, \
|
269
|
dataset/access/allow/principal, \
|
270
|
dataset/dataTable/physical/distribution/online/url, \
|
271
|
dataset/dataTable/physical/distribution/online/url/@function, \
|
272
|
dataset/spatialRaster/physical/distribution/online/url, \
|
273
|
dataset/spatialRaster/physical/distribution/online/url/@function, \
|
274
|
dataset/otherEntity/physical/distribution/online/url, \
|
275
|
dataset/otherEntity/physical/distribution/online/url/@function, \
|
276
|
physical/encodingMethod, \
|
277
|
dataset/title, \
|
278
|
dataset/title/value, \
|
279
|
eastBoundingCoordinate, \
|
280
|
eastbc, \
|
281
|
EcogridRegEntry/description, \
|
282
|
EcogridRegEntry/endPoint, \
|
283
|
EcogridRegEntry/serviceName, \
|
284
|
entityName, \
|
285
|
geographicCoverage/boundingCoordinates/eastBoundingCoordinate, \
|
286
|
geographicCoverage/boundingCoordinates/northBoundingCoordinate, \
|
287
|
geographicCoverage/boundingCoordinates/southBoundingCoordinate, \
|
288
|
geographicCoverage/boundingCoordinates/westBoundingCoordinate, \
|
289
|
geographicDescription, \
|
290
|
givenName, \
|
291
|
idinfo/citation/citeinfo/title, \
|
292
|
idinfo/citation/citeinfo/origin, \
|
293
|
idinfo/keywords/theme/themekey, \
|
294
|
individualName/surName, \
|
295
|
keyword, \
|
296
|
karEntry/karEntryAttributes/type, \
|
297
|
karEntry/karEntryXML/property/property/@name, \
|
298
|
karEntry/karEntryXML/property/property/@value, \
|
299
|
karEntry/karEntryXML/property/property/property/@name, \
|
300
|
karEntry/karEntryXML/property/property/property/@value, \
|
301
|
karFileName, \
|
302
|
karFileSize, \
|
303
|
keyword/value, \
|
304
|
literalLayout, \
|
305
|
mainAttributes/lsid, \
|
306
|
northbc, \
|
307
|
northBoundingCoordinate, \
|
308
|
organizationName, \
|
309
|
originator/individualName/surName, \
|
310
|
originator/individualName/givenName, \
|
311
|
originator/organizationName, \
|
312
|
para, \
|
313
|
placekey, \
|
314
|
southBoundingCoordinate, \
|
315
|
southbc, \
|
316
|
surName, \
|
317
|
taxonomicClassification/taxonRankName, \
|
318
|
taxonomicClassification/taxonRankValue, \
|
319
|
taxonRankValue, \
|
320
|
title, \
|
321
|
westBoundingCoordinate, \
|
322
|
westbc
|
323
|
|
324
|
######## Outgoing email #########################################
|
325
|
|
326
|
email.mailhost=localhost
|
327
|
email.sender=knb-software@nceas.ucsb.edu
|
328
|
email.admin=KNB Support
|
329
|
email.recipient=knb-software@nceas.ucsb.edu
|
330
|
|
331
|
######## Replication properties #########################################
|
332
|
|
333
|
replication.logdir=
|
334
|
## deltaT=60
|
335
|
## debuglevel=55
|
336
|
replication.datafileflag=datafile
|
337
|
## TODO MCD this seems to be used in other placed besides replication
|
338
|
replication.datafilesizelimit=1000
|
339
|
replication.defaultcontenttype=application/octet-stream
|
340
|
replication.timedreplication=false
|
341
|
replication.firsttimedreplication=10:00 PM
|
342
|
replication.timedreplicationinterval=172800000
|
343
|
replication.forcereplicationwaitingtime=30000
|
344
|
|
345
|
######## Skins #########################################
|
346
|
|
347
|
skin.names=default,nceas,esa,knb,kepler,lter,ltss,obfs,nrs,sanparks,saeon,first,parc,semtools
|
348
|
######## Document Section #########################################
|
349
|
|
350
|
#The flag to indicate if invalidated eml 201 documents were corrected.
|
351
|
#Before Metacat 1.8.1, metacat uses tag RELEASE_EML_2_0_1_UPDATE_6 as eml
|
352
|
#schema, which accidentily points to wrong version of eml-resource.xsd.
|
353
|
#If this value is false, metacat will run a class to correct eml201 doucment.
|
354
|
document.eml201DocumentCorrected=true
|
355
|
document.sitecode=nceas
|
356
|
document.accNumSeparator=.
|
357
|
document.accNumPrefix=autogen
|
358
|
|
359
|
######## Harvester section #########################################
|
360
|
|
361
|
harvester.connectToMetacat=true
|
362
|
harvester.delay=0
|
363
|
harvester.administrator=name@institution.edu
|
364
|
harvester.logPeriod=90
|
365
|
harvester.maxHarvests=0
|
366
|
harvester.period=24
|
367
|
harvester.smtpServer=localhost
|
368
|
harvester.GetDocError=Error getting EML document from site,Error
|
369
|
harvester.GetDocSuccess=Success getting EML document from site,Debug
|
370
|
harvester.GetHarvestListError=Error getting harvest list from site,Error
|
371
|
harvester.GetHarvestListSuccess=Success getting harvest list from site,Debug
|
372
|
harvester.HarvesterStartup=Harvester start up,Info
|
373
|
harvester.HarvesterShutdown=Harvester shut down,Info
|
374
|
harvester.InsertDocError=Error inserting EML document to Metacat,Error
|
375
|
harvester.InsertDocSuccess=Success inserting EML document to Metacat,Info
|
376
|
harvester.MetacatHasDoc=Metacat already has this EML document,Info
|
377
|
harvester.UpdateDocError=Error updating EML document to Metacat,Error
|
378
|
harvester.UpdateDocSuccess=Success updating EML document to Metacat,Info
|
379
|
harvester.ValidateDocError=Error validating EML docoument,Error
|
380
|
harvester.ValidateDocSuccess=Success validating EML document,Debug
|
381
|
harvester.ValidateHarvestListError=Error validating harvest list,Error
|
382
|
harvester.ValidateHarvestListSuccess=Success validating harvest list,Debug
|
383
|
|
384
|
######## OAI-PMH section #######################################
|
385
|
|
386
|
oaipmh.maxListSize=5
|
387
|
oaipmh.repositoryIdentifier=localhost:8080
|
388
|
AbstractCatalog.oaiCatalogClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatCatalog
|
389
|
AbstractCatalog.recordFactoryClassName=edu.ucsb.nceas.metacat.oaipmh.provider.server.catalog.MetacatRecordFactory
|
390
|
# Duration of resumption tokens
|
391
|
AbstractCatalog.secondsToLive=3600
|
392
|
# Choose one of the following two
|
393
|
AbstractCatalog.granularity=YYYY-MM-DD
|
394
|
#AbstractCatalog.granularity=YYYY-MM-DDThh:mm:ssZ
|
395
|
# Custom Identify response values
|
396
|
Identify.repositoryName=Local Metacat OAI-PMH Data Provider
|
397
|
Identify.adminEmail=mailto:admin@localhost
|
398
|
Identify.earliestDatestamp=2000-01-01T00:00:00Z
|
399
|
Identify.deletedRecord=no
|
400
|
# Append something unique like .1, .2, etc to 'Identify.description' for each occurrence
|
401
|
#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>
|
402
|
# List the supported metadataPrefixes along with the class that performs the associated crosswalk
|
403
|
Crosswalks.oai_dc=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml2oai_dc
|
404
|
Crosswalks.eml-2.0.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml200
|
405
|
Crosswalks.eml-2.0.1=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml201
|
406
|
Crosswalks.eml-2.1.0=edu.ucsb.nceas.metacat.oaipmh.provider.server.crosswalk.Eml210
|
407
|
|
408
|
######## Spatial section #########################################
|
409
|
|
410
|
spatial.runSpatialOption=true
|
411
|
spatial.regenerateCacheOnRestart=true
|
412
|
# Comma-seperated list of schemas containing spatial bounding boxes
|
413
|
# name corresponds to the docname stored in xml_documents table
|
414
|
spatial.spatialDocnameList=eml,fgdc,metadata
|
415
|
# XML paths to the four bounding coordinates
|
416
|
# These paths must be included in your indexPaths variable in build.properties
|
417
|
# Note the naming convention:
|
418
|
# {docname}_{direction}BoundingCoordinatePath=.....
|
419
|
# Has not been tested with other schemas besides EML
|
420
|
spatial.eml_westBoundingCoordinatePath=geographicCoverage/boundingCoordinates/westBoundingCoordinate
|
421
|
spatial.eml_eastBoundingCoordinatePath=geographicCoverage/boundingCoordinates/eastBoundingCoordinate
|
422
|
spatial.eml_southBoundingCoordinatePath=geographicCoverage/boundingCoordinates/southBoundingCoordinate
|
423
|
spatial.eml_northBoundingCoordinatePath=geographicCoverage/boundingCoordinates/northBoundingCoordinate
|
424
|
spatial.fgdc_westBoundingCoordinatePath=spdom/bounding/westbc
|
425
|
spatial.fgdc_eastBoundingCoordinatePath=spdom/bounding/eastbc
|
426
|
spatial.fgdc_southBoundingCoordinatePath=spdom/bounding/southbc
|
427
|
spatial.fgdc_northBoundingCoordinatePath=spdom/bounding/northbc
|
428
|
spatial.metadata_westBoundingCoordinatePath=westbc
|
429
|
spatial.metadata_eastBoundingCoordinatePath=eastbc
|
430
|
spatial.metadata_southBoundingCoordinatePath=southbc
|
431
|
spatial.metadata_northBoundingCoordinatePath=northbc
|
432
|
spatial.docTitle=dataset/title
|
433
|
|
434
|
######## Geoserver section #######################################
|
435
|
|
436
|
geoserver.username=admin
|
437
|
geoserver.password=geoserver
|
438
|
geoserver.context=geoserver
|
439
|
geoserver.GEOSERVER_DATA_DIR=
|
440
|
|
441
|
|
442
|
######## workflowScheduler section #######################################
|
443
|
|
444
|
workflowScheduler.url=http://chico1.dyndns.org/workflowscheduler/scheduler
|
445
|
workflowScheduler.authorizationPath=/services/AuthorizationService
|
446
|
workflowScheduler.authenticationPath=/services/AuthenticationService
|
447
|
workflowScheduler.queryPath=/services/QueryService
|
448
|
|
449
|
######## SiteMap section #########################################
|
450
|
|
451
|
# relative directory path in which sitemap files should be written
|
452
|
## sitemapDirectory=@install-dir@/sitemaps
|
453
|
|
454
|
# Interval (in milliseconds) between rebuilding the sitemap
|
455
|
sitemap.interval=86400000
|
456
|
|
457
|
######## Workflow engine section #########################################
|
458
|
executionEngine.workflowRunEngineName=keplerDevWorkflowEngine
|
459
|
executionEngine.endPointAddress=http://kepler-dev.nceas.ucsb.edu/axis2/services/KeplerWebService
|
460
|
executionEngine.resultDestinationRepository=sanparksRepository:keplerRepository:keplerDevRepository:chico1Repository
|
461
|
######## junit test section ################
|
462
|
|
463
|
test.printdebug=true
|
464
|
test.metacatUrl=http://localhost:8080/knb/metacat
|
465
|
test.contextUrl=http://localhost:8080/knb
|
466
|
test.workflowSchedulerUrl=http://localhost:8080/workflowscheduler/scheduler
|
467
|
test.metacatDeployDir=/Users/leinfelder/tools/apache-tomcat-6/webapps/knb
|
468
|
test.mcUser=uid=kepler,o=unaffiliated,dc=ecoinformatics,dc=org
|
469
|
test.mcPassword=kepler
|
470
|
test.mcAnotherUser=uid=test,o=NCEAS,dc=ecoinformatics,dc=org
|
471
|
test.mcAnotherPassword=test
|
472
|
test.referralUser=uid=testreferral,o=UCNRS,dc=ecoinformatics,dc=org
|
473
|
test.referralPassword=testreferral
|
474
|
test.lterUser=uid=tmonkey,o=LTER,dc=ecoinformatics,dc=org
|
475
|
test.lterPassword=T3$tusr
|
476
|
test.testProperty=testing
|
477
|
|
478
|
######## Developers Section #########################################
|
479
|
|
480
|
# Set dev.runConfiguration to false to keep the system from walking you
|
481
|
# through the configuration utility every time you reinstall metacat.
|
482
|
# Instead, the system will use backed up configuration values. If you
|
483
|
# haven't ever configured the app (no backup files) the system will take
|
484
|
# you through the configuration.
|
485
|
dev.runConfiguration=true
|
486
|
|
487
|
|
488
|
############# DataONE Section #######################################
|
489
|
D1Client.CN_URL=https://cn-dev.dataone.org/cn
|
490
|
#dataone.coordinatingNodeBaseURL=https://cn-dev.dataone.org/cn
|
491
|
dataone.memberNodeId=METACAT1
|
492
|
dataone.subject=CN=METACAT1, DC=dataone, DC=org
|
493
|
dataone.certpath=/etc/dataone/client/certs
|
494
|
dataone.nodeName=My Metacat Node
|
495
|
dataone.nodeType=mn
|
496
|
dataone.nodeDescription=A DataONE member node implemented in Metacat.
|
497
|
dataone.nodeSynchronize=true
|
498
|
dataone.nodeReplicate=true
|
499
|
dataone.serviceName=d1
|
500
|
|
501
|
# state which versions of each MN tier service are availalble
|
502
|
dataone.mnCore.serviceAvailable=true
|
503
|
dataone.mnCore.serviceVersion=v1
|
504
|
dataone.mnRead.serviceAvailable=true
|
505
|
dataone.mnRead.serviceVersion=v1
|
506
|
dataone.mnAuthorization.serviceAvailable=true
|
507
|
dataone.mnAuthorization.serviceVersion=v1
|
508
|
dataone.mnStorage.serviceAvailable=true
|
509
|
dataone.mnStorage.serviceVersion=v1
|
510
|
dataone.mnReplication.serviceAvailable=true
|
511
|
dataone.mnReplication.serviceVersion=v1
|
512
|
|
513
|
# The DataONE storage cluster configuration for Hazelcast
|
514
|
#dataone.hazelcast.configFilePath=/etc/dataone/storage/hazelcast.xml
|
515
|
dataone.hazelcast.storageCluster.systemMetadataMap=hzSystemMetadata
|
516
|
dataone.hazelcast.storageCluster.tasksIdNamespace=task-ids
|
517
|
|
518
|
# Parameters for connecting to the DataONE process cluster as a Hazelcast client
|
519
|
dataone.hazelcast.processCluster.groupName=dev
|
520
|
dataone.hazelcast.processCluster.password=dataone
|
521
|
dataone.hazelcast.processCluster.instances=127.0.0.1
|
522
|
dataone.hazelcast.processCluster.nodesMap=hzNodes
|
523
|
|
524
|
# Configure the Member Node client certificate location
|
525
|
D1Client.certificate.file=/etc/dataone/client/certs/METACAT1.pem
|
526
|
|
527
|
|