forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewTest.xsl
283 lines (265 loc) · 9.39 KB
/
viewTest.xsl
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:include href="filterdataTemplate.xsl"/>
<xsl:include href="header.xsl"/>
<xsl:include href="footer.xsl"/>
<!-- Local includes -->
<xsl:include href="local/footer.xsl"/>
<xsl:include href="local/header.xsl"/>
<xsl:output method="xml" indent="yes" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="cdash/title"/></title>
<meta name="robots" content="noindex,nofollow" />
<link rel="StyleSheet" type="text/css">
<xsl:attribute name="href">
<xsl:value-of select="cdash/cssfile"/>
</xsl:attribute>
</link>
<script src="javascript/cdashFilters.js" type="text/javascript" charset="utf-8"></script>
<xsl:call-template name="headscripts"/>
</head>
<body bgcolor="#ffffff">
<xsl:choose>
<xsl:when test="/cdash/uselocaldirectory=1">
<xsl:call-template name="header_local"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="header"/>
</xsl:otherwise>
</xsl:choose>
<br/>
<h3>Testing started on <xsl:value-of select="cdash/build/testtime"/></h3>
<table border="0">
<tr><td align="right"><b>Site Name:</b></td><td>
<a><xsl:attribute name="href">viewSite.php?siteid=<xsl:value-of select="cdash/build/siteid"/></xsl:attribute>
<xsl:value-of select="cdash/build/site"/></a>
</td></tr>
<tr><td align="right"><b>Build Name:</b></td><td>
<a><xsl:attribute name="href">buildSummary.php?buildid=<xsl:value-of select="cdash/build/buildid"/></xsl:attribute>
<xsl:value-of select="cdash/build/buildname"/></a>
</td></tr>
<tr><td align="right"><b>Total time:</b></td><td><xsl:value-of select="cdash/tests/totaltime"/></td></tr>
<!-- Display Operating System information -->
<xsl:if test="cdash/build/osname">
<tr><td align="right"><b>OS Name:</b></td><td><xsl:value-of select="cdash/build/osname"/></td></tr>
</xsl:if>
<xsl:if test="cdash/build/osplatform">
<tr><td align="right"><b>OS Platform:</b></td><td><xsl:value-of select="cdash/build/osplatform"/></td></tr>
</xsl:if>
<xsl:if test="cdash/build/osrelease">
<tr><td align="right"><b>OS Release:</b></td><td><xsl:value-of select="cdash/build/osrelease"/></td></tr>
</xsl:if>
<xsl:if test="cdash/build/osversion">
<tr><td align="right"><b>OS Version:</b></td><td><xsl:value-of select="cdash/build/osversion"/></td></tr>
</xsl:if>
<!-- Display Compiler information -->
<xsl:if test="cdash/build/compilername">
<tr><td align="right"><b>Compiler Name:</b></td><td><xsl:value-of select="cdash/build/compilername"/></td></tr>
</xsl:if>
<xsl:if test="cdash/build/compilerversion">
<tr><td align="right"><b>Compiler Version:</b></td><td><xsl:value-of select="cdash/build/compilerversion"/></td></tr>
</xsl:if>
</table>
<!-- Filters? -->
<xsl:if test="count(cdash/filterdata) = 1">
<xsl:call-template name="filterdata" select="."/>
</xsl:if>
<div id="labelshowfilters">
<a id="label_showfilters" href="javascript:filters_toggle();">
<xsl:if test="cdash/filterdata/showfilters = 0">Show Filters</xsl:if>
<xsl:if test="cdash/filterdata/showfilters != 0">Hide Filters</xsl:if>
</a>
</div>
<h3>
<xsl:if test="cdash/onlypassed=1">
<xsl:value-of select="cdash/numPassed"/> tests passed.
</xsl:if>
<xsl:if test="cdash/onlyfailed=1">
<xsl:value-of select="cdash/numFailed"/> tests failed.
</xsl:if>
<xsl:if test="cdash/onlynotrun=1">
<xsl:value-of select="cdash/numNotRun"/> tests not run.
</xsl:if>
<xsl:if test="cdash/onlytimestatus=1">
<xsl:value-of select="cdash/numTimeFailed"/> tests failed for timing reasons.
</xsl:if>
<xsl:if test="cdash/onlypassed!=1 and cdash/onlyfailed!=1 and cdash/onlynotrun!=1 and cdash/onlytimestatus!=1">
<xsl:value-of select="cdash/numPassed"/> passed,
<xsl:value-of select="cdash/numFailed"/> failed,
<xsl:value-of select="cdash/numTimeFailed"/> failed for timing,
<xsl:value-of select="cdash/numNotRun"/> not run.
</xsl:if>
</h3>
<!-- Hide a div for javascript to know if time status is on -->
<xsl:if test="/cdash/project/showtesttime=1">
<div id="showtesttimediv" style="display:none"></div>
</xsl:if>
<table id="viewTestTable" cellspacing="0" class="tabb">
<!-- <xsl:attribute name="id">project_<xsl:value-of select="/cdash/dashboard/projectid"/>_1</xsl:attribute> -->
<thead>
<tr class="table-heading1">
<th id="sort_0">Name</th>
<th id="sort_1">Status</th>
<xsl:if test="cdash/project/showtesttime=1">
<th id="sort_2">Time Status</th>
<th id="sort_3">Time</th>
<xsl:if test="/cdash/build/displaylabels=0 and cdash/displaydetails=1">
<th id="sort_4" class="nob">Details</th>
</xsl:if>
<xsl:if test="/cdash/build/displaylabels=1">
<xsl:if test="cdash/displaydetails=1">
<th id="sort_4" >Details</th>
</xsl:if>
<th class="nob">Labels</th>
</xsl:if>
</xsl:if>
<xsl:if test="cdash/project/showtesttime=0">
<th id="sort_2">Time</th>
<xsl:if test="/cdash/build/displaylabels=0 and cdash/displaydetails=1">
<th id="sort_3" class="nob">Details</th>
</xsl:if>
<xsl:if test="/cdash/build/displaylabels=1">
<xsl:if test="cdash/displaydetails=1">
<th id="sort_3">Details</th>
</xsl:if>
<th class="nob">Labels</th>
</xsl:if>
</xsl:if>
<xsl:for-each select='/cdash/columnname'>
<xsl:variable name='index_col' select='count(preceding-sibling::columnname) + 1'/>
<xsl:choose>
<xsl:when test="/cdash/onlyfailed=1 or /cdash/onlypassed=1">
<xsl:choose>
<xsl:when test="/cdash/showtesttime=0 or /cdash/onlypassed=1">
<th>
<xsl:attribute name="id">sort_<xsl:value-of select="$index_col+3" /></xsl:attribute>
<xsl:value-of select="/cdash/columnname[position()=$index_col]" />
</th>
</xsl:when>
<xsl:otherwise>
<th>
<xsl:attribute name="id">sort_<xsl:value-of select="$index_col+4" /></xsl:attribute>
<xsl:value-of select="/cdash/columnname[position()=$index_col]" />
</th>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<th>
<xsl:attribute name="id">sort_<xsl:value-of select="$index_col+4" /></xsl:attribute>
<xsl:value-of select="/cdash/columnname[position()=$index_col]" />
</th>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</tr>
</thead>
<xsl:for-each select="cdash/tests/test">
<tr>
<xsl:attribute name="class">
<xsl:value-of select="class"/>
</xsl:attribute>
<td>
<xsl:if test="new=1">
<xsl:choose>
<xsl:when test="timestatus='Passed' and status='Passed'">
<img src="images/flaggreen.gif" title="flag"/>
</xsl:when>
<xsl:otherwise>
<img src="images/flag.png" title="flag"/>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<a>
<xsl:attribute name="href">
<xsl:value-of select="summaryLink"/>
</xsl:attribute>
<xsl:value-of select="name"/>
</a>
</td>
<td>
<xsl:attribute name="align">center</xsl:attribute>
<xsl:attribute name="class">
<xsl:value-of select="statusclass"/>
</xsl:attribute>
<a>
<xsl:attribute name="href">
<xsl:value-of select="detailsLink"/>
</xsl:attribute>
<xsl:value-of select="status"/>
</a>
</td>
<xsl:if test="/cdash/project/showtesttime=1">
<td>
<xsl:attribute name="align">center</xsl:attribute>
<xsl:attribute name="class">
<xsl:value-of select="timestatusclass"/>
</xsl:attribute>
<a>
<xsl:attribute name="href">
<xsl:value-of select="detailsLink"/>
</xsl:attribute>
<xsl:value-of select="timestatus"/>
</a>
</td>
</xsl:if>
<td align="right">
<span style="display:none"><xsl:value-of select="execTimeFull"/></span>
<xsl:value-of select="execTime"/>
</td>
<xsl:if test="/cdash/displaydetails=1">
<td>
<xsl:value-of select="details"/>
</td>
</xsl:if>
<xsl:if test="/cdash/build/displaylabels=1">
<td align="left" class="nob">
<xsl:for-each select="labels/label">
<xsl:if test="position() > 1">,
<xsl:text disable-output-escaping="yes"> </xsl:text>
</xsl:if>
<nobr><xsl:value-of select="."/></nobr>
</xsl:for-each>
</td>
</xsl:if>
<xsl:call-template name="recurse">
<xsl:with-param name="num" select="number('1')" />
</xsl:call-template>
</tr>
</xsl:for-each>
</table>
<br/>
<a><xsl:attribute name="href"><xsl:value-of select="cdash/csvlink"/></xsl:attribute>Download Table as CSV File</a>
<br/>
<!-- FOOTER -->
<br/>
<xsl:choose>
<xsl:when test="/cdash/uselocaldirectory=1">
<xsl:call-template name="footer_local"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="footer"/>
</xsl:otherwise>
</xsl:choose>
</body>
</html>
</xsl:template>
<xsl:template name="recurse">
<xsl:param name="num" />
<xsl:variable name="colcount"><xsl:value-of select='/cdash/columncount'/></xsl:variable>
<xsl:if test="not($num = $colcount+1)">
<td align="right">
<xsl:if test='id = /cdash/etests/etest/testid'>
<xsl:variable name='index' select='$colcount*count(preceding-sibling::test[id = /cdash/etests/etest/testid])+$num' />
<xsl:value-of select="/cdash/etests/etest[position()=$index]/value" />
</xsl:if>
</td>
<xsl:call-template name="recurse">
<xsl:with-param name="num" select="$num + 1" />
</xsl:call-template>
</xsl:if>
</xsl:template>
</xsl:stylesheet>