2013-12-12 13:41:35 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# VIVO runtime properties
|
|
|
|
#
|
|
|
|
# This file is provided as example.runtime.properties.
|
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Save a copy of this file as runtime.properties in your VIVO home directory,
|
2013-12-12 13:41:35 -05:00
|
|
|
# and edit the properties as needed for your installation.
|
|
|
|
#
|
2018-12-05 14:54:09 -05:00
|
|
|
# For more information on specific properties, see the configuration reference
|
|
|
|
# or installation options section of the technical documentation for the
|
|
|
|
# version of VIVO you are running:
|
2019-05-03 10:51:00 -06:00
|
|
|
# https://wiki.duraspace.org/display/VIVO/VIVO+Technical+Documentation
|
2018-12-05 14:54:09 -05:00
|
|
|
#
|
2013-12-12 13:41:35 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# BASIC PROPERTIES
|
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2021-03-24 01:46:24 -05:00
|
|
|
#
|
|
|
|
# This namespace will be used when generating URIs for objects created in the
|
|
|
|
# editor. In order to serve linked data, the default namespace must be composed
|
|
|
|
# as follows (optional elements in parentheses):
|
|
|
|
#
|
|
|
|
# scheme + server_name (+ port) (+ servlet_context) + "/individual/"
|
|
|
|
#
|
|
|
|
# For example, Cornell's default namespace is:
|
|
|
|
#
|
|
|
|
# http://vivo.cornell.edu/individual/
|
|
|
|
#
|
|
|
|
Vitro.defaultNamespace = http://vivo.mydomain.edu/individual/
|
|
|
|
|
|
|
|
#
|
|
|
|
# The email address of the root user for the VIVO application. The password
|
|
|
|
# for this user is initially set to "rootPassword", but you will be asked to
|
|
|
|
# change the password the first time you log in.
|
|
|
|
#
|
|
|
|
rootUser.emailAddress = vivo_root@mydomain.edu
|
|
|
|
|
2018-05-23 19:45:57 +02:00
|
|
|
#
|
|
|
|
# Argon2 password hashing parameters for time, memory and parallelism required to
|
|
|
|
# compute a hash.
|
|
|
|
#
|
|
|
|
# A time cost defines the amount of computation realized and therefore the execution
|
|
|
|
# time, given in a number of iterations.
|
|
|
|
# A memory cost defines the memory usage, given in kibibytes
|
|
|
|
# A parallelism degree defines the number of parallel threads
|
|
|
|
# For determining the optimal values of the parameters for your setup please refer to
|
|
|
|
# the white paper section 9
|
|
|
|
# https://github.com/P-H-C/phc-winner-argon2/blob/master/argon2-specs.pdf
|
|
|
|
#
|
|
|
|
argon2.parallelism =1
|
|
|
|
argon2.memory = 1024
|
|
|
|
argon2.time = 1000
|
|
|
|
|
2020-02-24 18:41:36 -05:00
|
|
|
#
|
|
|
|
# NOTE: VitroConnection.DataSource.* properties are only used in conjuction with
|
|
|
|
# an SDB triple store.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# The basic parameters for a database connection. Change the end of the
|
|
|
|
# URL to reflect your database name (if it is not "vitrodb"). Change the username
|
2014-01-21 18:14:09 -05:00
|
|
|
# and password to match the authorized database user you created.
|
|
|
|
#
|
2020-02-24 18:41:36 -05:00
|
|
|
# VitroConnection.DataSource.url = jdbc:mysql://localhost/vitrodb
|
|
|
|
# VitroConnection.DataSource.username = vitrodbUsername
|
|
|
|
# VitroConnection.DataSource.password = vitrodbPassword
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Email parameters which VIVO can use to send mail. If these are left empty,
|
2014-01-21 18:14:09 -05:00
|
|
|
# the "Contact Us" form will be disabled and users will not be notified of
|
|
|
|
# changes to their accounts.
|
2021-02-12 09:42:58 -05:00
|
|
|
# email.smtpHost = smtp.mydomain.edu
|
|
|
|
# email.replyTo = vivoAdmin@mydomain.edu
|
2014-01-21 18:14:09 -05:00
|
|
|
|
2019-05-03 10:51:00 -06:00
|
|
|
#
|
2014-01-21 18:14:09 -05:00
|
|
|
# URL of Solr context used in local VIVO search. This will usually consist of:
|
2021-02-12 09:42:58 -05:00
|
|
|
# scheme + server_name + port + "solr" + solr_core_name
|
|
|
|
# In a standard Solr installation, the Solr service will be available on port
|
|
|
|
# 8983. The path will be /solr followed by the name used when adding a core
|
|
|
|
# for VIVO.
|
2014-01-21 18:14:09 -05:00
|
|
|
# Example:
|
2021-02-05 11:56:50 -05:00
|
|
|
# vitro.local.solr.url = http://localhost:8983/solr/vivocore
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2021-02-05 11:56:50 -05:00
|
|
|
vitro.local.solr.url = http://localhost:8983/solr/vivocore
|
2014-01-21 18:14:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# LINKING USER ACCOUNTS TO PROFILE PAGES
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# How is a logged-in user associated with a particular Individual? One way is
|
2014-01-21 18:14:09 -05:00
|
|
|
# for the Individual to have a property whose value is the username of the user.
|
|
|
|
# This value should be the URI for that property.
|
|
|
|
#
|
|
|
|
selfEditing.idMatchingProperty = http://vivo.mydomain.edu/ns#networkId
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# USING AN EXTERNAL AUTHENTICATION SYSTEM
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# If an external authentication system like Shibboleth or CUWebAuth is to be
|
2019-05-03 10:51:00 -06:00
|
|
|
# used, this property says which HTTP header will contain the user ID from
|
|
|
|
# the authentication system. If such a system is not to be used, leave this
|
|
|
|
# commented out. Consult the installation instructions for more details.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
#externalAuth.netIdHeaderName = remote_userID
|
2014-01-21 18:14:09 -05:00
|
|
|
|
2021-05-05 19:36:46 +03:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# OPTIMIZING LIST VIEW QUERIES
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include sections between <precise-subquery></precise-subquery>
|
|
|
|
# tags when executing 'list view' queries that retrieve data
|
|
|
|
# for property lists on profile pages.
|
|
|
|
#
|
|
|
|
# Including these optional sections does not change the query
|
|
|
|
# semantics, but may improve performance.
|
|
|
|
#
|
|
|
|
# Default is true if not set.
|
|
|
|
# (Prior to v1.12, default was true for SDB and false for TDB.)
|
|
|
|
#
|
|
|
|
# listview.usePreciseSubquery = true
|
2014-01-21 18:14:09 -05:00
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# TUNING THE DATABASE CONNECTION POOL
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#
|
|
|
|
# The maximum number of active connections in the database connection pool.
|
|
|
|
# Increase this value to support a greater number of concurrent page requests.
|
|
|
|
#
|
2020-02-24 18:41:36 -05:00
|
|
|
# VitroConnection.DataSource.pool.maxActive = 40
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# The maximum number of database connections that will be allowed
|
|
|
|
# to remain idle in the connection pool. Default is 25%
|
|
|
|
# of the maximum number of active connections.
|
|
|
|
#
|
2020-02-24 18:41:36 -05:00
|
|
|
# VitroConnection.DataSource.pool.maxIdle = 10
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
2015-02-23 13:34:19 -05:00
|
|
|
# USING A DIFFERENT DATABASE
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Parameters to change in order to use VIVO with a database other than
|
2014-01-21 18:14:09 -05:00
|
|
|
# MySQL.
|
|
|
|
#
|
2020-02-24 18:41:36 -05:00
|
|
|
# VitroConnection.DataSource.dbtype = MySQL
|
|
|
|
# VitroConnection.DataSource.driver = com.mysql.jdbc.Driver
|
|
|
|
# VitroConnection.DataSource.validationQuery = SELECT 1
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2019-05-03 10:51:00 -06:00
|
|
|
# Note: the above parameters allow you to change the relational database that
|
|
|
|
# is used as the back end for Jena SDB. If you want to use a triple store
|
|
|
|
# other than SDB, you will need to edit applicationSetup.n3. See the
|
2015-02-23 13:34:19 -05:00
|
|
|
# installation instructions for more details.
|
2013-12-12 13:41:35 -05:00
|
|
|
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# ADDING OPENSOCIAL GADGETS TO VIVO
|
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# For OpenSocial integration
|
|
|
|
# The base URL of the ORNG Shindig server. Usually, this is the same host and port
|
|
|
|
# number as VIVO itself, with a context path of "shindigorng".
|
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
#OpenSocial.shindigURL = http://localhost:8080/shindigorng
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# For OpenSocial integration
|
|
|
|
# The host name and port number of the service that provides security tokens for VIVO and
|
|
|
|
# Shindig to share. For now, the host name must be the actual host, not "localhost" or "127.0.0.1"
|
2019-05-03 10:51:00 -06:00
|
|
|
# The port number must be 8777
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
#OpenSocial.tokenService = myhost.mydomain.edu:8777
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# For OpenSocial integration
|
2019-05-03 10:51:00 -06:00
|
|
|
# The path to the key file that will be used when generating security tokens for VIVO and
|
2014-01-21 18:14:09 -05:00
|
|
|
# shindig to share.
|
|
|
|
#
|
|
|
|
#OpenSocial.tokenKeyFile = /usr/local/vivo/data/shindig/openssl/securitytokenkey.txt
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# For OpenSocial integration
|
|
|
|
# Only set sandbox to True for dev/test environments. Comment out or set to False in production
|
|
|
|
#
|
|
|
|
#OpenSocial.sandbox = True
|
2013-12-12 13:41:35 -05:00
|
|
|
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# ADDING LANGUAGES TO VIVO
|
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Show only the most appropriate data values based on the Accept-Language
|
2014-01-21 18:14:09 -05:00
|
|
|
# header supplied by the browser. Default is false if not set.
|
|
|
|
#
|
2013-12-12 13:41:35 -05:00
|
|
|
# RDFService.languageFilter = false
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Force VIVO to use a specific language or Locale instead of those
|
|
|
|
# specified by the browser. This affects RDF data retrieved from the model,
|
2014-01-21 18:14:09 -05:00
|
|
|
# if RDFService.languageFilter is true. This also affects the text of pages
|
2019-05-03 10:51:00 -06:00
|
|
|
# that have been modified to support multiple languages.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2013-12-12 13:41:35 -05:00
|
|
|
# languages.forceLocale = en_US
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# A list of supported languages or Locales that the user may choose to
|
Sprint i18n with main (#215)
* Layer uqam updates onto master (minus trailing whitespace)
* Update AddOrganizerRoleToPersonGenerator.java
Removed extraneous whitespace
* My whitespace (#153)
* Update AddPublicationToPersonGenerator.java
* Removed extraneous whitespace AND move RootUserPolicy.java from VIVO to Vitro
* Fixed whitespace in: AddAttendeeRoleToPersonGenerator.java
* Fixed indentations for AddOutreachProviderRoleToPersonGenerator.java
* Fixed indentations
* Removed extraneous whitespace (#158)
* Removed extraneous whitespace
* Fix bug introduced in cleaning up whitespace
* Tagging UQAM comments with the following tags
-Add-Feature
-Optimization
-Linguistic-Management
-Bug-Correction
* Update AddReviewerRoleToPersonGenerator.java
* Added an internationalization correction to be considered in the vivo-i18n-core that was forgotten when sprint-i18n was created.
* Fix typo in AddReviewerRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1774
* Fix typo in AddOutreachProviderRoleToPersonGenerator
Resolves: https://jira.lyrasis.org/browse/VIVO-1775
* Include language dependencies in build all of the time (#168)
Move "LocaleSelectionSetup" higher in the startup list so that the Vitro:RDFFilesLoader has the locale info available on its startup
Part of resolution to: https://jira.lyrasis.org/browse/VIVO-1836
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Made modifications to publicationToPersonUtils.js so that multilangua… (#170)
* Made modifications to publicationToPersonUtils.js so that multilanguage support will not break the javascript functionalty.
Co-authored-by: root <root@vivo-development.hs-mittweida.de>
Resolves: https://jira.lyrasis.org/browse/VIVO-1739
* Feature language en_CA (#169)
* Changing ontology extensions for n3 & assigning a base IRI to each
ontology
Co-authored-by: michelheonuqam <heon.michel@uqam.ca>
Co-authored-by: michelheon <heon@videotorn.ca>
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1862
* i18n: title tag and headings in capability map are in english in french version (#173)
* added multi-language support for ticket VIVO-1846
* fixed swapped properties, added Capability map title to i18n
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1847
* Added i18n support for Capability Map control buttons, JIRA ticket VIVO-1846
* removed redundat files which are now available via Vitro- and VIVO-languages
* added i18n support for the capability map, ticket vivo-1892
* Revert non-function RDF changes (#180)
Related to: https://jira.lyrasis.org/browse/VIVO-1905
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Ensure 'other' in Individual->Teaching->advisees->type is translated
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1881
* [VIVO-1842] i18n: Added function js_string at i18n variables to handle quotes properly (#181)
* added js_string at i18n strings to handle quotes properly, ticket vivo-1842
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1842
* replace static headings with i18n values (#183)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1844
* added empty check for getCountry, fixing bug with spanish label (es), ticket vivo-1900 (#182)
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1900
* Issue/vivo 1908 (#185)
* Provide fallback language in language-filtered webpage SPARQL query and use existing RDFService-based filtering for ConstantFieldOptions
Resolves: https://jira.lyrasis.org/browse/VIVO-1906
* Fix bug of missing toString() (#187)
Related to: https://jira.lyrasis.org/browse/VIVO-1906
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* Remove files replicated in i18n (#186)
Related to: https://jira.lyrasis.org/browse/VIVO-1917
* removed redundant vitroAnnotations, now in VIVO-languages, ticket vivo-1821
* Removed key.png from the template and replaced it with css sprite and… (#184)
* Removed key.png from the template and replaced it with css sprite and descriptions in plain text.
* * adding height to background images, hopefully fixing issues
Partial resolution for: https://jira.lyrasis.org/browse/VIVO-1902
* [VIVO-1915] i18n - removing language select for label management for individuals (#190)
* removed the language select for managing multi language labels fpr individuals, ticket vivo-1915
* modified ManageLabelsForPersonGenerator so that you can only add an langauge label if it is not already set, ticket vivo-1915
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1915
* - added i18n() to hardcoded values
* added i18n support to person's domain in capability map, ticket 1867
* [VIVO-1946] - Update ResearcherID description in vivo.owl (#188)
* Update ResearcherID description in vivo.owl
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1946
* [VIVO-1936] i18n: updated the language comment in runtime.properties (#203)
Partial resolution of: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
* [VIVO-1924] i18n: @en i18n properties are not loaded during first site startup. (#204)
* rearranged startup-listeners fixing bug with language files, ticket VIVO-1924
* Added a comment to prevent future bugs like this, ticket VIVO-1924
* fixed previous comment, ticket VIVO-1924
* Remove duplicate text from dropdown menus
* Minor checkstyle correction following: VIVO-1936 (#206)
Follow-on to: https://jira.lyrasis.org/browse/VIVO-1936
Co-authored-by: Andrew Woods <awoods@duraspace.org>
* follow-up on vivo-1936 - restore default values in example-settings.xml (#210)
Co-authored-by: gneissone <mbgross@wustl.edu>
* [VIVO-1798] - Internationalize first and last name validation (#207)
* Internationalize first and last name validation
Partial resolution to: https://jira.lyrasis.org/browse/VIVO-1798
* adding collections process terms (#165)
* adding collections process terms
No JIRA :(
* Non-functional change to comment in example.applicationSetup.n3
Related to: https://jira.lyrasis.org/browse/VIVO-1741
* Update orcidConfirm.ftl (#199)
Fix i18n property used on ORCID confirmation step 2 button.
Related to https://jira.lyrasis.org/browse/VIVO-1945
* Fix external AGROVOC service URL
* URL fix for LCSH service
* Remove unnecessary pom.xml 'profile'
- Also, uncomment language overlays
- Noting that this is not actually necessary, as any 'war' Maven dependencies are automatically overlayed:
- https://maven.apache.org/plugins/maven-war-plugin/overlays.html
Co-authored-by: Andrew Woods <awoods@duraspace.org>
Co-authored-by: Nicolas D <46490666+nicalico@users.noreply.github.com>
Co-authored-by: UQAM-VIVO <heon.michel@uqam.ca>
Co-authored-by: matthiasluehr <60263380+matthiasluehr@users.noreply.github.com>
Co-authored-by: Michel Heon <heon@videotron.ca>
Co-authored-by: dofeldsc <dofeldsc@uos.de>
Co-authored-by: William Welling <wwelling@library.tamu.edu>
Co-authored-by: Brian Lowe <brianjlowe@gmail.com>
Co-authored-by: Matthias Lühr <luehr@hs-mittweida.de>
Co-authored-by: Ben <mbgross@wustl.edu>
Co-authored-by: Benjamin Kampe <benjamin@fehrmanns.net>
Co-authored-by: Kampe <Benjamin.Kampe@tib.eu>
Co-authored-by: Gross, Benjamin <benjamin.gross@clarivate.com>
Co-authored-by: diatomsRcool <annethessen@gmail.com>
Co-authored-by: L.O <53535673+lb-ov@users.noreply.github.com>
2021-02-10 12:02:20 -05:00
|
|
|
# use instead of the one specified by the browser. The selected language(s)
|
|
|
|
# must exist in the VIVO-languages repository. This affects
|
2019-05-03 10:51:00 -06:00
|
|
|
# RDF data retrieved from the model, if RDFService.languageFilter is true.
|
|
|
|
# This also affects the text of pages that have been modified to support
|
|
|
|
# multiple languages.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# This should not be used with languages.forceLocale, which will override it.
|
|
|
|
#
|
2013-12-12 13:41:35 -05:00
|
|
|
# languages.selectableLocales = en_US, es_GO
|
|
|
|
|
|
|
|
|
2014-05-07 17:32:38 -04:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# ORCID INTEGRATION
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2021-02-12 09:42:58 -05:00
|
|
|
# The Client ID from your ORCID credentials
|
|
|
|
# When your application for credentials is accepted, you will receive a Client
|
|
|
|
# ID to be used in communications with the API. If you apply for sandbox
|
|
|
|
# credentials first, and then production credentials, you will likely receive
|
|
|
|
# two different Client IDs.
|
2014-05-07 17:32:38 -04:00
|
|
|
# orcid.clientId = 0000-0000-0000-000X
|
2021-02-12 09:42:58 -05:00
|
|
|
|
|
|
|
# The Client Secret from your ORCID credentials
|
|
|
|
# When your application for credentials is accepted, you will receive a Client
|
|
|
|
# Secret to be used in communications with the API. If you apply for sandbox
|
|
|
|
# credentials first, and then production credentials, you will likely receive
|
|
|
|
# two different Client Secrets.
|
2014-05-07 17:32:38 -04:00
|
|
|
# orcid.clientPassword = 00000000-0000-0000-0000-000000000000
|
2019-05-03 10:51:00 -06:00
|
|
|
|
2021-02-12 09:42:58 -05:00
|
|
|
# The base URL for your VIVO application, as seen from outside.
|
|
|
|
# VIVO will use this to construct a callback URL that the ORCID API can use to
|
|
|
|
# return control to VIVO. The actual callback URL will be the string you
|
|
|
|
# provide here with the suffix of /orcid/callback added at the end.
|
|
|
|
# The orcid.webappBaseUrl must end in a front slash (/)
|
|
|
|
# if it includes a path past the domain and (if required) port.
|
|
|
|
#
|
2018-02-07 19:32:56 -07:00
|
|
|
# orcid.webappBaseUrl = http://vivo.mydomain.edu/vivo/
|
2014-05-07 17:32:38 -04:00
|
|
|
# orcid.externalIdCommonName = VIVO Cornell Identifier
|
|
|
|
|
2021-02-12 09:42:58 -05:00
|
|
|
# The version of ORCIDs API protocol that VIVO will expect. Currently, the
|
|
|
|
# only supported version is 2.0.
|
2017-10-18 15:39:33 +01:00
|
|
|
# orcid.apiVersion = 2.0
|
2014-05-07 17:32:38 -04:00
|
|
|
|
2021-02-12 09:42:58 -05:00
|
|
|
# The entry point for ORCID's public API.
|
|
|
|
# This changes, depending on whether you are using the sandbox API or the
|
|
|
|
# production API. Value is either release or sandbox.
|
2017-07-27 17:33:43 +01:00
|
|
|
# orcid.api = sandbox
|
2014-05-07 17:32:38 -04:00
|
|
|
|
2021-02-12 09:42:58 -05:00
|
|
|
# Specify the type of API access that you have - public or member
|
|
|
|
# public - only allows you to confirm ORCID IDs
|
|
|
|
# member - allows VIVO to write a link to the VIVO profile in the ORCID record
|
|
|
|
# If you only have a public API key, ensure that you have entered public here
|
2019-08-09 14:29:00 +01:00
|
|
|
#orcid.apiLevel = public
|
|
|
|
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# OTHER OPTIONS
|
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-12 13:41:35 -05:00
|
|
|
|
2016-07-28 22:10:17 +01:00
|
|
|
# Google Maps Key
|
|
|
|
# ---------------
|
|
|
|
# To use the Google Maps (e.g. Map of Science), you need to have a key for Google Maps
|
|
|
|
# See https://developers.google.com/maps/documentation/javascript/get-api-key
|
|
|
|
#
|
|
|
|
# When you have a key, uncomment the line below and add it here
|
|
|
|
|
|
|
|
#google.maps.key=
|
|
|
|
|
2015-10-22 15:27:31 +01:00
|
|
|
# AltMetric badges
|
|
|
|
# ----------------
|
|
|
|
# Options to embed AltMetric badges on information resource (e.g. journal article) pages
|
|
|
|
# See the AltMetric documentation for more imformation about each option: http://api.altmetric.com/embeds.html
|
|
|
|
# The embed code will use a DOI, or PubMed ID, if present
|
|
|
|
|
|
|
|
# Enable AltMetric badges
|
2015-11-02 18:32:37 +00:00
|
|
|
# Uncomment and set this to disabled if you don't want AltMetric badges
|
|
|
|
#resource.altmetric=disabled
|
2015-10-22 15:27:31 +01:00
|
|
|
|
|
|
|
# Display the badge to the left or right of the title (default = right)
|
|
|
|
# Options: left, right
|
|
|
|
#resource.altmetric.displayto=right
|
|
|
|
|
|
|
|
# Badge type to display (default = donut)
|
|
|
|
# Options: See AltMetric documentation - recommended settings: donut, medium-donut
|
|
|
|
#resource.altmetric.badge-type=donut
|
|
|
|
|
|
|
|
# Hide the badge if there are no mentions (default = true)
|
|
|
|
# Options: true, false
|
|
|
|
#resource.altmetric.hide-no-mentions=true
|
|
|
|
|
|
|
|
# Display more details about the score when you hover over the badge (default = right)
|
|
|
|
# Options, right, left, up, down
|
|
|
|
#resource.altmetric.badge-popover=right
|
|
|
|
|
|
|
|
# Dsiplay extended details alongside the badge (default = none)
|
|
|
|
#resource.altmetric.badge-details=right
|
|
|
|
|
2017-04-30 08:15:07 -04:00
|
|
|
# Plum prints
|
|
|
|
# ----------------
|
|
|
|
# Options to embed Plum prints on information resource (e.g. journal article) pages
|
|
|
|
# The embed code will use a DOI, PubMed ID, ISBN, or OCLC number, if present
|
|
|
|
|
|
|
|
# Enable Plum prints
|
|
|
|
# Uncomment and set this to disabled if you don't want Plum prints
|
|
|
|
#resource.plum-print=disabled
|
|
|
|
|
|
|
|
# Display the badge to the left or right of the title (default = right)
|
|
|
|
# Options: left, right
|
|
|
|
#resource.plum-print.displayto=right
|
|
|
|
|
|
|
|
# Hide the print if there are no metrics (default = true)
|
|
|
|
# Options: true, false
|
|
|
|
#resource.plum-print.hide-when-empty=true
|
|
|
|
|
|
|
|
# Display more details about the score when you hover over the print (default = right)
|
|
|
|
# Options: right, left, top, bottom, hidden
|
|
|
|
#resource.plum-print.popover=right
|
|
|
|
|
|
|
|
# Size of the print (default = medium)
|
|
|
|
# Options: tiny, small, medium, large
|
|
|
|
#resource.plum-print.size=medium
|
|
|
|
|
2019-05-03 10:51:00 -06:00
|
|
|
#
|
|
|
|
# When the following flag is set to enabled, the VIVO home page displays a
|
|
|
|
# global map highlighting the geographical focus of foaf:person individuals.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
#homePage.geoFocusMaps=enabled
|
2013-12-12 13:41:35 -05:00
|
|
|
|
|
|
|
|
2019-05-03 10:51:00 -06:00
|
|
|
#
|
|
|
|
# VIVO supports the simultaneous use of a full foaf:Person profile page view
|
|
|
|
# and a "quick" page view that emphasizes the individual's webpage presence.
|
2014-01-21 18:14:09 -05:00
|
|
|
# Implementing this feature requires an installation to develop a web service
|
2019-05-03 10:51:00 -06:00
|
|
|
# that captures images of web pages or to use an existing service outside of VIVO.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2013-12-12 13:41:35 -05:00
|
|
|
#multiViews.profilePageTypes=enabled
|
|
|
|
|
|
|
|
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
2019-05-03 10:51:00 -06:00
|
|
|
# Tell VIVO to generate HTTP headers on its responses to facilitate caching the
|
|
|
|
# profile pages that it creates.
|
2014-01-21 18:14:09 -05:00
|
|
|
#
|
|
|
|
# Developers will likely want to leave caching disabled, since a change to a
|
2019-05-03 10:51:00 -06:00
|
|
|
# Freemarker template or to a Java class would not cause the page to be
|
2014-01-21 18:14:09 -05:00
|
|
|
# considered stale.
|
|
|
|
#
|
2017-07-14 19:24:46 +01:00
|
|
|
http.createCacheHeaders = true
|
2014-01-21 18:14:09 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# Absolute path on the server of the Harvester root directory.
|
|
|
|
# You must include the final slash.
|
|
|
|
#
|
|
|
|
# Setting a value for harvester.location indicates that the Harvester is installed at
|
|
|
|
# this path. This will enable the Harvester functions in the Ingest Tools page.
|
|
|
|
#
|
|
|
|
# harvester.location = /usr/local/vivo/harvester/
|
|
|
|
|
|
|
|
#
|
|
|
|
# The temporal graph visualization is used to compare different organizations/people
|
|
|
|
# within an organization on parameters like number of publications or grants.
|
|
|
|
# By default, the app will attempt to make its best guess at the top level
|
|
|
|
# organization in your instance. If you're unhappy with this selection, uncomment out
|
|
|
|
# the property below and set it to the URI of the organization individual you want to
|
|
|
|
# identify as the top level organization. It will be used as the default whenever the
|
|
|
|
# temporal graph visualization is rendered without being passed an explicit org.
|
|
|
|
# For example, to use "Ponce School of Medicine" as the top organization:
|
|
|
|
# visualization.topLevelOrg = http://vivo.psm.edu/individual/n2862
|
|
|
|
#
|
|
|
|
# visualization.topLevelOrg = http://vivo.mydomain.edu/individual/topLevelOrgURI
|
|
|
|
|
2019-05-03 10:51:00 -06:00
|
|
|
#
|
2014-01-21 18:14:09 -05:00
|
|
|
# The temporal graph visualization can require extensive machine resources.
|
|
|
|
# This can have a particularly noticeable impact on memory usage if
|
|
|
|
# - The organization tree is deep,
|
|
|
|
# - The number of grants and publications is large.
|
2019-05-03 10:51:00 -06:00
|
|
|
# VIVO 1.3 release mitigates this problem by the way of a caching mechanism &
|
2014-01-21 18:14:09 -05:00
|
|
|
# hence we can safely set this to be enabled by default.
|
|
|
|
#
|
2017-09-18 11:50:07 +01:00
|
|
|
visualization.temporal = enabled
|
2014-01-21 18:14:09 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# Types of individual for which we can create proxy editors.
|
|
|
|
# If this is omitted, defaults to http://www.w3.org/2002/07/owl#Thing
|
|
|
|
#
|
|
|
|
proxy.eligibleTypeList = http://xmlns.com/foaf/0.1/Person, http://xmlns.com/foaf/0.1/Organization
|
|
|
|
|
|
|
|
#
|
|
|
|
# Default type(s) for Google Refine Reconciliation Service
|
|
|
|
# The format for this property is id, name; id1, name1; id2, name2 etc.
|
|
|
|
# For more information, see Service Metadata from this page:
|
2016-03-21 10:26:56 -06:00
|
|
|
# https://github.com/OpenRefine/OpenRefine/wiki/Reconciliation-Service-Api
|
2019-05-03 10:51:00 -06:00
|
|
|
#
|
2014-01-21 18:14:09 -05:00
|
|
|
Vitro.reconcile.defaultTypeList = http://vivoweb.org/ontology/core#Role, core:Role; \
|
|
|
|
http://vivoweb.org/ontology/core#AcademicDegree, core:Academic Degree; \
|
|
|
|
http://purl.org/NET/c4dm/event.owl#Event, event:Event; \
|
|
|
|
http://vivoweb.org/ontology/core#Location, core:Location; \
|
|
|
|
http://xmlns.com/foaf/0.1/Organization, foaf:Organization; \
|
|
|
|
http://xmlns.com/foaf/0.1/Person, foaf:Person; \
|
2017-09-18 11:50:07 +01:00
|
|
|
http://purl.obolibrary.org/obo/IAO_0000030, obo:IAO_0000030
|
2019-08-02 12:20:31 -05:00
|
|
|
|
2019-08-08 15:15:17 +01:00
|
|
|
# Configure the support for claiming by DOI or PMID
|
|
|
|
# This is a list of all the providers that are active for claiming articles from
|
|
|
|
# Options: doi, pmid
|
|
|
|
# which search Crossref and PubMed, respectively
|
|
|
|
# If you do not wish to use the claiming interface, set this property to nothing (empty)
|
|
|
|
createAndLink.providers = doi, pmid
|
2019-08-02 12:20:31 -05:00
|
|
|
|
2021-04-27 19:43:59 +03:00
|
|
|
# Triple Pattern Fragments is a very fast, very simple means for querying a
|
|
|
|
# triple store. The Triple Pattern Fragments API in VIVO puts little load on
|
|
|
|
# the server, providing a simple means for getting data from the triple store.
|
|
|
|
# The API has a web interface for manual use, can be used from the command
|
|
|
|
# line via curl, and can be used by programs.
|
|
|
|
#
|
|
|
|
# VIVO's Triple Pattern Fragments API does not require authentication and
|
|
|
|
# makes the full RDF graph available regardless of display or publish levels
|
|
|
|
# set on particular properties. Enable Triple Pattern Fragments only if your
|
|
|
|
# VIVO does not contain restricted data that should not be shared with others.
|
2019-08-08 15:15:17 +01:00
|
|
|
#
|
2020-02-24 18:41:36 -05:00
|
|
|
# tpf.activeFlag = true
|