-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tuakiri-develop: (48 commits) Grails2.5: upgrade complete, bump version to 2.9.5 Grails2.5: upgrade highcharts for jQuery 1.11.1 compatibility Grails2.5: update web.xml once more also for plugins/administrative IDPService: avoid GORM executeUpdate in delete() Grails2.5: remove remaining scripts related to aaf-patched-groovy Grails2.5: WORKAROUND: def grailsApplication for email templates Branding: replace (new) Support link with REANNZ mailto Branding: remove all remaining references to Zenbox Grails2.5: fix error handling for adminstration plugin Grails2.5: render 403 and 404 via ErrorController Doc: remove instructions for building aaf-patched-groovy Submodules: remove aaf-patched-groovy - no longer needed Grails/Base: drop invalid nullable constraint on boolean Contact.active Grails2.5: update web.xml once more Grails2.5/Test/Metadata: avoid doubled-up SSOServices Grails: make build-test-data plugin a test dep only Grails2.5: explicitly enable console plugin Grails2.5: update core grails plugins Grails: upgrade to 2.5.6 - BREAKING CHANGE Grails2.4: update web.xml (as per upgrade instructions) Grails2.4: use maven as dependency resolver Grails2.4/Base/Test: fix tests: set endpoint index where needed Grails2.4: update twitter-bootstrap Grails2.4: use HTTPS repos - because we now have Java8 Grails2.4/Hibernate: drop connection.provider_class Grails2.4: remove grailsResourceLoader from applicationContext.xml Grails2.4/Test/Base: pass correct HTTP method to controller Grails2.4/DataSource: update EhCacheRegionFactory class name Grails2.4: force shiro upgrade from 1.1.3 (pulled by fed-grails) to 1.2.1 Grails2.4: update plugins to 2.4.x-compatible Grails2.4: update core plugins (Tomcat,mail,Hibernate) Grails: upgrade to 2.4.5 - BREAKING CHANGE Grails2.3: update cache plugin from 1.0.0 to 1.1.7 - deprecation warnings Grails2.3/BuildConfig: update jquery + db-mig plugins Grails2.3/Test: switch to new spock interface Grails/2.3: remove spock plugin - now included in Grails Grails/2.3: update build-test-data plugin to 2.2.3 Grails2.3/Config: add new settings (commented out) Grails2.3: merge spring updates Grails/2.3: fix tomcat+hibernate plugin versions: use versions bundled with Grails 2.3.11 Grails: upgrade to 2.3.11 - BREAKING CHANGE Grails2.3: remove dep on groovy-all:2.0.8+aaf.groovy7664 Grails: upgrade to 2.2.5 - so far so good. Plugis/export: add missing spring/resources.groovy Grails: use https repo URLs where possible Grails: update Grails repo URL Grails: update MySQL connector (dependency+lib) Submodules/aaf-patched-groovy: switch to REANNZ repo
- Loading branch information
Showing
83 changed files
with
963 additions
and
627 deletions.
There are no files selected for viewing
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
Submodule aaf-patched-groovy
deleted from
e85d0d
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,5 +1,6 @@ | ||
#Grails Metadata file | ||
#Thu Sep 12 09:22:30 EST 2013 | ||
app.grails.version=2.2.4 | ||
#Wed May 13 16:19:06 NZST 2020 | ||
app.grails.version=2.5.6 | ||
app.name=federationregistry | ||
app.version=2.9.0-tuakiri5 | ||
app.servlet.version=3.0 | ||
app.version=2.9.5-tuakiri1 |
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
13 changes: 13 additions & 0 deletions
13
app/federationregistry/grails-app/controllers/aaf/fr/app/ErrorController.groovy
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,13 @@ | ||
package aaf.fr.app | ||
|
||
class ErrorController { | ||
|
||
def notFound() { | ||
render view: "/404" | ||
} | ||
|
||
def notPermitted() { | ||
render view: "/403" | ||
} | ||
|
||
} |
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.