Salome HOME
29e3ee46632d6a755c2589ed7b246d60fc09469d
[tools/sat.git] / src / xsl / jobs_board_report.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5 <xsl:template match="/">
6 <html>
7 <head>
8 <title>Jobs <xsl:value-of select="//JobsReport/board/."/> report</title>
9 <style type="text/css">
10     <!-- styles for commands results -->
11     .OKday        { background-color:#20FF20; }
12     .OKweek       { background-color:#90EE90; font-size: 11px; }
13     .OKmonth      { background-color:#90EE90; font-size: 10px; }
14     .OKold        { background-color:#90EE90; font-size: 9px; }
15
16     .KOday        { background-color:#F20000; }
17     .KOweek       { background-color:#FFC0CB; font-size: 11px; }
18     .KOmonth      { background-color:#FFC0CB; font-size: 10px; }
19     .KOold        { background-color:#FFC0CB; font-size: 9px; }
20
21     .KFday        { background-color:#FFA500; }
22     .KFweek       { background-color:#FAC86D; font-size: 11px; }
23     .KFmonth      { background-color:#FAC86D; font-size: 10px; }
24     .KFold        { background-color:#FAC86D; font-size: 9px; }
25
26     .NAday        { background-color:#BBBBBB; }
27     .NAweek       { background-color:#BFBFBF; font-size: 11px; }
28     .NAmonth      { background-color:#CACACA; font-size: 10px; }
29     .NAold        { background-color:#CFCFCF; font-size: 9px; }
30
31     .label        { font-weight: bold; }
32
33     <!-- styles for links in matrix -->
34     .OK2          { color:#00AA00; }
35     .KO2          { color:#FF0000; }
36     .KF2          { color:#FF8000; }
37     .NA2          { color:#BBBBBB; }
38     .TO2          { color:GoldenRod; }
39     .RUNNING2     { color:LightSeaGreen; font-weight: bold; }
40     .OK2day       { color:#00AA00; font-weight: bold; }
41     .KO2day       { color:#FF0000; font-weight: bold; }
42     .KF2day       { color:#FF8000; font-weight: bold; }
43     .NA2day       { color:#BBBBBB; font-weight: bold; }
44     .TO2day       { color:GoldenRod; font-weight: bold; }
45
46     .new          { background-color:#FF5500; }
47     .day          { background-color:#F0E25A; font-size: small; }
48     .week         { background-color:#E0E0E0; font-size: small; }
49     .month        { background-color:#C0C0C0; font-size: small; }
50     .old          { background-color:#A0A0A0; font-size: small; }
51     .lnk          { font-size: 12px; }
52     .lnk a        { text-decoration: none; }
53     .note         { text-align : right; font-style: italic; font-size: small; }
54     table.legend  { margin:0px;
55                     padding:5px;
56                     border-collapse:collapse;
57                     empty-cells : show;
58                     border : solid 1px;
59                     font-size: xx-small;
60                   }
61     table.summary { width : 100%;
62                     margin:0px;
63                     padding:0px;
64                     border-collapse:collapse;
65                     empty-cells : show;
66                     border : solid 1px;
67                   }
68     td.summary    { border : solid 0px; font-size: medium; }
69     td            { border : solid 1px; }
70     td.small      { border : solid 1px; font-size: small; }
71     th            { font-size: small; border: solid 1px;  }
72     h2            { text-align : center; }
73     h3            { text-align : left; font-size: small; font-weight: normal; }
74     h4            { text-align : left; font-size: small; font-weight: bold; display: inline; }
75     h_err         { text-align : left; font-size: small; font-weight: normal; display: inline;  color: red; }
76     .legend       { text-align : center; } 
77     .def        { font-family: Arial, Verdana, "Times New Roman", Times, serif;}
78    
79 </style>
80
81 <xsl:if test="//JobsReport/infos/@JobsCommandStatus='running'">
82   <meta http-equiv="refresh" content="1"></meta>
83 </xsl:if>
84
85 <script language="JavaScript"><![CDATA[
86       function Toggle(id) {
87         collapseall();
88         var element = document.getElementById(id);
89
90          if ( element.style.display == "none" )
91             element.style.display = "block";
92          else 
93             element.style.display = "none";
94       }
95
96       function collapseall() {
97         var x=document.getElementsByTagName("div");
98         for (i=0;i<x.length;i++)
99         {
100             if ( x[i].id != "matrix" )
101                 x[i].style.display = "none";
102         }
103       }
104     ]]>
105 </script>
106
107 </head>
108
109 <body class="def">
110     <table width="100%">
111         <tr>
112             <td class="summary">
113                 <h2>Compilation report <xsl:value-of select="//JobsReport/board/."/></h2>
114             </td>
115             <td class="summary" align="right" valign="bottom" width="300">
116                 <span class="note"><xsl:value-of select="//JobsReport/infos/@name" />: <xsl:value-of select="//JobsReport/infos/@value" /></span>
117             </td>
118         </tr>
119     </table>
120
121     Legend :
122     <table class="legend">
123         <tr><td>job</td><td>result</td></tr>
124         <tr><td> <xsl:attribute name="class">OK2day</xsl:attribute>success today</td><td> <xsl:attribute name="class">OK2day</xsl:attribute>success today</td></tr>
125         <tr><td> <xsl:attribute name="class">OK2</xsl:attribute>success not today</td><td> <xsl:attribute name="class">OK2</xsl:attribute>success not today</td></tr>
126         <tr><td> <xsl:attribute name="class">KO2day</xsl:attribute>fail today</td><td> <xsl:attribute name="class">KO2day</xsl:attribute>fail today</td></tr>
127         <tr><td> <xsl:attribute name="class">KO2</xsl:attribute>fail not today</td><td> <xsl:attribute name="class">KO2</xsl:attribute>fail not today</td></tr>
128         <tr><td> <xsl:attribute name="class">TO2day</xsl:attribute>timeout today</td><td> <xsl:attribute name="class">KF2day</xsl:attribute>known failure today</td></tr>
129         <tr><td> <xsl:attribute name="class">RUNNING2</xsl:attribute>running</td><td> <xsl:attribute name="class">KF2</xsl:attribute>known failure not today</td></tr>
130         <tr><td> <xsl:attribute name="class">NA2day</xsl:attribute>To be launched</td></tr>
131         <tr><td> <xsl:attribute name="class">NA2</xsl:attribute>Not today</td></tr>
132     </table>
133     
134     <br/>
135
136     <div id="matrix">
137     <table class="summary">
138       <!-- header -->
139       <tr bgcolor="#9acd32">
140       <th></th>
141       <xsl:for-each select="//JobsReport/applications/application">
142         <xsl:sort select="@name" />
143         <th><xsl:value-of select="@name" /></th>
144       </xsl:for-each>
145       </tr>
146       
147       <!-- for all hosts -->
148       <xsl:for-each select="//JobsReport/distributions/dist">
149         <xsl:sort select="@name" />
150         <xsl:variable name="curr_distname" select="@name" />
151         <tr>
152         <td align="center"><xsl:value-of select="$curr_distname" /></td>
153         <!-- for all jobs -->
154         <xsl:for-each select="//JobsReport/applications/application">
155           <xsl:sort select="@name" />
156           <xsl:variable name="curr_appli" select="@name" />
157           <td align="center" class="small">
158               <!-- get the job for current host and current appli -->
159               <xsl:for-each select="//JobsReport/jobs/job">
160               
161                   <xsl:sort select="@name" />
162                   
163                   <xsl:if test="application/.=$curr_appli and distribution/.=$curr_distname and board/.=//JobsReport/board/.">
164                       <!-- Change background color if it is an extra job (not defined in the input csv files) -->
165                       <xsl:if test="extra_job/.='yes'">
166                           <xsl:attribute name="bgcolor">FFCCCC</xsl:attribute>
167                       </xsl:if>
168                       <!-- Get job status and put a link -->
169                       <xsl:choose>
170                             <xsl:when test="state/.='SSH connection KO' or state/.='Cancelled'">
171                               <a href="#">
172                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
173                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
174                                     <xsl:attribute name="class">KO2day</xsl:attribute>
175                                     <xsl:value-of select="@name"/>
176                               </a>
177                             </xsl:when>
178                             <xsl:when test="contains(state/., 'Not launched')">
179                               <a href="#">
180                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
181                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
182                                     <xsl:attribute name="class">NA2day</xsl:attribute>
183                                     <xsl:value-of select="@name"/>
184                               </a>
185                             </xsl:when>
186                             <xsl:when test="contains(state/., 'running')">
187                               <a href="#">
188                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
189                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
190                                     <xsl:attribute name="class">RUNNING2</xsl:attribute>
191                                     <xsl:value-of select="@name"/>
192                               </a>
193                             </xsl:when>
194                             <xsl:when test="contains(state/., 'Finished')">
195                               <a href="#">
196                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
197                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
198                                     <xsl:attribute name="class">OK2day</xsl:attribute>
199                                     <xsl:value-of select="@name"/>
200                               </a>
201                             </xsl:when>
202                             <xsl:when test="contains(state/., 'Timeout')">
203                               <a href="#">
204                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
205                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
206                                     <xsl:attribute name="class">TO2day</xsl:attribute>
207                                     <xsl:value-of select="@name"/>
208                               </a>
209                             </xsl:when>
210                             <xsl:when test="state/.='Not today'">
211                               <a href="#">
212                                     <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="@name"/>')</xsl:attribute>
213                                     <xsl:attribute name="title"><xsl:value-of select="state/."/></xsl:attribute>
214                                     <xsl:attribute name="class">NA2</xsl:attribute>
215                                     <xsl:value-of select="@name"/>
216                               </a>
217                             </xsl:when>
218                       </xsl:choose>
219                       <!--<xsl:value-of select="state/." />-->
220                       <xsl:if test="not(remote_log_file_path/.='nothing') and state/.!='Not today'">
221                              : 
222                             <a>
223                                 <xsl:attribute name="title">remote log</xsl:attribute>
224                                 <xsl:attribute name="href"><xsl:value-of select="remote_log_file_path/."/></xsl:attribute>
225                                 <xsl:if test="res/.='0'">
226                                    <xsl:attribute name="class">OK2day</xsl:attribute>
227                                 </xsl:if>
228                                 <xsl:if test="res/.='1'">
229                                    <xsl:attribute name="class">KO2day</xsl:attribute>
230                                 </xsl:if>
231                                 <xsl:value-of select="host/."/>/<xsl:value-of select="port/."/>
232                             </a>
233                       </xsl:if> 
234                       <br/>
235                       
236
237                   </xsl:if>
238                   
239               </xsl:for-each>
240               
241               <!-- get the missing jobs -->
242               <xsl:for-each select="//JobsReport/missing_jobs/job">    
243                     <xsl:if test="@distribution=$curr_distname and @application=$curr_appli">
244                         <xsl:attribute name="bgcolor">FFCCCC</xsl:attribute>
245                     </xsl:if>
246               </xsl:for-each>
247               
248           </td>
249         </xsl:for-each>
250         </tr>
251       </xsl:for-each>
252     </table>
253     
254     <h3>
255     <xsl:choose>
256         <xsl:when test="//JobsReport/infos/@JobsCommandStatus='running'">
257             Command status : running <img src="running.gif"></img>
258         </xsl:when>
259         
260         <xsl:otherwise>
261             Command status : <xsl:value-of select="//JobsReport/infos/@JobsCommandStatus/."/>
262         </xsl:otherwise>
263     </xsl:choose>
264     </h3>
265     </div>
266
267     
268     <!-- Loop over the jobs in order to find what job was called in the link "onclick". Display information about that job -->
269     <xsl:for-each select="//JobsReport/jobs/job">
270       <xsl:variable name="curr_job_name" select="@name" />
271       <div style="display:none"><xsl:attribute name="id"><xsl:value-of select="@name"/></xsl:attribute>
272           <!-- Display job name -->
273           <h4>Name : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/@name"/>
274           <br/>
275           <xsl:if test="//JobsReport/jobs/job[@name=$curr_job_name]/state!='Not today'">
276                   <!-- Display the job attributes -->
277                   <h4>Hostname/port : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/host"/>/<xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/port"/>
278                   <br/>
279                   <h4>User : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/user"/>
280                   <br/>
281                   <h4>salomeTools path : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/sat_path"/>
282                   <br/>
283                   <h4>After : </h4>
284                   <a href="#">
285                         <xsl:attribute name="onclick">javascript:Toggle('<xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/after"/>')</xsl:attribute>
286                         <xsl:attribute name="title">Click to get job information</xsl:attribute>
287                         <xsl:attribute name="class">OK2</xsl:attribute>
288                         <xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/after"/>
289                   </a>
290                   <br/>
291                   <h4>Timeout : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/timeout"/>
292                   <br/>
293                   <h4>Begin : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/begin"/>
294                   <br/>
295                   <h4>End : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/end"/>
296                   <br/>
297                   <h4>Out : </h4><PRE><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/out"/></PRE>
298                   <br/>
299                   <h4>Err : </h4><h_err><PRE><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/err"/></PRE></h_err>
300           </xsl:if>
301           <h4>Status : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/state"/>
302           <br/>
303           <h4>Commands : </h4><xsl:value-of select="//JobsReport/jobs/job[@name=$curr_job_name]/commands"/>
304           <br/>
305       </div>
306     </xsl:for-each>
307
308 </body>
309
310 </html>
311 </xsl:template>
312 </xsl:stylesheet>