Skip to content

Commit

Permalink
Normalise namespace prefixes in some more elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Nov 8, 2010
1 parent 1911669 commit 2f70ae6
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions build/import.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,18 @@
</xsl:template>


<!--
md:AttributeConsumingService
Normalise namespace prefix.
-->
<xsl:template match="md:AttributeConsumingService">
<AttributeConsumingService>
<xsl:apply-templates select="node()|@*"/>
</AttributeConsumingService>
</xsl:template>


<!--
md:IDPSSODescriptor
Expand All @@ -226,6 +238,30 @@
</xsl:template>


<!--
md:RequestedAttribute
Normalise namespace prefix.
-->
<xsl:template match="md:RequestedAttribute">
<RequestedAttribute>
<xsl:apply-templates select="node()|@*"/>
</RequestedAttribute>
</xsl:template>


<!--
md:ServiceName
Normalise namespace prefix.
-->
<xsl:template match="md:ServiceName">
<ServiceName>
<xsl:apply-templates select="node()|@*"/>
</ServiceName>
</xsl:template>


<!--
md:SPSSODescriptor
Expand Down

0 comments on commit 2f70ae6

Please sign in to comment.