Skip to content

Commit

Permalink
Normalise namespaces on more elements to handle OpenAthens LA auto-ge…
Browse files Browse the repository at this point in the history
…nerated metadata.
  • Loading branch information
iay committed Feb 15, 2010
1 parent e376fbd commit 8788625
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 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:IDPSSODescriptor
Normalise namespace prefix.
-->
<xsl:template match="md:IDPSSODescriptor">
<IDPSSODescriptor>
<xsl:apply-templates select="node()|@*"/>
</IDPSSODescriptor>
</xsl:template>


<!--
md:SPSSODescriptor
Expand Down Expand Up @@ -263,6 +275,19 @@



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



<!--
md:ManageNameIDService
Expand Down Expand Up @@ -299,6 +324,54 @@
</xsl:template>


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


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


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


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


<!--
ds:KeyInfo
Expand Down

0 comments on commit 8788625

Please sign in to comment.