summaryrefslogtreecommitdiffstats
path: root/reports/xsl-transforms/nodes-digest-html.xsl
blob: 3031a7a0d03e1230e633115f04d18c7744245264 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?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:include href="xsl-transform-includes/html-templates.xsl" />
    <xsl:output method="xml" media-type="text/html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
    <xsl:template match="Report">
        <html>
              <head>
                    <title>
                        <xsl:choose>
                            <xsl:when test="count(/Report/Node/Statistics/Bad) > 0">BCFG Nightly Errors (<xsl:value-of select="@name" />)</xsl:when>
                            <xsl:otherwise>BCFG Nightly Errors (<xsl:value-of select="@name" />)</xsl:otherwise>
                        </xsl:choose>
                    </title>
                    
                    <link rel="stylesheet" type="text/css" href="web-rprt-srcs/boxypastel.css" />
                    <script type="text/javascript" src="web-rprt-srcs/main.js" />
              </head>
              <body bgcolor="#ffffff">
                    <div class="header">
                        <h1>
                            <xsl:choose>
                                <xsl:when test="count(/Report/Node/Statistics/Bad) > 0">
                                    BCFG Nightly Errors (<xsl:value-of select="@name" />)
                                </xsl:when>
                                <xsl:otherwise>
                                    BCFG Nightly Errors (<xsl:value-of select="@name" />)
                                </xsl:otherwise>
                            </xsl:choose>
                        </h1><span class="notebox">Report Run @ <xsl:value-of select="@time" /></span>
                    </div>
                    <div class="nodebox">
                        <h2>Summary:</h2>

                        <p class="indented"><xsl:value-of select="count(/Report/Node)" /> Nodes were included in your report.</p>
                        <xsl:if test="count(/Report/Node/Statistics/Good) > 0">
                            <div class="clean">
                                <span class="nodelisttitle"><xsl:value-of select="count(/Report/Node/Statistics/Good)" /> nodes are clean.<br /></span>
                            </div>
                         </xsl:if>
                         
                         <xsl:if test="count(/Report/Node/Statistics/Bad) > 0">
                            <div class="bad">
                                <span class="nodelisttitle"><xsl:value-of select="count(/Report/Node/Statistics/Bad)" /> nodes are bad.<br /></span>
                            </div>
                         </xsl:if>
                        
                        <xsl:if test="count(/Report/Node/Statistics/Modified) > 0">
                            <div class="modified">
                                <span class="nodelisttitle"><xsl:value-of select="count(/Report/Node/Statistics/Modified)" /> nodes were modified in the last run. (includes both good and bad nodes)<br /></span>
                            </div>
                         </xsl:if>
                        
                        <xsl:if test="count(/Report/Node/Statistics/Stale) > 0">
                            <div class="warning">
                                <span class="nodelisttitle"><xsl:value-of select="count(/Report/Node/Statistics/Stale)" /> nodes did not run this calendar day.<br /></span>
                            </div>
                         </xsl:if>
                    </div>
                    
                    <xsl:apply-templates select="Node">
                        <xsl:sort select="Statistics/@state" order="descending"/>
                        <xsl:sort select="@name"/>
                    </xsl:apply-templates>
            <br/>
            <br/>
            <p>
                <a href="http://validator.w3.org/check?uri=referer"><img
                  src="http://www.w3.org/Icons/valid-xhtml10"
                 alt="Valid XHTML 1.0!" height="31" width="88" /></a>
            </p>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>