Skip to content

Commit

Permalink
issue-344 add more texts to about page
Browse files Browse the repository at this point in the history
  • Loading branch information
RLiNREL committed Dec 6, 2024
1 parent 78f4a73 commit a4bdd18
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 1 deletion.
70 changes: 70 additions & 0 deletions src/app/core-components/about/about.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ <h4>
DE-AC36-08GO28308 and Oak Ridge National Laboratory Contract No.
DE-AC05-00OR22725.
</p>
<p>
This Software is provided for research purposes only. NREL and ORNL has no obligation to
update, debug, and/or continue to support the Software. Any use of the Software is at your own risk.
</p>
</div>
<div class="ps-3 pt-2 pe-3 pb-2">

Expand All @@ -39,6 +43,72 @@ <h4>
transferrable, and sublicensable license under any rights necessary for such use or implementation.

</p>
<p>
THIS SOFTWARE IS PROVIDED BY NREL AND ORNL "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL NREL, ORNL, OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</p>
</div>
<div class="ps-3 pt-2 pe-3 pb-2">

<h4>
<fa-icon [icon]="faScaleBalanced" class="pe-1"></fa-icon>
Software license
</h4>
<p>Copyright 2024, Alliance for Sustainable Energy, LLC and UT-Battelle, LLC</p>
<p>JUSTIFI</p>
<p>All rights reserved</p>

<!-- NEB-Tool -->

<p>OPEN SOURCE LICENSE (Permissive)</p>

<p>
Subject to the conditions of this License, Alliance for Sustainable Energy, LLC
and UT-Battelle, LLC (the "Licensors") hereby grant, free of charge, to any person (the "Licensee")
obtaining a copy of this software and associated documentation files (the "Software"), a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to use, copy, modify,
merge, publish, distribute, and/or sublicense copies of the Software.
</p>

<p>
1. Redistributions of Software must retain the above open source license grant, copyright and license notices,
this list of conditions, and the disclaimer listed below. Changes or modifications to,
or derivative works of the Software must be noted with comments and the contributor and organization's name.
</p>

<p>
2. Neither the names of Licensors, the Department of Energy, or their employees may be used
to endorse or promote products derived from this Software without their specific prior written permission.
</p>

<p>
3. If the Software is protected by a proprietary trademark owned by either Licensor or
the Department of Energy, then derivative works of the Software may not be distributed
using the trademark without the prior written approval of the trademark owner.
</p>

<hr>

<p>
DISCLAIMER
ALLIANCE FOR SUSTAINABLE ENERGY, LLC, UT-BATTELLE, LLC AND THE GOVERNMENT MAKE NO REPRESENTATIONS
AND DISCLAIM ALL WARRANTIES, BOTH EXPRESSED AND IMPLIED. THERE ARE NO EXPRESS OR IMPLIED WARRANTIES
OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR THAT THE USE OF THE SOFTWARE WILL NOT
INFRINGE ANY PATENT, COPYRIGHT, TRADEMARK, OR OTHER PROPRIETARY RIGHTS,
OR THAT THE SOFTWARE WILL ACCOMPLISH THE INTENDED RESULTS OR THAT THE SOFTWARE OR
ITS USE WILL NOT RESULT IN INJURY OR DAMAGE. THE USER ASSUMES RESPONSIBILITY
FOR ALL LIABILITIES, PENALTIES, FINES, CLAIMS, CAUSES OF ACTION,
AND COSTS AND EXPENSES, CAUSED BY, RESULTING FROM OR ARISING OUT OF, IN WHOLE OR IN PART THE USE,
STORAGE OR DISPOSAL OF THE SOFTWARE.
</p>
</div>
</div>
</div>
3 changes: 2 additions & 1 deletion src/app/core-components/about/about.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { faCircleInfo, faInfo, IconDefinition } from '@fortawesome/free-solid-svg-icons';
import { faCircleInfo, faInfo, IconDefinition, faScaleBalanced } from '@fortawesome/free-solid-svg-icons';

@Component({
selector: 'app-about',
Expand All @@ -9,4 +9,5 @@ import { faCircleInfo, faInfo, IconDefinition } from '@fortawesome/free-solid-sv
export class AboutComponent {

faCircleInfo: IconDefinition = faCircleInfo;
faScaleBalanced: IconDefinition = faScaleBalanced;
}

0 comments on commit a4bdd18

Please sign in to comment.