diff options
author | Fredrik Domeij <fredrik.domeij@umu.se> | 2019-10-29 14:58:10 +0100 |
---|---|---|
committer | Fredrik Domeij <fredrik.domeij@umu.se> | 2019-10-29 14:58:10 +0100 |
commit | 953537dcb2ccaa5cfb39a4667064de2f8c0e3f67 (patch) | |
tree | 2e7a7db1a7e4be321bf77140985cd32c0c91664b /xslt/extract-sp.xslt | |
parent | deb7e269856cbdc072231125e07bf40d490352c0 (diff) |
only include SP:s in swamid-sp-transitive.xml (not AA:s), include AA:s in swamid-idp-transitive.xml
Diffstat (limited to 'xslt/extract-sp.xslt')
-rw-r--r-- | xslt/extract-sp.xslt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xslt/extract-sp.xslt b/xslt/extract-sp.xslt new file mode 100644 index 00000000..058504e3 --- /dev/null +++ b/xslt/extract-sp.xslt @@ -0,0 +1,25 @@ +<?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> |