forked from Kitware/CDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewBuildError.xsl
246 lines (219 loc) · 7.13 KB
/
viewBuildError.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
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:include href="header.xsl"/>
<xsl:include href="footer.xsl"/>
<xsl:include href="local/header.xsl"/>
<xsl:include href="local/footer.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>
<xsl:call-template name="headscripts"/>
<script src="javascript/cdashBuildError.js" type="text/javascript" charset="utf-8"></script>
</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/>
<table border="0">
<tr><td align="left"><b>Site: </b><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="left"><b>Build Name: </b><xsl:value-of select="cdash/build/buildname"/></td></tr>
<tr><td align="left"><b>Build Time: </b><xsl:value-of select="cdash/build/starttime"/></td></tr>
<tr><td align="left"> </td></tr>
<tr><td align="left">Found <b><xsl:value-of select="count(cdash/errors/error)"/></b><xsl:text> </xsl:text><xsl:value-of select="cdash/errortypename"/>s</td></tr>
<tr><td align="left"><a>
<xsl:attribute name="href">viewBuildError.php?type=<xsl:value-of select="cdash/nonerrortype"/>&buildid=<xsl:value-of select="cdash/build/buildid"/></xsl:attribute>
<xsl:value-of select="cdash/nonerrortypename"/>s</a> are here.</td></tr>
</table>
<xsl:for-each select="cdash/errors/error">
<br/>
<table style="table-layout:fixed; width:100%">
<colgroup>
<col style="width: 115px"/>
<col/>
</colgroup>
<xsl:if test="sourceline">
<tr style="background-color: #b0c4de; font-weight: bold">
<th colspan="2" align="left">
<xsl:if test="new=-1"><img src="images/flaggreen.gif" title="flag"/></xsl:if>
<xsl:if test="new=1"><img src="images/flag.png" title="flag"/></xsl:if>
<xsl:if test="new=0"><pre> </pre></xsl:if>
</th>
</tr>
</xsl:if>
<xsl:if test="targetname">
<tr style="background-color: #b0c4de; font-weight: bold">
<th colspan="2">
<xsl:value-of select="/cdash/errortypename"/> while building
<code><xsl:value-of select="language"/></code>
<xsl:text disable-output-escaping="yes">&nbsp;</xsl:text>
<xsl:value-of select="outputtype"/>
<xsl:text disable-output-escaping="yes">&nbsp;</xsl:text>
"<code><xsl:value-of select="outputfile"/></code>"
in target <code><xsl:value-of select="targetname"/></code>.
</th>
</tr>
</xsl:if>
<xsl:if test="string-length(cvsurl) > 0">
<tr>
<th class="measurement"><nobr> Repository </nobr></th>
<td>
<a>
<xsl:attribute name="href">
<xsl:value-of select="cvsurl"/>
</xsl:attribute>
<xsl:value-of select="cvsurl"/>
</a>
</td>
</tr>
</xsl:if>
<xsl:if test="logline">
<tr>
<th class="measurement"><nobr>Build Log Line </nobr></th>
<td>
<xsl:value-of select="logline"/>
</td>
</tr>
</xsl:if>
<xsl:if test="precontext or text or postcontext">
<tr>
<th class="measurement"><nobr> <xsl:value-of select="/cdash/errortypename"/> </nobr></th>
<td>
<pre class="compiler-output">
<xsl:value-of select="precontext" disable-output-escaping="yes" />
</pre>
<b>
<pre class="compiler-output">
<xsl:value-of select="text" disable-output-escaping="yes" />
</pre>
</b>
<pre class="compiler-output">
<xsl:value-of select="postcontext" disable-output-escaping="yes" />
</pre>
</td>
</tr>
</xsl:if>
<xsl:if test="string-length(sourcefile)>0 and targetname">
<tr>
<th class="measurement"><nobr>Source File</nobr></th><td><xsl:value-of select="sourcefile"/></td>
</tr>
</xsl:if>
<xsl:if test="labels/label">
<tr>
<th class="measurement">
<xsl:if test="count(labels/label) = 1"><nobr>Label</nobr></xsl:if>
<xsl:if test="count(labels/label) > 1"><nobr>Labels</nobr></xsl:if>
</th>
<td>
<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>
</tr>
</xsl:if>
<xsl:if test="argumentfirst">
<tr>
<th class="measurement" style="width: 1%">Command</th>
<td>
<div style="margin-left: 25px; text-indent: -25px;">
<xsl:choose>
<xsl:when test="argument">
<span>
<xsl:attribute name="id">showarguments_<xsl:value-of select="id"/></xsl:attribute>
<xsl:if test="count(argument)<4">
<xsl:attribute name="style">display:none</xsl:attribute>
</xsl:if>
<a href="#">
<xsl:attribute name="onclick">return showArguments(<xsl:value-of select="id"/>);</xsl:attribute>
[+]</a>
<xsl:text disable-output-escaping="yes"> </xsl:text><nobr>"<font class="argument"><xsl:value-of select="argumentfirst"/></font>"</nobr>
</span>
<span>
<xsl:attribute name="id">argumentlist_<xsl:value-of select="id"/></xsl:attribute>
<xsl:if test="count(argument)>3">
<xsl:attribute name="style">display:none</xsl:attribute>
</xsl:if>
<a href="#">
<xsl:attribute name="onclick">return hideArguments(<xsl:value-of select="id"/>);</xsl:attribute>
[-]</a>
<xsl:text disable-output-escaping="yes"> </xsl:text><nobr>"<font class="argument"><xsl:value-of select="argumentfirst"/></font>"</nobr>
<xsl:for-each select="argument">
<xsl:text disable-output-escaping="yes"> </xsl:text><nobr>"<font class="argument"><xsl:value-of select="."/></font>"</nobr>
</xsl:for-each>
</span>
</xsl:when>
<xsl:otherwise>
<nobr>"<font class="argument"><xsl:value-of select="argumentfirst"/></font>"</nobr>
<xsl:for-each select="argument">
<xsl:text disable-output-escaping="yes"> </xsl:text><nobr>"<font class="argument"><xsl:value-of select="."/></font>"</nobr>
</xsl:for-each>
</xsl:otherwise>
</xsl:choose>
</div>
</td>
</tr>
</xsl:if>
<xsl:if test="workingdirectory">
<tr>
<th class="measurement" style="width: 1%">Directory</th><td><xsl:value-of select="workingdirectory"/></td>
</tr>
</xsl:if>
<xsl:if test="exitcondition">
<tr>
<th class="measurement"><nobr>Exit Condition</nobr></th><td><xsl:value-of select="exitcondition"/></td>
</tr>
</xsl:if>
<xsl:if test="stdoutput">
<tr>
<th class="measurement"><nobr> Standard Output </nobr></th>
<td>
<pre class="compiler-output" name="stdout">
<xsl:value-of select="stdoutput"/>
</pre>
</td>
</tr>
</xsl:if>
<xsl:if test="stderror">
<tr>
<th class="measurement"><nobr>Standard Error</nobr></th>
<td>
<pre class="compiler-output" name="stderr">
<xsl:value-of select="stderror" disable-output-escaping="yes" />
</pre>
</td>
</tr>
</xsl:if>
</table>
</xsl:for-each>
<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:stylesheet>