[spring-extensions] branch master updated (963b1bd -> 5f659c0)
Rod Widdowson
rdw at steadingsoftware.com
Mon Mar 20 10:04:45 EDT 2017
This is an automated email from the git hooks/post-receive script.
rdw pushed a change to branch master
in repository spring-extensions.
from 963b1bd IDP-1128 - Ability to inject reloadable beans
new 6e7d708 Add details of replacement to deprecation
new 5f659c0 JSE-222 revive SVN tests
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../shibboleth/ext/spring/util/SpringSupport.java | 3 +-
.../ext/spring/resource/SVNResourceTest.java | 48 ++++++++----
.../shibboleth/ext/spring/resource/.gitattributes | 1 +
.../shibboleth/ext/spring/resource/SVN/README.txt | 5 ++
.../shibboleth/ext/spring/resource/SVN/conf/authz | 32 ++++++++
.../shibboleth/ext/spring/resource/SVN/conf/passwd | 8 ++
.../ext/spring/resource/SVN/conf/svnserve.conf | 61 ++++++++++++++++
.../shibboleth/ext/spring/resource/SVN/db/current | 1 +
.../shibboleth/ext/spring/resource/SVN/db/format | 2 +
.../shibboleth/ext/spring/resource/SVN/db/fs-type | 1 +
.../ext/spring/resource/SVN/db/fsfs.conf | 38 ++++++++++
.../ext/spring/resource/SVN/db/min-unpacked-rev | 1 +
.../ext/spring/resource/SVN/db/rep-cache.db | Bin 0 -> 4096 bytes
.../ext/spring/resource/SVN/db/revprops/0/0 | 5 ++
.../ext/spring/resource/SVN/db/revprops/0/1 | 13 ++++
.../ext/spring/resource/SVN/db/revprops/0/2 | 13 ++++
.../shibboleth/ext/spring/resource/SVN/db/revs/0/0 | 11 +++
.../shibboleth/ext/spring/resource/SVN/db/revs/0/1 | Bin 0 -> 504 bytes
.../shibboleth/ext/spring/resource/SVN/db/revs/0/2 | Bin 0 -> 1850 bytes
.../ext/spring/resource/SVN/db/txn-current | 1 +
.../ext/spring/resource/SVN/db/txn-current-lock} | 0
.../net/shibboleth/ext/spring/resource/SVN/db/uuid | 1 +
.../ext/spring/resource/SVN/db/write-lock} | 0
.../net/shibboleth/ext/spring/resource/SVN/format | 1 +
.../ext/spring/resource/SVN/hooks/post-commit.tmpl | 50 +++++++++++++
.../ext/spring/resource/SVN/hooks/post-lock.tmpl | 44 +++++++++++
.../resource/SVN/hooks/post-revprop-change.tmpl | 56 ++++++++++++++
.../ext/spring/resource/SVN/hooks/post-unlock.tmpl | 42 +++++++++++
.../ext/spring/resource/SVN/hooks/pre-commit.tmpl | 81 +++++++++++++++++++++
.../ext/spring/resource/SVN/hooks/pre-lock.tmpl | 73 +++++++++++++++++++
.../resource/SVN/hooks/pre-revprop-change.tmpl | 66 +++++++++++++++++
.../ext/spring/resource/SVN/hooks/pre-unlock.tmpl | 65 +++++++++++++++++
.../spring/resource/SVN/hooks/start-commit.tmpl | 65 +++++++++++++++++
.../ext/spring/resource/SVN/locks/db-logs.lock | 3 +
.../ext/spring/resource/SVN/locks/db.lock | 3 +
.../net/shibboleth/ext/spring/resource/SVNBean.xml | 7 +-
36 files changed, 781 insertions(+), 20 deletions(-)
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/.gitattributes
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/README.txt
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/conf/authz
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/conf/passwd
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/conf/svnserve.conf
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/current
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/format
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/fs-type
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/fsfs.conf
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/min-unpacked-rev
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/rep-cache.db
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revprops/0/0
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revprops/0/1
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revprops/0/2
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revs/0/0
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revs/0/1
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/revs/0/2
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/txn-current
copy src/{main/resources/.gitkeep => test/resources/net/shibboleth/ext/spring/resource/SVN/db/txn-current-lock} (100%)
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/db/uuid
copy src/{main/resources/.gitkeep => test/resources/net/shibboleth/ext/spring/resource/SVN/db/write-lock} (100%)
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/format
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/post-commit.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/post-lock.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/post-revprop-change.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/post-unlock.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/pre-commit.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/pre-lock.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/pre-revprop-change.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/pre-unlock.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/hooks/start-commit.tmpl
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/locks/db-logs.lock
create mode 100644 src/test/resources/net/shibboleth/ext/spring/resource/SVN/locks/db.lock
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list