Skip to content

Commit

Permalink
Start tracking coverage in Nimbus.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Jan 25, 2012
1 parent 0037eef commit 1f166f9
Show file tree
Hide file tree
Showing 115 changed files with 92,225 additions and 92 deletions.
2,933 changes: 2,933 additions & 0 deletions coverage/attributedlabel/NIAttributedLabel.m.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

137 changes: 137 additions & 0 deletions coverage/attributedlabel/coverstory.css
@@ -0,0 +1,137 @@
#coverstory {
}

#maincontainer {
clear: both;
width: 100%;
margin: 0;
padding: 0;
color: #000;
}

#filelistcontainer {
border-style: none;
float: left;
width: 20%;
}

#filesummary {
}

#filetable {;
border-width: 1px;
border-style: solid;
table-layout: fixed;
width:100%;
}

#filelistheader {
}

#filelistheadersource {
width:15%;
}

#filelistheaderpercent {
text-align: right;
width: 5%;
}

.fileline {
font-size: x-small;
font-family: "Lucida Grande", Verdana, Arial, sans-serif;
}

.filename {
text-overflow: ellipsis;
overflow: hidden;
}

.filepercent {
text-align: right;
}

.filelessthan25percent {
color: #BF0000;
}

.filelessthan35percent {
color: #BF3300;
}

.filelessthan45percent {
color: #BF6600;
}

.filelessthan55percent {
color: #BF9900;
}

.filelessthan65percent {
color: #66BF00;
}

.filelessthan75percent {
color: #33BF00;
}

.filegoodcoveragepercent {
color: #00BF00;
}

#sourcecontainer {
border-style: none;
width: 80%;
float: right;
}

#sourcepath {
font-size: small;
text-align:center;
}

#sourcename {
font-size: medium;
text-align:center;
}

#sourcedate {
font-size: small;
text-align:center;
padding-bottom:20px;
}

#sourcesummary {
}

#sourcetable {
border-width: 1px;
border-style: solid;
width: 100%;
}

.sourceline {
font-family: "Courier New", Courier, Monaco, monospace;
}

.sourcelinehit {
color: #000000;
}

.sourcelinemissed {
color: #FF0000;
}

.sourcelineskipped {
color: #7F7F7F;
}

.sourcelinenonfeasible {
color: #7F7F7F;
}

.sourcelinehitcount {
border-right-color: #999999;
border-right-width: 1px;
border-right-style: solid;
}
18 changes: 18 additions & 0 deletions coverage/attributedlabel/coverstory.js
@@ -0,0 +1,18 @@
/*
Demonstration of a simple onload handler to add your own custom elements
to the generated html.
*/
function coverstory_load() {
var coverstoryDiv = document.createElement("div");
var coverstoryLink = document.createElement("a");
coverstoryDiv.style.fontSize = "small";
coverstoryDiv.style.textAlign = "center";
coverstoryDiv.style.paddingTop = "10px";
coverstoryLink.innerHTML = "Generated by CoverStory";
coverstoryLink.href = "http://code.google.com/p/coverstory/";
coverstoryDiv.appendChild(coverstoryLink);
document.getElementById('maincontainer').appendChild(coverstoryDiv);
}

function coverstory_unload() {
}
11 changes: 11 additions & 0 deletions coverage/attributedlabel/index.html
@@ -0,0 +1,11 @@
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta name='generator' content='CoverStory' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta http-equiv='REFRESH' content='0;url=./NSAttributedString+NimbusAttributedLabel.m.html'>
</head>
<body>
</body>
</html>

0 comments on commit 1f166f9

Please sign in to comment.