Skip to content

Commit 36bb81f

Browse files
author
Carter Page
committed
Wagon: Deploying site to repository
1 parent 2d745d0 commit 36bb81f

28 files changed

Lines changed: 2901 additions & 161 deletions

cobertura/css/help.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
dl {
2+
float: left;
3+
width: 100%;
4+
}
5+
6+
dt {
7+
border-top: 1px solid #808080;
8+
float: left;
9+
font-weight: bold;
10+
margin: 0;
11+
padding: 1em;
12+
width: 20%;
13+
}
14+
15+
dd {
16+
border-top: 1px solid #808080;
17+
float: left;
18+
font-style: italic;
19+
margin: 0;
20+
padding: 1em;
21+
width: 60%;
22+
}

cobertura/css/main.css

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
@import url("help.css");
2+
@import url("source-viewer.css");
3+
@import url("tooltip.css");
4+
5+
.hidden {
6+
display: none;
7+
}
8+
9+
a.dfn {
10+
border-bottom: 1px dotted #00aa00;
11+
cursor: help;
12+
}
13+
14+
a.dfn:active, a.dfn:link, a.dfn:visited {
15+
color: #000000;
16+
text-decoration: none;
17+
}
18+
19+
a.dfn:hover {
20+
color: #0000ff;
21+
text-decoration: none;
22+
}
23+
24+
body {
25+
font-family: verdana, arial, helvetica;
26+
}
27+
28+
h1, h2, h3, h4, h5, h6 {
29+
margin-bottom: 0.5em;
30+
}
31+
32+
h5 {
33+
margin-top: 0.5em;
34+
}
35+
36+
div.footer {
37+
font-size: 68%;
38+
margin-top: 1.5em;
39+
}
40+
41+
div.percentgraph
42+
{
43+
background-color: #f02020;
44+
border: #808080 1px solid;
45+
height: 1.3em;
46+
margin: 0px;
47+
padding: 0px;
48+
width: 100px;
49+
}
50+
51+
div.percentgraph div.greenbar
52+
{
53+
background-color: #00f000;
54+
height: 1.3em;
55+
margin: 0px;
56+
padding: 0px;
57+
}
58+
59+
div.percentgraph div.na
60+
{
61+
background-color: #eaeaea;
62+
height: 1.3em;
63+
margin: 0px;
64+
padding: 0px;
65+
}
66+
67+
div.percentgraph span.text
68+
{
69+
display: block;
70+
position: absolute;
71+
text-align: center;
72+
width: 100px;
73+
}
74+
75+
div.separator {
76+
height: 10px;
77+
}
78+
79+
table tr td, table tr th {
80+
font-size: 68%;
81+
}
82+
83+
td.value table tr td {
84+
font-size: 11px;
85+
}
86+
87+
table.percentgraph {
88+
border: 0px;
89+
font-size: 130%;
90+
margin: 0px;
91+
margin-left: auto;
92+
margin-right: 0px;
93+
padding: 0px;
94+
}
95+
96+
table.percentgraph tr.percentgraph {
97+
border: 0px;
98+
margin: 0px;
99+
padding: 0px;
100+
}
101+
102+
table.percentgraph td.percentgraph {
103+
border: 0px;
104+
margin: 0px;
105+
padding: 0px;
106+
padding-left: 4px;
107+
}
108+
109+
table.report {
110+
border-collapse: collapse;
111+
width: 100%;
112+
}
113+
114+
table.report td {
115+
border: #d0d0d0 1px solid;
116+
}
117+
118+
table.report td.heading {
119+
background: #dcecff;
120+
font-weight: bold;
121+
text-align: center;
122+
}
123+
124+
table.report td.heading:hover {
125+
background: #c0ffc0;
126+
cursor: pointer;
127+
}
128+
129+
table.report td.value {
130+
text-align: right;
131+
}

cobertura/css/sortabletable.css

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
.sort-table {
2+
font: Icon;
3+
border: 1px Solid ThreeDShadow;
4+
background: Window;
5+
color: WindowText;
6+
}
7+
8+
.sort-table thead {
9+
background: ButtonFace;
10+
}
11+
12+
.sort-table td {
13+
padding: 2px 5px;
14+
}
15+
16+
.sort-table thead td {
17+
border: 1px solid;
18+
border-color: ButtonHighlight ButtonShadow
19+
ButtonShadow ButtonHighlight;
20+
cursor: default;
21+
}
22+
23+
.sort-table thead td:active {
24+
border-color: ButtonShadow ButtonHighlight
25+
ButtonHighlight ButtonShadow;
26+
padding: 3px 4px 1px 6px;
27+
}
28+
29+
.sort-table thead td[_sortType=None]:active {
30+
border-color: ButtonHighlight ButtonShadow
31+
ButtonShadow ButtonHighlight;
32+
padding: 2px 5px;
33+
}
34+
35+
.sort-arrow {
36+
width: 11px;
37+
height: 11px;
38+
background-position: center center;
39+
background-repeat: no-repeat;
40+
margin: 0 2px;
41+
}
42+
43+
.sort-arrow.descending {
44+
background-image: url("../images/downsimple.png");
45+
46+
}
47+
48+
.sort-arrow.ascending {
49+
background-image: url("../images/upsimple.png");
50+
}

cobertura/css/source-viewer.css

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
pre.src {
2+
background: #ffffff;
3+
margin-top: 0px;
4+
margin-bottom: 0px;
5+
}
6+
7+
table.src {
8+
border: #dcdcdc 1px solid;
9+
font-size: 16px;
10+
}
11+
12+
td.numLine {
13+
background: #f0f0f0;
14+
border-right: #dcdcdc 1px solid;
15+
padding-right: 3px;
16+
text-align: right;
17+
}
18+
19+
td.numLineCover {
20+
background: #80ff80;
21+
border-right: #dcdcdc 1px solid;
22+
padding-right: 3px;
23+
text-align: right;
24+
}
25+
26+
td.nbHits {
27+
background: #f0f0f0;
28+
border-right: #dcdcdc 1px solid;
29+
padding-right: 3px;
30+
text-align: right;
31+
}
32+
33+
td.nbHitsCovered {
34+
background: #80ff80;
35+
border-right: #dcdcdc 1px solid;
36+
padding-right: 3px;
37+
text-align: right;
38+
}
39+
40+
td.nbHitsUncovered {
41+
background: #ff9090;
42+
border-right: #dcdcdc 1px solid;
43+
font-weight: bold;
44+
padding-right: 3px;
45+
text-align: right;
46+
}
47+
48+
td.src {
49+
width: 100%;
50+
}
51+
52+
span.comment {
53+
color: #b22222;
54+
font-style: italic;
55+
}
56+
57+
span.keyword {
58+
color: #2020bf;
59+
font-weight: bold;
60+
}
61+
62+
span.srcUncovered {
63+
background: #ff9090;
64+
}
65+
66+
span.string {
67+
color: #2a00ff;
68+
}
69+
70+
span.text_italic {
71+
font-size: 12px;
72+
font-style: italic;
73+
}

cobertura/css/tooltip.css

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
a.hastooltip {
2+
border-bottom: 1px dotted #00aa00;
3+
color: #000000;
4+
cursor: help;
5+
font-style: normal;
6+
position: relative; /* This is the key */
7+
text-decoration: none;
8+
z-index: 24; /* What does this do? */
9+
}
10+
11+
a.hastooltip:active {
12+
color: #000000;
13+
text-decoration: none;
14+
}
15+
16+
a.hastooltip:link {
17+
color: #000000;
18+
text-decoration: none;
19+
}
20+
21+
a.hastooltip:hover {
22+
background-color: #a0b8ff;
23+
color: #000000;
24+
text-decoration: none;
25+
z-index: 25;
26+
}
27+
28+
a.hastooltip:visited {
29+
color: #000000;
30+
text-decoration: none;
31+
}
32+
33+
a.hastooltip span {
34+
display: none;
35+
}
36+
37+
a.hastooltip:hover span {
38+
background-color: #eeeeee;
39+
border: 1px solid #000000;
40+
color: #000000;
41+
display: block;
42+
padding: 5px;
43+
left: -15.2em;
44+
position: absolute;
45+
text-align: center;
46+
text-decoration: none;
47+
top: 2em;
48+
width: 20em;
49+
}

cobertura/frame-packages.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6+
<title>Coverage Report</title>
7+
<link title="Style" type="text/css" rel="stylesheet" href="css/main.css" />
8+
</head>
9+
<body>
10+
<h5>Packages</h5>
11+
<table width="100%">
12+
<tr>
13+
<td nowrap="nowrap"><a href="frame-summary.html" onclick='parent.sourceFileList.location.href="frame-sourcefiles.html"' target="summary">All</a></td>
14+
</tr>
15+
<tr>
16+
<td nowrap="nowrap"><a href="frame-summary-org.skyscreamer.jsonassert.html" onclick='parent.sourceFileList.location.href="frame-sourcefiles-org.skyscreamer.jsonassert.html"' target="summary">org.skyscreamer.jsonassert</a></td>
17+
</tr>
18+
</table>
19+
</body>
20+
</html>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html>
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6+
<title>Coverage Report Classes</title>
7+
<link title="Style" type="text/css" rel="stylesheet" href="css/main.css"/>
8+
</head>
9+
<body>
10+
<h5>
11+
org.skyscreamer.jsonassert
12+
</h5>
13+
<div class="separator">&nbsp;</div>
14+
<h5>Classes</h5>
15+
<table width="100%">
16+
<tbody>
17+
<tr>
18+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.FieldComparisonFailure.html">FieldComparisonFailure</a> <i>(100%)</i></td>
19+
</tr>
20+
<tr>
21+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.JSONAssert.html">JSONAssert</a> <i>(0%)</i></td>
22+
</tr>
23+
<tr>
24+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.JSONCompare.html">JSONCompare</a> <i>(99%)</i></td>
25+
</tr>
26+
<tr>
27+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.JSONCompareMode.html">JSONCompareMode</a> <i>(100%)</i></td>
28+
</tr>
29+
<tr>
30+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.JSONCompareResult.html">JSONCompareResult</a> <i>(96%)</i></td>
31+
</tr>
32+
<tr>
33+
<td nowrap="nowrap"><a target="summary" href="org.skyscreamer.jsonassert.JSONParser.html">JSONParser</a> <i>(66%)</i></td>
34+
</tr>
35+
</tbody>
36+
</table>
37+
</body>
38+
</html>

0 commit comments

Comments
 (0)