diff options
author | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2006-01-09 20:51:46 +0000 |
---|---|---|
committer | Joey Hagedorn <hagedorn@mcs.anl.gov> | 2006-01-09 20:51:46 +0000 |
commit | e1ba4d1443e2fae8b626d5282dd633aab2144dcb (patch) | |
tree | 734d279252dde80b33562e3c1b26e45e2c54cf7d | |
parent | bafc6ef50ec2f2969be73e645cc3cec588abc67f (diff) | |
download | bcfg2-e1ba4d1443e2fae8b626d5282dd633aab2144dcb.tar.gz bcfg2-e1ba4d1443e2fae8b626d5282dd633aab2144dcb.tar.bz2 bcfg2-e1ba4d1443e2fae8b626d5282dd633aab2144dcb.zip |
Edited transform includes to not reference image in reports-- to reflect metadata 3.0
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1658 ce84e21b-d406-0410-9b95-82705330c041
-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 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl index cfe494b05..45f85c592 100644 --- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl +++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl @@ -5,7 +5,7 @@ <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/@image" />/<xsl:value-of select="Client/@profile" />)</span> + <span class="configbox">(<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> diff --git a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl index c393692a4..c346b8bec 100644 --- a/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl +++ b/reports/xsl-transforms/xsl-transform-includes/text-templates.xsl @@ -7,7 +7,7 @@ </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/@image" />/<xsl:value-of select="Client/@profile" />) + </xsl:text>(<xsl:value-of select="Client/@profile" />) <xsl:apply-templates select="Statistics" /> </xsl:if> </xsl:template> |