diff options
author | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2005-08-03 03:59:39 +0000 |
---|---|---|
committer | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2005-08-03 03:59:39 +0000 |
commit | d09ef7dbc2bb30a5dcef5125753f7b9d8920c698 (patch) | |
tree | 46da03e077f1edb8c85c17f3e1718abd658e303f /reports/xsl-transforms/xsl-transform-includes/html-templates.xsl | |
parent | c72569a4a0ce25fcce19cf9ed05d98c887584428 (diff) | |
download | bcfg2-d09ef7dbc2bb30a5dcef5125753f7b9d8920c698.tar.gz bcfg2-d09ef7dbc2bb30a5dcef5125753f7b9d8920c698.tar.bz2 bcfg2-d09ef7dbc2bb30a5dcef5125753f7b9d8920c698.zip |
don't display nodes with no content
(Logical change 1.279)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1127 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'reports/xsl-transforms/xsl-transform-includes/html-templates.xsl')
-rw-r--r-- | reports/xsl-transforms/xsl-transform-includes/html-templates.xsl | 2 |
1 files changed, 2 insertions, 0 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"> |