[Plugin] Add imported root plugin (#1784)

* [Plugin] Add static root plugin

Add StaticRootPlugin, which allows a file exported with the ImportExport
plugin to be mounted as a static root in Open MCT.  Allows deployers
to configure standard displays for deployments by exporting displays they
have already created.

* Include all src files
This commit is contained in:
Pete Richards
2018-03-09 12:39:25 -08:00
committed by Andrew Henry
parent 39a7f43cd0
commit f9060a485d
6 changed files with 270 additions and 4 deletions

View File

@@ -31,7 +31,8 @@ define([
'./summaryWidget/plugin',
'./URLIndicatorPlugin/URLIndicatorPlugin',
'./telemetryMean/plugin',
'./plot/plugin'
'./plot/plugin',
'./staticRootPlugin/plugin'
], function (
_,
UTCTimeSystem,
@@ -43,7 +44,8 @@ define([
SummaryWidget,
URLIndicatorPlugin,
TelemetryMean,
PlotPlugin
PlotPlugin,
StaticRootPlugin
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -66,6 +68,8 @@ define([
plugins.ImportExport = ImportExport;
plugins.StaticRootPlugin = StaticRootPlugin;
/**
* A tabular view showing the latest values of multiple telemetry points at
* once. Formatted so that labels and values are aligned.