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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Kodi
Source: http://kodi.tv/
Files-Excluded: addons/service.xbmc.versioncheck
addons/skin.estuary/fonts/*.ttf
addons/skin.estouchy/fonts/*.ttf
addons/webinterface.default
lib/cpluff/doc/reference
lib/cpluff/libcpluff/win32
lib/gtest
lib/libUPnP/Neptune/ThirdParty/zlib-*
lib/libUPnP/Platinum/Build/Targets/mipsel-psp-linux
lib/libUPnP/Platinum/Targets/universal-apple-*
lib/libUPnP/Platinum/ThirdParty/log4net
lib/UnrarXLib
lib/win32
media/Fonts/arial.ttf
project/BuildDependencies
project/VS2010Express
project/Win32BuildSetup
tools/codegenerator/groovy
tools/depends/target
tools/EventClients/Clients/OSXRemote
tools/windows
xbmc/win32
Files: *
Copyright:
the authors of ffmpeg and xvid
the authors of libPlatinum <http://www.plutinosoft.com/blog/category/platinum/>
1997-2009, Sam Lantinga <slouken@libsdl.org>
2000-2004, Convergence (integrated media) GmbH
2001-2009, The world wide DirectFB Open Source Community <http://directfb.org/>
2002, Albert Griscti-Soler (RUNTiME)
2002, Phil Burr (d7o3g4q)
2002,2007, Erwin Beckers (Frodo)
2003, The Joker / Avalaunch team
2003-2017, Team XBMC <http://xbmc.org/>
2003,2006-2007, Ralf Baechle <ralf@linux-mips.org>
2005, Free Software Foundation, Inc.
2005-2017, Team Kodi <http://kodi.tv/>
2006, Joakim Plate (elupus)
2006, Sylvain Rebaud (c0diq)
2007, Jonathan Marshall (jcmarshall)
2007, Roee Vulkan (vulkanr)
2007-2008, Anoop Menon (d4rk)
2007-2008, Eric Steil III
2007,2011, Tobias Arrskog (topfs) <https://github.com/topfs2>
2008, University Heidelberg
2008, Wladimir J. van der Laan
2010, Team Boxee <http://www.boxee.tv/>
2012, Denis Yantarev
2015-2016, Lauri Mylläri
2016, Chris Browet
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: GPL-2+
Comment:
Copyright holder "Team XboxMediaCenter" assumed
to be equal to "Team XBMC".
Files: addons/skin.estouchy/*
Copyright: Team Kodi <http://kodi.tv/>
License-Grant:
This work is licensed
under the Creative Commons Attribution-Share Alike 3.0 United States
License.
License: CC-BY-SA-3.0~us
Comment:
FIXME: Copyright information missing from source files.
Copyright holder assumed to be main project author.
License assumed from license grant
located in <addons/skin.estouchy/LICENSE.txt>.
Files: addons/skin.estuary/*
Copyright: phil65 & Piers (Team Kodi)
License-Grant:
Estuary code work is licensed
under GNU General Public License (GPL), Version 2.0
License: GPL-2
Files: addons/skin.estuary/media/windows/subtitles/flags/*
Copyright: 2013, Go Squared Ltd. <http:www.gosquared.com/>
License: Expat
Comment:
Copyright and license assumed from
<addons/skin.estuary/media/windows/subtitles/flags/LICENSE.txt>.
Files: lib/cpluff/*
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: Expat
Files: lib/cpluff/examples/*
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~file
Files: lib/cpluff/kazlib/*
Copyright: 1997, Kaz Kylheku <kaz@ashi.footprints.net>
License: Kazlib
Files: lib/cpluff/test/test-*
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~shell
Files: lib/libUPnP/Neptune/*
Copyright: 2002-2012, Axiomatic Systems, LLC
License: BSD-3-clause~Axiomatic
Files: lib/libUPnP/Neptune/Source/Apps/*
lib/libUPnP/Neptune/Source/System/*
lib/libUPnP/Neptune/Source/Tests/*
Copyright:
2001-2014, Gilles Boccon-Gibod <bok@bok.net>
2005-2010, Axiomatic Systems, LLC.
License: BSD-3-clause~Axiomatic
Comment:
FIXME: Licensing information missing from source files.
License assumed from <lib/libUPnP/Neptune/README.txt>,
and from Gilles Boccon-Gibod being former president for Axiomatic
according to
<https://www.corporationwiki.com/California/Los-Altos/gilles-boccon-gibod/43430379.aspx>
Files: lib/libUPnP/Neptune/ThirdParty/axTLS/*
Copyright: 2007, Cameron Rich
License: BSD-3-clause~axTLS
Files: lib/libUPnP/Platinum/*
Copyright: 2004-2012, Plutinosoft, LLC
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Comment:
FIXME: Licensing information missing from some source files:
<lib/libUPnP/Platinum/Source/Platform/Android/module/platinum/jni/platinum-jni.cpp>
<lib/libUPnP/Platinum/Source/Tests/MediaServerCocoaTest/main.mm>
License assumed to be same as related files
with same copyright holder.
Files: tools/EventClients/Clients/WiiRemote/wiiuse_v0.12/*
Copyright: 2006-2007, Michael Laforest (para) <thepara@gmail.com>
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 3 of the License, or (at your option) any later version.
License: GPL-3+
Files: xbmc/contrib/kissfft/*
Copyright: 2003-2010, Mark Borgerding
License: BSD-3-clause
Files: addons/skin.estuary/*.jpg
addons/skin.estuary/*.png
Copyright: phil65 & Piers (Team Kodi)
License-Grant:
Estuary Artwork is licensed
under a Creative Commons Attribution-ShareAlike 4.0 Unported License.
License: CC-BY-SA-4.0
Files: lib/cpluff/*/autogen.sh
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~shell
Files: lib/cpluff/*/Makefile.am
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~Makefile
Files: lib/cpluff/libcpluff/docsrc/Doxyfile-*.in
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~configuration
Files: xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEBuffer.cpp
xbmc/cores/VideoPlayer/DVDCodecs/Video/VAAPI.cpp
xbmc/cores/VideoPlayer/DVDCodecs/Video/VAAPI.h
xbmc/cores/VideoPlayer/DVDCodecs/Video/VTB.cpp
xbmc/cores/VideoPlayer/DVDCodecs/Video/VTB.h
xbmc/cores/VideoPlayer/VideoRenderers/RenderFlags.cpp
xbmc/guilib/StereoscopicsManager.cpp
xbmc/guilib/StereoscopicsManager.h
xbmc/linux/sse4/CopyFrame.cpp
xbmc/utils/ActorProtocol.cpp
xbmc/utils/ActorProtocol.h
xbmc/utils/win32/memcpy_sse2.h
Copyright:
2005-2015, Team Kodi <http://kodi.tv/>
2005-2016, Team XBMC <http://xbmc.org/>
License-Grant:
This library is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License: LGPL-2.1+
Files: lib/libUPnP/Platinum/Build/Targets/universal-apple-macosx/PlatinumFramework/PlatinumFramework-Info.plist
lib/libUPnP/Platinum/Source/Extras/ObjectiveC/PltMediaServerObject.h
lib/libUPnP/Platinum/Source/Extras/ObjectiveC/PltMediaServerObject.mm
lib/libUPnP/Platinum/Source/Extras/ObjectiveC/PltUPnPObject.h
lib/libUPnP/Platinum/Source/Extras/ObjectiveC/PltUPnPObject.mm
lib/libUPnP/Platinum/Source/Tests/MediaServerCocoaTest/MediaServerCocoaTestController.h
lib/libUPnP/Platinum/Source/Tests/MediaServerCocoaTest/MediaServerCocoaTestController.mm
Copyright: 2010-2011, Plutinosoft LLC
License: GPL-2+
Comment:
FIXME: Licensing information missing from source files.
License assumed to be same as generally for same copyright holder.
Files: xbmc/dbwrappers/dataset.cpp
xbmc/dbwrappers/dataset.h
xbmc/dbwrappers/qry_dat.cpp
xbmc/dbwrappers/qry_dat.h
xbmc/dbwrappers/sqlitedataset.cpp
xbmc/dbwrappers/sqlitedataset.h
Copyright: 2002,2004, Leo Seib, Hannover <leoseib@web.de>
License: Expat
Files: xbmc/platform/android/jni/JNIThreading.cpp
xbmc/platform/android/jni/JNIThreading.h
xbmc/platform/android/jni/jutils.cpp
xbmc/platform/android/jni/jutils/jutils-details.hpp
xbmc/platform/android/jni/jutils/jutils.hpp
Copyright:
2005-2013, Team XBMC <http://xbmc.org/>
2011-2012, Dmitry Moskalchuk <dm@crystax.net>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: BSD-2-clause~Moskalchuk and GPL-2+
Files: xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/decoder.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/dvdnav.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/dvdnav_events.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/dvdnav_internal.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/vmcmd.h
Copyright:
2001, Håkan Hjort <d95hjort@dtek.chalmers.se>
2001, Martin Norbäck
2001-2004, Rich Wareham <richwareham@users.sourceforge.net>
License-Grant:
libdvdnav is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Files: xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/dvd_reader.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/dvd_types.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/ifo_types.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/vm.h
xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/remap.h
Copyright:
2000-2002, Håkan Hjort <d95hjort@dtek.chalmers.se>
2001, Rich Wareham <richwareham@users.sourceforge.net>
2001-2002, Billy Biggs <vektor@dumbterm.net>
2001-2002, Björn Englund <d4bjorn@dtek.chalmers.se>
License-Grant:
libdvdread is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Comment:
FIXME: Copyright information missing from one source file:
<xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/remap.h>.
Copyright assumed to be same as (or a subset of) that of other files
with identical license grant.
Files: xbmc/addons/AudioDecoder.cpp
xbmc/addons/AudioDecoder.h
xbmc/addons/AudioEncoder.cpp
xbmc/addons/AudioEncoder.h
Copyright: 2013, Arne Morten Kvarving (cptspiff)
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: GPL-2+
Files: xbmc/input/XBMC_keyboard.h
xbmc/input/XBMC_keysym.h
xbmc/input/XBMC_mouse.h
xbmc/input/XBMC_vkeys.h
Copyright: 1997-2009, Sam Lantinga <slouken@libsdl.org>
License-Grant:
This library is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License: LGPL-2.1+
Files: m4/ax_cxx_compile_stdcxx_11.m4
m4/ax_prog_cxx_for_build.m4
m4/ax_prog_cc_for_build.m4
Copyright:
2008, Benjamin Kosnik <bkoz@redhat.com>
2008, Paolo Bonzini <bonzini@gnu.org>
2012, Avionic Design GmbH
2012, Zack Weinberg <zackw@panix.com>
2013, Roy Stogner <roystgnr@ices.utexas.edu>
2014, Alexey Sokolov <sokolov@google.com>
License: FSFAP
Files: xbmc/network/AirPlayServer.cpp
xbmc/network/AirPlayServer.h
xbmc/network/AirTunesServer.cpp
Copyright: 2011-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2.1, or (at your option) any later version.
License: GPL-2+
Comment:
FIXME: License grant bogusly refer to non-existent GPL version 2.1.
License assumed to be GPL-2+.
.
FIXME: Copyright information missing from one source file:
<xbmc/network/AirPlayServer.cpp>.
Copyright assumed to be same as closely related files
sharing license and (arguably) identifier of copyright holder.
Files: xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecOpenMax.cpp
xbmc/utils/BitstreamConverter.cpp
xbmc/utils/BitstreamConverter.h
Copyright:
2005, Michal Benes <michal.benes@itonis.tv>
2006, Baptiste Coudurier <baptiste.coudurier@smartjog.com>
2007, Benoit Fouet <benoit.fouet@free.fr>
2008, Wim Taymans <wim.taymans@gmail.com>
2010-2015, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License-Grant:
License as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License-Grant:
based on h264_mp4toannexb_bsf.c (ffmpeg)
which is Copyright (c) 2007 Benoit Fouet <benoit.fouet@free.fr>
and Licensed GPL 2.1 or greater
License: GPL-2+
Comment:
FIXME: License grant bogusly refer to non-existent GPL version 2.1.
License assumed to be GPL-2+.
Files: project/cmake/modules/extra/ECMEnableSanitizers.cmake
project/cmake/modules/FindLibXml2.cmake
Copyright:
2006, Alexander Neundorf <neundorf@kde.org>
2006-2009, Kitware, Inc.
2014, Mathieu Tarral <mathieu.tarral@gmail.com>
2016, Team Kodi <http://kodi.tv/>
License-Grant:
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
License: BSD-3-clause
Comment:
FIXME: License grant ambiguous regarding exact BSD license.
License assumed to be the same as clarified
in CMake project commit 86578ec:
<https://github.com/Kitware/CMake/commit/86578eccf2e82286248796bad1032cd0e3a5e1e2>.
Files: xbmc/platform/darwin/osx/HotKeyController.h
xbmc/platform/darwin/osx/HotKeyController.m
Copyright: 2010, Gaurav Khanna
License: Expat
Files: lib/cpluff/configure.ac
lib/cpluff/examples/configure.ac
Copyright: 2007, Johannes Lehtinen <johannes.lehtinen@iki.fi>
License: FSFUL~Lehtinen~configure.ac
Files: xbmc/cores/VideoPlayer/DVDCodecs/Overlay/contrib/cc_decoder.c
xbmc/cores/VideoPlayer/DVDCodecs/Overlay/contrib/cc_decoder.h
Copyright:
2000-2008, the xine project
2001, Christian Vogler <cvogler@gradient.cis.upenn.edu>
License-Grant:
xine is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Files: xbmc/platform/darwin/osx/smc.c
xbmc/platform/darwin/osx/smc.h
Copyright: 2006, devnull
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Files: xbmc/utils/HttpParser.cpp
xbmc/utils/HttpParser.h
Copyright: 2011-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+ and public-domain
This code was written by Steve Hanov in 2009, no copyright is claimed.
This code is in the public domain.
Files: xbmc/platform/android/activity/GraphicBuffer.cpp
xbmc/platform/android/activity/GraphicBuffer.h
Copyright:
2005-2013, Team XBMC <http://xbmc.org/>
2009, Mozilla Foundation
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License-Grant:
The contents of this file are subject
to the Mozilla Public License Version 1.1 (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.mozilla.org/MPL/>
License-Grant:
Alternatively, the contents of this file may be used under the terms
of either the GNU General Public License Version 2 or later
(the "GPL"),
or the GNU Lesser General Public License Version 2.1 or later
(the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable
instead of those above.
If you wish to allow use of your version of this file
only under the terms of either the GPL or the LGPL,
and not to allow others to use your version of this file
under the terms of the MPL,
indicate your decision by deleting the provisions above
and replace them with the notice and other provisions
required by the GPL or the LGPL.
If you do not delete the provisions above,
a recipient may use your version of this file under the terms
of any one of the MPL, the GPL or the LGPL.
License: GPL-2+ or LGPL-2.1+ or MPL-1.1
Files: tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp
tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.h
Copyright: 2009, Cory Fields
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 3 of the License, or (at your option) any later version.
License: GPL-3+
Files: tools/depends/build-aux/config.guess
tools/depends/build-aux/config.sub
Copyright: 1992-2016, Free Software Foundation, Inc.
License-Grant:
This file is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 3 of the License, or (at your option) any later version.
License: GPL-3+ with Autoconf exception
As a special exception to the GNU General Public License,
if you distribute this file as part of a program
that contains a configuration script generated by Autoconf,
you may include it under the same distribution terms
that you use for the rest of that program.
This Exception is an additional permission
under section 7 of the GNU General Public License, version 3 ("GPLv3").
Files: tools/depends/native/TexturePacker/src/Win32/dirent.c
tools/depends/native/TexturePacker/src/Win32/dirent.h
Copyright: 1997,2003, Kevlin Henney <kevlin@acm.org>, <kevlin@curbralan.com>
License: ISC~minimal-disclaimer
Files: xbmc/platform/android/bionic_supplement/getdelim.c
xbmc/platform/win32/strverscmp.cpp
Copyright: 1991-1992,1995-1997,2000, Free Software Foundation, Inc.
License-Grant:
The GNU C Library 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;
either version 2 of the License, or (at your option) any later version.
License: LGPL-2+
Files: xbmc/addons/kodi-addon-dev-kit/include/kodi/dlfcn-win32.cpp
xbmc/addons/kodi-addon-dev-kit/include/kodi/dlfcn-win32.h
Copyright: 2007, Ramiro Polla
License-Grant:
This library is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License: LGPL-2.1+
Files: xbmc/platform/win32/dxerr.cpp
xbmc/platform/win32/dxerr.h
Copyright: Microsoft Corporation
License: NONE
FIXME: Licensing information missing from source files.
Files: system/players/VideoPlayer/etc/fonts/conf.avail/65-fonts-persian.conf
system/players/VideoPlayer/etc/fonts/conf.d/65-fonts-persian.conf
Copyright: 2005, Sharif FarsiWeb, Inc. <license@farsiweb.info>
License: NTP~disclaimer~FarsiWeb
Files: tools/depends/native/TexturePacker/src/md5.cpp
tools/depends/native/TexturePacker/src/md5.h
Copyright: None (in the public domain)
License: public-domain
This code was written by Colin Plumb in 1993, no copyright is claimed.
This code is in the public domain; do with it what you wish.
Files: xbmc/platform/darwin/osx/SDLMain.h
xbmc/platform/darwin/osx/SDLMain.mm
Copyright: None (in the public domain)
License: public-domain
SDLMain.m and SDLMain.h carry neither a copyright or license.
They are in the public domain.
Files: xbmc/freebsd/FreeBSDGNUReplacements.h
Copyright: 2009, David Schultz <das@FreeBSD.org>
License: BSD-2-clause
Files: xbmc/platform/android/jni/jutils/jni.inc
Copyright: 2011-2012, Dmitry Moskalchuk <dm@crystax.net>
License: BSD-2-clause~Moskalchuk
Files: xbmc/freebsd/FreeBSDGNUReplacements.c
Copyright:
1991-1992,1995-1997,2002,2005, Free Software Foundation, Inc.
2009, David Schultz <das@FreeBSD.org>
License-Grant:
The GNU C Library 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;
either version 2 of the License, or (at your option) any later version.
License-Grant:
Libiberty is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License: BSD-2-clause and LGPL-2+ and LGPL-2.1+
Files: xbmc/filesystem/NptXbmcFile.cpp
Copyright: 2002-2008, Axiomatic Systems, LLC
License: BSD-3-clause~Axiomatic
Files: xbmc/platform/win32/WIN32Util.cpp
Copyright:
1997-1998, 2005, The NetBSD Foundation, Inc.
2005-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: BSD-4-clause and GPL-2+
Comment:
FIXME: Incompatible licensing terms.
Files: xbmc/network/websocket/sha1.hpp
Copyright: 2007, Andy Tompkins
License-Grant:
Distributed under the Boost Software License, Version 1.0.
(See accompanying file <LICENSE_1_0.txt>
or copy at <http://www.boost.org/LICENSE_1_0.txt>)
License: BSL-1.0
Files: addons/skin.estuary/extras/home-images/movie.jpg
Copyright: UNKNOWN
License-Grant:
movie.jpg: https://creativecommons.org/licenses/by/2.0/legalcode
License: CC-2.0
Comment:
FIXME: Missing copyright and licensing information in source file.
License assumed from license grant
located in addons/skin.estuary/extras/home-images/LICENSE.
Files: xbmc/platform/win32/dirent.h
Copyright: 2006-2012, Toni Ronkko
License: Expat
Files: lib/cpluff/po/Makefile.in.in
Copyright: 1995-1997, 2000-2006, Ulrich Drepper <drepper@gnu.ai.mit.edu>
License: FSFAP~noGPL
Files: tools/depends/native/rpl-native/rpl
Copyright:
2004, Christian Haggstrom <chm@c00.info>
2004-2005, Goran Weinholt <weinholt@debian.org>
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Files: xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/nav_types.h
Copyright:
1998-1999, Eric Smith <eric@brouhaha.com>
2000-2002, Håkan Hjort <d95hjort@dtek.chalmers.se>
License-Grant:
VOBDUMP is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
Note that I am not granting permission
to redistribute or modify VOBDUMP
under the terms of any later version of the General Public License.
License: GPL-2
Files: xbmc/utils/fstrcmp.h
Copyright: 1995, Free Software Foundation, Inc.
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: GPL-2+
Files: xbmc/linux/rpi/rpi_user_vcsm.h
Copyright: 2015-2016, Raspberry Pi (Trading) Ltd.
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: GPL-2+
Files: xbmc/utils/win32/gpu_memcpy_sse4.h
Copyright: 2011-2015, Hendrik Leppkes <http://www.1f0.de/>
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+
Files: xbmc/utils/StringUtils.cpp
Copyright:
2005-2013, Team XBMC <http://xbmc.org/>
2012, Leigh Brasington
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License: GPL-2+ and custom
This code may be used and reproduced without written permission.
<http://www.leighb.com/tounicupper.htm>
Comment:
FIXME: Check that custom license comply
with Debian Free Software Guidelines.
Files: xbmc/platform/darwin/OSXGNUReplacements.c
Copyright:
1991-1992,1995-1997,2000, Free Software Foundation, Inc.
2005-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License-Grant:
From <http://svn.digium.com/view/asterisk/trunk/main/utils.c>
GNU General Public License Version 2
License-Grant:
The GNU C Library 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;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+ and LGPL-2 and LGPL-2+ and public-domain
Note This routine is derived from code
originally written and placed in the public domain
by Enzo Michelangeli <em@em.no-ip.com>.
Files: xbmc/platform/darwin/osx/OSXTextInputResponder.mm
Copyright:
1997-2010, Sam Lantinga <slouken@libsdl.org>
2005-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2, or (at your option) any later version.
License-Grant:
LGPLV2.1 or later
License: GPL-2+ and LGPL-2.1+
Files: xbmc/utils/md5.cpp
Copyright: 2009-2013, Team XBMC <http://xbmc.org/>
License-Grant:
This Program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
License: GPL-2+ and public-domain
The algorithm is due to Ron Rivest.
This code was written by Colin Plumb in 1993, no copyright is claimed.
This code is in the public domain; do with it what you wish.
Files: m4/ax_python_devel.m4
Copyright:
2009, Alan W. Irwin
2009, Andrew Collier
2009, Horst Knorr <hk_classes@knoda.org>
2009, Matteo Settenvini <matteo@member.fsf.org>
2009, Rafael Laboissiere <rafael@laboissiere.net>
2009, Sebastian Huber <sebastian-huber@web.de>
2013, Daniel Mullner <muellner@math.stanford.edu>
License-Grant:
This program is free software:
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.
License: GPL-3+ with Autoconf-Macro exception
As a special exception,
the respective Autoconf Macro's copyright owner gives unlimited permission
to copy, distribute and modify the configure scripts
that are the output of Autoconf when processing the Macro.
You need not follow the terms of the GNU General Public License
when using or distributing such scripts,
even though portions of the text of the Macro appear in them.
The GNU General Public License (GPL) does govern
all other use of the material that constitutes the Autoconf Macro.
.
This special exception to the GPL applies
to versions of the Autoconf Macro
released by the Autoconf Archive.
When you make and distribute a modified version of the Autoconf Macro,
you may extend this special exception to the GPL
to apply to your modified version as well.
Files: xbmc/platform/android/bionic_supplement/rand_r.c
Copyright: 1996,1999, Free Software Foundation, Inc.
License-Grant:
The GNU C Library is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 2.1 of the License,
or (at your option) any later version.
License: LGPL-2.1+
Files: xbmc-xrandr.c
Copyright:
2001, Keith Packard, member of The XFree86 Project, Inc.
2002, Hewlett Packard Company, Inc.
2006, Intel Corporation
License: NTP~disclaimer
Files: xbmc/utils/fstrcmp.c
Copyright: 1997-2010, The PHP Group
License-Grant:
This source file is subject to version 3.01 of the PHP license,
that is bundled with this package in the file <LICENSE>,
and is available through the world-wide-web
at the following url: <http://www.php.net/license/3_01.txt>
If you did not receive a copy of the PHP license
and are unable to obtain it through the world-wide-web,
please send a note to <license@php.net>
so we can mail you a copy immediately.
License: PHP-3.01
Files: xbmc/cores/VideoPlayer/VideoRenderers/yuv2rgb.neon.S
Copyright: 2011, ARM Limited
License-Grant:
Use of this source code is governed
by a BSD-style license
that can be found in the <LICENSE> file.
.
<http://code.google.com/p/chromium/issues/detail?id=71403>
License: BSD-3-clause~Google
Comment:
FIXME: Referenced file <LICENSE> missing from source.
License assumed to be same as generally for the Chromium project,
based on
<http://web.archive.org/web/20150412201603/http://code.google.com/p/chromium/issues/detail?id=71403>.
Files: tools/EventClients/icons/bluetooth.png
Copyright: 2003, Jakub Steiner (jimmac) <http://jimmac.musichall.cz/>
License: NONE
FIXME: Licensing information missing from source file.
Files: tools/depends/build-aux/install-sh
Copyright: 1994, X Consortium
License: X11 and public-domain
FSF changes to this file are in the public domain.
Files: debian/*
Copyright:
2008-2009, Ouattara Oumar Aziz <wattazoum@gmail.com>
2012-2013, Andres Mejia <amejia@debian.org>
2014-2015, Balint Reczey <balint@balintreczey.hu>
License-Grant:
This program is free software;
you can redistribute it and/or modify it
under the terms of the GNU General Public License
as published by the Free Software Foundation;
version 2 dated June, 1991, or (at your option) any later version.
License: GPL-2+
Files: debian/from-debian-logo.svg
Copyright:
1999, Software in the Public Interest, Inc.
2015, Balint Reczey <balint@balintreczey.hu>
License-Grant:
This package is free software;
you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation;
either version 3 of the License, or (at your option) any later version.
License: LGPL-3+
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:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-2-clause~Moskalchuk
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
.
THIS SOFTWARE IS PROVIDED BY Dmitry Moskalchuk "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 Dmitry Moskalchuk OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* Neither the author
nor the names of any 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 OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause~Axiomatic
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* Neither the name of Axiomatic Systems
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 AXIOMATIC SYSTEMS "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 AXIOMATIC SYSTEMS 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~axTLS
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* Neither the name of the axTLS project
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 OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause~Google
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
.
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* Neither the name of Google Inc.
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 OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause~nullsoft
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* Neither the name of Nullsoft
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 OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSD-4-clause
Redistribution and use in source and binary forms,
with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain
the above copyright notice, this list of conditions
and the following disclaimer.
* 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.
* All advertising materials
mentioning features or use of this software must display
the following acknowledgement:
This product includes software developed
by the NetBSD Foundation, Inc. and its contributors.
* Neither the name of The NetBSD Foundation
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 NETBSD FOUNDATION, INC. 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 FOUNDATION OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: BSL-1.0
Permission is hereby granted,
free of charge,
to any person or organization obtaining a copy of
the software and accompanying documentation
covered by this license (the "Software")
to use, reproduce, display, distribute, execute,
and transmit the Software,
and to prepare derivative works of the Software,
and to permit third-parties
to whom the Software is furnished to do so,
all subject to the following:
.
The copyright notices in the Software
and this entire statement,
including the above license grant, this restriction
and the following disclaimer,
must be included in all copies of the Software,
in whole or in part,
and all derivative works of the Software,
unless such copies or derivative works are solely
in the form of machine-executable object code
generated by a source language processor.
.
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,
TITLE AND NON-INFRINGEMENT.
IN NO EVENT SHALL THE COPYRIGHT HOLDERS
OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY,
WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: CC-2.0
THE WORK (AS DEFINED BELOW) IS PROVIDED
UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE
("CCPL" OR "LICENSE").
THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW.
ANY USE OF THE WORK OTHER THAN AS AUTHORIZED
UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE,
YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.
THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE
IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
.
1. Definitions
a. "Collective Work" means a work,
such as a periodical issue, anthology or encyclopedia,
in which the Work in its entirety in unmodified form,
along with a number of other contributions,
constituting separate and independent works in themselves,
are assembled into a collective whole.
A work that constitutes a Collective Work will not be considered
a Derivative Work (as defined below)
for the purposes of this License.
b. "Derivative Work" means a work
based upon the Work or upon the Work and other pre-existing works,
such as a translation, musical arrangement, dramatization,
fictionalization, motion picture version, sound recording,
art reproduction, abridgment, condensation,
or any other form
in which the Work may be recast, transformed, or adapted,
except that a work that constitutes a Collective Work
will not be considered a Derivative Work
for the purpose of this License.
For the avoidance of doubt,
where the Work is a musical composition or sound recording,
the synchronization of the Work
in timed-relation with a moving image ("synching")
will be considered a Derivative Work
for the purpose of this License.
c. "Licensor" means the individual or entity
that offers the Work under the terms of this License.
d. "Original Author" means the individual or entity
who created the Work.
e. "Work" means the copyrightable work of authorship
offered under the terms of this License.
f. "You" means an individual or entity
exercising rights under this License
who has not previously violated the terms of this License
with respect to the Work,
or who has received express permission from the Licensor
to exercise rights under this License
despite a previous violation.
.
2. Fair Use Rights.
Nothing in this license is intended to reduce, limit, or restrict
any rights arising from fair use, first sale or other limitations
on the exclusive rights of the copyright owner
under copyright law or other applicable laws.
.
3. License Grant.
Subject to the terms and conditions of this License,
Licensor hereby grants You
a worldwide, royalty-free, non-exclusive, perpetual
(for the duration of the applicable copyright)
license to exercise the rights in the Work
as stated below:
a. to reproduce the Work,
to incorporate the Work into one or more Collective Works,
and to reproduce the Work
as incorporated in the Collective Works;
b. to create and reproduce Derivative Works;
c. to distribute copies or phonorecords of,
display publicly, perform publicly,
and perform publicly by means of a digital audio transmission
the Work
including as incorporated in Collective Works;
d. to distribute copies or phonorecords of,
display publicly, perform publicly,
and perform publicly by means of a digital audio transmission
Derivative Works.
e. For the avoidance of doubt,
where the work is a musical composition:
i. Performance Royalties Under Blanket Licenses.
Licensor waives the exclusive right to collect,
whether individually or via a performance rights society
(e.g. ASCAP, BMI, SESAC),
royalties for the public performance
or public digital performance (e.g. webcast)
of the Work.
ii. Mechanical Rights and Statutory Royalties.
Licensor waives the exclusive right to collect,
whether individually or via a music rights agency
or designated agent (e.g. Harry Fox Agency),
royalties for any phonorecord You create from the Work
("cover version")
and distribute,
subject to the compulsory license
created by 17 USC Section 115 of the US Copyright Act
(or the equivalent in other jurisdictions).
f. Webcasting Rights and Statutory Royalties.
For the avoidance of doubt,
where the Work is a sound recording,
Licensor waives the exclusive right to collect,
whether individually or via a performance-rights society
(e.g. SoundExchange),
royalties for the public digital performance (e.g. webcast)
of the Work,
subject to the compulsory license
created by 17 USC Section 114 of the US Copyright Act
(or the equivalent in other jurisdictions).
.
The above rights may be exercised
in all media and formats
whether now known or hereafter devised.
The above rights include
the right to make such modifications
as are technically necessary to exercise
the rights in other media and formats.
All rights not expressly granted by Licensor are hereby reserved.
.
4. Restrictions.
The license granted in Section 3 above is expressly
made subject to and limited by the following restrictions:
a. You may distribute, publicly display, publicly perform,
or publicly digitally perform
the Work
only under the terms of this License,
and You must include a copy of,
or the Uniform Resource Identifier for,
this License
with every copy or phonorecord of the Work You distribute,
publicly display, publicly perform,
or publicly digitally perform.
You may not offer or impose any terms on the Work
that alter or restrict the terms of this License
or the recipients' exercise of the rights granted hereunder.
You may not sublicense the Work.
You must keep intact all notices that refer to this License
and to the disclaimer of warranties.
You may not distribute, publicly display, publicly perform,
or publicly digitally perform the Work
with any technological measures
that control access or use of the Work
in a manner inconsistent with the terms of this License Agreement.
The above applies to the Work
as incorporated in a Collective Work,
but this does not require the Collective Work
apart from the Work itself
to be made subject to the terms of this License.
If You create a Collective Work,
upon notice from any Licensor You must,
to the extent practicable,
remove from the Collective Work
any reference to such Licensor or the Original Author,
as requested.
If You create a Derivative Work,
upon notice from any Licensor You must,
to the extent practicable,
remove from the Derivative Work any reference to such Licensor
or the Original Author,
as requested.
b. If you distribute, publicly display, publicly perform,
or publicly digitally perform the Work
or any Derivative Works or Collective Works,
You must keep intact
all copyright notices for the Work
and give the Original Author credit
reasonable to the medium or means You are utilizing
by conveying the name (or pseudonym if applicable)
of the Original Author if supplied;
the title of the Work if supplied;
to the extent reasonably practicable,
the Uniform Resource Identifier, if any,
that Licensor specifies to be associated with the Work,
unless such URI does not refer to the copyright notice
or licensing information for the Work;
and in the case of a Derivative Work,
a credit identifying the use of the Work in the Derivative Work
(e.g., "French translation of the Work by Original Author,"
or "Screenplay based on original Work by Original Author").
Such credit may be implemented in any reasonable manner;
provided, however, that
in the case of a Derivative Work or Collective Work,
at a minimum such credit will appear
where any other comparable authorship credit appears
and in a manner at least as prominent
as such other comparable authorship credit.
.
5. Representations, Warranties and Disclaimer
.
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING,
LICENSOR OFFERS THE WORK AS-IS
AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
CONCERNING THE WORK,
EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
INCLUDING, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTIBILITY,
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT,
OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY,
OR THE PRESENCE OF ABSENCE OF ERRORS,
WHETHER OR NOT DISCOVERABLE.
SOME JURISDICTIONS DO NOT ALLOW
THE EXCLUSION OF IMPLIED WARRANTIES,
SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
.
6. Limitation on Liability.
EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
IN NO EVENT WILL LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY
FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL,
PUNITIVE OR EXEMPLARY DAMAGES
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK,
EVEN IF LICENSOR HAS BEEN ADVISED
OF THE POSSIBILITY OF SUCH DAMAGES.
.
7. Termination
a. This License and the rights granted hereunder
will terminate automatically upon any breach by You
of the terms of this License.
Individuals or entities who have received
Derivative Works or Collective Works
from You under this License,
however, will not have their licenses terminated
provided such individuals or entities remain
in full compliance with those licenses.
Sections 1, 2, 5, 6, 7, and 8 will survive
any termination of this License.
b. Subject to the above terms and conditions,
the license granted here is perpetual
(for the duration of the applicable copyright in the Work).
Notwithstanding the above,
Licensor reserves the right to release the Work
under different license terms
or to stop distributing the Work at any time;
provided, however that any such election will not serve
to withdraw this License
(or any other license that has been, or is required to be,
granted under the terms of this License),
and this License will continue in full force and effect
unless terminated as stated above.
.
8. Miscellaneous
a. Each time You distribute or publicly digitally perform
the Work or a Collective Work,
the Licensor offers to the recipient
a license to the Work
on the same terms and conditions
as the license granted to You under this License.
b. Each time You distribute or publicly digitally perform
a Derivative Work,
Licensor offers to the recipient
a license to the original Work
on the same terms and conditions
as the license granted to You under this License.
c. If any provision of this License is invalid
or unenforceable under applicable law,
it shall not affect the validity or enforceability
of the remainder of the terms of this License,
and without further action
by the parties to this agreement,
such provision shall be reformed
to the minimum extent necessary
to make such provision valid and enforceable.
d. No term or provision of this License shall be deemed waived
and no breach consented to
unless such waiver or consent shall be in writing
and signed by the party
to be charged with such waiver or consent.
e. This License constitutes
the entire agreement between the parties
with respect to the Work
licensed here.
There are no understandings, agreements or representations
with respect to the Work
not specified here.
Licensor shall not be bound by any additional provisions
that may appear in any communication from You.
This License may not be modified
without the mutual written agreement
of the Licensor and You.
License: CC-BY-SA-3.0~us
THE WORK (AS DEFINED BELOW) IS PROVIDED
UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE
("CCPL" OR "LICENSE").
THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW.
ANY USE OF THE WORK OTHER THAN AS AUTHORIZED
UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE,
YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE.
TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT,
THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE
IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
.
1. Definitions
.
a. "Collective Work" means a work,
such as a periodical issue, anthology or encyclopedia,
in which the Work in its entirety in unmodified form,
along with one or more other contributions,
constituting separate and independent works in themselves,
are assembled into a collective whole.
A work that constitutes a Collective Work will not be considered
a Derivative Work (as defined below)
for the purposes of this License.
b. "Creative Commons Compatible License" means a license
that is listed at <https://creativecommons.org/compatiblelicenses>
that has been approved by Creative Commons
as being essentially equivalent to this License,
including, at a minimum,
because that license: (i) contains terms
that have the same purpose, meaning and effect
as the License Elements of this License;
and, (ii) explicitly permits the relicensing
of derivatives of works made available under that license
under this License or either a Creative Commons unported license
or a Creative Commons jurisdiction license
with the same License Elements as this License.
c. "Derivative Work" means a work
based upon the Work or upon the Work and other pre-existing works,
such as a translation, musical arrangement, dramatization,
fictionalization, motion picture version, sound recording,
art reproduction, abridgment, condensation,
or any other form
in which the Work may be recast, transformed, or adapted,
except that a work that constitutes a Collective Work
will not be considered a Derivative Work
for the purpose of this License.
For the avoidance of doubt,
where the Work is a musical composition or sound recording,
the synchronization of the Work
in timed-relation with a moving image ("synching")
will be considered a Derivative Work
for the purpose of this License.
d. "License Elements" means the following
high-level license attributes
as selected by Licensor
and indicated in the title of this License:
Attribution, ShareAlike.
e. "Licensor" means the individual, individuals, entity or entities
that offers the Work under the terms of this License.
f. "Original Author" means the individual, individuals,
entity or entities
who created the Work.
g. "Work" means the copyrightable work of authorship
offered under the terms of this License.
h. "You" means an individual or entity
exercising rights under this License
who has not previously violated the terms of this License
with respect to the Work,
or who has received express permission from the Licensor
to exercise rights under this License
despite a previous violation.
.
2. Fair Use Rights.
Nothing in this license is intended
to reduce, limit, or restrict any rights
arising from fair use, first sale or other limitations
on the exclusive rights of the copyright owner
under copyright law or other applicable laws.
.
3. License Grant.
Subject to the terms and conditions of this License,
Licensor hereby grants You
a worldwide, royalty-free, non-exclusive, perpetual
(for the duration of the applicable copyright)
license to exercise the rights in the Work
as stated below:
.
a. to reproduce the Work,
to incorporate the Work into one or more Collective Works,
and to reproduce the Work
as incorporated in the Collective Works;
b. to create and reproduce Derivative Works
provided that any such Derivative Work,
including any translation in any medium,
takes reasonable steps to clearly label, demarcate
or otherwise identify
that changes were made to the original Work.
For example, a translation could be marked
"The original work was translated from English to Spanish,"
or a modification could indicate
"The original work has been modified.";
c. to distribute copies or phonorecords of,
display publicly, perform publicly,
and perform publicly by means of a digital audio transmission
the Work
including as incorporated in Collective Works;
d. to distribute copies or phonorecords of,
display publicly, perform publicly,
and perform publicly by means of a digital audio transmission
Derivative Works.
e. For the avoidance of doubt,
where the Work is a musical composition:
i. Performance Royalties Under Blanket Licenses.
Licensor waives the exclusive right to collect,
whether individually or,
in the event that Licensor is a member
of a performance rights society
(e.g. ASCAP, BMI, SESAC),
via that society,
royalties for the public performance
or public digital performance (e.g. webcast)
of the Work.
ii. Mechanical Rights and Statutory Royalties.
Licensor waives the exclusive right to collect,
whether individually or via a music rights agency
or designated agent (e.g. Harry Fox Agency),
royalties for any phonorecord You create from the Work
("cover version")
and distribute,
subject to the compulsory license
created by 17 USC Section 115 of the US Copyright Act
(or the equivalent in other jurisdictions).
f. Webcasting Rights and Statutory Royalties.
For the avoidance of doubt,
where the Work is a sound recording,
Licensor waives the exclusive right to collect,
whether individually
or via a performance-rights society (e.g. SoundExchange),
royalties for the public digital performance (e.g. webcast)
of the Work,
subject to the compulsory license
created by 17 USC Section 114 of the US Copyright Act
(or the equivalent in other jurisdictions).
.
The above rights may be exercised
in all media and formats
whether now known or hereafter devised.
The above rights include
the right to make such modifications
as are technically necessary to exercise the rights
in other media and formats.
All rights not expressly granted by Licensor are hereby reserved.
.
4. Restrictions.
The license granted in Section 3 above is expressly
made subject to and limited by the following restrictions:
.
a. You may distribute, publicly display, publicly perform,
or publicly digitally perform the Work
only under the terms of this License,
and You must include a copy of,
or the Uniform Resource Identifier for,
this License
with every copy or phonorecord of the Work
You distribute, publicly display, publicly perform,
or publicly digitally perform.
You may not offer or impose any terms on the Work
that restrict the terms of this License
or the ability of a recipient of the Work to exercise
of the rights granted to that recipient
under the terms of the License.
You may not sublicense the Work.
You must keep intact all notices
that refer to this License
and to the disclaimer of warranties.
When You distribute, publicly display, publicly perform,
or publicly digitally perform the Work,
You may not impose any technological measures on the Work
that restrict the ability of a recipient of the Work from You
to exercise of the rights granted to that recipient
under the terms of the License.
This Section 4(a) applies to the Work
as incorporated in a Collective Work,
but this does not require the Collective Work
apart from the Work itself
to be made subject to the terms of this License.
If You create a Collective Work,
upon notice from any Licensor
You must, to the extent practicable, remove
from the Collective Work
any credit as required by Section 4(c), as requested.
If You create a Derivative Work,
upon notice from any Licensor
You must, to the extent practicable, remove
from the Derivative Work
any credit as required by Section 4(c), as requested.
b. You may distribute, publicly display, publicly perform,
or publicly digitally perform a Derivative Work
only under: (i) the terms of this License;
(ii) a later version of this License
with the same License Elements as this License;
(iii) either the Creative Commons (Unported) license
or a Creative Commons jurisdiction license
(either this or a later license version)
that contains the same License Elements as this License
(e.g. Attribution-ShareAlike 3.0 (Unported));
(iv) a Creative Commons Compatible License.
If you license the Derivative Work
under one of the licenses mentioned in (iv),
you must comply with the terms of that license.
If you license the Derivative Work
under the terms of any of the licenses
mentioned in (i), (ii) or (iii)
(the "Applicable License"),
you must comply with the terms of the Applicable License
generally and with the following provisions:
(I) You must include a copy of,
or the Uniform Resource Identifier for,
the Applicable License
with every copy or phonorecord of each Derivative Work
You distribute, publicly display, publicly perform,
or publicly digitally perform;
(II) You may not offer or impose any terms
on the Derivative Works
that restrict the terms of the Applicable License
or the ability of a recipient of the Work
to exercise the rights granted to that recipient
under the terms of the Applicable License;
(III) You must keep intact all notices
that refer to the Applicable License
and to the disclaimer of warranties;
and, (IV) when You distribute, publicly display, publicly perform,
or publicly digitally perform the Work,
You may not impose any technological measures
on the Derivative Work
that restrict the ability of a recipient
of the Derivative Work from You
to exercise the rights granted to that recipient
under the terms of the Applicable License.
This Section 4(b) applies to the Derivative Work
as incorporated in a Collective Work,
but this does not require the Collective Work
apart from the Derivative Work itself
to be made subject
to the terms of the Applicable License.
c. If You distribute, publicly display, publicly perform,
or publicly digitally perform the Work
(as defined in Section 1 above)
or any Derivative Works
(as defined in Section 1 above)
or Collective Works
(as defined in Section 1 above),
You must,
unless a request has been made pursuant to Section 4(a),
keep intact all copyright notices for the Work
and provide,
reasonable to the medium or means You are utilizing:
(i) the name of the Original Author
(or pseudonym, if applicable) if supplied,
and/or (ii) if the Original Author and/or Licensor designate
another party or parties
(e.g. a sponsor institute, publishing entity, journal)
for attribution ("Attribution Parties")
in Licensor's copyright notice, terms of service
or by other reasonable means,
the name of such party or parties;
the title of the Work if supplied;
to the extent reasonably practicable,
the Uniform Resource Identifier, if any,
that Licensor specifies to be associated with the Work,
unless such URI does not refer to the copyright notice
or licensing information for the Work;
and, consistent with Section 3(b)
in the case of a Derivative Work,
a credit identifying the use of the Work in the Derivative Work
(e.g., "French translation of the Work by Original Author,"
or "Screenplay based on original Work by Original Author").
The credit required by this Section 4(c) may be implemented
in any reasonable manner;
provided, however, that
in the case of a Derivative Work or Collective Work,
at a minimum such credit will appear,
if a credit for all contributing authors
of the Derivative Work or Collective Work appears,
then as part of these credits
and in a manner at least as prominent as the credits
for the other contributing authors.
For the avoidance of doubt,
You may only use the credit required by this Section
for the purpose of attribution
in the manner set out above
and, by exercising Your rights under this License,
You may not implicitly or explicitly assert or imply
any connection with, sponsorship or endorsement
by the Original Author, Licensor
and/or Attribution Parties, as appropriate,
of You or Your use of the Work,
without the separate, express prior written permission
of the Original Author, Licensor and/or Attribution Parties.
.
5. Representations, Warranties and Disclaimer
.
UNLESS OTHERWISE MUTUALLY AGREED
TO BY THE PARTIES IN WRITING,
LICENSOR OFFERS THE WORK AS-IS
AND ONLY TO THE EXTENT OF ANY RIGHTS
HELD IN THE LICENSED WORK BY THE LICENSOR.
THE LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES
OF ANY KIND CONCERNING THE WORK,
EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,
INCLUDING, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MARKETABILITY, MERCHANTIBILITY,
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT,
OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY,
OR THE PRESENCE OF ABSENCE OF ERRORS,
WHETHER OR NOT DISCOVERABLE.
SOME JURISDICTIONS DO NOT ALLOW
THE EXCLUSION OF IMPLIED WARRANTIES,
SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
.
6. Limitation on Liability.
EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
IN NO EVENT WILL LICENSOR BE LIABLE TO YOU
ON ANY LEGAL THEORY
FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE
OR EXEMPLARY DAMAGES
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK,
EVEN IF LICENSOR HAS BEEN ADVISED
OF THE POSSIBILITY OF SUCH DAMAGES.
.
7. Termination
.
a. This License and the rights granted hereunder
will terminate automatically upon any breach by You
of the terms of this License.
Individuals or entities
who have received Derivative Works or Collective Works
from You under this License,
however, will not have their licenses terminated
provided such individuals or entities remain
in full compliance with those licenses.
Sections 1, 2, 5, 6, 7, and 8 will survive
any termination of this License.
b. Subject to the above terms and conditions,
the license granted here is perpetual
(for the duration of the applicable copyright in the Work).
Notwithstanding the above,
Licensor reserves the right to release the Work
under different license terms
or to stop distributing the Work
at any time;
provided, however that any such election will not serve
to withdraw this License
(or any other license that has been, or is required to be, granted
under the terms of this License),
and this License will continue in full force and effect
unless terminated as stated above.
.
8. Miscellaneous
.
a. Each time You distribute or publicly digitally perform
the Work (as defined in Section 1 above)
or a Collective Work (as defined in Section 1 above),
the Licensor offers to the recipient a license to the Work
on the same terms and conditions
as the license granted to You under this License.
b. Each time You distribute
or publicly digitally perform a Derivative Work,
Licensor offers to the recipient
a license to the original Work
on the same terms and conditions
as the license granted to You under this License.
c. If any provision of this License is invalid
or unenforceable under applicable law,
it shall not affect the validity or enforceability
of the remainder of the terms of this License,
and without further action
by the parties to this agreement,
such provision shall be reformed
to the minimum extent necessary
to make such provision valid and enforceable.
d. No term or provision of this License shall be deemed waived
and no breach consented to
unless such waiver or consent shall be in writing
and signed by the party
to be charged with such waiver or consent.
e. This License constitutes the entire agreement between the parties
with respect to the Work licensed here.
There are no understandings, agreements or representations
with respect to the Work not specified here.
Licensor shall not be bound by any additional provisions
that may appear in any communication from You.
This License may not be modified
without the mutual written agreement of the Licensor and You.
License: CC-BY-SA-4.0
Creative Commons Attribution-ShareAlike 4.0 International
Public License
.
By exercising the Licensed Rights (defined below),
You accept and agree to be bound by the terms and conditions
of this Creative Commons Attribution-ShareAlike 4.0 International
Public License ("Public License").
To the extent this Public License may be interpreted as a contract,
You are granted the Licensed Rights
in consideration of Your acceptance of these terms and conditions,
and the Licensor grants You such rights
in consideration of benefits the Licensor receives
from making the Licensed Material available
under these terms and conditions.
.
Section 1 – Definitions.
.
a. Adapted Material means material
subject to Copyright and Similar Rights
that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated,
altered, arranged, transformed,
or otherwise modified in a manner requiring permission
under the Copyright and Similar Rights held by the Licensor.
For purposes of this Public License,
where the Licensed Material is a musical work,
performance, or sound recording,
Adapted Material is always produced
where the Licensed Material is synched
in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material
in accordance with the terms and conditions of this Public License.
c. BY-SA Compatible License means a license
listed at <https://creativecommons.org/compatiblelicenses>,
approved by Creative Commons
as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright
and/or similar rights closely related to copyright
including, without limitation,
performance, broadcast, sound recording,
and Sui Generis Database Rights,
without regard to how the rights are labeled or categorized.
For purposes of this Public License,
the rights specified in Section 2(b)(1)-(2)
are not Copyright and Similar Rights.
e. Effective Technological Measures means those measures
that, in the absence of proper authority, may not be circumvented
under laws fulfilling obligations
under Article 11 of the WIPO Copyright Treaty
adopted on December 20, 1996,
and/or similar international agreements.
f. Exceptions and Limitations means fair use, fair dealing,
and/or any other exception or limitation
to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
g. License Elements means the license attributes
listed in the name of a Creative Commons Public License.
The License Elements of this Public License are
Attribution and ShareAlike.
h. Licensed Material means the artistic or literary work,
database, or other material
to which the Licensor applied this Public License.
i. Licensed Rights means the rights granted to You subject
to the terms and conditions of this Public License,
which are limited to all Copyright and Similar Rights
that apply to Your use of the Licensed Material
and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies)
granting rights under this Public License.
k. Share means to provide material to the public
by any means or process
that requires permission under the Licensed Rights,
such as reproduction, public display, public performance,
distribution, dissemination, communication, or importation,
and to make material available to the public
including in ways that members of the public may access
the material
from a place and at a time individually chosen by them.
l. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament
and of the Council of 11 March 1996
on the legal protection of databases,
as amended and/or succeeded,
as well as other essentially equivalent rights
anywhere in the world.
m. You means the individual or entity
exercising the Licensed Rights under this Public License.
Your has a corresponding meaning.
.
Section 2 – Scope.
.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You
a worldwide, royalty-free, non-sublicensable,
non-exclusive, irrevocable license
to exercise the Licensed Rights in the Licensed Material to:
A. reproduce and Share the Licensed Material,
in whole or in part; and
B. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations.
For the avoidance of doubt,
where Exceptions and Limitations apply to Your use,
this Public License does not apply,
and You do not need to comply
with its terms and conditions.
3. Term.
The term of this Public License is specified in Section 6(a).
4. Media and formats; technical modifications allowed.
The Licensor authorizes You to exercise the Licensed Rights
in all media and formats
whether now known or hereafter created,
and to make technical modifications necessary to do so.
The Licensor waives and/or agrees not to assert
any right or authority
to forbid You from making technical modifications
necessary to exercise the Licensed Rights,
including technical modifications necessary
to circumvent Effective Technological Measures.
For purposes of this Public License,
simply making modifications authorized by this Section 2(a)(4)
never produces Adapted Material.
5. Downstream recipients.
A. Offer from the Licensor – Licensed Material.
Every recipient of the Licensed Material
automatically receives an offer from the Licensor
to exercise the Licensed Rights
under the terms and conditions of this Public License.
B. Additional offer from the Licensor – Adapted Material.
Every recipient of Adapted Material from You
automatically receives an offer from the Licensor
to exercise the Licensed Rights in the Adapted Material
under the conditions of the Adapter’s License You apply.
C. No downstream restrictions.
You may not offer or impose
any additional or different terms or conditions on,
or apply any Effective Technological Measures to,
the Licensed Material
if doing so restricts exercise of the Licensed Rights
by any recipient of the Licensed Material.
6. No endorsement.
Nothing in this Public License constitutes
or may be construed
as permission to assert or imply
that You are, or that Your use of the Licensed Material is,
connected with, or sponsored, endorsed,
or granted official status by,
the Licensor or others designated to receive attribution
as provided in Section 3(a)(1)(A)(i).
.
b. Other rights.
1. Moral rights, such as the right of integrity,
are not licensed under this Public License,
nor are publicity, privacy,
and/or other similar personality rights;
however, to the extent possible,
the Licensor waives
and/or agrees not to assert
any such rights held by the Licensor
to the limited extent necessary
to allow You to exercise the Licensed Rights,
but not otherwise.
2. Patent and trademark rights are not licensed
under this Public License.
3. To the extent possible,
the Licensor waives any right
to collect royalties from You
for the exercise of the Licensed Rights,
whether directly or through a collecting society
under any voluntary or waivable
statutory or compulsory licensing scheme.
In all other cases
the Licensor expressly reserves any right
to collect such royalties.
.
Section 3 – License Conditions.
.
Your exercise of the Licensed Rights
is expressly made subject to the following conditions.
.
a. Attribution.
1. If You Share the Licensed Material
(including in modified form),
You must:
A. retain the following
if it is supplied by the Licensor with the Licensed Material:
i. identification of the creator(s) of the Licensed Material
and any others designated to receive attribution,
in any reasonable manner requested by the Licensor
(including by pseudonym if designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of warranties;
v. a URI or hyperlink to the Licensed Material
to the extent reasonably practicable;
B. indicate if You modified the Licensed Material
and retain an indication of any previous modifications; and
C. indicate the Licensed Material is licensed
under this Public License,
and include the text of, or the URI or hyperlink to,
this Public License.
2. You may satisfy the conditions in Section 3(a)(1)
in any reasonable manner
based on the medium, means, and context
in which You Share the Licensed Material.
For example,
it may be reasonable to satisfy the conditions
by providing a URI or hyperlink to a resource
that includes the required information.
3. If requested by the Licensor,
You must remove any of the information
required by Section 3(a)(1)(A)
to the extent reasonably practicable.
b. ShareAlike.
In addition to the conditions in Section 3(a),
if You Share Adapted Material You produce,
the following conditions also apply.
1. The Adapter’s License You apply
must be a Creative Commons license
with the same License Elements,
this version or later,
or a BY-SA Compatible License.
2. You must include
the text of, or the URI or hyperlink to,
the Adapter's License You apply.
You may satisfy this condition
in any reasonable manner
based on the medium, means, and context
in which You Share Adapted Material.
3. You may not offer or impose
any additional or different terms or conditions on,
or apply any Effective Technological Measures to,
Adapted Material
that restrict exercise of the rights granted
under the Adapter's License You apply.
.
Section 4 – Sui Generis Database Rights.
.
Where the Licensed Rights include Sui Generis Database Rights
that apply to Your use of the Licensed Material:
.
a. for the avoidance of doubt,
Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share
all or a substantial portion of the contents of the database;
b. if You include all or a substantial portion of
the database contents in a database
in which You have Sui Generis Database Rights,
then the database
in which You have Sui Generis Database Rights
(but not its individual contents)
is Adapted Material,
including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a)
if You Share all or a substantial portion
of the contents of the database.
.
For the avoidance of doubt,
this Section 4 supplements and does not replace
Your obligations under this Public License
where the Licensed Rights include other Copyright and Similar Rights.
.
Section 5 – Disclaimer of Warranties and Limitation of Liability.
.
a. Unless otherwise separately undertaken by the Licensor,
to the extent possible,
the Licensor offers the Licensed Material as-is and as-available,
and makes no representations or warranties
of any kind concerning the Licensed Material,
whether express, implied, statutory, or other.
This includes, without limitation,
warranties of title, merchantability,
fitness for a particular purpose, non-infringement,
absence of latent or other defects, accuracy,
or the presence or absence of errors,
whether or not known or discoverable.
Where disclaimers of warranties are not allowed
in full or in part,
this disclaimer may not apply to You.
b. To the extent possible,
in no event will the Licensor be liable to You
on any legal theory
(including, without limitation, negligence)
or otherwise for any direct, special,
indirect, incidental, consequential, punitive, exemplary,
or other losses, costs, expenses, or damages
arising out of this Public License
or use of the Licensed Material,
even if the Licensor has been advised
of the possibility of such losses, costs,
expenses, or damages.
Where a limitation of liability is not allowed
in full or in part,
this limitation may not apply to You.
c. The disclaimer of warranties
and limitation of liability provided above
shall be interpreted in a manner that,
to the extent possible,
most closely approximates an absolute disclaimer
and waiver of all liability.
.
Section 6 – Term and Termination.
.
a. This Public License applies
for the term of the Copyright
and Similar Rights licensed here.
However, if You fail to comply with this Public License,
then Your rights under this Public License terminate
automatically.
b. Where Your right to use the Licensed Material has terminated
under Section 6(a), it reinstates:
1. automatically as of the date the violation is cured,
provided it is cured within 30 days
of Your discovery of the violation; or
2. upon express reinstatement by the Licensor.
c. For the avoidance of doubt,
this Section 6(b) does not affect
any right the Licensor may have to seek remedies
for Your violations of this Public License.
d. For the avoidance of doubt,
the Licensor may also offer the Licensed Material
under separate terms or conditions
or stop distributing the Licensed Material at any time;
however, doing so will not terminate this Public License.
e. Sections 1, 5, 6, 7, and 8 survive termination
of this Public License.
.
Section 7 – Other Terms and Conditions.
.
a. The Licensor shall not be bound
by any additional or different terms or conditions
communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements
regarding the Licensed Material not stated herein
are separate from and independent of the terms and conditions
of this Public License.
.
Section 8 – Interpretation.
.
a. For the avoidance of doubt,
this Public License does not, and shall not be interpreted to,
reduce, limit, restrict, or impose conditions on
any use of the Licensed Material
that could lawfully be made without permission
under this Public License.
b. To the extent possible,
if any provision of this Public License is deemed unenforceable,
it shall be automatically reformed
to the minimum extent necessary to make it enforceable.
If the provision cannot be reformed,
it shall be severed from this Public License
without affecting the enforceability
of the remaining terms and conditions.
c. No term or condition of this Public License will be waived
and no failure to comply consented to
unless expressly agreed to by the Licensor.
d. Nothing in this Public License constitutes
or may be interpreted as a limitation upon, or waiver of,
any privileges and immunities that apply to the Licensor or You,
including from the legal processes
of any jurisdiction or authority.
License: Expat
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: FSFAP
Copying and distribution of this file,
with or without modification,
are permitted in any medium without royalty
provided the copyright notice and this notice are preserved.
This file is offered as-is, without any warranty.
License: FSFAP~noGPL
This file can be copied and used freely without restrictions.
It can be used in projects which are not available
under the GNU General Public License
but which still want to provide support
for the GNU gettext functionality.
Please note that the actual code of GNU gettext is covered
by the GNU General Public License
and is *not* in the public domain.
License: FSFUL~Lehtinen~configuration
This configuration file is free software;
Johannes Lehtinen gives unlimited permission
to copy, distribute and modify it.
License: FSFUL~Lehtinen~configure.ac
This configure.ac script is free software;
Johannes Lehtinen gives unlimited permission
to copy, distribute and modify it.
License: FSFUL~Lehtinen~file
This file is free software;
Johannes Lehtinen gives unlimited permission
to copy, distribute and modify it.
License: FSFUL~Lehtinen~Makefile
This Makefile is free software;
Johannes Lehtinen gives unlimited permission
to copy, distribute and modify it.
License: FSFUL~Lehtinen~shell
This shell script is free software;
Johannes Lehtinen gives unlimited permission
to copy, distribute and modify it.
License: GPL-2
License-Reference: /usr/share/common-licenses/GPL-2
License: GPL-2+
License-Reference: /usr/share/common-licenses/GPL-2
License: GPL-3+
License-Reference: /usr/share/common-licenses/GPL-3
License: ISC~minimal-disclaimer
Permission to use, copy, modify, and distribute
this software and its documentation
for any purpose
is hereby granted without fee,
provided that this copyright and permissions notice appear
in all copies and derivatives.
.
This software is supplied "as is"
without express or implied warranty.
License: Kazlib
All rights are reserved by the author,
with the following exceptions:
Permission is granted
to freely reproduce and distribute this software,
possibly in exchange for a fee,
provided that this copyright notice appears intact.
Permission is also granted to adapt this software
to produce derivative works,
as long as the modified versions carry
this copyright notice and additional notices
stating that the work has been modified.
This source code may be translated into executable form
and incorporated into proprietary software;
there is no requirement for such software to contain
a copyright notice related to this source.
License: LGPL-2+
License-Reference: /usr/share/common-licenses/LGPL-2
License: LGPL-2.1+
License-Reference: /usr/share/common-licenses/LGPL-2.1
License: LGPL-3+
License-Reference: /usr/share/common-licenses/LGPL-3
License: MPL-1.1
License-Reference: /usr/share/common-licenses/MPL-1.1
License: NTP~disclaimer
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 holders not be used
in advertising or publicity pertaining to distribution of the software
without specific, written prior permission.
The copyright holders make 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.
License: NTP~disclaimer~FarsiWeb
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 Sharif FarsiWeb, Inc. not be used
in advertising or publicity pertaining to distribution of the software
without specific, written prior permission.
Sharif FarsiWeb, Inc. makes no representations
about the suitability of this software for any purpose.
It is provided "as is" without express or implied warranty.
.
SHARIF FARSIWEB, INC. DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
IN NO EVENT SHALL KEITH PACKARD 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.
License: PHP-3.01
Redistribution and use in source and binary forms,
with or without modification,
is 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. The name "PHP" must not be used
to endorse or promote products derived from this software
without prior written permission.
For written permission, please contact <group@php.net>.
4. Products derived from this software may not be called "PHP",
nor may "PHP" appear in their name,
without prior written permission from <group@php.net>.
You may indicate
that your software works in conjunction with PHP
by saying "Foo for PHP"
instead of calling it "PHP Foo" or "phpfoo"
5. The PHP Group may publish
revised and/or new versions of the license
from time to time.
Each version will be given a distinguishing version number.
Once covered code has been published
under a particular version of the license,
you may always continue to use it
under the terms of that version.
You may also choose to use such covered code
under the terms of any subsequent version of the license
published by the PHP Group.
No one other than the PHP Group has the right
to modify the terms applicable to covered code created
under this License.
6. Redistributions of any form whatsoever must retain
the following acknowledgment:
"This product includes PHP software,
freely available from <http://www.php.net/software/>".
.
THIS SOFTWARE IS PROVIDED
BY THE PHP DEVELOPMENT TEAM "AS IS"
AND ANY EXPRESSED 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 PHP DEVELOPMENT TEAM
OR ITS CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
License: X11
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 X CONSORTIUM 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 X Consortium 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 X Consortium.
|