Skip to content

Commit

Permalink
Expose Shibboleth 1.3 IdPs.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Dec 5, 2013
1 parent 2a16a47 commit 545d01e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mdx/uk/statistics.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -1930,6 +1930,7 @@
<xsl:with-param name="entities" select="$entities.shib.13"/>
<xsl:with-param name="name">Shibboleth 1.3</xsl:with-param>
<xsl:with-param name="total" select="$entityCount"/>
<xsl:with-param name="show.max" select="10"/>
</xsl:call-template>

<xsl:call-template name="entity.breakdown.by.software.line">
Expand Down Expand Up @@ -2017,14 +2018,15 @@
<xsl:param name="total"/>
<xsl:param name="show">0</xsl:param>
<xsl:param name="show.software">0</xsl:param>
<xsl:param name="show.max">8</xsl:param>
<xsl:variable name="n" select="count($entities)"/>
<xsl:if test="$n != 0">
<li>
<p>
<xsl:value-of select="$name"/>: <xsl:value-of select="$n"/>
(<xsl:value-of select="format-number($n div $total, '0.0%')"/>)
</p>
<xsl:if test="($show != 0) or ($n &lt;= 8)">
<xsl:if test="($show != 0) or ($n &lt;= $show.max)">
<ul>
<xsl:for-each select="$entities">
<li>
Expand Down

0 comments on commit 545d01e

Please sign in to comment.