2003-05-15 17:01:30 -04:00
|
|
|
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
2004-10-07 18:19:43 -04:00
|
|
|
<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" />
|
2003-05-15 17:01:30 -04:00
|
|
|
<xsl:template match = "/icestats" >
|
2004-02-04 18:56:23 -05:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Icecast Streaming Media Server</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
|
|
</head>
|
2004-10-07 18:19:43 -04:00
|
|
|
<body>
|
2004-02-04 18:56:23 -05:00
|
|
|
<center>
|
|
|
|
<table border="0" cellpadding="1" cellspacing="3">
|
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<a class="nav" href="listmounts.xsl">List Mountpoints</a> |
|
|
|
|
<a class="nav" href="moveclients.xsl">Move Listeners</a> |
|
|
|
|
<a class="nav" href="stats.xsl">Stats</a> |
|
|
|
|
<a class="nav" href="/status.xsl">Status Page</a>
|
|
|
|
</td></tr>
|
|
|
|
</table>
|
|
|
|
</center>
|
|
|
|
<h2>Icecast Status Page</h2>
|
|
|
|
<div class="roundcont">
|
|
|
|
<div class="roundtop">
|
|
|
|
<img src="/corner_topleft.jpg" class="corner" style="display: none" />
|
|
|
|
</div>
|
|
|
|
<div class="newscontent">
|
|
|
|
<h3>Global Server Stats</h3>
|
|
|
|
<table border="0" cellpadding="4">
|
2003-05-15 17:01:30 -04:00
|
|
|
<xsl:for-each select="/icestats">
|
|
|
|
<xsl:for-each select="*">
|
|
|
|
<xsl:if test = "name()!='source'">
|
2004-02-04 18:56:23 -05:00
|
|
|
<tr>
|
|
|
|
<td width="130"><xsl:value-of select="name()" /></td>
|
|
|
|
<td class="streamdata"><xsl:value-of select="." /></td>
|
|
|
|
</tr>
|
2003-05-15 17:01:30 -04:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:for-each>
|
|
|
|
</xsl:for-each>
|
|
|
|
</table>
|
2004-02-04 18:56:23 -05:00
|
|
|
</div>
|
|
|
|
<div class="roundbottom">
|
|
|
|
<img src="/corner_bottomleft.jpg" class="corner" style="display: none" />
|
|
|
|
</div>
|
|
|
|
</div>
|
2004-10-07 18:19:43 -04:00
|
|
|
<br />
|
|
|
|
<br />
|
2004-02-04 18:56:23 -05:00
|
|
|
|
|
|
|
<div class="roundcont">
|
|
|
|
<div class="roundtop">
|
|
|
|
<img src="/corner_topleft.jpg" class="corner" style="display: none" />
|
|
|
|
</div>
|
|
|
|
<div class="newscontent">
|
2003-05-15 17:01:30 -04:00
|
|
|
<xsl:for-each select="source">
|
|
|
|
<xsl:if test = "listeners!=''">
|
2004-02-04 18:56:23 -05:00
|
|
|
<h3>
|
|
|
|
<xsl:if test="server_name"><xsl:value-of select="server_name" /> </xsl:if>
|
2004-04-30 10:36:07 -04:00
|
|
|
(<xsl:value-of select="@mount" />)
|
|
|
|
<xsl:if test="authenticator"> <a href="manageauth.xsl?mount={@mount}"><img border="0" src="/key.gif"/></a> </xsl:if>
|
|
|
|
</h3>
|
2004-02-04 18:56:23 -05:00
|
|
|
<table border="0" cellpadding="1" cellspacing="5" bgcolor="444444">
|
|
|
|
<tr>
|
|
|
|
<td align="center">
|
|
|
|
<a class="nav2" href="listclients.xsl?mount={@mount}">List Clients</a> |
|
|
|
|
<a class="nav2" href="moveclients.xsl?mount={@mount}">Move MountPoints</a> |
|
2004-12-07 17:29:46 -05:00
|
|
|
<a class="nav2" href="updatemetadata.xsl?mount={@mount}">Update Metadata</a> |
|
2004-02-04 18:56:23 -05:00
|
|
|
<a class="nav2" href="killsource.xsl?mount={@mount}">Kill Source</a>
|
2004-04-30 10:36:07 -04:00
|
|
|
<xsl:if test="authenticator"> | <a class="nav2" href="manageauth.xsl?mount={@mount}">Manage Authentication</a></xsl:if>
|
2004-02-04 18:56:23 -05:00
|
|
|
</td></tr>
|
|
|
|
</table>
|
2004-10-07 18:19:43 -04:00
|
|
|
<br />
|
2004-02-04 18:56:23 -05:00
|
|
|
<table cellpadding="5" cellspacing="0" border="0">
|
|
|
|
<xsl:for-each select="*">
|
2003-05-15 17:01:30 -04:00
|
|
|
<tr>
|
2004-02-04 18:56:23 -05:00
|
|
|
<td width="130"><xsl:value-of select="name()" /></td>
|
|
|
|
<td class="streamdata"><xsl:value-of select="." /></td>
|
2003-05-15 17:01:30 -04:00
|
|
|
</tr>
|
2004-02-04 18:56:23 -05:00
|
|
|
</xsl:for-each>
|
2003-05-15 17:01:30 -04:00
|
|
|
</table>
|
2004-10-07 18:19:43 -04:00
|
|
|
<br />
|
|
|
|
<br />
|
2003-05-15 17:01:30 -04:00
|
|
|
</xsl:if>
|
|
|
|
</xsl:for-each>
|
2004-11-08 12:41:00 -05:00
|
|
|
<xsl:text disable-output-escaping="yes">&</xsl:text>nbsp;
|
2004-02-04 18:56:23 -05:00
|
|
|
</div>
|
|
|
|
<div class="roundbottom">
|
|
|
|
<img src="/corner_bottomleft.jpg" class="corner" style="display: none" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="poster">
|
|
|
|
<img align="left" src="/icecast.png" />Support icecast development at <a class="nav" href="http://www.icecast.org">www.icecast.org</a></div>
|
|
|
|
</body>
|
|
|
|
</html>
|
2003-05-15 17:01:30 -04:00
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|