1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Firebird
Upstream-Contact: https://www.firebirdsql.org/
Files-Excluded:
.editorconfig
.gitignore
*/.gitignore
.github
.vscode
appveyor.yml
builds/install/arch-specific/linux/firebird.init.d.suse.in
builds/install/arch-specific/solaris
builds/install/arch-specific/solx86gcc/CS/postinstall.in
builds/install/arch-specific/solx86gcc/CS/postremove.in
builds/install/arch-specific/solx86gcc/CS/preinstall.in
builds/install/arch-specific/win32/.gitignore
builds/make.new/config/.gitignore
builds/make.new/config/config.guess
builds/make.new/config/config.h.in
builds/make.new/config/config.sub
builds/make.new/config/install-sh
builds/make.new/config/ltmain.sh
builds/misc/help.gbak
builds/misc/metadata.gbak
builds/misc/msg.gbak
builds/win32/.gitignore
configure
doc/*.pdf
doc/README.build.mingw.html
doc/README.build.msvc.html
doc/README.build.posix.html
doc/README.makefiles
doc/README.plugins.html
doc/README.providers.html
doc/README.SecureRemotePassword.html
doc/README.wire.compression.html
doc/sql.extensions/README.mapping.html
doc/Using_OO_API.html
extern/btyacc/.gitignore
extern/btyacc/test/ftp.y
extern/cloop/.gitignore
extern/editline
extern/icu
extern/libtommath
extern/SfIO
extern/zlib
src/include/firebird/IdlFbInterfaces.h
src/include/firebird/impl/boost
src/include/gen/autoconfig.auto
src/include/gen/autoconfig.h.in
src/include/gen/ids.h
src/include/gen/parse.h
src/msgs/templates.sql
src/utilities/fbcpl
src/utilities/install/registry.h
Comment:
What is removed from upstream source and why
============================================
* Bundled libraries
.
The following libraries are supplied by upstream in their source
tarball. These are present in Debian and using the Debian packages is
better because:
- improved security: no need to watch the bundled libraries for
security problems -- Debian Security already handles that for the
Debian packages
- get fixes and improvements automatically when the Debian library
package is upgraded
- the source tarball decreases in size from 13MB to 7.5MB (42% decrease)
Removed library sources:
- extern/editline
- src/include/firebird/impl/boost
- extern/libtommath
.
* Removed sources with non-free/missing licensing
.
The following files are removed as they contain only copyright
information without any license allowing their distribution. Luckily,
they are not needed when building on Debiian.
.
- builds/install/arch-specific/solaris/
- doc/README.makefiles
- src/msgs/templates.sql
- extern/SfIO/
- src/utilities/install/registry.h
.
* Generated files without source
.
These files are generated from sources not included in the upstream tarball.
.
- doc/Firebird-3-QuickStart.pdf
- doc/ReleaseNotes.pdf
- doc/README.SecureRemotePassword.html
.
* Other generated files and files with possible missing licensing that are
needed only on Windows
.
- src/utilities/fbcpl/*
.
* Generated files and other cruft.
.
Repackaging is a good opportunity to also remove the following files, which
are generated during the build:
.
- configure
- builds/make.new/config/config.guess
- builds/make.new/config/config.h.in
- builds/make.new/config/config.sub
- builds/make.new/config/install-sh
- builds/make.new/config/ltmain.sh
.
Also, the following files are just cruft and are present in the upstream
tarball by mistake:
- .cvsignore (in several directories)
.
These aren't tipicaly present in released tarballs, but are in upstream Git
and therefore in snapshot tarballs made from the release branch
.editorconfig
.gitignore (in several directories)
.github
.vscode
appveyor.yml
Files:
debian/*
Copyright: © 2006, 2007, 2008, 2009, 2010, 2014, 2017, 2018
Damyan Ivanov <dmn@debian.org>
License: other
Permission is granted to use this work, with or without modifications,
provided that this notice is retained. If we meet some day, and you think this
stuff is worth it, you can buy me a beer in return.
Files:
autogen.sh
binreloc.m4
builds/cmake/*
builds/install/arch-specific/aix/classic/rpmfiles.txt.in
builds/install/arch-specific/aix/classic/rpmheader.txt.in
builds/install/arch-specific/aix/misc/aixLibrary.sh.in
builds/install/arch-specific/aix/misc/firebird.init.d.aix.in
builds/install/arch-specific/aix/misc/rc.config.firebird.aix.in
builds/install/arch-specific/android/AfterUntar.sh
builds/install/arch-specific/android/BuildPackage.sh
builds/install/arch-specific/darwin/*
builds/install/arch-specific/hpux/classic/firebirdCS.psf.in
builds/install/arch-specific/hpux/misc/changedbaPassword.sh.in
builds/install/arch-specific/hpux/misc/rc.config.firebird.hpux.in
builds/install/arch-specific/hpux/super/postInstall.sh.in
builds/install/arch-specific/hpux/super/postUninstall.sh.in
builds/install/arch-specific/hpux/super/preInstall.sh.in
builds/install/arch-specific/hpux/super/preUninstall.sh.in
builds/install/arch-specific/linux/firebird-classic.service.in
builds/install/arch-specific/linux/firebird-classic.socket.in
builds/install/arch-specific/linux/firebird.init.d.debian.in
builds/install/arch-specific/linux/firebird.init.d.generic.in
builds/install/arch-specific/linux/firebird.init.d.gentoo.in
builds/install/arch-specific/linux/firebird.init.d.mandrake.in
builds/install/arch-specific/linux/firebird.init.d.slackware.in
builds/install/arch-specific/linux/firebird-superserver.service.in
builds/install/arch-specific/linux/firebird.xinetd.in
builds/install/arch-specific/linux/rc.config.firebird.in
builds/install/arch-specific/linux/README
builds/install/arch-specific/mingw/*
builds/install/arch-specific/solx86gcc/CS/pkginfo.in
builds/install/arch-specific/solx86gcc/CS/prototype.in
builds/install/arch-specific/solx86gcc/LIBGCC/pkginfolg.in
builds/install/arch-specific/solx86gcc/LIBGCC/prototypelg.in
builds/install/arch-specific/solx86/Makefile.in
builds/install/arch-specific/win32/After_Installation.url
builds/install/arch-specific/win32/ba/*
builds/install/arch-specific/win32/custom_messages.inc
builds/install/arch-specific/win32/cz/*
builds/install/arch-specific/win32/de/*
builds/install/arch-specific/win32/es/*
builds/install/arch-specific/win32/firebird_install_logo1.bmp
builds/install/arch-specific/win32/firebirdsql.org.url
builds/install/arch-specific/win32/fr/*
builds/install/arch-specific/win32/hu/*
builds/install/arch-specific/win32/i18n_readme.txt
builds/install/arch-specific/win32/installation_readme.txt
builds/install/arch-specific/win32/installation_scripted.txt
builds/install/arch-specific/win32/install_service.bat
builds/install/arch-specific/win32/it/*
builds/install/arch-specific/win32/pl/*
builds/install/arch-specific/win32/pt/*
builds/install/arch-specific/win32/readme_snapshot.txt
builds/install/arch-specific/win32/Readme.txt
builds/install/arch-specific/win32/ru/*
builds/install/arch-specific/win32/si/*
builds/install/arch-specific/win32/strip_comments.sed
builds/install/arch-specific/win32/test_installer/fbit-functions.psm1
builds/install/arch-specific/win32/test_installer/fbit.ps1
builds/install/arch-specific/win32/uninstall_service.bat
builds/install/misc/databases.conf.in
builds/install/misc/fbintl.conf
builds/install/misc/firebird.conf.in
builds/install/misc/firebird.init.d.Solaris.in
builds/install/misc/IDPLicense.txt
builds/install/misc/IPLicense.txt
builds/install/misc/plugins.conf
builds/mac_os_x/CS/*
builds/posix/preupgrade-script
builds/posix/make.android.arm64
builds/posix/make.android.arme
builds/posix/make.android.x86
builds/posix/make.android.x86_64
builds/posix/make.shared.variables
builds/posix/prefix.example
builds/posix/prefix.solaris
builds/posix/prefix.solaris-64gcc
builds/win32/adjust_vc7_files.cmd
builds/win32/clean_all.bat
builds/win32/compile.bat
builds/win32/create_msgs.bat
builds/win32/defs/fbrmclib.def
builds/win32/make_all.bat
builds/win32/make_boot.bat
builds/win32/make_examples.bat
builds/win32/make_icu.bat
builds/win32/msvc10/*
builds/win32/msvc12/*
builds/win32/msvc14/*
builds/win32/msvc15/*
builds/win32/msvc7/*
builds/win32/msvc8/*
builds/win32/msvc9/*
builds/win32/parse.bat
builds/win32/preprocess.bat
builds/win32/run_all.bat
builds/win32/set_build_target.bat
builds/win32/setenvvar.bat
ChangeLog
CMakeLists.txt
configure.ac
doc/Firebird_conf.txt
doc/*.html
doc/license/IDPL.txt
doc/license/README.license.usage.txt
doc/README.*
doc/sql.extensions/*
doc/*.txt
doc/WhatsNew
examples/build_win32/*.bat
examples/CMakeLists.txt
examples/dbcrypt/ReadMe.txt
examples/empbuild/*.inp
extern/cloop/cloop.sln
extern/cloop/Makefile
extern/cloop/src/cloop/cloop.vcxproj
extern/cloop/src/cloop/cloop.vcxproj.filters
extern/cloop/src/tests/test1/CalcCApi.c
extern/cloop/src/tests/test1/CalcCApi.h
extern/cloop/src/tests/test1/CalcCppApi.h
extern/cloop/src/tests/test1/CalcPascalApi.implementation.pas
extern/cloop/src/tests/test1/CalcPascalApi.interface.pas
extern/cloop/src/tests/test1/CalcPascalApi.pas
extern/cloop/src/tests/test1/test1-c-dll.vcxproj
extern/cloop/src/tests/test1/test1-c-dll.vcxproj.filters
extern/cloop/src/tests/test1/test1-c-exe.vcxproj
extern/cloop/src/tests/test1/test1-c-exe.vcxproj.filters
extern/cloop/src/tests/test1/test1-cpp-dll.vcxproj
extern/cloop/src/tests/test1/test1-cpp-dll.vcxproj.filters
extern/cloop/src/tests/test1/test1-cpp-exe.vcxproj
extern/cloop/src/tests/test1/test1-cpp-exe.vcxproj.filters
lang_helpers/gds.h
lang_helpers/README.txt
Makefile.in
README.md
src/auth/SecureRemotePassword/Message.h
src/auth/SecureRemotePassword/misc/prime.cpp
src/auth/SecureRemotePassword/misc/test.sh
src/auth/SecureRemotePassword/misc/test_srp.cpp
src/auth/SecureRemotePassword/srp.cpp
src/auth/SecureRemotePassword/srp.h
src/CMakeLists.txt
src/common/classes/misc/test.sh
src/common/fb_exception.cpp
src/common/os/win32/mod_loader.cpp
src/common/os/win32/path_utils.cpp
src/common/sha2/ChangeLog
src/dsql/btyacc_fb.ske
src/gpre/CMakeLists.txt
src/include/cross/android.arm64
src/include/cross/android.arme
src/include/cross/android.x86
src/include/cross/android.x86_64
src/include/fb_blk.h
src/include/fb_macros.h
src/include/gen/autoconfig_msvc.h
src/include/gen/files.txt
src/include/gen/Firebird.pas
src/include/gen/README.txt
src/include/ibase.h
src/include/iberror.h
src/include/old_fb_blk.h
src/intl/charsets/cs_koi8r.h
src/intl/charsets/cs_koi8u.h
src/intl/charsets/cs_w1258.h
src/intl/moved_files.txt
src/jrd/build_no.h
src/jrd/intl_builtin.cpp
src/misc/copy-boost.sh
src/misc/gds_header.txt
src/misc/headers.sed
src/misc/ibase_header.txt
src/misc/intl.sql
src/misc/makeHeader.cpp
src/misc/ods.txt
src/misc/pascal/fb_get_master_interface.pas
src/misc/pascal/Pascal.Constants.awk
src/misc/pascal/Pascal.implementation.pas
src/misc/pascal/Pascal.interface.pas
src/misc/upgrade/recovering_build.txt
src/misc/upgrade/v2/ib_udf2_params.txt
src/misc/upgrade/v2/ib_udf_params.txt
src/misc/upgrade/v2/security_database.txt
src/misc/upgrade/v3.0/security_database.txt
src/misc/writeBuildNum.sh
src/msgs/facilities2.sql
src/msgs/history2.sql
src/msgs/locales.sql
src/msgs/messages2.sql
src/msgs/msg.sql
src/msgs/sqlstates.sql
src/msgs/symbols2.sql
src/msgs/system_errors2.sql
src/msgs/transmsgs.de_DE2.sql
src/msgs/transmsgs.fr_FR2.sql
src/plugins/udr_engine/udr_engine.conf
src/remote/CMakeLists.txt
src/remote/server/os/win32/caution.ico
src/remote/server/os/win32/server.ico
src/remote/server/os/win32/window_proto.h
src/utilities/CMakeLists.txt
src/utilities/create_db.cpp
src/utilities/gsec/gsec_proto.h
src/utilities/ntrace/fbtrace.conf
Copyright: none
License: public-domain
(assumed)
These files lack copyright/licensing information. According to
doc/license/README.license.usage.txt, they should be considered Public
Domain:
.
Every non-binary file that exists in the SVN tree, should have a header
section which describes the license this code is released under. If a file
contains no header, it means that this code is freeware and nobody owns the
appropriate copyrights.
Files:
src/common/sha.cpp
Copyright: none
License: public-domain
NIST Secure Hash Algorithm
heavily modified by Uwe Hollerbach <uh@alumni.caltech edu>
from Peter C. Gutmann's implementation as found in
Applied Cryptography by Bruce Schneier
This code is in the public domain
Files:
src/common/sha2/sha2.cpp
src/common/sha2/sha2.h
Copyright: 2005, 2007, Olivier Gay <olivier.gay@a3.epfl.ch>
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:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the project nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
Updated for use in Firebird by Tony Whyman <tony@mwasoftware.co.uk>
.
THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.
Files:
src/yvalve/config/os/posix/binreloc.c
src/yvalve/config/os/posix/binreloc.h
Copyright: none
License: public-domain
BinReloc - a library for creating relocatable executables
Written by: Hongli Lai <h.lai@chello.nl>
http://autopackage.org/
.
This source code is public domain. You can relicense this code
under whatever license you want.
.
See http://autopackage.org/docs/binreloc/ for
more information and how to use this.
Files:
builds/posix/darwin.defaults
builds/posix/firebird.vers
builds/posix/make.platform.solaris.examples
builds/posix/postfix.darwin
builds/posix/prefix.aix_powerpc
builds/posix/prefix.aix_powerpc_xlc
builds/posix/prefix.darwin_aarch64
builds/posix/prefix.darwin_i386
builds/posix/prefix.darwin_powerpc
builds/posix/prefix.darwin_ppc64
builds/posix/prefix.darwin_x86_64
builds/posix/prefix.freebsd
builds/posix/prefix.freebsd_amd64
builds/posix/prefix.hpux
builds/posix/prefix.hpux_aCC
builds/posix/prefix.hpux_ia64
builds/posix/prefix.linux
builds/posix/prefix.linux_amd64
builds/posix/prefix.linux_arm
builds/posix/prefix.linux_arm64
builds/posix/prefix.linux_generic
builds/posix/prefix.linux_ia64
builds/posix/prefix.linux_mips
builds/posix/prefix.linux_mipsel
builds/posix/prefix.linux_powerpc
builds/posix/prefix.linux_powerpc64
builds/posix/prefix.linux_powerpc64el
builds/posix/prefix.linux_s390x
builds/posix/prefix.linux_sparc32
builds/posix/prefix.mingw
builds/posix/prefix.netbsd
builds/posix/prefix.solx86
builds/posix/prefix.solx86gcc
builds/posix/prefix.solx86gcc_64
builds/win32/defs/build.def
builds/win32/defs/burp32.def
builds/win32/defs/burp.def
builds/win32/defs/dsql.def
builds/win32/defs/fbclient_s.def
builds/win32/defs/firebird.def
builds/win32/defs/gds32.def
builds/win32/defs/ib_udf.def
builds/win32/defs/ib_util.def
builds/win32/defs/intl.def
builds/win32/defs/isql.def
builds/win32/defs/iutls.def
builds/win32/defs/jrd.def
builds/win32/defs/remote.def
builds/win32/defs/utls.def
examples/api/*
examples/dyn/dyn1.e
examples/dyn/dyn2.e
examples/dyn/dyn3.e
examples/dyn/dyn4.e
examples/dyn/dyn5.e
examples/dyn/dynfull.e
examples/empbuild/empbld.sql
examples/empbuild/empbuild.e
examples/empbuild/empddl.sql
examples/empbuild/empdml.sql
examples/empbuild/employe2.sql
examples/empbuild/indexoff.sql
examples/empbuild/indexon.sql
examples/empbuild/intlbld.e
examples/empbuild/intlbld.sql
examples/empbuild/intlddl.sql
examples/empbuild/intldml.sql
examples/functions.c
examples/include/align.h
examples/include/example.h
examples/interfaces/02.update.cpp
examples/readme
examples/stat/*
examples/udf/*
lang_helpers/gds_aix.f
lang_helpers/gds_codes.ftn
lang_helpers/gds_codes.pas
lang_helpers/gds_hp.f
lang_helpers/gds.hxx
lang_helpers/gdsold.h
lang_helpers/gds.pas
lang_helpers/gds_sun.f
lang_helpers/ib_util.pas
lang_helpers/perf.pas
src/alice/alice.cpp
src/alice/alice.h
src/alice/alice_meta.epp
src/alice/alice_meta.h
src/alice/alice_proto.h
src/alice/aliceswi.h
src/alice/exe.cpp
src/alice/exe_proto.h
src/alice/tdr.cpp
src/alice/tdr_proto.h
src/auth/SecDbCache.cpp
src/auth/SecDbCache.h
src/auth/SecurityDatabase/LegacyHash.h
src/auth/SecurityDatabase/LegacyManagement.epp
src/auth/SecurityDatabase/LegacyServer.cpp
src/auth/SecurityDatabase/LegacyServer.h
src/burp/backup.epp
src/burp/backu_proto.h
src/burp/burp.cpp
src/burp/burp.h
src/burp/burp_proto.h
src/burp/burpswi.h
src/burp/canonical.cpp
src/burp/canon_proto.h
src/burp/misc.cpp
src/burp/misc_proto.h
src/burp/mvol.cpp
src/burp/mvol_proto.h
src/burp/OdsDetection.epp
src/burp/OdsDetection.h
src/burp/resto_proto.h
src/burp/restore.epp
src/burp/split/spit.cpp
src/burp/split/spit.h
src/burp/std_desc.h
src/common/cdbtable.h
src/common/CharSet.cpp
src/common/classes/array.h
src/common/classes/BlrWriter.cpp
src/common/classes/BlrWriter.h
src/common/classes/InternalMessageBuffer.cpp
src/common/classes/NoThrowTimeStamp.cpp
src/common/classes/timestamp.cpp
src/common/common.h
src/common/config/dir_list.cpp
src/common/config/dir_list.h
src/common/cvt.cpp
src/common/dsc.cpp
src/common/dsc.h
src/common/dsc_proto.h
src/common/dsc_pub.h
src/common/dyntable.h
src/common/enc_proto.h
src/common/file_params.h
src/common/gdsassert.h
src/common/isc.cpp
src/common/isc_file.cpp
src/common/isc_f_proto.h
src/common/isc_proto.h
src/common/isc_s_proto.h
src/common/isc_sync.cpp
src/common/keywords.h
src/common/msg_encode.h
src/common/os/divorce.h
src/common/os/fbsyslog.h
src/common/os/isc_i_proto.h
src/common/os/posix/divorce.cpp
src/common/os/posix/fbsyslog.cpp
src/common/os/posix/isc_ipc.cpp
src/common/os/posix/SyncSignals.cpp
src/common/os/SyncSignals.h
src/common/os/win32/fbsyslog.cpp
src/common/os/win32/isc_ipc.cpp
src/common/prett_proto.h
src/common/pretty.cpp
src/common/sdl.cpp
src/common/sdl.h
src/common/sdl_proto.h
src/common/sdltable.h
src/common/security.cpp
src/common/security.h
src/common/TextType.cpp
src/common/ThreadData.cpp
src/common/ThreadData.h
src/common/ThreadStart.cpp
src/common/ThreadStart.h
src/common/xdr.cpp
src/common/xdr.h
src/common/xdr_proto.h
src/dbs/metadata.sql
src/dbs/security.sql
src/dsql/AggNodes.cpp
src/dsql/BlrDebugWriter.cpp
src/dsql/BlrDebugWriter.h
src/dsql/BoolNodes.cpp
src/dsql/chars.h
src/dsql/ddl.cpp
src/dsql/DdlNodes.epp
src/dsql/ddl_proto.h
src/dsql/DsqlCompilerScratch.cpp
src/dsql/DsqlCompilerScratch.h
src/dsql/dsql.cpp
src/dsql/DSqlDataTypeUtil.cpp
src/dsql/DSqlDataTypeUtil.h
src/dsql/dsql.h
src/dsql/dsql_proto.h
src/dsql/errd.cpp
src/dsql/errd_proto.h
src/dsql/ExprNodes.cpp
src/dsql/gen.cpp
src/dsql/gen_proto.h
src/dsql/make.cpp
src/dsql/make_proto.h
src/dsql/metd.epp
src/dsql/metd_proto.h
src/dsql/movd.cpp
src/dsql/movd_proto.h
src/dsql/parse.y
src/dsql/pass1.cpp
src/dsql/pass1_proto.h
src/dsql/sqlda.h
src/dsql/sqlda_pub.h
src/dsql/StmtNodes.cpp
src/dsql/sym.h
src/dsql/utld.cpp
src/dsql/utld_proto.h
src/dsql/Visitors.h
src/extlib/ib_udf2.sql
src/extlib/ib_udf.cpp
src/extlib/ib_udf.h
src/extlib/ib_udf.sql
src/extlib/ib_util.cpp
src/extlib/ib_util.h
src/gpre/boot/gpre_meta_boot.cpp
src/gpre/c_cxx.cpp
src/gpre/cmd.cpp
src/gpre/cmd_proto.h
src/gpre/cme.cpp
src/gpre/cme_proto.h
src/gpre/cmp.cpp
src/gpre/cmp_proto.h
src/gpre/exp.cpp
src/gpre/exp_proto.h
src/gpre/gpre.cpp
src/gpre/gpre.h
src/gpre/gpre_meta.h
src/gpre/gpre_proto.h
src/gpre/gpreswi.h
src/gpre/hsh.cpp
src/gpre/hsh.h
src/gpre/hsh_proto.h
src/gpre/int_cxx.cpp
src/gpre/jrdme_proto.h
src/gpre/jrdmet.cpp
src/gpre/lang_proto.h
src/gpre/languages/ada.cpp
src/gpre/languages/cob.cpp
src/gpre/languages/ftn.cpp
src/gpre/languages/pas.cpp
src/gpre/languages/rmc.cpp
src/gpre/movg.cpp
src/gpre/movg_proto.h
src/gpre/msc.cpp
src/gpre/msc_proto.h
src/gpre/obj_cxx.cpp
src/gpre/par.cpp
src/gpre/par_proto.h
src/gpre/parse.h
src/gpre/pat.cpp
src/gpre/pat.h
src/gpre/pat_proto.h
src/gpre/sqe.cpp
src/gpre/sqe_proto.h
src/gpre/sql.cpp
src/gpre/sql_proto.h
src/gpre/std/gpre_meta.epp
src/gpre/words.h
src/include/consts_pub.h
src/include/dyn_consts.h
src/include/gen/codetext.h
src/include/gen/iberror.h
src/include/gen/msg_facs.h
src/include/gen/msgs.h
src/include/gen/sql_code.h
src/include/gen/sql_state.h
src/include/memory_routines.h
src/intl/charsets/cs_437.h
src/intl/charsets/cs_737.h
src/intl/charsets/cs_775.h
src/intl/charsets/cs_850.h
src/intl/charsets/cs_852.h
src/intl/charsets/cs_857.h
src/intl/charsets/cs_858.h
src/intl/charsets/cs_860.h
src/intl/charsets/cs_861.h
src/intl/charsets/cs_862.h
src/intl/charsets/cs_863.h
src/intl/charsets/cs_864.h
src/intl/charsets/cs_865.h
src/intl/charsets/cs_866.h
src/intl/charsets/cs_869.h
src/intl/charsets/cs_big5.h
src/intl/charsets/cs_cyrl.h
src/intl/charsets/cs_gb2312.h
src/intl/charsets/cs_iso8859_13.h
src/intl/charsets/cs_iso8859_1.h
src/intl/charsets/cs_iso8859_2.h
src/intl/charsets/cs_iso8859_3.h
src/intl/charsets/cs_iso8859_4.h
src/intl/charsets/cs_iso8859_5.h
src/intl/charsets/cs_iso8859_6.h
src/intl/charsets/cs_iso8859_7.h
src/intl/charsets/cs_iso8859_8.h
src/intl/charsets/cs_iso8859_9.h
src/intl/charsets/cs_jis_0208_1990.h
src/intl/charsets/cs_ksc5601.h
src/intl/charsets/cs_next.h
src/intl/charsets/cs_sjis.h
src/intl/charsets/cs_w1250.h
src/intl/charsets/cs_w1251.h
src/intl/charsets/cs_w1252.h
src/intl/charsets/cs_w1253.h
src/intl/charsets/cs_w1254.h
src/intl/charsets/cs_w1255.h
src/intl/charsets/cs_w1256.h
src/intl/charsets/cs_w1257.h
src/intl/charsets.h
src/intl/collations/bl88591ca0.h
src/intl/collations/bl88591da0.h
src/intl/collations/bl88591de0.h
src/intl/collations/bl88591es0.h
src/intl/collations/bl88591fi0.h
src/intl/collations/bl88591is0.h
src/intl/collations/bl88591it0.h
src/intl/collations/bl88591nl0.h
src/intl/collations/bl88591no0.h
src/intl/collations/bl88591pt0.h
src/intl/collations/bl88591ptbr0.h
src/intl/collations/bl88591sv0.h
src/intl/collations/bl88591uk0.h
src/intl/collations/bl88591us0.h
src/intl/collations/blNEXTde0.h
src/intl/collations/blNEXTes0.h
src/intl/collations/blNEXTfr0.h
src/intl/collations/blNEXTit0.h
src/intl/collations/blNEXTus0.h
src/intl/collations/db437de0.h
src/intl/collations/db437es1.h
src/intl/collations/db437fi0.h
src/intl/collations/db437fr0.h
src/intl/collations/db437it0.h
src/intl/collations/db437nl0.h
src/intl/collations/db437sv0.h
src/intl/collations/db437uk0.h
src/intl/collations/db437us0.h
src/intl/collations/db850cf0.h
src/intl/collations/db850de0.h
src/intl/collations/db850es0.h
src/intl/collations/db850fr0.h
src/intl/collations/db850it1.h
src/intl/collations/db850nl0.h
src/intl/collations/db850pt0.h
src/intl/collations/db850sv1.h
src/intl/collations/db850uk0.h
src/intl/collations/db850us0.h
src/intl/collations/db852cz0.h
src/intl/collations/db852po0.h
src/intl/collations/db852sl0.h
src/intl/collations/db857tr0.h
src/intl/collations/db860pt0.h
src/intl/collations/db863cf1.h
src/intl/collations/db865da0.h
src/intl/collations/db865no0.h
src/intl/collations/db866ru0.h
src/intl/collations/pd437intl.h
src/intl/collations/pd437swedfin.h
src/intl/collations/pd852czech.h
src/intl/collations/pd852hundc.h
src/intl/collations/pd852polish.h
src/intl/collations/pd852slovene.h
src/intl/collations/pd861iceland.h
src/intl/collations/pd865nordan40.h
src/intl/collations/pd866cyrr.h
src/intl/collations/pw1250czech.h
src/intl/collations/pw1250hundc.h
src/intl/collations/pw1250hun.h
src/intl/collations/pw1250polish.h
src/intl/collations/pw1250slov.h
src/intl/collations/pw1251cyrr.h
src/intl/collations/pw1252i850.h
src/intl/collations/pw1252intl.h
src/intl/collations/pw1252nor4.h
src/intl/collations/pw1252ptbr.h
src/intl/collations/pw1252span.h
src/intl/collations/pw1252swfn.h
src/intl/collations/pw1253greek1.h
src/intl/collations/pw1254turk.h
src/intl/collations/win1250bsba.h
src/intl/collations/win_cz_ci_ai.h
src/intl/collations/win_cz.h
src/intl/collations/xx1251_ua.h
src/intl/collations/xx885913lt.h
src/intl/collations/xx88592czech.h
src/intl/collations/xx88592hun.h
src/intl/collations/xx88592plk.h
src/intl/conversions/tx437_865.h
src/intl/conversions/tx437_lat1.h
src/intl/conversions/tx865_lat1.h
src/intl/country_codes.h
src/intl/cs_big5.cpp
src/intl/cs_gb2312.cpp
src/intl/cs_jis.cpp
src/intl/cs_ksc.cpp
src/intl/cs_narrow.cpp
src/intl/cs_unicode_fss.cpp
src/intl/cs_unicode_ucs2.cpp
src/intl/cv_big5.cpp
src/intl/cv_big5.h
src/intl/cv_gb2312.cpp
src/intl/cv_gb2312.h
src/intl/cv_jis.cpp
src/intl/cv_jis.h
src/intl/cv_ksc.cpp
src/intl/cv_ksc.h
src/intl/cv_narrow.cpp
src/intl/cv_narrow.h
src/intl/cv_unicode_fss.cpp
src/intl/cv_unicode_fss.h
src/intl/kanji.cpp
src/intl/kanji.h
src/intl/kanji_proto.h
src/intl/lc_ascii.cpp
src/intl/lc_ascii.h
src/intl/lc_big5.cpp
src/intl/lc_big5.h
src/intl/lc_dos.cpp
src/intl/lc_dos.h
src/intl/lc_gb2312.cpp
src/intl/lc_iso8859_13.cpp
src/intl/lc_iso8859_1.cpp
src/intl/lc_iso8859_2.cpp
src/intl/lc_jis.cpp
src/intl/lc_ksc.cpp
src/intl/lc_narrow.cpp
src/intl/lc_narrow.h
src/intl/lc_unicode_ucs2.cpp
src/intl/ldcommon.h
src/intl/ld.cpp
src/intl/ld.h
src/intl/ld_proto.h
src/intl/utils/dtest2.c
src/intl/utils/dtest.c
src/intl/utils/make.maps
src/intl/utils/mapdump.c
src/intl/utils/mapgen4.c
src/intl/utils/maptest2.c
src/intl/utils/maptest.cpp
src/iscguard/cntlg_proto.h
src/iscguard/cntl_guard.cpp
src/iscguard/iscguard.cpp
src/iscguard/iscguard.h
src/iscguard/iscguard.rc
src/iscguard/iscguard.rh
src/iscguard/salrt23i.ico
src/iscguard/sgard23i.ico
src/isql/extract.epp
src/isql/extra_proto.h
src/isql/isql.epp
src/isql/isql.h
src/isql/isql_proto.h
src/isql/isql.rc
src/isql/isql.rh
src/isql/iutils.cpp
src/isql/iutils_proto.h
src/isql/show.epp
src/isql/show_proto.h
src/jrd/acl.h
src/jrd/align.h
src/jrd/Attachment.cpp
src/jrd/Attachment.h
src/jrd/blb.cpp
src/jrd/blb.h
src/jrd/blb_proto.h
src/jrd/blf_proto.h
src/jrd/blob_filter.cpp
src/jrd/blob_filter.h
src/jrd/blp.h
src/jrd/blr.h
src/jrd/btr.cpp
src/jrd/btr.h
src/jrd/btr_proto.h
src/jrd/builtin.cpp
src/jrd/cch.cpp
src/jrd/cch.h
src/jrd/cch_proto.h
src/jrd/cmp.cpp
src/jrd/cmp_proto.h
src/jrd/Collation.cpp
src/jrd/constants.h
src/jrd/cvt2.cpp
src/jrd/cvt2_proto.h
src/jrd/cvt.cpp
src/jrd/cvt_proto.h
src/jrd/Database.cpp
src/jrd/Database.h
src/jrd/dflt.h
src/jrd/dfw.epp
src/jrd/dfw_proto.h
src/jrd/dpm.epp
src/jrd/dpm_proto.h
src/jrd/drq.h
src/jrd/dyn.h
src/jrd/dyn_util.epp
src/jrd/dyn_ut_proto.h
src/jrd/err.cpp
src/jrd/err_proto.h
src/jrd/event.cpp
src/jrd/event.h
src/jrd/event_proto.h
src/jrd/evl.cpp
src/jrd/evl_proto.h
src/jrd/exe.cpp
src/jrd/exe.h
src/jrd/exe_proto.h
src/jrd/ext.cpp
src/jrd/ext.h
src/jrd/ext_proto.h
src/jrd/fields.h
src/jrd/filte_proto.h
src/jrd/filters.cpp
src/jrd/flags.h
src/jrd/flu.cpp
src/jrd/flu.h
src/jrd/flu_proto.h
src/jrd/Function.epp
src/jrd/Function.h
src/jrd/fun.epp
src/jrd/fun_proto.h
src/jrd/grant.epp
src/jrd/grant_proto.h
src/jrd/ibase.h
src/jrd/ibsetjmp.h
src/jrd/idx.cpp
src/jrd/idx.h
src/jrd/idx_proto.h
src/jrd/inf.cpp
src/jrd/inf_proto.h
src/jrd/inf_pub.h
src/jrd/ini.epp
src/jrd/ini.h
src/jrd/ini_proto.h
src/jrd/intl.cpp
src/jrd/intl.h
src/jrd/intl_proto.h
src/jrd/irq.h
src/jrd/isc_version.h
src/jrd/isc_version.rc
src/jrd/jrd.cpp
src/jrd/jrd.h
src/jrd/jrd_proto.h
src/jrd/JrdStatement.cpp
src/jrd/JrdStatement.h
src/jrd/lck.cpp
src/jrd/lck.h
src/jrd/lck_proto.h
src/jrd/license.h
src/jrd/lls.h
src/jrd/met.epp
src/jrd/met.h
src/jrd/met_proto.h
src/jrd/mov.cpp
src/jrd/mov_proto.h
src/jrd/names.h
src/jrd/nodebug.cpp
src/jrd/obj.h
src/jrd/ods.h
src/jrd/opt.cpp
src/jrd/opt_proto.h
src/jrd/os/pio.h
src/jrd/os/pio_proto.h
src/jrd/os/posix/unix.cpp
src/jrd/os/win32/ibinitdll.cpp
src/jrd/os/win32/winnt.cpp
src/jrd/pag.cpp
src/jrd/pag.h
src/jrd/pag_proto.h
src/jrd/par.cpp
src/jrd/par_proto.h
src/jrd/que.h
src/jrd/RecordSourceNodes.cpp
src/jrd/RecordSourceNodes.h
src/jrd/recsrc/AggregatedStream.cpp
src/jrd/recsrc/BitmapTableScan.cpp
src/jrd/recsrc/FilteredStream.cpp
src/jrd/recsrc/FullTableScan.cpp
src/jrd/recsrc/IndexTableScan.cpp
src/jrd/recsrc/MergeJoin.cpp
src/jrd/recsrc/NestedLoopJoin.cpp
src/jrd/recsrc/ProcedureScan.cpp
src/jrd/recsrc/SingularStream.cpp
src/jrd/recsrc/SortedStream.cpp
src/jrd/recsrc/Union.cpp
src/jrd/Relation.h
src/jrd/relations.h
src/jrd/req.h
src/jrd/rlck.cpp
src/jrd/rlck_proto.h
src/jrd/Routine.cpp
src/jrd/Routine.h
src/jrd/rpb_chain.cpp
src/jrd/rpb_chain.h
src/jrd/rse.h
src/jrd/sbm.h
src/jrd/scl.epp
src/jrd/scl.h
src/jrd/scl_proto.h
src/jrd/sdw.cpp
src/jrd/sdw.h
src/jrd/sdw_proto.h
src/jrd/shut.cpp
src/jrd/shut_proto.h
src/jrd/sort.cpp
src/jrd/sort.h
src/jrd/sqz.cpp
src/jrd/sqz.h
src/jrd/svc.cpp
src/jrd/svc.h
src/jrd/svc_undoc.h
src/jrd/tpc.cpp
src/jrd/tpc_proto.h
src/jrd/tra.cpp
src/jrd/tra.h
src/jrd/tra_proto.h
src/jrd/trig.h
src/jrd/types.h
src/jrd/val.h
src/jrd/validation.cpp
src/jrd/validation.h
src/jrd/val_proto.h
src/jrd/version.rc
src/jrd/vio.cpp
src/jrd/vio_debug.h
src/jrd/vio_proto.h
src/lock/lock.cpp
src/lock/lock_proto.h
src/lock/print.cpp
src/misc/codes.epp
src/misc/ids.m
src/misc/memtest.cpp
src/msgs/build_file.epp
src/msgs/change_msgs.epp
src/msgs/check_msgs.epp
src/msgs/enter_msgs.epp
src/msgs/include.epp
src/msgs/load.epp
src/msgs/modify_msgs.epp
src/msgs/msg.gdl
src/qli/all.cpp
src/qli/all_proto.h
src/qli/blk.h
src/qli/command.cpp
src/qli/comma_proto.h
src/qli/compile.cpp
src/qli/compile.h
src/qli/compi_proto.h
src/qli/dtr.cpp
src/qli/dtr.h
src/qli/err.cpp
src/qli/err_proto.h
src/qli/eval.cpp
src/qli/eval_proto.h
src/qli/exe.cpp
src/qli/exe.h
src/qli/exe_proto.h
src/qli/expand.cpp
src/qli/expan_proto.h
src/qli/forma_proto.h
src/qli/format.cpp
src/qli/format.h
src/qli/gener.cpp
src/qli/gener_proto.h
src/qli/help.epp
src/qli/help_proto.h
src/qli/hsh.cpp
src/qli/hsh_proto.h
src/qli/lex.cpp
src/qli/lex_proto.h
src/qli/meta.epp
src/qli/meta_proto.h
src/qli/mov.cpp
src/qli/mov_proto.h
src/qli/nounix.cpp
src/qli/parse.cpp
src/qli/parse.h
src/qli/parse_proto.h
src/qli/picst_proto.h
src/qli/picstr.cpp
src/qli/procddl1.h
src/qli/procddl2.h
src/qli/procddl3.h
src/qli/procddl4.h
src/qli/proc_ddl.h
src/qli/proc.epp
src/qli/proc_proto.h
src/qli/repor_proto.h
src/qli/report.cpp
src/qli/report.h
src/qli/reqs.h
src/qli/show.epp
src/qli/show_proto.h
src/qli/symbols.h
src/qli/words.h
src/remote/client/interface.cpp
src/remote/inet.cpp
src/remote/inet_proto.h
src/remote/merge.cpp
src/remote/merge_proto.h
src/remote/os/win32/wnet.cpp
src/remote/os/win32/wnet_proto.h
src/remote/os/win32/xnet.cpp
src/remote/os/win32/xnet.h
src/remote/os/win32/xnet_proto.h
src/remote/parse_proto.h
src/remote/parser.cpp
src/remote/protocol.cpp
src/remote/protocol.h
src/remote/proto_proto.h
src/remote/remote.cpp
src/remote/remote_def.h
src/remote/remote.h
src/remote/remot_proto.h
src/remote/server/os/posix/inet_server.cpp
src/remote/server/os/win32/chop.cpp
src/remote/server/os/win32/chop_proto.h
src/remote/server/os/win32/cntl.cpp
src/remote/server/os/win32/cntl_proto.h
src/remote/server/os/win32/property.cpp
src/remote/server/os/win32/property.rc
src/remote/server/os/win32/property.rh
src/remote/server/os/win32/propty_proto.h
src/remote/server/os/win32/srvr_w32.cpp
src/remote/server/os/win32/window.cpp
src/remote/server/os/win32/window.h
src/remote/server/os/win32/window.rc
src/remote/server/os/win32/window.rh
src/remote/server/serve_proto.h
src/remote/server/server.cpp
src/utilities/analyse.cpp
src/utilities/cache.cpp
src/utilities/drop.cpp
src/utilities/gsec/gsec.cpp
src/utilities/gsec/gsec.h
src/utilities/gsec/gsecswi.h
src/utilities/gstat/dba.epp
src/utilities/gstat/dbaswi.h
src/utilities/gstat/ppg.cpp
src/utilities/gstat/ppg_proto.h
src/utilities/guard/guard.cpp
src/utilities/guard/util.cpp
src/utilities/guard/util_proto.h
src/utilities/ibmgr/ibmgr.cpp
src/utilities/ibmgr/ibmgr.h
src/utilities/ibmgr/ibmgrswi.h
src/utilities/ibmgr/srvrmgr.cpp
src/utilities/ibmgr/srvrmgr_proto.h
src/utilities/install/install_nt.h
src/utilities/install/install_reg.cpp
src/utilities/install/install_svc.cpp
src/utilities/install/regis_proto.h
src/utilities/install/registry.cpp
src/utilities/install/services.cpp
src/utilities/install/servi_proto.h
src/utilities/print_event.cpp
src/utilities/print_pool.cpp
src/utilities/rebuild/rebuild.cpp
src/utilities/rebuild/rebuild.gdl
src/utilities/rebuild/rebuild.h
src/utilities/rebuild/rebui_proto.h
src/utilities/rebuild/rmet.epp
src/utilities/rebuild/rmet_proto.h
src/utilities/rebuild/rstore.epp
src/utilities/rebuild/rstor_proto.h
src/utilities/relay.cpp
src/utilities/run_service.cpp
src/utilities/stats.epp
src/yvalve/alt.cpp
src/yvalve/alt_proto.h
src/yvalve/array.epp
src/yvalve/array_proto.h
src/yvalve/blob.epp
src/yvalve/blob_proto.h
src/yvalve/config/os/config_root.h
src/yvalve/gds.cpp
src/yvalve/gds_proto.h
src/yvalve/keywordsStub.h
src/yvalve/msg.h
src/yvalve/perf.cpp
src/yvalve/perf.h
src/yvalve/perf_proto.h
src/yvalve/prepa_proto.h
src/yvalve/preparse.cpp
src/yvalve/user_dsql.cpp
src/yvalve/user__proto.h
src/yvalve/utl.cpp
src/yvalve/utl_proto.h
src/yvalve/why.cpp
src/yvalve/why_proto.h
src/yvalve/YObjects.h
Copyright:
Adriano dos Santos Fernandes
2006, Adriano dos Santos Fernandes
2008, Alan Barclay <alan@escribe.co.uk>
Alex Peshkoff
2003, 2004, Alex Peshkoff
Alex Peshkov
Alex Peshkov <peshkoff@mail.ru>
2009, 2013, 2020, Alex Peshkov
2011-2020, Alexander Peshkov
Ann Harrison
2001, Ann Harrison
2001, Ann W. Harrison
2002, 2003, Arno Brinkman
Bill Oliver
Blas Rodriguez Somoza
2003 Blas Rodriguez Somoza
2003 BRS
1992-1994, 1996, Borland International
Clare Taylor
Claudio Valderrama
Claudio Valderrama C.
2001, Claudio Valderrama
Damyan Ivanov
Dimitry Sibiryakov <aafemt@users.sourceforge.net>
Dmitry Yemanov
Dmitry Yemanov <yemanov@yandex.ru>
2002, 2003, Dmitry Yemanov
Fikret Hasovic
Frank Schlottmann-Gödde
2003, Fred Polizo, Jr.
2002, FSG (Frank Schlottmann-Gödde)
Gabor Boros
1986, Groton Database Systems, Inc.
Inprise Corporation and its predecessors
2000, Inprise Corporation
Ivan Prenosil
Jaroslaw Glowacki <glowacki@plocman.pl>
Jerry Adair
John Bellardo
2001, John Bellardo
John H. Jenkins <John_Jenkins@taligent.com>
Jonas Jasas
K.D.Chang <a-kchang@microsoft.com>
Karel Brichnac <brichna@atlas.cz>
Konstantin Kuznetsov
2002, Leyne
Manuel A. Fernandez Montecelo
2018, Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>
Mark O'Donohue <skywalker@users.sourceforge.net>
Michal Bukovjan
Mike Nordell
2001, Mike Nordell
Neil McCalden
2001, Neil McCalden
Nickolay Samofatov
Nikolay Samofatov
2002, 2003, Nickolay Samofatov
patrickgriffin
Patrick J. P. Griffin
Paul Beach
2001, 2002, Paul Beach
Paul Reeves
Roman Simakov
Sandor Szollosi <ssani@freemail.hu>
Sean Leyne
2001, 2002, Sean Leyne
2001, SJL
Slavomir Skopalik
Stephen W. Boyd
2006, 2007, Stephen W. Boyd
Steve Boyd
TMN (Mike Nordell)
2001, TMN (Mike Nordell)
Toni Martir
Victor Seryodkin
2003, Victor Seryodkin
Vlad Horsun
License: IPL-1.0
Comment:
Years of copyright after 2000 are uncertain. Sources point to CVS for the
exact dates. Upstream CVS repository is at
<http://sourceforge.net/cvs/?group_id=9028>. That was later converted to
Subversion, then to Git and is currently available at
<https://github.com/FirebirdSQL/firebird.git>. The years above are as present
in the source.
Files:
builds/install/arch-specific/aix/misc/postinstall.sh.in
builds/install/arch-specific/darwin/changeServerMode
builds/install/arch-specific/freebsd/freebsdLibrary.sh.in
builds/install/arch-specific/freebsd/install.sh.in
builds/install/arch-specific/linux/linuxLibrary.sh.in
builds/install/arch-specific/linux/Makefile.in
builds/install/arch-specific/linux/makeInstallImage.sh.in
builds/install/arch-specific/win32/BuildExecutableInstall.bat
builds/install/arch-specific/win32/FirebirdInstall_30.iss
builds/install/arch-specific/win32/FirebirdInstallEnvironmentChecks.inc
builds/install/arch-specific/win32/FirebirdInstallGUIFunctions.inc
builds/install/arch-specific/win32/FirebirdInstallSupportFunctions.inc
builds/install/posix-common/changeServerMode.sh.in
builds/install/posix-common/fb_config.in
builds/install/posix-common/FirebirdUninstall.sh.in
builds/install/posix-common/install.sh.in
builds/install/posix-common/posixLibrary.sh.in
builds/posix/empty.vers
builds/posix/fbintl.vers
builds/posix/fbplugin.vers
builds/posix/ib_util.vers
builds/posix/udr_plugin.vers
builds/posix/vers.sh.in
builds/win32/defs/plugin.def
builds/win32/defs/udr_plugin.def
examples/dbcrypt/CryptApplication.cpp
examples/dbcrypt/cryptDb.pas
examples/dbcrypt/CryptKeyHolder.cpp
examples/dbcrypt/DbCrypt.cpp
examples/interfaces/01.create.cpp
examples/interfaces/01.create.pas
examples/interfaces/03.select.cpp
examples/interfaces/04.print_table.cpp
examples/interfaces/05.user_metadata.cpp
examples/interfaces/07.blob.cpp
examples/interfaces/09.service.cpp
examples/interfaces/ifaceExamples.h
examples/package/fbout-body.sql
examples/package/fbout-header.sql
examples/package/fbout-test.sql
examples/udr/Functions.cpp
examples/udr/Procedures.cpp
examples/udr/Triggers.cpp
examples/udr/UdrCppExample.h
extern/cloop/src/cloop/Expr.cpp
extern/cloop/src/cloop/Expr.h
extern/cloop/src/cloop/Generator.cpp
extern/cloop/src/cloop/Generator.h
extern/cloop/src/cloop/Lexer.cpp
extern/cloop/src/cloop/Lexer.h
extern/cloop/src/cloop/Main.cpp
extern/cloop/src/cloop/Parser.cpp
extern/cloop/src/cloop/Parser.h
extern/cloop/src/tests/test1/CppTest.cpp
extern/cloop/src/tests/test1/CTest.c
extern/cloop/src/tests/test1/Interface.idl
extern/cloop/src/tests/test1/PascalClasses.pas
extern/cloop/src/tests/test1/PascalLibrary.dpr
extern/cloop/src/tests/test1/PascalTest.dpr
src/alice/main/aliceMain.cpp
src/auth/AuthDbg.cpp
src/auth/AuthDbg.h
src/auth/SecureRemotePassword/client/SrpClient.cpp
src/auth/SecureRemotePassword/client/SrpClient.h
src/auth/SecureRemotePassword/manage/SrpManagement.cpp
src/auth/SecureRemotePassword/server/SrpServer.cpp
src/auth/SecureRemotePassword/server/SrpServer.h
src/auth/SecurityDatabase/LegacyClient.cpp
src/auth/SecurityDatabase/LegacyClient.h
src/auth/SecurityDatabase/LegacyManagement.h
src/auth/trusted/AuthSspi.cpp
src/auth/trusted/AuthSspi.h
src/burp/main/burpMain.cpp
src/common/Auth.cpp
src/common/Auth.h
src/common/BigInteger.cpp
src/common/BigInteger.h
src/common/call_service.cpp
src/common/call_service.h
src/common/CharSet.h
src/common/classes/AlignedBuffer.h
src/common/classes/Aligner.h
src/common/classes/alloc.cpp
src/common/classes/alloc.h
src/common/classes/auto.h
src/common/classes/BaseStream.cpp
src/common/classes/BaseStream.h
src/common/classes/BlrReader.h
src/common/classes/ByteChunk.h
src/common/classes/ClumpletReader.cpp
src/common/classes/ClumpletReader.h
src/common/classes/ClumpletWriter.cpp
src/common/classes/ClumpletWriter.h
src/common/classes/condition.h
src/common/classes/DbImplementation.cpp
src/common/classes/DbImplementation.h
src/common/classes/fb_atomic.h
src/common/classes/fb_atomic.il
src/common/classes/fb_cas.il
src/common/classes/fb_cas_sax.il
src/common/classes/fb_pair.h
src/common/classes/fb_string.cpp
src/common/classes/fb_string.h
src/common/classes/fb_tls.h
src/common/classes/File.h
src/common/classes/FpeControl.h
src/common/classes/GenericMap.h
src/common/classes/GetPlugins.h
src/common/classes/Hash.cpp
src/common/classes/Hash.h
src/common/classes/ImplementHelper.cpp
src/common/classes/ImplementHelper.h
src/common/classes/init.cpp
src/common/classes/init.h
src/common/classes/InternalMessageBuffer.h
src/common/classes/locks.cpp
src/common/classes/locks.h
src/common/classes/MetaName.cpp
src/common/classes/MetaName.h
src/common/classes/misc/class_perf.cpp
src/common/classes/misc/class_test.cpp
src/common/classes/misc/lowtab.c
src/common/classes/misc/miditab.c
src/common/classes/misc/string_test.cmd
src/common/classes/misc/string_test.cpp
src/common/classes/MsgPrint.cpp
src/common/classes/MsgPrint.h
src/common/classes/NestConst.h
src/common/classes/NoThrowTimeStamp.h
src/common/classes/Nullable.h
src/common/classes/objects_array.h
src/common/classes/QualifiedName.h
src/common/classes/Reasons.h
src/common/classes/RefCounted.h
src/common/classes/RefMutex.h
src/common/classes/rwlock.h
src/common/classes/SafeArg.cpp
src/common/classes/SafeArg.h
src/common/classes/semaphore.cpp
src/common/classes/semaphore.h
src/common/classes/sparse_bitmap.h
src/common/classes/stack.h
src/common/classes/Switches.cpp
src/common/classes/Switches.h
src/common/classes/Synchronize.cpp
src/common/classes/Synchronize.h
src/common/classes/SyncObject.cpp
src/common/classes/SyncObject.h
src/common/classes/TempFile.cpp
src/common/classes/TempFile.h
src/common/classes/timestamp.h
src/common/classes/tree.h
src/common/classes/TriState.h
src/common/classes/UserBlob.cpp
src/common/classes/UserBlob.h
src/common/classes/VaryStr.h
src/common/classes/vector.h
src/common/classes/XThreadMutex.h
src/common/config/ConfigCache.cpp
src/common/config/ConfigCache.h
src/common/config/config.cpp
src/common/config/config_file.cpp
src/common/config/config_file.h
src/common/config/config.h
src/common/CRC32C.cpp
src/common/CsConvert.h
src/common/cvt.h
src/common/db_alias.cpp
src/common/db_alias.h
src/common/dllinst.cpp
src/common/dllinst.h
src/common/DynamicStrings.cpp
src/common/DynamicStrings.h
src/common/intlobj_new.h
src/common/IntlParametersBlock.cpp
src/common/IntlParametersBlock.h
src/common/IntlUtil.cpp
src/common/IntlUtil.h
src/common/keywords.cpp
src/common/MsgMetadata.cpp
src/common/MsgMetadata.h
src/common/os/darwin/mac_utils.m
src/common/os/darwin/mod_loader.cpp
src/common/os/guid.h
src/common/os/mac_utils.h
src/common/os/mod_loader.h
src/common/os/os_utils.h
src/common/os/path_utils.h
src/common/os/posix/guid.cpp
src/common/os/posix/mod_loader.cpp
src/common/os/posix/os_utils.cpp
src/common/os/posix/path_utils.cpp
src/common/os/win32/guid.cpp
src/common/os/win32/os_utils.cpp
src/common/ScanDir.cpp
src/common/ScanDir.h
src/common/sha.h
src/common/SimpleStatusVector.h
src/common/StatementMetadata.cpp
src/common/StatementMetadata.h
src/common/StatusArg.cpp
src/common/StatusArg.h
src/common/StatusHolder.cpp
src/common/StatusHolder.h
src/common/stuff.h
src/common/TextType.h
src/common/Tokens.cpp
src/common/Tokens.h
src/common/unicode_util.cpp
src/common/unicode_util.h
src/common/utils.cpp
src/common/utils_proto.h
src/common/UtilSvc.cpp
src/common/UtilSvc.h
src/dsql/AggNodes.h
src/dsql/BoolNodes.h
src/dsql/DdlNodes.h
src/dsql/DsqlCursor.cpp
src/dsql/DsqlCursor.h
src/dsql/ExprNodes.h
src/dsql/NodePrinter.h
src/dsql/Nodes.h
src/dsql/PackageNodes.epp
src/dsql/PackageNodes.h
src/dsql/Parser.cpp
src/dsql/Parser.h
src/dsql/StmtNodes.h
src/dsql/WinNodes.cpp
src/dsql/WinNodes.h
src/extlib/fbudf/*
src/gpre/languages/fbrmclib.cpp
src/include/editline.h
src/include/fb_api_proto.h
src/include/fb_exception.h
src/include/fb_pthread.h
src/include/fb_types.h
src/include/firebird/FirebirdInterface.idl
src/include/firebird.h
src/include/firebird/Interface.h
src/include/firebird/Message.h
src/include/firebird/UdrCppEngine.h
src/include/types_pub.h
src/intl/collations/koi8r_ru.h
src/intl/collations/koi8u_ua.h
src/intl/collations/win1257_ee.h
src/intl/collations/win1257_lt.h
src/intl/collations/win1257_lv.h
src/intl/cs_icu.cpp
src/intl/cs_icu.h
src/intl/cv_icu.cpp
src/intl/cv_icu.h
src/intl/lc_icu.cpp
src/intl/lc_icu.h
src/isql/ColList.cpp
src/isql/ColList.h
src/isql/Extender.cpp
src/isql/Extender.h
src/isql/InputDevices.cpp
src/isql/InputDevices.h
src/isql/isqlswi.h
src/isql/OptionsBase.cpp
src/isql/OptionsBase.h
src/isql/PtrSentry.h
src/jrd/btn.cpp
src/jrd/btn.h
src/jrd/Collation.h
src/jrd/CryptoManager.cpp
src/jrd/CryptoManager.h
src/jrd/DataTypeUtil.cpp
src/jrd/DataTypeUtil.h
src/jrd/DbCreators.cpp
src/jrd/DbCreators.h
src/jrd/DebugInterface.cpp
src/jrd/DebugInterface.h
src/jrd/EngineInterface.h
src/jrd/evl_string.h
src/jrd/extds/ExtDS.cpp
src/jrd/extds/ExtDS.h
src/jrd/extds/InternalDS.cpp
src/jrd/extds/InternalDS.h
src/jrd/extds/IscDS.cpp
src/jrd/extds/IscDS.h
src/jrd/extds/ValidatePassword.cpp
src/jrd/extds/ValidatePassword.h
src/jrd/ExtEngineManager.cpp
src/jrd/ExtEngineManager.h
src/jrd/GarbageCollector.cpp
src/jrd/GarbageCollector.h
src/jrd/GlobalRWLock.cpp
src/jrd/GlobalRWLock.h
src/jrd/intl_classes.h
src/jrd/IntlManager.cpp
src/jrd/IntlManager.h
src/jrd/Mapping.cpp
src/jrd/Mapping.h
src/jrd/misc/evl_string_test.cpp
src/jrd/Monitoring.cpp
src/jrd/Monitoring.h
src/jrd/nbak.cpp
src/jrd/nbak.h
src/jrd/ntrace.h
src/jrd/ods.cpp
src/jrd/ods_proto.h
src/jrd/Optimizer.cpp
src/jrd/Optimizer.h
src/jrd/os/win32/win9x_nt.h
src/jrd/PreparedStatement.cpp
src/jrd/PreparedStatement.h
src/jrd/RandomGenerator.cpp
src/jrd/RandomGenerator.h
src/jrd/RecordBuffer.cpp
src/jrd/RecordBuffer.h
src/jrd/Record.h
src/jrd/RecordNumber.h
src/jrd/recsrc/BufferedStream.cpp
src/jrd/recsrc/ConditionalStream.cpp
src/jrd/recsrc/Cursor.cpp
src/jrd/recsrc/Cursor.h
src/jrd/recsrc/ExternalTableScan.cpp
src/jrd/recsrc/FirstRowsStream.cpp
src/jrd/recsrc/FullOuterJoin.cpp
src/jrd/recsrc/HashJoin.cpp
src/jrd/recsrc/LockedStream.cpp
src/jrd/recsrc/RecordSource.cpp
src/jrd/recsrc/RecordSource.h
src/jrd/recsrc/RecursiveStream.cpp
src/jrd/recsrc/SkipRowsStream.cpp
src/jrd/recsrc/VirtualTableScan.cpp
src/jrd/recsrc/WindowedStream.cpp
src/jrd/Relation.cpp
src/jrd/ResultSet.cpp
src/jrd/ResultSet.h
src/jrd/RuntimeStatistics.cpp
src/jrd/RuntimeStatistics.h
src/jrd/SimilarToMatcher.h
src/jrd/status.h
src/jrd/svc_tab.cpp
src/jrd/svc_tab.h
src/jrd/SysFunction.cpp
src/jrd/SysFunction.h
src/jrd/TempSpace.cpp
src/jrd/TempSpace.h
src/jrd/ThreadCollect.h
src/jrd/trace/TraceCmdLine.cpp
src/jrd/trace/TraceConfigStorage.cpp
src/jrd/trace/TraceConfigStorage.h
src/jrd/trace/TraceDSQLHelpers.h
src/jrd/trace/TraceJrdHelpers.h
src/jrd/trace/TraceLog.cpp
src/jrd/trace/TraceLog.h
src/jrd/trace/TraceManager.cpp
src/jrd/trace/TraceManager.h
src/jrd/trace/TraceObjects.cpp
src/jrd/trace/TraceObjects.h
src/jrd/trace/TraceService.cpp
src/jrd/trace/TraceService.h
src/jrd/trace/TraceSession.h
src/jrd/trace/traceswi.h
src/jrd/UserManagement.cpp
src/jrd/UserManagement.h
src/jrd/VirtualTable.cpp
src/jrd/VirtualTable.h
src/misc/checkIface
src/misc/ods.awk
src/misc/smallog.cpp
src/misc/src_bundle.sh
src/misc/upgrade/v2.1/metadata_charset.txt
src/misc/upgrade/v2.1/metadata_charset_create.sql
src/misc/upgrade/v2.1/metadata_charset_drop.sql
src/misc/upgrade/v2/ib_udf_upgrade.sql
src/misc/upgrade/v2/security_database.sql
src/misc/upgrade/v3.0/security_database.sql
src/plugins/crypt/arc4/Arc4.cpp
src/plugins/crypt/arc4/Arc4.h
src/plugins/udr_engine/UdrEngine.cpp
src/qli/qliswi.h
src/remote/client/BlrFromMessage.cpp
src/remote/client/BlrFromMessage.h
src/remote/client/interface.h
src/remote/SockAddr.h
src/utilities/fbsvcmgr/fbsvcmgr.cpp
src/utilities/fbtracemgr/traceMgrMain.cpp
src/utilities/gsec/main/gsecMain.cpp
src/utilities/gstat/dba_proto.h
src/utilities/gstat/main/gstatMain.cpp
src/utilities/install/install_client.cpp
src/utilities/install/install.cpp
src/utilities/install/install_proto.h
src/utilities/nbackup/main/nbkMain.cpp
src/utilities/nbackup/nbackup.cpp
src/utilities/nbackup/nbk_proto.h
src/utilities/nbackup/nbkswi.h
src/utilities/ntrace/os/FileObject.h
src/utilities/ntrace/os/platform.h
src/utilities/ntrace/os/posix/misc/FileObject.cpp
src/utilities/ntrace/os/posix/platform.cpp
src/utilities/ntrace/os/win32/FileObject.cpp
src/utilities/ntrace/os/win32/platform.cpp
src/utilities/ntrace/paramtable.h
src/utilities/ntrace/PluginLogWriter.cpp
src/utilities/ntrace/PluginLogWriter.h
src/utilities/ntrace/TraceConfiguration.cpp
src/utilities/ntrace/TraceConfiguration.h
src/utilities/ntrace/TracePluginConfig.h
src/utilities/ntrace/traceplugin.cpp
src/utilities/ntrace/TracePluginImpl.cpp
src/utilities/ntrace/TracePluginImpl.h
src/utilities/ntrace/TraceUnicodeUtils.cpp
src/utilities/ntrace/TraceUnicodeUtils.h
src/yvalve/config/os/darwin/config_root.cpp
src/yvalve/config/os/posix/config_root.cpp
src/yvalve/config/os/win32/config_root.cpp
src/yvalve/DistributedTransaction.cpp
src/yvalve/DistributedTransaction.h
src/yvalve/keywordsStub.cpp
src/yvalve/MasterImplementation.cpp
src/yvalve/MasterImplementation.h
src/yvalve/PluginManager.cpp
src/yvalve/PluginManager.h
Copyright:
2004, 2006, 2007 Adriano dos Santos Fernandes <adrianosf@uol.com.br>
Oleg Loa <loa@mail.ru>
Alexey Karyakin <aleksey.karyakin@mail.ru>
2007, 2008, 2009, 2010, 2011
Adriano dos Santos Fernandes <adrianosf@uol.com.br>
2011, 2015 Adriano dos Santos Fernandes <adrianosf@gmail.com>
Alex Peshkoff <peshkoff@mail.ru>
Alex Peshkov <AlexPeshkov@users.sourceforge.net>
2005 Aleksey Karyakin <aleksey.karyakin@mail.ru>
2003, 2004, 2005 Alexander Peshkoff <peshkoff@mail.ru>
2006, 2007, 2008, 2009, 2010, 2011, 2012, 2015, 2017
Alex Peshkov <peshkoff@mail.ru>
2007, 2008, 2009, 2013, 2014, 2016 Alexander Peshkoff <peshkoff@mail.ru>
2018, 2020, 2022 Alexander Peshkoff <peshkoff@mail.ru>
Bill Oliver <Bill.Oliver@sas.com>
2009 Nikolay Samofatov <skidder@users.sourceforge.net>
2003, 2004 Arno Brinkman
2004 Arno Brinkman <firebird@abvisie.nl>
2009 Bill Oliver <Bill.Oliver@sas.com>
2004 Blas Rodriguez Somoza
2001 IBPhoenix
2003, 2004, 2005, 2007, 2009 Claudio Valderrama
2015 Dmitry Sibiryakov
2002, 2004, 2005, 2006, 2009, 2011, 2015 Dmitry Yemanov <dimitr@users.sf.net>
Inprise Corporation and its predecessors
2000, 2002 John Bellardo <bellardo at cs.ucsd.edu>
2008, 2009, 2010, 2011 Khorsun Vladyslav <hvlad@users.sourceforge.net>
2001 Mark O'Donohue <mark.odonohue@ludwig.edu.au>
2002 Mark O'Donohue <skywalker@users.sourceforge.net>
Chris Knight <chris@e-easy.com.au>
2001 Mike Nordell <tamlin@algonet.se>
Sean Leyne
John Bellardo <bellardo@cs.ucsd.edu>
2014 Michal Kubecek <mike@mk-sys.cz>
1997-000, 2001, 2003, 2004 James A. Starkey
1997-2000, 2001, 2003 Netfrastructure, Inc.
2004, 2006 Nickolay Samofatov <nickolay@broadviewsoftware.com>
Roman Simakov <roman-simakov@users.sourceforge.net>
2008 Roman Simakov
2008, Khorsun Vladyslav <hvlad@users.sourceforge.net>
2003 Olivier Mascia
2009, 2017 Paul Beach <pbeach@ibphoenix.com>
2001-2004, 2007 Paul Reeves
Tilo Muetze
Theo ?
Michael Rimov
Simon Carter
Philippe Makowski
Sergey Nikitin
2006 Steve Boyd <sboydlns@gmail.com>
2004 Vlad Khorsun <hvlad@users.sf.net>
2005, 2006, 2007, 2008, 2011 Vlad Khorsun <hvlad@users.sourceforge.net>
2009 Vladyslav Khorsun <hvlad@users.sourceforge.net>
2010 Vladyslav Khorsun
License: IDPL-1.0
Comment:
Years of copyright after 2000 are uncertain. Sources point to CVS for the
exact dates. Upstream CVS repository is at
<http://sourceforge.net/cvs/?group_id=9028>. That was later converted to
Subversion, then to Git and is currently available at
<https://github.com/FirebirdSQL/firebird.git>. The years above are as present
in the source.
Files:
builds/install/arch-specific/aix/classic/makeInstallImage.sh.in
builds/install/arch-specific/aix/Makefile.in
builds/install/arch-specific/aix/misc/postuninstall.sh.in
builds/install/arch-specific/aix/misc/preinstall.sh.in
builds/install/arch-specific/aix/misc/preuninstall.sh.in
builds/install/arch-specific/aix/misc/tarinstall.sh.in
builds/install/arch-specific/aix/misc/tarmaininstall.sh.in
builds/install/arch-specific/aix/misc/tarmainuninstall.sh.in
builds/install/arch-specific/aix/misc/taruninstall.sh.in
builds/install/arch-specific/freebsd/Makefile.in
builds/install/arch-specific/hpux/classic/makeinstallImage.sh.in
builds/install/arch-specific/hpux/classic/postInstall.sh.in
builds/install/arch-specific/hpux/classic/postUninstall.sh.in
builds/install/arch-specific/hpux/classic/preInstall.sh.in
builds/install/arch-specific/hpux/classic/preUninstall.sh.in
builds/install/arch-specific/hpux/classic/tarInstall.sh.in
builds/install/arch-specific/hpux/classic/tarmainInstall.sh.in
builds/install/arch-specific/hpux/classic/tarmainUninstall.sh.in
builds/install/arch-specific/hpux/classic/tarUninstall.sh.in
builds/install/arch-specific/hpux/Makefile.in
builds/install/arch-specific/hpux/misc/changegdslibrarycompatibleLink.sh.in
builds/install/arch-specific/hpux/misc/createaliasDB.sh.in
builds/install/arch-specific/hpux/misc/firebird.init.d.hpux.in
builds/install/arch-specific/hpux/misc/hpuxLibrary.sh.in
builds/install/arch-specific/hpux/super/makeinstallImage.sh.in
builds/install/arch-specific/hpux/super/tarInstall.sh.in
builds/install/arch-specific/hpux/super/tarmainInstall.sh.in
builds/install/arch-specific/hpux/super/tarmainUninstall.sh.in
builds/install/arch-specific/hpux/super/tarUninstall.sh.in
builds/install/arch-specific/netbsd/install.sh.in
builds/install/arch-specific/netbsd/Makefile.in
builds/install/arch-specific/solx86gcc/Makefile.in
builds/install/posix-common/registerDatabase.sh.in
builds/posix/Makefile.in
builds/posix/Makefile.in.examples
builds/posix/Makefile.in.extern.editline
builds/posix/Makefile.in.plugins_examples
builds/posix/make.shared.targets
examples/build_unix/Makefile.in.v5_examples
Copyright:
Adriano dos Santos Fernandes
Alex Peshkoff
Alex Peshkov
Chris Knight <chris@e-easy.com.au>
Erik Kunze <Erik.Kunze@philosys.de>
James K. Lowden <jklowden@schemamania.org>
Mark O'Donohue <mark.odonohue@ludwig.edu.au>
License: LGPL-2.1 with OSI exception
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. You may obtain a copy of the Licence at
http://www.gnu.org/licences/lgpl.html
.
As a special exception this file can also be included in modules with other
source code as long as that source code has been released under an Open
Source Initiative certificed licence. More information about OSI
certification can be found at: http://www.opensource.org
.
This module is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public Licence for more
details.
.
This module was created by members of the firebird development team. All
individual contributions remain the Copyright (C) of those individuals and
all rights are reserved. Contributors to this file are either listed below
or can be obtained from a CVS history command.
.
The full text of the GNU Lesser General Public License version 2.1 may be
found at /usr/share/common-licenses/LGPL-2.1 on every Debian system.
Files:
examples/interfaces/06.fb_message.cpp
examples/interfaces/08.events.cpp
Copyright:
2011 Adriano dos Santos Fernandes
Alexander Peshkov
License: MPL-1.1
the full text of the Mozilla Public License version 1.1 can be found in
/usr/share/common-licenses/MPL-1.1 on every Debian system.
Comment:
Years of copyright after 2000 are uncertain. Sources point to CVS for the
exact dates. Upstream CVS repository is at
<http://sourceforge.net/cvs/?group_id=9028>. That was later converted to
Subversion, then to Git and is currently available at
<https://github.com/FirebirdSQL/firebird.git>. The years above are as present
in the source.
Files:
builds/posix/make.defaults
builds/posix/make.rules
examples/build_unix/Makefile.in.example5
Copyright:
Mark O'Donohue <mark.odonohue@ludwig.edu.au>
License: MPL-1.1 or GPL-2+
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/
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License Version 2 or later (the "GPL"), in which case the
provisions of the GPL are applicable instead of those above. You may obtain a
copy of the Licence at http://www.gnu.org/copyleft/gpl.html
.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the Relevant for more details.
.
The full text of the Mozilla Public License Version 1.1 can be found in
/usr/share/common-licenses/MPL-1.1.
The full text f the GNU General Public License Version 2 can be found in
/usr/share/common-licenses/GPL-2.
Files:
src/common/enc.cpp
Copyright: 1989 The Regents of the University of California
License: bsd-like
Copyright (c) 1989 The Regents of the University of California.
All rights reserved.
.
This code is derived from software contributed to Berkeley by
Tom Truscott.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by the University of
California, Berkeley and its contributors.
4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
Files:
acx_pthread.m4
Copyright: © 2007 Steven G. Johnson <stevenj@alum.mit.edu>
License: GPL-3+ with autoconf exception
Available from the GNU Autoconf Macro Archive
Current version is at http://autoconf-archive.cryp.to/acx_pthread.html
That page says:
Copyright © 2007 Steven G. Johnson <stevenj@alum.mit.edu>
.
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.
.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
.
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 Macro 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.
.
The full text of GNU General Public License version 3 can be found at
/usr/share/common-licenses/GPL-3 on every Debian system.
Files:
extern/btyacc/*
Copyright: Chris Dodd <chrisd@collins.com>, Siber Systems <vadik@siber.com>
License: public-domain
BTYACC was created by Chris Dodd using ideas from many places and lots of
code from the Berkeley Yacc distribution, which is a public domain yacc clone
put together by the good folks at Berkeley. This code is distributed with NO
WARRANTEE and is public domain. It is certain to contain bugs, which you
should report to: chrisd@collins.com.
.
Vadim Maslov of Siber Systems <vadik@siber.com> considerably modified BTYACC
to make it suitable for production environment.
License: IPL-1.0
INTERBASE PUBLIC LICENSE
.
Version 1.0
.
1. Definitions.
.
1.0.1. "Commercial Use" means distribution or otherwise making the Covered
Code available to a third party.
.
1.1. ''Contributor'' means each entity that creates or contributes to the
creation of Modifications.
.
1.2. ''Contributor Version'' means the combination of the Original Code,
prior Modifications used by a Contributor, and the Modifications made by
that particular Contributor.
.
1.3. ''Covered Code'' means the Original Code or Modifications or the
combination of the Original Code and Modifications, in each case including
portions thereof.
.
1.4. ''Electronic Distribution Mechanism'' means a mechanism generally
accepted in the software development community for the electronic transfer
of data.
.
1.5. ''Executable'' means Covered Code in any form other than Source Code.
.
1.6. ''Initial Developer'' means the individual or entity identified as
the Initial Developer in the Source Code notice required by Exhibit A.
.
1.7. ''Larger Work'' means a work which combines Covered Code or portions
thereof with code not governed by the terms of this License.
.
1.8. ''License'' means this document.
.
1.8.1. "Licensable" means having the right to grant, to the maximum extent
possible, whether at the time of the initial grant or subsequently acquired,
any and all of the rights conveyed herein.
.
1.9. ''Modifications'' means any addition to or deletion from the substance
or structure of either the Original Code or any previous Modifications. When
Covered Code is released as a series of files, a Modification is:
.
A. Any addition to or deletion from the contents of a file containing
Original Code or previous Modifications.
.
B. Any new file that contains any part of the Original Code or previous
Modifications.
.
1.10. ''Original Code'' means Source Code of computer software code which
is described in the Source Code notice required by Exhibit A as Original
Code, and which, at the time of its release under this License is not
already Covered Code governed by this License.
.
1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter
acquired, including without limitation, method, process, and apparatus
claims, in any patent Licensable by grantor.
.
1.11. ''Source Code'' means the preferred form of the Covered Code for
making modifications to it, including all modules it contains, plus any
associated interface definition files, scripts used to control compilation
and installation of an Executable, or source code differential comparisons
against either the Original Code or another well known, available Covered
Code of the Contributor's choice. The Source Code can be in a compressed or
archival form, provided the appropriate decompression or de-archiving
software is widely available for no charge.
.
1.12. "You'' (or "Your") means an individual or a legal entity exercising
rights under, and complying with all of the terms of, this License or a
future version of this License issued under Section 6.1. For legal entities,
"You'' includes any entity which controls, is controlled by, or is under
common control with You. For purposes of this definition, "control'' means
(a) the power, direct or indirect, to cause the direction or management of
such entity, whether by contract or otherwise, or (b) ownership of more
than fifty percent (50%) of the outstanding shares or beneficial ownership
of such entity.
.
2. Source Code License.
.
2.1. The Initial Developer Grant.
.
The Initial Developer hereby grants You a world-wide, royalty-free,
non-exclusive license, subject to third party intellectual property claims:
.
(a) under intellectual property rights (other than patent or trademark)
Licensable by Initial Developer to use, reproduce, modify, display, perform,
sublicense and distribute the Original Code (or portions thereof) with or
without Modifications, and/or as part of a Larger Work; and
.
(b) under Patents Claims infringed by the making, using or selling of
Original Code, to make, have made, use, practice, sell, and offer for sale,
and/or otherwise dispose of the Original Code (or portions thereof).
.
(c) the licenses granted in this Section 2.1(a) and (b) are effective on the
date Initial Developer first distributes Original Code under the terms of
this License.
.
(d) Notwithstanding Section 2.1(b) above, no patent license is granted:
1) for code that You delete from the Original Code; 2) separate from the
Original Code; or 3) for infringements caused by: i) the modification of the
Original Code or ii) the combination of the Original Code with other
software or devices.
.
2.2. Contributor Grant.
.
Subject to third party intellectual property claims, each Contributor hereby
grants You a world-wide, royalty-free, non-exclusive license
.
(a) under intellectual property rights (other than patent or trademark)
Licensable by Contributor, to use, reproduce, modify, display, perform,
sublicense and distribute the Modifications created by such Contributor
(or portions thereof) either on an unmodified basis, with other
Modifications, as Covered Code and/or as part of a Larger Work; and
.
(b) under Patent Claims infringed by the making, using, or selling of
Modifications made by that Contributor either alone and/or in combination
with its Contributor Version (or portions of such combination), to make,
use, sell, offer for sale, have made, and/or otherwise dispose of:
1) Modifications made by that Contributor (or portions thereof); and 2) the
combination of Modifications made by that Contributor with its Contributor
Version (or portions of such combination).
.
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the
date Contributor first makes Commercial Use of the Covered Code.
.
(d) Notwithstanding Section 2.2(b) above, no patent license is granted:
1) for any code that Contributor has deleted from the Contributor Version;
2) separate from the Contributor Version; 3) for infringements caused by:
i) third party modifications of Contributor Version or ii) the combination
of Modifications made by that Contributor with other software (except as
part of the Contributor Version) or other devices; or 4) under Patent Claims
infringed by Covered Code in the absence of Modifications made by that
Contributor.
.
3. Distribution Obligations.
.
3.1. Application of License.
.
The Modifications which You create or to which You contribute are governed
by the terms of this License, including without limitation Section 2.2. The
Source Code version of Covered Code may be distributed only under the terms
of this License or a future version of this License released under Section
6.1, and You must include a copy of this License with every copy of the
Source Code You distribute. You may not offer or impose any terms on any
Source Code version that alters or restricts the applicable version of this
License or the recipients' rights hereunder. However, You may include an
additional document offering the additional rights described in Section 3.5.
.
3.2. Availability of Source Code.
.
Any Modification which You create or to which You contribute must be made
available in Source Code form under the terms of this License either on the
same media as an Executable version or via an accepted Electronic
Distribution Mechanism to anyone to whom you made an Executable version
available; and if made available via Electronic Distribution Mechanism,
must remain available for at least twelve (12) months after the date it
initially became available, or at least six (6) months after a subsequent
version of that particular Modification has been made available to such
recipients. You are responsible for ensuring that the Source Code version
remains available even if the Electronic Distribution Mechanism is
maintained by a third party.
.
3.3. Description of Modifications.
.
You must cause all Covered Code to which You contribute to contain a file
documenting the changes You made to create that Covered Code and the date
of any change. You must include a prominent statement that the Modification
is derived, directly or indirectly, from Original Code provided by the
Initial Developer and including the name of the Initial Developer in
(a) the Source Code, and (b) in any notice in an Executable version or
related documentation in which You describe the origin or ownership of the
Covered Code.
.
3.4. Intellectual Property Matters
.
(a) Third Party Claims.
.
If Contributor has knowledge that a license under a third party's
intellectual property rights is required to exercise the rights granted by
such Contributor under Sections 2.1 or 2.2, Contributor must include a text
file with the Source Code distribution titled "LEGAL'' which describes the
claim and the party making the claim in sufficient detail that a recipient
will know whom to contact. If Contributor obtains such knowledge after the
Modification is made available as described in Section 3.2, Contributor
shall promptly modify the LEGAL file in all copies Contributor makes
available thereafter and shall take other steps (such as notifying
appropriate mailing lists or newsgroups) reasonably calculated to inform
those who received the Covered Code that new knowledge has been obtained.
.
(b) Contributor APIs.
.
If Contributor's Modifications include an application programming interface
and Contributor has knowledge of patent licenses which are reasonably
necessary to implement that API, Contributor must also include this
information in the LEGAL file.
.
(c) Representations.
.
Contributor represents that, except as disclosed pursuant to Section 3.4(a)
above, Contributor believes that Contributor's Modifications are
Contributor's original creation(s) and/or Contributor has sufficient rights
to grant the rights conveyed by this License.
.
3.5. Required Notices.
.
You must duplicate the notice in Exhibit A in each file of the Source Code.
If it is not possible to put such notice in a particular Source Code file
due to its structure, then You must include such notice in a location (such
as a relevant directory) where a user would be likely to look for such a
notice. If You created one or more Modification(s) You may add your name as
a Contributor to the notice described in Exhibit A. You must also duplicate
this License in any documentation for the Source Code where You describe
recipients' rights or ownership rights relating to Covered Code. You may
choose to offer, and to charge a fee for, warranty, support, indemnity or
liability obligations to one or more recipients of Covered Code. However,
You may do so only on Your own behalf, and not on behalf of the Initial
Developer or any Contributor. You must make it absolutely clear than any
such warranty, support, indemnity or liability obligation is offered by You
alone, and You hereby agree to indemnify the Initial Developer and every
Contributor for any liability incurred by the Initial Developer or such
Contributor as a result of warranty, support, indemnity or liability terms
You offer.
.
3.6. Distribution of Executable Versions.
.
You may distribute Covered Code in Executable form only if the requirements
of Section 3.1-3.5 have been met for that Covered Code, and if You include
a notice stating that the Source Code version of the Covered Code is
available under the terms of this License, including a description of how
and where You have fulfilled the obligations of Section 3.2. The notice must
be conspicuously included in any notice in an Executable version, related
documentation or collateral in which You describe recipients' rights relating
to the Covered Code. You may distribute the Executable version of Covered
Code or ownership rights under a license of Your choice, which may contain
terms different from this License, provided that You are in compliance with
the terms of this License and that the license for the Executable version
does not attempt to limit or alter the recipient's rights in the Source Code
version from the rights set forth in this License. If You distribute the
Executable version under a different license You must make it absolutely
clear that any terms which differ from this License are offered by You alone,
not by the Initial Developer or any Contributor. You hereby agree to
indemnify the Initial Developer and every Contributor for any liability
incurred by the Initial Developer or such Contributor as a result of any
such terms You offer.
.
3.7. Larger Works.
.
You may create a Larger Work by combining Covered Code with other code not
governed by the terms of this License and distribute the Larger Work as a
single product. In such a case, You must make sure the requirements of this
License are fulfilled for the Covered Code.
.
4. Inability to Comply Due to Statute or Regulation.
.
If it is impossible for You to comply with any of the terms of this License
with respect to some or all of the Covered Code due to statute, judicial
order, or regulation then You must: (a) comply with the terms of this
License to the maximum extent possible; and (b) describe the limitations and
the code they affect. Such description must be included in the LEGAL file
described in Section 3.4 and must be included with all distributions of the
Source Code. Except to the extent prohibited by statute or regulation, such
description must be sufficiently detailed for a recipient of ordinary skill
to be able to understand it.
.
5. Application of this License.
.
This License applies to code to which the Initial Developer has attached the
notice in Exhibit A and to related Covered Code.
.
6. Versions of the License.
.
6.1. New Versions.
.
Inprise Corporation (''Inprise'') may publish revised and/or new versions of
the License from time to time. Each version will be given a distinguishing
version number.
.
6.2. Effect of New Versions.
.
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 Inprise. No one other than
Inprise has the right to modify the terms applicable to Covered Code created
under this License.
.
6.3. Derivative Works.
.
If You create or use a modified version of this License (which you may only
do in order to apply it to code which is not already Covered Code governed
by this License), You must (a) rename Your license so that the phrases
''Mozilla'', ''MOZILLAPL'', ''MOZPL'', ''Netscape'', "MPL", ''NPL",
"InterBase", "Inprise", "Borland'' or any confusingly similar phrase do not
appear in your license (except to note that your license differs from this
License) and (b) otherwise make it clear that Your version of the license
contains terms which differ from the Mozilla Public License and Netscape
Public License. (Filling in the name of the Initial Developer, Original
Code or Contributor in the notice described in Exhibit A shall not of
themselves be deemed to be modifications of this License.)
.
6.4 Origin of the InterBase Public License.
.
The InterBase public license is based on the Mozilla Public License V 1.1
with the following changes:
.
1. The license is published by Inprise Corporation. Only Inprise Corporation
can modify the terms applicable to Covered Code.
2. The license can be modified and used for code which is not already
governed by this license. Modified versions of the license must be renamed
to avoid confusion with Netscape?s or Inprise?s license and must include a
description of changes from the InterBase Public License.
3. The name of the license in Exhibit A is the "InterBase Public License".
4. The reference to an alternative license in Exhibit A has been removed.
5. Amendments I, II, III, V, and VI have been deleted.
6. Exhibit A, Netscape Public License has been deleted
7. A new amendment (II) has been added, describing the required and
restricted rights to use the trademarks of Inprise Corporation.
.
7. DISCLAIMER OF WARRANTY.
.
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,
MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE
RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU.
SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL
DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN
ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED
HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
.
8. TERMINATION.
.
8.1. This License and the rights granted hereunder will terminate
automatically if You fail to comply with terms herein and fail to cure such
breach within 30 days of becoming aware of the breach. All sublicenses to
the Covered Code which are properly granted shall survive any termination
of this License. Provisions which, by their nature, must remain in effect
beyond the termination of this License shall survive.
.
8.2. If You initiate litigation by asserting a patent infringement claim
(excluding declaratory judgment actions) against Initial Developer or a
Contributor (the Initial Developer or Contributor against whom You file such
action is referred to as "Participant") alleging that:
.
(a) such Participant's Contributor Version directly or indirectly infringes
any patent, then any and all rights granted by such Participant to You under
Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from
Participant terminate prospectively, unless if within 60 days after receipt
of notice You either: (i) agree in writing to pay Participant a mutually
agreeable reasonable royalty for Your past and future use of Modifications
made by such Participant, or (ii) withdraw Your litigation claim with respect
to the Contributor Version against such Participant. If within 60 days of
notice, a reasonable royalty and payment arrangement are not mutually agreed
upon in writing by the parties or the litigation claim is not withdrawn, the
rights granted by Participant to You under Sections 2.1 and/or 2.2
automatically terminate at the expiration of the 60 day notice period
specified above.
.
(b) any software, hardware, or device, other than such Participant's
Contributor Version, directly or indirectly infringes any patent, then any
rights granted to You by such Participant under Sections 2.1(b) and 2.2(b)
are revoked effective as of the date You first made, used, sold, distributed,
or had made, Modifications made by that Participant.
.
8.3. If You assert a patent infringement claim against Participant alleging
that such Participant's Contributor Version directly or indirectly infringes
any patent where such claim is resolved (such as by license or settlement)
prior to the initiation of patent infringement litigation, then the
reasonable value of the licenses granted by such Participant under Sections
2.1 or 2.2 shall be taken into account in determining the amount or value of
any payment or license.
.
8.4. In the event of termination under Sections 8.1 or 8.2 above, all end
user license agreements (excluding distributors and resellers) which have
been validly granted by You or any distributor hereunder prior to termination
shall survive termination.
.
9. LIMITATION OF LIABILITY.
.
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING
NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY
OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF
ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL,
INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE
OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF
SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.
THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR
PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW
THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS
EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
.
10. U.S. GOVERNMENT END USERS.
.
The Covered Code is a ''commercial item,'' as that term is defined in 48
C.F.R. 2.101 (Oct. 1995), consisting of ''commercial computer software'' and
''commercial computer software documentation,'' as such terms are used in 48
C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R.
227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users
acquire Covered Code with only those rights set forth herein.
.
11. MISCELLANEOUS.
.
This License represents the complete agreement concerning subject matter
hereof. If any provision of this License is held to be unenforceable, such
provision shall be reformed only to the extent necessary to make it
enforceable. This License shall be governed by Georgia law provisions (except
to the extent applicable law, if any, provides otherwise), excluding its
conflict-of-law provisions. With respect to disputes in which at least one
party is a citizen of, or an entity chartered or registered to do business
in the United States of America, Any litigation relating to this License
shall be subject to the jurisdiction of the Federal Courts of the Northern
District of Georgia and/or the state courts of Gwinnett County, Georgia,
with the losing party responsible for costs, including without limitation,
court costs and reasonable attorneys' fees and expenses. The application of
the United Nations Convention on Contracts for the International Sale of
Goods is expressly excluded. Any law or regulation which provides that the
language of a contract shall be construed against the drafter shall not
apply to this License.
.
12. RESPONSIBILITY FOR CLAIMS.
.
As between Initial Developer and the Contributors, each party is responsible
for claims and damages arising, directly or indirectly, out of its
utilization of rights under this License and You agree to work with Initial
Developer and Contributors to distribute such responsibility on an equitable
basis. Nothing herein is intended or shall be deemed to constitute any
admission of liability.
.
13. MULTIPLE-LICENSED CODE.
.
Initial Developer may designate portions of the Covered Code as
"Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer
permits you to utilize portions of the Covered Code under Your choice of
the InterBase Public License or the alternative licenses, if any, specified
by the Initial Developer in the file described in Exhibit A.
.
EXHIBIT A - InterBase Public License.
.
``The contents of this file are subject to the InterBase Public License
Version 1.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.interbase.com/IPL.html
.
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
.
The Original Code was created by InterBase Software Corp and its successors.
.
Portions created by Borland/Inprise are Copyright (C) Borland/Inprise.
All Rights Reserved.
.
Contributor(s): ______________________________________.
.
AMENDMENTS
.
I. InterBase and logo. This License does not grant any rights to use the
trademarks "InterBase'', "Java" or "JavaScript" even if such marks are
included in the Original Code or Modifications.
.
II. Trademark Usage.
.
II.1. Advertising Materials. All advertising materials mentioning features
or use of the covered Code must display the following acknowledgement: "This
product includes software developed by Inprise Corporation. "
.
II.2. Endorsements. The names "InterBase," "Inprise," and "Borland" must not
be used to endorse or promote Contributor Versions or Larger Works without
the prior written permission of InterBase.
.
II.3. Product Names. Contributor Versions and Larger Works may not be called
"InterBase" or "InterBase" nor may the word "InterBase" appear in their
names without the prior written permission of Inprise.
License: IDPL-1.0
Initial Developer's PUBLIC LICENSE
Version 1.0
.
1. Definitions
.
1.0 "Commercial Use" means distribution or otherwise making the Covered
Code available to a third party.
.
1.1 ''Contributor'' means each entity that creates or contributes to the
creation of Modifications.
.
1.2 ''Contributor Version'' means the combination of the Original Code, prior
Modifications used by a Contributor, and the Modifications made by that
particular Contributor.
.
1.3. ''Covered Code'' means the Original Code or Modifications or the
combination of the Original Code and Modifications, in each case including
portions thereof.
.
1.4. ''Electronic Distribution Mechanism'' means a mechanism generally
accepted in the software development community for the electronic transfer of
data.
.
1.5. ''Executable'' means Covered Code in any form other than Source Code.
.
1.6. ''Initial Developer'' means the individual or entity identified as the Initial
Developer in the Source Code notice required by Exhibit A.
.
1.7. ''Larger Work'' means a work which combines Covered Code or portions
thereof with code not governed by the terms of this License.
.
1.8. ''License'' means this document.
.
1.8.1. "Licensable" means having the right to grant, to the maximum
extent possible, whether at the time of the initial grant or subsequently
acquired, any and all of the rights conveyed herein.
.
1.9. ''Modifications'' means any addition to or deletion from the substance or
structure of either the Original Code or any previous Modifications. When
Covered Code is released as a series of files, a Modification is:
.
Any addition to or deletion from the contents of a file containing Original
Code or previous Modifications.
.
Any new file that contains any part of the Original Code or previous
Modifications.
.
1.10. ''Original Code'' means Source Code of computer software code which
is described in the Source Code notice required by Exhibit A as Original Code,
and which, at the time of its release under this License is not already Covered
Code governed by this License.
.
1.10.1. "Patent Claims" means any patent claim(s), now owned or
hereafter acquired, including without limitation, method, process, and
apparatus claims, in any patent Licensable by grantor.
.
1.11. ''Source Code'' means the preferred form of the Covered Code for
making modifications to it, including all modules it contains, plus any associated
interface definition files, scripts used to control compilation and installation of
an Executable, or source code differential comparisons against either the
Original Code or another well known, available Covered Code of the
Contributor's choice. The Source Code can be in a compressed or archival
form, provided the appropriate decompression or de-archiving software is
widely available for no charge.
.
1.12. "You'' (or "Your") means an individual or a legal entity exercising rights
under, and complying with all of the terms of, this License or a future version
of this License issued under Section 6.1. For legal entities, "You'' includes any
entity w hich controls, is controlled by, or is under common control with You.
For purposes of this definition, "control'' means (a) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (b) ownership of more than fifty percent (50%) of
the outstanding shares or beneficial ownership of such entity.
.
.
2. Source Code License.
.
.
2.1. The Initial Developer Grant. The Initial Developer hereby grants You a
world-wide, royalty-free, non-exclusive license, subject to third party intellectual
property claims:
.
(a) under intellectual property rights (other than patent or trademark)
Licensable by Initial Developer to use, reproduce, modify, display, perform,
sublicense and distribute the Original Code (or portions thereof) with or without
Modifications, and/or as part of a Larger Work; and
.
(b) under Patents Claims infringed by the making, using or selling of Original
Code, to make, have made, use, practice, sell, and offer for sale, and/or
otherwise dispose of the Original Code (or portions thereof).
.
(c) the licenses granted in this Section 2.1(a) and (b) are effective on the date
Initial Developer first distributes Original Code under the terms of this License.
.
d) Notwithstanding Section 2.1(b) above, no patent license is granted:
.
1) for code that You delete from the Original Code;
.
2) separate from the Original Code; or
.
3) for infringements caused by:
.
i) the modification of the Original Code or
.
ii) the combination of the Original Code with other software or
devices.
.
2.2. Contributor Grant. Subject to third party intellectual property claims, each
Contributor hereby grants You a world-wide, royalty-free, non-exclusive license
.
(a) under intellectual property rights (other than patent or trademark)
Licensable by Contributor, to use, reproduce, modify, display, perform,
sublicense and distribute the Modifications created by such Contributor (or
portions thereof) either on an unmodified basis, with other Modifications, as
Covered Code and/or as part of a Larger Work; and
.
(b) under Patent Claims infringed by the making, using, or selling of
Modifications made by that Contributor either alone and/or in combination with
its Contributor Version (or portions of such combination), to make, use, sell,
offer for sale, have made, and/or otherwise dispose of: 1) Modifications made
by that Contributor (or portions thereof); and 2) the combination of
Modifications made by that Contributor with its Contributor Version (or portions
of such combination).
.
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date
Contributor first makes Commercial Use of the Covered Code.
.
(d) Notwithstanding Section 2.2(b) above, no patent license is granted:
.
1) for any code that Contributor has deleted from the Contributor
Version;
.
2) separate from the Contributor Version;
.
3) for infringements caused by:
.
i) third party modifications of Contributor Version or
.
ii) the combination of Modifications made by that Contributor with
other software (except as part of the Contributor Version) or
other devices; or
.
4) under Patent Claims infringed by Covered Code in the absence of
Modifications made by that Contributor.
.
.
3. Distribution Obligations.
.
.
3.1. Application of License. The Modifications which You create or to which
You contribute are governed by the terms of this License, including without
limitation Section 2.2. The Source Code version of Covered Code may be
distributed only under the terms of this License or a future version of this
License released under Section 6.1, and You must include a copy of this
License with every copy of the Source Code You distribute. You may not offer
or impose any terms on any Source Code version that alters or restricts the
applicable version of this License or the recipients' rights hereunder. However,
You may include an additional document offering the additional rights described
in Section 3.5.
.
.
3.2. Availability of Source Code. Any Modification which You create or to
which You contribute must be made available in Source Code form under the
terms of this License either on the same media as an Executable version or via
an accepted Electronic Distribution Mechanism to anyone to whom you made
an Executable version available; and if made available via Electronic Distribution
Mechanism, must remain available for at least twelve (12) months after the
date it initially became available, or at least six (6) months after a subsequent
version of that particular Modification has been made available to such
recipients. You are responsible for ensuring that the Source Code version
remains available even if the Electronic Distribution Mechanism is maintained by
a third party.
.
.
3.3. Description of Modifications. You must cause all Covered Code to
which You contribute to contain a file documenting the changes You made to
create that Covered Code and the date of any change. You must include a
prominent statement that the Modification is derived, directly or indirectly, from
Original Code provided by the Initial Developer and including the name of the
Initial Developer in
.
(a) the Source Code, and
.
(b) in any notice in an Executable version or related documentation in
which You describe the origin or ownership of the Covered Code.
.
.
3.4. Intellectual Property Matters
.
a) Third Party Claims. If Contributor has knowledge that a license under
a third party's intellectual property rights is required to exercise the
rights granted by such Contributor under Sections 2.1 or 2.2,
Contributor must include a text file with the Source Code distribution
titled "LEGAL'' which describes the claim and the party making the claim
in sufficient detail that a recipient will know whom to contact. If
Contributor obtains such knowledge after the Modification is made
available as described in Section 3.2, Contributor shall promptly modify
the LEGAL file in all copies Contributor makes available thereafter and
shall take other steps (such as notifying appropriate mailing lists or
newsgroups) reasonably calculated to inform those who received the
Covered Code that new knowledge has been obtained.
.
(b) Contributor APIs. If Contributor's Modifications include an application
programming interface and Contributor has knowledge of patent
licenses which are reasonably necessary to implement that API,
Contributor must also include this information in the LEGAL file.
.
.
(c) Representations. Contributor represents that, except as disclosed
pursuant to Section 3.4(a) above, Contributor believes that Contributor's
Modifications are Contributor's original creation(s) and/or Contributor
has sufficient rights to grant the rights conveyed by this License.
.
.
3.5. Required Notices. You must duplicate the notice in Exhibit A in each file
of the Source Code. If it is not possible to put such notice in a particular Source
Code file due to its structure, then You must include such notice in a location
(such as a relevant directory) where a user would be likely to look for such a
notice. If You created one or more Modification(s) You may add your name as
a Contributor to the notice described in Exhibit A. You must also duplicate this
License in any documentation for the Source Code where You describe
recipients' rights or ownership rights relating to Covered Code. You may
choose to offer, and to charge a fee for, warranty, support, indemnity or
liability obligations to one or more recipients of Covered Code. However, You
may do so only on Your own behalf, and not on behalf of the Initial Developer
or any Contributor. You must make it absolutely clear than any such warranty,
support, indemnity or liability obligation is offered by You alone, and You
hereby agree to indemnify the Initial Developer and every Contributor for any
liability incurred by the Initial Developer or such Contributor as a result of
warranty, support, indemnity or liability terms You offer.
.
.
3.6. Distribution of Executable Versions. You may distribute Covered
Code in Executable form only if the requirements of Section 3.1-3.5 have been
met for that Covered Code, and if You include a notice stating that the Source
Code version of the Covered Code is available under the terms of this License,
including a description of how and where You have fulfilled the obligations of
Section 3.2. The notice must be conspicuously included in any notice in an
Executable version, related documentation or collateral in which You describe
recipients' rights relating to the Covered Code. You may distribute the
Executable version of Covered Code or ownership rights under a license of
Your choice, which may contain terms different from this License, provided
that You are in compliance with the terms of this License and hat the license
for the Executable version does not attempt to limit or alter the recipient's rights
in the Source Code version from the rights set forth in this License. If You
distribute the Executable version under a different license You must make it
absolutely clear that any terms which differ from this License are offered by
You alone, not by the Initial Developer or any Contributor. You hereby agree to
indemnify the Initial Developer and every Contributor for any liability incurred by
the Initial Developer or such Contributor as a result of any such terms You
offer.
.
.
3.7. Larger Works. You may create a Larger Work by combining Covered
Code with other code not governed by the terms of this License and distribute
the Larger Work as a single product. In such a case, You must make sure the
requirements of this License are fulfilled for the Covered Code.
.
.
4. Inability to Comply Due to Statute or Regulation.
.
.
If it is impossible for You to comply with any of the terms of this License with respect
to some or all of the Covered Code due to statute, judicial order, or regulation then You
must:
.
(a) comply with the terms of this License to the maximum extent possible; and
.
(b) describe the limitations and the code they affect. Such description must be
included in the LEGAL file described in Section 3.4 and must be included with
all distributions of the Source Code. Except to the extent prohibited by statute
or regulation, such description must be sufficiently detailed for a recipient of
ordinary skill to be able to understand it.
.
.
5. Application of this License.
.
.
This License applies to code to which the Initial Developer has attached the notice in
Exhibit A and to related Covered Code.
.
.
6. Versions of the License.
.
.
6.1. New Versions. The Initial Developer of this code may publish revised
and/or new versions of the License from time to time. Each version will be
given a distinguishing version number.
.
.
6.2. Effect of New Versions. 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
Initial Developer. No one other than the Initial Developer has the right to modify
the terms applicable to Covered Code created under this License.
.
.
6.3. Derivative Works. If You create or use a modified version of this License
(which you may only do in order to apply it to code which is not already
Covered Code governed by this License), You must
.
(a) rename Your license so that the phrases ''Mozilla'', ''MOZILLAPL'',
''MOZPL'', ''Netscape'', "MPL", ''NPL", or any confusingly similar phrases
do not appear in your license (except to note that your license differs
from this License) and
.
(b) otherwise make it clear that Your version of the license contains
terms which differ from the Mozilla Public License and Netscape Public
License. (Filling in the name of the Initial Developer, Original Code or
Contributor in the notice described in Exhibit A shall not of themselves
be deemed to be modifications of this License.)
.
.
6.4 Origin of the Initial Developer's Public License. The Initial Developer's
Public License is based on the Mozilla Public License V 1.1 with the following
changes:
.
1) The license is published by the Initial Developer of this code. Only the
Initial Developer can modify the terms applicable to Covered Code.
.
2) The license can be modified and used for code which is not already
governed by this license. Modified versions of the license must be
renamed to avoid confusion with Netscape's license Initial Developer's's
license and must include a description of changes from the Initial
Developer's Public License.
.
3) The name of the license in Exhibit A is the "Initial Developer's Public
License".
.
4) The reference to an alternative license in Exhibit A has been removed.
.
5) Amendments I, II, III, V, and VI have been deleted.
.
6) Exhibit A, Netscape Public License has been deleted
.
.
7. DISCLAIMER OF WARRANTY.
.
.
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS,
MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE
ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS
WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
DISCLAIMER.
.
.
8. TERMINATION.
.
.
8.1. This License and the rights granted hereunder will terminate
automatically if You fail to comply with terms herein and fail to cure such
breach within 30 days of becoming aware of the breach. All sublicenses to the
Covered Code which are properly granted shall survive any termination of this
License. Provisions which, by their nature, must remain in effect beyond the
termination of this License shall survive. .
8.2. If You initiate litigation by asserting a patent infringement claim
(excluding declaratory judgment actions) against Initial Developer or a
Contributor (the Initial Developer or Contributor against whom You file such
action is referred to as "Participant") alleging that:
.
(a) such Participant's Contributor Version directly or indirectly infringes
any patent, then any and all rights granted by such Participant to You
under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice
from Participant terminate prospectively, unless if within 60 days after
receipt of notice You either:
.
(i) agree in writing to pay Participant a mutually agreeable
reasonable royalty for Your past and future use of Modifications
made by such Participant, or
.
(ii) withdraw Your litigation claim with respect to the Contributor
Version against such Participant.
.
.
If within 60 days of notice, a reasonable royalty and payment
arrangement are not mutually agreed upon in writing by the parties or
the litigation claim is not withdrawn, the rights granted by Participant to
You under Sections 2.1 and/or 2.2 automatically terminate at the
expiration of the 60 day notice period specified above.
.
(b) any software, hardware, or device, other than such Participant's
Contributor Version, directly or indirectly infringes any patent, then any
rights granted to You by such Participant under Sections 2.1(b) and
2.2(b) are revoked effective as of the date You first made, used, sold,
distributed, or had made, Modifications made by that Participant.
.
8.3. If You assert a patent infringement claim against Participant alleging that
such Participant's Contributor Version directly or indirectly infringes any patent
where such claim is resolved (such as by license or settlement) prior to the
initiation of patent infringement litigation, then the reasonable value of the
licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken
into account in determining the amount or value of any payment or license.
.
8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user
license agreements (excluding distributors and resellers) which have been
validly granted by You or any distributor hereunder prior to termination shall
survive termination.
.
.
9. LIMITATION OF LIABILITY.
.
.
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED
CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON
FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF
GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY
AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY
SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS
LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR
PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT
APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT
ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL
DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
.
.
10. U.S. GOVERNMENT END USERS.
.
.
The Covered Code is a ''commercial item,'' as that term is defined in 48 C.F.R. 2.101
(Oct. 1995), consisting of ''commercial computer software'' and ''commercial computer
software documentation,'' as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).
Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June
1995), all U.S. Government End Users acquire Covered Code with only those rights
set forth herein.
.
.
11. MISCELLANEOUS.
.
.
This License represents the complete agreement concerning subject matter hereof. If
any provision of this License is held to be unenforceable, such provision shall be
reformed only to the extent necessary to make it enforceable. This License shall be
governed by California law provisions (except to the extent applicable law, if any,
provides otherwise), excluding its conflict-of-law provisions. With respect to disputes
in which at least one party is a citizen of, or an entity chartered or registered to do
business in the United States of America, any litigation relating to this License shall be
subject to the jurisdiction of the Federal Courts of the Northern District of California,
with venue lying in Santa Clara County, California, with the losing party responsible for
costs, including without limitation, court costs and reasonable attorneys' fees and
expenses. The application of the United Nations Convention on Contracts for the
International Sale of Goods is expressly excluded. Any law or regulation which
provides that the language of a contract shall be construed against the drafter shall
not apply to this License.
.
.
12. RESPONSIBILITY FOR CLAIMS.
.
.
As between Initial Developer and the Contributors, each party is responsible for claims
and damages arising, directly or indirectly, out of its utilization of rights under this
License and You agree to work with Initial Developer and Contributors to distribute
such responsibility on an equitable basis. Nothing herein is intended or shall be
deemed to constitute any admission of liability.
.
.
13. MULTIPLE-LICENSED CODE.
.
.
Initial Developer may designate portions of the Covered Code as "Multiple-Licensed".
"Multiple-Licensed" means that the Initial Devpoeloper permits you to utilize portions of
the Covered Code under Your choice of the IDPL or the alternative licenses, if any,
specified by the Initial Developer in the file described in Exhibit A.
.
EXHIBIT A -Initial Developer's Public License.
.
The contents of this file are subject to the Initial Developer's Public License Version 1.0
(the "License"); you may not use this file except in compliance with the License. You
may obtain a copy of the License at http://www.ibphoenix.com/idpl.html Software
distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY
OF ANY KIND, either express or implied. See the License for the specific language
governing rights and limitations under the License.
.
The Original Code is ______________________________________.
.
The Initial Developer of the Original Code is ________________________.
.
Portions created by ______________________ are Copyright (C) ______
_______________________.
.
All Rights Reserved.
.
Contributor(s): ______________________________________.
|