diff options
author | Johan Wassberg <jocar@sunet.se> | 2022-08-25 14:41:14 +0200 |
---|---|---|
committer | Johan Wassberg <jocar@sunet.se> | 2022-08-25 14:41:14 +0200 |
commit | 59f14e98c7087092d080f07d0122248e4212b5c5 (patch) | |
tree | 89b7e956d297040d4af92c6d58181938c0d505ee /xslt | |
parent | efb71f4e7dcb725dd00b80c47ed667a4d92ff756 (diff) |
Normalize namespaces with the metadata tool (metadata.swamid.se)
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/add-rpi.xsl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/xslt/add-rpi.xsl b/xslt/add-rpi.xsl index 3e928716..0740b06d 100644 --- a/xslt/add-rpi.xsl +++ b/xslt/add-rpi.xsl @@ -1,14 +1,18 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" + xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport" + xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi" + xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute" + xmlns:samla="urn:oasis:names:tc:SAML:2.0:assertion" + xmlns:init="urn:oasis:names:tc:SAML:profiles:SSO:request-init" + xmlns:idpdisc="urn:oasis:names:tc:SAML:profiles:SSO:idp-discovery-protocol" + xmlns:mdui="urn:oasis:names:tc:SAML:metadata:ui" + xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:exsl="http://exslt.org/common" - xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi" - xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport" - xmlns:ds="http://www.w3.org/2000/09/xmldsig#" - xmlns:mdui="urn:oasis:names:tc:SAML:metadata:ui" extension-element-prefixes="exsl" xmlns:shibmd="urn:mace:shibboleth:metadata:1.0"> |