diff options
Diffstat (limited to 'xslt/clean-entitydescriptor.xsl')
-rw-r--r-- | xslt/clean-entitydescriptor.xsl | 30 |
1 files changed, 0 insertions, 30 deletions
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> |