summaryrefslogtreecommitdiffstats
path: root/reports/xsl-transforms
diff options
context:
space:
mode:
authorJoey Hagedorn <hagedorn@mcs.anl.gov>2006-01-10 20:20:43 +0000
committerJoey Hagedorn <hagedorn@mcs.anl.gov>2006-01-10 20:20:43 +0000
commitb00d8cea72996663a41b7ed9e74daefb985ba1df (patch)
tree34d6fa869eb418c9c5eb3aedfcd29e8c26c737ae /reports/xsl-transforms
parent677ba9b6057e10f36a77177e426d4660bcb93359 (diff)
downloadbcfg2-b00d8cea72996663a41b7ed9e74daefb985ba1df.tar.gz
bcfg2-b00d8cea72996663a41b7ed9e74daefb985ba1df.tar.bz2
bcfg2-b00d8cea72996663a41b7ed9e74daefb985ba1df.zip
For real this time, everything is reverted to the proper version
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1666 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'reports/xsl-transforms')
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/html-templates.xsl6
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/text-templates.xsl4
2 files changed, 5 insertions, 5 deletions
diff --git a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
index 7e9e08055..cfe494b05 100644
--- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
@@ -3,10 +3,10 @@
<xsl:template match="Node">
<xsl:if test="count(Statistics/Good)+count(Statistics/Bad)+count(Statistics/Extra)+count(Statistics/Modified)+count(Statistics/Stale) > 0">
- <div class="nodebox" name="{Client/@name}">
+ <div class="nodebox" name="{HostInfo/@fqdn}">
<span class="notebox">Time Ran: <xsl:value-of select="Statistics/@time" /></span>
- <span class="configbox">(<xsl:value-of select="Client/@profile" />)</span>
- <h2>Node: <span class="nodename"><xsl:value-of select="Client/@name" /></span></h2>
+ <span class="configbox">(<xsl:value-of select="Client/@image" />/<xsl:value-of select="Client/@profile" />)</span>
+ <h2>Node: <span class="nodename"><xsl:value-of select="HostInfo/@fqdn" /></span></h2>
<xsl:apply-templates select="Statistics" />
</div>
</xsl:if>
diff --git a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
index 8b820415b..c393692a4 100644
--- a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl
@@ -5,9 +5,9 @@
<xsl:text>
- </xsl:text>Node:<xsl:value-of select="Client/@name" /><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>
- </xsl:text>(<xsl:value-of select="Client/@profile" />)
+ </xsl:text>(<xsl:value-of select="Client/@image" />/<xsl:value-of select="Client/@profile" />)
<xsl:apply-templates select="Statistics" />
</xsl:if>
</xsl:template>