summaryrefslogtreecommitdiffstats
path: root/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'reports/xsl-transforms/xsl-transform-includes/text-templates.xsl')
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/text-templates.xsl7
1 files changed, 5 insertions, 2 deletions
diff --git a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
index 9f0314e1f..07e060f47 100644
--- a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
@@ -1,12 +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/Stale)+count(Statistics/Modified) > 0">
+<xsl:if test="count(Statistics/Good)+count(Statistics/Bad)+count(Statistics/Extra)+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:text>Time Ran: <xsl:value-of select="Statistics/@time" />.<xsl:text>
+ </xsl:text>(<xsl:value-of select="Client/@image" />/<xsl:value-of select="Client/@profile" />)
<xsl:apply-templates select="Statistics" />
</xsl:if>
</xsl:template>
@@ -17,6 +18,7 @@
<xsl:apply-templates select="Bad" />
<xsl:apply-templates select="Modified" />
<xsl:apply-templates select="Extra" />
+
</xsl:template>
<xsl:template match="Good">
<xsl:text> </xsl:text>Node is clean; Everything has been satisfactorily configured.
@@ -85,6 +87,7 @@
</xsl:apply-templates>
</xsl:template>
+
<xsl:template match="ConfigFile">
<xsl:text>
</xsl:text>Config File: <xsl:value-of select="@name"/>