[java-opensaml] branch main updated: JMETAGEN-5: Metadata generation
Brent Putman
putmanb at georgetown.edu
Sat Aug 26 01:52:53 UTC 2023
This is an automated email from the git hooks/post-receive script.
putmanb pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=1c97697d21eef177ec3c901c13d239c3ad79ca8c
The following commit(s) were added to refs/heads/main by this push:
new 1c97697d2 JMETAGEN-5: Metadata generation
1c97697d2 is described below
commit 1c97697d21eef177ec3c901c13d239c3ad79ca8c
Author: Brent Putman <putmanb at georgetown.edu>
AuthorDate: Fri Aug 25 21:52:37 2023 -0400
JMETAGEN-5: Metadata generation
Fix template typo bugs of consecutive double-quotes.
---
.../src/main/resources/templates/metadata/IDPSSODescriptor.vm | 4 ++--
.../src/main/resources/templates/metadata/SPSSODescriptor.vm | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opensaml-saml-impl/src/main/resources/templates/metadata/IDPSSODescriptor.vm b/opensaml-saml-impl/src/main/resources/templates/metadata/IDPSSODescriptor.vm
index 1e4f96e32..b8367bf7a 100644
--- a/opensaml-saml-impl/src/main/resources/templates/metadata/IDPSSODescriptor.vm
+++ b/opensaml-saml-impl/src/main/resources/templates/metadata/IDPSSODescriptor.vm
@@ -6,9 +6,9 @@
<md:ArtifactResolutionService index="$endpoint.index" Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
#foreach ($endpoint in $role.singleLogoutServices)
- <md:SingleLogoutService Binding="$endpoint.binding" Location=""$xmlattr.escape($endpoint.location)" />
+ <md:SingleLogoutService Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
#foreach ($endpoint in $role.singleSignOnServices)
- <md:SingleSignOnService Binding="$endpoint.binding" Location=""$xmlattr.escape($endpoint.location)" />
+ <md:SingleSignOnService Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
</md:IDPSSODescriptor>
diff --git a/opensaml-saml-impl/src/main/resources/templates/metadata/SPSSODescriptor.vm b/opensaml-saml-impl/src/main/resources/templates/metadata/SPSSODescriptor.vm
index 03cf05d4c..fcf75e486 100644
--- a/opensaml-saml-impl/src/main/resources/templates/metadata/SPSSODescriptor.vm
+++ b/opensaml-saml-impl/src/main/resources/templates/metadata/SPSSODescriptor.vm
@@ -3,15 +3,15 @@
#parse("$params.templatePath/Extensions.vm")
#parse("$params.templatePath/KeyDescriptors.vm")
#foreach ($endpoint in $role.artifactResolutionServices)
- <md:ArtifactResolutionService index="$endpoint.index" Binding="$endpoint.binding" Location=""$xmlattr.escape($endpoint.location)" />
+ <md:ArtifactResolutionService index="$endpoint.index" Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
#foreach ($endpoint in $role.singleLogoutServices)
- <md:SingleLogoutService Binding="$endpoint.binding" Location=""$xmlattr.escape($endpoint.location)" />
+ <md:SingleLogoutService Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
#foreach ($format in $role.nameIDFormats)
<md:NameIDFormat>$xmltext.escape($format.URI)</md:NameIDFormat>
#end
#foreach ($endpoint in $role.assertionConsumerServices)
- <md:AssertionConsumerService index="$endpoint.index" Binding="$endpoint.binding" Location=""$xmlattr.escape($endpoint.location)" />
+ <md:AssertionConsumerService index="$endpoint.index" Binding="$endpoint.binding" Location="$xmlattr.escape($endpoint.location)" />
#end
</md:SPSSODescriptor>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list