-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[uss_qualifier] Clean up artifacts (#282)
* Clean up artifacts * Fix dss_probing artifacts * Fix shell lint 726592d
- Loading branch information
1 parent
d461bb7
commit 335326c
Showing
125 changed files
with
780,792 additions
and
12,131 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
2,851 changes: 2,851 additions & 0 deletions
2,851
artifacts/uss_qualifier/reports/output/dss_probing/requirements/uss1.html
Large diffs are not rendered by default.
Oops, something went wrong.
2,851 changes: 2,851 additions & 0 deletions
2,851
artifacts/uss_qualifier/reports/output/dss_probing/requirements/uss2.html
Large diffs are not rendered by default.
Oops, something went wrong.
913 changes: 913 additions & 0 deletions
913
artifacts/uss_qualifier/reports/output/dss_probing/sequence/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
3,812 changes: 3,812 additions & 0 deletions
3,812
artifacts/uss_qualifier/reports/output/dss_probing/sequence/s1.html
Large diffs are not rendered by default.
Oops, something went wrong.
138 changes: 138 additions & 0 deletions
138
artifacts/uss_qualifier/reports/output/dss_probing/sequence/s10.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,138 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>s10 - ASTM NetRID DSS: Direct CRDB access</title> | ||
<style> | ||
body { | ||
margin: 0; | ||
color: #24292f; | ||
background-color: #ffffff; | ||
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji"; | ||
font-size: 16px; | ||
line-height: 1.5; | ||
word-wrap: break-word; | ||
} | ||
table { | ||
border-spacing: 0; | ||
border-collapse: collapse; | ||
width: max-content; | ||
max-width: 100%; | ||
overflow: auto; | ||
} | ||
tr { | ||
border-top: 1px solid hsla(210,18%,87%,1); | ||
} | ||
table tr:nth-child(2n) { | ||
background-color: #f6f8fa; | ||
} | ||
td { | ||
padding: 6px 6px; | ||
vertical-align: top; | ||
border: 1px solid #d0d7de; | ||
} | ||
th { | ||
padding: 6px 6px; | ||
text-align: left; | ||
background-color: rgb(230, 230, 230); | ||
border: 1px solid #d0d7de; | ||
} | ||
a { | ||
background-color: transparent; | ||
color: #0969da; | ||
text-decoration: none; | ||
} | ||
h2 { | ||
margin-block-end: 0.1em; | ||
} | ||
.sticky_cell_value { | ||
position: sticky; | ||
top: 0px; | ||
z-index: 0; | ||
} | ||
.pass_result { | ||
background-color: rgb(192, 255, 192); | ||
} | ||
.fail_result { | ||
background-color: rgb(255, 192, 192); | ||
} | ||
.not_tested { | ||
background-color: rgb(192, 192, 192); | ||
} | ||
.failed_check_summary { | ||
font-style: italic; | ||
} | ||
</style> | ||
<style> | ||
ul, ul ul, ul li { | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
} | ||
ul ul { padding-left: 0.3em; } | ||
ul li { | ||
padding-left: 14px; | ||
} | ||
li div { | ||
display: inline; | ||
} | ||
.collapseable>.node_key:hover { | ||
text-decoration: underline; | ||
cursor: pointer; | ||
} | ||
.collapsed>.node_key { | ||
color: blue; | ||
} | ||
.node_key { | ||
font-weight: bold; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<div> | ||
<h2><a href="https://github.com/interuss/monitoring/blob/726592d62bf09ecaa9d458bade369f84446cca12/monitoring/uss_qualifier/scenarios/astm/netrid/v19/dss/crdb_access.md">ASTM NetRID DSS: Direct CRDB access</a></h2> | ||
<h3>scenarios.astm.netrid.v19.dss.CRDBAccess</h3> | ||
<table> | ||
<tr class="header_row"> | ||
<th>Case</th> | ||
<th>Step</th> | ||
<th colspan="3">Event</th> | ||
</tr> | ||
|
||
</table> | ||
</div> | ||
<script> | ||
function showHide(node) { | ||
var value = node.querySelector(".node_value"); | ||
if (node.classList.contains("collapsed")) { | ||
node.classList.remove("collapsed"); | ||
for (var i = 0; i < value.children.length; i++) { | ||
value.children[i].style.display = "block"; | ||
} | ||
} else { | ||
node.classList.add("collapsed"); | ||
for (var i = 0; i < value.children.length; i++) { | ||
value.children[i].style.display = "none"; | ||
} | ||
} | ||
} | ||
|
||
function addShowHide(node) { | ||
if (node.classList.contains("collapseable")) { | ||
let key = node.querySelector(".node_key"); | ||
key.addEventListener("click", function () { showHide(node); }); | ||
let values = node.querySelector(".node_value ul"); | ||
if (values.children.length > 3) { | ||
showHide(node); | ||
} | ||
} | ||
for (var i = 0; i < node.children.length; i++) { | ||
addShowHide(node.children[i]); | ||
} | ||
} | ||
|
||
</script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.