Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Strip orgID attribute from UKFederationMember for publication
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Sep 15, 2016
1 parent e3261d1 commit 400a89e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion mdx/uk/strip_extensions.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@
-->
<xsl:template match="ukfedlabel:UKFederationMember | ukfedlabel:AccountableUsers">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
<!--
Copy nested text and comments, but not attributes.
AccountableUsers does not have any attributes.
UKFederationMember does not have any attributes intended for
publication.
-->
<xsl:apply-templates select="text()|comment()"/>
</xsl:copy>
</xsl:template>

Expand Down

0 comments on commit 400a89e

Please sign in to comment.