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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Thunderbird
Source: https://ftp.mozilla.org/pub/mozilla.org/thunderbird/
Disclaimer: The original upstream tarball is modified from upstream by
removing a set of sourceless binary, non-free, and VCS-related files. You
can find a repack.py script in the debian directory doing this cleanup,
using filtering data present in a source.filter file in the same directory.
If this file is incomplete, which I'm pretty sure is the case, because it's
difficult not to forget anything in this huge amount of data, please file
a bug or contact me.
Some licensing terms are not included verbatim in this file on purpose, for
terms that are available in a file in subdirectories that are not used to
build the binary packages.
Files: *
thunderbird-l10n/*
Copyright: 1998-2023, Mozilla Project
License: MPL-2.0 or GPL-2 or LGPL-2.1
Files: debian/*
Copyright: 2003-2009, Alexander Sack <asac@debian.org>
2008, Fabien Tassin <fta@sofaraway.org>
2013-2023, Carsten Schoenert <c.schoenert@t-online.de>
2009-2013, Guido Günther <agx@sigxcpu.org>
2010-2016, Christoph Goehre <chris@sigxcpu.org>
License: MPL-1.1 or MPL-2.0 or GPL-2 or LGPL-2.1
Files: debian/logo/icedove/icedove_icon_plain.svg
debian/logo/icedove/icedove_icon_profile_plain.svg
debian/logo/icedove/icedove_icon_profile.svg
debian/logo/icedove/icedove_icon.svg
debian/logo/icedove/icedove_lettering.svg
debian/logo/icedove/icedove_logo.svg
Copyright: 2006-2007, Ricardo Fernández Fuentes
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: comm/calendar/*
Copyright: no-info-found
License: MPL-2.0
Files: comm/calendar/base/modules/*
Copyright: 2011-2012, Philipp Kewisch
License: MPL-2.0
Files: comm/calendar/itip/*
Copyright: 2007, Simdesk Technologies
License: MPL-1.1
Files: comm/chat/protocols/irc/test/test_sendBufferedCommand.js
Copyright: no-info-found
License: MPL-2.0
Files: comm/mail/base/test/unit/resources/*
comm/mail/base/test/unit/test_alertHook.js
comm/mail/base/test/unit/test_attachmentChecker.js
comm/mail/components/test/unit/test_about_support.js
comm/mail/locales/en-US/all-l10n.js
Copyright: no-info-found
License: MPL-2.0
Files: comm/mail/branding/thunderbird/net.thunderbird.Thunderbird.appdata.xml
Copyright: 2020, MZLA Technologies Corporation
License: CC0-1.0
Files: comm/mailnews/*
browser/*
Copyright: no-info-found
License: MPL-2.0
Files: comm/mailnews/base/src/nsMsgAccountManager.h
comm/mailnews/mime/src/mimebuf.cpp
comm/mailnews/mime/src/mimebuf.h
comm/mailnews/mime/src/mimedrft.cpp
comm/mailnews/mime/src/mimei.cpp
comm/mailnews/mime/src/mimemrel.cpp
comm/mailnews/mime/src/mimeobj.cpp
comm/mailnews/mime/src/mimetext.cpp
Copyright: 2000, International Business Machines (IBM) Corporation
License: MPL-2.0
Files: comm/mailnews/mime/src/modmimee.h
Copyright: 1996, Netscape Communications Corporation
License: MPL-2.0
Files: config/tests/unit-mozunit.py
config/tests/unitMozZipFile.py
Copyright: no-info-found
License: MPL-2.0
Files: docshell/test/*
Copyright: no-info-found
License: MPL-2.0
Files: dom/base/nsPropertyTable.cpp
dom/base/nsPropertyTable.h
Copyright: 2000, International Business Machines (IBM)
License: MPL-2.0
Files: dom/canvas/WebGLTexelConversions.h
Copyright: 2010, Mozilla Corporation
2010, Google Inc.
2010, Apple Inc.
License: BSD-2-clause
Files: dom/canvas/WebGLValidateStrings.h
Copyright: 2011, Mozilla Corporation
2011, Apple Inc.
License: BSD-2-clause
Files: dom/imptests/testharnessreport.js
dom/indexedDB/test/browser_bug839193.js
dom/indexedDB/test/bug839193.js
Copyright: no-info-found
License: MPL-2.0
Files: dom/events/PointerEvent.cpp
dom/events/PointerEvent.h
Copyright: 2013, Microsoft Open Technologies, Inc.
License: MPL-2.0
Files: dom/media/gmp/GMPVideoEncodedFrameImpl.h
Copyright: 2014, Mozilla Corporation
License: BSD-2-clause
Files: dom/media/gmp/gmp-api/*
Copyright: 2014, Mozilla Foundation
2011, The WebRTC project authors.
License: BSD-3-clause
Files: dom/media/gmp/gmp-api/gmp-storage.h
Copyright: 2012-2014, Mozilla Foundation and contributors
License: Apache-2.0
Files: dom/media/gmp/gmp-api/gmp-errors.h
dom/media/gmp/gmp-api/gmp-platform.h
Copyright: 2014, Mozilla
License: BSD-3-clause
Files: dom/media/test/make-headers.sh
Copyright: no-info-found
License: MPL-2.0
Files: dom/media/webaudio/FFTBlock.cpp
dom/media/webaudio/blink/*
Copyright: 2005-2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: dom/media/webaudio/blink/DenormalDisabler.h
dom/media/webaudio/blink/HRTFPanner.cpp
dom/media/webaudio/blink/HRTFPanner.h
Copyright: 2010-2011, Google Inc.
License: BSD-2-clause
Files: dom/media/webaudio/blink/IRC_Composite_C_R0195-incl.cpp
Copyright: no-info-found
License: MPL-2.0
Files: dom/media/webspeech/recognition/endpointer.cc
dom/media/webspeech/recognition/endpointer.h
dom/media/webspeech/recognition/energy_endpointer.cc
dom/media/webspeech/recognition/energy_endpointer.h
dom/media/webspeech/recognition/energy_endpointer_params.cc
dom/media/webspeech/recognition/energy_endpointer_params.h
Copyright: 2006-2013, The Chromium Authors
License: BSD-3-clause
Files: dom/svg/test/matrixUtils.js
dom/tests/browser/browser_ConsoleStoragePBTest_perwindowpb.js
dom/tests/browser/browser_bug1004814.js
dom/tests/browser/browser_bug1008941_dismissGeolocationHanger.js
dom/tests/browser/browser_frame_elements.js
dom/tests/mochitest/dom-level1-core/*
dom/tests/mochitest/dom-level2-core/*
dom/tests/unit/test_bug319968.js
dom/tests/unit/test_bug465752.js
Copyright: no-info-found
License: MPL-2.0
Files: dom/tests/mochitest/ajax/jquery/dist/*
Copyright: 2006-2008, John Resig (jquery.com)
License: GPL-2 or Expat
Files: dom/tests/mochitest/ajax/prototype/test/lib/*
Copyright: 2005, Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
2005, Michael Schuerig (http://www.schuerig.de/michael/)
2005, Jon Tirsen (http://www.tirsen.com)
License: Expat
Files: dom/tests/mochitest/ajax/scriptaculous/src/scriptaculous.js
Copyright: 2005-2007, Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
License: Expat
Files: dom/xul/nsXULElement.cpp
Copyright: 2000, International Business Machines (IBM)
License: MPL-2.0
Files: editor/libeditor/tests/*
Copyright: 2007-2008, 2010, 2012, Google Inc
License: Apache-2.0
Files: extensions/auth/gssapi.h
Copyright: 1993, OpenVision Technologies, Inc
License: other-1
Permission to use, copy, modify, distribute, and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appears in all copies and
that both that copyright notice and this permission notice appear in
supporting documentation, and that the name of OpenVision not be used
in advertising or publicity pertaining to distribution of the software
without specific, written prior permission. OpenVision makes no
representations about the suitability of this software for any
purpose. It is provided "as is" without express or implied warranty.
.
OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, 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.
Files: extensions/spellcheck/hunspell/*
Copyright: 2002-2005 Kevin B. Hendricks, Stratford, Ontario, Canada
2002-2005 László Németh
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: extensions/spellcheck/hunspell/src/phonet.cxx
extensions/spellcheck/hunspell/src/phonet.hxx
Copyright: 2000, 2007 Bjoern Jacke <bjoern@j3e.de>
2007, László Németh
License: LGPL-2.1
Files: extensions/spellcheck/locales/en-US/hunspell/*
Copyright: various contributors
License: other-2
The complete text of the hunspell License can be found in the
`README_en_US.txt' file in the same directory as this file.
Files: gfx/cairo/cairo/*
Copyright: 2005-2008, RedHat, Inc.
2003, University of Southern California
2007-2008, Carl D. Worth <cworth@cworth.org>,
Kristian Høgsberg <krh@redhat.com>,
Keith Packard <keithp@keithp.com>,
Adrian Johnson <ajohnson@redneon.com>
various contributors
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-analysis-surface-private.h
gfx/cairo/cairo/src/cairo-scaled-font.c
gfx/cairo/cairo/src/cairo-wideint-private.h
gfx/cairo/cairo/src/cairo-wideint-type-private.h
gfx/cairo/cairo/src/cairo-wideint.c
Copyright: 2004-2005, Keith Packard
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-analysis-surface.c
Copyright: 2007, Adrian Johnson
2006, Keith Packard
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-arc.c
gfx/cairo/cairo/src/cairo-directfb-surface.c
gfx/cairo/cairo/src/cairo-directfb.h
gfx/cairo/cairo/src/cairo-fixed.c
gfx/cairo/cairo/src/cairo-hull.c
gfx/cairo/cairo/src/cairo-matrix.c
gfx/cairo/cairo/src/cairo-path-bounds.c
gfx/cairo/cairo/src/cairo-path-fill.c
gfx/cairo/cairo/src/cairo-path-stroke.c
gfx/cairo/cairo/src/cairo-pdf.h
gfx/cairo/cairo/src/cairo-png.c
gfx/cairo/cairo/src/cairo-polygon.c
gfx/cairo/cairo/src/cairo-ps.h
gfx/cairo/cairo/src/cairo-slope.c
gfx/cairo/cairo/src/cairo-spline.c
gfx/cairo/cairo/src/cairo-xlib-xrender.h
gfx/cairo/cairo/src/cairo-xlib.h
Copyright: 2002-2003, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-atomic-private.h
Copyright: 2010, Andrea Canciani
2007, Chris Wilson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-atomic.c
gfx/cairo/cairo/src/cairo-drm.h
gfx/cairo/cairo/src/cairo-freed-pool-private.h
gfx/cairo/cairo/src/cairo-freed-pool.c
gfx/cairo/cairo/src/cairo-list-private.h
gfx/cairo/cairo/src/cairo-path-in-fill.c
gfx/cairo/cairo/src/cairo-reference-count-private.h
gfx/cairo/cairo/src/cairo-rtree-private.h
gfx/cairo/cairo/src/cairo-rtree.c
gfx/cairo/cairo/src/cairo-script-surface.c
gfx/cairo/cairo/src/cairo-script.h
gfx/cairo/cairo/src/cairo-surface-clipper-private.h
gfx/cairo/cairo/src/cairo-surface-clipper.c
gfx/cairo/cairo/src/cairo-tee-surface-private.h
gfx/cairo/cairo/src/cairo-tee.h
gfx/cairo/cairo/src/cairo-xlib-display.c
gfx/cairo/cairo/src/cairo-xml-surface.c
gfx/cairo/cairo/src/cairo-xml.h
Copyright: 2007-2009, Chris Wilson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-base64-stream.c
Copyright: 2009, Chris Wilson
2005-2007, Emmanuel Pacaud <emmanuel.pacaud@free.fr>
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-bentley-ottmann-rectangular.c
gfx/cairo/cairo/src/cairo-bentley-ottmann-rectilinear.c
gfx/cairo/cairo/src/cairo-bentley-ottmann.c
Copyright: 2008-2009, Chris Wilson
2006, Red Hat, Inc
2004, Carl Worth
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-beos-surface.cpp
gfx/cairo/cairo/src/cairo-beos.h
Copyright: 2005, Christian Biesinger <cbiesinger@web.de>
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-botor-scan-converter.c
Copyright: 2009, Intel Corporation
2008, M Joonas Pihlaja
2008, Chris Wilson
2007, David Turner
2006, Red Hat, Inc
2004, Carl Worth
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-boxes-private.h
gfx/cairo/cairo/src/cairo-boxes.c
gfx/cairo/cairo/src/cairo-composite-rectangles-private.h
gfx/cairo/cairo/src/cairo-composite-rectangles.c
gfx/cairo/cairo/src/cairo-device-private.h
gfx/cairo/cairo/src/cairo-device.c
gfx/cairo/cairo/src/cairo-observer.c
gfx/cairo/cairo/src/cairo-rectangular-scan-converter.c
gfx/cairo/cairo/src/cairo-surface-snapshot-private.h
gfx/cairo/cairo/src/cairo-surface-subsurface-private.h
gfx/cairo/cairo/src/cairo-surface-subsurface.c
Copyright: 2009-2010, Intel Corporation
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-cff-subset.c
gfx/cairo/cairo/src/cairo-deflate-stream.c
gfx/cairo/cairo/src/cairo-image-info-private.h
gfx/cairo/cairo/src/cairo-image-info.c
gfx/cairo/cairo/src/cairo-type3-glyph-surface-private.h
gfx/cairo/cairo/src/cairo-type3-glyph-surface.c
Copyright: 2006-2008, Adrian Johnson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-clip.c
gfx/cairo/cairo/src/cairo-surface-offset-private.h
gfx/cairo/cairo/src/cairo-surface-wrapper-private.h
Copyright: 2009, Chris Wilson
2005, Red Hat, Inc.
2002, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-color.c
gfx/cairo/cairo/src/cairo-compiler-private.h
gfx/cairo/cairo/src/cairo-error-private.h
gfx/cairo/cairo/src/cairo-gstate.c
gfx/cairo/cairo/src/cairo-path-fixed.c
gfx/cairo/cairo/src/cairo-ps-surface-private.h
gfx/cairo/cairo/src/cairo-rectangle.c
gfx/cairo/cairo/src/cairo-scaled-font-private.h
gfx/cairo/cairo/src/cairo-slope-private.h
gfx/cairo/cairo/src/cairo-surface-fallback-private.h
gfx/cairo/cairo/src/cairo-surface-fallback.c
gfx/cairo/cairo/src/cairo-surface-private.h
gfx/cairo/cairo/src/cairo-surface.c
gfx/cairo/cairo/src/cairo-types-private.h
gfx/cairo/cairo/src/cairo-version.c
gfx/cairo/cairo/src/cairo-xlib-surface.c
gfx/cairo/cairo/src/cairo.c
gfx/cairo/cairo/src/cairo.h
gfx/cairo/cairo/src/cairoint.h
Copyright: 2005, 2006, Red Hat, Inc.
2002, 2003, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-gl-private.h
gfx/cairo/cairo/src/cairo-gl-surface.c
gfx/cairo/cairo/src/cairo-glx-context.c
Copyright: 2009, Eric Anholt
2009, Chris Wilson
2005, 2010, Red Hat, Inc
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-fixed-private.h
gfx/cairo/cairo/src/cairo-fixed-type-private.h
gfx/cairo/cairo/src/cairo-malloc-private.h
gfx/cairo/cairo/src/cairo-qt-surface.cpp
gfx/cairo/cairo/src/cairo-qt.h
gfx/cairo/cairo/src/cairo-quartz-font.c
gfx/cairo/cairo/src/cairo-quartz-image-surface.c
gfx/cairo/cairo/src/cairo-quartz-image.h
gfx/cairo/cairo/src/cairo-quartz-surface.c
gfx/cairo/cairo/src/cairo-quartz.h
Copyright: 2006-2008, Mozilla Corporation
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-font-face-twin.c
gfx/cairo/cairo/src/cairo-ft-font.c
gfx/cairo/cairo/src/cairo-traps.c
gfx/cairo/cairo/src/cairo-xlib-screen.c
Copyright: 2005, 2007, 2008, Red Hat, Inc
2000, 2002, 2004, Keith Packard
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-font-face.c
gfx/cairo/cairo/src/cairo-toy-font-face.c
Copyright: 2005, 2008, Red Hat, Inc.
2002, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-font-options.c
Copyright: 2005, Red Hat, Inc.
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-fontconfig-private.h
Copyright: 2010, Intel Corporation
2005, Red Hat, Inc.
2000, Keith Packard
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-gl-glyphs.c
Copyright: 2010, Red Hat, Inc., Intel Corporation
2009, Chris Wilson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-gl-shaders.c
Copyright: 2010, Red Hat, Inc., Eric Anholt
2009, T. Zachary Laine
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-gl.h
Copyright: 2009, Eric Anholt
2009, Chris Wilson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-image-surface.c
gfx/cairo/cairo/src/cairo-xcb-surface.c
gfx/cairo/cairo/src/cairo-xcb.h
Copyright: 2009-2010, Intel Corporation
2002, 2003, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-misc.c
gfx/cairo/cairo/src/cairo-ps-surface.c
Copyright: 2007, 2008, Adrian Johnson
2005, Red Hat, Inc.
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-mutex-impl-private.h
gfx/cairo/cairo/src/cairo-mutex-private.h
gfx/cairo/cairo/src/cairo-mutex-type-private.h
Copyright: 2007, Mathias Hasselmann
2005, 2007, Red Hat, Inc.
2002, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-mutex-list-private.h
gfx/cairo/cairo/src/cairo-mutex.c
Copyright: 2007, Mathias Hasselmann
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-os2-private.h
gfx/cairo/cairo/src/cairo-os2-surface.c
gfx/cairo/cairo/src/cairo-os2.h
Copyright: 2005, 2006, netlabs.org
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-paginated-surface.c
gfx/cairo/cairo/src/cairo-pdf-operators-private.h
gfx/cairo/cairo/src/cairo-pdf-operators.c
gfx/cairo/cairo/src/cairo-pdf-surface-private.h
gfx/cairo/cairo/src/cairo-pdf-surface.c
gfx/cairo/cairo/src/cairo-recording-surface.c
Copyright: 2007, 2008, Adrian Johnson
2004-2006, Red Hat, Inc
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-pen.c
Copyright: 2008, Chris Wilson
2002, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-platform.h
Copyright: 2005, Mozilla Foundation
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-quartz-private.h
Copyright: 2006-2007, Mozilla Corporation
2004, Calum Robinson
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-scaled-font-subsets.c
Copyright: 2006, Keith Packard
2005, 2006, Red Hat, Inc.
2003, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-spans-private.h
gfx/cairo/cairo/src/cairo-spans.c
Copyright: 2008, M Joonas Pihlaja
License: Expat
Files: gfx/cairo/cairo/src/cairo-surface-offset.c
gfx/cairo/cairo/src/cairo-surface-wrapper.c
Copyright: 2009, Chris Wilson
2007, Adrian Johnson
2005, Red Hat, Inc.
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-surface-snapshot.c
Copyright: 2009, Intel Corporation
2005, Red Hat, Inc
2002, University of Southern California
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-svg-surface-private.h
gfx/cairo/cairo/src/cairo-svg-surface.c
Copyright: 2005-2007, Emmanuel Pacaud <emmanuel.pacaud@free.fr>
2004, 2006, Red Hat, Inc.
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-svg.h
Copyright: 2005, Emmanuel Pacaud <emmanuel.pacaud@univ-poitiers.fr>
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-tee-surface.c
Copyright: 2009, Chris Wilson
2005, Red Hat, Inc.
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-tor-scan-converter.c
Copyright: 2008, M Joonas Pihlaja
2007, David Turner
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-unicode.c
Copyright: 2005, Red Hat, Inc
1999, Tom Tromey
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-vg-surface.c
Copyright: 2009, Chris Wilson
2008, Opened Hand Ltd
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/cairo/src/cairo-vg.h
Copyright: 2009, Chris Wilson
2007, Mozilla Corporation
License: MPL-1.1 or LGPL-2.1
Files: gfx/cairo/libpixman/src/*
Copyright: 2000 Keith Packard, member of The XFree86 Project, Inc.,
2005 Lars Knoll & Zack Rusin, Trolltech
2008 Aaron Plattner, NVIDIA Corporation
2008 Mozilla Corporation
1999,2004 Keith Packard
2000 SuSE, Inc.
2004,2005,2007,2008 Red Hat, Inc.
2004 Nicholas Miell
2005 Trolltech AS
2008 Rodrigo Kumpera
2008 André Tupinambá
2007 Luca Barbato
License: other-3
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of the copyright holder not be used in
advertising or publicity pertaining to distribution of the software without
specific, written prior permission. The copyright holder makes no
representations about the suitability of this software for any purpose. It
is provided "as is" without express or implied warranty.
.
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
SPECIAL, 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.
Files: gfx/cairo/libpixman/src/pixman-arm-common.h
gfx/cairo/libpixman/src/pixman-arm-neon-asm.h
Copyright: 2009-2010, Nokia Corporation
License: Expat
Files: gfx/cairo/libpixman/src/pixman-combine-float.c
Copyright: 2010, 2012, Soren Sandmann Pedersen
2010, 2012, Red Hat, Inc.
License: Expat
Files: gfx/cairo/libpixman/src/pixman-filter.c
Copyright: 2012, Soren Sandmann
2012, Red Hat, Inc.
License: Expat
Files: gfx/cairo/libpixman/src/pixman-glyph.c
Copyright: 2010-2012, Red Hat, Inc.
2010, 2012, Soren Sandmann <sandmann@cs.au.dk>
License: Expat
Files: gfx/cairo/libpixman/src/pixman-mips-dspr2-asm.h
gfx/cairo/libpixman/src/pixman-mips-dspr2.c
gfx/cairo/libpixman/src/pixman-mips-dspr2.h
Copyright: 2012, MIPS Technologies, Inc.
License: BSD-3-clause
Files: gfx/cairo/libpixman/src/pixman-noop.c
gfx/cairo/libpixman/src/pixman-version.h
Copyright: 1996, 1998-1999, 2007-2009, 2011, 2013, Red Hat, Inc.
License: Expat
Files: gfx/cairo/libpixman/src/pixman-region.c
Copyright: 1998, Keith Packard
1987-1989, Digital Equipment Coportation
1987-1989, The Open Group
License: other-4
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
.
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
OPEN GROUP 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.
.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, 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.
Files: gfx/cairo/libpixman/src/pixman.h
Copyright: 2007, Red Hat, Inc.
1998, 2004, Keith Packard
1987, Digital Equipment Corporation, Maynard, Massachusetts
1987, 1998, The Open Group
License: other-5
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
.
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
OPEN GROUP 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.
.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
.
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, 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.
Files: gfx/gl/ForceDiscreteGPUHelperCGL.h
Copyright: The Chromium Authors
License: MPL-2.0
Files: gfx/graphite2/*
Copyright: 2010-2013, SIL International
License: LGPL-2.1
Files: gfx/graphite2/src/MozGrMalloc.h
Copyright: no-info-found
License: MPL-2.0
Files: gfx/harfbuzz/*
Copyright: 1998-2004 David Turner and Werner Lemberg
2005 David Turner
2004, 2007-2009, 2010 Red Hat, Inc.
2006 Behdad Esfahbod
2007 Chris Wilson
2009 Martin Hosken and SIL International
2009 Keith Stribley
2010, 2012 Mozilla Foundation
2008, 2010 Nokia Corporation and/or its subsidiary(-ies)
2011 Codethink Limited
2010,2011,2012 Google, Inc.
License: old-MIT
Files: gfx/harfbuzz/src/hb-blob.cc
gfx/harfbuzz/src/hb-blob.h
gfx/harfbuzz/src/hb-face.h
gfx/harfbuzz/src/hb-font.h
gfx/harfbuzz/src/hb-ft.h
gfx/harfbuzz/src/hb-ot-layout.h
gfx/harfbuzz/src/hb-ot-shape.h
gfx/harfbuzz/src/hb-ot.h
gfx/harfbuzz/src/hb.h
gfx/harfbuzz/src/main.cc
Copyright: 1996, 1998-1999, 2007-2009, 2011, 2013, Red Hat, Inc.
License: Expat
Files: gfx/harfbuzz/src/hb-buffer.cc
gfx/harfbuzz/src/hb-buffer.h
Copyright: 2011-2012, Google, Inc.
2004, 2007, 2009, 2010, Red Hat, Inc.
1998-2004, David Turner and Werner Lemberg
License: Expat
Files: gfx/harfbuzz/src/hb-common.cc
gfx/harfbuzz/src/hb-common.h
gfx/harfbuzz/src/hb-face.cc
gfx/harfbuzz/src/hb-font.cc
gfx/harfbuzz/src/hb-glib.cc
gfx/harfbuzz/src/hb-glib.h
gfx/harfbuzz/src/hb-icu.h
gfx/harfbuzz/src/hb-ot-head-table.hh
gfx/harfbuzz/src/hb-ot-layout-gdef-table.hh
gfx/harfbuzz/src/hb-ot-layout-gpos-table.hh
gfx/harfbuzz/src/hb-ot-layout-gsub-table.hh
gfx/harfbuzz/src/hb-ot-map.cc
gfx/harfbuzz/src/hb-ot-shape.cc
gfx/harfbuzz/src/hb-ot-tag.cc
gfx/harfbuzz/src/hb-shape.cc
gfx/harfbuzz/src/hb-shape.h
Copyright: 2010-2013, Google, Inc.
2007-2010, Red Hat, Inc.
License: Expat
Files: gfx/harfbuzz/src/hb-coretext.cc
Copyright: 2012-2013, Mozilla Foundation
2012-2013, Google, Inc.
License: Expat
Files: gfx/harfbuzz/src/hb-coretext.h
Copyright: 2008-2014, Mozilla Foundation
License: Expat
Files: gfx/harfbuzz/src/hb-ft.cc
Copyright: 2009, Red Hat, Inc.
2009, Keith Stribley
License: Expat
Files: gfx/harfbuzz/src/hb-graphite2.cc
Copyright: 2011, SIL International
2011, Martin Hosken
2011-2012, Google, Inc.
License: Expat
Files: gfx/harfbuzz/src/hb-graphite2.h
Copyright: 2011, SIL International
2011, Martin Hosken
License: Expat
Files: gfx/harfbuzz/src/hb-icu.cc
Copyright: 2011, Google, Inc.
2009, Red Hat, Inc.
2009, Keith Stribley
License: Expat
Files: gfx/harfbuzz/src/hb-ot-layout.cc
Copyright: 2012-2013, Google, Inc.
2007-2009, Red Hat, Inc.
2006, Behdad Esfahbod
1998-2004, David Turner and Werner Lemberg
License: Expat
Files: gfx/harfbuzz/src/hb-unicode.cc
gfx/harfbuzz/src/hb-unicode.h
Copyright: 2011, Codethink Limited
2010-2012, Google, Inc.
2009, Red Hat, Inc.
License: Expat
Files: gfx/ots/*
Copyright: 2009 The Chromium Authors
License: BSD-3-clause
Files: gfx/ots/sync.sh
Copyright: no-info-found
License: MPL-2.0
Files: gfx/qcms/*
Copyright: 2009, Mozilla Foundation
1998-2007, Marti Maria
License: Expat
Files: gfx/qcms/qcms.h
Copyright: 1994-1996, SunSoft, Inc.
License: Expat
Files: gfx/thebes/gfxScriptItemizer.cpp
gfx/thebes/gfxScriptItemizer.h
Copyright: 1995-2009, International Business Machines (IBM)
License: MPL-2.0 or Expat
Files: gfx/ycbcr/*
Copyright: 2006-2008 The Chromium Authors
License: BSD-3-clause
Files: gfx/ycbcr/YCbCrUtils.cpp
gfx/ycbcr/YCbCrUtils.h
gfx/ycbcr/chromium_types.h
gfx/ycbcr/ycbcr_to_rgb565.cpp
Copyright: no-info-found
License: MPL-2.0
Files: intl/icu/source/tools/tzcode/*
Copyright: no-info-found
License: public-domain
Files: intl/unicharutil/util/nsBidiUtils.cpp
intl/unicharutil/util/nsUnicharUtils.h
Copyright: 2000-2002, Japan Network Information Center
License: MPL-2.0 or BSD-3-clause
Files: intl/unicharutil/util/nsUnicodePropertyData.cpp
Copyright: 1991-2014, Unicode, Inc.
License: MPL-2.0
Files: ipc/chromium/*
Copyright: 2006-2008 The Chromium Authors
License: BSD-3-clause
Files: ipc/chromium/src/third_party/*
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2000-2009, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/*
Copyright: 2000-2002 Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/WIN32-Code/tree.h
Copyright: 2002, Niels Provos <provos@citi.umich.edu>
License: BSD-2-clause
Files: ipc/chromium/src/third_party/libevent/arc4random.c
Copyright: 2010-2012, Niels Provos and Nick Mathewson
2010, Chris Davis, Niels Provos, and Nick Mathewson
2008, Damien Miller <djm@openbsd.org>
1996, David Mazieres <dm@uun.org>
License: ISC
Files: ipc/chromium/src/third_party/libevent/buffer_iocp.c
ipc/chromium/src/third_party/libevent/bufferevent-internal.h
ipc/chromium/src/third_party/libevent/bufferevent_async.c
ipc/chromium/src/third_party/libevent/bufferevent_openssl.c
ipc/chromium/src/third_party/libevent/changelist-internal.h
ipc/chromium/src/third_party/libevent/defer-internal.h
ipc/chromium/src/third_party/libevent/evmap-internal.h
ipc/chromium/src/third_party/libevent/evmap.c
ipc/chromium/src/third_party/libevent/evthread_pthread.c
ipc/chromium/src/third_party/libevent/evthread_win32.c
ipc/chromium/src/third_party/libevent/evutil.c
ipc/chromium/src/third_party/libevent/evutil_rand.c
ipc/chromium/src/third_party/libevent/iocp-internal.h
ipc/chromium/src/third_party/libevent/ipv6-internal.h
ipc/chromium/src/third_party/libevent/mm-internal.h
ipc/chromium/src/third_party/libevent/ratelim-internal.h
ipc/chromium/src/third_party/libevent/util-internal.h
Copyright: 2007-2012, Niels Provos and Nick Mathewson
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/bufferevent.c
ipc/chromium/src/third_party/libevent/epoll.c
Copyright: 2007-2012, Niels Provos, Nick Mathewson
2000-2007, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/bufferevent_pair.c
ipc/chromium/src/third_party/libevent/event_iocp.c
ipc/chromium/src/third_party/libevent/evthread-internal.h
ipc/chromium/src/third_party/libevent/evthread.c
ipc/chromium/src/third_party/libevent/listener.c
Copyright: 2008-2012, Niels Provos, Nick Mathewson
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/compat/*
Copyright: 1991, 1993, University of California
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/evdns.c
Copyright: 2007-2012, Nick Mathewson and Niels Provos
2006-2007, Niels Provos
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/evport.c
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2007, Sun Microsystems
2006-2007, Niels Provos
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/include/event2/buffer.h
ipc/chromium/src/third_party/libevent/include/event2/buffer_compat.h
ipc/chromium/src/third_party/libevent/include/event2/bufferevent_ssl.h
ipc/chromium/src/third_party/libevent/include/event2/thread.h
ipc/chromium/src/third_party/libevent/include/event2/util.h
Copyright: 2007-2012, Niels Provos and Nick Mathewson
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/include/event2/bufferevent_compat.h
Copyright: 2007-2012, Niels Provos, Nick Mathewson
2000-2007, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/include/event2/dns.h
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2006-2007, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/log.c
Copyright: 2005-2012, Niels Provos and Nick Mathewson
2000, Dug Song <dugsong@monkey.org>
1993, University of California
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/minheap-internal.h
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2006, Maxim Yegorushkin <maxim.yegorushkin@gmail.com>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/strlcpy.c
Copyright: 1998, Todd C. Miller <Todd.Miller@courtesan.com>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/test/*
Copyright: 2007-2012, Niels Provos and Nick Mathewson
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/test/bench.c
ipc/chromium/src/third_party/libevent/test/regress.c
ipc/chromium/src/third_party/libevent/test/regress.h
ipc/chromium/src/third_party/libevent/test/regress_buffer.c
ipc/chromium/src/third_party/libevent/test/regress_bufferevent.c
ipc/chromium/src/third_party/libevent/test/regress_dns.c
ipc/chromium/src/third_party/libevent/test/regress_http.c
ipc/chromium/src/third_party/libevent/test/regress_main.c
ipc/chromium/src/third_party/libevent/test/regress_rpc.c
ipc/chromium/src/third_party/libevent/test/test-eof.c
ipc/chromium/src/third_party/libevent/test/test-init.c
ipc/chromium/src/third_party/libevent/test/test-time.c
ipc/chromium/src/third_party/libevent/test/test-weof.c
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2000-2009, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/test/regress_util.c
Copyright: 2009-2012, Nick Mathewson and Niels Provos
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/test/tinytest.c
ipc/chromium/src/third_party/libevent/test/tinytest.h
ipc/chromium/src/third_party/libevent/test/tinytest_macros.h
Copyright: 2009-2012, Nick Mathewson
License: BSD-3-clause
Files: ipc/chromium/src/third_party/libevent/win32select.c
Copyright: 2007-2012, Niels Provos and Nick Mathewson
2003, Michael A. Davis <mike@datanerds.net>
2000-2007, Niels Provos <provos@citi.umich.edu>
License: BSD-3-clause
Files: ipc/glue/StringUtil.cpp
Copyright: 2006-2008, The Chromium Authors.
License: MPL-2.0
Files: ipc/ipdl/test/cxx/IPDLUnitTestProcessChild.cpp
ipc/ipdl/test/cxx/IPDLUnitTestProcessChild.h
ipc/ipdl/test/cxx/IPDLUnitTestSubprocess.cpp
ipc/ipdl/test/cxx/IPDLUnitTestSubprocess.h
ipc/ipdl/test/cxx/IPDLUnitTestTypes.h
ipc/ipdl/test/cxx/IPDLUnitTests.h
ipc/ipdl/test/cxx/TestHighestPrio.cpp
ipc/ipdl/test/cxx/genIPDLUnitTests.py
ipc/ipdl/test/cxx/app/*
Copyright: no-info-found
License: MPL-2.0
Files: js/src/builtin/embedjs.py
Copyright: 2012, the V8 project authors
License: MPL-2.0 or BSD-3-clause
Files: js/src/ctypes/libffi/ltmain.sh
Copyright: 1996-2001, 2003-2006, Free Software Foundation
License: GPL-2+
Files: js/src/ctypes/libffi/msvcc.sh
Copyright: 2009, Daniel Witte <dwitte@mozilla.com>
License: MPL-1.1 or GPL-2 or LGPL-2.1
Files: js/src/ctypes/libffi/src/*
Copyright: 2011-2013, Anthony Green
1996-2004, 2007, 2008, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/aarch64/*
Copyright: 2009-2012, ARM Ltd.
License: Expat
Files: js/src/ctypes/libffi/src/arc/*
Copyright: 2013, Synopsys, Inc. (www.synopsys.com)
2012, Anthony Green
License: Expat
Files: js/src/ctypes/libffi/src/arc/ffi.c
Copyright: 2013, Synopsys, Inc. (www.synopsys.com)
License: Expat
Files: js/src/ctypes/libffi/src/arm/*
Copyright: 2012, Anthony Green
2010, CodeSourcery
1996-2003, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/arm/ffi.c
Copyright: 2011, Timothy Wall
2011, Plausible Labs Cooperative, Inc.
2011, Free Software Foundation
2011, Anthony Green
1998, 2008, 2011, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/avr32/*
Copyright: 2011-2012, Anthony Green
2009, Bradley Smith <brad@brad-smith.co.uk>
License: Expat
Files: js/src/ctypes/libffi/src/bfin/*
Copyright: 2012, Alexandre K. I. de Mendonca <alexandre.keunecke@gmail.com>
License: Expat
Files: js/src/ctypes/libffi/src/closures.c
Copyright: 2011, Plausible Labs Cooperative, Inc
2007, 2009-2010, Red Hat, Inc
2007, 2009-2010, Free Software Foundation, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/cris/ffi.c
Copyright: 2007, Free Software Foundation, Inc.
2005, Axis Communications AB
2004, Simon Posnjak
1998, Cygnus Solutions
License: Expat
Files: js/src/ctypes/libffi/src/debug.c
js/src/ctypes/libffi/src/java_raw_api.c
js/src/ctypes/libffi/src/raw_api.c
js/src/ctypes/libffi/src/types.c
Copyright: 1996, 1998, 1999, 2007-2009, 2011, 2013, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/frv/ffi.c
Copyright: 2008, Red Hat, Inc.
2007, Free Software Foundation, Inc.
2004, Anthony Green
License: Expat
Files: js/src/ctypes/libffi/src/ia64/ffi.c
Copyright: 2011, Anthony Green
2000, Hewlett Packard Company
1998, 2007, 2008, 2012, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/ia64/ia64_flags.h
Copyright: 2000, Hewlett Packard Company
License: Expat
Files: js/src/ctypes/libffi/src/m32r/*
Copyright: 2008, Red Hat, Inc.
2004, Renesas Technology
License: Expat
Files: js/src/ctypes/libffi/src/m32r/ffitarget.h
Copyright: 2012, Anthony Green
2004, Renesas Technology
License: Expat
Files: js/src/ctypes/libffi/src/m88k/*
Copyright: 2013, Miodrag Vallat. <miod@openbsd.org>
License: Expat
Files: js/src/ctypes/libffi/src/metag/*
Copyright: 2013, Imagination Technologies Ltd.
License: Expat
Files: js/src/ctypes/libffi/src/metag/ffi.c
Copyright: 2013, Imagination Technologies
License: Expat
Files: js/src/ctypes/libffi/src/microblaze/*
Copyright: 2012, 2013, Xilinx, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/mips/ffi.c
Copyright: 2011, Anthony Green
2008, David Daney
1996, 2007, 2008, 2011, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/moxie/*
Copyright: 2012, 2013, Anthony Green
License: Expat
Files: js/src/ctypes/libffi/src/nios2/*
Copyright: 2013, Mentor Graphics
License: Expat
Files: js/src/ctypes/libffi/src/pa/ffi.c
Copyright: 2011, Anthony Green
2008, Red Hat, Inc.
2006, Free Software Foundation, Inc.
2003, 2004, Randolph Chung <tausq@debian.org>
License: Expat
Files: js/src/ctypes/libffi/src/powerpc/*
Copyright: 2013, IBM
2011, Kyle Moffett
2011, Anthony Green
2008, Red Hat, Inc.
2007, 2008, Free Software Foundation, Inc.
1998, Geoffrey Keating
License: Expat
Files: js/src/ctypes/libffi/src/powerpc/asm.h
Copyright: 1998, Geoffrey Keating
License: Expat
Files: js/src/ctypes/libffi/src/powerpc/ffi_darwin.c
Copyright: 2002, 2006, 2007-2009-2010, Free Software Foundation, Inc.
2001, John Hornkvist
1998, Geoffrey Keating
License: Expat
Files: js/src/ctypes/libffi/src/powerpc/ffitarget.h
Copyright: 2012, Anthony Green
2007-2008, 2010, Free Software Foundation, Inc.
1996-2003, 2010, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/s390/ffi.c
Copyright: 2008, Red Hat, Inc.
2000-2007, Software AG
License: Expat
Files: js/src/ctypes/libffi/src/sh/ffi.c
Copyright: 2008, Red Hat, Inc.
2002-2008, 2012, Kaz Kojima
License: Expat
Files: js/src/ctypes/libffi/src/sh64/ffi.c
Copyright: 2008, Anthony Green
2003, 2004, 2006-2007, 2012, Kaz Kojima
License: Expat
Files: js/src/ctypes/libffi/src/tile/*
Copyright: 2012, Tilera Corp
License: Expat
Files: js/src/ctypes/libffi/src/vax/*
Copyright: 2013, Miodrag Vallat. <miod@openbsd.org>
License: Expat
Files: js/src/ctypes/libffi/src/x86/*
Copyright: 2012, Anthony Green
2007, 2008, 2010, Free Software Foundation, Inc.
1996-2003, 2010, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/x86/ffi.c
Copyright: 2008, 2010, Free Software Foundation, Inc.
2002, Roger Sayle
2002, Ranjit Mathew
2002, Bo Thorsen
1996, 1998-1999, 2001, 2007-2008, Red Hat, Inc.
License: Expat
Files: js/src/ctypes/libffi/src/x86/ffi64.c
Copyright: 2013, The Written Word, Inc.
2011, Anthony Green
2008, 2010, Red Hat, Inc.
2002, 2007, Bo Thorsen <bo@suse.de>
License: Expat
Files: js/src/ctypes/libffi/src/xtensa/*
Copyright: 2013, Tensilica, Inc.
License: Expat
Files: js/src/devtools/rootAnalysis/analyze.py
js/src/devtools/vprof/testVprofMT.c
js/src/jit/BacktrackingAllocator.h
Copyright: no-info-found
License: MPL-2.0
Files: js/src/editline/*
Copyright: 1992-1993, Simmule Turner and Rich Salz
License: MPL-2.0
Files: js/src/irregexp/*
Copyright: 2006-2014, the V8 project authors
License: BSD-3-clause
Files: js/src/jit/ExecutableAllocator.cpp
js/src/jit/ExecutableAllocator.h
Copyright: 2006-2009, 2012, Apple Inc.
License: BSD-2-clause
Files: js/src/jit/arm/Simulator-arm.cpp
js/src/jit/arm/Simulator-arm.h
js/src/octane/*
Copyright: 2006-2014, the V8 project authors
License: BSD-3-clause
Files: js/src/octane/code-load.js
Copyright: 2013, the Octane Benchmark project authors
2012, The Closure Library Authors
2012, John Resig, http://jquery.com
License: Apache-2.0 or BSD-3-clause or Expat
Files: js/src/octane/deltablue.js
Copyright: 2008, the V8 project authors
1996, John Maloney and Mario Wolczko
License: GPL-2+
Files: js/src/octane/gbemu-part1.js
js/src/octane/gbemu-part2.js
Copyright: 2013, Google, Inc.
2010-2012, Grant Galitz
License: GPL-2
Files: js/src/octane/mandreel.js
Copyright: 2012, Onan Games
2012, Google, Inc.F
License: BSD-3-clause
Files: js/src/octane/navier-stokes.js
Copyright: 2013, the V8 project authors
2009, Oliver Hunt <http://nerget.com>
License: Expat
Files: js/src/octane/typescript.js
Copyright: 2013, the Octane Benchmark project authors
License: BSD-3-clause
Files: js/src/tests/lib/jittests.py
js/src/tests/shell/shell.js
js/src/tests/test262/browser.js
js/src/tests/test262/intl402/shell.js
js/xpconnect/tests/unit/head_watchdog.js
js/xpconnect/tests/unit/test_attributes.js
js/xpconnect/tests/unit/test_blob.js
js/xpconnect/tests/unit/test_blob2.js
js/xpconnect/tests/unit/test_bogus_files.js
js/xpconnect/tests/unit/test_bug1021312.js
js/xpconnect/tests/unit/test_bug408412.js
js/xpconnect/tests/unit/test_bug451678.js
js/xpconnect/tests/unit/test_bug780370.js
js/xpconnect/tests/unit/test_bug809652.js
js/xpconnect/tests/unit/test_bug809674.js
js/xpconnect/tests/unit/test_bug813901.js
js/xpconnect/tests/unit/test_bug867486.js
js/xpconnect/tests/unit/test_bug976151.js
js/xpconnect/tests/unit/test_bug_442086.js
js/xpconnect/tests/unit/test_file.js
js/xpconnect/tests/unit/test_file2.js
js/xpconnect/tests/unit/test_import.js
js/xpconnect/tests/unit/test_js_weak_references.js
js/xpconnect/tests/unit/test_nuke_sandbox.js
js/xpconnect/tests/unit/test_params.js
js/xpconnect/tests/unit/test_recursive_import.js
js/xpconnect/tests/unit/test_reflect_parse.js
js/xpconnect/tests/unit/test_returncode.js
js/xpconnect/tests/unit/test_sandbox_metadata.js
js/xpconnect/tests/unit/test_tearoffs.js
js/xpconnect/tests/unit/test_unload.js
js/xpconnect/tests/unit/test_watchdog_default.js
js/xpconnect/tests/unit/test_watchdog_disable.js
js/xpconnect/tests/unit/test_watchdog_enable.js
js/xpconnect/tests/unit/test_watchdog_hibernate.js
js/xpconnect/tests/unit/test_watchdog_toggle.js
js/xpconnect/tests/unit/test_xpcomutils.js
layout/base/tests/marionette/*
layout/reftests/border-image/*
layout/reftests/svg/*
layout/reftests/table-dom/*
media/libcubeb/include/*
media/libcubeb/src/cubeb_osx_run_loop.c
Copyright: no-info-found
License: MPL-2.0
Files: js/src/tests/test262/intl402/browser.js
Copyright: 2012, Mozilla Corporation
License: MPL-2.0
Files: js/src/vtune/*
Copyright: 2005-2013, Intel Corporation
License: BSD-3-clause or GPL-2
Files: layout/base/nsFrameManager.cpp
layout/base/nsFrameManager.h
layout/generic/nsLineLayout.h
layout/style/nsHTMLStyleSheet.cpp
Copyright: 2000, International Business Machines (IBM)
License: MPL-2.0
Files: layout/reftests/fonts/mark-generate.py
layout/reftests/fonts/math/*
Copyright: 2008, Mozilla Corporation
License: MPL-2.0
Files: media/gmp-clearkey/0.1/WMFH264Decoder.cpp
media/gmp-clearkey/0.1/WMFH264Decoder.h
media/gmp-clearkey/0.1/WMFUtils.cpp
media/gmp-clearkey/0.1/WMFUtils.h
Copyright: 2012-2014, Mozilla Foundation and contributors
License: Apache-2.0
Files: media/kiss_fft/_kiss_fft_guts.h
media/kiss_fft/kiss_fft.c
media/kiss_fft/kiss_fftr.c
Copyright: 2003-2010, Mark Borgerding
License: BSD-3-clause
Files: media/libcubeb/src/android/*
Copyright: 2005-2013, The Android Open Source Project
License: Apache-2.0
Files: media/libnestegg/*
Copyright: 2010 Mozilla Foundation
License: ISC
Files: media/libnestegg/src/*
Copyright: 2004-2010, Alex Pankratov
License: BSD-3-clause
Files: media/libogg/*
Copyright: 2002-2007 Xiph.org Foundation
License: BSD-3-clause
Files: media/libopus/celt/*
Copyright: 2007-2009, Xiph.Org Foundation
2007-2008, CSIRO
License: BSD-2-clause
Files: media/libopus/celt/_kiss_fft_guts.h
Copyright: 2003, 2004, Mark Borgerding
License: BSD-2-clause
Files: media/libopus/celt/arch.h
media/libopus/celt/fixed_generic.h
media/libopus/celt/mathops.c
media/libopus/celt/mathops.h
Copyright: 2007-2009, Xiph.Org Foundation
2007-2008, CSIRO
2002-2008, Jean-Marc Valin
License: BSD-2-clause
Files: media/libopus/celt/arm/*
Copyright: 2013, Parrot
2010, Xiph.Org Foundation
License: BSD-2-clause
Files: media/libopus/celt/arm/fixed_armv4.h
media/libopus/celt/arm/kiss_fft_armv4.h
media/libopus/celt/arm/kiss_fft_armv5e.h
Copyright: 2013, Xiph.Org Foundation and contributors
License: BSD-2-clause
Files: media/libopus/celt/arm/fixed_armv5e.h
Copyright: 2013, Parrot
2007-2009, Xiph.Org Foundation
2007-2008, CSIRO
2003-2008, Jean-Marc Valin
License: BSD-2-clause
Files: media/libopus/celt/bands.c
media/libopus/celt/bands.h
media/libopus/celt/celt.c
media/libopus/celt/celt.h
media/libopus/celt/celt_decoder.c
media/libopus/celt/celt_encoder.c
media/libopus/celt/modes.c
media/libopus/celt/modes.h
Copyright: 2008-2012, Gregory Maxwell
2007-2010, Xiph.Org Foundation
2007-2008, CSIRO
License: BSD-2-clause
Files: media/libopus/celt/celt_lpc.c
media/libopus/celt/celt_lpc.h
Copyright: 1994-2002, 2009-2012, Xiph.Org Foundation
License: BSD-2-clause
Files: media/libopus/celt/cpu_support.h
Copyright: 2013, Parrot
2010, Xiph.Org Foundation
License: BSD-2-clause
Files: media/libopus/celt/cwrs.c
media/libopus/celt/cwrs.h
Copyright: 2007-2009, Xiph.Org Foundation
2007-2009, Timothy B. Terriberry
2007-2008, CSIRO
License: BSD-2-clause
Files: media/libopus/celt/ecintrin.h
media/libopus/celt/entcode.h
media/libopus/celt/entdec.c
media/libopus/celt/entdec.h
media/libopus/celt/entenc.c
media/libopus/celt/entenc.h
media/libopus/celt/mfrngcod.h
Copyright: 2008-2009, Xiph.Org Foundation
2001-2011, Timothy B. Terriberry
License: BSD-2-clause
Files: media/libopus/celt/entcode.c
Copyright: 2001-2011, Timothy B. Terriberry
License: BSD-2-clause
Files: media/libopus/celt/fixed_debug.h
media/libopus/celt/stack_alloc.h
Copyright: 2007-2012, Xiph.Org Foundation
2002-2008, Jean-Marc Valin
License: BSD-2-clause
Files: media/libopus/celt/float_cast.h
Copyright: 2001, Erik de Castro Lopo <erikd AT mega-nerd DOT com>
License: BSD-2-clause
Files: media/libopus/celt/kiss_fft.c
media/libopus/celt/kiss_fft.h
Copyright: 2008, Xiph.Org Foundation, CSIRO
2005-2007, Xiph.Org Foundation
2003-2004, Mark Borgerding
License: BSD-2-clause
Files: media/libopus/celt/os_support.h
Copyright: 2007, Jean-Marc Valin
License: BSD-2-clause
Files: media/libopus/celt/x86/*
Copyright: 2013, Jean-Marc Valin and John Ridges
License: BSD-2-clause
Files: media/libopus/include/*
Copyright: 1994-2002, 2009-2012, Xiph.Org Foundation
License: BSD-2-clause
Files: media/libopus/include/opus.h
media/libopus/include/opus_defines.h
Copyright: 2010, 2011, Xiph.Org Foundation, Skype Limited
License: BSD-2-clause
Files: media/libopus/include/opus_custom.h
Copyright: 2008-2012, Gregory Maxwell
2007-2010, Xiph.Org Foundation
2007-2008, CSIRO
License: BSD-2-clause
Files: media/libopus/silk/*
Copyright: 2006-2011, Skype Limited
License: BSD-2-clause
Files: media/libopus/silk/MacroDebug.h
Copyright: 2012, Xiph.Org Foundation
2006-2011, Skype Limited
License: BSD-2-clause
Files: media/libopus/silk/arm/*
Copyright: 2013, Parrot
2006-2011, Skype Limited
License: BSD-2-clause
Files: media/libopus/silk/arm/SigProc_FIX_armv4.h
Copyright: 2013, Xiph.Org Foundation and contributors
2013, Parrot
License: BSD-2-clause
Files: media/libopus/silk/arm/macros_armv4.h
Copyright: 2013, Xiph.Org Foundation and contributors
License: BSD-2-clause
Files: media/libopus/src/*
Copyright: 1994-2002, 2009-2012, Xiph.Org Foundation
License: BSD-2-clause
Files: media/libopus/src/mlp.c
media/libopus/src/mlp.h
Copyright: 2008-2011, Octasic Inc.
License: BSD-2-clause
Files: media/libopus/src/opus.c
media/libopus/src/opus_decoder.c
media/libopus/src/opus_encoder.c
Copyright: 2010, 2011, Xiph.Org Foundation, Skype Limited
License: BSD-2-clause
Files: media/libpng/*
Copyright: 1998-2014, Glenn Randers-Pehrson
1996-1997, Andreas Dilger
1995-1996, Guy Eric Schalnat, Group 42, Inc.
License: libpng
Files: media/libpng/arm/*
Copyright: 2014, Glenn Randers-Pehrson
License: libpng
Files: media/libpng/pnglibconf.h
Copyright: no-info-found
License: MPL-2.0
Files: media/libsoundtouch/src/*
Copyright: Olli Parviainen
License: LGPL-2.1+
Files: media/libspeex_resampler/src/*
Copyright: 2002, 2003, 2007, Jean-Marc Valin
License: BSD-3-clause
Files: media/libspeex_resampler/src/resample.c
media/libspeex_resampler/src/resample_sse.c
Copyright: 2008, Thorvald Natvig
2007-2008, Jean-Marc Valin
License: BSD-3-clause
Files: media/libspeex_resampler/src/resample_neon.c
Copyright: 2011, Texas Instruments
2008, Thorvald Natvig
2007-2008, Jean-Marc Valin
License: BSD-3-clause
Files: media/libspeex_resampler/src/simd_detect.cpp
media/libspeex_resampler/src/simd_detect.h
Copyright: no-info-found
License: MPL-2.0
Files: media/libtheora/*
Copyright: 2002-2007 Xiph.org Foundation
License: BSD-3-clause
Files: media/libvorbis/*
Copyright: 2002-2007 Xiph.org Foundation
License: BSD-3-clause
Files: media/libvpx/*
Copyright: 2010 Google Inc.
License: BSD-3-clause
Files: mfbt/double-conversion/*
Copyright: 2006-2014, the V8 project authors
License: BSD-3-clause
Files: modules/brotli/*
Copyright: 2013, 2014, Google Inc.
License: Apache-2.0
Files: modules/freetype2/*
Copyright: various contributors
License: GPL-2+
Files: modules/freetype2/builds/unix/*
Copyright: 1996-2014, Free Software Foundation, Inc
License: GPL-2+
Files: modules/freetype2/src/bdf/bdf.h
Copyright: 2001-2004, 2011, Francesco Zappa Nardelli
2000, Computing Research Labs, New Mexico State University
License: Expat
Files: modules/freetype2/src/bdf/bdferror.h
Copyright: 2001-2002, 2012, Francesco Zappa Nardelli
License: Expat
Files: modules/freetype2/src/bdf/bdflib.c
Copyright: 2001-2014, Francesco Zappa Nardelli
2000, Computing Research Labs, New Mexico State University
License: Expat
Files: modules/freetype2/src/gzip/*
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: modules/freetype2/src/gzip/inftrees.c
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: modules/freetype2/src/gzip/zutil.c
modules/freetype2/src/gzip/zutil.h
Copyright: 1995-2013, Jean-loup Gailly
License: Zlib
Files: modules/freetype2/src/gzip/zlib.h
Copyright: 1995-2013, Jean-loup Gailly and Mark Adler
License: Zlib
Files: modules/freetype2/src/pcf/*
Copyright: 2000-2014, by David Turner
License: Expat
Files: modules/freetype2/src/tools/ftrandom/*
Copyright: 2005, 2007-2008, 2013, George Williams
License: BSD-3-clause
Files: modules/libjar/test/unit/test_bug333423.js
modules/libjar/test/unit/test_bug597702.js
modules/libjar/test/unit/test_bug637286.js
modules/libjar/test/unit/test_corrupt_536911.js
modules/libjar/test/unit/test_corrupt_541828.js
modules/libjar/test/unit/test_dirjar_bug525755.js
modules/libjar/test/unit/test_jarinput_stream_zipreader_reference.js
Copyright: no-info-found
License: MPL-2.0
Files: modules/zlib/*
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: modules/zlib/src/compress.c
modules/zlib/src/deflate.h
modules/zlib/src/trees.c
modules/zlib/src/uncompr.c
modules/zlib/src/zutil.c
modules/zlib/src/zutil.h
modules/zlib/src/zconf.h
Copyright: 1995-2013, Jean-loup Gailly
License: Zlib
Files: modules/zlib/src/deflate.c
modules/zlib/src/zlib.h
Copyright: 1995-2013, Jean-loup Gailly and Mark Adler
License: Zlib
Files: modules/zlib/src/inftrees.c
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: netwerk/dns/nsIDNKitInterface.h
Copyright: 2000-2002, Japan Network Information Center
License: BSD-3-clause
Files: netwerk/dns/prepare_tlds.py
Copyright: no-info-found
License: MPL-2.0
Files: netwerk/sctp/src/*
Copyright: 2011-2012, Michael Tuexen
2011-2012, Irene Ruengeler
2009-2010, Humaira Kamal
2009-2010, Brad Penoff
License: BSD-2-clause
Files: netwerk/sctp/src/netinet/*
Copyright: 2008-2012, Randall Stewart
2008-2012, Michael Tuexen
2001-2008, Cisco Systems, Inc.
License: BSD-3-clause
Files: netwerk/sctp/src/netinet/sctp_lock_userspace.h
netwerk/sctp/src/netinet/sctp_os_userspace.h
Copyright: 2008-2012, Randall Stewart
2008-2012, Michael Tuexen
2008-2012, Brad Penoff
2001-2007, Cisco Systems, Inc.
License: BSD-3-clause
Files: netwerk/sctp/src/netinet/sctp_sha1.c
Copyright: 2013, Lally Singh
2008-2013, Michael Tuexen
2008-2012, Randall Stewart
2001-2007, Cisco Systems, Inc.
License: BSD-3-clause
Files: netwerk/sctp/src/netinet/sctp_ss_functions.c
Copyright: 2010-2012, Robin Seggelmann
2010-2012, Randall Stewart
2010-2012, Michael Tuexen
License: BSD-2-clause
Files: netwerk/sctp/src/netinet/sctp_userspace.c
Copyright: 2011, 2012, Michael Tuexen
2011, 2012, Irene Ruengeler
License: BSD-2-clause
Files: netwerk/sctp/src/netinet6/*
Copyright: 2008-2012, Randall Stewart
2008-2012, Michael Tuexen
2001-2008, Cisco Systems, Inc.
License: BSD-3-clause
Files: netwerk/sctp/src/user_inpcb.h
netwerk/sctp/src/user_socketvar.h
Copyright: 1982, 1986, 1990, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_ip6_var.h
Copyright: 1995-1997, and 1998, WIDE Project
1982, 1986, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_ip_icmp.h
Copyright: 1982, 1986, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_malloc.h
Copyright: 2005, Robert N. M. Watson
1987, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_mbuf.c
netwerk/sctp/src/user_mbuf.h
Copyright: 1982, 1986, 1988, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_queue.h
Copyright: 1991, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_recv_thread.h
Copyright: 2011-2012, Michael Tuexen
2011-2012, Irene Ruengeler
License: BSD-2-clause
Files: netwerk/sctp/src/user_route.h
Copyright: 1980, 1986, 1993, University of California
License: BSD-3-clause
Files: netwerk/sctp/src/user_socket.c
Copyright: 2011, 2012, Michael Tuexen
2011, 2012, Irene Ruengeler
2009, 2010, Humaira Kamal
2009, 2010, Brad Penoff
2004-2008, Robert N. M. Watson
2004, The FreeBSD Foundation
1982, 1986, 1988, 1990, 1993, University of California
License: BSD-2-clause
Files: netwerk/streamconv/nsStreamConverterService.cpp
Copyright: 2000, International Business Machines (IBM)
License: MPL-2.0
Files: netwerk/test/unit/test_NetUtil.js
netwerk/test/unit/test_about_networking.js
netwerk/test/unit/test_about_protocol.js
netwerk/test/unit/test_auth_proxy.js
netwerk/test/unit/test_bug248970_cache.js
netwerk/test/unit/test_bug248970_cookie.js
netwerk/test/unit/test_bug856978.js
netwerk/test/unit/test_cookiejars.js
netwerk/test/unit/test_cookiejars_safebrowsing.js
netwerk/test/unit/test_dns_proxy_bypass.js
netwerk/test/unit/test_extract_charset_from_content_type.js
netwerk/test/unit/test_httpResponseTimeout.js
netwerk/test/unit/test_httpauth.js
netwerk/test/unit/test_mozTXTToHTMLConv.js
netwerk/test/unit/test_parse_content_type.js
netwerk/test/unit/test_ping_aboutnetworking.js
netwerk/test/unit/test_protocolproxyservice.js
netwerk/test/unit/test_safeoutputstream.js
netwerk/test/unit/test_speculative_connect.js
netwerk/test/unit/test_udpsocket.js
netwerk/test/unit/test_websocket_offline.js
Copyright: no-info-found
License: MPL-2.0
Files: nsprpub/lib/ds/plvrsion.c
nsprpub/lib/libc/src/plvrsion.c
nsprpub/lib/prstreams/plvrsion.c
nsprpub/pr/src/prvrsion.c
Copyright: 1998, Netscape Communications Corporation
License: MPL-2.0
Files: nsprpub/pr/include/prvrsion.h
nsprpub/pr/src/malloc/prmalloc.c
Copyright: no-info-found
License: MPL-2.0
Files: nsprpub/pr/src/misc/praton.c
Copyright: 2004, Internet Systems Consortium, Inc. ("ISC")
1993, Digital Equipment Corporation
1983, 1990, 1993, University of California
License: BSD-3-clause or ISC
Files: nsprpub/pr/src/misc/prerrortable.c
Copyright: 1987, 1988, the Student Information Processing Board
License: MPL-2.0
Files: other-licenses/atk-1.0/*
Copyright: 2001-2002, Sun Microsystems Inc.
License: LGPL-2+
Files: other-licenses/atk-1.0/atk/atkplug.h
other-licenses/atk-1.0/atk/atksocket.h
Copyright: 2009, Novell, Inc.
License: LGPL-2+
Files: other-licenses/nsis/Contrib/CityHash/cityhash/*
Copyright: 2010-2014, Google, Inc.
License: Expat
Files: other-licenses/nsis/Contrib/liteFirewall/liteFirewall.cpp
Copyright: 2007-2009, Olivier Marcoux
License: Zlib
Files: other-licenses/snappy/*
Copyright: 2005, 2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: other-licenses/snappy/src/snappy-c.cc
other-licenses/snappy/src/snappy-c.h
Copyright: 2011, Martin Gieseking <martin.gieseking@uos.de>
License: BSD-3-clause
Files: other-licenses/snappy/src/snappy.h
other-licenses/snappy/src/snappy_unittest.cc
Copyright: 2005, and onwards Google Inc
License: BSD-3-clause
Files: parser/expat/*
Copyright: 1998, 1999, 2000 Thai Open Source Software Center Ltd
and Clark Cooper
2001, 2002 Expat maintainers
License: Expat
Files: parser/expat/lib/moz_extensions.c
Copyright: no-info-found
License: MPL-2.0
Files: parser/html/jArray.h
parser/html/nsHtml5ArrayCopy.h
parser/html/nsHtml5AttributeName.cpp
parser/html/nsHtml5AttributeName.h
parser/html/nsHtml5ElementName.cpp
parser/html/nsHtml5ElementName.h
parser/html/nsHtml5Macros.h
parser/html/nsHtml5NamedCharacters.cpp
parser/html/nsHtml5NamedCharacters.h
parser/html/nsHtml5Portability.h
parser/html/nsHtml5StateSnapshot.cpp
parser/html/nsHtml5StateSnapshot.h
parser/html/nsHtml5UTF16Buffer.cpp
parser/html/nsHtml5UTF16Buffer.h
parser/html/javasrc/*
Copyright: 2008-2014, Mozilla Foundation
License: Expat
Files: parser/html/javasrc/StackNode.java
Copyright: 2007-2011, Mozilla Foundation
2007, Henri Sivonen
License: Expat
Files: parser/html/javasrc/Tokenizer.java
parser/html/javasrc/TreeBuilder.java
Copyright: 2007-2013, Mozilla Foundation
2005-2007, Henri Sivonen
2004-2010, Apple Computer, Inc.
License: Expat
Files: parser/html/nsHtml5HtmlAttributes.cpp
parser/html/nsHtml5HtmlAttributes.h
parser/html/nsHtml5StackNode.cpp
parser/html/nsHtml5StackNode.h
Copyright: 2007-2011, Mozilla Foundation
2007, Henri Sivonen
License: Expat
Files: parser/html/nsHtml5Tokenizer.cpp
parser/html/nsHtml5Tokenizer.h
parser/html/nsHtml5TreeBuilder.cpp
parser/html/nsHtml5TreeBuilder.h
Copyright: 2007-2013, Mozilla Foundation
2005-2007, Henri Sivonen
2004-2010, Apple Computer, Inc.
License: Expat
Files: parser/html/nsHtml5TokenizerCppSupplement.h
python/mach/*
python/mach_commands.py
python/mozboot/*
python/mozbuild/*
python/mozversioncontrol/*
Copyright: no-info-found
License: MPL-2.0
Files: security/certverifier/OCSPCache.cpp
security/certverifier/OCSPCache.h
Copyright: 2013-2015, Mozilla Contributors
License: Apache-2.0 or MPL-2.0
Files: security/nss/lib/dbm/*
Copyright: 1990, 1993-1994, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/include/ncompat.h
security/nss/lib/dbm/include/queue.h
Copyright: 1991, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/include/extern.h
Copyright: 1991, 1993, 1994, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/include/hsearch.h
security/nss/lib/dbm/include/search.h
Copyright: 1990, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/src/db.c
Copyright: 1991, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/src/h_func.c
security/nss/lib/dbm/src/memmove.c
Copyright: 1990, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/src/mktemp.c
Copyright: 1987, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/src/strerror.c
Copyright: 1988, 1993, University of California
License: BSD-3-clause
Files: security/nss/lib/dbm/tests/*
Copyright: no-info-found
License: MPL-2.0
Files: security/nss/lib/freebl/intel-gcm-wrap.c
security/nss/lib/freebl/intel-gcm.h
Copyright: 2013, Intel Corp.
License: MPL-2.0
Files: security/nss/lib/jar/jzconf.h
Copyright: 1995-2013, Jean-loup Gailly
License: Zlib
Files: security/nss/lib/jar/jzlib.h
Copyright: 1995-2013, Jean-loup Gailly and Mark Adler
License: Zlib
Files: security/nss/lib/util/pkcs11.h
security/nss/lib/util/pkcs11f.h
security/nss/lib/util/pkcs11p.h
security/nss/lib/util/pkcs11u.h
Copyright: 1994-1999, RSA Security Inc.
License: MPL-2.0
Files: security/nss/lib/ssl/ssl3gthr.c
security/nss/lib/util/utilpars.c
services/common/tests/unit/head_helpers.js
Copyright: no-info-found
License: MPL-2.0
Files: security/nss/lib/zlib/*
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: security/nss/lib/zlib/compress.c
security/nss/lib/zlib/deflate.h
security/nss/lib/zlib/trees.c
security/nss/lib/zlib/uncompr.c
security/nss/lib/zlib/zutil.c
security/nss/lib/zlib/zutil.h
Copyright: 1995-2013, Jean-loup Gailly
License: Zlib
Files: security/nss/lib/zlib/deflate.c
security/nss/lib/zlib/zlib.h
Copyright: 1995-2013, Jean-loup Gailly and Mark Adler
License: Zlib
Files: security/nss/lib/zlib/inftrees.c
Copyright: 1995-2013, Mark Adler
License: Zlib
Files: security/nss/lib/zlib/zconf.h
Copyright: 1995-2010, Jean-loup Gailly
License: Zlib
Files: security/sandbox/chromium/base/third_party/dynamic_annotations/*
Copyright: 1999-2013, Google Inc.
License: BSD-3-clause
Files: security/sandbox/chromium/base/third_party/superfasthash/*
Copyright: 2010, Paul Hsieh
License: BSD-2-clause
Files: testing/mochitest/tests/SimpleTest/LogController.js
testing/mochitest/tests/SimpleTest/MemoryStats.js
testing/mochitest/tests/SimpleTest/MockObjects.js
testing/mochitest/tests/SimpleTest/setup.js
testing/mozbase/manifestparser/tests/test_convert_directory.py
testing/mozbase/manifestparser/tests/test_convert_symlinks.py
testing/mozbase/manifestparser/tests/test_manifestparser.py
testing/mozbase/mozfile/tests/test_tempdir.py
testing/mozbase/mozfile/tests/test_tempfile.py
testing/web-platform/tests/resources/testharnessreport.js
toolkit/components/ctypes/tests/unit/test_jsctypes.js
toolkit/components/mediasniffer/mp3sniff.c
toolkit/components/passwordmgr/test/browser/*
toolkit/components/places/tests/favicons/head_favicons.js
toolkit/content/tests/browser/browser_save_resend_postdata.js
toolkit/content/tests/browser/common/*
toolkit/content/tests/unit/*
Copyright: no-info-found
License: MPL-2.0
Files: testing/tools/screenshot/*
Copyright: 2009, The Mozilla Foundation
License: BSD-3-clause
Files: toolkit/components/protobuf/*
Copyright: 2005-2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/components/reader/Readability.js
Copyright: 2010, Arc90 Inc.
License: Apache-2.0
Files: toolkit/components/translation/cld2/*
Copyright: 2013-2014, Google Inc.
License: Apache-2.0
Files: toolkit/components/url-classifier/HashStore.cpp
Copyright: 2006-2013, The Chromium Authors.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/*
Copyright: 2006-2009, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/common/arm_ex_reader.cc
toolkit/crashreporter/google-breakpad/src/common/arm_ex_reader.h
toolkit/crashreporter/google-breakpad/src/common/arm_ex_to_module.cc
toolkit/crashreporter/google-breakpad/src/common/arm_ex_to_module.h
Copyright: 2011, Linaro Limited
2010-2011, Google Inc.
License: BSD-3-clause or Expat
Files: toolkit/crashreporter/google-breakpad/src/common/dwarf/*
toolkit/crashreporter/google-breakpad/src/common/linux/elf_symbols_to_module.cc
toolkit/crashreporter/google-breakpad/src/common/linux/elf_symbols_to_module.h
Copyright: 2005-2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/common/dwarf/bytereader_unittest.cc
toolkit/crashreporter/google-breakpad/src/common/dwarf/cfi_assembler.cc
toolkit/crashreporter/google-breakpad/src/common/dwarf/cfi_assembler.h
toolkit/crashreporter/google-breakpad/src/common/dwarf/dwarf2reader_cfi_unittest.cc
toolkit/crashreporter/google-breakpad/src/common/dwarf/dwarf2reader_die_unittest.cc
toolkit/crashreporter/google-breakpad/src/common/dwarf/dwarf2reader_test_common.h
Copyright: 1999-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/common/dwarf/types.h
Copyright: 2008, Google, Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/common/mac/GTMDefines.h
toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.h
toolkit/crashreporter/google-breakpad/src/common/mac/GTMLogger.m
toolkit/crashreporter/google-breakpad/src/common/mac/testing/*
Copyright: 2007-2008, 2010, 2012, Google Inc.
License: Apache-2.0
Files: toolkit/crashreporter/google-breakpad/src/common/mac/testing/GTMSenTestCase.h
Copyright: 2007, 2008, Google Inc.
1997-2005, Sen:te (Sente SA).
License: Apache-2.0 or BSD-2-clause
Files: toolkit/crashreporter/google-breakpad/src/common/md5.cc
Copyright: no-info-found
License: public-domain
Files: toolkit/crashreporter/google-breakpad/src/common/stabs_reader.cc
toolkit/crashreporter/google-breakpad/src/common/stabs_reader.h
Copyright: 2005-2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/processor/disassembler_x86.cc
toolkit/crashreporter/google-breakpad/src/processor/disassembler_x86.h
toolkit/crashreporter/google-breakpad/src/processor/disassembler_x86_unittest.cc
toolkit/crashreporter/google-breakpad/src/processor/exploitability_unittest.cc
Copyright: no-info-found
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/processor/static_map-inl.h
toolkit/crashreporter/google-breakpad/src/processor/static_map.h
toolkit/crashreporter/google-breakpad/src/processor/static_map_iterator-inl.h
toolkit/crashreporter/google-breakpad/src/processor/static_map_iterator.h
Copyright: 2005-2006, 2008-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/google-breakpad/src/third_party/lss/*
Copyright: 1999-2013, Google Inc.
License: BSD-3-clause
Files: toolkit/crashreporter/test/browser/browser_clearReports.js
Copyright: no-info-found
License: MPL-2.0
Files: toolkit/modules/tests/xpcshell/test_propertyListsUtils.js
toolkit/mozapps/extensions/test/xpcshell/*.js
toolkit/mozapps/update/tests/TestAUSReadStrings.cpp
toolkit/mozapps/update/tests/unit_aus_update/*
toolkit/mozapps/update/tests/unit_base_updater/marFailurePartial.js
toolkit/mozapps/update/tests/unit_base_updater/marStageFailurePartial.js
toolkit/mozapps/update/tests/unit_base_updater/marStageSuccessComplete.js
toolkit/mozapps/update/tests/unit_base_updater/marStageSuccessPartial.js
toolkit/mozapps/update/tests/unit_base_updater/marSuccessComplete.js
toolkit/mozapps/update/tests/unit_base_updater/marSuccessPartial.js
toolkit/mozapps/update/tests/unit_base_updater/marVersionDowngrade.js
toolkit/mozapps/update/tests/unit_base_updater/marWrongChannel.js
toolkit/mozapps/update/tests/unit_service_updater/marFailurePartialSvc.js
toolkit/mozapps/update/tests/unit_service_updater/marStageFailurePartialSvc.js
toolkit/mozapps/update/tests/unit_service_updater/marStageSuccessCompleteSvc.js
toolkit/mozapps/update/tests/unit_service_updater/marStageSuccessPartialSvc.js
toolkit/mozapps/update/tests/unit_service_updater/marSuccessCompleteSvc.js
toolkit/mozapps/update/tests/unit_service_updater/marSuccessPartialSvc.js
Copyright: no-info-found
License: MPL-2.0
Files: tools/update-packaging/test/common.sh
tools/update-packaging/test/make_full_update.sh
Copyright: no-info-found
License: MPL-2.0
Files: widget/x11/keysym2ucs.c
Copyright: Markus G. Kuhn <mkuhn@acm.org>
License: MPL-2.0
Files: xpcom/build/mach_override.h
Copyright: 2003-2009, Jonathan Wolf Rentzsch: <http://rentzsch.com>
License: Expat
Files: xpcom/components/nsComponentManager.cpp
xpcom/io/nsLocalFile.h
Copyright: 2000, International Business Machines (IBM)
License: MPL-2.0
Files: xpcom/io/SpecialSystemDirectory.cpp
Copyright: 1998 Netscape Communications Corporation,
2007 Red Hat Inc.
License: MPL-2.0
Files: xpcom/tests/unit/data/*
xpcom/tests/unit/test_file_createUnique.js
xpcom/tests/unit/test_file_equality.js
xpcom/tests/unit/test_file_renameTo.js
xpcom/tests/unit/test_ioutil.js
xpcom/tests/unit/test_localfile.js
xpcom/tests/unit/test_notxpcom_scriptable.js
xpcom/tests/unit/test_nsIMutableArray.js
xpcom/tests/unit/test_nsIProcess.js
xpcom/tests/unit/test_pipe.js
xpcom/tests/unit/test_seek_multiplex.js
xpcom/tests/unit/test_storagestream.js
xpcom/tests/unit/test_stringstream.js
xpcom/tests/unit/test_systemInfo.js
xpcom/tests/unit/test_streams.js
comm/suite/browser/test/browser/browser_bug409624.js
comm/suite/browser/test/browser/browser_bug427559.js
comm/suite/browser/test/browser/browser_popupNotification.js
comm/suite/browser/test/browser/browser_privatebrowsing_protocolhandler.js
comm/suite/browser/test/browser/browser_relatedTabs.js
comm/suite/browser/test/browser/head.js
comm/suite/locales/en-US/chrome/browser/pageInfo.dtd
comm/suite/locales/en-US/chrome/common/aboutPrivateBrowsing.dtd
comm/suite/locales/en-US/suite-l10n.js
Copyright: no-info-found
License: MPL-2.0
License: Apache-2.0
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.
.
On Debian systems, the complete text of the Apache License,
Version 2.0 can be found in '/usr/share/common-licenses/Apache-2.0'.
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice(s), this list of conditions and the following disclaimer as
the first lines of this file unmodified other than the possible
addition of one or more copyright notices.
2. Redistributions in binary form must reproduce the above copyright
notice(s), this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``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 THE COPYRIGHT HOLDER(S) 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.
License: BSD-3-clause
Copyright © belongs to the uploader
All rights reserved.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1.Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the owner nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER 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.
License: CC0-1.0
The person who associated a work with this deed has dedicated the work to the
public domain by waiving all of his or her rights to the work worldwide under
copyright law, including all related and neighboring rights, to the extent
allowed by law.
.
You can copy, modify, distribute and perform the work, even for commercial
purposes, all without asking permission. See Other Information below.
.
* In no way are the patent or trademark rights of any person affected by CC0,
nor are the rights that other persons may have in the work or in how the
work is used, such as publicity or privacy rights.
* Unless expressly stated otherwise, the person who associated a work with
this deed makes no warranties about the work, and disclaims liability for
all uses of the work, to the fullest extent permitted by applicable law.
* When using or citing the work, you should not imply endorsement by the
author or the affirmer.
License: Expat
The MIT License
.
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.
License: GPL-2
On Debian systems, the complete text of the GNU General Public
License can be found in the file /usr/share/common-licenses/GPL-2'.
License: GPL-2+
On Debian systems, the complete text of the GNU General Public
License can be found in the file /usr/share/common-licenses/GPL-2'.
License: ISC
Copyright © 2004-2012 by Internet Systems Consortium, Inc. ("ISC")
Copyright © 1995-2003 by Internet Software Consortium
.
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 ISC DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC 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.
License: LGPL-2+
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by the Free
Software Foundation; version 2 of the License, or (at your option) any later
version.
.
On Debian systems, the complete text of version 2 of the GNU Library
General Public License can be found in `/usr/share/common-licenses/LGPL-2'.
License: LGPL-2.1
On Debian systems, the complete text of the GNU Library General Public
License can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
License: LGPL-2.1+
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU Library General Public License as published by the
Free Software Foundation; version 2.1 of the License, or (at your option) any
later version.
.
On Debian systems, the complete text of version 2.1 of the GNU General
Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
License: old-MIT
Permission is hereby granted, without written agreement and without
license or royalty fees, to use, copy, modify, and distribute this
software and its documentation for any purpose, provided that the
above copyright notice and the following two paragraphs appear in
all copies of this software.
.
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
.
THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
License: MPL-1.1
On Debian systems, the complete text of the GNU Library General Public
License can be found in the file `/usr/share/common-licenses/MPL-1.1'.
License: MPL-2.0
On Debian systems, the complete text of the GNU Library General Public
License can be found in the file `/usr/share/common-licenses/MPL-2.0'.
License: Zlib
The zlib License
.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
.
2. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
.
3. This notice may not be removed or altered from any source
distribution.
License: libpng
This copy of the libpng notices is provided for your convenience. In case of
any discrepancy between this copy and the notices in the file png.h that is
included in the libpng distribution, the latter shall prevail.
.
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
.
If you modify libpng you may insert additional notices immediately following
this sentence.
.
This code is released under the libpng license.
.
libpng versions 1.2.6, August 15, 2004, through 1.6.17, March 26, 2015, are
Copyright (c) 2004, 2006-2015 Glenn Randers-Pehrson, and are
distributed according to the same disclaimer and license as libpng-1.2.5
with the following individual added to the list of Contributing Authors
.
Cosmin Truta
.
libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
distributed according to the same disclaimer and license as libpng-1.0.6
with the following individuals added to the list of Contributing Authors
.
Simon-Pierre Cadieux
Eric S. Raymond
Gilles Vollant
.
and with the following additions to the disclaimer:
.
There is no warranty against interference with your enjoyment of the
library or against infringement. There is no warranty that our
efforts or the library will fulfill any of your particular purposes
or needs. This library is provided with all faults, and the entire
risk of satisfactory quality, performance, accuracy, and effort is with
the user.
.
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
distributed according to the same disclaimer and license as libpng-0.96,
with the following individuals added to the list of Contributing Authors:
.
Tom Lane
Glenn Randers-Pehrson
Willem van Schaik
.
libpng versions 0.89, June 1996, through 0.96, May 1997, are
Copyright (c) 1996, 1997 Andreas Dilger
Distributed according to the same disclaimer and license as libpng-0.88,
with the following individuals added to the list of Contributing Authors:
.
John Bowler
Kevin Bracey
Sam Bushell
Magnus Holmgren
Greg Roelofs
Tom Tanner
.
libpng versions 0.5, May 1995, through 0.88, January 1996, are
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
.
For the purposes of this copyright and license, "Contributing Authors"
is defined as the following set of individuals:
.
Andreas Dilger
Dave Martindale
Guy Eric Schalnat
Paul Schmidt
Tim Wegner
.
The PNG Reference Library is supplied "AS IS". The Contributing Authors
and Group 42, Inc. disclaim all warranties, expressed or implied,
including, without limitation, the warranties of merchantability and of
fitness for any purpose. The Contributing Authors and Group 42, Inc.
assume no liability for direct, indirect, incidental, special, exemplary,
or consequential damages, which may result from the use of the PNG
Reference Library, even if advised of the possibility of such damage.
.
Permission is hereby granted to use, copy, modify, and distribute this
source code, or portions hereof, for any purpose, without fee, subject
to the following restrictions:
.
1. The origin of this source code must not be misrepresented.
.
2. Altered versions must be plainly marked as such and must not
be misrepresented as being the original source.
.
3. This Copyright notice may not be removed or altered from any
source or altered source distribution.
.
The Contributing Authors and Group 42, Inc. specifically permit, without
fee, and encourage the use of this source code as a component to
supporting the PNG file format in commercial products. If you use this
source code in a product, acknowledgment is not required but would be
appreciated.
.
A "png_get_copyright" function is available, for convenient use in "about"
boxes and the like:
.
printf("%s",png_get_copyright(NULL));
.
Also, the PNG logo (in PNG format, of course) is supplied in the
files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
.
Libpng is OSI Certified Open Source Software. OSI Certified Open Source is
a certification mark of the Open Source Initiative.
.
Glenn Randers-Pehrson
glennrp at users.sourceforge.net
March 26, 2015
.
The original content can be found on
http://www.libpng.org/pub/png/src/libpng-LICENSE.txt
License: public-domain
They may be distributed freely and/or modified as long as the original
Author is mentioned!
|