mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
40 lines
1.7 KiB
XML
40 lines
1.7 KiB
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<!-- Import include files -->
|
|
<xsl:include href="includes/page.xsl"/>
|
|
<xsl:include href="includes/mountnav.xsl"/>
|
|
<xsl:include href="includes/player.xsl"/>
|
|
<xsl:include href="includes/authlist.xsl"/>
|
|
|
|
<xsl:variable name="title">Active Mountpoints</xsl:variable>
|
|
|
|
<xsl:template name="content">
|
|
<div class="section">
|
|
<h2><xsl:value-of select="$title" /></h2>
|
|
<xsl:choose>
|
|
<xsl:when test="source">
|
|
<xsl:for-each select="source">
|
|
<section class="box">
|
|
<h3 class="box_title">Mountpoint <code><xsl:value-of select="@mount" /></code></h3>
|
|
<!-- Mount nav -->
|
|
<xsl:call-template name="mountnav" />
|
|
<xsl:call-template name="player" />
|
|
<p><xsl:value-of select="listeners" /> Listener(s)</p>
|
|
|
|
<!-- Mount Authentication -->
|
|
<xsl:if test="authentication">
|
|
<h4>Mount Authentication</h4>
|
|
<xsl:call-template name="authlist" />
|
|
</xsl:if>
|
|
</section>
|
|
</xsl:for-each>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<aside class="info">
|
|
<strong>No mounts!</strong> There are no active mountpoints.
|
|
</aside>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</div>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|