-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #808 from AtlasOfLivingAustralia/dev
Merge 4.2 from dev into master
- Loading branch information
Showing
83 changed files
with
626 additions
and
10,657 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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
profileHubVersion=4.1 | ||
profileHubVersion=4.2-SNAPSHOT | ||
grailsVersion=5.2.4 | ||
grailsGradlePluginVersion=5.2.3 | ||
groovyVersion=3.0.11 | ||
alaSecurityLibsVersion=6.0.0 | ||
alaSecurityLibsVersion=6.2.0 | ||
org.gradle.daemon=true | ||
org.gradle.parallel=true | ||
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -Xmx2g |
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
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
49 changes: 0 additions & 49 deletions
49
grails-app/assets/javascripts/profileEditor/templates/exportPdf.tpl.htm
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<config xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' | ||
xmlns='http://www.ehcache.org/v3' | ||
xmlns:jsr107='http://www.ehcache.org/v3/jsr107'> | ||
|
||
<persistence directory="/data/profile-hub/ehcache"/> | ||
|
||
<cache alias="userDetailsCache"> | ||
<expiry> | ||
<ttl unit="days">1</ttl> | ||
</expiry> | ||
<resources> | ||
<heap unit="entries">2000</heap> | ||
</resources> | ||
</cache> | ||
|
||
<cache alias="userDetailsByIdCache"> | ||
<expiry> | ||
<ttl unit="days">1</ttl> | ||
</expiry> | ||
<resources> | ||
<heap unit="entries">2000</heap> | ||
</resources> | ||
</cache> | ||
|
||
<cache alias="userListCache"> | ||
<expiry> | ||
<ttl unit="days">1</ttl> | ||
</expiry> | ||
<resources> | ||
<heap unit="entries">2000</heap> | ||
</resources> | ||
</cache> | ||
|
||
<cache alias="vocabListCache"> | ||
<expiry> | ||
<ttl unit="days">1</ttl> | ||
</expiry> | ||
<resources> | ||
<heap unit="entries">20000</heap> | ||
</resources> | ||
</cache> | ||
|
||
</config> |
Oops, something went wrong.