645
|
1 |
<#--
|
|
2 |
============================================================================
|
|
3 |
Name : coverity.summary.html.ftl
|
|
4 |
Part of : Helium
|
|
5 |
|
|
6 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
7 |
All rights reserved.
|
|
8 |
This component and the accompanying materials are made available
|
|
9 |
under the terms of the License "Eclipse Public License v1.0"
|
|
10 |
which accompanies this distribution, and is available
|
|
11 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
12 |
|
|
13 |
Initial Contributors:
|
|
14 |
Nokia Corporation - initial contribution.
|
|
15 |
|
|
16 |
Contributors:
|
|
17 |
|
|
18 |
Description:
|
|
19 |
|
|
20 |
============================================================================
|
|
21 |
-->
|
|
22 |
<?xml version="1.0" encoding="utf-8"?>
|
|
23 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
24 |
<html>
|
|
25 |
<head>
|
|
26 |
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
27 |
<title>
|
|
28 |
Coverity tool summary information.
|
|
29 |
</title>
|
|
30 |
<style type="text/css">
|
|
31 |
body{font-family:Verdana; font-size:8pt; line-height:1.1em; padding: 10px 10px; background-color:#F8F8F2;}
|
|
32 |
h1{
|
|
33 |
font-size:14pt;
|
|
34 |
color:#000;
|
|
35 |
padding: 20px 15px;
|
|
36 |
margin:0;
|
|
37 |
}
|
|
38 |
h2 {
|
|
39 |
font-size:10pt;
|
|
40 |
margin: 1em 0;
|
|
41 |
}
|
|
42 |
h5{
|
|
43 |
font-size:10pt;
|
|
44 |
text-align:center;
|
|
45 |
background-color:#4682B4;
|
|
46 |
color:"black";
|
|
47 |
heigth:20pt;
|
|
48 |
padding: 5px 15px;
|
|
49 |
|
|
50 |
}
|
|
51 |
.data{color:#00F;font-family:Verdana; font-size:10pt;color:"black";}
|
|
52 |
span.items{text-indent:-1em; padding-left: 1em; display:block; word-wrap:normal;}
|
|
53 |
|
|
54 |
span.bold{font-weight:bold; display:block; padding: 1em 0;}
|
|
55 |
p.maintext{padding-top: 1em;}
|
|
56 |
p.logfolder{color:#000;font-weight:bold; padding-top: 1em;}
|
|
57 |
p.distrib{font-weight:bold;}
|
|
58 |
|
|
59 |
|
|
60 |
a:link,a:visited{color:#00E;}
|
|
61 |
|
|
62 |
</style>
|
|
63 |
</head>
|
|
64 |
<body>
|
|
65 |
<div id="coveritysummary">
|
|
66 |
<h5>Coverity Summary</h5>
|
|
67 |
<#assign htmlString = covsummary?replace("["," ")>
|
|
68 |
<#assign htmlString = htmlString?replace("]"," ")>
|
|
69 |
<#list htmlString?split(",") as line>
|
|
70 |
<#if line?starts_with(" ")>
|
|
71 |
${line}<br />
|
|
72 |
<#elseif !line?contains("cov-analyze")>
|
|
73 |
${line}<br />
|
|
74 |
</#if>
|
|
75 |
</#list>
|
|
76 |
</div>
|
|
77 |
</br>
|
|
78 |
</body>
|
|
79 |
</html>
|