summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xslt/entityInfo2Webb.xslt16
1 files changed, 16 insertions, 0 deletions
diff --git a/xslt/entityInfo2Webb.xslt b/xslt/entityInfo2Webb.xslt
index 2c0ad01..da15112 100644
--- a/xslt/entityInfo2Webb.xslt
+++ b/xslt/entityInfo2Webb.xslt
@@ -47,6 +47,7 @@
<th>EntityID </th>
<th>Contacts</th>
<th>UIInfo</th>
+ <th>Organization</th>
<th>RequestedAttributes</th>
</tr>
</xsl:text>
@@ -67,6 +68,8 @@
<xsl:text>&lt;/td>
&lt;td></xsl:text><xsl:apply-templates select="md:SPSSODescriptor/md:Extensions/mdui:UIInfo"/>
<xsl:text>&lt;/td>
+ &lt;td></xsl:text><xsl:apply-templates select="md:Organization"/>
+ <xsl:text>&lt;/td>
&lt;td></xsl:text><xsl:apply-templates select="md:SPSSODescriptor/md:AttributeConsumingService[1]"/>
<xsl:text>&lt;/td>
&lt;/tr>
@@ -87,12 +90,25 @@
<xsl:apply-templates select="mdui:InformationURL[1]"/>
</xsl:template>
+
+ <xsl:template match="md:Organization">
+ <xsl:apply-templates select="md:OrganizationName[1]"/><xsl:text>&lt;br></xsl:text>
+ <xsl:apply-templates select="md:OrganizationDisplayName[1]"/>
+ <xsl:apply-templates select="md:OrganizationURL[1]"/>
+ </xsl:template>
+
<xsl:template match="mdui:InformationURL">
<xsl:text>&lt;br>&lt;a href="</xsl:text>
<xsl:value-of select="text()"/>
<xsl:text>">InformationURL&lt;/a></xsl:text>
</xsl:template>
+ <xsl:template match="md:OrganizationURL">
+ <xsl:text>&lt;br>&lt;a href="</xsl:text>
+ <xsl:value-of select="text()"/>
+ <xsl:text>">md:OrganizationURL&lt;/a></xsl:text>
+ </xsl:template>
+
<xsl:template match="md:ContactPerson">
<xsl:text>&lt;a href="mailto:</xsl:text>
<xsl:apply-templates select="md:EmailAddress"/>