forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThirdPartyNotices.tpl.txt
56 lines (38 loc) · 1.65 KB
/
ThirdPartyNotices.tpl.txt
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
<%= name %> uses third-party libraries or other resources that may
be distributed under licenses different than <%= name %>.
In the event that we accidentally failed to list a required notice,
please bring it to our attention through any of the ways detailed here :
<%= author.email %>
# TABLE OF CONTENTS
The following is a listing of the open source components detailed in
this document. This list is provided for your convenience; please read
further if you wish to review the copyright notice(s) and the full text
of the license associated with each component.
## Notices
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
Do Not Translate or Localize
<% _.each(licenses, function(license) {%>
### SECTION <%= license.num %>: <%= license.name %> LICENSE
<% _.each(license.dependencies, function(pkg, i) {%>
- <%= pkg.name %> retrieved from <%= pkg.url %><% }); %>
<% }); %>
## Appendices
<% _.each(licenses, function(license) {%>
### Appendix <%= license.letter %>: The <%= license.name %> License
<% }); %>
-------------------------------------
## Notices
<% _.each(licenses, function(license) {%>
### SECTION <%= license.num %>: <%= license.name %> LICENSE
The <%= license.name %> License is applicable to the following <%= license.dependencies.length %> component(s).
<% _.each(_.groupBy(license.dependencies, 'grouper'), function(d, grouper) {%>
<% _.each(d, function(pkg, i) {%>
- <%= pkg.name %> retrieved from <%= pkg.url %><% }); %>
<%= _.first(d, 'licenseText').licenseText %>
<% }); %>
<% }); %>
## Appendices
<% _.each(licenses, function(license) {%>
### Appendix <%= license.letter %>: The <%= license.name %> License
<%= license.text %>
<% }); %>