2014-03-09 08:27:58 -04:00
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
2014-03-09 08:59:33 -04:00
|
|
|
<xsl:import href="xml2json.xslt"/>
|
2014-03-09 09:02:35 -04:00
|
|
|
<xsl:output indent="no" omit-xml-declaration="yes" method="text" encoding="UTF-8" media-type="application/json"/>
|
2014-03-09 08:27:58 -04:00
|
|
|
<xsl:strip-space elements="*"/>
|
|
|
|
|
|
|
|
<!-- override imported transform variable to enable output -->
|
|
|
|
<xsl:variable name="output">true</xsl:variable>
|
|
|
|
|
|
|
|
<!-- hide certain nodes from all sources -->
|
2014-11-02 15:19:29 -05:00
|
|
|
<xsl:template match="icestats/source/max_listeners"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/source/public"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/source/source_ip"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/source/slow_listeners"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/source/*[contains(name(), 'total_bytes')]"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/source/user_agent" ><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
2014-03-09 08:27:58 -04:00
|
|
|
|
|
|
|
<!-- hide certain global nodes -->
|
2014-11-02 15:19:29 -05:00
|
|
|
<xsl:template match="icestats/sources"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/clients"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/stats"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="icestats/listeners"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
|
|
|
<xsl:template match="node()[contains(name(), 'connections')]"><xsl:if test="not(following-sibling::*)">"dummy":null}</xsl:if></xsl:template>
|
2014-03-09 08:27:58 -04:00
|
|
|
|
|
|
|
</xsl:stylesheet>
|