-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added extra variables in templates that still are using ALA default v…
…alues (#547) * Allow configuration of extra collectory variables * Allow configuration of extra biocache-hub variables * Allow configuration of extra regions variables * Allow configuration of extra bie-index variables * Allow configuration of extra lists variables * Allow configuration of extra DOI variables * Allow configuration of extra images variables * Allow configuration of extra alerts variables * Allow configuration of extra dashboard variables * Allow configuration of extra spatial variables * Allow configuration of extra logger variables * Allow configuration of extra sds variables * Allow configuration of extra userdetails variables * Added additional alerts variables * Fix typo in var * Missing configuration in logger * Added branding cors variable to setup cors in l-a branding only (#548) * Fix for broken cas contextPath on test For userdetails app * Revert 1865af * Add event fields to biocache facet list * SDS extra configuration (#550) * Extra SDS configuration variables * Restore tag * Added missing supportEmail. Fix for 551 (#552) * new ala-sensitive-data-service vars, more tags, and layers vars (#545) * Correct logger auth filter (#544) * Allow configuration of extra collectory variables * Allow configuration of extra biocache-hub variables * Allow configuration of extra regions variables * Allow configuration of extra bie-index variables * Allow configuration of extra lists variables * Allow configuration of extra DOI variables * Allow configuration of extra images variables * Allow configuration of extra alerts variables * Allow configuration of extra dashboard variables * Allow configuration of extra spatial variables * Allow configuration of extra logger variables * Allow configuration of extra sds variables * Allow configuration of extra userdetails variables * Added additional alerts variables * Fix typo in var * Missing configuration in logger Co-authored-by: Nick dos Remedios <[email protected]> Co-authored-by: Simon Bear <[email protected]> Co-authored-by: Adam Collins <[email protected]>
- Loading branch information
1 parent
ec5c71c
commit 2cb2d01
Showing
13 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,10 @@ dataSource.properties.validationQuery=SELECT 1 | |
|
||
# my annotation alert | ||
myannotation.enabled={{ enable_myannotation | default('false') }} | ||
useSpeciesLists: {{ enable_specieslists_alerts | default('true') }} | ||
useSpatial: {{ enable_spatial_alerts | default('true') }} | ||
useBlogsAlerts: {{ enable_blogs_alerts | default('true') }} | ||
useCitizenScienceAlerts: {{ enable_citizen_science_alerts | default('true') }} | ||
|
||
#External services | ||
biocache.baseURL={{ biocache_url | default('https://biocache.ala.org.au') }} | ||
|
@@ -66,6 +70,7 @@ skin.orgNameShort={{ orgNameShort | default('Atlas') }} | |
skin.orgSupportEmail={{ orgSupportEmail | default('[email protected]') }} | ||
siteDefaultLanguage={{ alerts_site_default_language | default('en') }} | ||
#skin.favicon={{ skin_favicon | default('https://www.ala.org.au/wp-content/themes/ala-wordpress-theme/img/favicon/favicon.ico') }} | ||
privacyPolicy={{ privacy_policy_url | default('https://www.ala.org.au/about/terms-of-use/privacy-policy/') }} | ||
|
||
# Example search labels and URLs | ||
occurrence.searchTitle={{ occurrence_searchTitle }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,7 @@ eml.city={{ eml_city | default('Canberra') }} | |
eml.administrativeArea={{ eml_admin_area | default('ACT') }} | ||
eml.postalCode={{ eml_postal_code | default('2601') }} | ||
eml.country={{ eml_country | default('Australia') }} | ||
eml.electronicMailAddress = {{ eml_email_address | default('[email protected]') }} | ||
|
||
# The name displayed top left of header | ||
skin.homeUrl = {{ skin_home_url | default('http://www.ala.org.au') }} | ||
|
@@ -112,6 +113,8 @@ alertsUrl={{ (alerts_url | default(alert_url)) | default('') }} | |
alertUrl={{ (alerts_url | default(alert_url)) | default('') }} | ||
speciesListToolUrl={{ species_list_tool_url | default('https://lists.ala.org.au/speciesListItem/list/') }} | ||
userDetails.url = {{ auth_base_url }}/userdetails/ | ||
skin.taxaLinks.baseUrl = {{ skin_taxa_links_base_url | default('https://bie.ala.org.au/species/') }} | ||
spatial.baseURL = {{ spatial_base_url | default('https://spatial.ala.org.au/') }} | ||
|
||
# GBIF base URL for webservices | ||
gbifApiUrl={{ gbif_api_url | default('https://api.gbif-uat.org/v1/') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,3 +107,15 @@ collections: | |
|
||
userDetails: | ||
url: {{ auth_base_url }}/userdetails/ | ||
|
||
# swagger configuration | ||
swagger: | ||
info: | ||
description: "{{ doi_swagger_info_description | default('Generate DOIs for ALA applications') }}" | ||
version: "{{ doi_swagger_info_version | default('1.0') }}" | ||
title: "{{ doi_swagger_info_title | default('ALA DOI service') }}" | ||
termsOfServices: "{{ swagger_info_terms_of_services | default('https://www.ala.org.au/who-we-are/terms-of-use/') }}" | ||
contact: | ||
name: "{{ swagger_contact_name | default('ALA Support') }}" | ||
url: "{{ swagger_contact_url | default('https://www.ala.org.au') }}" | ||
email: "{{ swagger_contact_email | default('[email protected]') }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ security.cas.authCookieName={{ auth_cookie_name | default('ALA-Auth') }} | |
security.cas.uriFilterPattern={{ logger_uri_filter_pattern }} | ||
security.cas.uriExclusionFilterPattern=/images.*,/css.*,/js.*,/less.* | ||
security.cas.bypass={{ bypass_cas | default(false) }} | ||
userDetails.url = {{ auth_base_url }}/userdetails/ | ||
|
||
# Legacy CAS properties | ||
casProperties=casServerLoginUrl,serverName,centralServer,casServerName,uriFilterPattern,uriExclusionFilter,authenticateOnlyIfLoggedInFilterPattern,casServerLoginUrlPrefix,gateway,casServerUrlPrefix,contextPath | ||
|
@@ -47,6 +48,10 @@ headerAndFooter.version={{ header_and_footer_version | default('') }} | |
ala.baseURL={{ ala_base_url | default('https://www.ala.org.au')}} | ||
bie.baseURL={{ bie_base_url | default('https://bie.ala.org.au')}} | ||
bie.searchPath={{ bie_search_path | default('/search') }} | ||
collectoryUrl={{ collectory_url | default('https://collections.ala.org.au') }} | ||
|
||
skin.layout={{ (logger_skin_layout | default(skin_layout)) | default('main') }} | ||
skin.orgNameLong={{ skin_orgNameLong | default('Atlas of Living Australia') }} | ||
skin.orgNameShort = {{ orgNameShort | default('ALA') }} | ||
skin.orgSupportEmail={{ orgSupportEmail | default('[email protected]') }} | ||
privacyPolicy={{ privacy_policy_url | default('https://www.ala.org.au/about/terms-of-use/privacy-policy/') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters