diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | swamid-registered.mxml | 28 |
2 files changed, 33 insertions, 1 deletions
@@ -66,7 +66,7 @@ swamid-interfederations1: swamid-interfederations2: scripts/aggregate.sh swamid-interfederations-2.0 -swamid: swamid2 swamid-no-interfederation-combined swamid-discovery swamid-idp swamid-idp-transitive publish +swamid: swamid2 swamid-no-interfederation-combined swamid-discovery swamid-idp swamid-idp-transitive swamid-registered publish publish: swamid-tou-en.txt swamid-tou-sv.txt HEADER.html README.html cp swamid-tou-en.txt swamid-tou-sv.txt sunet-swamid.png HEADER.html README.html $(DEST) @@ -95,6 +95,10 @@ swamid-idp: swamid2-deps @saml-md-tool swamid-idp update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) --days=$(DAYS) test -s swamid-idp.xml && cp swamid-idp.xml $(DEST) +swamid-registered: swamid2-deps + @saml-md-tool swamid-registered update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) --days=$(DAYS) + test -s swamid-registered.xml && cp swamid-registered.xml $(DEST) + swamid-idp-transitive: swamid2-deps @saml-md-tool swamid-idp-transitive update --key=$(KEY) --cert=$(CERT) --pwd=$(PASS) --days=$(DAYS) test -s swamid-idp-transitive.xml && cp swamid-idp-transitive.xml $(DEST) diff --git a/swamid-registered.mxml b/swamid-registered.mxml new file mode 100644 index 00000000..b4307916 --- /dev/null +++ b/swamid-registered.mxml @@ -0,0 +1,28 @@ +<?xml version="1.0"?> +<EntitiesDescriptor xmlns="urn:oasis:names:tc:SAML:2.0:metadata" + xmlns:xi="http://www.w3.org/2001/XInclude" + validUntil="1970-01-01T00:00:00Z" cacheDuration="PT8H" + Name="http://md.swamid.se/md/swamid-2.0.xml"> + + <!-- + + IMPORTANT NOTICE: READ CAREFULLY + +You are reading this because You wish to use the technical information (the “Metadata”) +published on behalf of the Registrars. These Terms of Access and Use (these “Terms”) govern +the use of the Metadata. By accessing or using the Metadata You accept that the access and +use will be on and subject to these Terms. These Terms will be binding and enforceable on +You as contractual obligations. + +The Terms is available at + +- http://md.swamid.se/md/swamid-tou-sv.txt Swedish version - Legally Binding! +- http://md.swamid.se/md/swamid-tou-en.txt English version - Non-normative translation + +If You do not accept these Terms, then You must not continue to use this Metadata. + + --> + + <xi:include href="swamid-idp-2.0.mxml" xpointer="xpointer(//*[@entityID])"/> + <xi:include href="swamid-sp-2.0.mxml" xpointer="xpointer(//*[@entityID])"/> +</EntitiesDescriptor> |