summaryrefslogtreecommitdiff
path: root/metadata/xslt/filter-idp.xslt
diff options
context:
space:
mode:
Diffstat (limited to 'metadata/xslt/filter-idp.xslt')
-rw-r--r--metadata/xslt/filter-idp.xslt32
1 files changed, 0 insertions, 32 deletions
diff --git a/metadata/xslt/filter-idp.xslt b/metadata/xslt/filter-idp.xslt
deleted file mode 100644
index 868bc1a2..00000000
--- a/metadata/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>