NIHVIVO-15 Adjust to the changes in the Vitro configuration properties files.

This commit is contained in:
jeb228 2010-02-03 15:10:24 +00:00
parent 11cd39c661
commit fcba81c3a4
6 changed files with 51 additions and 139 deletions

View file

@ -94,7 +94,7 @@ deploy -- Rssembles the VIVO application and deploys it to the "webapps"
<dependset> <dependset>
<srcfilelist dir="." files="${deploy.properties.file}" /> <srcfilelist dir="." files="${deploy.properties.file}" />
<targetfilelist dir="." <targetfilelist dir="."
files="${globalbuild.properties.file},${connection.properties.file},${upload.properties.file},${lucene.properties.file}, ${vitroUsers.owl.file}" /> files="${globalbuild.properties.file},${vitrodeploy.properties.file},${vitroUsers.owl.file}" />
</dependset> </dependset>
<copy file="${globalbuild.template.file}" <copy file="${globalbuild.template.file}"
@ -105,26 +105,14 @@ deploy -- Rssembles the VIVO application and deploys it to the "webapps"
</filterchain> </filterchain>
</copy> </copy>
<copy file="${connection.template.file}" <copy file="${vitrodeploy.template.file}"
tofile="${connection.properties.file}" tofile="${vitrodeploy.properties.file}"
filtering="true"> filtering="true">
<filterchain> <filterchain>
<expandproperties /> <expandproperties />
</filterchain> </filterchain>
</copy> </copy>
<copy file="${upload.template.file}" tofile="${upload.properties.file}" filtering="true">
<filterchain>
<expandproperties />
</filterchain>
</copy>
<copy file="${lucene.template.file}" tofile="${lucene.properties.file}" filtering="true">
<filterchain>
<expandproperties />
</filterchain>
</copy>
<copy file="${vitroUsers.template.file}" tofile="${vitroUsers.owl.file}" filtering="true"> <copy file="${vitroUsers.template.file}" tofile="${vitroUsers.owl.file}" filtering="true">
<filterchain> <filterchain>
<expandproperties /> <expandproperties />

View file

@ -1,11 +0,0 @@
#this is an example of what needs to be in this
#file to setup the lucene index directory
#
# The default location is /usr/local/lucene/vitrodefault
#You could hard code the location like this:
#LuceneSetup.indexDir=/usr/local/lucene/example
#this line will be setup by ant to work for clones
#if you hardcode the dir, this line should be commented out
LuceneSetup.indexDir=${deploy.LuceneSetup.indexDir}

View file

@ -6,18 +6,14 @@ deploy.staging.dir = .deployStaging
# #
# Setting up the config properties. # Setting up the config properties.
# #
deploy.properties.file = deploy.properties deploy.properties.file = deploy.properties
globalbuild.template.file = config/globalbuild.properties.template globalbuild.template.file = config/globalbuild.properties.template
connection.template.file = config/connection.properties.template vitrodeploy.template.file = config/vitrodeploy.properties.template
upload.template.file = config/upload.properties.template
lucene.template.file = config/LuceneSetup.properties.template
vitroUsers.template.file = config/vitroUsers.owl.template vitroUsers.template.file = config/vitroUsers.owl.template
globalbuild.properties.file = ${deploy.staging.dir}/config/globalbuild.properties globalbuild.properties.file = ${deploy.staging.dir}/config/globalbuild.properties
connection.properties.file = ${deploy.staging.dir}/webapp/config/connection.properties vitrodeploy.properties.file = ${deploy.staging.dir}/webapp/config/deploy.properties
upload.properties.file = ${deploy.staging.dir}/webapp/config/upload.properties
lucene.properties.file = ${deploy.staging.dir}/webapp/config/LuceneSetup.properties
vitroUsers.owl.file = ${deploy.staging.dir}/webapp/ontologies/auth/vitroUsers.owl vitroUsers.owl.file = ${deploy.staging.dir}/webapp/ontologies/auth/vitroUsers.owl
# #

View file

@ -1,80 +0,0 @@
################################################################################
# DataSource properties file
################################################################################
######################### DataSource Properties ################################
VitroConnection.DataSource.url=${deploy.VitroConnection.DataSource.url}
VitroConnection.DataSource.username=${deploy.VitroConnection.DataSource.username}
VitroConnection.DataSource.password=${deploy.VitroConnection.DataSource.password}
####################### Other Important Properties #############################
# CHANGE the following property unless you're using Cornell's VIVO ontology
Vitro.defaultNamespace=${deploy.Vitro.defaultNamespace}
# Uncomment this next line and specify an SMTP host to activate the Contact Us form
#Vitro.smtpHost=
################################################################################
# maximum number of connections to the db server
# This must not be greater than the mysql max_connection parameter.
# defaults to 40
#VitroConnection.DataSource.MaxActive=40
# maximum number of connections to the db server to keep
# around when nothing is happening.
# defaults to 10
#VitroConnection.DataSource.MaxIdle=10
# Time to wait in msec for a result from the sql server
# defaults to 10000
#VitroConnection.DataSource.MaxWait=10000
# query to use to test to see if a connection to the db server is live.
# defaults to SELECT 1
#VitroConnection.DataSource.ValidationQuery=SELECT 1
# should the connection pool test the connections it gets from the pool?
#defaults to true
#VitroConnection.DataSource.TestOnBorrow=true
# should the connection pool test connections it puts back in pool?
#defaults to true
#VitroConnection.DataSource.TestOnReturn=true
# Nnumber of milliseconds to sleep between runs of the idle object
# evictor thread. When non-positive, no idle object evictor thread will
# be run. defaults to 30min
#VitroConnection.DataSource.TimeBetweenEvictions=
# The number of objects to examine during each
# run of the idle object evictor thread (if any).
# defaults to 3
#VitroConnection.DataSource.TestsPerEviction=3
# The minimum amount of time
# an object may sit idle in the pool before it is eligable for eviction
# by the idle object evictor (if any).
# defaults to 30min
#VitroConnection.DataSource.MinEvictionIdleTime=
################################################ # other notes:
# The file checked into source control is example.connection.properties so
# that if you have a connection.properties on your machine it will not be
# under source control. This is useful so that your customizations for your
# database setup are less likely to be checked into source control and then
# overwrite other folks' customizations.

View file

@ -1,26 +0,0 @@
# The UploadImagesServlet will upload the images to a directory
# that is under tomcat and serve them from there.
# This causes a problem when the tomcat/webapps dir is deleted
# or deployed because you will lose all the images that the
# curators have uploaded. We deal with this by copying
# the files to another directory, one that is under version control.
# This property indicates which non-tomcat directory to save the images in.
# ${uploadDir} is defined in the main build.xml via the following statements:
#
# <!-- defined in globalbuild.properties -->
# <property name="source.dir" value="{source.home}"/>
# <property name="uploadDir" value="{source.dir}/webapp/web" />
#
# But, this value will be replaced by the Vitro/clones/build.xml
# to point to the clones/{clone}/modifications directory based on the following
# <property file="./config/globalbuild.properties"/>
# <property name="source.dir" value="{source.home}"/>
# <property name="uploadDir" value="${source.dir}/clones/${clone}/modifications"/>
#
# The UploadImagesServlet.getSourceDirName() method then looks at this parameter
# in the upload.properties file, which file is stuck by the clones/build.xml file
# into the clone's modifications/WEB-INF/classes directory:
UploadImagesServlet.sourceDirName=${deploy.upload.directory}

View file

@ -0,0 +1,45 @@
# -----------------------------------------------------------------------------
#
# Vitro deployment properties
#
# This file exists as a template in the vivoweb distribution. The property
# values are substituted in by the build script.
#
# -----------------------------------------------------------------------------
#
# The location where the VIVO application will store uploaded files
# (usually images). You should arrange for these files to be backed up in some
# way.
#
UploadImagesServlet.sourceDirName = ${deploy.upload.directory}
#
# The location where the VIVO application will create its Lucene search
# index.
#
LuceneSetup.indexDir = ${deploy.LuceneSetup.indexDir}
#
# This namespace will be used when generating URIs for objects created in the
# editor. Change it to reflect your own domain. For example, Cornell's
# namespace is http://vivo.cornell.edu/individual/
#
# Note: it is essential that this namespace end with a trailing slash.
#
Vitro.defaultNamespace = ${deploy.Vitro.defaultNamespace}
#
# SMTP host which the "Contact Us" form can use to send mail. If this is left
# empty, the "Contact Us" form will be disabled.
#
Vitro.smtpHost =
#
# The basic parameters for a MySQL database connection. Change the end of the
# URL to reflect your database name (if it is not "vitro"). Change the username
# and password to match the authorized user you created in MySQL.
#
VitroConnection.DataSource.url = ${deploy.VitroConnection.DataSource.url}
VitroConnection.DataSource.username = ${deploy.VitroConnection.DataSource.username}
VitroConnection.DataSource.password = ${deploy.VitroConnection.DataSource.password}