From 30013f2bf5449365b3b66a2a0451516bf1454f6a Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 1 Apr 2015 16:48:58 -0700 Subject: [PATCH 01/95] [Licenses] Add script for license headers Add script to add license headers, WTD-1051. --- scripts/licenses.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/licenses.sh diff --git a/scripts/licenses.sh b/scripts/licenses.sh new file mode 100755 index 0000000000..91b312db8f --- /dev/null +++ b/scripts/licenses.sh @@ -0,0 +1,12 @@ +LICENSE=`cat $3` +MATCHES=`find $1 -name "*.$2" | grep -v /lib/` + +for i in $MATCHES +do + if ! grep -q "$LICENSE" $i + then + cat "$3" "$i" > "$i".new && mv "$i".new "$i" + fi +done + +echo "$LICENSE" \ No newline at end of file From e603966f0cfbd7f49cf54bb489671e051e3f32f0 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Thu, 2 Apr 2015 09:31:23 -0700 Subject: [PATCH 02/95] [Licenses] License headers WTD-1051. --- scripts/license.html | 21 +++++++++++++++++++++ scripts/license.js | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 scripts/license.html create mode 100644 scripts/license.js diff --git a/scripts/license.html b/scripts/license.html new file mode 100644 index 0000000000..12dfe6b04f --- /dev/null +++ b/scripts/license.html @@ -0,0 +1,21 @@ + diff --git a/scripts/license.js b/scripts/license.js new file mode 100644 index 0000000000..c506618bed --- /dev/null +++ b/scripts/license.js @@ -0,0 +1,21 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2013-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * licenses. See the Open Source Licenses file included with this distribution + * or the Licensing information page available at runtime from the About dialog + * for additional information. + *****************************************************************************/ From 6314507a4c70b69df3ba04d982e704ee65e277d4 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 17 Apr 2015 15:18:39 -0700 Subject: [PATCH 03/95] [Licenses] Update license headers WTD-1051. --- scripts/license.html | 6 +++--- scripts/license.js | 6 +++--- scripts/licenses.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/license.html b/scripts/license.html index 12dfe6b04f..4078932f73 100644 --- a/scripts/license.html +++ b/scripts/license.html @@ -15,7 +15,7 @@ under the License. Open MCT Web includes source code licensed under additional open source - licenses. See the Open Source Licenses file included with this distribution - or the Licensing information page available at runtime from the About dialog - for additional information. + 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. --> diff --git a/scripts/license.js b/scripts/license.js index c506618bed..9e6490c25a 100644 --- a/scripts/license.js +++ b/scripts/license.js @@ -15,7 +15,7 @@ * under the License. * * Open MCT Web includes source code licensed under additional open source - * licenses. See the Open Source Licenses file included with this distribution - * or the Licensing information page available at runtime from the About dialog - * for additional information. + * 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. *****************************************************************************/ diff --git a/scripts/licenses.sh b/scripts/licenses.sh index 91b312db8f..1de4d35ae3 100755 --- a/scripts/licenses.sh +++ b/scripts/licenses.sh @@ -1,11 +1,11 @@ -LICENSE=`cat $3` + MATCHES=`find $1 -name "*.$2" | grep -v /lib/` for i in $MATCHES do if ! grep -q "$LICENSE" $i then - cat "$3" "$i" > "$i".new && mv "$i".new "$i" + cat $3 $i > "$i".new && mv "$i".new "$i" fi done From 055034ae18006f2244f9aa27d1237d8f474b7274 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 17 Apr 2015 15:22:31 -0700 Subject: [PATCH 04/95] [Licenses] Update license script WTD-1051. --- scripts/licenses.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/scripts/licenses.sh b/scripts/licenses.sh index 1de4d35ae3..7cfe0c63ce 100755 --- a/scripts/licenses.sh +++ b/scripts/licenses.sh @@ -1,12 +1,7 @@ - +LICENSE=`cat $3` MATCHES=`find $1 -name "*.$2" | grep -v /lib/` for i in $MATCHES do - if ! grep -q "$LICENSE" $i - then - cat $3 $i > "$i".new && mv "$i".new "$i" - fi + cat "$3" "$i" > "$i".new && mv "$i".new "$i" done - -echo "$LICENSE" \ No newline at end of file From 1f55c38e02cff19fe1327376c5943132d13cad95 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 17 Apr 2015 15:24:30 -0700 Subject: [PATCH 05/95] [Licenses] Reupdate license headers WTD-1051. --- scripts/license.html | 2 +- scripts/license.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/license.html b/scripts/license.html index 4078932f73..dd8fdcab3c 100644 --- a/scripts/license.html +++ b/scripts/license.html @@ -1,5 +1,5 @@ @@ -16,4 +37,4 @@ - \ No newline at end of file + diff --git a/platform/commonUI/about/res/templates/about-dialog.html b/platform/commonUI/about/res/templates/about-dialog.html index 455e4e11e1..072de745d1 100644 --- a/platform/commonUI/about/res/templates/about-dialog.html +++ b/platform/commonUI/about/res/templates/about-dialog.html @@ -7,7 +7,7 @@

OpenMCT Web

-

Open MCT Web, Copyright © 2009-2015, United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All rights reserved.

+

Open MCT Web, Copyright © 2014-2015, United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All rights reserved.

Open MCT Web is licensed under the Apache License, Version 2.0 (the "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.

Open MCT Web includes source code licensed under additional open source licenses. See the Open Source Licenses file included with this distribution or click here for licensing information.

From 10863514cba86330ac42e5b337699faf71e0adc4 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 13 May 2015 16:42:35 -0700 Subject: [PATCH 10/95] [Licenses] Add license headers WTD-1051. --- example/builtins/res/templates/example.html | 21 +++++++++++++++++++ example/builtins/src/ExampleController.js | 21 +++++++++++++++++++ example/builtins/src/ExampleDirective.js | 21 +++++++++++++++++++ example/builtins/src/ExampleService.js | 21 +++++++++++++++++++ example/composite/src/SomeAggregator.js | 21 +++++++++++++++++++ example/composite/src/SomeDecorator.js | 21 +++++++++++++++++++ example/composite/src/SomeOtherDecorator.js | 21 +++++++++++++++++++ example/composite/src/SomeOtherExample.js | 21 +++++++++++++++++++ example/composite/src/SomeOtherProvider.js | 21 +++++++++++++++++++ example/composite/src/SomeProvider.js | 21 +++++++++++++++++++ example/extensions/src/SomeExample.js | 21 +++++++++++++++++++ example/forms/res/templates/exampleForm.html | 21 +++++++++++++++++++ example/forms/src/ExampleFormController.js | 21 +++++++++++++++++++ example/generator/src/SinewaveTelemetry.js | 21 +++++++++++++++++++ .../src/SinewaveTelemetryProvider.js | 21 +++++++++++++++++++ .../src/BrowserPersistenceProvider.js | 21 +++++++++++++++++++ example/policy/src/ExamplePolicy.js | 21 +++++++++++++++++++ example/profiling/src/WatchIndicator.js | 21 +++++++++++++++++++ .../src/ExampleTaxonomyModelProvider.js | 21 +++++++++++++++++++ .../about/res/templates/about-dialog.html | 21 +++++++++++++++++++ .../about/res/templates/about-logo.html | 21 +++++++++++++++++++ .../about/res/templates/app-logo.html | 21 +++++++++++++++++++ .../about/res/templates/license-apache.html | 21 +++++++++++++++++++ .../about/res/templates/license-mit.html | 21 +++++++++++++++++++ .../res/templates/licenses-export-md.html | 21 +++++++++++++++++++ .../about/res/templates/licenses.html | 21 +++++++++++++++++++ .../about/res/templates/overlay-about.html | 21 +++++++++++++++++++ .../commonUI/about/src/AboutController.js | 21 +++++++++++++++++++ .../commonUI/about/src/LicenseController.js | 21 +++++++++++++++++++ platform/commonUI/about/src/LogoController.js | 21 +++++++++++++++++++ .../about/test/AboutControllerSpec.js | 21 +++++++++++++++++++ .../about/test/LicenseControllerSpec.js | 21 +++++++++++++++++++ .../commonUI/about/test/LogoControllerSpec.js | 21 +++++++++++++++++++ .../browse/res/templates/browse-object.html | 21 +++++++++++++++++++ .../commonUI/browse/res/templates/browse.html | 21 +++++++++++++++++++ .../res/templates/browse/object-header.html | 21 +++++++++++++++++++ .../res/templates/create/create-button.html | 21 +++++++++++++++++++ .../res/templates/create/create-menu.html | 21 +++++++++++++++++++ .../browse/res/templates/create/locator.html | 21 +++++++++++++++++++ .../browse/res/templates/items/grid-item.html | 21 +++++++++++++++++++ .../browse/res/templates/items/items.html | 21 +++++++++++++++++++ .../browse/res/templates/topbar-browse.html | 21 +++++++++++++++++++ .../commonUI/browse/src/BrowseController.js | 21 +++++++++++++++++++ .../browse/src/creation/CreateAction.js | 21 +++++++++++++++++++ .../src/creation/CreateActionProvider.js | 21 +++++++++++++++++++ .../src/creation/CreateMenuController.js | 21 +++++++++++++++++++ .../browse/src/creation/CreateWizard.js | 21 +++++++++++++++++++ .../browse/src/creation/CreationService.js | 21 +++++++++++++++++++ .../browse/src/creation/LocatorController.js | 21 +++++++++++++++++++ .../browse/src/navigation/NavigateAction.js | 21 +++++++++++++++++++ .../src/navigation/NavigationService.js | 21 +++++++++++++++++++ .../browse/src/windowing/FullscreenAction.js | 21 +++++++++++++++++++ .../browse/src/windowing/NewWindowAction.js | 21 +++++++++++++++++++ .../browse/test/BrowseControllerSpec.js | 21 +++++++++++++++++++ .../test/creation/CreateActionProviderSpec.js | 21 +++++++++++++++++++ .../browse/test/creation/CreateActionSpec.js | 21 +++++++++++++++++++ .../test/creation/CreateMenuControllerSpec.js | 21 +++++++++++++++++++ .../browse/test/creation/CreateWizardSpec.js | 21 +++++++++++++++++++ .../test/creation/CreationServiceSpec.js | 21 +++++++++++++++++++ .../test/creation/LocatorControllerSpec.js | 21 +++++++++++++++++++ .../test/navigation/NavigateActionSpec.js | 21 +++++++++++++++++++ .../test/navigation/NavigationServiceSpec.js | 21 +++++++++++++++++++ .../test/windowing/FullscreenActionSpec.js | 21 +++++++++++++++++++ .../commonUI/dialog/res/templates/dialog.html | 21 +++++++++++++++++++ .../dialog/res/templates/overlay-dialog.html | 21 +++++++++++++++++++ .../dialog/res/templates/overlay-options.html | 21 +++++++++++++++++++ .../dialog/res/templates/overlay.html | 21 +++++++++++++++++++ platform/commonUI/dialog/src/DialogService.js | 21 +++++++++++++++++++ .../commonUI/dialog/src/OverlayService.js | 21 +++++++++++++++++++ .../commonUI/dialog/test/DialogServiceSpec.js | 21 +++++++++++++++++++ .../dialog/test/OverlayServiceSpec.js | 21 +++++++++++++++++++ .../res/templates/edit-action-buttons.html | 21 +++++++++++++++++++ .../edit/res/templates/edit-object.html | 21 +++++++++++++++++++ .../commonUI/edit/res/templates/edit.html | 21 +++++++++++++++++++ .../commonUI/edit/res/templates/elements.html | 21 +++++++++++++++++++ .../commonUI/edit/res/templates/library.html | 21 +++++++++++++++++++ .../edit/res/templates/topbar-edit.html | 21 +++++++++++++++++++ .../commonUI/edit/src/actions/CancelAction.js | 21 +++++++++++++++++++ .../commonUI/edit/src/actions/EditAction.js | 21 +++++++++++++++++++ .../commonUI/edit/src/actions/LinkAction.js | 21 +++++++++++++++++++ .../edit/src/actions/PropertiesAction.js | 21 +++++++++++++++++++ .../edit/src/actions/PropertiesDialog.js | 21 +++++++++++++++++++ .../commonUI/edit/src/actions/RemoveAction.js | 21 +++++++++++++++++++ .../commonUI/edit/src/actions/SaveAction.js | 21 +++++++++++++++++++ .../EditableCompositionCapability.js | 21 +++++++++++++++++++ .../capabilities/EditableContextCapability.js | 21 +++++++++++++++++++ .../capabilities/EditableLookupCapability.js | 21 +++++++++++++++++++ .../EditablePersistenceCapability.js | 21 +++++++++++++++++++ .../EditableRelationshipCapability.js | 21 +++++++++++++++++++ .../edit/src/capabilities/EditorCapability.js | 21 +++++++++++++++++++ .../src/controllers/EditActionController.js | 21 +++++++++++++++++++ .../edit/src/controllers/EditController.js | 21 +++++++++++++++++++ .../src/controllers/EditPanesController.js | 21 +++++++++++++++++++ .../edit/src/directives/MCTBeforeUnload.js | 21 +++++++++++++++++++ .../edit/src/objects/EditableDomainObject.js | 21 +++++++++++++++++++ .../src/objects/EditableDomainObjectCache.js | 21 +++++++++++++++++++ .../edit/src/objects/EditableModelCache.js | 21 +++++++++++++++++++ .../edit/src/policies/EditActionPolicy.js | 21 +++++++++++++++++++ .../edit/src/policies/EditableViewPolicy.js | 21 +++++++++++++++++++ .../edit/src/representers/EditRepresenter.js | 21 +++++++++++++++++++ .../edit/src/representers/EditToolbar.js | 21 +++++++++++++++++++ .../representers/EditToolbarRepresenter.js | 21 +++++++++++++++++++ .../src/representers/EditToolbarSelection.js | 21 +++++++++++++++++++ .../edit/test/actions/CancelActionSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/EditActionSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/LinkActionSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/PropertiesActionSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/PropertiesDialogSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/RemoveActionSpec.js | 21 +++++++++++++++++++ .../edit/test/actions/SaveActionSpec.js | 21 +++++++++++++++++++ .../EditableCompositionCapabilitySpec.js | 21 +++++++++++++++++++ .../EditableContextCapabilitySpec.js | 21 +++++++++++++++++++ .../EditableLookupCapabilitySpec.js | 21 +++++++++++++++++++ .../EditablePersistenceCapabilitySpec.js | 21 +++++++++++++++++++ .../EditableRelationshipCapabilitySpec.js | 21 +++++++++++++++++++ .../test/capabilities/EditorCapabilitySpec.js | 21 +++++++++++++++++++ .../controllers/EditActionControllerSpec.js | 21 +++++++++++++++++++ .../test/controllers/EditControllerSpec.js | 21 +++++++++++++++++++ .../controllers/EditPanesControllerSpec.js | 21 +++++++++++++++++++ .../test/directives/MCTBeforeUnloadSpec.js | 21 +++++++++++++++++++ .../objects/EditableDomainObjectCacheSpec.js | 21 +++++++++++++++++++ .../test/objects/EditableDomainObjectSpec.js | 21 +++++++++++++++++++ .../test/objects/EditableModelCacheSpec.js | 21 +++++++++++++++++++ .../test/policies/EditActionPolicySpec.js | 21 +++++++++++++++++++ .../test/policies/EditableViewPolicySpec.js | 21 +++++++++++++++++++ .../test/representers/EditRepresenterSpec.js | 21 +++++++++++++++++++ .../EditToolbarRepresenterSpec.js | 21 +++++++++++++++++++ .../representers/EditToolbarSelectionSpec.js | 21 +++++++++++++++++++ .../edit/test/representers/EditToolbarSpec.js | 21 +++++++++++++++++++ platform/commonUI/general/res/css/forms.css | 21 +++++++++++++++++++ platform/commonUI/general/res/css/items.css | 21 +++++++++++++++++++ platform/commonUI/general/res/css/main.css | 21 +++++++++++++++++++ .../general/res/css/normalize.min.css | 2 +- platform/commonUI/general/res/css/plots.css | 21 +++++++++++++++++++ .../general/res/css/theme-espresso.css | 21 +++++++++++++++++++ platform/commonUI/general/res/css/tree.css | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_about.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_autoflow.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_badges.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_constants.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_effects.scss | 21 +++++++++++++++++++ .../general/res/sass/_fixed-position.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_fonts.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_global.scss | 21 +++++++++++++++++++ .../res/sass/_hide-non-functional.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_icons.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_iframe.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/_main.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/_mixins.scss | 21 +++++++++++++++++++ .../general/res/sass/_properties.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/_text.scss | 21 +++++++++++++++++++ .../general/res/sass/controls/_buttons.scss | 21 +++++++++++++++++++ .../res/sass/controls/_color-palette.scss | 21 +++++++++++++++++++ .../general/res/sass/controls/_controls.scss | 21 +++++++++++++++++++ .../general/res/sass/controls/_lists.scss | 21 +++++++++++++++++++ .../general/res/sass/controls/_menus.scss | 21 +++++++++++++++++++ .../general/res/sass/controls/_ticks.scss | 21 +++++++++++++++++++ .../general/res/sass/edit/_editor.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/forms.scss | 21 +++++++++++++++++++ .../res/sass/forms/_channel-selector.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_datetime.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_elems.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_filter.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_mixins.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_selects.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_text-input.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_textarea.scss | 21 +++++++++++++++++++ .../general/res/sass/forms/_validation.scss | 21 +++++++++++++++++++ .../general/res/sass/helpers/_bubbles.scss | 21 +++++++++++++++++++ .../general/res/sass/helpers/_splitter.scss | 21 +++++++++++++++++++ .../res/sass/helpers/_wait-spinner.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/items.scss | 21 +++++++++++++++++++ .../general/res/sass/items/_item.scss | 21 +++++++++++++++++++ .../general/res/sass/lists/_tabular.scss | 21 +++++++++++++++++++ .../general/res/sass/overlay/_overlay.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/plots.scss | 21 +++++++++++++++++++ .../general/res/sass/plots/_plots-main.scss | 21 +++++++++++++++++++ .../general/res/sass/theme-espresso.scss | 21 +++++++++++++++++++ .../res/sass/themes/_theme-espresso.scss | 21 +++++++++++++++++++ platform/commonUI/general/res/sass/tree.scss | 21 +++++++++++++++++++ .../commonUI/general/res/sass/tree/_tree.scss | 21 +++++++++++++++++++ .../res/sass/user-environ/_bottom-bar.scss | 21 +++++++++++++++++++ .../general/res/sass/user-environ/_frame.scss | 21 +++++++++++++++++++ .../res/sass/user-environ/_layout.scss | 21 +++++++++++++++++++ .../res/sass/user-environ/_object-browse.scss | 21 +++++++++++++++++++ .../res/sass/user-environ/_tool-bar.scss | 21 +++++++++++++++++++ .../res/sass/user-environ/_top-bar.scss | 21 +++++++++++++++++++ .../general/res/templates/bottombar.html | 21 +++++++++++++++++++ .../res/templates/containers/accordion.html | 21 +++++++++++++++++++ .../res/templates/containers/split-pane.html | 21 +++++++++++++++++++ .../res/templates/controls/action-button.html | 21 +++++++++++++++++++ .../res/templates/controls/action-group.html | 21 +++++++++++++++++++ .../res/templates/controls/input-filter.html | 21 +++++++++++++++++++ .../res/templates/controls/selector.html | 21 +++++++++++++++++++ .../res/templates/controls/switcher.html | 21 +++++++++++++++++++ .../general/res/templates/indicator.html | 21 +++++++++++++++++++ .../commonUI/general/res/templates/label.html | 21 +++++++++++++++++++ .../res/templates/menu/context-menu.html | 21 +++++++++++++++++++ .../general/res/templates/subtree.html | 21 +++++++++++++++++++ .../general/res/templates/tree-node.html | 21 +++++++++++++++++++ .../commonUI/general/res/templates/tree.html | 21 +++++++++++++++++++ .../commonUI/general/src/StyleSheetLoader.js | 21 +++++++++++++++++++ .../src/controllers/ActionGroupController.js | 21 +++++++++++++++++++ .../src/controllers/BottomBarController.js | 21 +++++++++++++++++++ .../src/controllers/ClickAwayController.js | 21 +++++++++++++++++++ .../src/controllers/ContextMenuController.js | 21 +++++++++++++++++++ .../src/controllers/GetterSetterController.js | 21 +++++++++++++++++++ .../src/controllers/SelectorController.js | 21 +++++++++++++++++++ .../src/controllers/SplitPaneController.js | 21 +++++++++++++++++++ .../src/controllers/ToggleController.js | 21 +++++++++++++++++++ .../src/controllers/TreeNodeController.js | 21 +++++++++++++++++++ .../src/controllers/ViewSwitcherController.js | 21 +++++++++++++++++++ .../general/src/directives/MCTContainer.js | 21 +++++++++++++++++++ .../general/src/directives/MCTDrag.js | 21 +++++++++++++++++++ .../general/src/directives/MCTResize.js | 21 +++++++++++++++++++ .../general/src/directives/MCTScroll.js | 21 +++++++++++++++++++ .../general/test/StyleSheetLoaderSpec.js | 21 +++++++++++++++++++ .../controllers/ActionGroupControllerSpec.js | 21 +++++++++++++++++++ .../controllers/BottomBarControllerSpec.js | 21 +++++++++++++++++++ .../controllers/ClickAwayControllerSpec.js | 21 +++++++++++++++++++ .../controllers/ContextMenuControllerSpec.js | 21 +++++++++++++++++++ .../controllers/GetterSetterControllerSpec.js | 21 +++++++++++++++++++ .../controllers/SelectorControllerSpec.js | 21 +++++++++++++++++++ .../controllers/SplitPaneControllerSpec.js | 21 +++++++++++++++++++ .../test/controllers/ToggleControllerSpec.js | 21 +++++++++++++++++++ .../controllers/TreeNodeControllerSpec.js | 21 +++++++++++++++++++ .../controllers/ViewSwitcherControllerSpec.js | 21 +++++++++++++++++++ .../test/directives/MCTContainerSpec.js | 21 +++++++++++++++++++ .../general/test/directives/MCTDragSpec.js | 21 +++++++++++++++++++ .../general/test/directives/MCTResizeSpec.js | 21 +++++++++++++++++++ .../general/test/directives/MCTScrollSpec.js | 21 +++++++++++++++++++ platform/commonUI/inspect/res/infobubble.html | 21 +++++++++++++++++++ platform/containment/src/CapabilityTable.js | 21 +++++++++++++++++++ .../containment/src/ComposeActionPolicy.js | 21 +++++++++++++++++++ .../src/CompositionMutabilityPolicy.js | 21 +++++++++++++++++++ platform/containment/src/CompositionPolicy.js | 21 +++++++++++++++++++ platform/containment/src/ContainmentTable.js | 21 +++++++++++++++++++ .../containment/test/CapabilityTableSpec.js | 21 +++++++++++++++++++ .../test/ComposeActionPolicySpec.js | 21 +++++++++++++++++++ .../test/CompositionMutabilityPolicySpec.js | 21 +++++++++++++++++++ .../containment/test/CompositionPolicySpec.js | 21 +++++++++++++++++++ .../containment/test/ContainmentTableSpec.js | 21 +++++++++++++++++++ platform/core/src/actions/ActionAggregator.js | 21 +++++++++++++++++++ platform/core/src/actions/ActionCapability.js | 21 +++++++++++++++++++ platform/core/src/actions/ActionProvider.js | 21 +++++++++++++++++++ .../src/actions/LoggingActionDecorator.js | 21 +++++++++++++++++++ .../src/capabilities/CompositionCapability.js | 21 +++++++++++++++++++ .../src/capabilities/ContextCapability.js | 21 +++++++++++++++++++ .../capabilities/ContextualDomainObject.js | 21 +++++++++++++++++++ .../capabilities/CoreCapabilityProvider.js | 21 +++++++++++++++++++ .../src/capabilities/DelegationCapability.js | 21 +++++++++++++++++++ .../src/capabilities/MutationCapability.js | 21 +++++++++++++++++++ .../src/capabilities/PersistenceCapability.js | 21 +++++++++++++++++++ .../capabilities/RelationshipCapability.js | 21 +++++++++++++++++++ .../core/src/models/CachingModelDecorator.js | 21 +++++++++++++++++++ platform/core/src/models/ModelAggregator.js | 21 +++++++++++++++++++ .../core/src/models/PersistedModelProvider.js | 21 +++++++++++++++++++ platform/core/src/models/RootModelProvider.js | 21 +++++++++++++++++++ .../core/src/models/StaticModelProvider.js | 21 +++++++++++++++++++ platform/core/src/objects/DomainObject.js | 21 +++++++++++++++++++ .../core/src/objects/DomainObjectProvider.js | 21 +++++++++++++++++++ platform/core/src/services/Now.js | 21 +++++++++++++++++++ platform/core/src/types/MergeModels.js | 21 +++++++++++++++++++ platform/core/src/types/TypeCapability.js | 21 +++++++++++++++++++ platform/core/src/types/TypeImpl.js | 21 +++++++++++++++++++ platform/core/src/types/TypeProperty.js | 21 +++++++++++++++++++ .../core/src/types/TypePropertyConversion.js | 21 +++++++++++++++++++ platform/core/src/types/TypeProvider.js | 21 +++++++++++++++++++ platform/core/src/views/ViewCapability.js | 21 +++++++++++++++++++ platform/core/src/views/ViewProvider.js | 21 +++++++++++++++++++ .../core/test/actions/ActionAggregatorSpec.js | 21 +++++++++++++++++++ .../core/test/actions/ActionCapabilitySpec.js | 21 +++++++++++++++++++ .../core/test/actions/ActionProviderSpec.js | 21 +++++++++++++++++++ .../actions/LoggingActionDecoratorSpec.js | 21 +++++++++++++++++++ .../capabilities/CompositionCapabilitySpec.js | 21 +++++++++++++++++++ .../capabilities/ContextCapabilitySpec.js | 21 +++++++++++++++++++ .../ContextualDomainObjectSpec.js | 21 +++++++++++++++++++ .../CoreCapabilityProviderSpec.js | 21 +++++++++++++++++++ .../capabilities/DelegationCapabilitySpec.js | 21 +++++++++++++++++++ .../capabilities/MutationCapabilitySpec.js | 21 +++++++++++++++++++ .../capabilities/PersistenceCapabilitySpec.js | 21 +++++++++++++++++++ .../RelationshipCapabilitySpec.js | 21 +++++++++++++++++++ .../test/models/CachingModelDecoratorSpec.js | 21 +++++++++++++++++++ .../core/test/models/ModelAggregatorSpec.js | 21 +++++++++++++++++++ .../test/models/PersistedModelProviderSpec.js | 21 +++++++++++++++++++ .../core/test/models/RootModelProviderSpec.js | 21 +++++++++++++++++++ .../test/models/StaticModelProviderSpec.js | 21 +++++++++++++++++++ .../test/objects/DomainObjectProviderSpec.js | 21 +++++++++++++++++++ .../core/test/objects/DomainObjectSpec.js | 21 +++++++++++++++++++ platform/core/test/services/NowSpec.js | 21 +++++++++++++++++++ platform/core/test/types/MergeModelsSpec.js | 21 +++++++++++++++++++ .../core/test/types/TypeCapabilitySpec.js | 21 +++++++++++++++++++ platform/core/test/types/TypeImplSpec.js | 21 +++++++++++++++++++ .../test/types/TypePropertyConversionSpec.js | 21 +++++++++++++++++++ platform/core/test/types/TypePropertySpec.js | 21 +++++++++++++++++++ platform/core/test/types/TypeProviderSpec.js | 21 +++++++++++++++++++ .../core/test/views/ViewCapabilitySpec.js | 21 +++++++++++++++++++ platform/core/test/views/ViewProviderSpec.js | 21 +++++++++++++++++++ .../layout/res/templates/elements/box.html | 21 +++++++++++++++++++ .../layout/res/templates/elements/image.html | 21 +++++++++++++++++++ .../layout/res/templates/elements/line.html | 21 +++++++++++++++++++ .../res/templates/elements/telemetry.html | 21 +++++++++++++++++++ .../layout/res/templates/elements/text.html | 21 +++++++++++++++++++ .../features/layout/res/templates/fixed.html | 21 +++++++++++++++++++ .../features/layout/res/templates/frame.html | 21 +++++++++++++++++++ .../features/layout/res/templates/layout.html | 21 +++++++++++++++++++ .../features/layout/src/FixedController.js | 21 +++++++++++++++++++ .../features/layout/src/FixedDragHandle.js | 21 +++++++++++++++++++ platform/features/layout/src/FixedProxy.js | 21 +++++++++++++++++++ .../features/layout/src/LayoutController.js | 21 +++++++++++++++++++ platform/features/layout/src/LayoutDrag.js | 21 +++++++++++++++++++ .../layout/src/elements/AccessorMutator.js | 21 +++++++++++++++++++ .../features/layout/src/elements/BoxProxy.js | 21 +++++++++++++++++++ .../layout/src/elements/ElementFactory.js | 21 +++++++++++++++++++ .../layout/src/elements/ElementProxies.js | 21 +++++++++++++++++++ .../layout/src/elements/ElementProxy.js | 21 +++++++++++++++++++ .../layout/src/elements/ImageProxy.js | 21 +++++++++++++++++++ .../layout/src/elements/LineHandle.js | 21 +++++++++++++++++++ .../features/layout/src/elements/LineProxy.js | 21 +++++++++++++++++++ .../layout/src/elements/ResizeHandle.js | 21 +++++++++++++++++++ .../layout/src/elements/TelemetryProxy.js | 21 +++++++++++++++++++ .../features/layout/src/elements/TextProxy.js | 21 +++++++++++++++++++ .../layout/test/FixedControllerSpec.js | 21 +++++++++++++++++++ .../layout/test/FixedDragHandleSpec.js | 21 +++++++++++++++++++ .../features/layout/test/FixedProxySpec.js | 21 +++++++++++++++++++ .../layout/test/LayoutControllerSpec.js | 21 +++++++++++++++++++ .../features/layout/test/LayoutDragSpec.js | 21 +++++++++++++++++++ .../test/elements/AccessorMutatorSpec.js | 21 +++++++++++++++++++ .../layout/test/elements/BoxProxySpec.js | 21 +++++++++++++++++++ .../test/elements/ElementFactorySpec.js | 21 +++++++++++++++++++ .../test/elements/ElementProxiesSpec.js | 21 +++++++++++++++++++ .../layout/test/elements/ElementProxySpec.js | 21 +++++++++++++++++++ .../layout/test/elements/ImageProxySpec.js | 21 +++++++++++++++++++ .../layout/test/elements/LineHandleSpec.js | 21 +++++++++++++++++++ .../layout/test/elements/LineProxySpec.js | 21 +++++++++++++++++++ .../layout/test/elements/ResizeHandleSpec.js | 21 +++++++++++++++++++ .../test/elements/TelemetryProxySpec.js | 21 +++++++++++++++++++ .../layout/test/elements/TextProxySpec.js | 21 +++++++++++++++++++ platform/features/pages/res/iframe.html | 21 +++++++++++++++++++ .../pages/src/EmbeddedPageController.js | 21 +++++++++++++++++++ .../pages/test/EmbeddedPageControllerSpec.js | 21 +++++++++++++++++++ .../features/plot/res/templates/plot.html | 21 +++++++++++++++++++ platform/features/plot/src/Canvas2DChart.js | 21 +++++++++++++++++++ platform/features/plot/src/GLChart.js | 21 +++++++++++++++++++ platform/features/plot/src/MCTChart.js | 21 +++++++++++++++++++ platform/features/plot/src/PlotController.js | 21 +++++++++++++++++++ platform/features/plot/src/SubPlot.js | 21 +++++++++++++++++++ platform/features/plot/src/SubPlotFactory.js | 21 +++++++++++++++++++ .../features/plot/src/elements/PlotAxis.js | 21 +++++++++++++++++++ .../features/plot/src/elements/PlotLine.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotLineBuffer.js | 21 +++++++++++++++++++ .../features/plot/src/elements/PlotPalette.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotPanZoomStack.js | 21 +++++++++++++++++++ .../src/elements/PlotPanZoomStackGroup.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotPosition.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotPreparer.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotSeriesWindow.js | 21 +++++++++++++++++++ .../plot/src/elements/PlotTickGenerator.js | 21 +++++++++++++++++++ .../features/plot/src/elements/PlotUpdater.js | 21 +++++++++++++++++++ .../plot/src/modes/PlotModeOptions.js | 21 +++++++++++++++++++ .../plot/src/modes/PlotOverlayMode.js | 21 +++++++++++++++++++ .../features/plot/src/modes/PlotStackMode.js | 21 +++++++++++++++++++ .../features/plot/test/Canvas2DChartSpec.js | 21 +++++++++++++++++++ platform/features/plot/test/GLChartSpec.js | 21 +++++++++++++++++++ platform/features/plot/test/MCTChartSpec.js | 21 +++++++++++++++++++ .../features/plot/test/PlotControllerSpec.js | 21 +++++++++++++++++++ .../features/plot/test/SubPlotFactorySpec.js | 21 +++++++++++++++++++ platform/features/plot/test/SubPlotSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotAxisSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotLineBufferSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotLineSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotPaletteSpec.js | 21 +++++++++++++++++++ .../elements/PlotPanZoomStackGroupSpec.js | 21 +++++++++++++++++++ .../test/elements/PlotPanZoomStackSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotPositionSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotPreparerSpec.js | 21 +++++++++++++++++++ .../test/elements/PlotSeriesWindowSpec.js | 21 +++++++++++++++++++ .../test/elements/PlotTickGeneratorSpec.js | 21 +++++++++++++++++++ .../plot/test/elements/PlotUpdaterSpec.js | 21 +++++++++++++++++++ .../plot/test/modes/PlotModeOptionsSpec.js | 21 +++++++++++++++++++ .../plot/test/modes/PlotOverlayModeSpec.js | 21 +++++++++++++++++++ .../plot/test/modes/PlotStackModeSpec.js | 21 +++++++++++++++++++ .../scrolling/res/templates/scrolling.html | 21 +++++++++++++++++++ .../features/scrolling/src/DomainColumn.js | 21 +++++++++++++++++++ platform/features/scrolling/src/NameColumn.js | 21 +++++++++++++++++++ .../features/scrolling/src/RangeColumn.js | 21 +++++++++++++++++++ .../scrolling/src/ScrollingListController.js | 21 +++++++++++++++++++ .../scrolling/src/ScrollingListPopulator.js | 21 +++++++++++++++++++ .../scrolling/test/DomainColumnSpec.js | 21 +++++++++++++++++++ .../features/scrolling/test/NameColumnSpec.js | 21 +++++++++++++++++++ .../scrolling/test/RangeColumnSpec.js | 21 +++++++++++++++++++ .../test/ScrollingListControllerSpec.js | 21 +++++++++++++++++++ .../test/ScrollingListPopulatorSpec.js | 21 +++++++++++++++++++ .../forms/res/templates/controls/button.html | 21 +++++++++++++++++++ .../res/templates/controls/checkbox.html | 21 +++++++++++++++++++ .../forms/res/templates/controls/color.html | 21 +++++++++++++++++++ .../res/templates/controls/composite.html | 21 +++++++++++++++++++ .../res/templates/controls/datetime.html | 21 +++++++++++++++++++ .../forms/res/templates/controls/dialog.html | 21 +++++++++++++++++++ .../res/templates/controls/menu-button.html | 21 +++++++++++++++++++ .../forms/res/templates/controls/select.html | 21 +++++++++++++++++++ .../res/templates/controls/textfield.html | 21 +++++++++++++++++++ platform/forms/res/templates/form.html | 21 +++++++++++++++++++ platform/forms/res/templates/toolbar.html | 21 +++++++++++++++++++ platform/forms/src/MCTControl.js | 21 +++++++++++++++++++ platform/forms/src/MCTForm.js | 21 +++++++++++++++++++ platform/forms/src/MCTToolbar.js | 21 +++++++++++++++++++ .../forms/src/controllers/ColorController.js | 21 +++++++++++++++++++ .../src/controllers/CompositeController.js | 21 +++++++++++++++++++ .../src/controllers/DateTimeController.js | 21 +++++++++++++++++++ .../src/controllers/DialogButtonController.js | 21 +++++++++++++++++++ .../forms/src/controllers/FormController.js | 21 +++++++++++++++++++ platform/forms/test/MCTControlSpec.js | 21 +++++++++++++++++++ platform/forms/test/MCTFormSpec.js | 21 +++++++++++++++++++ platform/forms/test/MCTToolbarSpec.js | 21 +++++++++++++++++++ .../test/controllers/ColorControllerSpec.js | 21 +++++++++++++++++++ .../controllers/CompositeControllerSpec.js | 21 +++++++++++++++++++ .../controllers/DateTimeControllerSpec.js | 21 +++++++++++++++++++ .../controllers/DialogButtonControllerSpec.js | 21 +++++++++++++++++++ .../test/controllers/FormControllerSpec.js | 21 +++++++++++++++++++ platform/framework/src/Constants.js | 21 +++++++++++++++++++ .../framework/src/FrameworkInitializer.js | 21 +++++++++++++++++++ platform/framework/src/LogLevel.js | 21 +++++++++++++++++++ platform/framework/src/Main.js | 21 +++++++++++++++++++ .../src/bootstrap/ApplicationBootstrapper.js | 21 +++++++++++++++++++ platform/framework/src/load/Bundle.js | 21 +++++++++++++++++++ platform/framework/src/load/BundleLoader.js | 21 +++++++++++++++++++ platform/framework/src/load/Extension.js | 21 +++++++++++++++++++ .../src/register/CustomRegistrars.js | 21 +++++++++++++++++++ .../src/register/ExtensionRegistrar.js | 21 +++++++++++++++++++ .../framework/src/register/ExtensionSorter.js | 21 +++++++++++++++++++ .../src/register/PartialConstructor.js | 21 +++++++++++++++++++ .../src/register/ServiceCompositor.js | 21 +++++++++++++++++++ .../framework/src/resolve/BundleResolver.js | 21 +++++++++++++++++++ .../src/resolve/ExtensionResolver.js | 21 +++++++++++++++++++ .../src/resolve/ImplementationLoader.js | 21 +++++++++++++++++++ .../src/resolve/RequireConfigurator.js | 21 +++++++++++++++++++ .../test/FrameworkInitializerSpec.js | 21 +++++++++++++++++++ platform/framework/test/LogLevelSpec.js | 21 +++++++++++++++++++ .../bootstrap/ApplicationBootstrapperSpec.js | 21 +++++++++++++++++++ .../framework/test/load/BundleLoaderSpec.js | 21 +++++++++++++++++++ platform/framework/test/load/BundleSpec.js | 21 +++++++++++++++++++ platform/framework/test/load/ExtensionSpec.js | 21 +++++++++++++++++++ .../test/register/CustomRegistrarsSpec.js | 21 +++++++++++++++++++ .../test/register/ExtensionRegistrarSpec.js | 21 +++++++++++++++++++ .../test/register/ExtensionSorterSpec.js | 21 +++++++++++++++++++ .../test/register/PartialConstructorSpec.js | 21 +++++++++++++++++++ .../test/register/ServiceCompositorSpec.js | 21 +++++++++++++++++++ .../test/resolve/BundleResolverSpec.js | 21 +++++++++++++++++++ .../test/resolve/ExtensionResolverSpec.js | 21 +++++++++++++++++++ .../test/resolve/ImplementationLoaderSpec.js | 21 +++++++++++++++++++ .../test/resolve/RequireConfiguratorSpec.js | 21 +++++++++++++++++++ .../cache/src/CachingPersistenceDecorator.js | 21 +++++++++++++++++++ .../test/CachingPersistenceDecoratorSpec.js | 21 +++++++++++++++++++ .../persistence/couch/src/CouchDocument.js | 21 +++++++++++++++++++ .../persistence/couch/src/CouchIndicator.js | 21 +++++++++++++++++++ .../couch/src/CouchPersistenceProvider.js | 21 +++++++++++++++++++ .../couch/test/CouchDocumentSpec.js | 21 +++++++++++++++++++ .../couch/test/CouchIndicatorSpec.js | 21 +++++++++++++++++++ .../test/CouchPersistenceProviderSpec.js | 21 +++++++++++++++++++ .../elastic/src/ElasticIndicator.js | 21 +++++++++++++++++++ .../elastic/src/ElasticPersistenceProvider.js | 21 +++++++++++++++++++ .../elastic/test/ElasticIndicatorSpec.js | 21 +++++++++++++++++++ .../test/ElasticPersistenceProviderSpec.js | 21 +++++++++++++++++++ .../templates/persistence-failure-dialog.html | 21 +++++++++++++++++++ .../queue/src/PersistenceFailureConstants.js | 21 +++++++++++++++++++ .../queue/src/PersistenceFailureController.js | 21 +++++++++++++++++++ .../queue/src/PersistenceFailureDialog.js | 21 +++++++++++++++++++ .../queue/src/PersistenceFailureHandler.js | 21 +++++++++++++++++++ .../persistence/queue/src/PersistenceQueue.js | 21 +++++++++++++++++++ .../queue/src/PersistenceQueueHandler.js | 21 +++++++++++++++++++ .../queue/src/PersistenceQueueImpl.js | 21 +++++++++++++++++++ .../queue/src/QueuingPersistenceCapability.js | 21 +++++++++++++++++++ .../QueuingPersistenceCapabilityDecorator.js | 21 +++++++++++++++++++ .../test/PersistenceFailureConstantsSpec.js | 21 +++++++++++++++++++ .../test/PersistenceFailureControllerSpec.js | 21 +++++++++++++++++++ .../test/PersistenceFailureDialogSpec.js | 21 +++++++++++++++++++ .../test/PersistenceFailureHandlerSpec.js | 21 +++++++++++++++++++ .../queue/test/PersistenceQueueHandlerSpec.js | 21 +++++++++++++++++++ .../queue/test/PersistenceQueueImplSpec.js | 21 +++++++++++++++++++ .../queue/test/PersistenceQueueSpec.js | 21 +++++++++++++++++++ ...euingPersistenceCapabilityDecoratorSpec.js | 21 +++++++++++++++++++ .../test/QueuingPersistenceCapabilitySpec.js | 21 +++++++++++++++++++ platform/policy/src/PolicyActionDecorator.js | 21 +++++++++++++++++++ platform/policy/src/PolicyProvider.js | 21 +++++++++++++++++++ platform/policy/src/PolicyViewDecorator.js | 21 +++++++++++++++++++ .../policy/test/PolicyActionDecoratorSpec.js | 21 +++++++++++++++++++ platform/policy/test/PolicyProviderSpec.js | 21 +++++++++++++++++++ .../policy/test/PolicyViewDecoratorSpec.js | 21 +++++++++++++++++++ platform/representation/src/MCTInclude.js | 21 +++++++++++++++++++ .../representation/src/MCTRepresentation.js | 21 +++++++++++++++++++ .../src/gestures/ContextMenuGesture.js | 21 +++++++++++++++++++ .../src/gestures/DragGesture.js | 21 +++++++++++++++++++ .../src/gestures/DropGesture.js | 21 +++++++++++++++++++ .../src/gestures/GestureConstants.js | 21 +++++++++++++++++++ .../src/gestures/GestureProvider.js | 21 +++++++++++++++++++ .../src/gestures/GestureRepresenter.js | 21 +++++++++++++++++++ .../representation/src/services/DndService.js | 21 +++++++++++++++++++ .../representation/test/MCTIncludeSpec.js | 21 +++++++++++++++++++ .../test/MCTRepresentationSpec.js | 21 +++++++++++++++++++ .../test/gestures/ContextMenuGestureSpec.js | 21 +++++++++++++++++++ .../test/gestures/DragGestureSpec.js | 21 +++++++++++++++++++ .../test/gestures/DropGestureSpec.js | 21 +++++++++++++++++++ .../test/gestures/GestureProviderSpec.js | 21 +++++++++++++++++++ .../test/gestures/GestureRepresenterSpec.js | 21 +++++++++++++++++++ .../test/services/DndServiceSpec.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryAggregator.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryCapability.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryController.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryDelegator.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryFormatter.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryHandle.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryHandler.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryQueue.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetrySubscriber.js | 21 +++++++++++++++++++ .../telemetry/src/TelemetrySubscription.js | 21 +++++++++++++++++++ platform/telemetry/src/TelemetryTable.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryAggregatorSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryCapabilitySpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryControllerSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryDelegatorSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryFormatterSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryHandleSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetryHandlerSpec.js | 21 +++++++++++++++++++ platform/telemetry/test/TelemetryQueueSpec.js | 21 +++++++++++++++++++ .../telemetry/test/TelemetrySubscriberSpec.js | 21 +++++++++++++++++++ .../test/TelemetrySubscriptionSpec.js | 21 +++++++++++++++++++ platform/telemetry/test/TelemetryTableSpec.js | 21 +++++++++++++++++++ 528 files changed, 11068 insertions(+), 1 deletion(-) mode change 100755 => 100644 platform/commonUI/general/res/css/normalize.min.css mode change 100755 => 100644 platform/commonUI/general/res/sass/_main.scss diff --git a/example/builtins/res/templates/example.html b/example/builtins/res/templates/example.html index ad411dca35..e298489fff 100644 --- a/example/builtins/res/templates/example.html +++ b/example/builtins/res/templates/example.html @@ -1,3 +1,24 @@ +

Hello, world! I am the default route.

My controller has told me: "{{phrase}}"

\ No newline at end of file diff --git a/example/builtins/src/ExampleController.js b/example/builtins/src/ExampleController.js index 4e56779d8f..5315a78f49 100644 --- a/example/builtins/src/ExampleController.js +++ b/example/builtins/src/ExampleController.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/builtins/src/ExampleDirective.js b/example/builtins/src/ExampleDirective.js index 8837c74ee3..463df441c7 100644 --- a/example/builtins/src/ExampleDirective.js +++ b/example/builtins/src/ExampleDirective.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/builtins/src/ExampleService.js b/example/builtins/src/ExampleService.js index e580a53fcd..196cb22422 100644 --- a/example/builtins/src/ExampleService.js +++ b/example/builtins/src/ExampleService.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeAggregator.js b/example/composite/src/SomeAggregator.js index b54dc36429..7fbf7c79bb 100644 --- a/example/composite/src/SomeAggregator.js +++ b/example/composite/src/SomeAggregator.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeDecorator.js b/example/composite/src/SomeDecorator.js index 3b14b6674c..5cea54afc1 100644 --- a/example/composite/src/SomeDecorator.js +++ b/example/composite/src/SomeDecorator.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeOtherDecorator.js b/example/composite/src/SomeOtherDecorator.js index 6f0922c616..e95944399d 100644 --- a/example/composite/src/SomeOtherDecorator.js +++ b/example/composite/src/SomeOtherDecorator.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeOtherExample.js b/example/composite/src/SomeOtherExample.js index 696958aaf3..f14655e54a 100644 --- a/example/composite/src/SomeOtherExample.js +++ b/example/composite/src/SomeOtherExample.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeOtherProvider.js b/example/composite/src/SomeOtherProvider.js index ecdea59e75..568c162d27 100644 --- a/example/composite/src/SomeOtherProvider.js +++ b/example/composite/src/SomeOtherProvider.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/composite/src/SomeProvider.js b/example/composite/src/SomeProvider.js index cca7f0e8be..72c9c5376e 100644 --- a/example/composite/src/SomeProvider.js +++ b/example/composite/src/SomeProvider.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/extensions/src/SomeExample.js b/example/extensions/src/SomeExample.js index ceab8e2c6a..20996ee006 100644 --- a/example/extensions/src/SomeExample.js +++ b/example/extensions/src/SomeExample.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/forms/res/templates/exampleForm.html b/example/forms/res/templates/exampleForm.html index 2360b0df97..3347c21eb4 100644 --- a/example/forms/res/templates/exampleForm.html +++ b/example/forms/res/templates/exampleForm.html @@ -1,3 +1,24 @@ +
diff --git a/example/forms/src/ExampleFormController.js b/example/forms/src/ExampleFormController.js index 5534d26459..80d27eebc0 100644 --- a/example/forms/src/ExampleFormController.js +++ b/example/forms/src/ExampleFormController.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,window*/ define( diff --git a/example/generator/src/SinewaveTelemetry.js b/example/generator/src/SinewaveTelemetry.js index 9119617bfe..6c255bf56a 100644 --- a/example/generator/src/SinewaveTelemetry.js +++ b/example/generator/src/SinewaveTelemetry.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/generator/src/SinewaveTelemetryProvider.js b/example/generator/src/SinewaveTelemetryProvider.js index 4bb20a7354..014510f67c 100644 --- a/example/generator/src/SinewaveTelemetryProvider.js +++ b/example/generator/src/SinewaveTelemetryProvider.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise*/ /** diff --git a/example/persistence/src/BrowserPersistenceProvider.js b/example/persistence/src/BrowserPersistenceProvider.js index aa147dd453..e9f9440e29 100644 --- a/example/persistence/src/BrowserPersistenceProvider.js +++ b/example/persistence/src/BrowserPersistenceProvider.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ /** diff --git a/example/policy/src/ExamplePolicy.js b/example/policy/src/ExamplePolicy.js index ba9fd68812..c19a038348 100644 --- a/example/policy/src/ExamplePolicy.js +++ b/example/policy/src/ExamplePolicy.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/example/profiling/src/WatchIndicator.js b/example/profiling/src/WatchIndicator.js index 03a484927c..1fe8c649a4 100644 --- a/example/profiling/src/WatchIndicator.js +++ b/example/profiling/src/WatchIndicator.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/example/taxonomy/src/ExampleTaxonomyModelProvider.js b/example/taxonomy/src/ExampleTaxonomyModelProvider.js index 342418143e..d90e9bf941 100644 --- a/example/taxonomy/src/ExampleTaxonomyModelProvider.js +++ b/example/taxonomy/src/ExampleTaxonomyModelProvider.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/platform/commonUI/about/res/templates/about-dialog.html b/platform/commonUI/about/res/templates/about-dialog.html index 072de745d1..5113954105 100644 --- a/platform/commonUI/about/res/templates/about-dialog.html +++ b/platform/commonUI/about/res/templates/about-dialog.html @@ -1,3 +1,24 @@ +
diff --git a/platform/commonUI/about/res/templates/about-logo.html b/platform/commonUI/about/res/templates/about-logo.html index 2b658c2696..ef6307b57e 100644 --- a/platform/commonUI/about/res/templates/about-logo.html +++ b/platform/commonUI/about/res/templates/about-logo.html @@ -1,3 +1,24 @@ + diff --git a/platform/commonUI/about/res/templates/app-logo.html b/platform/commonUI/about/res/templates/app-logo.html index 75e495bd22..d1276ab672 100644 --- a/platform/commonUI/about/res/templates/app-logo.html +++ b/platform/commonUI/about/res/templates/app-logo.html @@ -1,3 +1,24 @@ + \ No newline at end of file diff --git a/platform/commonUI/about/res/templates/license-apache.html b/platform/commonUI/about/res/templates/license-apache.html index a7690c196e..26aa6f7f17 100644 --- a/platform/commonUI/about/res/templates/license-apache.html +++ b/platform/commonUI/about/res/templates/license-apache.html @@ -1,3 +1,24 @@ +

Version 2.0, January 2004

diff --git a/platform/commonUI/about/res/templates/license-mit.html b/platform/commonUI/about/res/templates/license-mit.html index 79f5428eca..cefbc538c2 100644 --- a/platform/commonUI/about/res/templates/license-mit.html +++ b/platform/commonUI/about/res/templates/license-mit.html @@ -1,3 +1,24 @@ +

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

\ No newline at end of file diff --git a/platform/commonUI/about/res/templates/licenses-export-md.html b/platform/commonUI/about/res/templates/licenses-export-md.html index 1e97b0f236..8eb13f5821 100644 --- a/platform/commonUI/about/res/templates/licenses-export-md.html +++ b/platform/commonUI/about/res/templates/licenses-export-md.html @@ -1,3 +1,24 @@ +

# Open MCT Web Licenses

## Apache License

diff --git a/platform/commonUI/about/res/templates/licenses.html b/platform/commonUI/about/res/templates/licenses.html index 474432014a..28c919198e 100644 --- a/platform/commonUI/about/res/templates/licenses.html +++ b/platform/commonUI/about/res/templates/licenses.html @@ -1,3 +1,24 @@ +

OpenMCT Web Licenses

Apache License

diff --git a/platform/commonUI/about/res/templates/overlay-about.html b/platform/commonUI/about/res/templates/overlay-about.html index f9af8cd923..26b28b31e5 100644 --- a/platform/commonUI/about/res/templates/overlay-about.html +++ b/platform/commonUI/about/res/templates/overlay-about.html @@ -1,3 +1,24 @@ + diff --git a/platform/commonUI/about/src/AboutController.js b/platform/commonUI/about/src/AboutController.js index 77c6ede2cb..7fc61c8cc2 100644 --- a/platform/commonUI/about/src/AboutController.js +++ b/platform/commonUI/about/src/AboutController.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/platform/commonUI/about/src/LicenseController.js b/platform/commonUI/about/src/LicenseController.js index 4fd707b7bf..1d996596aa 100644 --- a/platform/commonUI/about/src/LicenseController.js +++ b/platform/commonUI/about/src/LicenseController.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/platform/commonUI/about/src/LogoController.js b/platform/commonUI/about/src/LogoController.js index 1ff6b7602f..a688e96acf 100644 --- a/platform/commonUI/about/src/LogoController.js +++ b/platform/commonUI/about/src/LogoController.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define*/ define( diff --git a/platform/commonUI/about/test/AboutControllerSpec.js b/platform/commonUI/about/test/AboutControllerSpec.js index 1587b42054..c4fb26c488 100644 --- a/platform/commonUI/about/test/AboutControllerSpec.js +++ b/platform/commonUI/about/test/AboutControllerSpec.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ define( diff --git a/platform/commonUI/about/test/LicenseControllerSpec.js b/platform/commonUI/about/test/LicenseControllerSpec.js index b7afe03b43..9e281c3cfd 100644 --- a/platform/commonUI/about/test/LicenseControllerSpec.js +++ b/platform/commonUI/about/test/LicenseControllerSpec.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ define( diff --git a/platform/commonUI/about/test/LogoControllerSpec.js b/platform/commonUI/about/test/LogoControllerSpec.js index f3afb2ab57..c7ad665319 100644 --- a/platform/commonUI/about/test/LogoControllerSpec.js +++ b/platform/commonUI/about/test/LogoControllerSpec.js @@ -1,3 +1,24 @@ +/***************************************************************************** + * Open MCT Web, Copyright (c) 2014-2015, United States Government + * as represented by the Administrator of the National Aeronautics and Space + * Administration. All rights reserved. + * + * Open MCT Web is licensed under the Apache License, Version 2.0 (the + * "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. + * + * Open MCT Web includes source code licensed under additional open source + * 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. + *****************************************************************************/ /*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ define( diff --git a/platform/commonUI/browse/res/templates/browse-object.html b/platform/commonUI/browse/res/templates/browse-object.html index a65a6c6a3a..dc5ed477e7 100644 --- a/platform/commonUI/browse/res/templates/browse-object.html +++ b/platform/commonUI/browse/res/templates/browse-object.html @@ -1,3 +1,24 @@ +
diff --git a/platform/commonUI/browse/res/templates/browse.html b/platform/commonUI/browse/res/templates/browse.html index 60b51ccfac..d7991b9649 100644 --- a/platform/commonUI/browse/res/templates/browse.html +++ b/platform/commonUI/browse/res/templates/browse.html @@ -1,3 +1,24 @@ +
diff --git a/platform/commonUI/browse/res/templates/browse/object-header.html b/platform/commonUI/browse/res/templates/browse/object-header.html index 6d11c497da..c6198eb0ef 100644 --- a/platform/commonUI/browse/res/templates/browse/object-header.html +++ b/platform/commonUI/browse/res/templates/browse/object-header.html @@ -1,3 +1,24 @@ +
{{type.getGlyph()}} {{parameters.mode}} diff --git a/platform/commonUI/browse/res/templates/create/create-button.html b/platform/commonUI/browse/res/templates/create/create-button.html index d9e48dddc3..e342a1b350 100644 --- a/platform/commonUI/browse/res/templates/create/create-button.html +++ b/platform/commonUI/browse/res/templates/create/create-button.html @@ -1,3 +1,24 @@ +