diff options
Diffstat (limited to 'xslt')
-rw-r--r-- | xslt/extract-idp.xslt | 2 | ||||
-rw-r--r-- | xslt/extract-sp.xslt | 25 |
2 files changed, 26 insertions, 1 deletions
diff --git a/xslt/extract-idp.xslt b/xslt/extract-idp.xslt index 32824386..4858876f 100644 --- a/xslt/extract-idp.xslt +++ b/xslt/extract-idp.xslt @@ -14,7 +14,7 @@ <xsl:template match="/md:EntitiesDescriptor"> <md:EntitiesDescriptor> - <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]"/> + <xsl:apply-templates select="md:EntityDescriptor[md:IDPSSODescriptor]|md:EntityDescriptor[md:AttributeAuthorityDescriptor]"/> </md:EntitiesDescriptor> </xsl:template> 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> |