summaryrefslogtreecommitdiffstats
path: root/reports
diff options
context:
space:
mode:
Diffstat (limited to 'reports')
-rw-r--r--reports/xsl-transforms/xsl-transform-includes/html-templates.xsl25
1 files changed, 25 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 2c8fa67ee..48cd52608 100644
--- a/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
+++ b/reports/xsl-transforms/xsl-transform-includes/html-templates.xsl
@@ -16,6 +16,7 @@
<xsl:apply-templates select="Good" />
<xsl:apply-templates select="Bad" />
<xsl:apply-templates select="Modified" />
+ <xsl:apply-templates select="Extra" />
</xsl:template>
@@ -79,6 +80,30 @@
</div>
</xsl:template>
+ <xsl:template match="Extra">
+ <div class="extra">
+ <span class="nodelisttitle"><a href="javascript:toggleLayer('{generate-id(.)}');" title="Click to Expand" class="commentLink"><xsl:value-of select="count(./*)" /></a> extra configuration elements on node.<br /></span>
+
+ <div class="items" id="{generate-id(.)}"><ul class="plain">
+ <xsl:apply-templates select="ConfigFile">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ <xsl:apply-templates select="Directory">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ <xsl:apply-templates select="Package">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ <xsl:apply-templates select="Service">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ <xsl:apply-templates select="SymLink">
+ <xsl:sort select="@name"/>
+ </xsl:apply-templates>
+ </ul></div>
+ </div>
+ </xsl:template>
+
<xsl:template match="ConfigFile">
<li><b>Config File: </b>
<tt><xsl:value-of select="@name"/></tt></li>