diff options
author | Sol Jerome <solj@ices.utexas.edu> | 2009-12-19 19:00:39 +0000 |
---|---|---|
committer | Sol Jerome <solj@ices.utexas.edu> | 2009-12-19 19:00:39 +0000 |
commit | b1eef95d3d00595afc53ac0f56c6627cf04fb2c8 (patch) | |
tree | cb9d09dd7cd533aaad92ba0d755d7b34cba0b132 /reports/xsl-transforms/xsl-transform-includes/html-templates.xsl | |
parent | 9c36d72a687ee91e2df294d681df32f41f5c7e56 (diff) | |
download | bcfg2-b1eef95d3d00595afc53ac0f56c6627cf04fb2c8.tar.gz bcfg2-b1eef95d3d00595afc53ac0f56c6627cf04fb2c8.tar.bz2 bcfg2-b1eef95d3d00595afc53ac0f56c6627cf04fb2c8.zip |
Reports: Fix html validation errors for #798 (Patch from Thorsten Lockert)
Signed-off-by: Sol Jerome <solj@ices.utexas.edu>
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5625 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 | 5 |
1 files changed, 3 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 6e358df8b..74adbfe94 100644 --- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl +++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl @@ -3,7 +3,8 @@ <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}"> + <a name="{Client/@name}}"></a> + <div class="nodebox""> <span class="notebox">Time Ran: <xsl:value-of select="Statistics/@time" /></span> <span class="configbox">(<xsl:value-of select="Client/@profile" />)</span> @@ -146,4 +147,4 @@ <li><b>SymLink: </b> <tt><xsl:value-of select="@name"/></tt></li> </xsl:template> -</xsl:stylesheet>
\ No newline at end of file +</xsl:stylesheet> |