Skip to content

Commit

Permalink
More md:* normalisation.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed May 10, 2011
1 parent 3db3de7 commit 7462974
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions build/import.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,30 @@
</xsl:template>


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


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


<!--
md:EncryptionMethod
Expand All @@ -265,6 +289,18 @@
</xsl:template>


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


<!--
md:IDPSSODescriptor
Expand Down Expand Up @@ -423,6 +459,18 @@
</xsl:template>


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


<!--
*************************************
*** ***
Expand Down

0 comments on commit 7462974

Please sign in to comment.