Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove registrar ID from report, now superfluous
nckroy committed Jan 22, 2018
1 parent 8ee67ed commit 4bb528b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions lib/baseline_report_csv.xsl
@@ -30,7 +30,6 @@ IdPs:
7. IdP Admin contact or NONE
8. IdP Security contact or NONE
9. IdP Entity ID: @entityID
10. Registrar ID: @registrationAuthority
The IdP Display Name field is set to "NONE" if neither mdui:DisplayName nor
md:OrganizationDisplayName exist in the entity descriptor. The IdP Discovery
@@ -49,7 +48,6 @@ SPs:
7. SP Admin contact or NONE
8. SP Security contact or NONE
9. SP Entity ID: @entityID
10. Registrar ID: @registrationAuthority
The SP Display Name field is set to "NONE" if neither mdui:DisplayName nor
md:OrganizationDisplayName exist in the entity descriptor. The SP Discovery
@@ -80,7 +78,7 @@ SPs:

<!-- output the heading line -->
<xsl:template match="/">
<xsl:text>Organization Display Name,Entity Type,Entity Display Name,Privacy URL,Logo Present,Tech Contact,Admin Contact,Security Contact,Entity ID,Registrar ID</xsl:text>
<xsl:text>Organization Display Name,Entity Type,Entity Display Name,Privacy URL,Logo Present,Tech Contact,Admin Contact,Security Contact,Entity ID</xsl:text>
<xsl:text>&#x0a;</xsl:text>
<xsl:apply-templates/>
</xsl:template>
@@ -239,11 +237,14 @@ SPs:
<xsl:text>show</xsl:text>
</xsl:otherwise>
</xsl:choose>
-->
-->

<!-- output the registrar ID -->
<!--
<xsl:text>,</xsl:text>
<xsl:value-of select="md:Extensions/mdrpi:RegistrationInfo/@registrationAuthority"/>

-->

<xsl:text>&#x0a;</xsl:text>
</xsl:template>

@@ -392,8 +393,10 @@ SPs:
<xsl:value-of select="@entityID"/>

<!-- output the registrar ID -->
<!--
<xsl:text>,</xsl:text>
<xsl:value-of select="md:Extensions/mdrpi:RegistrationInfo/@registrationAuthority"/>
-->

<xsl:text>&#x0a;</xsl:text>
</xsl:template>

0 comments on commit 4bb528b

Please sign in to comment.