Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added link in notes to baseline compliance specs
nckroy committed Jan 22, 2018
1 parent 33966c7 commit 9ab15cc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/baseline_report_csv.xsl
@@ -18,7 +18,7 @@
baseline_report_csv.xsl
This XSL transform takes a SAML metadata aggregate and produces a list of
IdP and SP baseline compliance factors containing the following fields:
IdP and SP baseline compliance factors (documented at [1]) containing the following fields:
IdPs:
1. Organization Display Name
@@ -58,6 +58,8 @@ SPs:
BUG: Incorrectly processes an entity with multiple SPSSODescriptor elements
[1] https://spaces.internet2.edu/x/4RL9Bg
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
@@ -117,9 +119,11 @@ SPs:
</xsl:choose>

<!-- output that this is an IdP entity descriptor -->
<xsl:text>,</xsl:text>
<xsl:text>IdP</xsl:text>

<!-- output either mdui:DisplayName or md:OrganizationDisplayName or "NONE" (in that order) -->
<xsl:text>,</xsl:text>
<xsl:choose>
<xsl:when test="$displayName != ''">
<!-- escape literal double quotes in mdui:DisplayName -->
@@ -278,9 +282,11 @@ SPs:


<!-- output that this is an SP entity descriptor -->
<xsl:text>,</xsl:text>
<xsl:text>SP</xsl:text>

<!-- output either mdui:DisplayName or md:OrganizationDisplayName or "NONE" (in that order) -->
<xsl:text>,</xsl:text>
<xsl:choose>
<xsl:when test="$displayName != ''">
<!-- escape literal double quotes in mdui:DisplayName -->

0 comments on commit 9ab15cc

Please sign in to comment.