forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Sep 16, 2024
1 parent
52c5f55
commit 6c6bef4
Showing
2,244 changed files
with
1,103,619 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8817 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<!-- autogenerated by 'ct_logs' --> | ||
<head> | ||
<title>All test runs in "ct_logs" </title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
<link rel="stylesheet" href="ct_default.css" type="text/css"></link> | ||
<script type="text/javascript" src="jquery-latest.js"></script> | ||
<script type="text/javascript" src="jquery.tablesorter.min.js"></script> | ||
<script type="text/javascript"> | ||
// Parser for date format, e.g: Wed Jul 4 2012 11:24:15 | ||
var monthNames = {}; | ||
monthNames["Jan"] = "01"; monthNames["Feb"] = "02"; | ||
monthNames["Mar"] = "03"; monthNames["Apr"] = "04"; | ||
monthNames["May"] = "05"; monthNames["Jun"] = "06"; | ||
monthNames["Jul"] = "07"; monthNames["Aug"] = "08"; | ||
monthNames["Sep"] = "09"; monthNames["Oct"] = "10"; | ||
monthNames["Nov"] = "11"; monthNames["Dec"] = "12"; | ||
$.tablesorter.addParser({ | ||
id: 'CTDateSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 2) return 999999999; | ||
else { | ||
var date = s.match(/(\w{3})\s(\w{3})\s(\d{2})\s(\d{4})\s(\d{2}):(\d{2}):(\d{2})/); | ||
var y = date[4]; var mo = monthNames[date[2]]; var d = String(date[3]); | ||
var h = String(date[5]); var mi = String(date[6]); var sec = String(date[7]); | ||
return (parseInt('' + y + mo + d + h + mi + sec)); }}, | ||
type: 'numeric' }); | ||
// Parser for general text format | ||
$.tablesorter.addParser({ | ||
id: 'CTTextSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return 'zzzzzzzz'; | ||
else if (s == "?") return 'zzzzzzz'; | ||
else if (s == "-") return 'zzzzzz'; | ||
else if (s == "FAILED") return 'A'; | ||
else if (s == "SKIPPED") return 'B'; | ||
else if (s == "OK") return 'C'; | ||
else return '' + s; }, | ||
type: 'text' }); | ||
// Parser for numerical values | ||
$.tablesorter.addParser({ | ||
id: 'CTValSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return '-2'; | ||
else if (s == "?") return '-1'; | ||
else if ((s.search(/(\d{1,})\s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\s/); | ||
return (parseInt('' + num[1])); } | ||
else if ((s.search(/(\d{1,})\.(\d{3})s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\.(\d{3})/); | ||
if (num[1] == "0") return (parseInt('' + num[2])); | ||
else return (parseInt('' + num[1] + num[2])); } | ||
else return '' + s; }, | ||
type: 'numeric' }); | ||
$(document).ready(function() { | ||
$("#SortableTable").tablesorter({ | ||
headers: { | ||
0: { sorter: 'CTDateSorter' }, | ||
1: { sorter: 'CTTextSorter' }, | ||
2: { sorter: 'CTTextSorter' }, | ||
3: { sorter: 'CTValSorter' }, | ||
4: { sorter: 'CTTextSorter' }, | ||
5: { sorter: 'CTValSorter' }, | ||
6: { sorter: 'CTValSorter' }, | ||
7: { sorter: 'CTValSorter' }, | ||
8: { sorter: 'CTValSorter' }, | ||
9: { sorter: 'CTValSorter' } | ||
} | ||
}); | ||
$("#SortableTable").trigger("update"); | ||
$("#SortableTable").trigger("appendCache"); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<center> | ||
<h1>All test runs in "ct_logs"</h1> | ||
</center> | ||
<br /> | ||
<center> | ||
<div id="button_holder" class="btn"> | ||
<a href="index.html">TEST INDEX PAGE</a> | ||
</div><br /><br /> | ||
<table id="SortableTable"> | ||
<thead> | ||
<tr> | ||
<th><b>History</b></th> | ||
<th><b>Node</b></th> | ||
<th><b>Label</b></th> | ||
<th>Tests</th> | ||
<th><b>Test Names</b></th> | ||
<th>Total</th> | ||
<th>Ok</th> | ||
<th>Failed</th> | ||
<th>Skipped<br>(User/Auto)</th> | ||
<th>Missing<br>Suites</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td><a href="ct_run.test_server@e640942e8c8d.2024-09-16_21.59.18/index.html">Mon Sep 16 2024 21:59:18</a><td align=center>test_server@e640942e8c8d</td> | ||
<td align=center><b>-</b></td> | ||
<td align=right>1</td> | ||
<td align=center title='make_test_dir.system_test'> make_test_dir.system_test</td> | ||
<td align=right>109</td> | ||
<td align=right>107</td> | ||
<td align=right>0</td> | ||
<td align=right>2 (2/0)</td> | ||
<td align=right>0</td> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</center> | ||
<br /><br /> | ||
<center> | ||
<div class="copyright">Copyright © 2024 <a href="http://www.erlang.org">Open Telecom Platform</a><br /> | ||
Updated: <!--date-->Mon Sep 16 2024 22:03:28<!--/date--><br /> | ||
</div> | ||
</center> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
/* Stylesheet for Common Test */ | ||
|
||
body { | ||
padding: 10px; margin: 10px; | ||
-webkit-font-smoothing: antialiased; | ||
background-color: #FBFFFC; | ||
} | ||
|
||
a:link { | ||
color: #2B507D; | ||
} | ||
|
||
a:visited { | ||
color: #85ABD5 | ||
} | ||
|
||
h1 { | ||
font-family: verdana, arial, sans-serif; font-size: 200%; | ||
letter-spacing: -2px; word-spacing: 2px; font-weight: bold; | ||
color: #3F3F3F; | ||
} | ||
|
||
h2 { | ||
font-family: verdana, arial, sans-serif; font-size: 175%; | ||
letter-spacing: -2px; word-spacing: 2px; font-weight: normal; | ||
color: #3F3F3F; | ||
} | ||
|
||
h3 { | ||
font-family: verdana, arial, sans-serif; font-size: 140%; | ||
letter-spacing: -2px; word-spacing: 2px; font-weight: bold; | ||
color: #3F3F3F; | ||
} | ||
|
||
h4 { | ||
font-family: verdana, arial, sans-serif; font-size: 120%; | ||
letter-spacing: -2px; word-spacing: 2px; font-weight: normal; | ||
color: #3F3F3F; | ||
} | ||
|
||
p { | ||
font-family: "Trebuchet MS", "Lucida Sans Unicode", verdana, arial, sans-serif; | ||
font-size: .9em; color: #000000; | ||
} | ||
|
||
ul { | ||
list-style-type: none; | ||
padding: 0em; | ||
margin: 1em; | ||
} | ||
li { | ||
font-size: 0.95em; color: #000000; | ||
margin: .3em 0; | ||
} | ||
|
||
pre { | ||
color: black; | ||
font-family: "Monaco", "Andale Mono", "Consolas", monospace; | ||
font-size: .8em; | ||
} | ||
|
||
code { | ||
color: black; | ||
font-family: "Monaco", "Andale Mono", "Consolas", monospace; | ||
font-size: .8em; | ||
} | ||
|
||
div.mono_sm { | ||
font-family: "Courier New", monospace; font-size: .75em; | ||
word-spacing: 1px; color: #000000; | ||
} | ||
|
||
div.mono_la { | ||
font-family: "Courier New", monospace; font-size: .8em; | ||
color: #000000; | ||
} | ||
|
||
div.copyright { | ||
padding: 20px 0px 0px 0px; | ||
font-family: "Courier New", monospace; font-size: .7em; | ||
color: #000000; | ||
} | ||
|
||
div.ct_internal { | ||
background: lightgrey; color: black; | ||
font-family: "Monaco", "Andale Mono", "Consolas", monospace; | ||
font-size: .95em; | ||
margin: .2em 0 0 0; | ||
} | ||
|
||
div.ct_error_notify { | ||
background: #CC0000; | ||
color: #FFFFFF; | ||
font-family: "Monaco", "Andale Mono", "Consolas", monospace; | ||
font-size: 1.05em; | ||
margin: .2em 0 0 0; | ||
} | ||
|
||
div.ct_error_notify a:link { | ||
color: #D0D0D0; | ||
} | ||
|
||
div.ct_error_notify a:visited { | ||
color: #AAAAAA; | ||
} | ||
|
||
div.default { | ||
background: lightgreen; color: black; | ||
font-family: "Monaco", "Andale Mono", "Consolas", monospace; | ||
font-size: 1.05em; | ||
margin: .2em 0 0 0; | ||
} | ||
|
||
div.label { | ||
font-family: verdana, arial, sans-serif; font-size: 200%; | ||
letter-spacing: -2.5px; word-spacing: 2px; | ||
font-weight: bold; color: #2B507D; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; border: 6px solid #3F3F3F; | ||
background: #FFFFFF; | ||
font: .8em/1.2em "Lucida Sans Unicode", verdana, arial, sans-serif; | ||
color: #222; | ||
} | ||
|
||
caption { | ||
font-size: 1.3em; font-weight: bold; | ||
text-align: center; padding: 1em 4px; | ||
} | ||
|
||
td, th { | ||
padding: .5em 7px .5em 7px; line-height: 1.3em; | ||
border-bottom: 3px solid #F5C4C1; | ||
border-left: 2px dashed #809FFF; | ||
} | ||
|
||
th { | ||
background: #3F3F3F; color: #fff; | ||
font-family: arial, sans-serif; font-size: 120%; | ||
letter-spacing: -0.5px; | ||
font-weight: bold; text-align: center; | ||
padding-right: .5em; vertical-align: top; | ||
} | ||
|
||
thead th { | ||
background: #3F3F3F; color: #fff; | ||
font-family: arial, sans-serif; font-size: 120%; | ||
letter-spacing: -0.5px; | ||
font-weight: bold; text-align: center; | ||
padding-right: .5em; vertical-align: top; | ||
text-decoration: underline; | ||
} | ||
|
||
tfoot td { | ||
font-family: arial, sans-serif; font-size: 110%; | ||
letter-spacing: -0.5px; | ||
font-weight: bold; | ||
} | ||
|
||
.odd td { | ||
background: #F3F3F3; | ||
} | ||
.odd th { | ||
background: #F3F3F3; | ||
} | ||
|
||
td a, td a:link { | ||
color: #2B507D; | ||
} | ||
|
||
td a:visited { | ||
color: #85ABD5; | ||
} | ||
|
||
tr:hover th[scope=row], tr:hover td { | ||
background-color: #D1D1D1; | ||
color: #fff; | ||
} | ||
|
||
td a:hover, td a:focus { | ||
color: #85ABD5; | ||
} | ||
|
||
th a, td a:active { | ||
color: #85ABD5; | ||
} | ||
|
||
th + td { | ||
padding-left: .5em; | ||
} | ||
|
||
#button_holder { | ||
display: block; float: center; | ||
font-family: arial, verdana, sans-serif; | ||
font-size: 12px; text-shadow: 1px 1px lightgray; | ||
} | ||
|
||
.btn a { | ||
padding: 6px 12px; float: center; | ||
text-decoration: none; color: #3F3F3F; | ||
font-weight: bold; border: 3px outset #3F3F3F; | ||
background-color: #F3F3F3; | ||
} | ||
|
||
.btn a:hover { | ||
color: #fff; | ||
background-color: #809FFF; | ||
} | ||
|
||
a.link-to-entry { | ||
float: right; | ||
text-decoration: none; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
html { | ||
filter: invert(100%) hue-rotate(180deg) brightness(105%) contrast(95%); | ||
} | ||
td, th { | ||
/* Remember that colors are rotated :-) */ | ||
border-bottom: 3px solid #dddddd; | ||
} | ||
div.ct_error_notify { | ||
/* Use a stronger red by blending in with the black background */ | ||
background: #ff000082; | ||
} | ||
} |
Binary file not shown.
Oops, something went wrong.