summaryrefslogtreecommitdiff
path: root/xslt
diff options
context:
space:
mode:
authorBjörn Mattsson <bjorn@sunet.se>2023-03-06 11:22:05 +0100
committerBjörn Mattsson <bjorn@sunet.se>2023-03-06 11:22:05 +0100
commit467dbdbf3d7212e25ee69daeaadd8adba7c7c5b8 (patch)
treed3576d5f2d4b5cc676c0a12ef8f8c3c83b474bf5 /xslt
parentbc1d55080e5d42e6ef2bba892d640aa8f68bbc90 (diff)
Moved files to make ths repo signed
Diffstat (limited to 'xslt')
-rw-r--r--xslt/add-rpi.xsl63
-rw-r--r--xslt/check_framework.xsl128
-rw-r--r--xslt/check_uk_algorithms.xsl195
-rw-r--r--xslt/clean-entitydescriptor.xsl30
-rw-r--r--xslt/dbg-summary.xslt18
-rw-r--r--xslt/entity_id_list.xslt26
-rw-r--r--xslt/extract-idp.xslt25
-rw-r--r--xslt/extract-non-idp.xslt25
-rw-r--r--xslt/extract-sp.xslt25
-rw-r--r--xslt/filter-idp.xslt32
-rw-r--r--xslt/full-summary.xslt18
-rw-r--r--xslt/idp-list.xslt25
-rw-r--r--xslt/idp-summary.xslt118
-rw-r--r--xslt/import-metadata.xsl83
-rw-r--r--xslt/list-locations.xslt21
-rw-r--r--xslt/normalize.xsl118
-rw-r--r--xslt/sign-luna-sha256-excl.xsl48
-rw-r--r--xslt/sign-luna-sha256.xsl48
-rw-r--r--xslt/sign-luna.xsl48
-rw-r--r--xslt/sign.xsl52
-rw-r--r--xslt/sp-summary.xslt134
-rw-r--r--xslt/summary.xslt102
22 files changed, 0 insertions, 1382 deletions
diff --git a/xslt/add-rpi.xsl b/xslt/add-rpi.xsl
deleted file mode 100644
index 0740b06d..00000000
--- a/xslt/add-rpi.xsl
+++ /dev/null
@@ -1,63 +0,0 @@
-<?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"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="md:EntityDescriptor">
- <md:EntityDescriptor>
- <xsl:apply-templates select="@*"/>
- <xsl:if test="not(md:Extensions)">
- <md:Extensions><xsl:call-template name="add-swamid-ri"/></md:Extensions>
- </xsl:if>
- <xsl:apply-templates select="text()|comment()|md:Extensions|md:RoleDescriptor|md:IDPSSODescriptor|md:SPSSODescriptor|md:AuthnAuthorityDescriptor|md:AttributeAuthorityDescriptor|md:PDPDescriptor|md:AffiliationDescriptor"/>
- <xsl:apply-templates select="md:Organization"/>
- <xsl:apply-templates select="md:ContactPerson"/>
- <xsl:apply-templates select="md:AdditionalMetadataLocation"/>
- </md:EntityDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor/md:Extensions">
- <md:Extensions>
- <xsl:call-template name="add-swamid-ri"/>
- <xsl:apply-templates select="text()|comment()|node()"/>
- </md:Extensions>
- </xsl:template>
-
- <xsl:template name="add-swamid-ri">
- <xsl:if test="not(mdrpi:RegistrationInfo[@registrationAuthority])">
- <mdrpi:RegistrationInfo>
- <xsl:attribute name="registrationAuthority">http://www.swamid.se/</xsl:attribute>
- <xsl:attribute name="registrationInstant"><xsl:value-of select="$regDate"/></xsl:attribute>
- <mdrpi:RegistrationPolicy xml:lang="en">http://swamid.se/policy/mdrps</mdrpi:RegistrationPolicy>
- </mdrpi:RegistrationInfo>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="@xml:base|@ID|@validUntil|@cacheDuration"/>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/check_framework.xsl b/xslt/check_framework.xsl
deleted file mode 100644
index f4e8d017..00000000
--- a/xslt/check_framework.xsl
+++ /dev/null
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- check_framework.xsl
-
- XSL stylesheet providing a framework for use by rule checking files.
-
- Author: Ian A. Young <ian@iay.org.uk>
-
--->
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-
- <!--
- The stylesheet output will be a text file, which will probably be thrown
- away in any case. The real output from the check is sent using the
- xsl:message element.
- -->
- <xsl:output method="text"/>
-
-
- <!--
- Common template to call to report an error on some element within an entity.
- -->
- <xsl:template name="error">
- <xsl:param name="m"/>
- <xsl:variable name="entity" select="ancestor-or-self::md:EntityDescriptor"/>
- <xsl:message terminate='no'>
- <xsl:text>[ERROR] </xsl:text>
- <!--
- If we're processing an aggregate, we need to indicate which
- individual entity we're dealing with.
- -->
- <xsl:if test="ancestor-or-self::md:EntitiesDescriptor">
- <!--
- Use an ID if available, otherwise the entityID.
- -->
- <xsl:choose>
- <xsl:when test="$entity/@ID">
- <xsl:value-of select="$entity/@ID"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$entity/@entityID"/>
- </xsl:otherwise>
- </xsl:choose>
- <xsl:text>: </xsl:text>
- </xsl:if>
- <xsl:value-of select="$m"/>
- </xsl:message>
- </xsl:template>
-
-
- <!--
- Common template to call to report a warning on some element within an entity.
- -->
- <xsl:template name="warning">
- <xsl:param name="m"/>
- <xsl:variable name="entity" select="ancestor-or-self::md:EntityDescriptor"/>
- <xsl:message terminate='no'>
- <xsl:text>[WARN] </xsl:text>
- <!--
- If we're processing an aggregate, we need to indicate which
- individual entity we're dealing with.
- -->
- <xsl:if test="ancestor-or-self::md:EntitiesDescriptor">
- <!--
- Use an ID if available, otherwise the entityID.
- -->
- <xsl:choose>
- <xsl:when test="$entity/@ID">
- <xsl:value-of select="$entity/@ID"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$entity/@entityID"/>
- </xsl:otherwise>
- </xsl:choose>
- <xsl:text>: </xsl:text>
- </xsl:if>
- <xsl:value-of select="$m"/>
- </xsl:message>
- </xsl:template>
-
-
- <!--
- Common template to call to report an informational message on some element within an entity.
- -->
- <xsl:template name="info">
- <xsl:param name="m"/>
- <xsl:variable name="entity" select="ancestor-or-self::md:EntityDescriptor"/>
- <xsl:message terminate='no'>
- <xsl:text>[INFO] </xsl:text>
- <!--
- If we're processing an aggregate, we need to indicate which
- individual entity we're dealing with.
- -->
- <xsl:if test="ancestor-or-self::md:EntitiesDescriptor">
- <!--
- Use an ID if available, otherwise the entityID.
- -->
- <xsl:choose>
- <xsl:when test="$entity/@ID">
- <xsl:value-of select="$entity/@ID"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$entity/@entityID"/>
- </xsl:otherwise>
- </xsl:choose>
- <xsl:text>: </xsl:text>
- </xsl:if>
- <xsl:value-of select="$m"/>
- </xsl:message>
- </xsl:template>
-
-
- <!-- Recurse down through all elements by default. -->
- <xsl:template match="*">
- <xsl:apply-templates select="node()|@*"/>
- </xsl:template>
-
-
- <!-- Discard text blocks, comments and attributes by default. -->
- <xsl:template match="text()|comment()|@*">
- <!-- do nothing -->
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/check_uk_algorithms.xsl b/xslt/check_uk_algorithms.xsl
deleted file mode 100644
index 0a4c024f..00000000
--- a/xslt/check_uk_algorithms.xsl
+++ /dev/null
@@ -1,195 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
- check_uk_algorithms.xsl
-
- Checking ruleset for cryptographic algorithms. This is named as a UK
- ruleset because the division between acceptable and unacceptable algorithms
- is sometimes a judgement call; however, it should be generally
- applicable.
-
- The best reference for *all* URIs used as algorithm identifiers is the
- XML Security Algorithm Cross-Reference at http://www.w3.org/TR/xmlsec-algorithms/
- Algorithm lists here are in the same order as in that document.
-
- Author: Ian A. Young <ian@iay.org.uk>
--->
-<xsl:stylesheet version="1.0"
- xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns="urn:oasis:names:tc:SAML:2.0:metadata">
-
- <!--
- Common support functions.
- -->
- <xsl:import href="check_framework.xsl"/>
-
- <!--
- *************************************
- *** ***
- *** S I G N I N G M E T H O D ***
- *** ***
- *************************************
- -->
-
- <!--
- Check for known BAD SigningMethod algorithms.
- -->
- <xsl:template match="alg:SigningMethod[
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-md5'
- ]">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>insecure algorithm in SigningMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!--
- Check for known GOOD SigningMethod algorithms.
- -->
- <xsl:template match="alg:SigningMethod[
- @Algorithm = 'http://www.w3.org/2000/09/xmldsig#dsa-sha1' or
- @Algorithm = 'http://www.w3.org/2009/xmldsig11#dsa-sha256' or
- @Algorithm = 'http://www.w3.org/2000/09/xmldsig#rsa-sha1' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha224' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha384' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#rsa-ripemd160' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha1' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha224' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha256' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha384' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#ecdsa-sha512'
- ]">
- <!-- do nothing -->
- </xsl:template>
-
- <!--
- Misspelled or otherwise not known SigningMethod algorithms.
- -->
- <xsl:template match="alg:SigningMethod">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>unknown algorithm in SigningMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!--
- ***********************************
- *** ***
- *** D I G E S T M E T H O D ***
- *** ***
- ***********************************
- -->
-
- <!--
- Check for known BAD DigestMethod algorithms.
- -->
- <xsl:template match="alg:DigestMethod[
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#md5'
- ]">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>insecure algorithm in DigestMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!--
- Check for known GOOD DigestMethod algorithms.
- -->
- <xsl:template match="alg:DigestMethod[
- @Algorithm = 'http://www.w3.org/2000/09/xmldsig#sha1' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#sha224' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#sha256' or
- @Algorithm = 'http://www.w3.org/2001/04/xmldsig-more#sha384' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#sha512' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#ripemd160'
- ]">
- <!-- do nothing -->
- </xsl:template>
-
- <!--
- Misspelled or otherwise not known DigestMethod algorithms.
- -->
- <xsl:template match="alg:DigestMethod">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>unknown algorithm in DigestMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!--
- *******************************************
- *** ***
- *** E N C R Y P T I O N M E T H O D ***
- *** ***
- *******************************************
- -->
-
- <!--
- Check for known BAD EncryptionMethod algorithms.
-
- This list is of symmetric key encryption algorithms *and*
- key transport algorithms.
- -->
- <xsl:template match="md:EncryptionMethod[
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#rsa-1_5'
- ]">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>insecure algorithm in EncryptionMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
- <!--
- Check for known GOOD EncryptionMethod algorithms.
-
- This list is of symmetric key encryption algorithms *and*
- key transport algorithms.
- -->
- <xsl:template match="md:EncryptionMethod[
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#tripledes-cbc' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#aes128-cbc' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#aes192-cbc' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#aes256-cbc' or
- @Algorithm = 'http://www.w3.org/2009/xmlenc11#aes128-gcm' or
- @Algorithm = 'http://www.w3.org/2009/xmlenc11#aes192-gcm' or
- @Algorithm = 'http://www.w3.org/2009/xmlenc11#aes256-gcm' or
- @Algorithm = 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p' or
- @Algorithm = 'http://www.w3.org/2009/xmlenc11#rsa-oaep'
- ]">
- <!-- do nothing -->
- </xsl:template>
-
- <!--
- Misspelled or otherwise not known EncryptionMethod algorithms.
- -->
- <xsl:template match="md:EncryptionMethod">
- <xsl:call-template name="error">
- <xsl:with-param name="m">
- <xsl:text>unknown algorithm in EncryptionMethod: '</xsl:text>
- <xsl:value-of select="@Algorithm"/>
- <xsl:text>'</xsl:text>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/clean-entitydescriptor.xsl b/xslt/clean-entitydescriptor.xsl
deleted file mode 100644
index c1c31df9..00000000
--- a/xslt/clean-entitydescriptor.xsl
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
- <xsl:param name="indent-increment" select="' '"/>
- <xsl:strip-space elements="*" />
-
- <xsl:template match="@ID"/>
- <xsl:template match="@validUntil"/>
- <xsl:template match="@cacheDuration"/>
- <xsl:template match="ds:Signature"/>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/dbg-summary.xslt b/xslt/dbg-summary.xslt
deleted file mode 100644
index 2550ae03..00000000
--- a/xslt/dbg-summary.xslt
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:import href="summary.xslt"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:apply-templates select="md:EntityDescriptor"/>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/entity_id_list.xslt b/xslt/entity_id_list.xslt
deleted file mode 100644
index bda1bb76..00000000
--- a/xslt/entity_id_list.xslt
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="text" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xsl:text>- </xsl:text><xsl:value-of select="@entityID"/><xsl:text>
-</xsl:text>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/extract-idp.xslt b/xslt/extract-idp.xslt
deleted file mode 100644
index 4858876f..00000000
--- a/xslt/extract-idp.xslt
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]|md:EntityDescriptor[md:AttributeAuthorityDescriptor]"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xi:include><xsl:attribute name="href"><xsl:value-of select="@xml:base"/></xsl:attribute></xi:include>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/extract-non-idp.xslt b/xslt/extract-non-idp.xslt
deleted file mode 100644
index b12c587c..00000000
--- a/xslt/extract-non-idp.xslt
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor[not(md:IDPSSODescriptor)]"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xi:include><xsl:attribute name="href"><xsl:value-of select="@xml:base"/></xsl:attribute></xi:include>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/extract-sp.xslt b/xslt/extract-sp.xslt
deleted file mode 100644
index 058504e3..00000000
--- a/xslt/extract-sp.xslt
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor[md:SPSSODescriptor]"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xi:include><xsl:attribute name="href"><xsl:value-of select="@xml:base"/></xsl:attribute></xi:include>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/filter-idp.xslt b/xslt/filter-idp.xslt
deleted file mode 100644
index 868bc1a2..00000000
--- a/xslt/filter-idp.xslt
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-
-</xsl:stylesheet>
diff --git a/xslt/full-summary.xslt b/xslt/full-summary.xslt
deleted file mode 100644
index bf127dfa..00000000
--- a/xslt/full-summary.xslt
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:import href="http://mds.swamid.se/xslt/summary.xslt"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:apply-templates select="md:EntityDescriptor"/>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/idp-list.xslt b/xslt/idp-list.xslt
deleted file mode 100644
index 0d18be8a..00000000
--- a/xslt/idp-list.xslt
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]"/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xi:include><xsl:attribute name="href"><xsl:value-of select="@xml:base"/></xsl:attribute></xi:include>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/idp-summary.xslt b/xslt/idp-summary.xslt
deleted file mode 100644
index cc5a5f16..00000000
--- a/xslt/idp-summary.xslt
+++ /dev/null
@@ -1,118 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:samla="urn:oasis:names:tc:SAML:2.0:assertion"
- xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute"
- xmlns:remd="http://refeds.org/metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="text"/>
- <xsl:variable name="eol">
-<xsl:text>|</xsl:text><xsl:text>
-</xsl:text>
- </xsl:variable>
-
- <xsl:template name="entity-name">
- <xsl:variable name="h"><xsl:value-of select="substring-after(@entityID,'://')"/></xsl:variable>
- <xsl:if test="contains($h,'/')">
- <xsl:value-of select="substring-before($h,'/')"/>
- </xsl:if>
- <xsl:if test="not(contains($h,'/'))">
- <xsl:value-of select="$h"/>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:text>||EntityID||Organization||Technical Contact||Support Contact||Security Contact||Administrative Contact||Scopes||Entity category support||Assurance Certification||Registration Authority||
-</xsl:text>
- <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]"/>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xsl:text> | </xsl:text><xsl:value-of select="@entityID"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Organization"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:ContactPerson[@contactType='technical']"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:ContactPerson[@contactType='support']"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:ContactPerson[@remd:contactType='http://refeds.org/metadata/contactType/security']"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:ContactPerson[@contactType='administrative']"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:IDPSSODescriptor"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdattr:EntityAttributes/samla:Attribute[@Name='http://macedir.org/entity-category-support']/samla:AttributeValue"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdattr:EntityAttributes/samla:Attribute[@Name='urn:oasis:names:tc:SAML:attribute:assurance-certification']/samla:AttributeValue"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdrpi:RegistrationInfo"/>
- <xsl:text> |
-</xsl:text>
- </xsl:template>
-
- <xsl:template match="mdrpi:RegistrationInfo">
- <xsl:value-of select="@registrationAuthority"/><xsl:text> </xsl:text>
- </xsl:template>
-
- <xsl:template match="md:ContactPerson">
- <xsl:apply-templates select="md:EmailAddress"/>
- </xsl:template>
-
- <xsl:template match="md:Organization">
- <xsl:text>[</xsl:text>
- <xsl:apply-templates select="md:OrganizationDisplayName[1]"/><xsl:text>|</xsl:text><xsl:apply-templates select="md:OrganizationURL[1]"/><xsl:text>]</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:IDPSSODescriptor">
- <xsl:apply-templates select="md:Extensions/shibmd:Scope"/>
- </xsl:template>
-
- <xsl:template match="md:EmailAddress">
- <xsl:value-of select="normalize-space(text())"/><xsl:text> </xsl:text><xsl:text> \\</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:OrganizationDisplayName">
- <xsl:value-of select="normalize-space(text())"/><xsl:text> </xsl:text>
- </xsl:template>
-
- <xsl:template match="md:OrganizationURL">
- <xsl:value-of select="normalize-space(text())"/><xsl:text> </xsl:text>
- </xsl:template>
-
- <xsl:template match="shibmd:Scope">
- <xsl:value-of select="text()"/><xsl:text> </xsl:text>
- </xsl:template>
-
- <xsl:template match="samla:AttributeValue">
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="text()" />
- <xsl:with-param name="replace" select="'-'" />
- <xsl:with-param name="by" select="'-'" />
- </xsl:call-template>
- <xsl:text> \\</xsl:text>
- </xsl:template>
-
- <xsl:template match="*"/>
- <xsl:template match="text()"/>
-
- <xsl:template name="string-replace-all">
- <xsl:param name="text" />
- <xsl:param name="replace" />
- <xsl:param name="by" />
- <xsl:choose>
- <xsl:when test="contains($text, $replace)">
- <xsl:value-of select="substring-before($text,$replace)" />
- <xsl:value-of select="$by" />
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="substring-after($text,$replace)" />
- <xsl:with-param name="replace" select="$replace" />
- <xsl:with-param name="by" select="$by" />
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$text" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/import-metadata.xsl b/xslt/import-metadata.xsl
deleted file mode 100644
index 2edf7ed2..00000000
--- a/xslt/import-metadata.xsl
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template name="string-replace-all">
- <xsl:param name="text" />
- <xsl:param name="replace" />
- <xsl:param name="by" />
- <xsl:choose>
- <xsl:when test="contains($text, $replace)">
- <xsl:value-of select="substring-before($text,$replace)" />
- <xsl:value-of select="$by" />
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="substring-after($text,$replace)" />
- <xsl:with-param name="replace" select="$replace" />
- <xsl:with-param name="by" select="$by" />
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$text" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:apply-templates select="md:EntityDescriptor">
- <!-- xsl:with-param name="output"><xsl:value-of select="$output"/></xsl:with-param -->
- </xsl:apply-templates>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <!-- xsl:param name="output"/ -->
- <xsl:variable name="uri">
- <xsl:choose>
- <xsl:when test="contains(@entityID,'://')">
- <xsl:value-of select="substring-after(@entityID,'://')"/>
- </xsl:when>
- <xsl:otherwise><xsl:value-of select="@entityID"/></xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
-
- <xsl:variable name="hostStr">
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="$uri" />
- <xsl:with-param name="replace" select="'%2F'" />
- <xsl:with-param name="by" select="'/'" />
- </xsl:call-template>
- </xsl:variable>
-
- <xsl:variable name="host">
- <xsl:value-of select="normalize-space(translate($hostStr,'/?=:','----'))"/>
- </xsl:variable>
- <xsl:variable name="file" select="concat($output,'/',$host,'.xml')"/>
- <exsl:document method="xml" indent="yes" href="{$file}">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </exsl:document>
- </xsl:template>
-
- <xsl:template match="@ID"/>
- <xsl:template match="ds:Signature"/>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/list-locations.xslt b/xslt/list-locations.xslt
deleted file mode 100644
index fd22fac3..00000000
--- a/xslt/list-locations.xslt
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:xi="http://www.w3.org/2001/XInclude"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="text"/>
-
- <xsl:template match="//*[@Location]">
- <xsl:value-of select="@Location"/><xsl:text>
-</xsl:text>
- </xsl:template>
- <xsl:template match="text()"/>
-
-</xsl:stylesheet>
diff --git a/xslt/normalize.xsl b/xslt/normalize.xsl
deleted file mode 100644
index f3c086ac..00000000
--- a/xslt/normalize.xsl
+++ /dev/null
@@ -1,118 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- 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:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:exsl="http://exslt.org/common"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:if test="$tou='true'"><xsl:comment>
-
- 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 SWAMID Metadata Terms of Access and Use can be found here:
-
-- http://mds.swamid.se/md/swamid-tou-sv.txt Swedish version - Legally Binding!
-- http://mds.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.
-
- </xsl:comment></xsl:if>
- <md:EntitiesDescriptor>
- <xsl:attribute name="ID"><xsl:value-of select="$ID"/></xsl:attribute>
- <xsl:attribute name="Name">
- <xsl:choose>
- <xsl:when test="$target"><xsl:value-of select="$target"/></xsl:when>
- <xsl:otherwise><xsl:value-of select="@Name"/></xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- <xsl:if test="@cacheDuration">
- <xsl:attribute name="cacheDuration"><xsl:value-of select="@cacheDuration"/></xsl:attribute>
- </xsl:if>
- <xsl:if test="@validUntil">
- <xsl:attribute name="validUntil"><xsl:value-of select="$date"/></xsl:attribute>
- </xsl:if>
- <xsl:if test="$target">
- <md:Extensions><xsl:call-template name="add-swamid-pi"/></md:Extensions>
- </xsl:if>
- <xsl:apply-templates/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xsl:variable name="path"><xsl:value-of select="substring-after(@entityID,'://')"/></xsl:variable>
- <xsl:variable name="host">
- <xsl:if test="contains($path,'/')">
- <xsl:value-of select="substring-before($path,'/')"/>
- </xsl:if>
- <xsl:if test="not(contains($path,'/'))">
- <xsl:value-of select="$path"/>
- </xsl:if>
- </xsl:variable>
- <xsl:variable name="domain">
- <xsl:value-of select="substring-after($host,'.')"/>
- </xsl:variable>
- <md:EntityDescriptor>
- <xsl:apply-templates select="@*"/>
- <xsl:if test="$rpi='true' and not(md:Extensions)">
- <md:Extensions><xsl:call-template name="add-swamid-ri"/></md:Extensions>
- </xsl:if>
- <xsl:apply-templates select="text()|comment()|md:Extensions|md:RoleDescriptor|md:IDPSSODescriptor|md:SPSSODescriptor|md:AuthnAuthorityDescriptor|md:AttributeAuthorityDescriptor|md:PDPDescriptor|md:AffiliationDescriptor"/>
- <xsl:apply-templates select="md:Organization"/>
- <xsl:if test="$defaultContact='true' and not(md:ContactPerson)">
- <md:ContactPerson contactType="technical"><md:EmailAddress>operations@swamid.se</md:EmailAddress></md:ContactPerson>
- </xsl:if>
- <xsl:apply-templates select="md:ContactPerson"/>
- <xsl:apply-templates select="md:AdditionalMetadataLocation"/>
- </md:EntityDescriptor>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor/md:Extensions">
- <md:Extensions>
- <xsl:call-template name="add-swamid-ri"/>
- <xsl:apply-templates select="text()|comment()|node()"/>
- </md:Extensions>
- </xsl:template>
-
- <xsl:template name="add-swamid-ri">
- <xsl:if test="$rpi='true' and not(mdrpi:RegistrationInfo[@registrationAuthority])">
- <mdrpi:RegistrationInfo registrationAuthority="http://www.swamid.se/">
- <mdrpi:RegistrationPolicy xml:lang="en">http://swamid.se/policy/mdrps</mdrpi:RegistrationPolicy>
- </mdrpi:RegistrationInfo>
- </xsl:if>
- </xsl:template>
-
- <xsl:template name="add-swamid-pi">
- <mdrpi:PublicationInfo>
- <xsl:attribute name="creationInstant"><xsl:value-of select="$now"/></xsl:attribute>
- <xsl:attribute name="publisher"><xsl:value-of select="$target"/></xsl:attribute>
- <mdrpi:UsagePolicy xml:lang="en">https://mds.swamid.se/md/swamid-tou-en.txt</mdrpi:UsagePolicy>
- </mdrpi:PublicationInfo>
- </xsl:template>
-
- <xsl:template match="@xml:base|@ID|@validUntil|@cacheDuration"/>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/sign-luna-sha256-excl.xsl b/xslt/sign-luna-sha256-excl.xsl
deleted file mode 100644
index 08e48270..00000000
--- a/xslt/sign-luna-sha256-excl.xsl
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:exsl="http://exslt.org/common"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="@*|text()|comment()"/>
- <ds:Signature>
- <ds:SignedInfo>
- <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" />
- <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
- <ds:Reference>
- <xsl:attribute name="URI"><xsl:text>#</xsl:text><xsl:value-of select="@ID"/></xsl:attribute>
- <ds:Transforms>
- <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
- <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
- </ds:Transforms>
- <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
- <ds:DigestValue></ds:DigestValue>
- </ds:Reference>
- </ds:SignedInfo>
- <ds:SignatureValue/>
- </ds:Signature>
- <xsl:apply-templates/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/sign-luna-sha256.xsl b/xslt/sign-luna-sha256.xsl
deleted file mode 100644
index 293bb96d..00000000
--- a/xslt/sign-luna-sha256.xsl
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:exsl="http://exslt.org/common"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="@*|text()|comment()"/>
- <ds:Signature>
- <ds:SignedInfo>
- <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
- <ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
- <ds:Reference>
- <xsl:attribute name="URI"><xsl:text>#</xsl:text><xsl:value-of select="@ID"/></xsl:attribute>
- <ds:Transforms>
- <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
- <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
- </ds:Transforms>
- <ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
- <ds:DigestValue></ds:DigestValue>
- </ds:Reference>
- </ds:SignedInfo>
- <ds:SignatureValue/>
- </ds:Signature>
- <xsl:apply-templates/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/sign-luna.xsl b/xslt/sign-luna.xsl
deleted file mode 100644
index 48364512..00000000
--- a/xslt/sign-luna.xsl
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:exsl="http://exslt.org/common"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="@*|text()|comment()"/>
- <ds:Signature>
- <ds:SignedInfo>
- <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
- <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
- <ds:Reference>
- <xsl:attribute name="URI"><xsl:text>#</xsl:text><xsl:value-of select="@ID"/></xsl:attribute>
- <ds:Transforms>
- <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
- <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
- </ds:Transforms>
- <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
- <ds:DigestValue></ds:DigestValue>
- </ds:Reference>
- </ds:SignedInfo>
- <ds:SignatureValue/>
- </ds:Signature>
- <xsl:apply-templates/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/sign.xsl b/xslt/sign.xsl
deleted file mode 100644
index 51d2492a..00000000
--- a/xslt/sign.xsl
+++ /dev/null
@@ -1,52 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet version="1.0"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:exsl="http://exslt.org/common"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <md:EntitiesDescriptor>
- <xsl:apply-templates select="@*|text()|comment()"/>
- <ds:Signature>
- <ds:SignedInfo>
- <ds:CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
- <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
- <ds:Reference>
- <xsl:attribute name="URI"><xsl:text>#</xsl:text><xsl:value-of select="@ID"/></xsl:attribute>
- <ds:Transforms>
- <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
- <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
- </ds:Transforms>
- <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
- <ds:DigestValue></ds:DigestValue>
- </ds:Reference>
- </ds:SignedInfo>
- <ds:SignatureValue/>
- <ds:KeyInfo>
- <ds:X509Data>
- </ds:X509Data>
- </ds:KeyInfo>
- </ds:Signature>
- <xsl:apply-templates/>
- </md:EntitiesDescriptor>
- </xsl:template>
-
- <xsl:template match="text()|comment()|@*">
- <xsl:copy/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
- </xsl:copy>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/sp-summary.xslt b/xslt/sp-summary.xslt
deleted file mode 100644
index e630c954..00000000
--- a/xslt/sp-summary.xslt
+++ /dev/null
@@ -1,134 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute"
- xmlns:samla="urn:oasis:names:tc:SAML:2.0:assertion"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="text"/>
- <xsl:variable name="eol">
-<xsl:text>|</xsl:text><xsl:text>
-</xsl:text>
- </xsl:variable>
-
- <xsl:template name="entity-name">
- <xsl:variable name="h"><xsl:value-of select="substring-after(@entityID,'://')"/></xsl:variable>
- <xsl:if test="contains($h,'/')">
- <xsl:value-of select="substring-before($h,'/')"/>
- </xsl:if>
- <xsl:if test="not(contains($h,'/'))">
- <xsl:value-of select="$h"/>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="/md:EntitiesDescriptor">
- <xsl:text>||EntityID||Service Name||Organization||Contacts||Entity Categories||Assurance Certification||Registration Authority||
-</xsl:text>
- <xsl:apply-templates select="md:EntityDescriptor[md:SPSSODescriptor]"/>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xsl:text> | </xsl:text><xsl:value-of select="@entityID"/>
- <xsl:text> | </xsl:text>
- <xsl:apply-templates select="md:SPSSODescriptor/md:AttributeConsumingService/md:ServiceName"/><xsl:text> \\ </xsl:text>
- <xsl:apply-templates select="md:SPSSODescriptor/md:AttributeConsumingService/md:ServiceDescription"/>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Organization"/>
- <xsl:text> | </xsl:text>
- <xsl:apply-templates select="md:ContactPerson[@contactType='technical']"/>
- <xsl:apply-templates select="md:ContactPerson[@contactType='administrative']"/>
- <xsl:apply-templates select="md:ContactPerson[@contactType='support']"/>
- <xsl:apply-templates select="md:ContactPerson[@contactType='other']"/>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdattr:EntityAttributes/samla:Attribute[@Name='http://macedir.org/entity-category']/samla:AttributeValue"/>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdattr:EntityAttributes/samla:Attribute[@Name='urn:oasis:names:tc:SAML:attribute:assurance-certification']/samla:AttributeValue"/><xsl:text> </xsl:text>
- <xsl:text> | </xsl:text><xsl:apply-templates select="md:Extensions/mdrpi:RegistrationInfo"/>
- <xsl:text> |
-</xsl:text>
- </xsl:template>
-
- <xsl:template match="mdrpi:RegistrationInfo">
- <xsl:value-of select="@registrationAuthority"/><xsl:text> </xsl:text>
- </xsl:template>
-
- <xsl:template match="md:AttributeConsumingService">
- <xsl:apply-templates/>
- </xsl:template>
-
- <xsl:template match="md:ServiceName|md:ServiceDescription">
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="text()" />
- <xsl:with-param name="replace" select="'|'" />
- <xsl:with-param name="by" select="'\|'" />
- </xsl:call-template>
- </xsl:template>
-
- <xsl:template match="samla:AttributeValue">
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="text()" />
- <xsl:with-param name="replace" select="'-'" />
- <xsl:with-param name="by" select="'-'" />
- </xsl:call-template>
- <xsl:text> \\</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:ContactPerson">
- <xsl:value-of select="@contactType"/><xsl:text>: </xsl:text><xsl:apply-templates select="md:EmailAddress"/>
- </xsl:template>
-
- <xsl:template match="md:Organization">
- <xsl:text>[</xsl:text>
- <xsl:apply-templates select="md:OrganizationDisplayName[1]"/><xsl:text>|</xsl:text>
- <xsl:apply-templates select="md:OrganizationURL[1]"/><xsl:text>]</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:SPPSSODescriptor">
- <xsl:apply-templates select="md:Extensions/shibmd:Scope"/>
- </xsl:template>
-
- <xsl:template match="md:EmailAddress">
- <xsl:text>[</xsl:text><xsl:value-of select="text()"/><xsl:text>] \\</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:OrganizationDisplayName">
- <xsl:value-of select="normalize-space(text())"/>
- </xsl:template>
-
- <xsl:template match="md:OrganizationURL">
- <xsl:value-of select="normalize-space(text())"/>
- </xsl:template>
-
- <xsl:template match="shibmd:Scope">
- <xsl:value-of select="text()"/><xsl:text> </xsl:text>
- </xsl:template>
-
-
- <xsl:template match="*"/>
- <xsl:template match="text()"/>
-
- <xsl:template name="string-replace-all">
- <xsl:param name="text" />
- <xsl:param name="replace" />
- <xsl:param name="by" />
- <xsl:choose>
- <xsl:when test="contains($text, $replace)">
- <xsl:value-of select="substring-before($text,$replace)" />
- <xsl:value-of select="$by" />
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="substring-after($text,$replace)" />
- <xsl:with-param name="replace" select="$replace" />
- <xsl:with-param name="by" select="$by" />
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$text" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
-</xsl:stylesheet>
diff --git a/xslt/summary.xslt b/xslt/summary.xslt
deleted file mode 100644
index 05152d13..00000000
--- a/xslt/summary.xslt
+++ /dev/null
@@ -1,102 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:shibmeta="urn:mace:shibboleth:metadata:1.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
- xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
- xmlns:exsl="http://exslt.org/common"
- extension-element-prefixes="exsl"
- xmlns:shibmd="urn:mace:shibboleth:metadata:1.0">
-
- <xsl:output method="text"/>
- <xsl:variable name="eol">
-<xsl:text>|</xsl:text><xsl:text>
-</xsl:text>
- </xsl:variable>
-
- <xsl:template name="entity-name">
- <xsl:variable name="h"><xsl:value-of select="substring-after(@entityID,'://')"/></xsl:variable>
- <xsl:if test="contains($h,'/')">
- <xsl:value-of select="substring-before($h,'/')"/>
- </xsl:if>
- <xsl:if test="not(contains($h,'/'))">
- <xsl:value-of select="$h"/>
- </xsl:if>
- </xsl:template>
-
- <xsl:template match="md:EntityDescriptor">
- <xsl:text>h2. </xsl:text><xsl:call-template name="entity-name"/><xsl:text>
-</xsl:text>
- <xsl:text>||EntityID|</xsl:text><xsl:value-of select="@entityID"/><xsl:value-of select="$eol"/>
- <xsl:apply-templates select="md:IDPSSODescriptor"/>
- <xsl:apply-templates select="md:SPSSODescriptor"/>
- <xsl:apply-templates select="md:Organization"/>
- <xsl:apply-templates select="md:ContactPerson"/>
- <xsl:text>
-</xsl:text>
- <xsl:apply-templates select="md:SPSSODescriptor/md:AttributeConsumingService"/><xsl:text>
-</xsl:text>
- <xsl:text>[Supplemental documentation|</xsl:text><xsl:call-template name="entity-name"/><xsl:text>]
-</xsl:text>
- <xsl:text>
-</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:ContactPerson[@contactType='technical']">
- <xsl:text>||Technical contact|</xsl:text>
- <xsl:apply-templates select="md:EmailAddress"/>
- <xsl:value-of select="$eol"/>
- </xsl:template>
-
- <xsl:template match="md:ContactPerson[@contactType='administrative']">
- <xsl:text>||Administrative contact|</xsl:text>
- <xsl:apply-templates select="md:EmailAddress"/>
- <xsl:value-of select="$eol"/>
- </xsl:template>
-
- <xsl:template match="md:Organization">
- <xsl:text>||Organization|[</xsl:text>
- <xsl:apply-templates select="md:OrganizationDisplayName[1]"/><xsl:text>|</xsl:text><xsl:apply-templates select="md:OrganizationURL[1]"/><xsl:text>]</xsl:text>
- <xsl:value-of select="$eol"/>
- </xsl:template>
-
- <xsl:template match="md:SPSSODescriptor">
- <xsl:text>||Role|Service Provider</xsl:text><xsl:value-of select="$eol"/>
- </xsl:template>
-
- <xsl:template match="md:AttributeConsumingService">
- <xsl:apply-templates/>
- </xsl:template>
-
- <xsl:template match="md:ServiceDescription">
- <xsl:text>{info}</xsl:text><xsl:value-of select="text()"/><xsl:text>{info}</xsl:text>
- </xsl:template>
-
- <xsl:template match="md:IDPSSODescriptor">
- <xsl:text>||Role|Identity Provider</xsl:text><xsl:value-of select="$eol"/>
- <xsl:text>||Scopes|</xsl:text><xsl:apply-templates select="md:Extensions/shibmd:Scope"/><xsl:value-of select="$eol"/>
- </xsl:template>
-
- <xsl:template match="md:EmailAddress">
- <xsl:value-of select="text()"/>
- </xsl:template>
-
- <xsl:template match="md:OrganizationDisplayName">
- <xsl:value-of select="text()"/>
- </xsl:template>
-
- <xsl:template match="md:OrganizationURL">
- <xsl:value-of select="text()"/>
- </xsl:template>
-
- <xsl:template match="shibmd:Scope">
- <xsl:text>* </xsl:text><xsl:value-of select="text()"/><xsl:text>
-</xsl:text>
- </xsl:template>
-
-
- <xsl:template match="*"/>
- <xsl:template match="text()"/>
-
-</xsl:stylesheet>