-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nasa/nos3#339] Updates to attempt to use AIT-GUI directly;
- Loading branch information
Showing
6 changed files
with
228 additions
and
34 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
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
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
Binary file not shown.
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,132 @@ | ||
body | ||
{ | ||
padding: 70px 0 300px 0; | ||
} | ||
|
||
td | ||
{ | ||
padding: 1px 5px 1px 5px; | ||
vertical-align: middle; | ||
} | ||
|
||
table.telem | ||
{ | ||
width: 100%; | ||
} | ||
|
||
table.telem td | ||
{ | ||
font-weight: bold; | ||
} | ||
|
||
table.telem.col2 td | ||
{ | ||
width: 25%; | ||
} | ||
|
||
table.telem.col4 td | ||
{ | ||
width: 12.5%; | ||
} | ||
|
||
.bottom-nav | ||
{ | ||
padding: 5px; | ||
} | ||
|
||
.logging-table | ||
{ | ||
font-family: Courier, monospace; | ||
height: 75px; | ||
max-height: 75px; | ||
} | ||
|
||
.logging-table table | ||
{ | ||
background: transparent; | ||
border: 0; | ||
margin: 0; | ||
vertical-align: baseline; | ||
width: 100%; | ||
} | ||
|
||
.logging-table tr, .logging-table td | ||
{ | ||
padding: 1px 8px 1px 8px; | ||
} | ||
|
||
.logs-tab | ||
{ | ||
height: 100px; | ||
margin: 10px; | ||
} | ||
|
||
.sim-btn | ||
{ | ||
text-transform: capitalize; | ||
} | ||
|
||
.sim-btn .start | ||
{ | ||
color: green; | ||
} | ||
|
||
.sim-btn .stop | ||
{ | ||
color: red; | ||
} | ||
|
||
.status-on | ||
{ | ||
color: green; | ||
} | ||
|
||
.status-off | ||
{ | ||
color: #999; | ||
} | ||
|
||
.status-pending | ||
{ | ||
color: yellow; | ||
} | ||
|
||
.telem-group-title | ||
{ | ||
background-color: #f5f5f5; | ||
border: 1px solid #e3e3e3; | ||
border-radius: 3px; | ||
padding: 3px; | ||
text-align: center; | ||
} | ||
|
||
.telem-group-temp | ||
{ | ||
background-color: powderblue; | ||
border: 1px solid #e3e3e3; | ||
border-radius: 1px; | ||
padding: 0px; | ||
text-align: center; | ||
} | ||
|
||
.telem-group-htr | ||
{ | ||
background-color: Orange; | ||
border: 1px solid #e3e3e3; | ||
border-radius: 1px; | ||
padding: 0px; | ||
text-align: center; | ||
} | ||
|
||
.typeahead-heading | ||
{ | ||
border-bottom: 1px solid #ccc; | ||
margin: 0 20px 5px 20px; | ||
padding: 3px 0; | ||
text-align: center; | ||
} | ||
|
||
#cmd-input-group .tt-menu { | ||
max-height: 150px; | ||
overflow-y: auto; | ||
} |
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,84 @@ | ||
<!doctype html> | ||
<head> | ||
<link rel="stylesheet" href="ait/gui/static/build/ait.bundle.css"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<script src="ait/gui/static/build/ait.bundle.js"></script> | ||
<style> tr:nth-child(even) {background-color: #f2f2f2;} </style> | ||
</head> | ||
|
||
<body> | ||
|
||
<!-- Status Bar --> | ||
<div class="navbar navbar-inverse navbar-fixed-top"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<a class="navbar-brand" href="#">AIT-NOS3</a><br> | ||
</div> <!-- /.navbar-header --> | ||
|
||
<ul class="nav navbar-nav navbar-right"> | ||
<li> | ||
<p class="navbar-text">Telemetry Status:</p> | ||
</li> | ||
<li> | ||
<p class="navbar-text ait-status-indicators"> | ||
<ait-led on = "ait:tlm:packet" | ||
off = "ait:tlm:close" | ||
pending = "ait:tlm:open" | ||
error = "ait:tlm:stale" | ||
default = "pending"></ait-led> | ||
cFS | ||
</p> | ||
</li> | ||
<li> | ||
<ait-clock class="navbar-text" doy="true"></ait-clock> | ||
</li> | ||
</ul> <!-- /.navbar-right --> | ||
</div> <!-- /.container-fluid --> | ||
</div> <!-- /.navbar --> | ||
|
||
<div class='site-container'> | ||
<div class='telemcontainer'> | ||
<ait-tabset class="nav-tabs"> | ||
<ait-tab title="CFS_CF_HKPACKET"> | ||
<table class="telem col1"> | ||
<tr><td>CMDCOUNTER:<td><ait-field packet="CFS_CF_HKPACKET" name="CMDCOUNTER"></ait-field></tr> | ||
<tr><td>ERRCOUNTER:<td><ait-field packet="CFS_CF_HKPACKET" name="ERRCOUNTER"></ait-field></tr> | ||
</table> | ||
</ait-tab> | ||
</ait-tabset> | ||
</div> | ||
|
||
|
||
<div class='ctrlcontainer'> | ||
<ait-tabset class='nav-tabs'> | ||
<ait-tab title='Commanding'> | ||
<div class='cmd-tab-container'> | ||
<div class="cmd-browser-container"> | ||
<ait-command-search> | ||
</ait-command-search> | ||
</div> | ||
<div class="cmd-config-container"> | ||
<ait-command-configure> | ||
</ait-command-configure> | ||
</div> | ||
<div class='cmd-search-container'> | ||
<ait-command-input></ait-command-input> | ||
<hr /> | ||
</div> | ||
</div> | ||
</ait-tab> | ||
<ait-tab title='Command History'> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div style="height:200px;overflow:auto;"> | ||
<ait-command-history></ait-command-history> | ||
</div> | ||
</div> | ||
</div> | ||
</ait-tab> | ||
</ait-tabset> | ||
</div> | ||
</div> | ||
|
||
|
||
</body> |