Skip to content

Commit

Permalink
Implement DeletedEntity label.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Feb 19, 2007
1 parent c154909 commit f15e61d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
11 changes: 9 additions & 2 deletions build/master_sdss.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Author: Ian A. Young <ian@iay.org.uk>
$Id: master_sdss.xsl,v 1.5 2006/11/22 22:21:10 iay Exp $
$Id: master_sdss.xsl,v 1.6 2007/02/19 15:38:46 iay Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Expand All @@ -27,7 +27,7 @@
Version information for this file. Remember to peel off the dollar signs
before dropping the text into another versioned file.
-->
<xsl:param name="cvsId">$Id: master_sdss.xsl,v 1.5 2006/11/22 22:21:10 iay Exp $</xsl:param>
<xsl:param name="cvsId">$Id: master_sdss.xsl,v 1.6 2007/02/19 15:38:46 iay Exp $</xsl:param>

<!--
Add a comment to the start of the output file.
Expand Down Expand Up @@ -75,6 +75,13 @@
<!-- nothing -->
</xsl:template>

<!--
Drop any deleted entities.
-->
<xsl:template match="md:EntityDescriptor[md:Extensions/uklabel:DeletedEntity]">
<!-- nothing -->
</xsl:template>

<!--
Drop any entities defined after the UK Federation went live.
-->
Expand Down
12 changes: 10 additions & 2 deletions build/master_ukfederation.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Author: Ian A. Young <ian@iay.org.uk>
$Id: master_ukfederation.xsl,v 1.3 2006/11/07 20:36:31 iay Exp $
$Id: master_ukfederation.xsl,v 1.4 2007/02/19 15:38:46 iay Exp $
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Expand All @@ -19,14 +19,15 @@
xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:wayf="http://sdss.ac.uk/2006/06/WAYF"
xmlns:uklabel="http://ukfederation.org.uk/2006/11/label"
xmlns="urn:oasis:names:tc:SAML:2.0:metadata"
exclude-result-prefixes="wayf">

<!--
Version information for this file. Remember to peel off the dollar signs
before dropping the text into another versioned file.
-->
<xsl:param name="cvsId">$Id: master_ukfederation.xsl,v 1.3 2006/11/07 20:36:31 iay Exp $</xsl:param>
<xsl:param name="cvsId">$Id: master_ukfederation.xsl,v 1.4 2007/02/19 15:38:46 iay Exp $</xsl:param>

<!--
Add a comment to the start of the output file.
Expand Down Expand Up @@ -81,6 +82,13 @@
<!-- nothing -->
</xsl:template>

<!--
Drop any deleted entities.
-->
<xsl:template match="md:EntityDescriptor[md:Extensions/uklabel:DeletedEntity]">
<!-- nothing -->
</xsl:template>

<!--By default, copy text blocks, comments and attributes unchanged.-->
<xsl:template match="text()|comment()|@*">
<xsl:copy/>
Expand Down

0 comments on commit f15e61d

Please sign in to comment.