mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
1c17ddad0e
Request http://host:port/status.xsl to get a nicely formatted html status display in your web browser. svn path=/trunk/icecast/; revision=3786
13 lines
732 B
XML
Executable File
13 lines
732 B
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 = "/icestats" >
|
|
<pre>
|
|
MountPoint,Connections,Stream Name,Current Listeners,Description,Currently Playing,Stream URL
|
|
Global,Client:<xsl:value-of select="connections" /> Source: <xsl:value-of select="source_connections" />,,<xsl:value-of select="listeners" />,,
|
|
<xsl:for-each select="source">
|
|
<xsl:value-of select="@mount" />,,<xsl:value-of select="name" />,<xsl:value-of select="listeners" />,<xsl:value-of select="description" />,<xsl:value-of select="artist" /> - <xsl:value-of select="title" />,<xsl:value-of select="url" />
|
|
</xsl:for-each>
|
|
</pre>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|