2015-05-13 15:58:22 -07:00
|
|
|
<!--
|
2017-04-05 14:35:12 -07:00
|
|
|
Open MCT, Copyright (c) 2014-2017, United States Government
|
2015-05-13 15:58:22 -07:00
|
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
Administration. All rights reserved.
|
|
|
|
|
2016-07-12 16:21:58 -07:00
|
|
|
Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-05-13 15:58:22 -07:00
|
|
|
"License"); you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
|
2016-07-12 16:21:58 -07:00
|
|
|
Open MCT includes source code licensed under additional open source
|
2015-05-13 15:58:22 -07:00
|
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
this source code distribution or the Licensing information page available
|
|
|
|
at runtime from the About dialog for additional information.
|
|
|
|
-->
|
2016-08-22 15:38:17 -03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2015-07-07 09:58:22 -07:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
2014-10-31 09:48:37 -07:00
|
|
|
<title></title>
|
2017-11-28 13:23:15 -08:00
|
|
|
<script src="bower_components/requirejs/require.js"> </script>
|
2016-08-22 15:38:17 -03:00
|
|
|
<script>
|
2017-04-14 17:06:46 -07:00
|
|
|
var THIRTY_MINUTES = 30 * 60 * 1000;
|
|
|
|
|
2017-06-25 20:46:09 -07:00
|
|
|
require(['openmct'], function (openmct) {
|
2016-10-12 13:13:47 -07:00
|
|
|
[
|
|
|
|
'example/eventGenerator',
|
2017-06-25 20:46:09 -07:00
|
|
|
'example/styleguide'
|
2016-10-12 13:13:47 -07:00
|
|
|
].forEach(
|
|
|
|
openmct.legacyRegistry.enable.bind(openmct.legacyRegistry)
|
|
|
|
);
|
2017-02-22 12:27:24 -08:00
|
|
|
openmct.install(openmct.plugins.MyItems());
|
|
|
|
openmct.install(openmct.plugins.LocalStorage());
|
|
|
|
openmct.install(openmct.plugins.Espresso());
|
2017-02-21 19:53:56 -08:00
|
|
|
openmct.install(openmct.plugins.Generator());
|
2017-05-22 14:40:35 -07:00
|
|
|
openmct.install(openmct.plugins.ExampleImagery());
|
2017-02-21 17:37:52 -08:00
|
|
|
openmct.install(openmct.plugins.UTCTimeSystem());
|
2017-07-11 14:45:26 -07:00
|
|
|
openmct.install(openmct.plugins.ImportExport());
|
2017-12-07 13:01:10 -08:00
|
|
|
openmct.install(openmct.plugins.AutoflowView({
|
|
|
|
type: "telemetry.panel"
|
|
|
|
}));
|
2017-06-15 16:29:52 -07:00
|
|
|
openmct.install(openmct.plugins.Conductor({
|
|
|
|
menuOptions: [
|
|
|
|
{
|
|
|
|
name: "Fixed",
|
|
|
|
timeSystem: 'utc',
|
|
|
|
bounds: {
|
2017-11-28 13:23:15 -08:00
|
|
|
start: Date.now() - THIRTY_MINUTES,
|
2017-06-15 16:29:52 -07:00
|
|
|
end: Date.now()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Realtime",
|
|
|
|
timeSystem: 'utc',
|
|
|
|
clock: 'local',
|
|
|
|
clockOffsets: {
|
|
|
|
start: -25 * 60 * 1000,
|
|
|
|
end: 5 * 60 * 1000
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}));
|
2017-11-28 13:23:15 -08:00
|
|
|
openmct.install(openmct.plugins.SummaryWidget());
|
2017-05-16 14:58:46 -07:00
|
|
|
openmct.time.clock('local', {start: -THIRTY_MINUTES, end: 0});
|
|
|
|
openmct.time.timeSystem('utc');
|
2016-10-12 13:13:47 -07:00
|
|
|
openmct.start();
|
2016-02-02 15:18:50 -08:00
|
|
|
});
|
2014-10-31 09:48:37 -07:00
|
|
|
</script>
|
2016-02-26 14:49:34 -08:00
|
|
|
<link rel="stylesheet" href="platform/commonUI/general/res/css/startup-base.css">
|
|
|
|
<link rel="stylesheet" href="platform/commonUI/general/res/css/openmct.css">
|
2016-08-22 15:38:17 -03:00
|
|
|
<link rel="icon" type="image/png" href="platform/commonUI/general/res/images/favicons/favicon-32x32.png" sizes="32x32">
|
|
|
|
<link rel="icon" type="image/png" href="platform/commonUI/general/res/images/favicons/favicon-96x96.png" sizes="96x96">
|
|
|
|
<link rel="icon" type="image/png" href="platform/commonUI/general/res/images/favicons/favicon-16x16.png" sizes="16x16">
|
|
|
|
<link rel="shortcut icon" href="platform/commonUI/general/res/images/favicons/favicon.ico">
|
2014-10-31 09:48:37 -07:00
|
|
|
</head>
|
2016-02-22 15:44:57 -08:00
|
|
|
<body class="user-environ">
|
2016-02-23 18:30:21 -08:00
|
|
|
<div class="l-splash-holder s-splash-holder">
|
|
|
|
<div class="l-splash s-splash"></div>
|
2016-02-22 15:44:57 -08:00
|
|
|
</div>
|
2014-10-31 09:48:37 -07:00
|
|
|
</body>
|
2015-05-13 15:58:22 -07:00
|
|
|
</html>
|