forked from interuss/monitoring
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mock_uss] Add flight_planning API implementation to mock_uss (interu…
- Loading branch information
1 parent
6aa8fe9
commit a1fb7e7
Showing
144 changed files
with
806,527 additions
and
362,668 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
2,915 changes: 2,915 additions & 0 deletions
2,915
artifacts/uss_qualifier/reports/dss_probing/requirements/uss1.html
Large diffs are not rendered by default.
Oops, something went wrong.
2,915 changes: 2,915 additions & 0 deletions
2,915
artifacts/uss_qualifier/reports/dss_probing/requirements/uss2.html
Large diffs are not rendered by default.
Oops, something went wrong.
957 changes: 957 additions & 0 deletions
957
artifacts/uss_qualifier/reports/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/dss_probing/sequence/s1.html
Large diffs are not rendered by default.
Oops, something went wrong.
9,744 changes: 9,744 additions & 0 deletions
9,744
artifacts/uss_qualifier/reports/dss_probing/sequence/s10.html
Large diffs are not rendered by default.
Oops, something went wrong.
8,844 changes: 8,844 additions & 0 deletions
8,844
artifacts/uss_qualifier/reports/dss_probing/sequence/s11.html
Large diffs are not rendered by default.
Oops, something went wrong.
138 changes: 138 additions & 0 deletions
138
artifacts/uss_qualifier/reports/dss_probing/sequence/s12.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>s12 - 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/1199553d56fa7d2724d7298d0d2014883a873d82/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.