mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2025-02-02 15:07:36 -05:00
Initial JSON status transform.
Output roughly limited to data also visible through status.xsl. svn path=/icecast/trunk/icecast/; revision=19110
This commit is contained in:
parent
ddf3f17189
commit
6bd11cc6c7
29
web/status-json.xsl
Normal file
29
web/status-json.xsl
Normal file
@ -0,0 +1,29 @@
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:import href="xml2json.xslt.fail"/>
|
||||
<xsl:output indent="no" omit-xml-declaration="yes" method="text" encoding="UTF-8" media-type="text/javascript"/>
|
||||
<xsl:strip-space elements="*"/>
|
||||
|
||||
<!-- override imported transform variable to enable output -->
|
||||
<xsl:variable name="output">true</xsl:variable>
|
||||
|
||||
<!-- hide certain nodes from all sources -->
|
||||
<xsl:template match="icestats/source/source_ip" />
|
||||
<xsl:template match="icestats/source/slow_listeners" />
|
||||
<xsl:template match="icestats/source/public" />
|
||||
<xsl:template match="icestats/source/*[contains(name(), 'total_bytes')]" />
|
||||
<xsl:template match="icestats/source/user_agent" >
|
||||
<!-- user_agent is most of the time the last node in a mount,
|
||||
if we just delete it, then we will malform the output,
|
||||
so special handling applies. -->
|
||||
<xsl:if test="following-sibling::*"></xsl:if>
|
||||
<xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- hide certain global nodes -->
|
||||
<xsl:template match="icestats/sources" />
|
||||
<xsl:template match="icestats/clients" />
|
||||
<xsl:template match="icestats/stats" />
|
||||
<xsl:template match="icestats/listeners" />
|
||||
<xsl:template match="node()[contains(name(), 'connections')]" />
|
||||
|
||||
</xsl:stylesheet>
|
Loading…
Reference in New Issue
Block a user