From 4bb528bf8e08faf17172f7ecd31e164a3b798d0d Mon Sep 17 00:00:00 2001 From: nckroy <roy.nicholas@gmail.com> Date: Mon, 22 Jan 2018 11:51:33 -0700 Subject: [PATCH] Remove registrar ID from report, now superfluous --- lib/baseline_report_csv.xsl | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lib/baseline_report_csv.xsl b/lib/baseline_report_csv.xsl index 3ba1bd7..b7b441e 100644 --- a/lib/baseline_report_csv.xsl +++ b/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>
</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>
</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>
</xsl:text> </xsl:template>