1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

Corrected stats.xsl to correct invalid markup

Correcting that the unordered list for authentication was wrapped in a table,
which is invalid.
This commit is contained in:
Marvin Scholz 2014-12-28 17:07:44 +01:00
parent 5a9f0426a7
commit a546d3cc8a

View File

@ -39,22 +39,20 @@
</tbody> </tbody>
</table> </table>
<xsl:if test="authentication"> <xsl:if test="authentication">
<table> <ul>
<ul> <xsl:for-each select="authentication/role">
<xsl:for-each select="authentication/role"> <li>
<li> Role
Role <xsl:if test="@name">
<xsl:if test="@name"> <xsl:value-of select="@name" />
<xsl:value-of select="@name" /> </xsl:if>
</xsl:if> of type <xsl:value-of select="@type" />:
of type <xsl:value-of select="@type" />: <xsl:if test="@management-url">
<xsl:if test="@management-url"> <a href="{@management-url}">Manage Authentication</a>
<a href="{@management-url}">Manage Authentication</a> </xsl:if>
</xsl:if> </li>
</li> </xsl:for-each>
</xsl:for-each> </ul>
</ul>
</table>
</xsl:if> </xsl:if>
</div> </div>
<!--end global server stats--> <!--end global server stats-->