forked from julz0815/ADO-Veracode-Pipeline-Scan-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·61 lines (47 loc) · 1.98 KB
/
index.html
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
<!DOCTYPE html>
<head>
<script>
window.onload = function () { setTimeout(function () { document.body.style.opacity = "100"; }, 500); };
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Veracode Pipeline Scan Results</title>
<!-- icon -->
<link rel="icon" type="image/png" href="content/css/favicon.ico" />
<script src="lib/VSS.SDK.min.js"></script>
<script type="text/javascript">
VSS.init({
usePlatformScripts: true,
moduleLoaderConfig: {
paths: { "enhancer": "scripts" }
}
});
VSS.ready(function () {
require(["enhancer/tab"], function () { });
});
</script>
<style type="text/css">
.myTable { background-color: #FFFFFF; border-collapse: collapse; color: #000; font-size: 18px; font-weight: bold; font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif"; text-align: left; }
.myTable th { background-color:#000000;color:white; }
.myTable th { border-bottom:1px solid #000000; }
.myTable td, .myOtherTable th { padding:10px; }
.myTable td { border-bottom:1px dotted #000000; font-size: 14px; }
.Severity-0 {background-color:#8DBD3E}
.Severity-1 {background-color:#C9DA2C}
.Severity-2 {background-color:#FFCC33}
.Severity-3 {background-color:#FD7333}
.Severity-4 {background-color:#E61F25}
.Severity-5 {background-color:#D92B85}
#title { font-family: Segoe, Segoe UI, DejaVu Sans, Trebuchet MS, Verdana, sans-serif; font-size: 25px; font-weight: bold }
#wrapper { font-family: Segoe, Segoe UI, DejaVu Sans, Trebuchet MS, Verdana, sans-serif; font-size: 25px; font-weight: bold }
</style>
</head>
<body>
<div id="wrapper">
Veracode Pipeline Scan Results
</div>
</body>
</html>