1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-11-03 04:17:17 -05:00

web page fixup

svn path=/icecast/trunk/icecast/; revision=14315
This commit is contained in:
Karl Heyes 2007-12-19 19:23:43 +00:00
parent 2ccfe3caa5
commit eba4314724

View File

@ -1,5 +1,5 @@
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" > <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:output omit-xml-declaration="no" method="html" 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" > <xsl:template match = "/icestats" >
<html> <html>
<head> <head>
@ -38,22 +38,22 @@
<h3>Version Information</h3> <h3>Version Information</h3>
<table border="0" cellpadding="4"> <table border="0" cellpadding="4">
<xsl:for-each select="/icestats"> <xsl:for-each select="/icestats">
<xsl:for-each select="server">
<xsl:if test = "name()!='source'">
<tr> <tr>
<td width="130">Build</td> <td width="130">Location</td>
<td class="streamdata"><xsl:value-of select="." /></td> <td class="streamdata"><xsl:value-of select="location" /></td>
</tr> </tr>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="server_start">
<xsl:if test = "name()!='source'">
<tr> <tr>
<td width="130">Server Uptime</td> <td width="130">Admin</td>
<td class="streamdata"><xsl:value-of select="." /></td> <td class="streamdata"><xsl:value-of select="admin" /></td>
</tr>
<tr>
<td width="130">Host</td>
<td class="streamdata"><xsl:value-of select="host" /></td>
</tr>
<tr>
<td width="130">Version</td>
<td class="streamdata"><xsl:value-of select="server_id" /></td>
</tr> </tr>
</xsl:if>
</xsl:for-each>
</xsl:for-each> </xsl:for-each>
<tr> <tr>
<td width="130">Download</td> <td width="130">Download</td>
@ -88,4 +88,4 @@
</body> </body>
</html> </html>
</xsl:template> </xsl:template>
</xsl:stylesheet> </xsl:stylesheet>