diff options
Diffstat (limited to 'reports')
-rw-r--r-- | reports/xsl-transforms/xsl-transform-includes/html-templates.xsl | 2 | ||||
-rw-r--r-- | reports/xsl-transforms/xsl-transform-includes/text-templates.xsl | 11 |
2 files changed, 9 insertions, 4 deletions
diff --git a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl index c0defab29..2c8fa67ee 100644 --- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl +++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl @@ -1,11 +1,13 @@ <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/1999/xhtml"> <xsl:template match="Node"> + <xsl:if test="count(Statistics/Good)+count(Statistics/Bad)+count(Statistics/Modified)+count(Statistics/Stale) > 0"> <div class="nodebox"> <span class="notebox">Time Ran: <xsl:value-of select="Statistics/@time" /></span> <h2>Node: <span class="nodename"><xsl:value-of select="HostInfo/@fqdn" /></span></h2> <xsl:apply-templates select="Statistics" /> </div> + </xsl:if> </xsl:template> <xsl:template match="Statistics"> diff --git a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl index c186b1b79..b72124d3b 100644 --- a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl +++ b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl @@ -1,18 +1,21 @@ <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns="http://www.w3.org/1999/xhtml"> <xsl:template match="Node"> +<xsl:if test="count(Statistics/Good)+count(Statistics/Bad)+count(Statistics/Stale)+count(Statistics/Modified) > 0"> + <xsl:text> </xsl:text>Node:<xsl:value-of select="HostInfo/@fqdn" /><xsl:text> </xsl:text>Time Ran: <xsl:value-of select="Statistics/@time" />. <xsl:apply-templates select="Statistics" /> + </xsl:if> </xsl:template> <xsl:template match="Statistics"> - <xsl:apply-templates select="Stale" /> - <xsl:apply-templates select="Good" /> - <xsl:apply-templates select="Bad" /> - <xsl:apply-templates select="Modified" /> + <xsl:apply-templates select="Stale" /> + <xsl:apply-templates select="Good" /> + <xsl:apply-templates select="Bad" /> + <xsl:apply-templates select="Modified" /> </xsl:template> <xsl:template match="Good"> <xsl:text> </xsl:text>Node is clean; Everything has been satisfactorily configured. |