aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/compiler.json
blob: 493a73d463124c89ab87ebc744479b8e93fe933e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "contractsDir": "../contracts/src/",
    "compilerSettings": {
        "optimizer": {
            "enabled": true,
            "runs": 1000000
        },
        "outputSelection": {
            "*": {
                "*": [
                    "abi",
                    "evm.bytecode.object",
                    "evm.bytecode.sourceMap",
                    "evm.deployedBytecode.object",
                    "evm.deployedBytecode.sourceMap"
                ]
            }
        }
    }
}
='#n98'>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 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712
2000-11-13  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Update the gal reqiurement version.

2000-11-10  Michael Meeks  <michael@helixcode.com>

    * configure.in: Require Bonobo >= 0.29, due to the XSync
    fix.

2000-11-09  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Require gal 0.2.99.1.

2000-11-06  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Require gal 0.2.1.3

2000-11-06  Dan Winship  <danw@helixcode.com>

    * configure.in (GTKHTML_LIBS): ${prefix} doesn't get defaulted
    until the end of configure, so check if it's "NONE" and use
    ${ac_default_prefix} if so.

2000-11-06  Radek Doulik  <rodo@helixcode.com>

    * configure.in (GTKHTML_LIBS): also look for HTMLEditor.idl in
    ${prefix}/share/gtkhtml

2000-11-03  Radek Doulik  <rodo@helixcode.com>

    * configure.in (BONOBO_HTML_GNOME_CFLAGS): raise required version
    number to 0.8
    added check for HTMLEditor.idl file

2000-11-02  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Require gal 0.2.1.2.

2000-11-02  Michael Meeks  <michael@helixcode.com>

    * configure.in: Require Bonobo-0.27+

2000-11-01  Gediminas Paulauskas  <menesis@delfi.lt>

    * addressbook/ename/.cvsignore, addressbook/gui/minicard/.cvsignore,
    calendar/doc/.cvsignore, widgets/e-paned/.cvsignore,
    widgets/e-table/.cvsignore, widgets/e-text/.cvsignore: added these
    files.
    * calendar/gui/.cvsignore, composer/.cvsignore,
    executive-summary/.cvsignore, executive-summary/component/.cvsignore,
    po/.cvsignore: added some files to ignore.

    * addressbook/gui/component/addressbook-factory.c, mail/main.c,
    shell/main.c, calendar/gui/main.c, notes/main.c,
    executive-summary/component/main.c: call *textdomain() only if
    ENABLE_NLS is defined.

2000-11-01  Gediminas Paulauskas  <menesis@delfi.lt>

    * configure.in: added lt to ALL_LINGUAS.
    
2000-10-30  Dan Winship  <danw@helixcode.com>

    * configure.in: fix up printing of kerberos configuration status

2000-10-27  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Require gal cvs version.

2000-10-27    <jpr@helixcode.com>

    * tools/killev: Kill executive summary components

2000-10-25  Iain Holmes  <iain@helixcode.com>

    * configure.in: Added executive-summary stuff

    * Makefile.am: Added the executive-summary subdirs.

2000-10-23  Dan Winship  <danw@helixcode.com>

    * notes/Makefile.am (INCLUDES): Update EVOLUTION_LOCALEDIR

    * configure.in: set localedir here to use in Makefiles.
    (AM_GNOME_GETTEXT doesn't actually always set it to
    $(datadir)/locale).

2000-10-23  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Updated the gal check to check for gal 0.2.1.

2000-10-22  Robert Brady  <rwb197@zepler.org>

    * configure.in: Added "en_GB" to ALL_LINGUAS.

2000-10-20  Michael Meeks  <michael@helixcode.com>

    * notes/component-factory.c (control_activate_cb): 

2000-10-19  Christopher James Lahey  <clahey@helixcode.com>

    * NEWS (General, Addressbook): Updated NEWS for addressbook and
    ETable.

2000-10-19  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Updated the gal check to check for gal 0.2.

2000-10-19  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in (EVOLUTION_MICRO_VERSION): 6.

    * Makefile.am (EXTRA_DIST): Remove `evolution.spec.in'.
    (dist-hook:): Removed.

2000-10-18  Michael Meeks  <michael@helixcode.com>

    * notes/component-factory.c (control_activate, control_deactivate),
    (create_view): cripple, not worth updating to new UI code.

2000-10-17  Tuomas Kuosmanen  <tigert@helixcode.com>

    * art/splash.png: This looks happier than the dark piece of rusty
    metal. And the Big Dig in Boston is ugly looking too. Finnish
    road poles are much more cool!

2000-10-15  Peter Williams  <peterw@helixcode.com>

    * tools/verify-evolution-install.sh (libcamelvee): Check
    for linkage against version 0.5 libcamelvee, not version 0.3.
    This should track with the version of Evolution itself.
    (rm -f $ldddfile): Remove a temporary file.

2000-10-15  Kjartan Maraas  <kmaraas@gnome.org>

    * configure.in: Added "nn" to ALL_LINGUAS.
    
2000-10-14  Ettore Perazzoli  <ettore@helixcode.com>

    * art/Makefile.am (images_DATA): Add `splash.png'.

2000-10-14  Tuomas Kuosmanen  <tigert@helixcode.com>

    * art/splash.png: umm.. it's a splash screen image.

2000-10-11  JP Rosevear  <jpr@helixcode.com>

    * configure.in: Fix bonobo error message

2000-10-11  Jesse Pavel     <jpavel@helixcode.com>

    * data/evolution.keys: Added support for the text/calendar and
    text/x-calendar MIME types.

2000-10-10  Gediminas Paulauskas  <menesis@delfi.lt>

    * configure.in: Added lt to ALL_LINGUAS.

2000-10-10  Tuomas Kuosmanen  <tigert@helixcode.com>

    * calendar/gui/recur.xpm: Updated round-we-go-thingy icon..

2000-10-06  Chris Toshok  <toshok@helixcode.com>

    * art/empty.xpm: make it transparent instead of white.

2000-10-06  Christophe Merlet  <christophe@merlet.net>

    * *.desktop: Added french strings.

2000-10-05  Dan Winship  <danw@helixcode.com>

    * tools/Makefile.am (EXTRA_DIST): Add verify-evolution-install.sh
    to EXTRA_DIST

2000-10-05  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Check for isblank

    * config.h.in: 
    * acconfig.h: #undef HAVE_ISBLANK

2000-10-05  Michael Meeks  <michael@helixcode.com>

    * configure.in: Bump Bonobo requirement to >= 0.20

2000-10-05  Iain Holmes  <iain@helixcode.com>

    * executive-summary/*: Added the executive summary stuff.

    * ui/evolution-executive-summary.xml: New.

    * art/add-service.png: New icon.

2000-10-03  Matt Bissiri  <bissiri@eecs.umich.edu>

    * ui/evolution-addressbook-ldap.xml,
    * ui/evolution-addressbook.xml,
    * ui/evolution-calendar.xml,
    * ui/evolution-contact-editor.xml:
    Fixed typo `_decr' -> `_descr', so some missing tooltips will appear.
    Also fixed some typos in descr values.

2000-09-29  Peter Williams  <peterw@helixcode.com>

    * ui/Makefile.am (XML_FILES): Install the new evolution-subscribe.xml
    file.

2000-09-29  Chris Toshok  <toshok@helixcode.com>

    * ui/evolution-mail.xml: add a Settings/Manage Subscriptions...
    menu item.

    * ui/evolution-subscribe.xml: add a File/Close menu item.

2000-09-28  Chris Toshok  <toshok@helixcode.com>

    * ui/evolution-subscribe.xml: add a FolderSearch control, and
    change "Refresh" to "RefreshList".

2000-09-27  Chris Toshok  <toshok@helixcode.com>

    * ui/evolution-subscribe.xml: add an Refresh List button..

2000-09-27  Chris Toshok  <toshok@helixcode.com>

    * ui/Makefile.am (XML_FILES): add evolution-subscribe.xml.

    * ui/evolution-subscribe.xml: new file.

2000-09-25  Jeffrey Stedfast  <fejj@helixcode.com>

    * ui/evolution-mail.xml: Moved the (un)select all menu items over
    to the Edit menu - this looks nicer.

2000-09-25  Jeffrey Stedfast  <fejj@helixcode.com>

    * ui/evolution-mail.xml: Added some new menu items to the Message
    menu like (un)select all and moved "mark as read" to the Message
    menu.

2000-09-25  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Moved addressbook/ename to e-util/ename so
    generate e-util/ename/Makefile and don't generate
    addressbook/ename/Makefile

2000-09-23  Tuomas Kuosmanen  <tigert@localhost>

    * art/attachment.xpm
    * art/add-attachment.png: OOPS. The attachment.xpm was not the one 
    I thought, so I accidentally replaced the paperclip icon in the mail
    list column, which wasnt my intention. I hope this works now. The old 
    one is back, instead the toolbar icon to add attachment is now called
    "add-attachment.png" as you can see also from above. Bummer. Sorry :)

2000-09-22  Christopher James Lahey  <clahey@helixcode.com>

    * libversit/vcc.y: Fixed some warnings.  Fixed a bug where quoted
    printable fields were reading in semi-colons that should have been
    field separators.

2000-09-22  Christopher James Lahey  <clahey@helixcode.com>

    * ui/Makefile.am: Added evolution-addressbook-ldap.xml.

    * ui/evolution-addressbook-ldap.xml: New file.  (A Variation on
    evolution-addressbook.xml)

    * ui/evolution-addressbook.xml: Added View All and Stop buttons.

2000-09-21  Federico Mena Quintero  <federico@helixcode.com>

    * ui/evolution-calendar.xml: Removed the AboutCalendar stuff.

    * ui/evolution.xml: Fix mis-spelling of "calendar".

2000-09-21  Michael Meeks  <michael@helixcode.com>

    * notes/component-factory.c (control_activate): upd.

2000-09-20  Christopher James Lahey  <clahey@helixcode.com>

    * ui/.cvsignore: Added a cvsignore file here.

2000-09-20  Christopher James Lahey  <clahey@helixcode.com>

    * ui/Makefile.am (XML_FILES): Added evolution-contact-editor.xml.

    * ui/evolution-contact-editor.xml: New file for the UI for the
    evolution contact editor.

2000-09-20  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/attachment.xpm
    * art/send.png: new icons for "compose mail" dialog...

2000-09-19  Dan Winship  <danw@helixcode.com>

    * configure.in: alter the krb4 check a bit to deal with configure
    cache suckage. (If you do AC_CHECK_LIB with the same library and
    function name but different LDFLAGS, it will still use the result
    of the previous check. So use a different function the second
    time.)

2000-09-18  Dan Winship  <danw@helixcode.com>

    * README: add gal as a dependency

2000-09-18  Jeffrey Stedfast  <fejj@helixcode.com>

    * art/score-*.xpm: stupid looking icons for use with displaying
    scores in the message-list view. These need a makeover BADLY ;-)

2000-09-18  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added check for gnome-app-lib.  Removed
    directories that have been moved to gal.

2000-09-15  Dan Winship  <danw@helixcode.com>

    * configure.in, evolution.spec.in: remove spec file. We haven't
    been keeping it up to date, and it's only good for RH anyway, and
    if people really want a spec file they can get it from our SRPMs.

2000-09-07  Michael Meeks  <michael@helixcode.com>

    * configure.in: Require Bonobo 0.19

2000-09-13  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added widgets/e-reflow/Makefile.  Replaced
    addressbook/gui/minicard/Makefile with
    addressbook/gui/widgets/Makefile.

2000-09-13  Tuomas Kuosmanen  <tigert@localhost>

    * art/pin.png: added icon for the folder tree "pin down" button

2000-09-12  JP Rosevear  <jpr@helixcode.com>

    * NEWS (Calendar): Pilot stuff

2000-09-12  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: The notes subdir isn't actually used, so remove
    it.

2000-09-12  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: 0.5.

2000-09-12  Jeffrey Stedfast  <fejj@helixcode.com>

    * NEWS (Mailer): Added Sent/Outbox feature descriptions

2000-09-12  Dan Winship  <danw@helixcode.com>

    * NEWS (Mailer): add most (but not all) 0.5 Mailer features

    * configure.in: s/Sentbox/Sent/

2000-09-12  Ettore Perazzoli  <ettore@helixcode.com>

    * art/Makefile.am (buttonsdir): Install the new button icons into
    `$(datadir)/images/evolution/buttons'.

2000-09-11  Tuomas Kuosmanen  <tigert@helixcode.com>

    * art/fetch-mail.png
    * art/compose-message.png
    * art/reply.png
    * art/reply-to-all.png
    * art/forward.png
    * art/move-message.png
    * art/copy-message.png: New icons for the main window toolbar

2000-09-11  Christopher James Lahey  <clahey@helixcode.com>

    * NEWS: Added 0.5 changes for ETable and Addressbook.

2000-09-07  Dan Winship  <danw@helixcode.com>

    * README: Add a mention of the verify-evolution-install.sh script
    in tools/.

2000-09-03  Jeffrey Stedfast  <fejj@helixcode.com>

    Reversed my last change as it broke configure, how do I get it so
    that we can do folders with spaces in the name!?

2000-09-03  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Renamed default_user/local/Sentbox to
    default_user/local/Sent\ Mail as Ettore and Danw are picky about
    folder names 

2000-09-02  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added calendar/conduits/Makefile,
    calendar/conduits/calendar/Makefile and
    calendar/conduits/todo/Makefile to the list of makefiles to
    output.

2000-09-01  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Add default_user/local/Sentbox/Makefile to the
    list of makefiles to output

2000-08-31  Peter Williams  <peterw@helixcode.com>

    * configure.in (kerberos): Check and see if krb_sendauth needs
    prototyping. (#define NEED_KRB_SENDAUTH_PROTO). Also check
    for a libkrb that doesn't need -ldes.

    * acconfig.h: #undef it

2000-08-30  Lauris Kaplinski  <lauris@helixcode.com>

    * configure.in: AC_DEFINE(USING_GNOME_PRINT_0_20)

    * acconfig.h: #undef that

2000-08-30  Peter Williams  <peterw@helixcode.com>

    * configure.in: Robustify the kerberos checks.

2000-08-29  Dan Winship  <danw@helixcode.com>

    * configure.in, acconfig.h: decruft

2000-08-28  Jesus Bravo Alvarez  <jba@pobox.com>

    * configure.in: Added Portuguese (pt) to ALL_LINGUAS

2000-08-26  JP Rosevear  <jpr@helixcode.com>

    * configure.in: Require oafized bonobo

2000-08-24  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in: Ahem.  If you add dependencies on libraries, make
    sure things still build.  Fixed the libunicode foo.

2000-08-22  Lauris Kaplinski  <lauris@helixcode.com>

    * widgets/e-text/e-text.c (_get_position_from_xy): Don't crash on illegal string

2000-08-22  Lauris Kaplinski  <lauris@helixcode.com>

    * widgets/e-text/e-text.c (e_text_event): Use e_utf8_from_gtk_event_key
    to translate GDK_KEY_PRESS to insertable UTF-8 string

2000-08-22  Christopher James Lahey  <clahey@helixcode.com>

    * announcement-0.4.1.txt: Updated dependency list.

2000-08-22  Lauris Kaplinski  <lauris@helixcode.com>

    * widgets/e-text/e-text.c: Use byte based UTF-8 syntax
    
2000-08-22  Christopher James Lahey  <clahey@helixcode.com>

    * announcement-0.4.1.txt: Announcement message

2000-08-19  Mathieu Lacage <mathieu@gnu.org>

    Fixes compile for non-standard prefixes. Mainly in idl
    compilation where -I`gnome-config --datadir`/idl is replaced
    by `gnome-config --cflags idl` (ugly but it works at least)
    and add some random _CFLAGS here and there and _LIBS for linking.
    * addressbook/gui/component/select-names/Makefile.am
    * composer/Makefile.am
    * e-util/Makefile.am
    * filter/Makefile.am
    * mail/Makefile.am
    * shell/Makefile.am
    * widgets/e-text/Makefile.am
    

2000-08-21  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-paned/e-hpaned.c, widgets/e-paned/e-paned.c,
    widgets/e-paned/e-paned.h, widgets/e-paned/e-vpaned.c: Added code
    to make handle position persist across resizes.

2000-08-20  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Fixed a warning.

2000-08-20  arik devens  <arik@helixcode.com>

    * widgets/e-text/Makefile.am (INCLUDES): added UNICODE_CFLAGS
    support so that compiling in an alternate prefix works.

2000-08-19  Lauris Kaplinski  <lauris@helixcode.com>

    * widgets/e-text/e-text.h: Commented out Suckfont, added EFont
    * widgets/e-text/e-text.c: Ported to UTF-8

2000-08-18  Peter Williams  <peterw@helixcode.com>

    * configure.in (gnome-vfs): Check for new enough gnome-vfs
    (needs gnome_vfs_mime_get_default_action_without_fallback)

2000-08-14  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in (AC_OUTPUT): Generate
    doc/devel/calendar/cal-util/Makefile.

2000-08-14  Peter Williams  <peterw@helixcode.com>

    * configure.in: Check for db1/db.h too, which is what
    RH 7.0 uses for the old db headers. Patch from Kenny Graunke
    <kwg@teleport.com>

2000-08-13  Chris Toshok  <toshok@helixcode.com>

    * configure.in: offer --enable-pilot-conduits to add pilot
    conduits if the user wants them.

2000-08-13  Dan Winship  <danw@helixcode.com>

    * configure.in: Fix the name of the binary to look for for PGP5

2000-08-12  Michael Meeks  <michael@helixcode.com>

    * configure.in: Check for Bonobo 0.17

2000-08-12  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added addressbook/gui/search/Makefile.

2000-08-12  Dan Winship  <danw@helixcode.com>

    * configure.in, README: Depend on gnome-vfs 0.3

2000-08-10  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/.cvsignore, widgets/e-text/Makefile.am,
    widgets/e-text/e-entry-test.c: Added a test for the EEntry widget.

2000-08-09  Dan Winship  <danw@helixcode.com>

    * data/evolution.keys: New file containing MIME keys for
    Evolution. Currently just the addressbook minicard display.

    * data/Makefile.am (mime_DATA): add evolution.keys

2000-08-09  Peter Williams  <peterw@helixcode.com>

    * configure.in (EVOLUTION_DIR): Remove the warning about camel-async.

2000-08-08  Peter Williams  <peterw@helixcode.com>

    * Makefile.am (SUBDIRS): Reenable the calendar. Oops.

2000-08-05  Dan Winship  <danw@helixcode.com>

    * tools/verify-evolution-install.sh: Look for oafinfo files in
    oaf's prefix, not gnome-libs's. Allow binaries to be installed
    anywhere in $PATH.

    * configure.in, README: Update the README and the text of the
    Bonobo configure check to match reality. Remove the 0.15 vs
    0.15-and-a-half check since we require post-0.16 now.

2000-08-03  JP Rosevear  <jpr@helixcode.com>

    * configure.in: Remove gconf check

2000-08-03 Alastair McKinstry <mckinstry@computer.org>

    * configure.in (ALL_LINGUAS): Add Irish translation

2000-08-02  Michael Meeks  <michael@helixcode.com>

    * configure.in: update for BonoboX

2000-08-02  Dan Winship  <danw@helixcode.com>

    * configure.in (AC_OUTPUT): Add camel/providers/nntp

2000-08-02  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Made clicking choose the right
    character even if show_borders is on.

2000-08-01  Dan Winship  <danw@helixcode.com>

    * configure.in, acconfig.h: Add checks for GPG, PGP 5 and PGP 2.
    Only record the first one found.

2000-08-01  Damon Chaplin  <damon@helixcode.com>

    * configure.in (AC_OUTPUT): removed calendar/doc/*

2000-08-01  Not Zed  <NotZed@HelixCode.com>

    * configure.in: Added mh provider.

2000-07-27  Dan Winship  <danw@helixcode.com>

    * configure.in: Check for gconf_client_get_default (gconf 0.5 vs
    newer)

2000-07-26  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Bump version number to 0.3.

2000-07-26  Peter Williams  <peterw@helixcode.com>

    * widgets/e-table/e-table-scrolled.c (right_click_proxy): Default
    the return value to 0.

2000-07-25  Dan Winship  <danw@helixcode.com>

    * configure.in: some unrelated changes: check for mkdtemp,
    gnome_vfs_mime_get_default_action_without_fallback, and a
    setuid/setgid movemail binary.

    * acconfig.h: add MOVEMAIL_PATH

2000-07-25  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added addressbook/conduit/Makefile.

2000-07-21  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Made focus in not change your selection
    position.

2000-07-21  Szabolcs BAN <shooby@gnome.hu>

    * calendar/gui/event-editor.c: Typo fix

2000-07-20  Peter Williams  <peterw@helixcode.com>

    * configure.in (THREADS_CFLAGS): Make threads mandatory
    again.

2000-07-19  Fatih Demir <kabalak@gmx.net>
    
    * evolution.desktop & data/evolution.desktop: Added
        the Turkish desktop entries.

2000-07-17  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in (EVOLUTION_DIR): Typo fix.

    * configure.in (AC_OUTPUT): Added the doc/devel Makefiles.
    (EVOLUTION_DIR): Substitute EVOLUTION_DIR for the top_srcdir.
    Added checks for gtk-doc.

2000-07-13  Peter Williams  <peterw@curious-george.helixcode.com>

    * configure.in (end): Bigass warnings for camel-async branch
    (remove them later).

2000-07-12  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in: Make gnome-print-0.20 mandatory.  We will bail out
    with CVS HEAD versions to avoid breakage.

2000-07-10  Ettore Perazzoli  <ettore@helixcode.com>

    * Version 0.2.

    * configure.in: Reverse the GtkHTML check.

2000-07-10  Jeffrey Stedfast <fejj@helixcode.com>

    * configure.in: Updated to check for required GtkHTML and
    gnome-print

2000-07-10  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Remove the conduits stuff for now.  They depend on
    CVS gnome-pilot, and this is not good for the release.

2000-07-10  Dan Winship  <danw@helixcode.com>

    * README: updates

2000-07-10  Seth Alves  <alves@hungry.com>

    * configure.in: added makefiles for calendar conduits

2000-07-10  Dan Winship  <danw@helixcode.com>

    * configure.in: Add a check for Bonobo 0.15 vs Bonobo post-0.15

2000-07-09  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Don't draw quite as large a "flat_box".
    If draw_borders is TRUE, cause the cursor to change even if not
    editing.

2000-07-09  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-entry.c: Removed some border padding and set
    the "draw_borders" argument of the contained GtkText.

    * widgets/e-text/e-text.c, widget/e-text/e-text.h: Added a
    "draw_borders" argument which, if set, makes the EText look more
    like a GtkEntry.

2000-07-09  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/evolution-contacts.png: updated so it has better contrast
    against the background.

    * art/evolution-contacts-small.png: Fits the style of the new contacts
    icon, this is a sigle card.

2000-07-09  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text-model.c (e_text_model_real_get_text):
    Return "" instead of NULL.

2000-07-07  Christopher James Lahey  <clahey@helixcode.com>

    * art/Makefile.am: Fixed EXTRA_DIST for make distcheck.

2000-07-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-entry.c: Set "anchor" and "fill_clip_rectangle"
    arguments.

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added
    "fill_clip_rectangle" argument which describes whether to accept
    clicks throughout the clipping rectangle.

2000-07-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-entry.c: Fixed some typos.

2000-07-07  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/evolution-contacts.png: Changed icon (hi ettore)
    The old handshake one was a little too firm handshake..
    this is a rolodex icon..

2000-07-07  Dan Winship  <danw@helixcode.com>

    * configure.in: make pthreads not required again, since they
    aren't, and remove widgets/e-toolbar/Makefile from AC_OUTPUT since
    that dir doesn't exist any more.

2000-07-06  Chris Toshok  <toshok@helixcode.com>

    * configure.in (AC_OUTPUT): remove the default_user Directories
    dir.

2000-07-06  Christopher James Lahey  <clahey@helixcode.com>

    * Makefile.am, libical/configure.in: Fixed some make distcheck
    errors.

2000-07-05  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in (GNOME_VFS_CFLAGS): Define.
    (GNOME_VFS_LIBS): Define.

2000-07-03  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Add
    `addressbook/gui/component/select-names/Makefile' to the
    `AC_OUTPUT()' list.

2000-07-03  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/Makefile.am: Added e-entry.c and e-entry.h.

    * widgets/e-text/e-entry.c, widgets/e-text/e-entry.h: New files to
    be a widget containing a text item.

    * widgets/e-text/e-text.c: Fixed some spacing.

2000-06-29  Ettore Perazzoli  <ettore@helixcode.com>

    * notes/component-factory.c (owner_set_cb): Get an
    EvolutionShellClient instead of an Evolution_Shell to match the
    changes in libeshell.

2000-06-29  Peter Williams  <peterw@helixcode.com>

    * configure.in:  Re-enable GNOME_PILOT_CHECK.
    Change AC_MSG_CHECKING([For...]) to [for...]. It's the little
    things that matter.

2000-06-28  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: `AM_PATH_GCONF'.

2000-06-27  Peter Williams  <peterw@curious-george.helixcode.com>

    * configure.in (ctime_r): Check for whether ctime_r takes
    two (Linux) or three (Solaris) arguments.
    (AC_OUTPUT): Don't create notes/Makefile twice.

    * acconfig.h: Add CTIME_R_THREE_ARGS to the list.
    
2000-06-26  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Calculate height including if
    clip_height is set to -1.
    
2000-06-26  Peter Williams  <peterw@curious-george.helixcode.com>

    * configure.in (THREADS_CFLAGS): Add option --enable-broken-threads
    to turn on the threading stuff in evolution-mail. Defaults to no.

    * acconfig.h: Add USE_BROKEN_THREADS to the list.
    
2000-06-25  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Use `glib-config' instead of `$GLIB_CONFIG' as the
    latter is not actually defined anywhere.

2000-06-25  Peter Williams  <peterw@helixcode.com>

    * configure.in (pthread stuff): Make threads required due
    to threaded evolution-mail. Subst in the THREADS_LIBS et
    al.

    * tests/Makefile.am: Remove USE_THREADS conditional as we
    always use threads now.

2000-06-21  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Fixed some vertical scroll bugs.

2000-06-21  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Fix a bug with intial vertical scroll.

2000-06-21  Christopher James Lahey  <clahey@helixcode.com>

    * notes/e-note.c, widgets/meeting-time-sel/e-meeting-time-sel.c,
    widgets/shortcut-bar/e-icon-bar.c: Removed the usage of "x" and
    "y" arguments to EText.

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Removed the
    "x" and "y" arguments to EText.   Added vertical scrolling.

2000-06-20  Damon Chaplin  <damon@helixcode.com>

    * widgets/meeting-time-sel/e-meeting-time-sel-item.c: 
    * widgets/meeting-time-sel/e-meeting-time-sel.c: fixed a few warnings.

2000-06-17  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Made EText use the font from the
    canvas's style if one isn't set.

2000-06-17  Damon Chaplin  <damon@helixcode.com>

    * widgets/meeting-time-sel/*: updated to use EText items rather than
    GtkEntry widgets and added support for adding new rows.

2000-06-15  Dan Winship  <danw@helixcode.com>

    * README: bye bye goad

2000-06-14  Damon Chaplin  <damon@helixcode.com>

    * README (http): added command to co ORBit.

2000-06-13  Jeffrey Stedfast  <fejj@helixcode.com>

    * configure.in: Added IMAP into the build

2000-06-13  Ettore Perazzoli  <ettore@helixcode.com>

    * notes/Makefile.am (SHELL_OBJS): Removed.
    (evolution_notes_LDADD): Link with
    `$(top_builddir)/shell/libeshell.a'.

2000-06-12  Ettore Perazzoli  <ettore@helixcode.com>

    * widgets/Makefile.am (SUBDIRS): build `misc' before everything
    else.

    * Makefile.am: Install `evolution.png' and `evolution.desktop'
    where appropriate.

    * evolution.png: New.  For now, it's just a copy of
    `art/evolution-inbox.png'.

    * evolution.desktop: New.

2000-06-10  Zbigniew Chyla  <chyla@buy.pl>

    * configure.in: Added pl (Polish) to ALL_LINGUAS

2000-06-09  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Added new directory `shell/glade'.

2000-06-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-paned/e-hpaned.c, widgets/e-paned/e-paned.c,
    widgets/e-paned/e-paned.h, widgets/e-paned/e-vpaned.c: Added a
    "quantum" argument for making the panes move in jumps.

2000-06-07  Anders Carlsson  <andersca@gnu.org>

    * configure.in:  Create notes/Makefile

    * notes/*: Add preliminary yellow sticky notes.

2000-06-05  Mathieu Lacage  <mathieu@gnome.org>

    * addressbook/contact-editor/Makefile.am: make it 
    compile: add proper bonobo linking params.
    * addressbook/gui/minicard/Makefile.am: idem.
    * wombat/Makefile.am: add BONOBO_VFS_GNOME_CFLAGS.
    cleanup some useless includes and libs.

2000-06-02  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in (ALL_LINGUAS): Add `it' and `de'.

2000-06-02  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Released Evolution 0.1.

2000-06-02  Christopher James Lahey  <clahey@helixcode.com>

    * tests/test-movemail.c: Reverted removal of e_setup_base_dir.

2000-06-02  Jesus Bravo Alvarez  <jba@pobox.com>

    * configure.in: Added pt (Portuguese) to ALL_LINGUAS

2000-06-02  Dan Winship  <danw@helixcode.com>

    * README: Update dependencies. Rewrite the GOAD vs OAF thing some
    more to reflect OAF's new ascendency. Make the fact that you don't
    need pilot stuff clearer. Add some new directories to the
    directory layout section.

2000-06-02  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/misc/e-clipped-label.c: Free the finish data.

2000-06-01  Christopher James Lahey  <clahey@helixcode.com>

    * tests/test-movemail.c (main): Don't call e_setup_base_dir.

2000-06-01  Dan Winship  <danw@helixcode.com>

    * configure.in (AC_OUTPUT): add doc, doc/C

    * Makefile.am (SUBDIRS): add doc

2000-05-31  Federico Mena Quintero  <federico@helixcode.com>

    * widgets/misc/e-scroll-frame.[ch]: Imported GtkScrollFrame from
    EOG and renamed it to EScrollFrame.

    * widgets/misc/Makefile.am (libemiscwidgets_a_SOURCES): Added
    e-scroll-frame.[ch].

2000-05-30  Ettore Perazzoli  <ettore@helixcode.com>

    * widgets/e-paned/e-vpaned.c (e_vpaned_handle_shown): Show the
    handle even if the requisition for the child is zero.
    * widgets/e-paned/e-hpaned.c (e_hpaned_handle_shown): Likewise.

2000-05-26  Héctor García Alvarez <hector@scouts-es.org>

        * configure.in: Added Spanish language

2000-05-25  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-paned/e-hpaned.c, widgets/e-paned/e-vpaned.c: Fixed a
    bug where we were resizing a non-existent window.

2000-05-25  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-paned/e-hpaned.c, widgets/e-paned/e-paned.c,
    widgets/e-paned/e-paned.h, widgets/e-paned/e-vpaned.c: Made
    the handlebar disappear if either side is empty, hidden, or
    requests 0 size.

2000-05-24  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added widgets/e-paned/Makefile.

    * tests/ui-tests/message-browser.c: Switched from GtkPaned to
    EPaned.

    * widgets/Makefile.am: Added e-paned directory.

    * widgets/e-paned/, widgets/e-paned/.cvsignore,
    widgets/e-paned/Makefile.am, widgets/e-paned/e-hpaned.c,
    widgets/e-paned/e-hpaned.h, widgets/e-paned/e-paned.c,
    widgets/e-paned/e-paned.h, widgets/e-paned/e-vpaned.c,
    widgets/e-paned/e-vpaned.h: New widget based completely on
    GtkPaned from 1.4.  This will be more advanced soon.

2000-05-22  Jeff Stedfast  <fejj@helixcode.com>

    * configure.in: Readded camel/providers/smtp 

2000-05-22  Szabolcs BAN <shooby@gnome.hu>

    * configure.in: Added Hungarian language

2000-05-18  Dan Winship  <danw@helixcode.com>

    * configure.in (AC_OUTPUT): add camel/providers/vee

2000-05-16  Ettore Perazzoli  <ettore@helixcode.com>

    * art/Makefile.am: Install the mini icons.

2000-05-16  Chris Toshok  <toshok@helixcode.com>

    * configure.in: add --with-purify-options support, and default it
    to what we at helix need

Tue May 16 06:11:40 2000  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/evolution-calendar-mini.png art/evolution-inbox-mini.png
    art/evolution-tasks-mini.png art/evolution-contacts-mini.png
    art/evolution-notes-mini.png: new mini-icons for the tree view
    of folders and stuff.

2000-05-14  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in (AC_OUTPUT): Added calendar/gui/dialogs/Makefile.am.

2000-05-10  Matt Loper  <matt@helixcode.com>

    * README: Added version and availability of required libunicode
    library.

2000-05-10  Dan Winship  <danw@helixcode.com>

    * configure.in: Update versions needed for gnome-print, bonobo,
    and gtkhtml.

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

    * HACKING: We need a HACKING file.

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

    * Makefile.am: Removed dist-hook section.

    * configure.in: Set the version number.  Added a check for gnome
    window icons.  Removed a bunch of unused Makefiles.

    * tools/Makefile.am: Created a proper EXTRA_DIST section.

    * widgets/e-text/Makefile.am: Added
    e-text-event-processor-types.h.

2000-05-09  Christopher James Lahey  <clahey@helixcode.com>

    * art/Makefile.am: Added briefcase.png to get installed.

2000-05-09  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Remove the tooltip callback when
    destroyed.

2000-05-09  Matt Loper  <matt@helixcode.com>

    * calendar/pcs/cal-backend.c (cal_backend_add_cal): Return nothing
    for a 'void' function.

2000-05-08  Christopher James Lahey  <clahey@helixcode.com>

    * widget/e-text/e-text.c, widgets/e-text/e-text.h: Added an
    activate signal.

2000-05-06  Chris Toshok  <toshok@helixcode.com>
    
    * configure.in: Added new Directories section for the default_user.

2000-05-06  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Updated for the new `default_user' directory
    setup.

2000-05-06  Chris Toshok  <toshok@helixcode.com>

    * configure.in: check for purify.

2000-05-06  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added a
    "changed" signal that gets sent whenever the text changes.

2000-05-05  Ettore Perazzoli  <ettore@helixcode.com>

    * Added `--enable-purify' flag.

2000-05-05  Chris Toshok <toshok@helixcode.com>
    
    * shell/Makefile.am: add support for building purified evolution.

    * shell/.cvsignore: ignore evolution.pure

2000-05-05  Chris Toshok <toshok@helixcode.com>

    * addressbook/backend/ebook/.cvsignore,
    addressbook/contact-editor/.cvsignore,
    addressbook/gui/component/.cvsignore,
    addressbook/gui/minicard/.cvsignore,
    addressbook/printing/.cvsignore,
    calendar/cal-client/.cvsignore,
    calendar/gui/.cvsignore,
    calendar/pcs/.cvsignore,
    filter/.cvsignore,
    mail/.cvsignore,
    shell/.cvsignore,
    tests/.cvsignore,
    widgets/e-table/.cvsignore,
    widgets/e-text/.cvsignore,
    widgets/meeting-time-sel/.cvsignore,
    widgets/shortcut-bar/.cvsignore,
    wombat/.cvsignore: ignore the .pure directory

2000-05-04  Dan Winship  <danw@helixcode.com>

    * configure.in: Oops. The Kerberos check was succeeding when it
    shouldn't have (and thus breaking the pop3 build for "normal"
    people). Fix.

2000-05-03  Michael Meeks  <michael@helixcode.com>

    * configure.in (xmlversion): Fix to remove older 'libxml' prefix.

2000-05-02  Ettore Perazzoli  <ettore@helixcode.com>

    * configure.in: Do not output `doc/Makefile' because there is
    nothing to generate it from.

2000-05-02  Dan Winship  <danw@helixcode.com>

    * configure.in, acconfig.h: add some minimal Kerberos checking.
    This isn't intended to be generically useful at this point, it's
    just there to give me a second POP auth mechanism to play with.

    Also remove a bit of cruft, and reorganize configure.in a bit.

2000-05-02  NotZed  <NotZed@HelixCode.com>

    * tests/test13.c: And here too.

    * tests/test2.c (main): REmoved gmime-utils.h

    * tests/Makefile.am (LDADD): Add libeutil to default link line.
    (test_movemail_LDADD): Fixed order for libutil linking.

2000-05-02  Matt Loper  <matt@helixcode.com>

    * tests/Makefile.am: set G_LOG_DOMAIN.
    * tests/ui-tests/Makefile.am: same.
    * widgets/e-text/Makefile.am: same.
    * widgets/meeting-time-sel/Makefile.am: same.

2000-05-01  NotZed  <NotZed@HelixCode.com>

    * tests/test11.c (main): *sigh* moved back to sync api.

2000-05-01  NotZed  <NotZed@HelixCode.com>

    * tests/test11.c (search_cb): Try deleting messages ...
    (main): Fix for provider api changes.

2000-05-01  Anders Carlsson  <andersca@gnu.org>

    * configure.in: Check if bonobo uses oaf, so you don't
    need to specify --enable-oaf.

2000-04-27  Ettore Perazzoli  <ettore@helixcode.com>

    * acconfig.h: New configured #define `USING_OAF'.

    * configure.in: Added `--enable-oaf' option and corresponding
    `OAF_LIBS' and `OAF_FLAGS' variables.  Code friendly provided by
    Maciej Stachowiak <mjs@eazel.com>.

2000-04-27  NotZed  <NotZed@HelixCode.com>

    * tests/test10.c: Fix for removal of camelmimebodypart, and changes
    to recipient stuff.

    * tests/test1.c: Fix for removal of camelmimebodypart, and changes
    to recipient stuff.

2000-04-27  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Added addressbook/ename/Makefile.

2000-04-27  Matt Loper  <matt@helixcode.com>

    * configure.in: added tools/Makefile.

    * Makefile.am: Added tools.

    * tools/: New directory for tools relating to evolution.

    * tools/killev: New script for killing all evolution-related
    stuff.

        * tools/Makefile.am: New file.
    
    * tools/.cvsignore: New file.

2000-04-26  NotZed  <NotZed@HelixCode.com>

    * tests/test13.c (main): And here too.

    * tests/test2.c (main): Same here.

    * tests/test1.c (main): Change for removed simpledatawrapper.

2000-04-26  Matt Loper  <matt@helixcode.com>

    * tests/.cvsignore: Added test13.

    * default_user/.cvsignore: New file.

    * widgets/e-text/e-text.c (e_text_destroy): Kill text->timer and
    text->timeout on destroy.

2000-04-26  Dan Winship  <danw@helixcode.com>

    * tests: Update for the camel changes.

    * Makefile.am (SUBDIRS): Remove tests. They aren't terribly
    useful/interesting any more for the most part, and they frequently
    don't compile.

2000-04-24  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Made the tooltip show up in the correct
    place and configuration when using the "max_lines", "anchor"
    (untested), or "justification" arguments.

From a patch by Iain Holmes <ih@csd.abdn.ac.uk>
    
    * widgets/e-text/e-text-event-processor-emacs-like.c,
    widget/e-text/e-text-event-processor-types.h,
    widgets/e-text/e-text.c, widgets/e-text/e-text.h: Changed C-w and
    C-y to control the X clipboard.  Added double and triple click
    events.

2000-04-24  Fatih Demir <kabalak@gmx.net>

    * configure.in : Added tr to ALL_LINGUAS .

2000-04-24  NotZed  <NotZed@HelixCode.com>

    * tests/test13.c (main): Fixed for method movements.

    * tests/test3.c (main): Removed from build, data-wrapper-repository removed.

2000-04-23  NotZed  <NotZed@HelixCode.com>

    * tests/test2.c (main): Changed to use construct_from_stream.

    * tests/test1.c (main): Chagned to use construct_from_stream.

2000-04-24  Matt Loper  <matt@helixcode.com>

    * default_user/Makefile.am: new file.

    * default_user/Main_Shortcuts.xml: New file; is used to fill the
    shortcut bar's "main shortcuts" pane.

    * default_user/Other_Shortcuts.xml: New file, used to fill the
    shortcut bar's "other shortcuts" pane.

    * default_user/Inbox.mbox: New file. This is the first message a
    new user will see when they fire up Evolution. Needs work.

    * Makefile.am: added default_user directory.
    * configure.in: same.

2000-04-23  NotZed  <NotZed@HelixCode.com>

    * tests/test10.c: Removed some unecessary includes.  From
    Ali Abdin <aliabdin@aucegypt.edu>
    (create_sample_mime_message): Changed for date api change.

    * tests/Makefile.am (noinst_PROGRAMS): Put test10 back.

2000-04-22  NotZed  <NotZed@HelixCode.com>

    * tests/test1.c (main): Changed for date api change.

2000-04-20  NotZed  <NotZed@HelixCode.com>

    * tests/test11.c: Fixed some headers.

    * tests/Makefile.am (noinst_PROGRAMS): Removed test9.
    (noinst_PROGRAMS): Removed test12, temporarirly (nntp not being
    built).
    Removed test10.

2000-04-20  Yukihiro Nakai <nakai@gnome.gr.jp>

    * configure.in: Add Japanese to ALL_LINGUAS

2000-04-19  Dan Winship  <danw@helixcode.com>

    * README: More detail on exactly what versions of what libraries
    are needed.

2000-04-18  Dan Winship  <danw@helixcode.com>

    * tests/*: remove camel-log references

2000-04-17  Dan Winship  <danw@helixcode.com>

    * configure.in (xmlpatch): Require gnome-xml 1.8.7 (or later,
    but not 2.0). xmlParseMemory's behavior in 1.8.7 is incompatible
    with its behavior in 1.8.6 and earlier.

    * tests/test-url.c: New program to test CamelURL

2000-04-16  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/backend/ebook/test-card.c,
    addressbook/backend/pas/pas-backend-file.c,
    addressbook/contact-editor/e-contact-editor.c: Added
    orginizational unit, nickname, and internet free-busy fields.

    * addressbook/contact-editor/contact-editor.glade: Renamed some
    incorrectly named fields.

2000-04-16  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/backend/ebook/test-card.c,
    addressbook/backend/pas/pas-backend-file.c,
    addressbook/gui/minicard/e-minicard.c: Added orginization and role
    fields.

    * addressbook/contact-editor/contact-editor.glade,
    addressbook/contact-editor/e-contact-editor-strings.h: Renamed
    some incorrectly named fields.

    * addressbook/contact-editor/e-contact-editor.c: Added
    orginization and role fields as well as hooking up the birth date
    field.

    * addressbook/gui/minicard/e-minicard-view.c: Added a missing include.

2000-04-15  Matt Loper  <matt@helixcode.com>

    * addressbook/gui/component/addressbook.c
    (search_entry_activated): New function. Gets called when the quick
    search entry is called on to perform a search.
    (make_quick_search_widget): New function; returns a "quick search"
    widget.
    (control_activate): During the construction of the toolbar, a
    "quick search" widget is included.

2000-04-14  Chris Toshok  <toshok@helixcode.com>

    * tests/.cvsignore: add test12

    * tests/test12.c (main): add test for nntp stuff.

    * tests/Makefile.am (noinst_PROGRAMS): same.


2000-04-14  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/backend/pas/pas-backend-file.c,
    addressbook/backend/pas/pas-backend-ldap.c,
    addressbook/contact-editor/e-contact-editor.c: Added a note field.

2000-04-15  Ettore Perazzoli  <ettore@helixcode.com>

    * addressbook/backend/ebook/e-card-cursor.h: #include
    "addressbook/backend/ebook" to make sure we pick up the right
    addressbook.h.  Butt ugly, but at least it makes it possible for
    me to build Evolution.

    * addressbook/gui/minicard/Makefile.am (INCLUDES): Use
    `$(builddir)' so that we pick up the IDL-generated includes
    correctly.
    * addressbook/backend/pas/Makefile.am: Likewise.  Also use
    `$(srcdir)'.

    * addressbook/backend/ebook/Makefile.am: Use `$(srcdir)' so that
    it works with builddir != srcdir.
    * addressbook/backend/pas/Makefile.am: Likewise.

2000-04-14  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_ensure_connected): don't ldap_simple_bind_s if
    the ldap_open failed, and fix warnings.
    (pas_backend_ldap_build_all_cards_list): don't do search if the
    ensure_connected failed, and fix warnings.
    (pas_backend_ldap_search): same.
    (poll_ldap): fix warnings.
    (pas_backend_ldap_process_get_book_view): same.
    (pas_backend_ldap_get_vcard): same.
    (pas_backend_ldap_load_uri): same.

    * configure.in: quiet configure in the case where it can't find
    ldap libs.

2000-04-13  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/contact-editor/e-contact-editor.c (extract_info):
    Check for 0 length fields when building the outgoing ECard.

2000-04-13  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/pas/pas-book-view.c: Give correct warnings.

    * addressbook/backend/ebook/e-card.c (e_card_set_arg): g_strdup
    url and title.

2000-04-13  Chris Toshok  <toshok@helixcode.com>

    * addressbook/contact-editor/e-contact-editor.c
    (fill_in_info): reflect the title attribute in the contact editor.
    (extract_info): same.

    * addressbook/backend/pas/pas-backend-ldap.c: add the title attribute.

    * addressbook/gui/minicard/test-reflow.c: add a title.

    * addressbook/gui/minicard/e-minicard.c (remodel): add support for
    the title attribute.

    * addressbook/backend/ebook/e-card.c (e_card_get_vcard): save out
    the title to the vcard.

    * addressbook/backend/ebook/test-card.c: add title field foo to
    the test.

    * addressbook/backend/ebook/e-card.c: reflect the title field.

    * addressbook/backend/ebook/e-card.h: un-#if 0 the title field.

    * addressbook/backend/pas/pas-backend-ldap.c (poll_ldap): new
    function that polls ldap for more search responses.
    (pas_backend_ldap_search): use the async search interface and
    register an idle call to poll for the responses.
    (view_destroy): make sure to g_source_remove the idle id.

2000-04-12  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c (entry_compare):
    rework this function to use a table mapping search field names to
    vcard properties and extra information (such as whether or not the
    property is a list.)
    
    * addressbook/backend/pas/pas-backend-ldap.c
    (construct_email_list): new function, to build the ECardList for
    email addresses.
    (construct_phone_list): new function, to build the ECardList for
    phone numbers.
    (pas_backend_ldap_search): use a table mapping ldap attributes to
    ecard properties, and use the special list construction functions
    if the property calls for it.  general cleanup.  added a comment
    about not calling ber_free if there was a decoding error.


2000-04-12  Matt Loper  <matt@helixcode.com>

    * art/Makefile.am: Add tigert's contact-dlg-related images.

    * addressbook/contact-editor/e-contact-editor.c (_add_images): Add
    tigert's images.

    * addressbook/contact-editor/Makefile.am: add EVOLUTION_IMAGES.

2000-04-12  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/house.png, art/malehead.png, art/cellphone.png, 
    art/briefcase.png, art/envelope.png, art/globe.png:
    New icons for the contact manager.. more to follow once I get 
    around to do more artist work..

2000-04-12  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_build_all_cards_list): delay the setting of the
    ldap variable until we've ensured we were connected.  Also, set
    the search limit to LDAP_MAX_SEARCH_RESPONSES (we'll eventually
    want a user setting here i assume.)
    (pas_backend_ldap_search): same here, and also send back lists of
    CARDS_PER_VIEW_NOTIFICATION length in each
    pas_book_view_notify_add call.  also, don't call ber_free if there
    was a decoding error, since the ldap library frees it for us.

2000-04-11  Miguel de Icaza  <miguel@gnu.org>

    * configure.in (have_pthread): Properly use AC_ARG_WITH

2000-04-11  Chris Toshok  <toshok@helixcode.com>

    * wombat/Makefile.am (wombat_LDADD): add LDAP_LIBS here.

    * configure.in: check for -lldap and -llber and if both are
    present include ldap support in the pas/wombat.

    * addressbook/backend/pas/Makefile.am (libpas_la_SOURCES): include
    pas-backend.ldap.c if ENABLE_LDAP.

    * addressbook/backend/pas/pas-backend-ldap.c: get searching
    working (converting between the sexp and ldap stuff.)

    * wombat/wombat.c (setup_pas): register the ldap pas backend if
    HAVE_LDAP is defined.

2000-04-11  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Changed AC_DEFUN to AC_DEFINE.

    * acconfig.h: Added HAVE_TIMEZONE and HAVE_TM_GMTOFF.

2000-04-11  Chris Toshok  <toshok@helixcode.com>

    * configure.in: check for timezone as a variable (as it is in
    linux, but not in freebsd or netbsd.)

2000-04-11  Larry Ewing  <lewing@helixcode.com>

    * widgets/e-table/e-cell-toggle.c (etog_draw): update for new
    gdk-pixbuf.  Added a disabled chuck of code to do alpha blending
    on pixmaps.

2000-04-11  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Moved some logic a bit.  Minor changes.

00-04-11  Iain Holmes  <ih@csd.abdn.ac.uk>

    * widgets/e-text/e-text.c
    (e_text_set_args): Recalculate bounds when width or clip_width changes.
    (tooltip_event): Forward clicks on the tooltip onto the text item.
    (_do_tooltip): Correct the origin co-ordinates to the items co-ords.
    (e_text_point): Return 0 when the mouse is on the item.
    (_do_tooltip): Make the tooltip obey the parent items
    line_wrap and max_lines.

00-04-11  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c
    (get_e_card_prop): new function, taking code from func_contains to
    get string properties.
    (entry_compare): new function generic, taking strstr-like function
    as a parameter.
    (func_contains): rewrite function to use entry_compare.
    (is_helper): new helper function to map strcmp to a strstr-like
    function.
    (func_is): new function, implementing "is" for searches.
    (endswith_helper): new function.
    (func_endswith) new function, implementing "endswith" for
    searches.
    (beginswith_helper): new function.
    (func_beginswith): new function, implementing "beginswith" for
    searches.
    (compare_email): new function for searching all email addresses of
    a contact.
    (compare_phone): new function for searching all phone numbers of a
    contact.
    (compare_address): new function for searching all addresses of a
    contact (unimplemented as yet).
    (entry_compare): add support for searching the list items "email",
    "phone" and "address".
    (vcard_matches_search): free the esexp_result.
    (entry_compare): we want comparison functions to take 2 args.

2000-04-11  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/gui/minicard/e-minicard-view.c: This was setting
    E_REFLOW(view)->items to NULL too soon.  Fixed now.

2000-04-11  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_search): remove spew.
    (pas_backend_file_process_create_card): move the sync to the
    earliest possible point after the db operation.
    (pas_backend_file_process_remove_card): same.
    (pas_backend_file_process_modify_card): same, and call
    pas_book_respond_modify, not pas_book_respond_remove, here.

    * addressbook/gui/component/addressbook.c (card_deleted_cb): new
    function.
    (delete_contact_cb): wire up button to call
    e_minicard_view_remove_selection.

    * addressbook/gui/minicard/e-minicard-view.c
    (e_minicard_view_remove_selection): fix warning, and stick "view"
    in the name.

2000-04-10  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-book-view.c,
    addressbook/backend/ebook/e-book.c: Changed some incorrect
    gtk_object_refs and gtk_object_unrefs into bonobo_object_refs and
    bonobo_object_unrefs.

    * addressbook/backend/pas/pas-card-cursor.c: Changed a
    gtk_object_destroy to a gtk_object_unref.

    * addressbook/gui/minicard/e-minicard-view.c,
    addressbook/gui/minicard/e-minicard-view.h: Set a list pointer to
    NULL after freeing its contents.  Added
    e_minicard_view_remove_selection function.

    * addressbook/gui/minicard/e-reflow.c: Set a list pointer to NULL
    after freeing its contents.

2000-04-11  Chris Toshok  <toshok@helixcode.com>

    * addressbook/gui/component/addressbook.c (find_contact_cb):
    implement braindead dialog to input the query string for the view.

    also, change all callbacks to get the EMinicardView instead of the
    EBook.

    * addressbook/gui/minicard/e-minicard-view.c
    (e_minicard_view_get_arg): add missing break.

2000-04-10  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/gui/minicard/e-minicard-view.c,
    addressbook/gui/minicard/e-minicard-view.h: Added a "query"
    argument to the e-minicard-view.  Documented all the arguments to
    the e-minicard-view.

2000-04-10  Chris Toshok  <toshok@helixcode.com>

    * addressbook/gui/minicard/e-minicard-view.c (get_view): change
    the empty search string ("") to the valid (contains "full_name" "").

    * wombat/Makefile.am (wombat_LDADD): reorder so libeutil.la comes
    after libpas (since it uses the sexp stuff now.)

    * addressbook/backend/pas/Makefile.am (INCLUDES): add
    -I$(top_srcdir)/addressbook/backend/ebook

    * addressbook/backend/pas/pas-backend-file.c
    (view_destroy): free the search context and unref the sexp.
    (string_to_dbt): save the zero byte of strings, so we don't have
    to g_strndup everywhere.
    (func_contains): new function, implementing the (contains) search
    function.
    (vcard_matches_search): generic predicate to tell whether or not a
    vcard entry matches the current book view.
    (pas_backend_file_search): rip some of this code out of
    get_book_view (the portion building the list of cards) and make it
    use the e-sexp stuff.
    (pas_backend_file_process_create_card): use vcard_matches_search
    to only notify if the card will appear in the view.
    (pas_backend_file_process_remove_card): use vcard_matches_search
    to only notify if the card will be removed from the view.
    (pas_backend_file_process_modify_card): use vcard_matches_search
    to notify if the modified card was added, removed, or changed in
    the view.
    
2000-04-10  Miguel de Icaza  <miguel@gnu.org>

    * configure.in (GNOME_PRINT_CFLAGS): Update to support
    --disable-threads correctly.

2000-04-10  Chris Toshok  <toshok@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_book_view): use view != NULL instead
    of checking db_error when we call pas_book_respond_get_book_view)

2000-04-10  Dan Winship  <danw@helixcode.com>

    * configure.in: check for mkstemp

2000-04-10  Damon Chaplin  <damon@helixcode.com>

    * configure.in (AC_OUTPUT): removed libical stuff since it has its
    own configure.in.

2000-04-10  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-book-view.c: Fixed a bug where I was
    sending the wrong information to some callbacks.

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h: Added an e_card_duplicate
    function.  Made ids get stored in vcards.  Made sure to delete the
    url if it exists.

    * addressbook/backend/pas/Makefile.am: Made pas include
    addressbook/backend/ebook/ in the search path.

    * addressbook/backend/pas/pas-backend-file.c: Fixed some bugs and
    made the create card function store the generated id in the card
    being saved.

    * addressbook/backend/pas/pas-book-view.c: Fixed a double free
    bug.

    * addressbook/contact-editor/e-contact-editor.c: Fixed some bugs.
    Made the contact editor actually return a valid card when
    gtk_object_get(editor, "card", ...) is called.

    * addressbook/contact-editor/e-contact-editor.h: Fixed a copy and
    paste error.

    * addressbook/gui/component/addressbook.c: Made this get the card
    properly.

    * addressbook/gui/minicard/Makefile.am: Made this include
    contact-editor directory in the search path and link against
    libecontacteditor so that double clicking can open a dialog.

    * addressbook/gui/minicard/e-minicard.c: Fixed some small bugs.
    Made double clicking open a contact editor dialog if this minicard
    is contained in a minicard view.  (It needs the minicard view to
    get the EBook to save to.

    * wombat/Makefile.am: Link wombat against libebook, since
    pas-backend-file now uses ECard.

2000-04-09  Matt Loper  <matt@helixcode.com>

    * addressbook/gui/component/addressbook.c (control_activate): Make
    "New Contact" menuitem add a card with new_contact_cb().
    
    * addressbook/Makefile.am: Compile contact-editor, _then_ gui,
    since the gui now depends on the contact editor (shouldn't the
    contact-editor directory be moved into 'gui'?).

    * addressbook/gui/component/addressbook.c (card_added_cb): New
    function. Gets called when a card is successfully added via the
    contact-editor.
    (new_contact_cb): New function. Gets called when a user clicks the
    "new contact" button on the toolbar, and creates a contact-editor
    to edit a new contact entry.
    (control_activate): Call gnome_app_fill_toolbar_with_data()
    instead of gnome_app_fill_toolbar(), so that our toolbar can find
    the right book to add a new card to.
    (addressbook_factory): On an "activate" signal, send the book up
    to control_activate_cb.

    * addressbook/gui/component/addressbook-factory.c (init_bonobo):
    Call glade_gnome_init(), so that our contact-editor (which
    requires glade) doesn't barf.

    * addressbook/gui/component/Makefile.am: added the contact-editor
    to our libraries and include files.

    * addressbook/contact-editor/e-contact-editor.c
    (e_contact_editor_new): Set "card" gtk property to the passed-in
    card property.

    * addressbook/gui/component/addressbook.c (addressbook_factory):
    Added gtk_widget_push/pop_colormap/visual, which I assume is
    necessary for canvas use.

2000-04-08  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/contact-editor/Makefile.am,
    addressbook/contact-editor/e-contact-editor.c,
    addressbook/contact-editor/e-contact-editor.h,
    addressbook/contact-editor/test-editor.c: Made the contact editor
    load from an ECard.

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/gui/minicard/e-minicard.c: Added support for the URL
    field.

2000-04-08  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card.c (e_card_get_vcard): Fixed a
    small typo.

2000-04-08  Dan Winship  <danw@helixcode.com>

    * art/Makefile.am: pixmap_DATA should have been images_DATA (after
    pixmapdir was renamed to imagesdir)

2000-04-08  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/gui/minicard/.cvsignore,
    addressbook/gui/minicard/Makefile.am,
    addressbook/gui/minicard/e-minicard-view.c,
    addressbook/gui/minicard/e-minicard-view.h,
    addressbook/gui/minicard/e-minicard.c,
    addressbook/gui/minicard/e-minicard.h,
    addressbook/gui/minicard/e-reflow-sorted.c,
    addressbook/gui/minicard/e-reflow-sorted.h,
    addressbook/gui/minicard/e-reflow.c,
    addressbook/gui/minicard/e-reflow.h,
    addressbook/gui/minicard/test-minicard-view.c,
    addressbook/gui/minicard/test-reflow.c,
    widgets/e-minicard/.cvsignore, widgets/e-minicard/Makefile.am,
    widgets/e-minicard/e-minicard-label.c,
    widgets/e-minicard/e-minicard-label.h,
    widgets/e-minicard/e-minicard-view.c,
    widgets/e-minicard/e-minicard-view.h,
    widgets/e-minicard/e-minicard.c, widgets/e-minicard/e-minicard.h,
    widgets/e-minicard/e-reflow-sorted.c,
    widgets/e-minicard/e-reflow-sorted.h,
    widgets/e-minicard/e-reflow.c, widgets/e-minicard/e-reflow.h,
    widgets/e-minicard/test-minicard-label.c,
    widgets/e-minicard/test-minicard-view.c,
    widgets/e-minicard/test-minicard.c,
    widgets/e-minicard/test-reflow.c: CVS move mistake.  Fixed the
    correct changes in the correct places.

2000-04-08  Christopher James Lahey  <clahey@helixcode.com>

    * art/Makefile.am: pixmap_DATA isn't defined so don't use it as a variable.

    * addressbook/gui/component/,
    addressbook/gui/component/.cvsignore, addressbook/gui/Makefile.am,
    addressbook/gui/component/addressbook-factory.c,
    addressbook/gui/component/addressbook.c,
    addressbook/gui/component/addressbook.gnorba,
    addressbook/gui/component/addressbook.h: New directory to proivde
    the component for contact management.  Simply uses an e-minicard-view.

    * addressbook/gui/minicard/e-minicard-view.c,
    addressbook/gui/minicard/e-minicard-view.h: New subclass of
    e-reflow-sorted that takes an EBook and uses it to compute the
    card data to display.

    * addressbook/gui/minicard/e-minicard.c,
    addressbook/gui/minicard/e-minicard.h: This now backends to a
    ECard instead of a ETableModel.

    * addressbook/gui/minicard/e-reflow.c,
    addressbook/gui/minicard/e-reflow.h: This now has a virtualized
    add method.

    * addressbook/gui/minicard/e-reflow-sorted.c,
    addressbook/gui/minicard/e-reflow-sorted.h: New subclass of
    e-reflow that allows the data to be sorted on the fly.

    * addressbook/gui/minicard/test-minicard-view.c: New test to test
    the new minicard view.

    * addressbook/gui/minicard/test-reflow.c: Uses the new ECard
    backend of the e-minicard.

    * addressbook/gui/minicard/.cvsignore,
    addressbook/gui/minicard/Makefile.am: Added new test.  Fixed
    dependencies.  Added new files.

    * addressbook/gui/, addressbook/gui/Makefile.am,
    addressbook/gui/.cvsignore: New directory for addressbook gui
    bits.  Added subdirectories.  Created an initial .cvsignore.

    * addressbook/Makefile.am (SUBDIRS): Removed demo and added gui.

    * addressbook/backend/pas/pas-backend-file.c: Added code to do
    notification on bookviews when changes in the backend are made.

    * addressbook/backend/pas/pas-book-view.c,
    addressbook/backend/pas/pas-book-view.h: Added helper functions to
    notify the view about the addition or modification of a single
    card.  Fixed a mistaken extra free.

    * addressbook/backend/ebook/e-card-list-iterator.h: Fixed
    incorrect parent class.

    * addressbook/backend/ebook/test-client.c: Made this accept an
    optional parameter that specifies the vcard to add.

    * configure.in: Replaced widgets/e-minicard/Makefile and
    addressbook/demo/Makefile with addressbook/gui/minicard/Makefile
    and addressbook/gui/component/Makefile respectively.

    * widgets/Makefile.am: Removed e-minicard since it's being moved
    to addressbook/gui/minicard.

    * widgets/e-text/e-text.c: Fixed the border width around tooltips
    and made the main tooltip area yellow.

2000-04-08  Dan Winship  <danw@helixcode.com>

    * configure.in, acconfig.h: add SYSTEM_MAIL_DIR

2000-04-08  Jesus Bravo Alvarez  <jba@pobox.com>

    * configure.in (ALL_LINGUAS): Added Galician (gl).

2000-04-07  Jeffrey Stedfast  <fejj@stampede.org>
    * configure.in: Modified to create camel/providers/smtp/Makefile

2000-04-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Made text tooltips appear in place.
    Iain figured out that to get them to not appear, we hide the
    tooltip when the mouse leaves the tooltip window, not the canvas
    item (this works because the tooltip window always covers the
    canvas item completely.)

2000-04-07  Matt Loper  <matt@helixcode.com>

    * addressbook/demo/addressbook.c (control_activate_cb): New
    function. Called when the control is (de)activated.
    (control_activate): New function; called when the control is
    activated, and sets up toolbar/menu times.
    (control_deactivate): New function; removes those toolbar/menu
    items.
    (do_nothing_cb): Does nothing :-)
    (addressbook_factory): Hook up to control_activate_cb().

2000-04-07  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_book_view): correctly (well,
    untested) implement.
    (view_destroy): new function.

2000-04-06  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/demo.c, addressbook/demo/addressbook-widget.c:
    Changed calls to e_cell_text_new to match new function signature.

2000-04-06  Miguel de Icaza  <miguel@gnu.org>

    * art/Makefile.am (images_DATA): Renamed from pixmaps to images. 

2000-04-05  Matt Loper  <matt@helixcode.com>

    * README: Added wombat.

2000-04-04  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text-test.c: Got rid of some runtime errors.
    Changed to "fixed" font so that it will work on everyone's
    machine.  Added a white background rectangle.  Made resizing the
    window resize the contained text item.  Changed to using affines
    (e_canvas_item_move_absolute) instead of "x" and "y" attributes.
    Set the text in the entries so that they match the original values
    of the displayed text object.

2000-04-04  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-minicard/e-minicard.c: Fixed some referencing and
    lifetime issues.

2000-04-04  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Removed an unnecessary get_bounds call.

    (From a patch by Iain Holmes <ih@csd.abdn.ac.uk>)

    * widgets/e-text/e-text.c: Made tooltips look more like the
    underlying text.  Made tooltips show up more consistently.

2000-04-04  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/Makefile.am, addressbook/demo/e-test-model.c,
    addressbook/demo/e-test-model.h: Changed this to backend to an
    ebook.

    * addressbook/backend/ebook/e-card-iterator.c,
    addressbook/backend/ebook/e-card-iterator.h,
    addressbook/backend/ebook/e-card-list-iterator.c,
    addressbook/backend/ebook/e-card-list.c,
    addressbook/backend/ebook/e-card-list.h,
    addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h: Fixed const correctness and
    changed a couple of functions to be external.
    
    * addressbook/Makefile.am: Fixed subdir ordering.

2000-04-04  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-book-view.c: Fixed an incorrect
    function.

    * addressbook/backend/ebook/e-book-view.h,
    addressbook/backend/ebook/e-book.h: Fixed some incorrect function
    pointer declarations.

    * addressbook/backend/ebook/e-card-iterator.c,
    addressbook/backend/ebook/e-card-iterator.h,
    addressbook/backend/ebook/e-card-list-iterator.c,
    addressbook/backend/ebook/e-card-list-iterator.h,
    addressbook/backend/ebook/e-card-list.c,
    addressbook/backend/ebook/e-card-list.h,
    addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/backend/ebook/test-card.c: Built new iterator system
    for getting fields with multiple entries.

    * addressbook/backend/ebook/Makefile.am: Added new files
    addressbook/backend/ebook/e-card-iterator.c,
    addressbook/backend/ebook/e-card-iterator.h,
    addressbook/backend/ebook/e-card-list-iterator.c,
    addressbook/backend/ebook/e-card-list-iterator.h,
    addressbook/backend/ebook/e-card-list.c, and
    addressbook/backend/ebook/e-card-list.h.

2000-04-04  Yuri Syrota  <rasta@renome.rovno.ua>

    * configure.in: Added uk to ALL_LINGUAS.

2000-04-04  Andreas Hyden  <a.hyden@cyberpoint.se>

    * configure.in: Added no and sv to ALL_LINGUAS.

2000-04-03  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card-cursor.h,
    addressbook/backend/ebook/e-card.c: A bit of clean up.
    
    * addressbook/backend/ebook/e-book-types.h,
    addressbook/backend/ebook/e-book-view-listener.c,
    addressbook/backend/ebook/e-book-view-listener.h,
    addressbook/backend/ebook/e-book-view.c,
    addressbook/backend/ebook/e-book-view.h,
    addressbook/backend/pas/pas-book-view.c,
    addressbook/backend/pas/pas-book-view.h: New files for live views.

    * addressbook/backend/ebook/Makefile.am,
    addressbook/backend/ebook/e-book-listener.c,
    addressbook/backend/ebook/e-book-listener.h,
    addressbook/backend/ebook/e-book.c,
    addressbook/backend/ebook/e-book.h,
    addressbook/backend/ebook/test-client-list.c,
    addressbook/backend/ebook/test-client.c,
    addressbook/backend/pas/pas-backend-file.c,
    addressbook/backend/pas/pas-book.c,
    addressbook/backend/pas/pas-book.h,
    addressbook/backend/idl/addressbook.idl: Added live views and
    searching to the interface (neither is working yet.)

2000-04-01  Matt Loper  <matt@helixcode.com>

    * tests/.cvsignore: Added test-movemail.

    * art/.cvsignore: New file.

2000-03-31  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/demo.c, addressbook/demo/addressbook-widget.c:
    Added some missing gtk_object_refs.

2000-03-30  Matt Loper  <matt@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_build_all_cards_list): Get first card (with
    R_FIRST) on first seq().

2000-03-30  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-backend-ldap.h: new-file
    * addressbook/backend/pas/pas-backend-ldap.c: new file

2000-03-30  Dan Winship  <danw@helixcode.com>
    
    * configure.in:
    * Makefile.am:
    * art/Makefile.am: install new shortcut bar pixmaps.

2000-03-30  Tuomas Kuosmanen  <tigert@gimp.org>

    * art/evolution-calendar.png art/evolution-inbox.png 
    art/evolution-tasks.png art/evolution-contacts.png 
    art/evolution-notes.png evolution-today.png:
    added some artwork for the main shortcutbar.. someone
    could stick them in it.

2000-03-29  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card-cursor.c: Fixed management of
    the corba-cursor object by calling CORBA_Object_duplicate on it on
    e-card-cursor creation and calling CORBA_Object_release on
    e-card-cursor destruction.  Also, properly free string returned
    from Evolution_CardCursor_get_nth function.

2000-03-29  Matt Loper  <matt@helixcode.com>

    * addressbook/backend/ebook/test-client.c (get_cursor_cb): Added
    some debugging.

    * addressbook/backend/ebook/e-book-listener.c: Added inline
    documentation for exposed functions.
    * addressbook/backend/ebook/e-card-cursor.c: same.
    * addressbook/backend/ebook/e-card.c: same.

    * Makefile.am: add calendar compilation back in.

    * addressbook/backend/pas/pas-book-factory.c
    (PAS_BOOK_FACTORY_GOAD_ID): changed to
    "evolution:addressbook-server".

    * addressbook/backend/pas/Makefile.am: no need to install a
    .gnorba file from here, as the wombat.gnorba file in
    evolution/wombat will do its job.

    * addressbook/backend/ebook/test-client.c (ebook_create): if
    ebook_new fails, print a warning and return.

    * addressbook/backend/ebook/e-book.c (CARDSERVER_GOAD_ID): changed
    to "evolution:addressbook-server".

    * wombat/wombat.c: Changed headerfile path.

    * wombat/Makefile.am: Use relative paths to libraries in the build
    tree, rather than requiring libraries (such as libpcs) to already
    be installed.

2000-03-28  Matt Loper  <matt@helixcode.com>

    * wombat/Makefile.am: new file.

    * wombat/wombat.gnorba: Cleaned up.

    * wombat/wombat.c (setup_pcs): filled in the rest.
    
    * Makefile.am: added wombat.

    * wombat/wombat.gnorba: new file.

    * wombat/.cvsignore: new file.

    * wombat/wombat.c (setup_pcs): fill out this function some.

    * configure.in: added wombat.

2000-03-28  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-card-cursor.c (create_cursor): use
    g_new0 to allocate the BonoboObjectServant.

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_build_all_cards_list): remove unnecessary
    strdup/free.

2000-03-28  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/pas/pas-backend-file.c: Removed an infinite
    loop.

    * addressbook/backend/ebook/test-client-list.c: New test that
    doesn't add an extra database item.

    * addressbook/backend/ebook/Makefile.am,
    addressbook/backend/ebook/.cvsignore: Added test-client-list.

2000-03-28  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/pas/pas-card-cursor.c: Fixed memory
    allocation.

    * addressbook/backend/pas/pas-backend-file.c: Fixed memory
    allocation.  Made database stuff not do an extra entry.

    * addressbook/backend/ebook/test-client.c: Add test for
    get_all_cards functionality.  Changed database name to test.db.

    * addressbook/backend/ebook/e-card-cursor.c: Changed bonobo_object
    to gtk_object in a couple of places.

2000-03-28  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_create_unique_id): create id's for entries using
    the following format: ("pas-id-%08lX%08X", time(NULL), c++).
    
2000-03-27  Dan Winship  <danw@helixcode.com>

    * tests/test-movemail.c: new test program. Can be used to copy POP
    mail into your evolution inbox.

2000-03-27  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_get_vcard): remove unneeded g_strdup;
    (get_length): implement function.
    (get_nth): implement function.
    (cursor_destroy): free up the internal glist of vcards, and fix
    warning.
    (pas_backend_file_build_all_cards_list): new function, to build up
    the list of cards in the db.
    (pas_backend_file_process_get_all_cards): call
    pas_backend_file_build_+all_cards_list, and fix warning.

2000-03-27  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/test-card.c: Fixed some warnings.

    * addressbook/backend/ebook/test-client.c: Added a section to test
    cursors and returning an id when adding.

    * addressbook/backend/ebook/e-card-pairs.h: Removed the address
    pairs since they were added to e-card.c.

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h: Made the set_id function take
    a const char *.

    * addressbook/backend/ebook/e-book-listener.c,
    addressbook/backend/ebook/e-book-listener.h,
    addressbook/backend/ebook/e-book.c,
    addressbook/backend/ebook/e-book.h,
    addressbook/backend/idl/addressbook.idl,
    addressbook/backend/pas/pas-backend-file.c,
    addressbook/backend/pas/pas-book.c,
    addressbook/backend/pas/pas-book.h: Added a get_all_cards function
    and made the response to the create_card function include the card
    id.

    * addressbook/backend/ebook/Makefile.am: Added e-card-cursor.c and
    e-card-cursor.h.

    * addressbook/backend/ebook/e-card-cursor.c,
    addressbook/backend/ebook/e-card-cursor.h: New class for proxying
    to an Evolution_CardCursor.

    * addressbook/backend/pas/Makefile.am: Added pas-card-cursor.c and
    pas-card-cursor.h.

    * addressbook/backend/pas/pas-card-cursor.c,
    addressbook/backend/pas/pas-card-cursor.h: New bonobo class for
    making an Evolution_CardCursor server.

2000-03-27  NotZed  <NotZed@HelixCode.com>

    * tests/test9.c (main): This test is basically now invalid.
    * tests/test11.c (main): Fix for async search api.  Probably works.
    Removed camel-mbox-*.h headers, should be private.

2000-03-27  Tuomas Kuosmanen  <tigert@gimp.org>
    * art/attachment.xpm art/mail-new.xpm art/mail-read.xpm
    art/mail-replied.xpm art/mark.xpm art/meeting.xpm
    art/priority-high.xpm art/priority-low.xpm

    Added some new icons for the message-list view..

2000-03-26  Chris Toshok  <toshok@laptoph.xtoph.org>

    * configure.in: check for db_185.h (present in newer db
    distributions.)

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_create_unique_id): new function.
    (pas_backend_file_process_create_card): call
    pas_backend_file_create_unique_id and pas_book_notify_add (if the
    db->put was successful).  also, sync out db.
    (pas_backend_file_process_remove_card): call
    pas_book_notify_remove if the db->del was successful, and sync out
    db.
    (pas_backend_file_process_modify_card): call
    pas_book_notify_change if db->put was successful, and sync out db.
    (string_to_dbt): new function.
    (pas_backend_file_process_create_card): use string_to_dbt
    (pas_backend_file_process_remove_card): likewise
    (pas_backend_file_process_modify_card): likewise
    (pas_backend_file_get_vcard): likewise
    (pas_backend_file_upgrade_db): new function, to upgrade a db file
    if we change the data format.
    (pas_backend_file_maybe_upgrade_db): check db version vs. current
    code version, and upgrade it necessary.
    (pas_backend_file_load_uri): call pas_backend_file_maybe_upgrade.

2000-03-26  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/test-client.c: Load an ECard instead
    of a VCard and then get the VCard from that ECard.  Just tests
    ECard and the client stuff at the same time.  Also, replaces
    carriage returns with newlines.

    * addressbook/backend/ebook/e-book.c: Fixed a small parity error.

2000-03-25  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/ebook/test-client.c: create a card and then
    look it up.

2000-03-26  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/pas/pas-backend-file.c
    (pas_backend_file_process_create_card): add db calls to flesh out
    the interface.  hardcoded id that needs to change, once we decide
    how we're going to create it.
    (pas_backend_file_process_remove_card): add db calls to flesh out
    the interface.
    (pas_backend_file_process_modify_card): likewise
    (pas_backend_file_process_check_connection): likewise
    (pas_backend_file_get_vcard): likewise
    (pas_backend_file_load_uri): likewise

2000-03-26  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-book.c: Set the card id properly
    when retrieving a card.

2000-03-22  NotZed  <NotZed@HelixCode.com>

    * e-util/e-sexp.h: Formatting cleanup.

2000-03-07  NotZed  <NotZed@HelixCode.com>

    * e-util/Makefile.am (libeutil_la_SOURCES): s-sexp.h -> e-sexp.h.

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h: Added the ability to set the
    card's id (and made getting it work correctly also.)

2000-03-25  Chris Toshok  <toshok@laptoph.xtoph.org>

    * addressbook/backend/ebook/e-book.c (e_book_pop_op): pass GList*
    as second parameter to g_list_remove_link, not the data pointer.

2000-03-26  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card-types.h: Removed the
    address->description field.
    
    * addressbook/backend/ebook/e-card.c: Added VCard output and
    the use of GtkArguments.

    * addressbook/backend/ebook/test-card.c: Updated this to use the
    GtkArguments.

    * addressbook/backend/ebook/e-book.c: Fixed a memory leak.

2000-03-25  Matt Loper  <matt@helixcode.com>

    * ebook/e-book.c,
    ebook/e-book.h, 
    ebook/e-book.h,     
    ebook/e-card-fields.h,
    ebook/e-card.h,
    ebook/e-commerce.h: old, removed. Up-to-date EBook stuff is kept
    in addressbook/backend/ebook.

2000-03-23  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h,
    addressbook/backend/ebook/e-card-types.h,
    addressbook/backend/ebook/e-card-pairs.h,
    addressbook/backend/ebook/test-card.c: Added parsing and testing
    for name, full name, birthday, telephone, email, and street
    address properties.

2000-03-22  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/backend/ebook/.cvsignore,
    addressbook/backend/pas/.cvsignore,
    addressbook/backend/idl/.cvsignore,
    addressbook/backend/.cvsignore: Updated .cvsignore files.

2000-03-22  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/Makefile.am, configure.in: Added the
    addressbook/backend directory.

    * addressbook/backend/Makefile.am: Removed the libversit directory
    as it's now included in the base evolution directory.

    * addressbook/backend/ebook/e-card-pairs.h,
    addressbook/backend/ebook/Makefile.am: Changed the place where
    libversit is looked for.

    * addressbook/backend/ebook/e-book-listener.c: Fixed some
    indentation.

    * addressbook/backend/ebook/e-card-pairs.h,
    addressbook/backend/ebook/e-card-types.h: Commented out some code
    to get this to compile.

    * addressbook/backend/ebook/e-card.c,
    addressbook/backend/ebook/e-card.h: Turned this into a GTK+
    object.

    * addressbook/backend/pas/pas.c,
    addressbook/backend/ebook/test-client.c: Include gnome.h and
    gnorba.h.

    * addressbook/backend/idl/addressbook.idl: Include Bonobo.idl
    instead of bonobo-unknown.idl.

    * addressbook/backend/pas/pas-backend-file.c,
    addressbook/backend/pas/pas-book.c,
    addressbook/contact-editor/test-editor.c,
    addressbook/contact-editor/e-contact-editor.c,
    addressbook/printing/e-contact-print.c,
    addressbook/printing/test-contact-print-style-editor.c,
    addressbook/printing/test-print.c: Killed some warnings.

2000-03-21  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c: Changed gnome_canvas_item_grab_focus to
    e_canvas_item_grab_focus.

2000-03-21  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/addressbook-widget.c: Make background pixmap
    get properly set to NULL.

2000-03-20  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added the
    ability to access the text event processor.

2000-03-13  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/addressbook-widget.c: Made the addressbook
    component look in the users home directory for the addressbook.xml
    file.

2000-03-20  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/.cvsignore: added filter.

    * addressbook/demo/.cvsignore: added test-addressbook.

2000-03-17 Elliot Lee <sopwith@redhat.com>
    * calendar/cal-client/Makefile.am,
    calendar/cal-util/Makefile.am, calendar/gui/Makefile.am,
    calendar/pcs/Makefile.am, mail/Makefile.am,
    widgets/e-text/Makefile.am: Fix for srcdir != builddir.

2000-03-14  Dan Winship  <danw@helixcode.com>

    * Makefile.am (SUBDIRS): build shell before mail, since mail
    relies on the shell idl files being compiled.

2000-03-13  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/demo/Makefile.am: Added files for addressbook bonobo
    component.  Changed non bonobo version to compile as
    test-addressbook.

    * addressbook/demo/addressbook.c,
    addressbook/demo/addressbook.gnorba,
    addressbook/demo/addressbook.h,
    addressbook/demo/addressbook-factory.c,
    addressbook/demo/addressbook-widget.c,
    addressbook/demo/addressbook-widget.h: New factory to create an
    addressbook bonobo component.

2000-03-12  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/.cvsignore: Added e-text-test.

    * addressbook/demo/e-test-model.c,
    addressbook/demo/e-test-model.h: A model storing data in an array
    of Address objects.

    * addressbook/demo/demo.c: Changed to use
    addressbook/demo/e-test-model.c and
    addressbook/demo/e-test-model.h.

    * addressbook/demo/Makefile.am: Added e-test-model.c and
    e-test-model.h.

2000-03-12  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/Makefile.am: Rearranged SUBDIRS for dependencies.

    * widgets/e-text/e-text-model.c, widgets/e-text-model.h: New
    object which stores a piece of text data.  All methods are
    virtual.

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Modified this
    to use an ETextModel for its data.

    * widgets/e-text/Makefile.am: Added e-text-model.c and e-text-model.h.

    * widgets/e-minicard/test-minicard-label.c: Made this work again.

    * widgets/e-minicard/e-minicard.c,
    widgets/e-minicard/e-minicard.h: Made this use an ETableModel to
    get its data.

    * widgets/e-minicard/e-minicard-label.c,
    widgets/e-minicard/e-minicard-label.h: Added the ability to set
    the text model used for the contained text widget.

    * widgets/e-minicard/Makefile.am: Added e-table since e-minicard
    is now dependent on an e-table-model for its data.

    * addressbook/demo, addressbook/demo/.cvsignore,
    addressbook/demo/Makefile.am, addressbook/demo/demo.c,
    addressbook/demo/spec: A new program to test ETable and EMinicard
    integration.

    * configure.in: Added addressbook/demo/Makefile.

    * addressbook/Makefile.am: Added the demo/ subdirectory.

2000-03-10  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-minicard/e-minicard.c,
    widgets/e-minicard/e-minicard-label.c,
    widgets/e-minicard/e-minicard-label.h,
    widgets/e-minicard/e-reflow.c, widgets/e-minicard/test-reflow.c,
    widgets/e-text/e-text.c, widgets/e-text/e-text.h: Adapted to use
    the new e-canvas reflow system.

2000-03-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Added a
    "break_characters" argument.  It lets you define a set of
    characters which should cause optional linebreaks to occur.  Made
    setting the "clip_height" argument to -1 mean no height clipping.
    Moved calling the "resize" signal into an idle handler to avoid
    reentering the canvas update loop.  Made EText recalc bounds if
    the affine has changed.  Fixed up tooltip_count (this counts the
    number of ENTER and LEAVE events.)

    * widgets/e-text/e-text-test.c: Got rid of a few warnings.

    * widgets/e-minicard/e-minicard-label.h: Reindent a few lines.

    * widgets/e-minicard/e-minicard.c,
    widgets/e-minicard/e-minicard-label.c: Switch from using "x" and
    "y" to set the children's position to using
    e_canvas_item_move_absolute.

2000-03-05  Matt Loper  <matt.loper@splashtech.com>

    * tests/ui-tests/message-browser.c: Commenting added.
    (on_url_data_requested): renamed from "on_url_requested", to
    reflect that a stream of data is what's actually being asked for.
    (hydrate_persist_stream_from_gstring): New function.
    (camel_stream_to_gstring): New function.
    (on_object_requested): Cleaned up.

2000-03-04  bertrand  <bertrand@helixcode.com>

    * tests/ui-tests/Makefile.am: add bonobo to the build 
    process.

    * tests/ui-tests/message-browser.c (main): 
    initialize Bonobo. Use bonobo_main.
    (get_gtk_html_contents_window): set signal handlers
    for url requests and objects requests.
    (on_object_requested): answer to object requests.

2000-03-03  bertrand  <bertrand@helixcode.com>

    * tests/ui-tests/message-browser.c (main): initialize
    gdkrgb. Push visual/colormap.
    (on_url_requested): in the case where a camel url is requested, 
    write the camel stream to gtkhtml. 

    * tests/ui-tests/Makefile.am (filter_LDADD): add
    gnomeprint in the lib list. 

2000-03-01  Ettore Perazzoli  <ettore@helixcode.com>
    
    * configure.in: Build `filter/Makefile'.  Added check for GtkHTML.
    Set `GTKHTML_CFLAGS' and `GTKHTML_LIBS' to the appropriate values
    for linking with GtkHTML.

2000-03-01  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in (AC_OUTPUT): Added calendar/idl/Makefile,
    calendar/cal-client/Makefile, and calendar/pcs/Makefile to the
    list of files to generate.

2000-02-29  Iain Holmes  <ih@csd.abdn.ac.uk>

    * widgets/e-text/e-text.c: Don't show the tooltip if the text is being
    editted or isn't clipped. Remove the tooltip when editting starts.

    * widgets/e-text/Makefile.am: Build the test program

2000-02-29  NotZed  <NotZed@HelixCode.com>

    * tests/ui-tests/Makefile.am (filter_LDADD): Added test program.

    * tests/ui-tests/filterdescription.xml, saveoptions.xml: Data
    files for test program.

    * tests/ui-tests/filter.c (main): Test program for filter ui.

2000-02-28  NotZed  <NotZed@HelixCode.com>

    * widgets/e-minicard/Makefile.am (INCLUDES): Fixed references to
    eutil.

    * Makefile.am (SUBDIRS): Build e-util before other stuff.
    (SUBDIRS): Build filter after camel.

2000-02-28  Chris Lahey  <clahey@umich.edu>

    * widgets/e-text/e-text.c: Compilation error.

2000-02-28  Chris Lahey  <clahey@umich.edu>

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Updated these
    to use the canvas ::update system properly.

2000-02-24  Dan Winship  <danw@helixcode.com>

    * acconfig.h:
    * configure.in: define SENDMAIL_PATH with the path to sendmail.

2000-02-24  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text.c, widgets/e-text.h, e-text-event-processor.c,
    e-text-event-processor.h, e-text-event-processor-emacs-like.c,
    e-text-event-processor-emacs-like.h,
    e-text-event-processor-types.h: This were moved to widgets/e-text/
    a while ago but never removed.  They have now been removed.

    * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Removed some
    warnings from this file.  Made tooltips disappear when you're
    finished with them.

    * widgets/e-minicard/test-reflow.c,
    widgets/e-minicard/test-minicard.c,
    widgets/e-minicard/test-minicard-label.c: Commented out unused
    about_callback functions.

    * widgets/e-minicard/e-reflow.c: Made e-reflow pass an EFocus to
    its e-minicard children.

    * widgets/e-minicard/e-minicard.c: Made e-minicard take and return
    an EFocus for its "has_focus" argument.  This makes shift-tab work properly.

    * widgets/e-minicard/e-minicard-label.c: Made e-minicard-label take and return
    an EFocus for its "has_focus" argument.  Made the font that
    e-minicard-label uses only be allocated once.
    
2000-02-21  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c (on_link_clicked): stop
    sscanf() abuse.

    * tests/Makefile.am: changed references to libibex.a to
    libibex.la.

    * libical/src/libical/.cvsignore: Added *.lo, *.la, and .libs.
    * libical/src/libicalss/.cvsignore: same.

    * tests/.cvsignore: Added test11.

    * libical/Makefile.in: autogenerated file removed from cvs, and
    added to .cvsignore.
    * libical/src/Makefile.in: same.
    * libical/src/libical/Makefile.in: same.
    * libical/src/libicalss/Makefile.in: same.

2000-02-22  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/message-browser.c (on_link_clicked): 
    uggly hack to test part saving and
    b64 streams.

2000-02-21  Dan Winship  <danw@helixcode.com>

    * tests/test10.c:
    * tests/test11.c: update for camel changes

2000-02-20  Matt Loper  <matt@helixcode.com>

    * tests/Makefile.am: Changed dependencies on libibex.la to
    libibex.a. In test9_LDADD, placed libcamelmbox.la before
    libibex.la, as the former requires the latter.

2000-02-20  Iain Holmes  <ih@csd.abdn.ac.uk>

    * widgets/e-text/e-text.[ch] (_do_tooltip): Show the text of the item,
    in a tooltip style.
    (e_text_event): Add a timeout on the Enter and remove it on the Leave
    events.

    * e-text-test.c: New file to test e-text items.
    
2000-02-20  Matt Loper  <matt@helixcode.com>

    * .cvsignore: added ABOUT-NLS.  
    * ABOUT-NLS: removed.
    
2000-02-19  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c (on_link_clicked): When a link
    is clicked, indicate the link with a dialog.

    * libical/src/test/.cvsignore: Added Makefile.

    * libical/.cvsignore: Added Makefile, configure, config.status.

    * libical/src/.cvsignore: New file.

    * libical/Makefile: autogenerated file removed from cvs.
    * libical/configure: same. 
    * libical/config.status: same.
    * libical/src/Makefile: same.
    * libical/src/test/Makefile: same.

    * widgets/e-minicard/.cvsignore: Added minicard-label-test,
    minicard-test, and reflow-test.

    * shell/.cvsignore: added files autogenerated from Evolution.idl.

    * libversit/.cvsignore: Added .libs, vcc.c, vcc.lo, vobject.lo,
    vcaltmp.lo, libversit.la

    * libical/src/test/.cvsignore: New file.

    * libical/src/libical/.cvsignore: New file.

    * libical/src/libicalss/.cvsignore: New file.

    * libical/.cvsignore: New file, with config.log in it.

    * tests/ui-tests/message-browser.c: minor cleanup.

    * tests/ui-tests/.cvsignore: added message-browser.

2000-02-18  NotZed  <NotZed@HelixCode.com>

    * tests/test11.c (main): Use a relative path to the mbox provider
    module.

2000-02-18  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c (filename_to_camel_msg): Call
    camel_data_wrapper_set_input_stream, rather than
    camel_data_wrapper_construct_from_stream.  For the whole message,
    allow someone to see the header ("to", "from", etc.).  Clicking on
    tree items to see their elements, now works also.

2000-02-18  Miguel de Icaza  <miguel@nuclecu.unam.mx>

    * configure.in: Make gnomeui the last library on the command line,
    as its path is the one most likely to hold other old libraries
    (libxml) and we need newer versions.
    
    (BONOBO_VFS_GNOME_CFLAGS): Add libical to the
    AC_CONFIG_SUBDIRS 

    (BONOBO_HTML_GNOME_CFLAGS): VFS checking needs to
    go before we rquery them. 

    Use the new method for gnome-print
    checking instead of the old crufty gtk+ based one that nobody can
    debug.  ever.
    
2000-02-16  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c (tree_selection_changed): New
    callback function, which will later change the main html window to
    reflect the newly-selected tree item.
    (get_gtk_html_contents_window): New function. Gets the content
    part of a message.
    (get_gtk_html_header_window): New function. Will get the header
    part of a message, when applicable.

    * camel/camel-formatter.c (str_tolower): Now returns a new string,
    rather than changing it in place.
    (initialize_camel_formatter): New function; gives a root
    CamelDataWrapper and a stream to a CamelFormatter.
    (camel_formatter_wrapper_to_html): New function. Translates any
    CamelDataWrapper into html.
    (lookup_unique_id): Allows the root object to be a
    CamelDataWrapper, which is more general than the previously
    required CamelMimeMessage.


2000-02-14  NotZed  <notzed@zedzone.helixcode.com>

    * configure.in (EXTRA_GNOME_CFLAGS): Add libunicode to CFLAGS/LIBS.

2000-02-13  NotZed  <notzed@zedzone.helixcode.com>

    * configure.in: Added check for libunicode.

    * Makefile.am (SUBDIRS): Added libibex.

    * tests/test11.c (main): New test, tests search api.

2000-02-13  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/test-multipart-mixed.msg: New rfc822 file, which
    crashes message-browser.

    * tests/ui-tests/message-browser.c (get_gtk_html_window): Takes a
    CamelMimeMessage as a param, rather than a filename.
    (main): Puts our windows in an hpane rather than a vbox. Also
    opens a file dlg box if a filename wasn't given as a first param.

    * camel/camel-stream-fs.c (_init_with_name): Set stream_fs->fd to
    -1 if we fail to load the file.
    (camel_stream_fs_new_with_name): If stream_fs->fd is -1, return
    NULL. These changes make it so that a CamelStreamFs won't be
    created if you give it a bogus filename; they may be replaced once
    exception handling is in place.

    * tests/ui-tests/message-browser.c (handle_tree_item): Expand tree
    items.
    (mime_message_to_html): New function; translates a
    CamelMimeMessage into two strings (one for the header, and one for
    the body).
    (get_gtk_html_window): New function; fills out a window with
    html. The html is taken from a processed rfc822 file, via a
    CamelFormatter.

    * camel/camel-formatter.c: Added assertions.
    (handle_text_html): Don't call text_to_html on something that's
    already html.
    (multipart_foreach): function deleted.

    * tests/ui-tests/message-browser.c: Added preliminary support for
    the viewing of messages via gtkhtml. Lots of commenting. 

2000-02-11  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/contact-editor/e-contact-editor.c: Fixed the
    location the first time you see the drop down menus for changing
    which phone, email, or snail mail address you see.

2000-02-11  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.c (e_text_event): Made a click on a text
    widget set the cursor properly.

2000-02-11  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text/e-text.h: Removed some arguments from the .h that
    will never be implemented.


2000-02-10  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/data-wrapper-repository.c (data_wrapper_repository_init): 
    default the text/* mime types to CamelSimpleDataWrapper so
    that Michael can use get_stream. 

2000-02-10  NotZed  <notzed@zedzone.helixcode.com>

    * camel/camel-simple-data-wrapper-stream.h: The superclass is
    actually a seekable stream, not just a stream.

2000-02-10  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/Makefile.am (THREAD_RELATED_TESTS): don't 
    build thread related tests if evolution has been
    compiled with no thread support.

    * configure.in (have_pthread): allow user to enable/disable
    thread support at configure time
    (EXTRA_GNOME_CFLAGS): 
    (EXTRA_GNOME_LIBS): thread support is directly 
    included in this variable if enabled. No more
    EXTRA_GNOME_CFLAGS_THREADS
    Other special support should be added in 
    EXTRA_GNOME_LIBS and EXTRA_GNOME_CFLAGS
    instead of redefining a new variable 
    each time we want to add a new lib. 
    (bonobo, ....)

    * camel/camel.c (camel_init): only try to initialize threads if
    we enabled threads support. 

    * tests/ui-tests/Makefile.am (message_browser_LDADD): use
    EXTRA_GNOME_LIBS

    * configure.in (have_pthread): remove HAVE_PTHREADS
    variable. Define ENABLE_THREADS instead.

    * camel/Makefile.am: use ENABLE_THREADS not HAVE_PTHREADS
    to test if we build thread relateed code. 

    * tests/Makefile.am: use EXTRA_GNOME_LIBS, 
    not EXTRA_GNOME_LIBS_THREADS

2000-02-10  NotZed  <notzed@zedzone.helixcode.com>

    * camel/hash-table-utils.c (g_strcase_hash): Removed a bizarre
    comparison construct for converting case.

2000-02-09  NotZed  <notzed@zedzone.helixcode.com>

    * camel/data-wrapper-repository.c (data_wrapper_repository_init):
    Uses case-insensitive compares.

    * camel/gmime-content-field.c (gmime_content_field_new): Uses
    case-insensitive compares.

    * camel/data-wrapper-repository.c (data_wrapper_repository_init):
    Use case-insensitive mime types.

    * camel/camel-simple-data-wrapper-stream.c (read): Increment the
    copy source address to match the data read offset.
    (seek): Actually implement the seek.

    * camel/camel-mime-part-utils.c
    (camel_mime_part_store_stream_in_buffer): If we get a -1 read,
    DONT update the total bytes, and try and truncate the array in
    reverse.  Eek.

    * camel/camel-mime-part.c (camel_mime_part_encoding_from_string):
    This was DEFINETLEY not the right way to do it. strncmp!=strcmp
    (camel_mime_part_encoding_to_string): Handle the default case.
    : include string.h for strcmp() etc.

2000-02-09  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/test-multipart-alt.msg: New test file; run
    message-browser on it, and it will crash.

2000-02-09  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/message-browser.c (handle_tree_item): 
    show the item. 
    (handle_tree_item): show the containers and the containees
    (get_message_tree_ctrl): call handle_tree_item
    on the message itself

    * camel/camel-mime-message.c (camel_mime_message_init): 
    set the mime type to "mime/message".
    --- THIS IS NOT THE CONTENT TYPE ---

    * camel/camel-mime-body-part.c (camel_mime_body_part_init): 
    set the mime type to "body-part". 
    --- THIS IS NOT THE CONTENT TYPE ---

    * camel/camel-data-wrapper.c (camel_data_wrapper_set_mime_type): 
    mime_type is const. 
    (_set_input_stream): really set the input stream
    (_set_output_stream): really set the output stream
    various other typo fixes.

    * tests/ui-tests/message-browser.c: various typo
    fixes in the ctree construction. 

    * camel/string-utils.c (string_trim): fix braindead
    trailing trim bug.

    * camel/gmime-content-field.c (gmime_content_field_construct_from_string): 
    strip the leading and trailing quotes when constructing the 
    content field. This should be done in a more generic 
    RFC822 approach, but this fixes a bug that prevent
    matt from analysing some multipart messages.

    * camel/camel-data-wrapper.h: reorganize the 
    deprecated and new methods. 

    * camel/providers/mbox/camel-mbox-folder.c 
    (_check_get_or_maybe_generate_summary_file): 
    Use "From " as the message separating string. 
    
    * camel/providers/mbox/camel-mbox-folder.c (_append_message): 
    set the mode when creating the mbox file.   

    * camel/providers/mbox/camel-mbox-utils.c (camel_mbox_write_xev): 
    ditto
    * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_save_summary): 
    ditto

2000-02-09  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c (print_usage_and_quit): Minor
    cleanup.

2000-02-09  NotZed  <notzed@zedzone.helixcode.com>

    * camel/camel-simple-data-wrapper-stream.c (class_init): Actually
    initialise the class.  It simple couldn't have worked before.
    (camel_simple_data_wrapper_stream_construct): Commented out code
    which crashes just to get something working, memory corruption??

2000-02-09  Christopher James Lahey  <clahey@helixcode.com>

    * configure.in: Add new Makefiles to Makefile list.

    * widgets/e-text/Makefile.am: Build libetext.

    * widgets/e-minicard/Makefile.am: Build libeminicard and test
    programs.

    * widgets/Makefile.am: Remove all e-text and e-minicard code and
    add them to the SUBDIRS list.

2000-02-08  Matt Loper  <matt@helixcode.com>

    * tests/ui-tests/message-browser.c: New file; shows a message in
    tree format, where multipart's have multiple leaves.

    * camel/camel-formatter.c: Changed references from
    'multipart/alternate' to 'multipart/alternative'.

    * tests/test-formatter.c (convert_to_html_and_print): Use the
    buffer length of the stream to create strings which are then
    printed, rather than printing the stream (which might not have a
    trailing \0) directly.

    * camel/camel-formatter.c (str_tolower): New function; makes a
    string lowercase.

    * tests/test-formatter.c (convert_to_html_and_print): Fixed call
    to 'camel_formatter_mime_message_to_html' to contain correct
    params.

    * camel/camel-formatter.c: New member to 'CamelFormatterPrivate',
    'attachments', will be used to let the caller know which items
    should be treated as attachments (as opposed to objects which are
    inline to the body).
    (text_to_html): name changed from 'encode_entities'. Also now
    converts newlines to <br> tags.
    (camel_formatter_mime_message_to_html): Now takes two output
    streams -- one for the header, and one for the body.
    (get_bonobo_tag_for_object): New function; tries to make a tag out
    of (1) the leaf of a mime message and (2) a bonobo object that can
    handle its mime type, but can return NULL if it fails to find the
    mime type.
    (handle_vcard): New function; will write out a vcard as html.

2000-02-07  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text.h, widgets/e-text.c: Added line wrap and a max
    number of lines (max number of lines is only obeyed if text is not
    being edited).

2000-02-07  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/printing/e-contact-print.c: Removed an unneccessary
    include of libhnj.  All uses of libhnj are commented out.

2000-02-07  Matt Loper  <matt@helixcode.com>

    * camel/camel-formatter.c (mime_part_to_html): function deleted.

    * tests/test-formatter.c (print_usage_and_quit): New function,
    which gives usage information.

    * camel/camel-formatter.c: made the 'stream' a member of the
    CamelFormatter class, so that streams don't have to be explicitly
    sent as a param where a CamelFormatter is also sent..
    (handle_text_plain): Use 'encode_entities' to change '<' to
    '&gt;', etc.

2000-02-03  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-formatter.c (find_preferred_displayable_body_part_in_multipart_alternative): 
    (mime_part_to_html): typo fix : 
    use find_preferred_displayable_body_part_in_multipart_alternative
    instead of the other names. Allows camel to have no undefined symbols. 

2000-02-02  Matt Loper  <matt@helixcode.com>

    * tests/test-formatter.c: New file; intended to test the
    CamelFormatter class.

    * camel/camel-formatter.c: Lots of cleanup, commenting, some new
    functions, and a really basic skeleton for getting bonobo objects
    into the html.
    (encode_entities): New function, stolen from Daniel Velliard.

2000-01-28  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/printing/e-contact-print-style-editor.h,
    addressbook/printing/e-contact-print-style-editor.c,
    addressbook/printing/test-contact-print-style-editor.c: Files to
    load the contact print style editor from the glade file.  Doesn't
    really do anything yet.

    * addressbook/printing/Makefile.am: Added style editor stuff.

    * addressbook/printing/e-contact-print.glade: Changed a bit.
    Fixed an out of place widget.

    * addressbook/printing/.cvsignore: Added
    contact-print-style-editor-test.

    * addressbook/printing/smallbook.ecps: Fixed up the values to
    match the new types.

    * addressbook/printing/medbook.ecps,
    addressbook/printing/phonelist.ecps: Added two new printing
    styles.

    * addressbook/printing/e-contact-print.h: Fixed an incorrect
    comment.
    
    * addressbook/printing/e-contact-print.c: Added columns and letter
    tabs.  Tweaked spacing all over the place.  Fixed card height
    function so that column wrapping is always done correctly.  Added
    pulling of style information from a file.  Added line wrapping
    within each text field.

    * addressbook/printing/e-contact-print-types.h: Added a type field
    for different types of print styles.


2000-01-28  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text.c (e_text_command): Handle the grab and ungrab
    command instead of doing focus by hand.  This fixes a problem
    related to the scroll wheel.
    (e_text_command): Reset the blink timer in many more command
    situations so that the cursor blinks less when you're interacting
    with it.

    * widgets/e-text-event-processor-emacs-like.c: Send the grab focus
    command when starting a selection and the ungrab focus command
    when ending it.

    * widgets/e-text-event-processor-types.h: Added grab command type
    so that the event processor can tell the widget to grab the focus.

    * widgets/e-reflow.c: Redefined all sizes using #defines so that
    they can be tweaked later.  Added scroll wheel handling and set up
    adjustment increments so that the scroll bars will work correctly.

    * widgets/e-minicard.h: Added minicard focus type enum.  This
    doesn't mean anything yet, but it will later be used to say which
    direction the focus is coming from (below for shift-tab, above for
    tab.)

2000-01-28  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-minicard-label.c, widgets/e-minicard.c: Use
    e_canvas_item_grab_focus so that it will work with old versions of
    gnome-canvas.

    * widgets/e-canvas.c, widgets/e-canvas.h: Finished working around
    focus bugs.

2000-01-28  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/test-reflow.c: Set the minimum_width.

    * widgets/e-reflow.h, widgets/e-reflow.c: Added one more column
    line so that the right edge of the reflow will have a line.  Also
    added a minimum_width so that even if the reflow is thinner than
    the window, when you resize it larger all the lines are drawn.

2000-01-27  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-reflow.h, widgets/e-reflow.c: Added an arrow cursor
    for the draggable columns.  Made the clickable column area
    larger.  

    * widgets/e-text.h, widgets/e-text.c: Added an I beam cursor for
    the text item when it is editable.

    * widgets/e-minicard-label.c: Forward enter and leave
    notifications to the contained editable text item.

2000-01-26  Matt Loper  <matt@helixcode.com>

    * camel/camel-formatter.c: By looking up a mimetype in a
    hashtable, we can now get a handler function for an arbitrary
    mimetype.

2000-01-25  Mathieu Lacage <mathieu@advogato.org>

    * .cvsignore s: cvs shutup. 

2000-01-25  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-reflow.c, widgets/e-minicard.c: Handle shift-tab
    properly now.

    * widgets/e-minicard-label.c: Reindented some areas.

    * widgets/test-reflow.c: Use e-canvas.  Set the back pixmap to
    NULL for the canvas so that scrolling won't flash grey.

    * widgets/e-canvas.c, widgets/e-canvas.h: These subclass
    GnomeCanvas to work around a few bugs so that evolution will work
    well with old versions of gnome-libs.

    * widgets/Makefile.am: Added e-canvas.c and e-canvas.h.

    * addressbook/contact-editor/contact-editor.glade: Not much
    change.  Mostly internal reorganization by glade itself.

2000-01-25  Christopher James Lahey  <clahey@helixcode.com>

    * addressbook/printing/smallbook.ecps: Example contact printing
    style.  Not used yet.

    * addressbook/printing/e-contact-print.glade: A glade file for
    editing contact printing styles.  Not used yet.

    * addressbook/printing/test-print.c: Test file for printing.

    * addressbook/printing/e-contact-print.c,
    addressbook/printing/e-contact-print.h,
    addressbook/printing/e-contact-print-types.h,
    addressbook/printing/Makefile.am, addressbook/printing/.cvsignore:
    New files for contact printing support.

    * addressbook/Makefile.am (SUBDIRS): Add printing.

    * configure.in: Check for gnome-print.  Build the
    addressbook/printing Makefile.

2000-01-24  bertrand  <bertrand@helixcode.com>

    * camel/camel-data-wrapper.h: 
    * camel/camel-data-wrapper.c 
    (_set_input_stream): 
    (_get_input_stream): 
    (_set_output_stream): 
    (_get_output_stream): 
    The CamelDataWrapper can now be provided with input and
    output streams, so that nothing has to be kept in memory. 
    
    * camel/camel-stream.c (camel_stream_class_init): 
    added the "data_available" signal.
    

2000-01-24  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in: Added the gnome-pilot and capplet checks; they
    will likely be reworked for the Evolution framework, but for now
    the calendar/ directory needs them.

    * configure.in: Added checks for gnome-vfs.

2000-01-24  bertrand  <bertrand@helixcode.com>

    * camel/camel-seekable-stream.c: 
    * camel/camel-seekable-stream.h: 
    new files. 
    
    * camel/camel-simple-data-wrapper-stream.h:  parent class is now
    CamelSeekableStream
    * camel/camel-stream-buffered-fs.h: idem
    * camel/camel-stream-buffered-fs.c: idem
    * camel/camel-stream-mem.h: idem
    * camel/camel-stream-mem.c: idem
    (_seek): change declaration
    * camel/camel-stream-fs.c: parent class is now
    CamelSeekableStream
    (_seek): change declaration

    * camel/camel-stream-fs.h: parent class is now
    CamelSeekableStream
    
    * camel/camel-stream-fs.[ch]: converted all 
    gint64 variables into guint32. 
    
    
    * camel/camel-stream-fs.c (_read): fix stupid bug.
    (_write): ditto. 

    * camel/camel-exception.c (camel_exception_new): don't
    forget to clean the exception when creating it. 

    * camel/camel-recipient.c (camel_recipient_table_add_list): 
    add recipient_list to the recipients, not recipients_list. 
    I don't know what that variable was doing here. 


2000-01-24  Matt Loper  <matt@helixcode.com>

    * camel/camel-formatter.c (write_header_info_to_stream): new
    function, broken out from 'camel_formatter_make_html'.
    (write_mimepart_to_stream): same.
    (find_text_body_part_in_multipart_related): new function.
    (camel_formatter_make_html): Now tries to deal with
    multipart/related, multipart/alternate, and text/(plain|html).


2000-01-23  bertrand  <bertrand@helixcode.com>

    * camel/camel-store.c (camel_store_get_session): 
    added a public get_session method.

    * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_save_summary): 
    (camel_mbox_load_summary): load/save message sizes in the summary file

    * camel/providers/mbox/camel-mbox-summary.h: 
    added a size field to the message information 
    structure. 

    * camel/providers/mbox/camel-mbox-utils.c (parsed_information_to_mbox_summary): 
    copy message size to the mbox summary information too. 
    
    * camel/camel-stream-fs.c (_seek): updated to 
    work with bounded fs streams. 
    (_write): ditto.
    (_read): ditto.

    * camel/camel-stream-fs.h (struct ): 
    added the cur_pos, inf_bound and sup_bound
    members to allow for bounded fs stream. 

    * camel/camel-stream-fs.c (_set_bounds): new func.
    (_init_with_fd_and_bounds): idem.
    (_init_with_name_and_bounds): idem. 
    New functions to allow the usage of bounded fs streams.

    The bounded fs stream allow, for example, to make a stream
    from a message stored in an mbox file. 
    
    
2000-01-22  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-folder.c (_check_get_or_maybe_generate_summary_file): 
    use the real summary file path instead of a 
    stupid hardcoded one. Fixes yet another bug.

    * camel/providers/mbox/camel-mbox-utils.c (parsed_information_to_mbox_summary): 
    don't forget to copy the date too. Fix a very annoying bug.

    * camel/providers/mbox/camel-mbox-folder.c (_append_message): 
    implemented. A lot of fixes too. Works now. 
    (_get_uid_list): implemented.

2000-01-21  bertrand  <bertrand@helixcode.com>

    * tests/test10.c:
    test the mbox provider. 

    * camel/camel-folder.c (_set_name): 
    if camel_folder_get_mode returns an
    exception, return it instead of
    overriding it with a new one.
    (camel_folder_is_open): make the is_open
    method public.
    (_set_name): use the is_open instead of
    get_mode.
    (_set_name): set the fullname even in the case 
    where the folder has no parent.
    (_set_name): use %c, not %d to add the 
    separator char into the full path.

    * camel/camel-store.c: add exception handling everywhere in
    the store related functions arguments. 
    * camel/providers/mbox/camel-mbox-folder.c: idem
    * camel/providers/mbox/camel-mbox-folder.h: idem
    * camel/providers/mbox/camel-mbox-store.h: idem

    * camel/providers/mbox/Makefile.am (libcamelmbox_la_SOURCES): 
    added camel-mbox-provider.c to the mbox provider
    sources. 

    * camel/providers/mbox/camel-mbox-provider.c: 
    provider registration code.

    * camel/providers/mbox/camel-mbox-folder.c (_get_message_count): implemented
    (_append_message): implemented

    * camel/providers/mbox/camel-mbox-parser.c (initialize_buffer): 
    use \0 to mark the end of the buffer.
    (read_next_buffer_chunk): ditto.
    (read_header): test the presence of a \0 instead of
    reading the eof field
    (read_message_begining): idem.
    (camel_mbox_parse_file): idem.
    Remove the eof field from the parser
    structure. 
    (read_next_buffer_chunk): removed some nasty bugs
    again. 

    
2000-01-21  Federico Mena Quintero  <federico@helixcode.com>
    
    * libversit/vcc.y: Removed the VFS crap; my mistake, it should not
    go here.

    * configure.in: Added yacc requirements for libversit.

2000-01-21  Matt Loper  <matt@helixcode.com>

    * camel/camel-formatter.c (camel_formatter_make_html): added a
    CamelMimeMessage as a param to this function, and removed it as a
    member of the object.

2000-01-21  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in (AC_OUTPUT): Added libversit/Makefile and
    calendar/Makefile.

    * Makefile.am (SUBDIRS): Added libversit and calendar.

2000-01-20  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): 
    compute and return the file size. 


2000-01-20  Matt Loper  <matt@helixcode.com>

    * camel/camel-formatter.c, camel/camel-formatter.h: New
    files. You'll be able to use a CamelFormatter to get
    html-formatted versions of a CamelMimeMessage.
    
2000-01-20  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text-event-processor-types.h: Changed some line
    spacing.

    * widgets/test-reflow.c: Connected to the resize signal of the
    reflow.

    * widgets/e-minicard.c: Made width argument set function only
    update if width is different.

    * widgets/e-reflow.h, widgets/e-reflow.c: Added draggable column dividers.

    * addressbook/contact-editor/test-editor.c: Open two dialogs for
    more interesting testing.

    * addressbook/contact-editor/e-contact-editor.h,
    addressbook/contact-editor/e-contact-editor.c: Modified to use
    glade.  Added menus to change which phone/address/email entries to
    view.  Added images to the dialog.

    * addressbook/contact-editor/e-contact-editor-strings.h,
    addressbook/contact-editor/contact-editor.glade: Glade files for
    the contact editor dialog.

    * addressbook/contact-editor/Makefile.am: Added images and added
    glade stuff.

    * addressbook/contact-editor/arrow.png,
    addressbook/contact-editor/briefcase.png,
    addressbook/contact-editor/netfreebusy.png,
    addressbook/contact-editor/netmeeting.png: Image files for the
    contact editor dialog.

2000-01-19  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-folder.c (_get_message_count): 
    implemented.

    * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_save_summary): 
    (camel_mbox_load_summary): save/load the next uid. 

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): 
    Compute the next available uid. 
    * camel/providers/mbox/camel-mbox-folder.c (_create): 
    (_check_get_or_maybe_generate_summary_file): 
    Set and use the next_uid field properly. 
    * camel/providers/mbox/camel-mbox-summary.h: added
    an extra field to store the next available uid. 

    * camel/providers/mbox/camel-mbox-folder.c 
    (_check_get_or_maybe_generate_summary_file): 
    routine called when the folder is opened. 
    Reads or creates the summary file. 
    (_create): initialize the internal summary 
    structure. 
    (_close): save the summary file on closing. 
    (_init_with_store): initialize mbox specific
    folder members. 

2000-01-18  bertrand  <bertrand@helixcode.com>

    * tests/test9.c:
    tests for summary and parsing process of mbox files. 

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): do
    not use case insensitive comp to detect message separators. Kill 
    some nasty bugs in netscape file parsing,

    * camel/providers/mbox/camel-mbox-utils.c (parsed_information_to_mbox_summary): 
    don't use g_array_append but write directly inside the
    array data instead. Better performance and bug fix. 

    * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_load_summary): 
    fix the name and bugs. 

    * camel/camel-folder-summary.h: update the class
    method definition to match the public defs. 

    * camel/providers/mbox/camel-mbox-summary.c (camel_mbox_save_summary): 
    (mbox_load_summary): summary file read/write routines. 

    * camel/providers/mbox/camel-mbox-utils.c (parsed_information_to_mbox_summary): 
    routine to construct the summary after the mbox
    file has been parsed and the x-evolution fields
    inserted. 

2000-01-17  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-utils.c (camel_mbox_write_xev): 
    dont use the x_evolution field but rather the uid to 
    determine the presence of "X-Evolution" in the mail. 

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): 
    parse the status and uid values if the x-evolution
    has been found. 

    * camel/providers/mbox/camel-mbox-utils.c (camel_mbox_xev_parse_header_content): 
    return the parsed status field correctly. 

    * camel/providers/mbox/camel-mbox-utils.h: 
    fixed bad prototype.

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): 
    parse and store the "To:" header.

    * camel/providers/mbox/camel-mbox-parser.h: 
    added a "to" field 

    * camel/camel-folder-summary.c: 
    create the arrays here. 

    * camel/camel-folder-summary.h: the list of 
    summary information is no longer a GList but 
    rather a GArray.

2000-01-17  Chrsitopher James Lahey  <clahey@helixcode.com>

    * head.png, phone.png, email.png, web.png, snailmail.png: Images
    for e-contact-editor.c.

    * addressbook/contact-editor/text-editor.c: Test program
    for contact editor widget.

    * addressbook/contact-editor/e-contact-editor.c,
    addressbook/contact-editor/e-contact-editor.h: Contact editor
    widget files.

    * addressbook/contact-editor/.cvsignore,
    addressbook/contact-editor/Makefile.am: New directory for contact
    editor files.

    * addressbook/.cvsignore, addressbook/Makefile.am: New directory
    for addressbook files.

    * widgets/.cvsignore: Added reflow-test.

    * Makefile.am (SUBDIRS): Added addressbook subdirectory.

    * configure.in, widgets/Makefile.am: Removed widgets/toolbar from
    SUBDIRS since the lack of content was preventing it from
    compiling.

    * widgets/e-text.c, widgets/e-text.h: Fixed a crashing bug.

2000-01-17  bertrand  <bertrand@helixcode.com>

    * tests/test9.c (main): test for the mbox utils.

2000-01-17  Federico Mena Quintero  <federico@helixcode.com>

    * configure.in: Add the gnomecanvaspixbuf argument to gnome-config
    invocations.

2000-01-17  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-utils.c (camel_mbox_write_xev): 
    (copy_file_chunk): 
    (camel_mbox_xev_write_header_content): 
    (string_to_flag): 
    (flag_to_string): 
    (string_to_uid): 
    (uid_to_string): 
    A bunch of new funcs to handle x-evolution 
    private header field. 
    (copy_file_chunk): fixed a nasty bug. 
    (camel_mbox_write_xev): create the copy file descriptor
    with the proper arguments. Exceptions implememnted.
    (camel_mbox_write_xev): changed the way bytes are counted. 
    No more uses the message size cause it did not take into
    account the message separators characters. 
    (camel_mbox_write_xev): hopefully fixed the last bugs. 
    works ok now. 
    

2000-01-15  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-parser.c 
    (camel_mbox_parse_file): 
    store the end of headers position. 
    
    * camel/providers/mbox/camel-mbox-parser.h: 
    added the end_of_header_position to locate the 
    begining of the mail body. 
    

    * camel/providers/mbox/camel-mbox-utils.c (uid_to_string): 
    (string_to_uid): 
    (flag_to_string): 
    (string_to_flag): 
    new functions to handle uids and
    flags in the X-Evolution header. 
    (camel_mbox_xev_parse_header_content): 
    new function to parse an X-Evolution 
    header. 
    (camel_mbox_xev_write_header_content): 
    new function to write the X-Evolution 
    header. 

2000-01-13  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-parser.c (read_next_buffer_chunk): 
    eof is true when no more chars are available, not 
    when we've read the entire file. 
    (initialize_buffer): ditto.
    (read_message_begining): documented.
    (read_header): ditto.
    (new_message_detected): ditto.
    (advance_n_chars): ditto.
    (goto_next_char): ditto.
    (read_next_buffer_chunk): ditto.
    (initialize_buffer): ditto.
    (parser_free): ditto.
    (new_parser): ditto.

2000-01-12    <clahey@galapagos.helixcode.com>

    * widgets/e-text-event-processor-types.h,
    widgets/e-text-event-processor-emacs-like.c, widgets/e-text.c,
    widgets/e-text.h: Added selection and clipboard support.  Added up
    and down arrow keys.  Fixed choice of font colors for the
    selection to be based on the current style.

    * widgets/e-minicard.c: Caused a click to grab the focus.  Changed
    the fake information added.

    * widgets/e-minicard-label.c: Forward mouse events to the field
    EText item.

2000-01-13  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-canvas-utils.c, widgets/e-canvas-utils.h:
    e_canvas_item_move_absolute is just a helper function not supplied
    by the gnome_canvas.[ch] I put it here so that multiple items can
    use it.

    * widgets/e-reflow.c, widgets/e-reflow.h: This item contains a
    number of other items and places them into multiple columns.  The
    items contained must support a number of arguments and signals to
    allow the reflow to interact with them.

    * widgets/test-reflow.c: This is a test program for e-reflow.

    * widgets/e-text.c, widgets/e-text.h: Added properly drawn
    selected text.  Added some preliminary code for X selection
    handling and cut & paste.

    * widgets/e-minicard.c, widgets/e-minicard.h: Added ARG_HAS_FOCUS
    handling.  Made label display random for more interesting tests of
    multiple cards.  Tweaked sizing information for better display.

    * widgets/e-minicard-label.c, widgets/e-minicard-label.h: Added
    ARG_HAS_FOCUS handling.

    * widgets/Makefile.am: Added the reflow test and reflow files.

2000-01-12  bertrand  <bertrand@helixcode.com>

    * camel/providers/mbox/camel-mbox-parser.h (camel_mbox_parse_file): 
    Added the prototype of camel_mbox_parse_file. 

    * camel/providers/mbox/camel-mbox-parser.c (camel_mbox_parse_file): 
    updated in-line documentation.

    * tests/Makefile.am (noinst_PROGRAMS): 
    remove non updated tests from the build 
    process. 

    * corrected a bunch of bugs 
    
    * camel/providers/mbox/camel-mbox-parser.c 
    (camel_mbox_parse_file): 
    parser the subject and date.
    

    * camel/providers/mbox/camel-mbox-parser.c 
    (camel_mbox_parse_file): added the ability to 
    follow the parsing progression. 
    
    * camel/providers/mbox/camel-mbox-parser.h: 
    parse the x-evolution field. 

    * camel/Makefile.am (libcamel_la_SOURCES): 
    disabled gmime-rfc2047 as it depends on libunicode
    and is not used for the moment. 

2000-01-12  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-minicard.c, widgets/e-minicard.h: Added a resize
    signal for when the card changes height.  Made it so that when you
    press tab inside of a field, it goes to the next field.

    * widgets/e-minicard-label.c, widgets/e-minicard-label.h: Added a
    resize signal for when the label changes height.

    * widgets/e-text.c, widgets/e-text.h: Added a resize signal for
    multiple lines.  Added scrolling based on cursor position.

    * widgets/Makefile.am: Removed an extraneous build target.

2000-01-11  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/e-text-event-processor-emacs-like.c: Blocked the tab key
    from getting inserted into the buffer since the renderer doesn't
    know what a tab is.

    * widgets/e-text.c, widgets/e-text.h: Fixed a memory leak.  Added
    a blinking cursor and scrolling for the text item.

2000-01-11  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/test-minicard.c: Removed some code which got in the way
    of testing properly.

    * widgets/e-minicard-label.c (e_minicard_label_realize): Made the
    field text item editable.

    * widgets/Makefile.am: Added e-text-event-process*.[ch].

    * widgets/e-text.c, widgets/e-text.h: Changed these to support
    editing.

    * widgets/e-text-event-processor.c,
    widgets/e-text-event-processor.h,
    widgets/e-text-event-processor-types.h,
    widgets/e-text-event-processor-emacs-like.c,
    widgets/e-text-event-processor-emacs-like.h: These are a new pair
    of classes which handle all events from the text item and convert
    them into commands.


2000-01-10  Christopher James Lahey  <clahey@helixcode.com>

    * widgets/Makefile.am: Added minicard and text stuff.

    * widgets/e-minicard.c, widgets/e-minicard.h,
    widgets/e-minicard-label.c, widgets/e-minicard-label.h: Added
    canvas items for the minicard view in the contact manager.

    * widgets/test-minicard.c, widgets/test-minicard-label.c: Tests
    for the minicard items.

    * widgets/e-text.h, widgets/e-text.c: New canvas item.  Based on
    GnomeCanvasText.  Adds ellipsis capabilities.  Used in
    e-minicard*.[ch].

    * widgets/.cvsignore: Added minicard-test and minicard-label-test.

2000-01-06  Miguel de Icaza  <miguel@gnu.org>

    * configure.in: Add Bonobo detection, Bonobo flags for compilation
    for the components and the shell.

2000-01-06 Elliot Lee <sopwith@redhat.com>
    * composer/Makefile.am, widgets/e-table/Makefile.am: Work with
    builddir != srcdir

2000-01-05  Miguel de Icaza  <miguel@gnu.org>

    * configure.in (EXTRA_GNOME_CFLAGS_THREADS,
    EXTRA_GNOME_LIBS_THREADS): New variables that hold the thread
    version of the compile/link lines.

1999-11-20  Miguel de Icaza  <miguel@gnu.org>

    * configure.in (PACKAGE): Raise warning level.

2000-01-04  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/mbox/camel-mbox-folder.c (_list_subfolders): 
    in the io_error label does not return before the 
    list has been freed.

2000-01-03  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/mbox/camel-mbox-folder.c (_list_subfolders): 
    detects netscape ".sdb" folders as well as simple 
    non-suffixed folders (as the ones used in pine).
    

    * camel/string-utils.c (string_prefix): 
    finished implementation. 
    (string_prefix): added a boolean flag to indicate if the 
    suffix has been found. When the suffix does not match, 
    return NULL.

1999-12-26 bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-exception.c (camel_exception_setv): 
    new function. Allow printf-like description
    string constructions. 

    * camel/camel-exception.h: cosmetic changes.

        * camel/providers/mbox/camel-mbox-store.h:
        * camel/providers/mbox/camel-mbox-store.c:
        * camel/providers/mbox/camel-mbox-folder.h:
        * camel/providers/mbox/camel-mbox-folder.c:
        More work on the mbox provider.


1999-12-22  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/mbox/camel-mbox-store.h: 
    * camel/providers/mbox/camel-mbox-store.c: 
    * camel/providers/mbox/camel-mbox-folder.h: 
    * camel/providers/mbox/camel-mbox-folder.c: 
    part of the mbox provider.

1999-12-20  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (_set_name): 
    check that the folder is closed or raise an exception.
    (_set_name): unset the name fields as soon as possible, 
    even if an exception is raised.

    * configure.in:
    build mbox provider Makefile
    
    * camel/Makefile.am (SUBDIRS): 
    re-enable providers compilation

1999-12-19  Damon Chaplin  <damon@karuna.freeserve.co.uk>

    * configure.in (AC_OUTPUT): added widgets/meeting-time-sel/Makefile

1999-12-19  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-utils.c: include camel-log.h
    to avoid unresolved symbols.

1999-12-18  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_get_summary): 
    documented.

    * camel/camel-folder-pt-proxy.c (_append_message): 
    updated to take the change on append into account.

    * camel/camel-folder.h: 
    updated class def concerning append.
    * camel/camel-folder.c 
    (camel_folder_append_message): documented. 
    (camel_folder_append_message): don't return the 
    message number. Use specific methods instead.
    (_append_message): idem.

    (_delete): use  exception mechanism.
    (camel_folder_delete): idem.
    (_delete_messages): idem.
    (camel_folder_delete_messages): idem.
    (_get_parent_folder): idem.
    (camel_folder_get_parent_folder): idem.
    (_get_parent_store): idem.
    (_get_mode): idem.
    (camel_folder_get_parent_store): idem.
    (camel_folder_get_mode): idem.
    (_list_subfolders): idem.
    (camel_folder_list_subfolders): idem.
    (_expunge): idem.
    (camel_folder_expunge): idem.
    (_has_message_number_capability): idem.
    (camel_folder_has_message_number_capability): idem.
    (_get_message_by_number): idem.
    (camel_folder_get_message_by_number): idem.
    (camel_folder_get_message_count): idem.
    (_list_permanent_flags): idem.
    (camel_folder_list_permanent_flags): idem.
    (_copy_message_to): idem.
    (camel_folder_copy_message_to): idem.
    (camel_folder_has_summary_capability): idem.
    (camel_folder_get_summary): idem.
    (camel_folder_has_uid_capability): idem.
    (camel_folder_get_message_uid): idem.
    (_get_message_uid_by_number): idem.
    (camel_folder_get_message_uid_by_number): idem.
    (camel_folder_get_message_by_uid): idem.
    (camel_folder_get_uid_list): idem.

1999-12-17  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (_set_name): 
    use exception mechanism.
    (camel_folder_set_name): idem.
    (camel_folder_set_full_name): idem.
    (_get_name): idem.
    (camel_folder_get_name): idem.
    (_get_full_name): idem.
    (camel_folder_get_full_name): idem.
    (_can_hold_folders): idem.
    (_can_hold_messages): idem.
    (_exists): idem.
    (camel_folder_exists): idem.
    (_is_open): idem.
    (_get_subfolder): idem.
    (camel_folder_get_subfolder): idem.

    * camel/camel-exception.c (camel_exception_clear): 
    New function. Clear an exception.
    (camel_exception_get_id): 
    New function. 
    (camel_exception_get_description): 
    New function. 

    * camel/camel-folder.c (_set_name): 
    Use the exception system. When the folder
    has no parent, don't set its full name 
    field.

    
1999-12-16  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_expunge): 
    (_expunge): 
    * camel/camel-folder-pt-proxy.c (_expunge): 
    changed the return value. Now returns the list 
    of expunged messages

    * camel/camel-folder.c (_init_with_store): 
    cleaned up. Use the exception system now.
    (_open): ditto.
    (camel_folder_open): ditto.
    (camel_folder_open_async): ditto.
    (_close):  ditto.
    (camel_folder_close):  ditto.
    (camel_folder_close_async): ditto.

    * camel/camel-exception.c (camel_exception_set): 
    When no exception is given, do nothing, just
    return. 
    (camel_exception_set): documented.
    (camel_exception_new): idem.
    (camel_exception_free): idem.
    (camel_exception_xfer): idem.
    

    * camel/camel-folder.c:
    * camel/camel-folder.h: more clean-ups. 
    Removed message list related code. 
    This was braindead design. 
    

    * camel/camel-folder-utils.c (camel_aml_expunge_messages): 
    implemented. The routines in this file will be
    called by providers to handle the list of
    message already standing in memory. 

1999-12-15  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-utils.c: 
    * camel/camel-folder-utils.h: 
    New files, misc utilities for the 
    folder providers. Includes active message
    list utilities. 

    
    * camel/camel-folder.c (_has_message_number_capability): 
    (camel_folder_has_message_number_capability): 
    Added this to know if a folder provides 
    number-based message access.

    * camel/camel-folder.c (_get_message_count): 
    added warning when called directly.
    (_append_message): ditto
    (_open_async):  ditto
    (_close_async):  ditto
    (_delete_messages): ditto 
    (_expunge):  ditto
    (_get_message_by_number):  ditto
    (_get_message_uid):  ditto
    (_get_message_uid_by_number):  ditto
    (_get_message_by_uid):  ditto
    (_get_uid_list):  ditto

    
    * camel/camel-folder-pt-proxy.c (_open_async): 
    (_open): 
    (_close_async): 
    (_close): 
    (camel_folder_pt_proxy_class_init): 
    update 
    (_get_message_by_number): 
    Update to reflect changes in CamelFolder

    * camel/camel-folder.h: 
    * camel/camel-folder.c (_get_subfolder): 
    (camel_folder_get_subfolder): 
    The CamelFolder::get_folder is renamed to 
    get_subfolder as it is more intuitive. 

    * camel/camel-folder.c (_get_message_by_number): 
    (camel_folder_get_message_by_number): 
    * camel/camel-folder.h 
    (camel_folder_get_message_by_number): 
    The get_message method is now named
    get_message_by_number for consistency
    with the _by_uid methods.

    * camel/camel-folder.[ch]: 
     clean-ups. 

1999-12-13  Nat Friedman  <nat@helixcode.com>

    * ebook/e-book.h: New file.
    * ebook/e-book.c: New file.
    * ebook/e-card.h: New file.
    * ebook/e-card-fields.h: New file.
    * ebook/e-commerce.h: New file. :-)

1999-12-08  Ettore Perazzoli  <ettore@gnu.org>

    * tests/test1.c (main): Removed the strdup()s, which are not
    deeded anymore.

    * camel/camel-mime-message.c (_set_subject): `subject' made const.
    (camel_mime_message_set_subject): Likewise.
    (_set_from): `from' made const.
    (camel_mime_message_set_from): Likewise.
    (_set_reply_to): Made `reply_to' const.
    (camel_mime_message_set_reply_to): Likewise.
    (_set_set_received_date): Made `received_date' const.
    (camel_mime_message_set_reply_to): Likewise.
    (_set_field): `value' made const.  Also, strdup the string before
    assigning.

    * camel/camel-mime-message.h: Virtual methods changed to use const
    strings when setting header values.

1999-11-17  Ettore Perazzoli  <ettore@gnu.org>

    * composer/Makefile.am (EXTRA_DIST): Added `$(glade_DATA)'.

    * camel/Makefile.am (EXTRA_DIST): Added
    `$(libcamel_extra_sources)'.
    (libcamelinclude_HEADERS): Added `gmime-base64.h'.

1999-11-17  Ettore Perazzoli  <ettore@gnu.org>

    * camel/camel-mime-message.c (_write_to_stream): Removed extra ':'
    in the `Mime-Version' header.

    * tests/ui-tests/msg-composer-test.c: Removed.

    * Makefile.am (SUBDIRS): Added `composer'.

    * configure.in: Create `composer/Makefile'.

    * camel/camel-simple-data-wrapper-stream.c
    (camel_simple_data_wrapper_stream_construct): Updated accordingly.
    (camel_simple_data_wrapper_stream_new): Updated accordingly.
    * camel/camel-stream-data-wrapper.c
    (camel_stream_data_wrapper_construct): Updated accordingly.

    * camel/camel-data-wrapper.h: Replaced `IS_CAMEL...()' type check
    macro name with `CAMEL_IS...()'.
    * camel/camel-folder-pt-proxy.h: Likewise.
    * camel/camel-folder-summary.h: Likewise. 
    * camel/camel-folder.h: Likewise. 
    * camel/camel-medium.h: Likewise. 
    * camel/camel-mime-body-part.h: Likewise.
    * camel/camel-mime-message.h: Likewise. 
    * camel/camel-mime-part.h: Likewise. 
    * camel/camel-multipart.h: Likewise. 
    * camel/camel-service.h: Likewise. 
    * camel/camel-session.h: Likewise. 
    * camel/camel-simple-data-wrapper-stream.h: Likewise. 
    * camel/camel-simple-data-wrapper.h: Likewise.
    * camel/camel-store.h: Likewise.
    * camel/camel-stream-buffered-fs.h: Likewise.
    * camel/camel-stream-data-wrapper.h: Likewise. 
    * camel/camel-stream-fs.h: Likewise. 
    * camel/camel-stream-mem.h: Likewise. 
    * camel/camel-stream.h: Likewise. 

    * tests/test1.c (main): Updated to match the `RECIPIENT_TYPE'
    changes.

    * camel/camel-mime-message.h: Changed `RECIPIENT_TYPE_TO',
    `RECIPIENT_TYPE_CC' and `RECIPIENT_TYPE_BCC' into
    `CAMEL_RECIPIENT_TYPE_TO', `CAMEL_RECIPIENT_TYPE_CC' and
    `CAMEL_RECIPIENT_TYPE_BCC', respectively.

1999-11-17  Ettore Perazzoli  <ettore@gnu.org>

    * camel/camel-mime-message.c (_write_to_stream): Write
    "Mime-Version: 1.0" to the stream.

    * tests/test1.c: If executed with a file name parameter, attach a
    file with with that name to the email without loading it into
    core, thus demonstrating usage of my latest changes.

    * camel/camel-mime-part.c (_set_encoding): Updated to use
    `CamelMimePartEncodingType'.
    (camel_mime_part_set_encoding): Likewise.
    (_get_encoding): Likewise.
    (camel_mime_part_get_encoding): Likewise.
    (_write_content_to_stream): Honour the `encoding' member.
    (_construct_from_stream): Made static.
    (camel_mime_part_encoding_to_string): New function.
    (_write_to_stream): Write the encoding string using it.
    (camel_mime_part_init): Set encoding to
    `CAMEL_MIME_PART_ENCODING_DEFAULT'.
    (_finalize): Don't free `encoding' anymore.
    (camel_mime_part_encoding_from_string): New function.
    (_parse_header_pair): Use it.

    * camel/camel-mime-part.h: New enum `CamelMimePartEncodingType'.
    Member `encoding' of `struct _CamelMimePart' changed from `gchar
    *' to `CamelMimePartEncodingType'.  All the encoding-related
    methods changed to use this type instead of `gchar *'.

    * camel/gmime-base64.c (gmime_encode_base64): Got it to work.

    * camel/Makefile.am (libcamel_la_SOURCES): Compile
    `gmime-base64.c'.

    * camel/gmime-base64.h: New, previously missing, header.

    * camel/camel-stream-data-wrapper.c: New file implementing the
    `CamelStreamDataWrapper' class.
    * camel/camel-stream-data-wrapper.h: Corresponding header.

    * camel/camel-simple-data-wrapper.c: Implemented the `get_stream'
    virtual method.
    (_get_stream): New function implementing the method.
    (camel_simple_data_wrapper_class_init): Install it in the class
    struct.
    (camel_simple_data_wrapper_init): New function initializing the
    `stream' member to NULL,
    (camel_simple_data_wrapper_class_init): Set it as the
    GtkObjectInitFunc.

    * camel/camel-simple-data-wrapper.h: New member `stream' in
    `struct _CamelSimpleDataWrapper'.

    * camel/camel-simple-data-wrapper-stream.c: New file implementing
    the `CamelSimpleDataWrapperStream' class.
    * camel/camel-simple-data-wrapper-stream.h: Corresponding header.

    * camel/camel-data-wrapper.c (camel_data_wrapper_get_stream): New
    function.
    (_get_stream): New private function, just returning NULL.
    (camel_data_wrapper_class_init): Install it as the default
    `get_stream' virtual method.

    * camel/camel-data-wrapper.h: New virtual method `get_stream' in
    `CamelDataWrapperClass'.
    (camel_data_wrapper_get_stream): New function prototype.

1999-11-05  Ettore Perazzoli  <ettore@gnu.org>

    * tests/ui-tests/msg-composer-test.c: New file for testing the
    `EMsgComposer' widget.
    * tests/ui-tests/Makefile.am (noinst_PROGRAMS): Compile it.  Do
    not compile `store_listing' for now because it's currently broken.
    (INCLUDES): Added the `widgets' source directory to the include
    path list.
    (LDADD): Removed the MH dependency; link with
    `libevolutionwidgets.la' from the `widgets' directory.

    * configure.in: Create `widgets/Makefile'.

    * camel/gmime-rfc2047.c (rfc2047_clean): Removed C++-like comment.
    * camel/camel-folder.c (camel_folder_get_message_uid_by_number):
    Likewise.
    * camel/gmime-content-field.c (gmime_content_field_get_parameter):
    Likewise.
    * camel/camel.c (camel_init): Likewise.
    * camel/camel-provider.c (camel_provider_register): Likewise.
    * camel/camel-multipart.c (_construct_from_stream): Likewise.
    * camel/camel-mime-part.c (_write_content_to_stream): Likewise.
    * camel/camel-medium.c (camel_medium_class_init): Likewise.

    * camel/camel-data-wrapper.h (camel_data_wrapper_get_type): Make
    prototype non-static.

    * camel/Makefile.am (libcamelinclude_HEADERS): Move
    `camel-exception-list.def' from `EXTRA_DIST' to
    `libcamelinclude_HEADERS'.

    * camel/camel.h: Do not #include <config.h>.
    * camel/data-wrapper-repository.h: Likewise.

1999-11-05  Ettore Perazzoli  <ettore@gnu.org>

    * tests/Makefile.am (INCLUDES): Add `-I$(top_srcdir)'.

1999-10-13  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_close): the 
    folder->close method is now asynchronous.

    * camel/camel-folder-pt-proxy.c (_folder_open_cb): 
    (_open): 
    (_folder_open_cb): 
    (_open): 
    open/close method implemented in the thread proxy
    folder. More to come.

    * camel/camel-exception.c (camel_exception_xfer): 
    new utility func.

    * camel/camel-marshal-utils.c: some new marshallers

    * camel/camel-folder-pt-proxy.c: Some explanations
    on the thread proxy system.

1999-10-11  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-marshal-utils.c: 
    camel/camel-marshal-utils.h:
    Handles operation marshalling. 
    
    * camel/camel-thread-proxy.c: 
    camel/camel-thread-proxy.h: 
    new files. Generic proxy system.
      
    * camel/camel-folder-pt-proxy.c 
    moved all proxy related code in dedicated files.
    
    (camel_folder_pt_proxy_init): 
    removed proxy initialisation code
    (_finalize): 
    removed proxy finalization code


    * camel/camel-exception.c 
    (camel_exception_new): 
    (camel_exception_set): 
    (camel_exception_free): 
    New funcs.

1999-09-21  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-pt-proxy.c (_async_close): 
    implemented.

    * configure.in:
    Check pthreads.

    * camel/Makefile.am: 
    camel-folder-pt-proxy.c is only compiled
    when pthreads are available.
    
    * camel/camel-folder-pt-proxy.c:
    Signal proxying implemenatation. 
    (_signal_marshaller_server_side): 
    (_signal_marshaller_client_side): 
    (_init_signals_proxy): 
    Code not is tested and has to be best 
    explained as it uses threads conditions and
    gtk signal system.
    (_thread_notification_catch): notify pending signals
    as well as thread availability.

1999-09-20  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-pt-proxy.c (_op_exec_or_plan_for_exec): 
    completed

    Binch of new funcs:
    (_maybe_run_next_op): 
    Called by the watch notification when 
    a threaded op is completed
    (_thread_notification_catch): 
    notification watch call back
    (_init_notify_system): 
    set up the notification channel
    (notify_availability): 
    called by threads before completion.

1999-09-18  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-pt-proxy.c (_op_exec_or_plan_for_exec): 
    new func. Try to exec an operation in a thread
    or queue it if a thread is already busy.

    * camel/camel-op-queue.c (camel_op_queue_set_service_availability): 
    (camel_op_queue_get_service_availability): 
    new funcs. 

    * camel/camel-op-queue.c (camel_op_new): 
    (camel_op_free): 
    new funcs. Uses glib mem chunks.
    

1999-09-17  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder-pt-proxy.c (_init_with_store): 
    added notify io_channel.

    * camel/camel-op-queue.h: 
    * camel/camel-op-queue.c: 
    New object. Operation queue. Meant to be used in 
    non-blocking proxy objects.
    (camel_op_queue_run_next_op): new func. 
    run the next operation.

1999-09-14  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/Makefile.am (libcamel_la_SOURCES): 
    added camel-folder-pt-proxy.[ch] to the build
    process.

    * camel/camel-folder-pt-proxy.c (_init_with_store): 
    started implementation of the pthread-based 
    folder proxy.
    

1999-09-08  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/mh-summary.c 
    (mh_load_summary): 
    (mh_save_summary): 
    (mh_create_summary): 
    implemented summary (files) for MH folders.
    
    * camel/providers/MH/camel-mh-folder.c 
    (_get_message_by_uid): implemented.
    (camel_mh_folder_class_init): 
    (_get_message_uid): implemented

    * camel/camel-folder.c (camel_folder_has_uid_capability): 
    (camel_folder_get_message_uid): 
    (camel_folder_get_message_uid_by_number): 
    (camel_folder_get_message_by_uid): 
    (camel_folder_get_uid_list): 
    Documented UID methods.
    (camel_folder_get_message_uid_by_number): 
    const'ified uid.
    (camel_folder_get_message_by_uid): idem
    removed stupid camel_folder_get_message_uid_by_number
    method.
    
    * tests/ui-tests/store_listing.c (close_all): 
    close all open folders and stores. (necessary
    for UID list saving ).

    * camel/providers/MH/mh-uid.c (mh_generate_uid_list): 
    fix: store UID list in CamelMHFolder object.

    * camel/providers/MH/camel-mh-folder.c (_open): 
    read or create UID list.
    (_close): save UID list.

1999-09-07  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/md5-utils.c (md5_get_digest_from_file): 
    correct parameter decl (const)

    * camel/md5-utils.h: typo.

    * camel/providers/MH/mh-uid.c 
    More work on UID stuff for MH.
    (mh_save_uid_list): 
    (mh_load_uid_list): 
    (mh_generate_uid_list): 
    new funcs. Manage on-disk uid list.
    
    * camel/providers/MH/mh-utils.c (mh_is_a_message_file): 
    Util routines live here now.

    * camel/md5-utils.c 
    Documented all funcs.
    
    (md5_get_digest_from_stream): 
    correct typo.
    (md5_get_digest_from_file): 
    same typo corrected.
    

    * camel/md5-utils.h : 
    raw routines are declared public now.
    Md5 use has to be versatile.

    * camel/providers/MH/mh-uid.c (mh_uid_get_for_file): 
    new func. Returns an UID for an MH message.
        
1999-09-06  bertrand  <Bertrand.Guiheneuf@aful.org>


    * camel/md5-utils.h:
    * camel/md5-utils.c:
    changed names to follow camel style.
    (md5_get_digest_from_stream): 
    new methods.
    (md5_get_digest_from_file): 
    new function : get file md5 signature. 
    To be used in providers code.

    * camel/md5-utils.c: imported md5 coding 
    routine from rpm. Compiles.
    

1999-09-05  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_has_uid_capability): 
    (camel_folder_get_message_uid): 
    (camel_folder_get_message_uid_by_number): 
    (camel_folder_get_message_by_uid): 
    (camel_folder_get_uid_list): 
    Basic UID framework.
    
    * devel-docs/misc/ref_and_id_proposition.txt:
    New revision. Some fixes.

    * camel/camel-folder.h (struct _CamelFolder): added 
    uid_capability field.
    

    * camel/camel-folder.c (camel_folder_close): publicized
    the close method.

    * tests/ui-tests/store_listing.c (show_folder_messages): 
    use folder summary instead of opening all messages.
    (show_folder_messages): re-enabled old CPU/Mem consumming
    method. Useful for pop3 for instance.

    * camel/providers/MH/camel-mh-folder.c (_create_summary): 
    basic and highly non-efficient summary implementation.
    Should be seen as a proof of concept only.
    subfolder summary still has to be implemented.
    
    * camel/providers/maildir/camel-maildir-folder.c (_init_with_store): 
    hasn't summary for the moment. 
    * camel/providers/maildir/camel-maildir-folder.c
    cosmetic changes.
    

1999-09-04  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (_create_summary):
    started summary implementation.
    (_open): correct use of open.

    * camel/camel-folder.c (camel_folder_get_summary): 
    get folder associated summary object.

    * camel/Makefile.am:
    added summary files build

    * camel/camel-folder-summary.[ch]: 
    basic summary framework

1999-09-03  bertrand  <Bertrand.Guiheneuf@aful.org>

    * devel-docs/camel/Makefile.am:
    sgml doc has camel-recipient now.

    * camel/camel-recipient.c (camel_recipient_foreach_recipient_type): 
    added in-line documentation.

1999-09-02  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/maildir: Added (experimental) maildir 
    provider written by Jukka Zitting <hukka@greywolves.org>
    
    * camel/providers/Makefile.am (SUBDIRS): build maildir
    provider.

    * camel/camel-provider.c (camel_provider_get_for_protocol):
    bug fix. patch from  Jukka Zitting <hukka@greywolves.org>

    * camel/camel-mime-message.c (_write_one_recipient_to_stream): 
    changed decl to fit CRLFunc. 
    (_write_recipients_to_stream): 
    calls camel_recipient_foreach_recipient_type now.

    * camel/camel-recipient.c (camel_recipient_foreach_recipient_type): 
    new convinience function. Iterate over all recipient types.

    * camel/gmime-utils.c (gmime_write_header_table_to_stream): 
    s/write_header_table_to_stream/gmime_write_header_table_to_stream/
    (gmime_write_header_with_glist_to_stream): 
    s/write_header_with_glist_to_stream/gmime_write_header_with_glist_to_stream/

1999-09-01  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-message.c (_finalize): 
    (_add_recipient): 
    (_remove_recipient): 
    (_get_recipients): now use CamelRecipientTable
    
    * camel/gmime-content-field.c: 
    (gmime_content_field_unref): test if object 
    to free is non void.

    * camel/camel-folder.c (_finalize): 
    (_set_name): 
    * camel/camel-mime-part.c (_finalize): 
    (_set_description): 
    (_set_disposition): 
    * camel/camel-service.c (_finalize): 
    * camel/camel-stream-fs.c (_finalize): 
    * camel/gmime-content-field.c: 
    (gmime_content_field_construct_from_string): 

    * camel/url-util.c (g_url_free): 

    When using g_free (obj) don't test if obj != NULL
    g_free () already do that. Thanks to elerium for
    the feedback.

1999-08-30  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-recipient.c (camel_recipient_get): 
    (camel_recipient_remove): 
    (camel_recipient_add): 
    new func. More work on new independant recipient code. 

1999-08-29  bertrand  <Bertrand.Guiheneuf@aful.org>

    * MAINTAINERS: updated my e-mail address. 

1999-08-28  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (camel_mime_part_set_text): 
    text parameter declared const

    * camel/camel-mime-part-utils.c (camel_mime_part_store_stream_in_buffer): 
    actually test correctly nb_bytes_read_chunk is >0

    * camel/gstring-util.c: 
    * camel/gmime-content-field.c: 
    * camel/providers/MH/camel-mh-folder.c:
    * camel/camel-stream-fs.c:
    include string.h

    * camel/camel-stream-mem.c (_write): return 
    the numver of written bytes.

    * camel/camel-stream-buffered-fs.c (_eos): 
    return sthg

    * camel/camel-stream.c (default_camel_seek): 
    return something.

1999-08-26  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (_get_content_object): 
    contruct the content from the buffer before calling
    CamelMedium implementation.
    (_construct_from_stream): Do not construct the content 
    by default, just store the content bytes in 
    a temporary buffer. Content will be constructed only
    at caller request (when calling CamelMedium::get_content_object)
    Providers with better access to the messages (mbox/MH ...)
    will have to provider lighter implementation, that is
    shall not read content at all unless the caller asks
    for it (again with get_content).

    * camel/camel-mime-part-utils.c: new file, groups
    mime-part related utils. Meant to be used by providers
    subclassing MimeMessage.
    (camel_mime_part_construct_headers_from_stream): 
    (camel_mime_part_construct_content_from_stream): 
    no more useless temporary hash table. 

    * camel/camel-mime-part.c (_construct_from_stream): calls
    mime-part-utils functions now.

    * camel/gmime-utils.c (_store_header_pair_from_string): 
    do not use hash table to store header, use an array instead.

1999-08-25  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c: now descend from CamelMedium.

    * tests/test1.c (main): all headers must be strdup'ed
    (main): unref created objects

    * camel/camel-medium.c (_set_content_object): 
    (_get_content_object): these methods are 
    in CamelMedium now.

1999-08-24  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-medium.c (camel_medium_class_init): 
    new class. Will handle all sort of information media 
    (Mime mail messages, Lotus Notes  mail messages, 
    postit notes, faxes, who knows .... :)
    CamelMimePart will inherit from it.

    * camel/camel-mime-part.c (_set_disposition): 
    (_set_description):
    description and disposition parameters are now const.
     

    * camel/gmime-content-field.c (gmime_content_field_free): added
    assertion code.

    * camel/providers/MH/camel-mh-folder.c (_get_message): 
    uses buffered stream.

    * camel/camel-stream-buffered-fs.c:
    new stream to accelerate file ops.

1999-08-20  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-stream-fs.c (camel_stream_fs_new_with_name): 
    name parameter is const. This fixes a bug in destroy ()

1999-08-18  Robert Brady  <rwb197@ecs.soton.ac.uk>

    * camel/gmime-rfc2047.c: more work on encoder.

1999-08-17  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-stream.c (camel_stream_read): 
    return the number of bytes read. 
    How can this have ever worked ?
    (camel_stream_flush): don't return anything.

    * camel/gmime-utils.c (get_header_table_from_stream): 
    mem leak fixed.

1999-08-16  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/store_listing.c:
    Now has a popup menu on mailbox tree to allow
    easier tests. Implemented the copy stuff.
    Works well for the MH provider :)))

    * camel/providers/MH/camel-mh-folder.c (_copy_message_to): 
    Test MH provider fast copy implemented.
    
    
1999-08-15  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_expunge): 
    moved the active list readjustment code here.
    Much saner, providers won't have to worry about
    that.
    (_copy_message_to): new method.

    * camel/providers/MH/camel-mh-folder.c (_expunge): 
    no more active list readjustment stuff.

    * camel/camel-folder.h: the expunge virtual no more
    returns a list of expunged messages. Now providers
    only have to set the expunge flag on the expunged
    messages.

    * camel/camel-folder.c (camel_folder_get_message): 
    moved the caching code here. Finally, I don't want
    providers to crash the libs with a bad message cache
    implementation. 
    (_close): do not call the CamelFolder virtual expunge 
    method directly, use camel_folder_expunge() instead.
    (camel_folder_expunge): added the want_list param. 
    The client can decide if it wants the expunged message
    list or not. If yes, it'll have to unref the messages 
    itself.

1999-08-14  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/store_listing.c (delete_selected_messages): 
    (expunge_selected_folders): 
    Implemented deletion/expunge mechanism. 

    * camel/camel-folder.c (_get_message): 
    Added some debug info.

    * camel/providers/MH/camel-mh-folder.c (_expunge): 
    implemented and tested.

    * camel/camel-mime-message.c (_set_flag): 
    changed the old braindead implementation.
    boolean are inserted in the flag hash 
    table casted as gpointers.
    

    * camel/camel-mime-message.c: indentation fix
    

1999-08-13  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (_get_message): default implementation
    to be called first by providers methods. It looks in the
    folder message list (in memory) to see if the message has
    not already been retrieved, and in this case, returns 
    the same CamelMimeMessage object

    * camel/providers/MH/camel-mh-folder.c (_get_message): set
    message->message_number correctly.

    * camel/camel-folder.h (struct _CamelFolder): 
    New field (message_list) which will hold a 
    reference on each message obtained by the folder,
    which is necessary in order for the caching procedure
    to work (Getting the same message from a folder twice
    will return the same CamelMimeMessage object).
    
    * camel/camel-folder.c (camel_folder_get_message): 
    When the store retreives a message put it in its
    message list.
    (_finalize): free message list.

    * ChangeLog: fix typo (parmanent)

    * camel/camel-folder.c (_get_permanent_flag_list): 
    (camel_folder_get_permanent_flag_list): 
    new method, returns the list of permanent
    flags supported by the folder.

    * camel/camel-mime-message.c (_get_flag_list): 
    (camel_mime_message_get_flag_list): new method,
    return the list of flag name used by this message.

    * camel/hash-table-utils.c (g_strcase_equal): 
    (g_strcase_hash): those two func go here now.

    * camel/hash_table_utils.c (hash_table_generic_free): 
    free a (gpointer, gpointer) hash table pair.

    * camel/camel-mime-message.c (camel_mime_message_init): use
    case insensitive hash table functions. 
    (_set_flag): 
    (camel_mime_message_set_flag): 
    (_get_flag): 
    (camel_mime_message_get_flag): 
    Use const for flag name, they are now
    duplicated.

1999-08-12  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/store_listing.c (show_folder_messages): 
    remove stupid debug code.
    (add_mail_store): use camel_session_get_store instead
    of creating MH store directly.
    (main): load MH provider.

    * camel/camel-provider.c (camel_provider_register_as_module): 
    register new provider.
    (camel_provider_get_for_protocol): 
    Now, implementation is correct.

    * camel/camel-store.c (_finalize): 
    * camel/camel-store.h (struct _CamelStore): 
    further disabled url_name field use. 
    URL will be generated dynamically.

    * camel/camel-session.c (camel_session_get_store_for_protocol): 
    compilation and runtime fixes.

    * camel/providers/MH/camel-mh-store.c (_init): 
    synced with CamelStore.

    * camel/camel-store.c (_init): 
    in CamelStore::init, url_name is now const.
    disabled url_name copy.

    * camel/camel-session.c (camel_session_get_store): 
    new function: returns a store for an URL. 
    (camel_session_get_store_for_protocol): 
    new functionc: returns a store for a given 
    store protocol (as IMAP/POP/MH ...)
    * camel/string-utils.c (g_strcase_equal): 
    (g_strcase_hash): case insensitive hash table
    funcs.

    * camel/camel-session.c (camel_session_init): hash table
    keys are case insensitive.

    * camel/camel-provider.c (camel_provider_get_for_protocol): 
    new function, returns the last registered 
    provider for a protocol.

    * camel/providers/MH/camel-mh-provider.c: 
    new file. MH provider registration stuff.

    * camel/camel-provider.c (camel_provider_register_as_module): 
    load a provider from a shared object (plugin).
    (camel_provider_register): register a provider 
    "by hand". Used for statically defined providers.

    * tests/test7.c: new test.
    tests providers loading framework.

1999-08-11  

    * camel/camel-service.c (_finalize): 
    * camel/camel-stream-fs.c (_finalize): 
    (_destroy): close file descriptor.
    * camel/camel-stream-mem.c (_finalize): 
    * camel/camel-store.c (_finalize): 
    * camel/camel-folder.c (_finalize): 
    * camel/camel-multipart.c (_finalize): 
    * camel/camel-simple-data-wrapper.c (_finalize): 
    * camel/camel-mime-part.c (_finalize): 
    implemented destructors.
    

    * camel/gmime-content-field.c (gmime_content_field_ref): 
    (gmime_content_field_unref): 
    New reference mechanism for GMimeContentField objects.

    * camel/camel-data-wrapper.c (_finalize): 
    Started implementing destructors.

    * camel/camel-mime-part.c (_construct_from_stream): 
    * camel/gmime-content-field.c (gmime_content_field_write_to_stream): 
    * camel/camel-multipart.c (_construct_from_stream): 
    removed forgotten anarchic traces.

1999-08-10  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/ui-tests/store_listing.c: 
    * tests/ui-tests/store_listing.glade:
    Quick and (very) dirty hack to test Camel more
    easily.

    * camel/camel-folder.c (camel_folder_append_message): 
    new method.

1999-08-09  bertrand  <Bertrand.Guiheneuf@aful.org>

    * devel-docs/misc/ref_and_id_proposition.txt:
    new file. Document message UID and vfolder
    implementation.

1999-08-08  Robert Brady  <rwb197@ecs.soton.ac.uk>

    * camel/gmime-rfc2047.c: more advanced RFC2047 encoder started.
    
1999-08-08  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (_get_message): 
    fix. In MH, message number is not related to 
    message position in folder.

    * camel/providers/MH/camel-mh-folder.c (_is_a_message_file): 
    util func.
    (_get_message_count): implemented.

1999-08-06  bertrand  <Bertrand.Guiheneuf@aful.org>

    * devel-docs/camel/:
    updated some autogen doc stuff.
    Still don't understand warnings :(

    * camel/camel-data-wrapper.c: 
    * camel/providers/MH/camel-mh-store.c: 
    * camel/url-util.c: 
    * camel/gmime-content-field.c: 
    * camel/camel-store.c: 
    various inline doc corrections.

    * camel/camel-folder.c (get_message_count): 
    new method. Returns the number of message 
    in the folder.



1999-08-06  Robert Brady  <rwb197@ecs.soton.ac.uk>

    * tests/test6.c: encoder test.

    * camel/gmime-rfc2047.c: Fixed decoder bug : sequence
    ?= is not always the terminator for an encoded-string.


1999-08-06  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (_list_subfolders): 
    stat was not testing the good file. Fixed.
    
    * tests/test4.c (main): added real test for MH folder 
    provider. All tested things seem to work OK :)

1998-08-06  Robert Brady  <rwb197@ecs.soton.ac.uk>
    
    * tests/test5.c: test for RFC2047 decoder.

    * camel/gmime-rfc2047.c: Improved RFC2047 decoder.

1999-08-06  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (_exists): add debug information
    (_list_subfolders): test if first char in folder name is not '.'
    before adding it to the folder list.

    * camel/camel-store.c (_init): 
    disable session check temporarily
    (_get_separator): 
    (_get_folder): new static func. 
    Fixed several oddities in class definition. 

    * camel/providers/MH/camel-mh-store.c (camel_mh_store_get_type): 
    parent type is CAMEL_STORE_TYPE not CAMEL_FOLDER_TYPE

    * camel/camel-store.c: 
    prent class is CamelServiceClass not GtkObjectClass

    * camel/url-util.c : 
    cosmetic changes + use of const when possible.
    (find_host):
    fix a bug: when there is no host and no port don't skip the '/'
    all static find_* func are now named _func_*  
    (g_url_free): destructor func.
    cache field has been disabled. Constructing the url string
    won't be too slow and will occur rarely enough that we
    do not need to add complexity to this code. 

    * camel/providers/MH/camel-mh-store.c: 
    parent class is CamelStorClass not GtkObjectClass

1999-08-05  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/test4.c: 
    test mh provider.
    
    * camel/providers/MH/camel-mh-folder.c (_get_message): 
    implemented
    
    * camel/camel-folder.c (_get_message): 
    new method. 
    (camel_folder_get_message): 
    corresponding public call
    
    * camel/README.HACKING: 
    Some notes.

    * camel/CODING.STYLE: 
    short note about coding style. 

    * camel/README.COPYRIGHT: 
    Note about copyright policy.

    * camel/providers/MH/camel-mh-folder.c (_list_subfolders): 
    minor typo fixes.


1999-08-04  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-rfc2047.c: 
    * camel/gmime-rfc2047.h:
    indentation and cosmetic changes.
    
    * camel/providers/MH/camel-mh-folder.c (_list_subfolders): 
    implemented.
    * camel/providers/MH/camel-mh-folder.c (_delete): 
    finshed implementation
    (_delete_messages): implemented.


1999-08-04  Robert Brady  <rwb197@ecs.soton.ac.uk>

    * camel/gmime-rfc2047.[ch]: added an implemention of RFC2047
      (support for character sets other than US-ASCII in MIME
      headers). Not actually called from anywhere yet.


1999-08-03  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (_create): 
    implemented.
    (_delete): started implementation.

    * camel/camel-folder.c (_get_folder): default implementation 
    calls camel_store_get_folder ().

    * camel/providers/MH/camel-mh-folder.c (_init_with_store): 
    implemented.

    * camel/camel-folder.h (struct _CamelFolder): 
    remove useless exist_on_store field.

    * camel/camel-folder.c (_exists): 
    do not use exist_on_store field.

    * camel/camel-folder.c (camel_folder_set_name): 
    (camel_folder_get_name): 
    new public functions 
    (_set_name): set full_path.

    (_set_full_name): 
    (camel_folder_set_full_name): 
    commented out this functions def. 
    It would make things very difficult to handle, and would not 
    be very useful. 
    
    * camel/providers/MH/camel-mh-store.h: 
    * camel/providers/MH/camel-mh-store.c (camel_mh_store_set_toplevel_dir): 
    (camel_mh_store_get_toplevel_dir): 
    * camel/providers/MH/camel-mh-folder.c (_set_name): 
    * camel/providers/MH/camel-mh-folder.h: 
    use (gchar *) instead of (GString *) everywhere.
    use const when necessary.
    
    * camel/camel-folder.h (struct _CamelFolder): 
    removed unused message_list field.
    
    * camel/camel-mime-part.c (_set_content_object): 
    There is a probleme here. We can not allow mime part
    content-type field and content_object mime-type to be 
    different. I thus chosed to set mime part object 
    content field to be freed (if necessary) and set
    to be a pointer to content_object mime type
    field. 
    (_construct_from_stream): set content_object mime type
    to be the same as mime_part's one. This is necessary
    because we use _set_content_type. 
    
    This two things are a bit hackish ansd may need
    to be redesigned.
    
    * camel/gmime-utils.c (gmime_write_header_pair_to_stream): 
    use g_strdup_printf and remove a bug.

    * camel/camel-simple-data-wrapper.c (_construct_from_stream): 
    more debugging output +  nb_bytes_read is now a signed int 
    to avoid bug when eos is encountered.

    * camel/camel-mime-part.c (_construct_from_stream): 
    sync to data_wrapper_repository function name changes. 
    Use default "text/plain" type when conten-type field
    is not found. (following RFC 2046 spec).

    * camel/data-wrapper-repository.c (data_wrapper_repository_set_data_wrapper_type): 
    (data_wrapper_repository_get_data_wrapper_type): 
    change function name prefix (s/data_wrapper/data_wrapper_repository/)

    * camel/camel-multipart.c (_read_part): 
    add `\n` at eol but not before boundary.

    * camel/gmime-utils.c (get_header_table_from_stream): 
    correct implementation of end of stream detection.

1999-08-01  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-multipart.c (_read_part): 
    use a stream to store the part instead of GString. 
    
    * camel/camel-mime-part.c (camel_mime_part_set_text): 
    set data wrapper content type to "text/plain".

    * camel/camel-stream-mem.c:
    * camel/camel-stream-mem.h:
    new memory buffer based stream.

    * camel/camel-stream-fs.c (_seek): 
    implementation for file system based stream.

    * camel/camel-stream.c (camel_stream_seek): 
    new method.

    * camel/camel-stream-fs.c (camel_stream_fs_class_init): 
    pass CamelStreamFsClass instead of CamelStreamClass.

1999-08-01 bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-utils.c (gmime_write_header_pair_to_stream): 
    corrected a bug with memory not allocated for '\0' in strtmp

    * camel/gmime-utils.c (gmime_read_line_from_stream): 
    do not return NULL when line is empty. 

    * camel/camel-multipart.c (_read_part): return true when end
    of multipart is found, not the opposite

1999-07-31  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-utils.c (gmime_read_line_from_stream): 
    Don't return crlf at end of line.

1999-07-30  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-utils.c (gmime_read_line_from_stream): 
    new function: reads a line from a stream.
    should be in streams utils maybe. 

1999-07-29  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (_construct_from_stream): 
    Uses data wrapper repository to find what data wrapper
    to use to construct the content from a stream. When 
    no object is registered for the mime type found in
    content type field a CamelSimpleDataWrapper is 
    used. 
    
    * camel/camel-mime-part.c (_get_content_type): 
    (camel_mime_part_get_content_type): returns
    a pointer on the content_type field instead 
    of the gchar * mime "type/subtype".

1999-07-28  bertrand  <Bertrand.Guiheneuf@aful.org>


    * camel/data-wrapper-repository.c
    * camel/data-wrapper-repository.h
    New files. Handles mime type <-> camel object
    (for example "multipart" <-> CamelMultipart
    * tests/tesst3.c: test data repository thing.

1999-07-26  bertrand  <Bertrand.Guiheneuf@aful.org>
    
    * camel/camel-multipart.c (_write_to_stream): 
    implemented output of multipart.
    
    * tests/test1.c (main): testing content objects operations. 

1999-07-25  bertrand  <Bertrand.Guiheneuf@aful.org>
    
    * camel/camel-mime-part.c (camel_mime_part_set_text): 
    new util function to set a mime part content to be 
    a text string.

    * camel/camel-simple-data-wrapper.c (camel_simple_data_wrapper_set_buffer_from_text): 
    new util func. 
    (camel_simple_data_wrapper_new): new func.

    * camel/camel-multipart.c (_write_to_stream): 
    implemented output of multiparts.

1999-07-24  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-content-field.c (gmime_content_field_get_parameter): 
    New function. Returns the value associated to a 
    mime parameter. 


1999-07-22  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-multipart.h: 
    * camel/camel-multipart.c:
    New class. Models multipart mime objects.
    
    * camel/camel-mime-body-part.h: 
    * camel/camel-mime-body-part.c: 
    New class. Body part is a mime part contained in 
    a multipart object.
    

1999-07-21  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-log.h: 
    implemented hard log level stuff.
    * came/*.c use "CAMEL_LOG_*" instead of "CAMEL_LOG (*"
    in order to allow hard level switch.

    * tests/test1.c: 
    * tests/test2.c: 
    updated to use gchar instead of GString. Tests passed.


1999-07-19  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-stream.c: 
    * camel/camel-stream.h: 
    "const"-antified
    

    * camel/camel-simple-data-wrapper.c: (_construct_from_stream)
    do not use any limit when constructing the object from a stream
    
    * camel/camel-stream-fs.c: 
    * camel/camel-stream-fs.h: 
    * camel/camel-mime-message.c: 
    * camel/camel-mime-message.h: 
    * camel/camel-session.c: 
    * camel/camel-session.h: 
    * camel/camel-service.c: 
    * camel/camel-service.h:
    * camel/camel-store.c: 
    * camel/camel-store.h: 
    * camel/camel-folder.c: 
    * camel/camel-folder.h: 
    * camel/gmime-utils.c: 
    * camel/gmime-utils.h: 
    GString -> gchar
    constantified what had to be.
    
    * camel/string-utils.c: 
    * camel/string-utils.h: 
    New files. Meant to replace gstring-util for gchar *
    
1999-07-16  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-content-field.c (gmime_content_field_construct_from_string): 
    GString -> gchar
    use const to indicate copied parameter.

1999-07-15  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-simple-data-wrapper.c: 
    * camel/camel-simple-data-wrapper.h: 
    Gstring -> gchar
    
1999-07-15  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/url-util.c:  
    * camel/url-util.h: 
    Do not use GStrings any more. 
    Added assertion code. 
    Cosmetic reformating
    
    * AUTHORS:
    * ChangeLog:
    Changed my email address.

    
1999-07-13  Miguel de Icaza  <miguel@gnu.org>

    * camel/gmime-base64.c (gmime_encode_base64): Implemented base64
    encoder based on CamelStreams.  Should the encoder/decoder be a
    Stream itself?

    * camel/gmime-utils.c: include config.h here.
    * camel/url-util.c: ditto.
    * camel/gstring-util.c: ditto.
    * camel/gmime-content-field.c: ditto.
    * camel/camel-stream.c: ditto.
    * camel/camel-stream-fs.c: ditto.
    * camel/camel-store.c: ditto.
    * camel/camel-simple-data-wrapper.c: ditto.
    * camel/camel-session.c: ditto.
    * camel/camel-service.c: ditto.
    * camel/camel-mime-part.c: ditto.
    * camel/camel-mime-message.c: ditto.
    * camel/camel-log.c: ditto.
    * camel/camel-data-wrapper.c: ditto
    * camel/camel-folder.c: ditto.

    * camel/camel-stream.c (camel_stream_write): Moved api
    documentation to the places that they document.
    (camel_stream_class_init): Virtual classes do not need to have a
    default implementation.  So null them all.
    (camel_stream_write): Return value from write.
    (camel_stream_available): implement.
    (camel_stream_write_strings): documented.

    * devel-docs/query/virtual-folder-in-depth.sgml: Small
    reformatting

1999-06-28  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/test2.c (main): now use 
    CamelDataWrapper::contruct_form_stream to test 
    message parsing

    * camel/camel-data-wrapper.c: 
    * camel/camel-data-wrapper.h: 
    construct_from_stream no longer has maximimum size arg.

    * camel/camel-mime-part.c (_construct_from_stream): new.
    Construct the mime_part from a stream.

    * camel/camel-mime-part.c:
    new field (content_type) and associated methods.
    (camel_mime_part_init): initialize content_type field.
    (_parse_header_pair): now set content_type MimePart field
    instead of using DataWrapper Mime typing facility.

1999-06-28  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-data-wrapper.h: 
    s/content_type/mime_type/

1999-06-24  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-simple-data-wrapper.[ch]:
    new class. Simple implementation of a data wrapper:
    simply keeps the stream result in a byte array.

    * camel/camel-mime-part.c (_parse_header_pair): added a warning. 
    Have to think about the correct way to store content type stuff.

1999-06-24  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-message.c (_write_one_recipient_to_stream): 
    includes gmime-utils header. 
    patch from Ulrich Drepper <drepper at cygnus.com>
    set separator string in write_header_with_glist_to_stream()
    
    * camel/camel-log.c (camel_log): 
    patch from Ulrich Drepper <drepper at cygnus.com>
    Do not use stderr in initialization of logfile descriptor.
    
    * camel/camel-stream-fs.c (camel_stream_fs_new_with_name): 
    patch from Ulrich Drepper <drepper at cygnus.com>
    initialize mode field in open(). 

1999-06-22  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-data-wrapper.c (_get_content_type): 
    moved all the content-type stuff here.
    (camel_data_wrapper_init): initialize the instance
    content-type field.

    * camel/camel-mime-part.c (_parse_header_pair): 
    parse Content-Type stuff in header. 
    (_write_to_stream): write the content type stuff to 
    the stream.

    * camel/gmime-content-field.c (gmime_content_field_get_mime_type): 
    new function, returns "type/subtype" mime type string.
    (gmime_content_field_construct_from_string): 
    new function, construbt a content_field object
    form a string. be used to set the mime_type from a
    string.

    * camel/camel-mime-part.c (_set_content_type): 
    (camel_mime_part_set_content_type): 
    (_get_content_type): 
    (_get_content_type): 
    new methods.

1999-06-21  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-utils.c (get_header_table_from_stream): 
    replace CR/LF+'\t' with ' ' 

    * camel/camel-mime-message.c (_set_recipient_list_from_string): 
    trim \t when splitting

    * camel/gmime-utils.c (get_header_table_from_file): 
    corrected bug in scanning tabulations ('t' -> '\t')

    * tests/test2.c (main): read mail.test instead
    of mail1.test

    * camel/camel-mime-part.c (_add_header): 
    added comments 

1999-06-03  bertrand  <Bertrand.Guiheneuf@aful.org>

    * devel-docs/query/virtual-folder-in-depth.sgml: 
    sgmlized Giao's doc about virtual folders.

1999-05-31  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/test2.c (main): 
    use new stream code instead of raw file * stuff.

    * camel/gmime-utils.c (get_header_table_from_stream): 
    new func. Will replace get_header_table_from_file and will
    be used to parse headers from files as well as from 
    memory buffers.

    * camel/camel-stream-fs.c:
    CamelStream Subclass. File system based
    stream.
    

1999-05-30  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-stream.h: new class. Represents an 
    abstract stream object.

       * camel/camel-mime-message.c (_set_recipient_list_from_string): 
    remove leading and trailing spaces in recipient addresses.

    * camel/gmime-utils.c (_store_header_pair_from_gstring): 
    remove leading and trailing spaces from header values.

    * camel/gstring-util.c (g_string_trim): new
    func: remove leading or trailng chars from 
    a specified char set.
    (g_string_split): allow trimming of substrings.

    * tests/test1.c (main): remove gtk_main call

1999-05-28  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c 
    (_parse_header_pair): 
    (_init_header_name_table): 
    More header parsing code.

    
1999-05-27  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/test2.c (main): rewrite message obtained via
    parsing into a file. Actually, it works pretty well :))

    * camel/camel-mime-message.c (_set_recipient_list_from_string): 
    create recipient list form a comma separated string.
    (_parse_header_pair): added recipient lists parsing.

    * camel/camel-mime-part.c (_parse_header_pair): 
    new (protected) method. Parse a head pair and
    decides what to do with it.
    
    (_add_header): Call in _parse_header_pair

    * camel/camel-mime-message.c (_parse_header_pair): 
    overload  header parsing MimePart mthod.

    * camel/gstring-util.c (g_string_split): 
    new func: split a gstring into a GList of
    substring.

1999-05-26  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/gmime-utils.c (get_header_lines_from_file): 
    new func. Parses message header zone and returns
    a Glist of all header lines.

    * tests/test2.c: tests message parsing

    * camel/gmime-utils.c (write_header_table_to_file): 
    new func to write a table of headers.

1999-05-20  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-message.c (_write_to_file): 
    recipient list printing
    
    * tests/test1.c (main): more tests.

1999-05-19  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (_write_to_file): test if content
    exists before calling its write_to method.

    * camel/camel-mime-message.c (_write_to_file): bugs fix.

    * camel/camel-mime-message.c (camel_mime_message_new_with_session): 
    new func. Creates a message with the session field set
    up correctly.

1999-05-18  bertrand  <Bertrand.Guiheneuf@aful.org>

    * tests/test1.c (main): tests

    * camel/camel-mime-message.c (_write_to_file): 
    started write_to framework for mime_messages

    * camel/camel-mime-message.c (*_message_number): 
    message number funcs.
    
1999-05-15  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-message.c (*_flag): 
    flags handling methods

1999-05-14  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-message.c (camel_mime_message_class_init): 
    added recipient handling class funcs.

1999-05-13  bertrand  <Bertrand.Guiheneuf@aful.org>
        
    * camel/camel-mime-message.c (camel_mime_message_init): 
    create recipients hash table
    (_remove_recipient): 
    (_add_recipient):
    (_get_recipients):  new funcs.
    Internal Recipients data structure is
    a bit complicated though.

    * camel/camel-mime-part.c (camel_mime_part_init): 
    create headers hash table

    * camel/camel-mime-message.h: 
    a bunch of get/set header field
    method done. Does nothing yet though.

    * camel/camel-mime-message.[ch] :
    new file. 

1999-05-12  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.h (struct ): 
    disposition is now a full GMimeContentField
    object.

    * camel/gmime-content-field.c: new file
    handle "type/subtype ;parameter=value ; parameter=value ..."
    BNF grammar elements
    (gmime_content_field_write_to_file): new func
    
    * camel/gmime-utils.c (gmime_write_header_pair_to_file): 
    namespace change

1999-05-11  bertrand  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (_write_to_file): 
    overload wrapper class method.
    (_write_to_file): start to write some text in 
    file.

    * camel/camel-store.c: typo fix.

    * camel/camel-store.c: 
    * camel/camel-service.c: 
    * camel/camel-folder.c: 
    * camel/camel-data-wrapper.c: 
    * camel/camel-mime-part.c: 
    static functions naming follows gnome 
    coding style guide.

    * camel/camel-mime-part.h: implemented public interfaces
    

1999-05-10  Bertrand Guiheneuf  <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (__camel_mime_part_get_header_lines): 
    (__camel_mime_part_set_header_lines): 
    (__camel_mime_part_get_content_languages): 
    (__camel_mime_part_set_content_languages): 
    (__camel_mime_part_get_encoding): 
    (__camel_mime_part_set_encoding): 
    (__camel_mime_part_get_content_MD5): 
    (__camel_mime_part_set_content_MD5): 
    (__camel_mime_part_get_content_id): 
    (__camel_mime_part_set_content_id): 
    A bunch of new set/get func.

    * camel/gstring-util.c (g_string_list_free): 
    convenience function for string list 
    complete deallocation.

1999-05-09  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.c (__camel_mime_part_add_header): 
    new method

    * camel/camel-mime-part.h (struct CamelMimePart):
    added core fields.

1999-05-08  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-mime-part.[ch]: 
    new class. models a mime mail part.

    * camel/camel-data-wrapper.c 
    (camel_data_wrapper_write_to_buffer): method to
    stream data content in a buffer.
    (camel_data_wrapper_write_to_file): 
    (camel_data_wrapper_construct_from_buffer): 
    (camel_data_wrapper_construct_from_file): 
    new methods.
    
1999-05-07  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-data-wrapper.[ch]:new class.
    This should not be a class but rather an 
    interface. The day Gtk support interfaces, 
    it dataWrapper should become an interface.

1999-05-04  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-service.c (camel_service_get_url): 
    new method.

    * devel-docs/camel/camel-sections.txt: added 
    function doc references

    * camel/camel-folder.c (__camel_folder_close): 
    fixed indentation.
    (camel_folder_expunge): new method.
    (__camel_folder_close): used expunge flag

1999-05-03  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_get_mode): 
    typo fix

    * camel/camel-folder.c (__camel_folder_list_subfolders): 
    new func.

    * some doc stuffs
    

1999-05-01  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c 
    (__camel_folder_get_mode): 
    (camel_folder_get_mode): 
    (camel_folder_get_parent_store): 
    (__camel_folder_get_parent_store): 
    (camel_folder_get_parent_folder): 
    (__camel_folder_get_parent_folder): 
    new methods

    * camel/camel-service.c: put __ prefix before
    private virtual funcs.

    * camel/camel-folder.c (camel_folder_delete): 
    (camel_folder_delete_messages): 
    new methods.

    * camel/url-util.c (g_url_new): some
    more comments 

1999-04-27  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c (camel_folder_create): 
    new public function.

1999-04-25  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-session.c (camel_session_get_store_from_provider): 
    initialize folder object.

    * camel/camel-store.c (init): new method.
    called by session object at instantiation time.

    * camel/camel-store.h (struct _CamelStore): 
    new fields : session and url_name

1999-04-25  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-session.c (camel_session_set_provider): 
    new method to set the default provider for a protocol.
    (camel_session_get_store_from_provider): 
    new method to instantiate a folder from a provider.

    * camel/camel-provider.h: s/GString/gchar/g
    + typo fix.

    * camel/camel-provider.[ch]:
    basic provider structure. Have to write the
    code for dynamic loading.

1999-04-24  bertrand <Bertrand.Guiheneuf@aful.org>
    
    * camel/url-util.[ch]: s/new_g_url/g_url_new

    * camel/url-util.c (new_g_url): URL 
    rewritten completely. Error handling not
    implemented in public functions.
    But URL scan works pretty well :)))

1999-04-24 bertrand <Bertrand.Guiheneuf@aful.org>
    
    * camel/url-util.[ch]: I needed the url 
    functions to use GString, and I wanted a more
    general scheme so I finally started rewriting 
    the whole thing from scratch.
    No more code from gzilla :(
    
1999-04-23  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/url-util.[ch]:
    Utility functions to parse URLs.
    Stolen shamelessly from gzilla (www.gzilla.com)
    written by Raph Levien <raph@acm.org>
    
    * camel/Makefile.am: added url-util.[ch]
    compilation.

    * Makefile.am (SUBDIRS): removed devel-docs
    until I come up with a correct Makefile.am

    * camel/camel-store.h: 
    * camel/camel-folder.h:
    correct declarations of structs


1999-04-22  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-store.c:
    more test implementation.

    * camel/camel-store.c (camel_store_get_type): typo fix
    

1999-04-21  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/providers/MH/camel-mh-folder.c (camel_mh_folder_get_type): 
    start test provider.

1999-04-20  bertrand <Bertrand.Guiheneuf@aful.org>
    
    * camel/camel-store.h: now CamelStore inherits from
    CamelService.

    * camel/camel-service.c (camel_service_class_init): 
    basic abstract service class.

1999-04-19  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/README: added some (few) explanations.

1999-04-18  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-store.[ch]: started implementation
    * camel/camel-folder.c (camel_folder_get_type): typo
    uncommented the store related code.
    (camel_folder_create): enable som store relted code. 
    Not finished. Have to define public methods first.

    * camel/camel-log.h: some explanation about the 
    log system

1999-04-18   bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c: 
    (camel_folder_create): implemented (partially)
    have to write CamelStore before finishing it.

    * camel/camel-folder.h (CamelFolder): added full_name field
    (CamelFolderClass): added set/get_full_name methods

1999-04-18  bertrand <Bertrand.Guiheneuf@aful.org>

    * camel/camel-folder.c: some work
    * camel/camel-log.c: log system for camel
    * camel/gstring-util.c: some utilities for GString objects
    

1999-04-18  bertrand <Bertrand.Guiheneuf@aful.org>

    * autogen.sh (PKG_NAME): groomf -> gnome-mailer