Skip to content

Commit

Permalink
Flag identity providers with no attribute authority roles.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jan 26, 2010
1 parent f92accc commit 43a9454
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build/statistics.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,24 @@
(<xsl:value-of select="format-number($artifactIdpCount div $idpCount, '0.0%')"/>).
</p>
</li>
<xsl:variable name="idp.noaa" select="$idps[not(md:AttributeAuthorityDescriptor)]"/>
<xsl:variable name="idp.noaa.count" select="count($idp.noaa)"/>
<xsl:if test="$idp.noaa.count != 0">
<li>
<p>
Without attribute authority role: <xsl:value-of select="$idp.noaa.count"/>
(<xsl:value-of select="format-number($idp.noaa.count div $idpCount, '0.0%')"/>).
</p>
<ul>
<xsl:for-each select="$idp.noaa">
<li>
<xsl:value-of select="@ID"/>:
<xsl:value-of select="md:Organization/md:OrganizationDisplayName"/>
</li>
</xsl:for-each>
</ul>
</li>
</xsl:if>
</ul>

<p>SSO protocol support:</p>
Expand Down

0 comments on commit 43a9454

Please sign in to comment.