mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
6c05e292fc
svn path=/trunk/icecast/; revision=4707
60 lines
1.9 KiB
XML
Executable File
60 lines
1.9 KiB
XML
Executable File
<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>
|