mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
10863514cb
WTD-1051.
42 lines
1.9 KiB
HTML
42 lines
1.9 KiB
HTML
<!--
|
|
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.
|
|
-->
|
|
<div ng-controller="LicenseController as lc" class="abs l-about l-standalone s-text s-md-export">
|
|
<h1># Open MCT Web Licenses</h1>
|
|
<h2>## Apache License</h2>
|
|
<mct-include key="'license-apache'"></mct-include>
|
|
|
|
<h2>## Software Components Licenses</h2>
|
|
<p>This software includes components released under the following licenses:</p>
|
|
<div class="l-license-software" ng-repeat="license in lc.licenses()">
|
|
<p>### {{license.name}}</p>
|
|
<p>#### Info</p>
|
|
<p>* Link: {{license.website}}</p>
|
|
<p>* Version: {{license.version}}</p>
|
|
<p>* Author<span ng-show="license.author.indexOf(',') > 0">s</span>: {{license.author}}</p>
|
|
<p>* Description: {{license.description}}</p>
|
|
<p>#### License</p>
|
|
<p ng-show="license.copyright.length > 0">{{license.copyright}}</p>
|
|
<mct-include key="license.license"></mct-include>
|
|
<p> </p>
|
|
<p>---</p>
|
|
</div>
|
|
</div> |