mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
96 lines
3.1 KiB
XML
96 lines
3.1 KiB
XML
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
|
<xsl:output omit-xml-declaration="no" method="xml" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" indent="yes" encoding="UTF-8" />
|
|
<xsl:template match = "/icestats" >
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Icecast Streaming Media Server</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
|
</head>
|
|
<body>
|
|
<h1>Icecast2 Admin</h1>
|
|
<!--index header menu -->
|
|
<div id="menu">
|
|
<ul>
|
|
<li><a href="stats.xsl">Admin Home</a></li>
|
|
<li><a href="listmounts.xsl">Mountpoint List</a></li>
|
|
<li><a href="/status.xsl">Public Home</a></li>
|
|
</ul>
|
|
</div>
|
|
<!--end index header menu -->
|
|
<h2>Listener Stats</h2>
|
|
<xsl:for-each select="source">
|
|
<div class="roundbox">
|
|
<div class="mounthead">
|
|
<h3>Mountpoint <xsl:value-of select="@mount" /></h3>
|
|
<div class="right">
|
|
<xsl:choose>
|
|
<xsl:when test="authenticator">
|
|
<a class="auth" href="/auth.xsl">Login</a>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<ul class="mountlist">
|
|
<li><a class="play" href="{@mount}.m3u">M3U</a></li>
|
|
<li><a class="play" href="{@mount}.xspf">XSPF</a></li>
|
|
<li><a class="play" href="{@mount}.vclt">VCLT</a></li>
|
|
</ul>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</div>
|
|
</div>
|
|
<div class="mountcont">
|
|
<ul class="nav">
|
|
<li class="active"><a href="listclients.xsl?mount={@mount}">List Clients</a></li>
|
|
<li><a href="moveclients.xsl?mount={@mount}">Move Listeners</a></li>
|
|
<li><a href="updatemetadata.xsl?mount={@mount}">Update Metadata</a></li>
|
|
<xsl:if test="authenticator">
|
|
<li><a href="manageauth.xsl?mount={@mount}">Manage Authentication</a></li>
|
|
</xsl:if>
|
|
<li><a href="killsource.xsl?mount={@mount}">Kill Source</a></li>
|
|
</ul>
|
|
<xsl:choose>
|
|
<xsl:when test="listener">
|
|
<div class="scrolltable">
|
|
<table class="colortable">
|
|
<thead>
|
|
<tr>
|
|
<td>IP</td>
|
|
<td>Sec. connected</td>
|
|
<td>User Agent</td>
|
|
<td>Action</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:variable name = "themount"><xsl:value-of select="@mount" /></xsl:variable>
|
|
<xsl:for-each select="listener">
|
|
<tr>
|
|
<td>
|
|
<xsl:value-of select="IP" />
|
|
<xsl:if test="username">
|
|
(<xsl:value-of select="username" />)
|
|
</xsl:if>
|
|
</td>
|
|
<td><xsl:value-of select="Connected" /></td>
|
|
<td><xsl:value-of select="UserAgent" /></td>
|
|
<td><a href="killclient.xsl?mount={$themount}&id={ID}">Kick</a></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<p>No listeners connected</p>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</div>
|
|
</div>
|
|
</xsl:for-each>
|
|
<div id="footer">
|
|
Support icecast development at <a href="https://www.icecast.org/">www.icecast.org</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|