mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
new admin XSL templates for web interface
svn path=/trunk/icecast/; revision=4707
This commit is contained in:
parent
67f3334add
commit
6c05e292fc
6
admin/Makefile.am
Normal file
6
admin/Makefile.am
Normal file
@ -0,0 +1,6 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
EXTRA_DIST = listclients.xsl listmounts.xsl moveclients.xsl response.xsl stats.xsl
|
||||
|
82
admin/listclients.xsl
Executable file
82
admin/listclients.xsl
Executable file
@ -0,0 +1,82 @@
|
||||
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
||||
<xsl:output method="html" indent="yes" />
|
||||
<xsl:template match = "/icestats" >
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Icecast 2 Stats</title>
|
||||
<style type="text/css">
|
||||
a:hover {color: #BBBBBB;}
|
||||
a {color: black;}
|
||||
.default1 {color: #505050; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.default2 {color: #252525; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.mount {color: White; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.icelogo {color: #0099D4; font-family: Verdana; font-size: 25pt; font-weight: normal; letter-spacing : -2.5px;}
|
||||
.ltv {color: gray; font-family: Verdana; font-size: 9pt; font-weight: normal;}
|
||||
</style>
|
||||
|
||||
</HEAD>
|
||||
<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#EFEFEF" text="#0099D4" link="#0000FF" vlink="#FF00FF" alink="#FF0000" >
|
||||
<font class="default">
|
||||
<table border="0" cellpadding="5" cellspacing="5">
|
||||
<tr>
|
||||
<td><a href="listmounts.xsl">List MountPoints</a></td>
|
||||
<td><a href="moveclients.xsl">Move MountPoints</a></td>
|
||||
<td><a href="stats.xsl">Stats</a></td>
|
||||
<td><a href="/status.xsl">Status Page</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Listener Info</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br></br>
|
||||
<xsl:for-each select="source">
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#5BB2EB" colspan="2" align="center">
|
||||
<center>
|
||||
<font class="mount">Listener Information for <xsl:value-of select="@mount" /> - Total of <xsl:value-of select="Listeners" /><br></br>
|
||||
</font>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#CCDDDD"><b>IP</b></td>
|
||||
<td bgcolor="#CCDDDD"><b>Connected For</b></td>
|
||||
<td bgcolor="#CCDDDD"><b>User Agent</b></td>
|
||||
<td bgcolor="#CCDDDD"><b>Internal ID</b></td>
|
||||
</tr>
|
||||
<xsl:variable name = "themount" ><xsl:value-of select="@mount" /></xsl:variable>
|
||||
<xsl:for-each select="listener">
|
||||
<tr>
|
||||
<td width="30%"><xsl:value-of select="IP" /></td>
|
||||
<td><xsl:value-of select="Connected" /> seconds</td>
|
||||
<td><xsl:value-of select="UserAgent" /></td>
|
||||
<td><a href="killclient.xsl?mount={$themount}&id={ID}">kill</a></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
<br></br>
|
||||
<br></br>
|
||||
<br></br>
|
||||
</xsl:for-each>
|
||||
<font class="mount">
|
||||
<a href="http://www.icecast.org">Icecast development team</a>
|
||||
</font>
|
||||
</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
73
admin/listmounts.xsl
Executable file
73
admin/listmounts.xsl
Executable file
@ -0,0 +1,73 @@
|
||||
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
||||
<xsl:output method="html" indent="yes" />
|
||||
<xsl:template match = "/icestats" >
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Icecast 2 Stats</title>
|
||||
<style type="text/css">
|
||||
a:hover {color: #BBBBBB;}
|
||||
a {color: black;}
|
||||
.default1 {color: #505050; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.default2 {color: #252525; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.mount {color: White; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.icelogo {color: #0099D4; font-family: Verdana; font-size: 25pt; font-weight: normal; letter-spacing : -2.5px;}
|
||||
.ltv {color: gray; font-family: Verdana; font-size: 9pt; font-weight: normal;}
|
||||
</style>
|
||||
|
||||
</HEAD>
|
||||
<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#EFEFEF" text="#0099D4" link="#0000FF" vlink="#FF00FF" alink="#FF0000" >
|
||||
<font class="default">
|
||||
<table border="0" cellpadding="5" cellspacing="5">
|
||||
<tr>
|
||||
<td><a href="listmounts.xsl">List MountPoints</a></td>
|
||||
<td><a href="moveclients.xsl">Move MountPoints</a></td>
|
||||
<td><a href="stats.xsl">Stats</a></td>
|
||||
<td><a href="/status.xsl">Status Page</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Mountpoint Info</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br></br>
|
||||
<xsl:for-each select="source">
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#5BB2EB" align="center" colspan="3">
|
||||
<font class="mount">(<xsl:value-of select="@mount" />) <xsl:value-of select="listeners" /> Listener(s)<br></br>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#CCDDDD">
|
||||
<a href="listclients.xsl?mount={@mount}">List Clients</a>
|
||||
</td>
|
||||
<td bgcolor="#CCDDDD">
|
||||
<a href="moveclients.xsl?mount={@mount}">Move Clients</a>
|
||||
</td>
|
||||
<td bgcolor="#CCDDDD">
|
||||
<a href="killsource.xsl?mount={@mount}">Kill Source</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<br></br>
|
||||
</xsl:for-each>
|
||||
<font class="mount">
|
||||
<a href="http://www.icecast.org">Icecast development team</a>
|
||||
</font>
|
||||
</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
66
admin/moveclients.xsl
Executable file
66
admin/moveclients.xsl
Executable file
@ -0,0 +1,66 @@
|
||||
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
||||
<xsl:output method="html" indent="yes" />
|
||||
<xsl:template match = "/icestats" >
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Icecast 2 Stats</title>
|
||||
<style type="text/css">
|
||||
a:hover {color: #BBBBBB;}
|
||||
a {color: black;}
|
||||
.default1 {color: #505050; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.default2 {color: #252525; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.mount {color: White; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.icelogo {color: #0099D4; font-family: Verdana; font-size: 25pt; font-weight: normal; letter-spacing : -2.5px;}
|
||||
.ltv {color: gray; font-family: Verdana; font-size: 9pt; font-weight: normal;}
|
||||
</style>
|
||||
|
||||
</HEAD>
|
||||
<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#EFEFEF" text="#0099D4" link="#0000FF" vlink="#FF00FF" alink="#FF0000" >
|
||||
<font class="default">
|
||||
<table border="0" cellpadding="5" cellspacing="5">
|
||||
<tr>
|
||||
<td><a href="listmounts.xsl">List MountPoints</a></td>
|
||||
<td><a href="moveclients.xsl">Move MountPoints</a></td>
|
||||
<td><a href="stats.xsl">Stats</a></td>
|
||||
<td><a href="/status.xsl">Status Page</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<xsl:variable name = "currentmount" ><xsl:value-of select="current_source" /></xsl:variable>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Move Clients from (<xsl:value-of select="current_source" />)</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br></br>
|
||||
Move to which mountpoint ?<br></br>
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<xsl:for-each select="source">
|
||||
<tr>
|
||||
<td bgcolor="#CCDDDD" align="left">
|
||||
<font class="mount"><xsl:value-of select="@mount" />
|
||||
</font>
|
||||
</td>
|
||||
<td bgcolor="#CCDDDD"><xsl:value-of select="listeners" /> Listeners</td>
|
||||
<td bgcolor="#CCDDDD"><a href="moveclients.xsl?mount={$currentmount}&destination={@mount}">Move Clients</a></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
<br></br>
|
||||
<br></br>
|
||||
<font class="mount">
|
||||
<a href="http://www.icecast.org">Icecast development team</a>
|
||||
</font>
|
||||
</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
59
admin/response.xsl
Executable file
59
admin/response.xsl
Executable file
@ -0,0 +1,59 @@
|
||||
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
||||
<xsl:output method="html" indent="yes" />
|
||||
<xsl:template match = "/iceresponse" >
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Icecast 2 Response</title>
|
||||
<style type="text/css">
|
||||
a:hover {color: #BBBBBB;}
|
||||
a {color: black;}
|
||||
.default1 {color: #505050; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.default2 {color: #252525; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.mount {color: White; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.icelogo {color: #0099D4; font-family: Verdana; font-size: 25pt; font-weight: normal; letter-spacing : -2.5px;}
|
||||
.ltv {color: gray; font-family: Verdana; font-size: 9pt; font-weight: normal;}
|
||||
</style>
|
||||
|
||||
</HEAD>
|
||||
<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#EFEFEF" text="#0099D4" link="#0000FF" vlink="#FF00FF" alink="#FF0000" >
|
||||
<font class="default">
|
||||
|
||||
<table border="0" cellpadding="5" cellspacing="5" >
|
||||
<tr>
|
||||
<td><a href="listmounts.xsl">List MountPoints</a></td>
|
||||
<td><a href="moveclients.xsl">Move MountPoints</a></td>
|
||||
<td><a href="stats.xsl">Stats</a></td>
|
||||
<td><a href="/status.xsl">Status Page</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Response</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<xsl:for-each select="/iceresponse">
|
||||
<font size="4">
|
||||
Message : <xsl:value-of select="message" /><br></br>
|
||||
Return Code: <xsl:value-of select="return" /><br></br>
|
||||
</font>
|
||||
</xsl:for-each>
|
||||
<br></br>
|
||||
<br></br>
|
||||
<br></br>
|
||||
<font class="mount">
|
||||
<a href="http://www.icecast.org">Icecast development team</a>
|
||||
</font>
|
||||
</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
124
admin/stats.xsl
Executable file
124
admin/stats.xsl
Executable file
@ -0,0 +1,124 @@
|
||||
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
|
||||
<xsl:output method="html" indent="yes" />
|
||||
<xsl:template match = "/icestats" >
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<title>Icecast 2 Stats</title>
|
||||
<style type="text/css">
|
||||
a:hover {color: #BBBBBB;}
|
||||
a {color: black;}
|
||||
.default1 {color: #505050; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.default2 {color: #252525; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.mount {color: White; font-family:Verdana; font-size:9pt; font-weight: normal}
|
||||
.icelogo {color: #0099D4; font-family: Verdana; font-size: 25pt; font-weight: normal; letter-spacing : -2.5px;}
|
||||
.ltv {color: gray; font-family: Verdana; font-size: 9pt; font-weight: normal;}
|
||||
</style>
|
||||
|
||||
</HEAD>
|
||||
<BODY topmargin="0" leftmargin="0" marginheight="0" marginwidth="0" bgcolor="#EFEFEF" text="#0099D4" link="#0000FF" vlink="#FF00FF" alink="#FF0000" >
|
||||
<font class="default">
|
||||
|
||||
<table border="0" cellpadding="5" cellspacing="5" >
|
||||
<tr>
|
||||
<td><a href="listmounts.xsl">List MountPoints</a></td>
|
||||
<td><a href="moveclients.xsl">Move MountPoints</a></td>
|
||||
<td><a href="stats.xsl">Stats</a></td>
|
||||
<td><a href="/status.xsl">Status Page</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Global Server Info</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#5BB2EB">
|
||||
<table width="100%" border="2" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td><font size="+2" color="black">Statistic</font></td>
|
||||
<td><font size="+2" color="black">Value</font></td>
|
||||
</tr>
|
||||
<xsl:for-each select="/icestats">
|
||||
<xsl:for-each select="*">
|
||||
<xsl:if test = "name()!='source'">
|
||||
<tr>
|
||||
<td><xsl:value-of select="name()" /></td>
|
||||
<td><xsl:value-of select="." /></td>
|
||||
</tr>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td height="50">
|
||||
<font class="icelogo">Icecast 2 Mountpoint Info</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="14" align="right"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#007B79" height="20" align="center"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<xsl:for-each select="source">
|
||||
<xsl:if test = "listeners!=''">
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#5BB2EB">
|
||||
<table cellpadding="5" cellspacing="0" border="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#5BB2EB" align="center">
|
||||
<font class="mount">(<xsl:value-of select="@mount" />)<br></br>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#CCDDDD">
|
||||
<a href="listclients.xsl?mount={@mount}">List Clients</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table width="100%" border="2" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
|
||||
<tr>
|
||||
<td><font size="+2" color="black">Statistic</font></td>
|
||||
<td><font size="+2" color="black">Value</font></td>
|
||||
</tr>
|
||||
<xsl:for-each select="*">
|
||||
<tr>
|
||||
<td><xsl:value-of select="name()" /></td>
|
||||
<td><xsl:value-of select="." /></td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br></br>
|
||||
<br></br>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<font class="mount">
|
||||
<a href="http://www.icecast.org">Icecast development team</a>
|
||||
</font>
|
||||
</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
Loading…
Reference in New Issue
Block a user