forked from unfoldedcircle/integration-home-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.hbs
113 lines (101 loc) · 3.73 KB
/
about.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<html>
<head>
<style>
@media (prefers-color-scheme: dark) {
body {
background: #333;
color: white;
}
a {
color: skyblue;
}
}
.container {
font-family: sans-serif;
max-width: 800px;
margin: 0 auto;
}
.intro {
text-align: center;
}
.licenses-list {
list-style-type: none;
margin: 0;
padding: 0;
}
.license-used-by {
margin-top: -10px;
}
.license-text {
max-height: 200px;
overflow-y: scroll;
white-space: pre-wrap;
}
</style>
<title>Third Party Licenses</title>
</head>
<body>
<main class="container">
<div class="intro">
<h1>Licenses</h1>
<p>The Unfolded Circle Home-Assistant Integration for Remote Two is licensed under the Mozilla Public License 2.0.</p>
</div>
<h2>Overview of Third Party Licenses</h2>
<p>These are the licenses for the libraries we use in the Home-Assistant Integration for Remote Two:</p>
<ul class="licenses-overview">
{{#each overview}}
<li><a href="#{{id}}">{{name}}</a> ({{count}})</li>
{{/each}}
<li><a href="#other">Other</a> (1)</li>
</ul>
<h2>Attributions</h2>
<pre class="license-text">
Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
This product contains software developed by the OpenSSL Project for use in the OpenSSL Toolkit (www.openssl.org/).
This product contains cryptographic software by Eric Young ([email protected]).
This product contains software by Tim Hudson ([email protected]).
</pre>
<h2>All license text</h2>
<ul class="licenses-list">
{{#each licenses}}
<li class="license">
<h3 id="{{id}}">{{name}}</h3>
<h4>Used by:</h4>
<ul class="license-used-by">
{{#each used_by}}
<li><a href="{{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}}">{{crate.name}} {{crate.version}}</a></li>
{{/each}}
</ul>
<pre class="license-text">{{text}}</pre>
</li>
{{/each}}
</ul>
<h2 id="other">Other</h2>
<ul class="licenses-list">
<li class="license">
<h3>webpki</h3>
<ul class="license-used-by">
<li><a href="https://github.com/briansmith/webpki">webpki 0.22.0</a></li>
</ul>
<pre class="license-text">
Except as otherwise noted, this project is licensed under the following
(ISC-style) terms:
Copyright 2015 Brian Smith.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
The files under third-party/chromium are licensed as described in
third-party/chromium/LICENSE.
</pre>
</li>
</ul>
</main>
</body>
</html>