aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-callbacks.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-03-15 14:57:20 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-03-15 14:57:20 +0800
commit6e5821b6d29a75b2987a30c3348eeee39bdeb304 (patch)
tree3dda9b39964ad663a0955fbc1c7e5476d910357d /mail/mail-callbacks.c
parent2f95668944daf2989a58abcd1328458d35f4bfdb (diff)
downloadgsoc2013-evolution-6e5821b6d29a75b2987a30c3348eeee39bdeb304.tar.gz
gsoc2013-evolution-6e5821b6d29a75b2987a30c3348eeee39bdeb304.tar.zst
gsoc2013-evolution-6e5821b6d29a75b2987a30c3348eeee39bdeb304.zip
Added edit item to search-bar menu.
2001-03-15 Not Zed <NotZed@Ximian.com> * folder-browser.c: Added edit item to search-bar menu. * mail-callbacks.c (filter_edit): Changed for filter_editor_new() api addition/change. * mail-vfolder.c (vfolder_edit): Use vfolder_editor_new intead. svn path=/trunk/; revision=8731
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r--mail/mail-callbacks.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 2f5292c4b2..8dc66a58d4 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -1176,6 +1176,12 @@ filter_druid_clicked (GtkWidget *w, int button, FolderBrowser *fb)
}
}
+static const char *filter_source_names[] = {
+ "incoming",
+ "outgoing",
+ NULL,
+};
+
void
filter_edit (BonoboUIComponent *uih, void *user_data, const char *path)
{
@@ -1204,7 +1210,7 @@ filter_edit (BonoboUIComponent *uih, void *user_data, const char *path)
return;
}
- w = filter_editor_construct (fc);
+ w = (GtkWidget *)filter_editor_new(fc, filter_source_names);
gtk_object_set_data_full (GTK_OBJECT (w), "context", fc, (GtkDestroyNotify)gtk_object_unref);
gtk_signal_connect (GTK_OBJECT (w), "clicked", filter_druid_clicked, fb);
gtk_widget_show (GTK_WIDGET (w));
d='n190' href='#n190'>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 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112
2001-06-15  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (search_for_dn): implement this
    properly, using base and (objectclass=*).

2001-06-14  Chris Toshok  <toshok@ximian.com>

    * contact-editor/e-contact-editor.c (delete_cb): save ourselves a
    function call - call close_dialog instead of file_close_cb.

2001-06-14  Jeffrey Stedfast  <fejj@ximian.com>

    * gui/component/addressbook-component.c: Set the
    "expoted_dnd_types" to NULL in the folder_types.

2001-06-11  Dan Winship  <danw@ximian.com>

    * gui/component/select-names/e-select-names-completion.c
    (search_override_check): Add a workaround for an EText bug.
    (e_select_names_completion_begin): Fix up the match scoring in the
    search_override case so the lines are offered in the correct
    order.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * gui/merging/Makefile.am (glade_DATA): Added
    e-card-merging-book-commit-duplicate-detected.glade here.

    * gui/merging/e-card-merging-book-commit-duplicate-detected.glade:
    Added this file.  The GUI for asking whether to commit a modified
    card.

    * gui/merging/e-card-merging.c, gui/merging/e-card-merging.h
    (e_card_merging_book_commit_card): Added this function.

    * gui/widgets/e-addressbook-table-adapter.c
    (addressbook_set_value_at), gui/widgets/e-addressbook-util.c
    (commit_card_cb), gui/widgets/e-minicard.c (e_minicard_event): Use
    e_card_merging_book_commit_card instead of e_book_commit_card here.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card-simple.c, backend/ebook/e-card-simple.h:
    Made e_card_simple_get_id return const char *.

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Made
    e_card_get_id return const char *.

    * gui/component/e-cardlist-model.c (e_cardlist_model_add): Made id
    variable const here.  Added a break to make it slightly more
    efficient.

    * gui/widgets/e-minicard.c, gui/widgets/e-minicard.h: Made
    e_minicard_get_card_id return const char *.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c (entry_compare): Made this handle
    the "id" property in searches.
    (pas_backend_file_process_modify_card): Made id variable const
    here.

    * backend/pas/pas-backend-ldap.c (modify_card_handler): Made id
    variable const here.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-book-listener.c,
    backend/ebook/e-book-listener.h, backend/ebook/e-book.c: Rolled
    back the change 2 ago, dated 06/11/2001 01:51 in CVS, involving
    e-book-listener.[ch] and e-book.c.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-book.c (e_book_load_uri,
    e_book_get_supported_fields, e_book_authenticate_user,
    e_book_remove_card_by_id, e_book_add_vcard, e_book_commit_vcard,
    e_book_get_cursor, e_book_get_book_view, e_book_get_changes): Made
    it so that all of these functions queue their ops before calling
    their CORBA functions.  This way, if the response is sent back
    before the CORBA function returns there's no problem.  Added
    e_book_unqueue_op so that the op could be unqueued if the CORBA
    call fails.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-book-listener.c, backend/ebook/e-book-listener.h
    (e_book_listener_unpop_response): Added this function to put a
    response back into the queue.

    * backend/ebook/e-book.c (e_book_check_listener_queue,
    e_book_queue_op): Handle the case where the op hasn't been queued
    yet when we get the response.  In this case we unpop the response.
    Also, when queueing an op, we check to see if there are any
    responses waiting.

    * This change has been reverted.

2001-06-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card-compare.c, backend/ebook/e-card-compare.h
    (e_card_locate_match_full): Added this function to let you do
    slightly more complicated searches.

    * gui/merging/e-card-merging.c (e_card_merging_book_add_card): Use
    e_card_locate_match_full to check if the card exists in the book
    it's being added to instead of in the default book.

2001-06-09  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/select-names/e-select-names-completion.c
    (match_name): Removed unused email variable.

2001-06-09  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card-compare.c (use_common_book_cb): Null
    terminate the strv here.
    (e_card_locate_match): ref here instead of unref.

    * backend/ebook/e-card-simple.c (e_card_simple_get): Handle a NULL
    card here.

    * contact-editor/Makefile.am (INCLUDES), gui/widgets/Makefile.am
    (INCLUDES): Added addressbook/gui/merging here.

    * contact-editor/e-contact-quick-add.c (book_ready_cb),
    gui/component/addressbook-component.c (dnd_drop_book_open_cb),
    gui/widgets/e-addressbook-table-adapter.c
    (addressbook_append_row), gui/widgets/e-addressbook-util.c
    (add_card_cb), gui/widgets/e-addressbook-view.c
    (selection_received), gui/widgets/e-minicard-control.c
    (book_open_cb): Use e_card_merging_book_add_card instead of
    e_book_add_card here.

    * gui/Makefile.am (SUBDIRS): Added merging.

    * gui/component/Makefile.am (evolution_addressbook_LDADD),
    gui/widgets/Makefile.am (minicard_test_LDADD,
    minicard_widget_test_LDADD): Added libecardmerging.a here.

    * gui/merging/, gui/merging/.cvsignore, gui/merging/Makefile.am:
    New addressbook library.

    * gui/merging/e-card-duplicate-detected.glade: Glade file for
    duplicate detected dialog.

    * gui/merging/e-card-merging.c, gui/merging/e-card-merging.h: New
    files for detecting duplicates before adding and putting up a
    dialog if duplicates are found.

    * gui/widgets/e-minicard-view.c: Include e-addressbook-util.h
    here.

2001-06-08  Chris Toshok  <toshok@ximian.com>

    * contact-editor/e-contact-editor.c (e_contact_editor_new): remove
    the gtk_widget_show call...
    (e_contact_editor_show): and put it here.

    * contact-editor/e-contact-editor.h: add prototype for
    e_contact_editor_show.

    * gui/widgets/e-minicard.c (e_minicard_event): call
    e_addressbook_show_contact_editor.
    (card_modified_cb): call e_addressbook_error_dialog if status !=
    SUCCESS.

    * gui/widgets/e-minicard-view.c (e_minicard_view_event): call
    e_addressbook_show_contact_editor.  also, use card_modified_cb as
    the commit_card callback.

    * gui/widgets/e-addressbook-view.c (table_double_click): clean
    this area up alot, call e_addressbook_show_contact_editor.
    (card_deleted_cb): call e_addressbook_error_dialog.

    * gui/widgets/e-addressbook-table-adapter.c
    (card_modified_cb): new function, call e_addressbook_error_dialog
    if the status != SUCCESS.
    (addressbook_set_value_at): use card_modified_cb as the callback
    for e_book_commit_card.

    * gui/widgets/Makefile.am (libeminicard_a_SOURCES): add
    e-addressbook-util.[ch].

    * gui/component/addressbook.c (new_contact_cb): use
    e_addressbook_show_contact_editor here.

2001-06-05  Christopher James Lahey  <clahey@ximian.com>

    * contact-editor/e-contact-editor.c (categories_clicked): Remove
    references to ECategoryMasterListWombat.

2001-06-05  Jason Leach  <jleach@ximian.com>

    * gui/component/select-names/e-select-names.c (remove_cb): Make
    this work when multiple names are selected then right
    click->Remove.

2001-06-05  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card.c (e_card_set_arg): Copy dates as they come
    in.

    * backend/pas/pas-backend-file.c
    (pas_backend_file_changes_foreach_key, pas_backend_file_changes,
    pas_backend_file_process_remove_card,
    pas_backend_file_process_modify_card,
    pas_backend_file_build_all_cards_list, pas_backend_file_get_vcard,
    pas_backend_file_maybe_upgrade_db): memset DBTs to 0 before using
    them.
    (pas_backend_file_build_all_cards_list): Reindented.

    * contact-editor/contact-editor.glade: Replaced GnomeDateEdits
    with a custom widget that creates an EDateEdit.

    * contact-editor/e-contact-editor.c: Use an EDateEdit here instead
    of a GnomeDateEdit.

2001-06-05  Jason Leach  <jleach@ximian.com>

    (Fix bug #655: SelectNames doesn't let you remove addresses after
     you add them)
    
    * gui/component/select-names/e-select-names.c
    (section_right_click_cb): New function, provides a popup menu with
    just "Remove" in it.
    (remove_cb): New callback to do the remove.
    (e_select_names_add_section): Attach the "right_click" signal to
    the section_right_click_cb above.

2001-06-05  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-manager.c
    (completion_handler): Change the completion handler to use the
    ECompletionMatch.

    * gui/component/select-names/e-select-names-completion.c
    General changes to convert for ECompletionMatch use.
    (emailify_match): Use extra sort keys in ECompletionMatch to let
    us ensure that the primary email address is always the first
    option, the secondary comes second, etc.  There was no nice way to
    do this previously.
    (match_name): Removed code that adjusted score based on
    similarities between the "real name" and the e-mail address.  It
    seemed like a good idea at the time, but produced unexpected and
    confusing results.

2001-06-04  Jon Trowbridge  <trow@ximian.com>

    * backend/ebook/e-card-compare.c: Added.  Code for testing
    if two ECards appear to pertain to the same contact (using loose
    matching rules, as opposed to requiring exact equality) and to
    query the addressbook for the "best match" to ECard.

2001-06-03  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c (set_status_message): remove spew,
    and don't call the ShellView CORBA method if the interface doesn't
    exist (for whatever reason.)

    * gui/widgets/e-addressbook-view.c (e_addressbook_view_destroy):
    unref the EAddressbookModel.
    (create_minicard_view): unref the adapter.
    (card_added_cb): call e_book_error_dialog if status != SUCCESS.
    (card_modified_cb): same.
    (card_removed_cb): new function, and same.
    (delete_card_cb): pass card_removed_cb as the callback.
    (emit_status_message): new function, just emit status_message.
    (status_message): change to call emit_status_message.
    (card_deleted_cb): emit_status_message ("Done."), and call
    e_book_error_dialog if status != SUCCESS.
    (do_remove): pass view in the closure arg.
    (e_addressbook_view_delete_selection): emit status "Removing
    cards..." before starting the removal.
    (e_book_error_dialog): new function - pop up a (possibly) helpful
    message about why an operation failed.

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_new): ref the EAddressbookReflowAdapter.
    (e_minicard_view_widget_destroy): unref the adapter.
    (e_minicard_view_widget_get_selection_model): if there isn't a
    minicard view return NULL.

    * gui/widgets/e-addressbook-table-adapter.c
    (e_addressbook_table_adapter_construct): ref the
    EAddressbookModel.

    * gui/widgets/e-addressbook-reflow-adapter.c
    (addressbook_finalize): rename this from addressbook_destroy, to
    reflect the method change.
    (e_addressbook_reflow_adapter_class_init): same.
    (e_addressbook_reflow_adapter_construct): ref the
    EAddressbookModel.

    * gui/widgets/e-addressbook-model.h: add editable_set flag.

    * gui/widgets/e-addressbook-model.c (writable_status): only record
    the writable state of the addressbook if the user hasn't set it.
    (e_addressbook_model_init): init editable_set to FALSE.
    (e_addressbook_model_set_arg): set editable_set to TRUE.

2001-06-03  Ettore Perazzoli  <ettore@ximian.com>

    * backend/ebook/Makefile.am (evolution_vcard_importer_LDADD): Move
    `$(DB3_LDADD)' before libeutil.

2001-06-01  Ettore Perazzoli  <ettore@ximian.com>

    * backend/ebook/Makefile.am (evolution_vcard_importer_LDADD): Add
    $(DB3_LDADD)'.

2001-05-31  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/Makefile.am (INCLUDES): Added db3 cflags.

    * backend/pas/pas-backend-file.c: Updated this to use db3.

2001-05-31  Federico Mena Quintero  <federico@ximian.com>

    * gui/widgets/e-addressbook-view.h (EAddressbookView): Added
    fields for the GalViewMenus and GalViewCollection; we need to keep
    them around while the component is active.

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_setup_menus): Plug leak; unref the spec.
    Unref the factories.  Do not unref the collection, since we need
    it for the signal emission (okay, so the views object adds a
    reference to it, but if we are interested in it we should keep a
    reference anyways).
    (e_addressbook_view_setup_menus): Create the collection and views
    on the EAddressbookView's fields so that we can keep them around.
    (e_addressbook_view_discard_menus): New function; gets rid of the
    collection and views objects.

    * gui/component/addressbook.c (control_activate_cb): Call
    e_addressbook_view_discard_menus().

2001-05-31  Chris Toshok  <toshok@ximian.com>

    * gui/component/select-names/e-select-names.h (struct
    _ESelectNames): add the EAddressbookModel* and change the
    ETableModel's name to "adapter".

    * gui/component/select-names/e-select-names.c (set_book),
    (addressbook_model_set_uri): these two things take an
    EAddressbookModel* instead of an ETableModel now.
    (e_addressbook_create_ebook_table): don't case the
    EAddressbookModel* to ETableModel*, create an EAddressbookTableAdapter
    on the EAddressbookModel instead.
    (e_select_names_init): set e_select_names->adapter.

2001-05-31  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-addressbook-model.c (remove_card): decrement
    data_count before emitting the card_removed signal, and break
    after we've removed the matching card.
    (e_addressbook_model_class_init): change signature of
    "card_removed" signal to match what we emit (and what is
    expected.)

    * gui/widgets/e-addressbook-view.c (e_addressbook_view_init): the
    signal name is "destroy", not "destroyed".
    (do_remove): new function, actually remove the card.
    (e_addressbook_view_delete_selection): get this working for both
    view types.

2001-05-31  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c: Print Preview =>
    ContactsPrintPreview.  Changed peter's change so that the node
    name is more in line with "Print.."'s

2001-05-30  Peter Williams  <peterw@ximian.com>

    * gui/component/addressbook.c: Use the correct path to the print
    preview menu item.

2001-05-30  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c (cut_contacts_cb): new function, for
    the Cut verb.
    (copy_contacts_cb): new function, for the Copy verb.
    (paste_contacts_cb): new function, for the Paste verb.
    (select_all_contacts_cb): new function, for the Select All verb.
    (update_command_state): add handling for sensitivity of
    Cut/Copy/Paste/Select All.

    * gui/widgets/e-addressbook-view.c (e_addressbook_view_init): init
    the invisible and set up selection/destroy signals.
    (get_selection_model): new function, so we can get the
    ETableSelectionModel from either view type.  makes lots of the
    other functions easier, since we can get the list of selected
    cards using the same code regardless of view type.
    (invisible_destroyed): new function.
    (selection_get): new function.  convert the clipboard list to
    string.
    (selection_clear_event): new function - free up the list of
    ECards.
    (selection_received): if the selection data is valid and
    well-formed, add the corresponding cards to the ebook.
    (add_to_list): new function.
    (get_selected_cards): new function.
    (e_addressbook_view_cut): new function, implement in terms of
    _copy and _delete_selection.
    (e_addressbook_view_copy): claim ownership of the CLIPBOARD
    selection after saving the list of selected ECards.
    (e_addressbook_view_paste): call gtk_selection_convert.
    (e_addressbook_view_select_all): new function, using
    e_selection_model_select_all.
    (e_addressbook_view_can_print): re-implement in terms of
    get_selection_model.
    (e_addressbook_view_can_delete): same.
    (e_addressbook_view_can_cut): new function.
    (e_addressbook_view_can_copy): new function.
    (e_addressbook_view_can_paste): new function.  hmm, always return
    TRUE here.
    (e_addressbook_view_can_select_all): new function.

    * gui/widgets/e-addressbook-view.h (struct _EAddressbookView): add
    selection stuff - the list of selected cards, and the GtkInvisible
    selection owner, and add prototypes for
    e_addressbook_view_[can]_{cut,copy,paste,select_all}.
    
    * gui/widgets/e-minicard-view-widget.h: add a prototype for
    e_minicard_view_widget_get_selection_model.

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_get_selection_model): new function.

2001-05-27  Dan Winship  <danw@ximian.com>

    * gui/component/addressbook.c: #include
    "evolution-shell-component-utils.h" rather than "e-gui-utils.h"
    for e_pixmaps_update.

2001-05-25  Peter Williams  <peterw@ximian.com>

    * gui/component/Makefile.am: Reference libeshell.la instead of
    libeshell.a.

2001-05-25  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-addressbook-reflow-adapter.c (addressbook_height):
    Correct the height calculation here to not include the
    E_CARD_SIMPLE_FIELD_FAMILY_NAME since it won't be displayed.

    * gui/widgets/e-minicard.c (remodel): Changed this to continue to
    be more consistent and simpler.

2001-05-23  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (view_destroy): fix strings such
    that ones that happening at the beginning or during an operation
    are followed by "..." and those that stop the operation are
    followed by "."
    (create_card_handler): same.
    (ldap_op_process_current): same, and also call _notify_complete if
    we can't connect to ldap server.
    (poll_ldap): same, and change "Polling for LDAP search result" to
    "Receiving LDAP search results"

    * backend/pas/pas-backend-file.c (pas_backend_file_search): call
    notify_status_message at the beginning of this function, and
    whenever we call _notify_complete.

2001-05-23  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-addressbook-model.h: add sequence_complete_id to
    EAddressbookModel and stop_state_changed to
    EAddressbookModelClass.  also, add prototype for
    e_addressbook_model_can_stop.

    * gui/widgets/e-addressbook-model.c (remove_book_view): disconnect
    from "sequence_complete", and set search_in_progress to FALSE.
    (sequence_complete): set search_in_progress to FALSE and emit
    "stop_state_changed."
    (e_addressbook_model_class_init): create the "stop_state_changed"
    signal.
    (e_addressbook_model_init): init stuff.
    (book_view_loaded): connect to "sequence_complete" signal.
    (book_view_loaded): set search_in_progress to TRUE and emit
    "stop_state_changed"
    (e_addressbook_model_stop): set search_in_progress to false, emit
    "stop_state_changed", and set our status to "Search Interrupted."
    (e_addressbook_model_can_stop): return search_in_progress.

    * gui/widgets/e-addressbook-view.c (e_addressbook_view_init):
    connect to the stop_state_changed signal on EAddressbookModel.
    (stop_state_changed): new function.
    (e_addressbook_view_can_stop): call e_addressbook_model_can_stop.

    * gui/component/addressbook.c (update_command_state): use
    e_addressbook_view_can_stop to set the sensitivity of the stop
    button.

2001-05-22  Dan Winship  <danw@ximian.com>

    * backend/ebook/e-book-listener.c (e_book_listener_check_queue):
    ref the listener for the duration of this function, since emitting
    "responses_queued" may cause it to be unreffed by its EBook in
    some cases, which could cause the second response_queue check to
    look at garbage data if it got destroyed.
    (e_book_listener_destroy): Call g_source_remove if idle_id is set.

2001-05-22  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c: track the change in
    evolution-addressbook.xml's bonobo ui path's.

2001-05-21  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c (change_view_type): update_view_type
    is gone, since the menu item is gone.

    * gui/widgets/e-addressbook-table-adapter.c (create_card): use
    e_table_model_rows_inserted here.

2001-05-20  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/addressbook-config.c
    (addressbook_source_item_new): Removed an unused variable.

    * gui/component/select-names/e-select-names-bonobo.c
    (entry_get_property_fn): Made text here non-const.

    * gui/component/select-names/e-select-names-popup.c
    (edit_contact_info_cb): Cast to a gpointer here.

    * gui/component/select-names/e-select-names.c
    (e_addressbook_create_ebook_table): Cast to E_TABLE_MODEL here.

2001-05-18  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-completion.c
    (match_name): Do a better job constructing match strings, so we
    never try to use a segment of the name that isn't there (resulting
    in ugly (null)'s in the string).  Boost our score if some part of
    the name also matches the front part of the e-mail address, so the
    name match will always trump the e-mail match.

    * gui/component/select-names/e-select-names-bonobo.c
    (entry_get_property_fn): Return the serialized EDestinations
    (rather than just a string w/ e-mail addresses) through the bonobo
    component's property bag.

    * gui/component/select-names/e-select-names-model.c
    (e_select_names_model_export_destinationv): Added.  A convenience routine
    for serializing the model's EDestinations into a string.

    * gui/component/select-names/e-select-names-popup.c
    (add_html_mail): Added.  Puts in a check menu item for whether or
    not the recipient wants HTML mail.
    (popup_menu_card): Add menu item for HTML mail.  Enable edit
    contact info item.
    (popup_menu_nocard): Add menu item for HTML mail.  Enable edit
    contact info item.

    * backend/ebook/e-book-util.c (e_book_use_local_address_book):
    Added.  Fetches the local addressbook and caches it on the first
    call.  This is meant to be an easy and efficient way to get at the
    local addressbook with the minimum of code.
    (e_book_query_address_locally): Added.  Convenience code that
    does an e-mail only e_book_name_and_email_query against the
    local address book.

    * backend/ebook/e-destination.c
    (e_destination_set_html_mail_pref): Added.  Allows the intended
    recipient's HTML mail preference to be manipulated.
    (e_destination_get_email_verbose): Added.  Cleaned up to use
    e_destination_get_name.
    (e_destination_get_html_mail_pref): Added.  Read the recipient's HTML mail
    preference.  If the destination is linked to a card, the
    preference is taken from the card (unless it has been explicitly
    overridden by a called to e_destination_set_html_mail_pref).
    (e_destination_get_address_textv): Added.  Form a unified address string
    from a NULL-terminated vector of EDestinations.
    (e_destination_export): Added.  Serialize an EDestination to a string.
    (e_destination_import): Added.  Unserialize a string to build an
    EDestination.
    (e_destination_exportv): Added.  Serialize a NULL-terminated vector of
    EDestinations to a string.
    (e_destination_importv): Added.  Unserialize a string to build a
    NULL-terminated vector of EDestinations.

    * gui/component/select-names/e-select-names-completion.c:
    Implemented local versions of g_strcasecmp and g_strncasecmp
    (which should really be in glib, I think...) for utf8, and used
    them to make this code utf8-safe.

2001-05-17  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c (update_command_state): no more
    ContactFind command.

2001-05-17  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_class_init): add our selection_change
    signal.
    (e_minicard_view_widget_realize): connect to the ESelectionModel's
    selection_changed signal.
    (e_minicard_view_widget_selected_count): new function.
    (selection_change): new function - emit our "selection_change"
    signal.

    * gui/widgets/e-minicard-view-widget.h (struct
    _EMinicardViewWidgetClass): add selection_change signal.  also,
    add prototype for e_minicard_view_widget_selected_count.  

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_class_init): add our command_state_change
    signal.
    (e_addressbook_view_init): connect to the writable_status signal
    on the EAddressbookModel.
    (minicard_selection_change): new function - calls
    command_state_change.
    (create_minicard_view): connect to selection_change on the
    minicard_view so we know when to update command state.
    (table_selection_change): new function - calls
    command_state_change.
    (writable_status): new function - calls command_state_change.
    (command_state_change): new function - emits our
    "command_state_change" signal.
    (create_table_view): connect to the selection_change signal so we
    know to update the command state.
    (change_view_type): update the command state every time we change
    view types.
    (e_addressbook_view_can_create): new function.
    (e_addressbook_view_can_print): new function.
    (e_addressbook_view_can_delete): new function.
    (e_addressbook_view_can_stop): new function.

    * gui/widgets/e-addressbook-view.h (struct
    _EAddressbookViewClass): add command_state_change signal, and
    prototypes of functions the component can use to test the state of
    commands.

    * gui/widgets/e-addressbook-model.c (addressbook_destroy): unlink
    the writable_status signal on the EBook.
    (writable_status): new function.
    (e_addressbook_model_class_init): add our writable_status signal.
    (e_addressbook_model_init): init writable_status_id.
    (e_addressbook_model_set_arg): unlink the writable_status signal
    on the old EBook, and connect it on the new one.

    * gui/widgets/e-addressbook-model.h: add writable_status signal.

    * gui/component/addressbook.c (update_command_state): new
    function, set the sensitivity of the bonobo commands.
    (control_activate): update our command state immediately upon
    activating the control.
    (addressbook_factory_new_control): register command_state_change
    to update the commands.

2001-05-15  Chris Toshok  <toshok@ximian.com>

    * gui/search/e-addressbook-search-dialog.c
    (e_addressbook_search_dialog_init): initialize the model and
    adapter.
    (button_press): set on the model.
    (e_addressbook_search_dialog_new): same.
    (e_addressbook_search_dialog_set_arg): same.
    (e_addressbook_search_dialog_destroy): unref the model and
    adapter.

    * gui/search/e-addressbook-search-dialog.h (struct
    _EAddressbookSearchDialog): add our model and reflow adapter.

2001-05-16  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-minicard-view.c: (e_minicard_view_destroy): Fixed
    up the lifetime of the drag_data_get signal a bit.

2001-05-15  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard-view.c (add_to_list): MinicardViewModel
    -> ReflowAdapter name change.
    (get_card_list): same.
    (e_minicard_view_drag_begin): same.
    (supported_fields_cb): model -> adapter.
    (adapter_changed): hook up signals and set the empty message on
    our adapter.
    (e_minicard_view_set_arg): add support for "adapter", and set
    model -> adapter.
    (e_minicard_view_get_arg): same.
    (disconnect_signals): no more status_message.
    (do_remove): track to use adapter.
    (e_minicard_view_class_init): add adapter arg, and remove
    status_message.
    (e_minicard_view_init): all the code here is in adapter_changed
    now.

    * gui/widgets/e-minicard-view.h (struct _EMinicardView):
    EMinicardViewModel -> EAddressbookReflowAdapter.
    (struct _EMinicardViewClass): get rid of status_message.

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_class_init): remove the status_message
    signal.
    (e_minicard_view_widget_new): take the adapter as our argument,
    and store it away for when we create the view.
    (e_minicard_view_widget_realize): when we create the view just set
    the adapter field on it.  also, don't connect to status_message.

    * gui/widgets/e-minicard-view-widget.h (struct
    _EMinicardViewWidget): add our adapter here, so we can pass it
    into the view when we create it.
    (struct _EMinicardViewWidgetClass): remove status_message.

    * gui/widgets/e-addressbook-view.c (status_message): new function,
    no more propagating status messages!
    (e_addressbook_view_init): create our model and conenct to its
    status_message signal.
    (book_writable_cb): set "editable" on the model, not our object.
    (e_addressbook_view_set_arg): same, but with "book" and "query" as
    well.
    (create_minicard_view): create our reflow adapter and pass it to
    the minicard view widget.  also, call e_reflow_model_changed so
    it'll pick up any already present cards.
    (table_double_click): ADDRESSBOOK_MODEL -> TABLE_ADAPTER.
    (get_card_list_1): remove the cast, since we don't need it any
    longer.
    (table_right_click): ADDRESSBOOK_MODEL -> TABLE_ADAPTER.
    (table_drag_data_get): same.
    (create_table_view): create the table adapter, and use it as our
    ETableModel.
    (change_view_type): remove the status_message hook up and setting
    of query/book/editable.
    (e_addressbook_view_stop): just call e_addressbook_model_stop here
    instead of switching on the view type.

    * gui/widgets/e-addressbook-view.h (struct _EAddressbookView): add
    our EAddressbookModel.

    * gui/widgets/Makefile.am (libeminicard_a_SOURCES): add the
    adapter files, and remove e-minicard-view-model.[ch].

    * gui/widgets/e-minicard-view-model.[ch]: removed.
    
    * gui/widgets/e-addressbook-table-adapter.c: new file.

    * gui/widgets/e-addressbook-table-adapter.h: new file.

    * gui/widgets/e-addressbook-reflow-adapter.c: new file.

    * gui/widgets/e-addressbook-reflow-adapter.h: new file.

    * gui/widgets/e-addressbook-model.c: rework this class to now
    subclass from ETableModel anymore.  It not subclasses from
    GtkObject, and we use table and reflow adapters to get at the
    data.

    * gui/widgets/e-addressbook-model.h: same.

2001-05-14  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-minicard-view-model.c (remove_card): Fix a small
    error not decreasing the data_count here.

2001-05-13  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.h: add prototype for
    addressbook_expand_uri.

    * gui/component/addressbook-component.c
    (destination_folder_handle_drop): create an EBook for
    @physical_uri.
    (dnd_drop_book_open_cb): actually add the dropped cards.

    * gui/component/addressbook.c (addressbook_expand_uri): abstract
    this code out from the set_prop method so we can use it in the
    component.
    (set_prop): call addressbook_expand_uri.

    * backend/ebook/e-card.c (e_card_load_cards_from_string): new
    function.

    * backend/ebook/e-card.h: add prototype for
    e_card_load_cards_from_string.

2001-05-12  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-component.c
    (destination_folder_handle_drop): spew the data passed to us.
    (destination_folder_handle_motion): the suggested_action is not an
    ActionSet, but an Action, so don't or together multiple actions.

2001-05-11  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-config.c (addressbook_source_dialog):
    correct bug causing the Ok button to never be enabled.

2001-05-11  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-component.c (populate_context_menu):
    example.

2001-05-11  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard-view.c (e_minicard_view_drag_data_get):
    use e_card_list_get_vcard to build up the data to send.
    (e_minicard_view_init): connect to the model's drag_begin signal.
    (e_minicard_view_drag_begin): gather the list of cards being
    dragged and call gtk_drag_begin.
    (add_to_list): new function.
    (get_card_list): same.
    (disconnect_signals): disconnect the drag_data_get signal.
    (e_minicard_view_init): connect to the drag_begin signal on our
    model.

    * gui/widgets/e-minicard-view.h (struct _EMinicardView): change
    drag_card to drag_list.
    
    * gui/widgets/e-minicard-view-model.c (minicard_drag_begin): new
    function, emit our drag_begin signal.
    (addressbook_incarnate): connect to the item's drag_begin signal.
    (e_minicard_view_model_class_init): init our drag_begin signal.

    * gui/widgets/e-minicard-view-model.h: add drag_begin signal.

    * gui/component/addressbook-config.c (addressbook_source_dialog):
    always loop through all source types here, making LDAP first so
    it's forces as the first notebook item.
    (addressbook_config_auth_label): remove SASL case.
    (addressbook_source_edit_changed): same.
    (addressbook_source_item_new): flag the area of code that needs to
    go into the advanced dialog (if we add one before someone
    graciously redesigns the entire addressbook gui :)


    * gui/component/addressbook-storage.c (ldap_unparse_auth): remove
    SASL case.
    (ldap_parse_auth): same.

    * gui/component/addressbook-storage.h: make LDAP come first in our
    source type enumeration, and remove the SASL auth type.

2001-05-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card.c (e_card_set_arg): If the name is set and
    the full_name or file_as haven't been yet, set them.

2001-05-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c: Reordered the includes here.
    (string_to_dbt): The sleepycat libdb documentation suggests
    memseting the DBT to 0 so we do that here.

    * gui/widgets/e-minicard-view-model.c (addressbook_height): Skip
    the E_CARD_SIMPLE_FIELD_FAMILY_NAME field.

    * gui/widgets/e-minicard.c (remodel): Skip the
    E_CARD_SIMPLE_FIELD_FAMILY_NAME field.

2001-05-11  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (pas_backend_ldap_connect): only
    check schema support if we've connected.

2001-05-11  Chris Toshok  <toshok@ximian.com>

    * contact-editor/e-contact-editor.c (enable_writable_fields):
    don't leak the ECard or ECardSimple.

2001-05-08  Iain Holmes  <iain@ximian.com>

    * backend/ebook/GNOME_Evolution_Addressbook_VCard_Importer.oaf.in:
    Renamed the GnomeCard_Importer.oaf.in to this, and change the IID.

    * Makefile.am: Rename all the GnomeCard to VCard.

    * evolution-vcard-importer.c: Make the GnomeCard a generic 
    vcard importer.

2001-05-08  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/Makefile.am (libebookinclude_HEADERS): Removed
    e-card-pairs.h since we're not using it.

    * backend/ebook/e-book-view.c (e_book_view_check_listener_queue):
    Added break; to default: case here.

    * backend/ebook/e-card-simple.c, backend/ebook/e-card-simple.h:
    Added changed variable so as to avoid sync_card when possible.
    (e_card_simple_destroy): Free all the data here properly.
    (e_card_simple_get_arg): Slight simplification here.
    (fill_in_info, e_card_simple_arbitrary_foreach,
    e_card_simple_get_arbitrary): Call e_card_free_empty_lists here to
    save a bit of memory.

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Fixed up
    includes a bit.
    (e_card_list_get_vcard, e_card_list_send): Added these functions
    for acting on a group of cards.
    (parse_org): Cleaned up this function a bit.
    (e_card_free_empty_lists): Added this function to delete
    unnecessary ELists and save a bit of memory.
    (e_v_object_get_child_value): Made this return NULL if not found
    instead of g_strdup("").

    * contact-editor/e-contact-save-as.c,
    contact-editor/e-contact-save-as.h (e_contact_list_save_as): Added
    this function to save multiple contacts.

    * gui/widgets/Makefile.am: Commented out reflow test.
    (libeminicard_a_SOURCES): Added e-minicard-view-model.c and
    e-minicard-view-model.h.

    * gui/widgets/e-minicard-view-model.c,
    gui/widgets/e-minicard-view-model.h: Model for use in
    EMinicardView.

    * gui/widgets/e-minicard-view.c, gui/widgets/e-minicard-view.h:
    Reworked this to use the new EReflow stuff.

    * gui/widgets/e-minicard.c (e_minicard_event): Doesn't handle
    right click menus now.  Emits a signal on the parent canvas item
    instead.

    * printing/e-contact-print-envelope.c,
    printing/e-contact-print-envelope.h
    (e_contact_print_envelope_list_dialog_new): Added this function to
    print multiple envelopes (only prints first for now.)

    * printing/e-contact-print.c, printing/e-contact-print.h
    (e_contact_print_card_list_dialog_new): Added this function to
    print multiple cards.  Only prints the first for now.

2001-05-07  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-component.c (remove_folder): flesh out
    the function more.  It should work now, but there's no way to
    invoke this method from the ui at the moment, heh.

2001-05-07  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook.c (book_open_cb): Use a different
    error message in the ldap support/no ldap support/file cases.

2001-05-07  Gediminas Paulauskas <menesis@delfi.lt>

    * gui/component/addressbook.c: use define from
    widgets/misc/e-filter-bar.h instead of own enumeration and search menu
    names.

    * gui/component/Makefile.am, gui/component/select-names/Makefile.am:
    removed EVOLUTION_VERSION.

2001-05-04  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-component.c (remove_folder): un-#if 0
    this.
    (xfer_folder): add skeleton code to validate xfer request.  always
    notifies with PERMISSION_DENIED at present.
    (populate_context_menu): un-#if 0 this.
    (get_dnd_selection): same.
    (destination_folder_handle_motion): new function.
    (destination_folder_handle_drop): new function.
    (factory_fn): create a EvolutionShellComponentDndDestinationFolder
    interface, and add it to our shell component.

2001-05-04  JP Rosevear  <jpr@ximian.com>

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_book_view): init change_id to NULL

2001-05-02  JP Rosevear  <jpr@ximian.com>

    * gui/component/addressbook.c (addressbook_view_free): unref the
    book if the view is being destroyed

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_book_view): unref the book_view when
    we are finished, it is only interesting if someone else has reffed
    it now (weak reference)
    (pas_backend_file_add_client): unref the book for the same reason
    as above

    * Fixes bug #2255

2001-04-30  JP Rosevear  <jpr@ximian.com>

    * backend/pas/pas-backend-file.c (vcard_matches_search): if the
    view does not contain a search context, the result is by default
    false fixes #2470

2001-04-25  Dan Winship  <danw@ximian.com>

    * gui/component/addressbook-factory.c (main): Remove call to
    unicode_init.

2001-04-23  Jon Trowbridge  <trow@ximian.com>

    * gui/component/e-address-popup.c: Lots of code has been
    simplified here.
    (e_address_popup_factory_new_control): Rather than directly pop
    our control up in a window (via the e_address_popup_popup
    function, which is now gone), just return the widget and let the
    caller do the popping.  This works better, since it means we don't
    have to work around the vagaries of bonobo focus & event handling.
    (e_address_popup_set_name): Refresh when both name & email have
    been set, rather than checking a stupid counter.
    (e_address_popup_set_email): Ditto.

2001-04-22  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/addressbook-storage.c
    (addressbook_storage_clear_sources): Added save_source_data here.

2001-04-21  Jon Trowbridge  <trow@ximian.com>

    * contact-editor/e-contact-quick-add.c (clicked_cb): Properly
    convert to utf8. (Bug #2256)
    (build_quick_add_dialog): Properly convert from utf8. (Bug #2256)

2001-04-16  Jon Trowbridge  <trow@ximian.com>

    * backend/ebook/e-destination.c (e_destination_get_name): Added.

    * gui/component/select-names/e-select-names.c
    (real_add_address_cb): Use e_select_names_model_append.  It's
    nicer.

    * gui/component/select-names/e-select-names-model.c
    (e_select_names_model_append): Added.

    * gui/component/select-names/e-select-names-completion.c
    (book_query_process_card_list): Filter out completion matches that
    don't have an associated e-mail address.
    (book_query_score): Give a bonus to the primary address, so that
    it always comes up first in the completion results.

    * gui/component/e-address-popup.c (e_address_popup_refresh_names):
    Convert utf8 strings into gtk strings before displaying.

2001-04-14  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-book-view-listener.c,
    backend/ebook/e-book-view-listener.h: Added the function
    e_book_view_listener_stop to tell the book view listener to stop
    sending signals.

    * backend/ebook/e-book-view.c (e_book_view_destroy): Tell the
    EBookViewListener to stop when we're destroyed.

    * backend/pas/pas-backend-file.c (view_destroy,
    pas_backend_file_process_get_book_view,
    pas_backend_file_process_get_changes): Cleaned these up a bit
    using bonobo_object_ref and bonobo_object_unref.
    (pas_backend_file_process_get_book_view,
    pas_backend_file_process_get_changes): bonobo_object_release_unref
    the EBookListener here.

    * backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_process_get_book_view): Cleaned this up a bit
    using bonobo_object_ref.  Make sure to unref the listener when
    we're done with it.  Put the new book_view in the list before
    telling the book_listener that it's ready.

    * backend/pas/pas-book-view.c (pas_book_view_construct): Cleaned
    this up a bit using bonobo_object_dup_ref.
    (pas_book_view_destroy): Cleaned this up a bit using
    bonobo_object_release_unref.

    * backend/pas/pas-book.c (pas_book_queue_get_book_view,
    pas_book_queue_get_changes): bonobo_object_dup_ref here instead of
    just duplicating.

2001-04-14  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-book-listener.c
    (impl_BookListener_respond_get_cursor): Ref the cursor here when
    we receive it.
    (impl_BookListener_respond_get_view,
    impl_BookListener_respond_get_changes): Ref the book_view here
    when we receive it.
    (impl_BookListener_respond_open_book): Ref the book here when we
    receive it.
    (e_book_listener_destroy): Unref the objects in our queue here.

    * backend/ebook/e-book-view.c (e_book_view_construct): Cleaned
    this up using bonobo_object_dup_ref.
    (e_book_view_destroy): Cleaned this up using
    bonobo_object_release_unref.

    * backend/ebook/e-book.c (e_book_do_response_get_cursor,
    e_book_do_response_get_view, e_book_do_response_get_changes,
    e_book_unload_uri): Cleaned this up using
    bonobo_object_release_unref.

2001-04-13  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/select-names/e-select-names-bonobo.c
    (entry_get_property_fn): Get the ESelectNamesModel from the
    widget's text model instead of storing it as a gtk_object_set_data
    since it may change.

2001-04-12  Jason Leach  <jasonleach@usa.net>

    * backend/pas/pas-backend-file.c (INITIAL_VCARD): Update the Voice
    and Fax phone numbers too, finishing off bug #1667.

2001-04-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c (INITIAL_VCARD): Update the built
    in VCard.

2001-04-12  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (local_record_from_ecard): put the
    business address into the pilot record as that is what we put into
    the desktop record
    (ecard_from_remote_record): set both the address label and
    delivery address to avoid bad parser guessing, fixes #2143

    * backend/ebook/e-card-types.h: remove deprecated pilot code

    * backend/ebook/e-card.c: ditto

    * backend/ebook/e-card.h: ditto
    
2001-04-11  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (local_record_from_ecard): Don't add
    more than five phone numbers and set the remaining blank entries
    to some reasonable defaults

2001-04-11  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card-simple.h: Added
    E_CARD_SIMPLE_FIELD_LAST_SIMPLE_STRING.

    * gui/component/addressbook-component.c (accepted_dnd_types):
    Fixed a warning here.

    * gui/widgets/e-addressbook-model.c: Modified this to have more
    columns, but not let them be edited if they're not a simple
    string.

    * gui/widgets/e-minicard-view.c (e_minicard_view_init): Fixed a
    warning and a memory leak here.

2001-04-10  Gediminas Paulauskas <menesis@delfi.lt>

    * backend/ebook/evolution-gnomecard-importer.c: added missing #include.
    * contact-editor/e-contact-editor.c (_arrow_pressed): popup menu items were
    not translated after selecting one of them.
    * gui/widgets/e-addressbook-view.c: mark popup menu items with N_().
    Updated list[] for translators.
    * gui/widgets/e-minicard.c: same.
    * gui/widgets/e-minicard-view-widget.c (e_minicard_view_widget_set_arg): fix warning
    for "editable" arg.
    * gui/widgets/e-minicard-view.c: convert "empty_message" to utf8.

2001-04-09  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-component.c (remove_folder): stubbed,
    #if 0'ed
    (xfer_folder): same.
    (populate_context_menu): same.
    (get_dnd_selection): same.
    (factory_fn): add the accepted drag types ("text/x-vard") to
    folder_types.

2001-04-09  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard.c (e_minicard_event): on BUTTON_PRESS: if
    it's button 1, store the button x, y, and set drag_button_down to
    TRUE.  on BUTTON_RELEASE: always set drag_button_down to FALSE.
    for MOTION_NOTIFY: initiate drag if the pointer has moved 3
    pixels.

    * gui/widgets/e-minicard.h (struct _EMinicard): add fields for
    button x, y, and a bit for if the button has been pressed so we
    can tell whether a motion should be a drag.
    (struct _EMinicardClass): add drag_begin signal.

    * gui/widgets/e-minicard-view.c (e_minicard_view_drag_begin): new
    function, starts the drag.
    (book_view_loaded): connect the "drag_data_get" signal.
    (e_minicard_view_drag_data_get): new function.

    * gui/widgets/e-minicard-view.h (struct _EMinicardView): add
    drag_card and id for canvas_drag_data_get_id.

    * gui/widgets/e-addressbook-view.c (table_drag_data_get): new
    function.
    (create_table_view): add d&d stuff.

2001-04-08  Chris Toshok  <toshok@ximian.com>

    * printing/e-contact-print.c: add #include <sys/types.h> since
    gnome-print.h uses time_t without including it.  this really
    should be fixed in gnome-print.

2001-04-08  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (pas_backend_ldap_add_client):
    make sure to notify new clients to the writable status of an
    already open (and authenticated) book.

2001-04-04  Kjartan Maraas  <kmaraas@gnome.org>

    * contact-editor/e-contact-editor.[ch]: Fix headers.
    * component/addressbook-storage.c: Same here.
    * gui/search/e-addressbook-search-dialog.c: Same here.
    * gui/widgets/e-addressbook-view.c: Same here.
    * gui/widgets/e-minicard-label.c: Same here.
    * gui/widgets/e-minicard-view-widget.c: Same here.
    * gui/widgets/e-minicard-view.c: Same here.
    * gui/widgets/e-minicard-widget-test.c: Same here.
    * gui/widgets/e-minicard-widget.c: Same here.
    * gui/widgets/e-minicard.c: Same here.
    * gui/widgets/test-minicard-label.c: Same here.

2001-04-03  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-addressbook-view.c (table_double_click): Fixed a
    crash here.

2001-04-03  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-addressbook-model.c (COLS): Made this table model
    more consistent in the number of columns it has.
    (addressbook_append_row): Fixed this function.  We removed the col
    offset.

2001-04-02  Iain Holmes  <iain@ximian.com>

    * backend/ebook/evolution-gnomecard-importer.c (importer_init): Shut
    down and unregister the factory on exit. 

2001-04-01  Gediminas Paulauskas <menesis@delfi.lt>

    * contact-editor/contact-editor.glade: changed icon to
    evolution-contacts-plain.png.
    * gui/component/addressbook.c: use new pixmap cache. Added icon for new
    contact, print, print preview, changed filenames of renamed icons.

2001-03-31  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names.c
    (real_add_address_cb): Call e_select_names_model_clean after
    adding address.  This should deal with the bug reports related
    to stray commas.

    * gui/component/select-names/e-select-names-model.c
    (e_select_names_model_clean): Added.  Remove all empty destinations.

    * backend/ebook/e-destination.c (e_destination_is_empty): Added.  Check
    if an EDestination is in essentially a null state.

2001-03-30  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c (pas_backend_file_add_client):
    Tell new clients that are added whether they're writable.

2001-03-29  Jon Trowbridge  <trow@ximian.com>

    * printing/e-contact-print.c: Added #include <libgnome/gnome-paper.h>
    
    * printing/e-contact-print-envelope.c: Added #include <time.h>
    and #include <libgnome/gnome-paper.h>

2001-04-03  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/select-names/e-select-names-completion.c
    (match_email): Better handle matching of "nameless" contacts.

    * backend/ebook/e-destination.c (e_destination_get_string): Better
    handle the case of a "nameless" contact.

2001-03-29  Kjartan Maraas  <kmaraas@gnome.org>

    * *.*: Clean up #includes. Replace <gnome.h>, <bonobo.h> and
    <gtk/gtk.h> with more finegrained headers where needed.

2001-03-28  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card.c (e_card_set_arg): Fixed some crashes.

2001-03-28  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/select-names/e-select-names-table-model.c
    (fill_in_info): Use E_CARD_SIMPLE_FIELD_NAME_OR_ORG instead of
    getting the NAME and then the ORG.  That way if we expand
    NAME_OR_ORG, this will use it.

    * gui/component/select-names/e-select-names.c
    (e_addressbook_create_ebook_table, SPEC): Use the correct column
    in the SPEC.

2001-03-25  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-completion.c
    (e_select_names_completion_seq_complete_cb): Rather than starting
    the pending query by directly calling
    e_select_names_completion_do_query, call
    e_completion_begin_search.  Circumventing the ECompletion API was
    causing it to get confused in some cases.

2001-03-23  Jon Trowbridge  <trow@ximian.com>

    * gui/widgets/e-minicard-widget.c (e_minicard_widget_set_card):
    Added.  Call me old-fashioned, but I just prefer to have a real
    API rather than doing everything via gtk_object_get/set-type
    calls.
    (e_minicard_widget_set_arg): Changed to call
    e_minicard_widget_set_card.

    * backend/ebook/e-book-util.c: Small changes to get rid of
    compiler warnings.  (Casting out const, removed unused variables,
    etc.)  Removed some debugging messages.

    * gui/component/addressbook-factory.c (main): Added call
    to e_address_popup_factory_init.

    * gui/component/e-address-popup.c: Added.  A popup gadget that is
    invoked (as a bonobo control) when an address is left-clicked in
    the mailer.  The addressbook is queries, and the address is either
    displayed as a minicard (if it already exists) or in a "generic
    format".  A button is provided for editting/adding the contact.
    Some of the semantics of this widget are a bit... non-standard,
    because of bonobo issues.  I can't really seem to replicate
    popup-menu behavior because of how bonobo propogates events, etc.
    so I've tried to produce something that I think is non-annoying.
    YMMV.

2001-03-22  Iain Holmes  <iain@ximian.com>

    * backend/ebook/evolution-gnomecard-importer.c: Update to the new
    IDL.

2001-03-20  Miguel de Icaza  <miguel@ximian.com>

    * gui/component/addressbook.c (update_pixmaps): Added artwork from
    Jakub. 

2001-03-19  Christopher James Lahey  <clahey@ximian.com>

    * Merged branch:

2001-03-14  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-minicard-view.c: Call
    e_selection_model_simple_insert_rows and
    e_selection_model_simple_delete_rows instead of
    e_selection_model_simple_insert_row and
    e_selection_model_simple_delete_row.

End of branch

2001-03-17  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-completion.c: Brutally
    refactored to boost performance in large-addressbook situations.
    These fixes give accepable performance (even with the suboptimal
    pas-backend-file searching) using tigert's addressbook-of-death.

    * backend/pas/pas-backend-file.c (pas_backend_file_search): 
    Start feeding query matches back to the caller before the
    entire search is complete; this gives us some "instant feedback"
    rather than causing evolution to totally lock up...

    * backend/ebook/e-book.c (e_book_queue_op): Tag all queued ops.
    (e_book_cancel_op): Added.  Search for a pending op with a given
    tag, and mark it as inactive.
    (e_book_do_response_get_cursor): Don't execute callback if this
    operations has been cancelled.
    (e_book_do_response_get_view): Ditto.
    (e_book_do_response_get_changes): Ditto.
    (e_book_do_response_get_supported_fields): Ditto.
    (e_book_get_supported_fields): Return an operation tag (that can
    be used to cancel the operation) rather than just TRUE/FALSE.
    Zero is always an invalid tag and is returned in the case of an
    error, so this shouldn't break any code that looked at the return
    value (unless it did so in a particularly stupid way, of course).
    (e_book_get_cursor): Ditto.
    (e_book_get_book_view): Ditto.
    (e_book_get_changes): Ditto.
    (e_book_cancel): Added.  Cancel a pending operation.  (Basically
    a call to e_book_cancel_op with error checking, etc.)

    * backend/ebook/e-book-types.h: Added E_BOOK_STATUS_CANCELLED.

2001-03-17  Chris Toshok  <toshok@ximian.com>

    * backend/ebook/e-book-listener.c
    (e_book_listener_queue_writable_status): new function.
    (impl_BookListener_report_writable): new function.
    (e_book_listener_get_epv): fill in epv->notifyWritable.

    * backend/ebook/e-book-listener.h: add writable status entries.

    * backend/ebook/e-book.c (e_book_do_writable_event): new function.
    (e_book_check_listener_queue): add WritableStatusEvent to the
    switch.
    (e_book_class_init): register writable_status signal.

    * backend/ebook/e-book.h: add writable_status signal.

    * backend/idl/addressbook.idl: add notifyWritable method to
    BookListener.

    * gui/widgets/e-minicard.c (e_minicard_class_init): add "editable"
    arg.
    (e_minicard_init): init editable.
    (e_minicard_set_arg): loop over the minicard fields setting their
    "editable".
    (e_minicard_get_arg): add editable.
    (supported_fields_cb): use editable when creating the
    contact_editor.
    (add_field): set "editable" when creatin the e_minicard.

    * gui/widgets/e-minicard.h (struct _EMinicard): add "editable".

    * gui/widgets/e-minicard-view.c (e_minicard_view_class_init): add
    editable arg.
    (e_minicard_view_init): init editable.
    (create_card): pass editable to e_minicard canvas item.
    (e_minicard_view_set_arg): bit of a hack - loop over all the
    canvas items setting their "editable."
    (e_minicard_view_get_arg): add editable.
    (supported_fields_cb): use editable when creating the contact
    editor.

    * gui/widgets/e-minicard-view.h (struct _EMinicardView): add
    "editable."

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_class_init): add "editable" field.
    (e_minicard_view_widget_init): init editable to FALSE.
    (e_minicard_view_widget_set_arg): save editable, and pass it along
    the e-minicard-view.
    (e_minicard_view_widget_realize): same.
    (e_minicard_view_widget_get_arg): add editable.

    * gui/widgets/e-minicard-view-widget.h (struct
    _EMinicardViewWidget): add "editable" field.

    * gui/widgets/e-minicard-label.h (struct _EMinicardLabel): add
    "editable" field.

    * gui/widgets/e-minicard-label.c (e_minicard_label_class_init):
    add "editable" arg.
    (e_minicard_label_set_arg): editable, set it on the e_text too.
    (e_minicard_label_get_arg): editable.
    (e_minicard_label_construct): set the "editable" field when we
    create the e_text cavas item

    * gui/widgets/e-addressbook-view.c (e_addressbook_view_init):
    default editable to FALSE.
    (book_writable_cb): new function, set our editable field and
    gtk_object_set it on the active view.
    (e_addressbook_view_set_arg): set the active view's editable when
    we set the view's book, and connect the "writable_status" signal
    to book_writable_cb.
    (change_view_type): same.
    (supported_fields_cb): use our "editable" when creating the
    contact editor.

    * gui/widgets/e-addressbook-view.h (struct _EAddressbookView): add
    editable field.

    * gui/widgets/e-addressbook-model.c (e_addressbook_model_init):
    change the default of editable to FALSE.

    * backend/pas/pas-book.c (pas_book_report_writable): new function.

    * backend/pas/pas-book.h: prototype for pas_book_report_writable.

    * backend/pas/pas-backend-file.c (pas_backend_file_load_uri): if
    we open the file O_RDWR (or create it) report it as writable.  if
    we can't open it as O_RDWR, try opening it read-only before we
    attempt to create it.

    * backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_process_authenticate_user): if we authenticate
    successfully, grant write permissions (this is lacking but there's
    really nothing we can do to determine the extent of the access
    afforded a user.)


2001-03-15  Jon Trowbridge  <trow@ximian.com>

    * gui/component/e-address-widget.c: Added addressbook querying and
    "cardification" functions, which are turned off by default for now
    because of addressbook bugs.  Added a popup menu option to turn
    queries on, so that others can enjoy the thrill of massive flaming
    death.

    * gui/component/addressbook-factory.c (main): Made warnings always
    be fatal.

    * backend/pas/pas-book-view.c: Added some debugging spew.

    * backend/pas/pas-backend-file.c (pas_backend_file_search): Added
    a little experimental code to try to make file searches scale
    better.  #if 0/#endif-ed out for now.

    * contact-editor/e-contact-quick-add.c: #included e-book-util.h.

    * backend/ebook/e-card.c (e_card_name_match_string): Added.
    Looser name-matching function.
    (e_card_email_match_string): Added.  Loose e-mail matching.

    * backend/ebook/e-book-view-listener.c
    (e_book_view_listener_check_queue): Added code to cause us to
    abort rather than get trapped in a 100%-CPU-consuming loop in
    certain situations.  Now we just need to figure out how to avoid
    these situations altogether.

    * backend/ebook/e-book-util.c: Added.  Now contains the simple
    query stuff and the open local addressbook functions.

    * backend/ebook/e-book.c: Moved simple query stuff and open local
    addressbook functions into e-book-util.c.

2001-03-15  Dan Winship  <danw@ximian.com>

    * gui/widgets/e-minicard-label.c (e_minicard_label_set_arg): 
    * gui/widgets/e-minicard.c (e_minicard_set_arg, e_minicard_event):
    Update arguments to e_canvas_item_grab_focus.

2001-03-13  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/addressbook.c (update_pixmaps): Fix a warning
    here.

2001-03-13  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/Makefile.am (minicard_label_test_LDADD): Change to
    ld order from Greg Williams.

2001-03-13  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_book_view): Moved where we call
    pas_book_respond_get_book_view.

2001-03-12  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c: add E_STRING_PROP for
    categories.

    * backend/pas/evolutionperson.schema: add categories attribute.

    * backend/ebook/e-card-simple.c (field_data): add
    E_CARD_SIMPLE_FIELD_CATEGORIES.

    * backend/ebook/e-card-simple.h: add
    E_CARD_SIMPLE_FIELD_CATEGORIES.

2001-03-12  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard.c (supported_fields_cb): add is_read_only
    param.

    * gui/widgets/e-minicard-view.c (supported_fields_cb): add
    is_read_only param.

    * gui/widgets/e-addressbook-view.c (supported_fields_cb): add
    is_read_only param.

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_activate_obj): add is_read_only param.
    also, include a little policy here and make it TRUE, as the user
    shouldn't be editting in this context anyway (imo).

    * gui/component/addressbook.c (supported_fields_cb): add
    is_read_only param.

    * contact-editor/test-editor.c (main): add is_read_only param.

    * contact-editor/e-contact-editor.c (set_read_only): new function,
    that either enables or disables all the text fields, combo boxes,
    and some buttons, depending on the state of is_read_only.
    (e_contact_editor_class_init): add read/write arg "is_read_only".
    (full_name_clicked): set the is_read_only of the fullname dialog
    to the editor's.
    (full_addr_clicked): same.
    (e_contact_editor_new): add is_read_only param, that gets set
    along with the other params.
    (e_contact_editor_set_arg): add setter for is_read_only.
    (e_contact_editor_get_arg): add getter for is_read_only.
    (_phone_arrow_pressed): change TRUE to !editor->is_read_only for
    entry.
    (_email_arrow_pressed): same.
    (_address_arrow_pressed): same.
    (enable_writable_fields): same.

    * contact-editor/e-contact-editor-fullname.c
    (e_contact_editor_fullname_class_init): add read/write arg
    "is_read_only".
    (e_contact_editor_fullname_set_arg): add setter for is_read_only
    that enables/disables all the entries/combos.
    (e_contact_editor_fullname_get_arg): add getter for is_read_only.

    * contact-editor/e-contact-editor-fullname.h (struct
    _EContactEditorFullname): add is_read_only flag.

    * contact-editor/e-contact-editor-address.c
    (e_contact_editor_address_class_init): add read/write arg
    "is_read_only".
    (e_contact_editor_address_set_arg): add setter for is_read_only
    that disables/enables all the entries/combos.
    (e_contact_editor_address_get_arg): add getter for is_read_only.

    * contact-editor/e-contact-editor-address.h (struct
    _EContactEditorAddress): add is_read_only flag.

2001-03-13  Iain Holmes  <iain@ximian.com>

    * backend/ebook/Makefile.am: Change the importer includes around a bit.

    * backend/ebook/evolution-gnomecard-importer.c: Correctly add the includes.

2001-03-09  JP Rosevear  <jpr@ximian.com>

    * conduit/Makefile.am: PISOCK_INCLUDEDIR has become
    PISOCK_CFLAGS in gnome-pilot.m4 and remove capplet foo

2001-03-11  Jon Trowbridge  <trow@ximian.com>

    * backend/ebook/e-book.c (e_book_simple_query): Added. A
    simplified, cancellable query mechanism that lets you avoid
    dealing with EBookView.
    (e_book_simple_query_cancel): Added. Cancels a running query.

    * backend/ebook/e-book-types.h: Add enum EBookSimpleQueryStatus.

2001-03-08  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-popup.c
    (quick_add_cb): Switched to use e_contact_quick_add_free_form.
    Removed debugging code, hopefully without introducing any bugs
    in the process.

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_insert_length): Fix bug with commas
    inside of name/address combos.  As long as the comma is inside of
    quotes, it will be treated as part of the name rather than as a
    break between addresses.

    * gui/component/select-names/e-select-names-completion.c
    (match_nickname): Use e_card_name_to_string for nickname match
    strings.
    (match_email): Use e_card_name_to_string for email match strings.
    (e_select_names_completion_begin): Strip quotes out of query text,
    so we don't produce malformed sexps.
    Added William Blake quote easter egg.

    * contact-editor/e-contact-quick-add.c: Further attempts to fix...
    mostly unsuccessful.
    (e_contact_quick_add_free_form): Added.  Takes a single string
    and tries to parse out (using some simple, loose rules) the
    name and e-mail -- then calls e_contact_quick_add.  An attempt to 
    get the computer to automatically Do The Right Thing.

    * backend/ebook/e-book.c: Fixed some broken indentation.  Yes, I'm
    anal.

    * gui/component/GNOME_Evolution_Addressbook.oafinfo: Added oaf_server
    info for EAddressWidget.

    * gui/component/GNOME_Evolution_Addressbook.oaf.in: Added oaf_server
    info for EAddressWidget.

    * gui/component/addressbook-factory.c (main): Add call to
    e_address_widget_factory_init.

    * gui/component/e-address-widget.h: 
    * gui/component/e-address-widget.c: Added.  A little widget (and a
    Bonobo control, BTW) for displaying addresses, with a left-click
    menu.  Used to display addresses in the mail viewer (as embedded
    GtkHTML objects, replacing the text previously used).  Still quite
    incomplete.

2001-03-08  Ettore Perazzoli  <ettore@ximian.com>

    * gui/component/addressbook-component.c (factory_fn): Specify a
    NULL `EvolutionShellComponentGetDndSelectionFn'.

2001-03-06  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_insert_length): Fix glitch with
    inserting comma-delimited stuff when length > 1.

2001-03-06  Jon Trowbridge  <trow@ximian.com>

    * backend/ebook/e-book.c (e_book_load_local_address_book): Added.
    Just encapsulates opening
    file://~username/evolution/local/Contactes/addressbook.db, so that
    path doesn't need to be hardwired in throughout the code.

2001-03-06  Benjamin Kahn  <xkahn@cybersites.com>

    * contact-editor/e-contact-quick-add.c (clicked_cb): 
    Added the third argument to e_contact_editor_new.  (Cheated
    and send NULL for the field argument, which is probably
    troublesome.  It will be fixed soon by either clahey or 
    toshok.)

2001-03-06  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-model.c
    (e_select_names_model_replace): Fix a reference counting bug.

    * gui/component/select-names/e-select-names-manager.c (popup_cb):
    A callback for creating the appropriate popup by calling
    e_select_names_popup.
    (e_select_names_manager_create_entry): Connect popup_cb to the
    entry's popup signal

    * gui/component/select-names/e-select-names-popup.c: Added.  Code
    for popup right-click menus for recipient entries.  Still a bit
    incomplete.

    * backend/ebook/e-destination.c (e_destination_get_email_num):
    Added.

    * contact-editor/e-contact-quick-add.c: Added.  Some code and a
    dialog for very quickly adding entries to the address book.
    Still not fully working.

2001-03-04  Christopher James Lahey  <clahey@ximian.com>

    * backend/ebook/e-card-simple.c: Cleaned up the formatting in this
    file a bit.

    * contact-editor/e-contact-editor.c (e_contact_editor_set_arg):
    Made it so that passing in NULL to the writable_fields arg sets
    the set of writable fields to the empty set.

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_activate_obj): Pass NULL as the
    writable_fields argument here.

    * gui/widgets/e-addressbook-model.c: Don't offset by one here.
    This way we will get the file_as field as one of our
    ETableColumns.

    * gui/widgets/e-addressbook-view.c (SPEC): Updated this for the
    changes in ECardSimple.

    * gui/widgets/e-minicard.c (remodel): Don't remodel if the item
    isn't realized.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c: doh, track renaming of
    objectclass from evolvePerson to evolutionPerson.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * backend/pas/evolutionperson.schema: rename evolveperson.schema
    to this, and add remaining attributes.

    * backend/pas/pas-backend-ldap.c: add remaining fields, and fix up
    ones that were incorrent (either the ldap_attr or the query prop).

2001-03-02  JP Rosevear  <jpr@ximian.com>

    * conduit/Makefile.am: update sed script

    * conduit/e-address.conduit.in: update for new pilot foo

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_activate_obj): track change to
    e_contact_editor_new.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (add_objectclass_mod): add
    objectclasses for "person", "organizationalPerson", and "top" as
    well, just to be complete.
    (check_schema_support): rename check_for_evolve_person to this, to
    reflect that we're doing more than just checking for that
    objectClass.
    (add_oc_attributes_to_supported_fields): new function.
    (add_to_supported_fields): new function.
    (pas_backend_ldap_destroy): unref supported_fields.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * gui/widgets/e-minicard-view.c (supported_fields_cb): new
    function.
    (e_minicard_view_event): split out the creation of the contact
    editor to the supported_fields callback.

    * gui/widgets/e-minicard.c (supported_fields_cb): new function.
    (e_minicard_event): split out the creation of the contact editor
    to the supported_fields callback.

    * gui/widgets/e-addressbook-view.c (table_double_click): split
    function into two functions, since e_book_get_supported_fields
    requires a callback now.
    (supported_fields_cb): new function.

    * gui/component/addressbook.c (new_contact_cb): split this into
    two functions, since e_book_get_supported_fields requires a
    callback now.
    (supported_fields_cb): new function.

    * contact-editor/test-editor.c (main): track change to
    e_contact_editor_new (pass NULL for the writable_fields arg.)

    * contact-editor/contact-editor.glade: fix several labels so they
    make better sense (since we look them up in e-contact-editor.c.)

    * contact-editor/e-contact-editor.h (struct _EContactEditor): add
    writable_fields.  also, add it to e_contact_editor_new.
    
    * contact-editor/e-contact-editor.c (e_contact_editor_class_init):
    add writable_fields arg.
    (e_contact_editor_destroy): unref the writable_fields list.
    (e_contact_editor_new): pass @fields as the writable_fields arg.
    (e_contact_editor_set_arg): add writable_fields support.
    (enable_writable_fields): new (very hairy) function, to disable
    everything and reenable just the fields listed in the
    writable_fields list.
    (_email_arrow_pressed): set label-email1, entry-email1, and
    checkbutton-htmlmail to be sensitive since the only way to get
    here is to activate a writable field in the menu.
    (_address_arrow_pressed): set label-address, button-fulladdr, and
    text-address to be sensitive for the same reason.
    (_phone_arrow_pressed): sensitize the label and entry for the same
    reason.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * backend/ebook/e-card-simple.c (field_data): add new entries for
    phone enums, and fill in the ecard_field with (bogus in all but a
    few cases) strings.  these are the strings sent from wombat to
    evolution-addressbook for supported_fields.
    (e_card_simple_get_ecard_field): new function.
    (e_card_simple_map_phone_to_field): new function.
    (e_card_simple_map_email_to_field): new function.
    (e_card_simple_map_address_to_field): new function.

    * backend/ebook/e-card-simple.h: add a few phone entries to the
    ECardSimpleField enum, and add prototypes for mapping the list
    types (phone, email, address) to ECardSimpleField.  Also, add
    prototype for e_card_simple_get_ecard_field.

    * backend/ebook/e-book.c
    (e_book_do_response_get_supported_fields): don't build the EList
    here, it's already built.

    * backend/ebook/e-book-listener.h: change fields from the CORBA
    sequence to the EList in our reponse struct.

    * backend/ebook/e-book-listener.c
    (e_book_listener_queue_get_supported_fields_response): we make the
    EList here, since after we return the CORBA list is freed up.

2001-03-02  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_supported_fields): implement
    properly, we support everything.

2001-03-01  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-bonobo.c
    (entry_set_property_fn): Oops, we do need to be able to write to
    "text" after all (for things like Reply-to: to work properly).
    Fixed.
    (impl_SelectNames_get_entry_for_section): Made "text" a writeable
    property again.

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_insert_length): Increment pos so that
    we don't reverse strings when length > 1 (a particularly amusing
    bug).

    * gui/component/select-names/e-select-names-completion.c
    (e_select_names_completion_destroy): Check for NULL before calling
    gtk_object_unref (GTK_OBJECT (---)), to get rid of annoying error
    messages.

2001-03-01  Jon Trowbridge  <trow@ximian.com>
    
    * gui/component/select-names/e-select-names-completion.c: I am an
    idiot.

2001-03-01  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-table-model.c
    (fill_in_info): Change for new EDestination/ESelectNamesModel API.

    * gui/component/select-names/e-select-names-manager.c
    (e_select_names_manager_get_source): Added.  A function for
    looking up the ESelectNamesModel by id.  (I didn't end up using
    this function, but it might come in handy later.)
    (e_select_names_manager_get_cards): #if 0/#endif out this
    function.
    (e_select_names_manager_create_entry): Modified to attach an
    ESelectNamesCompletion to the entry we create.
    (completion_handler): A post-completion handler for our EEntry, to
    take the completion's extra data (an EDestination) and properly
    stick it into our ESelectNamesModel.

    * gui/component/select-names/e-select-names.c
    (real_add_address_cb): Changed to operate on EDestinations rather
    than ECards and to use the new ESelectNamesModel API.  This leads
    to a rather nice code simplication.
    (remove_address): Changed for new ESelectNamesModel API.

    * gui/component/select-names/e-select-names-bonobo.c
    (entry_get_property_fn): Rather than just passing the entry's text
    through the property bag, get the "address text" from the model.
    This returns a nice, verbose string of addresses with names
    expanded when the address is tied to an ECard (i.e. "Jon
    Trowbridge <trow@ximian.com>").
    (impl_SelectNames_get_entry_for_section): Make the text property
    read-only.
    (entry_set_property_fn): ...and since it is read-only now, chop
    out the setter code.
    
    * gui/component/select-names/e-select-names-text-model.h: 
    * gui/component/select-names/e-select-names-text-model.c: Again,
    this code has been (pretty much) totally rewritten to convert all
    text operations into changes on the ESelectNamesModel.  This lets
    us give the associated EEntry some (IMHO) nice semantics regarding
    whitespace, etc.  Includes object activation, so destinations tied
    to ECards are underlined and can be double-clicked to bring up a
    contact editor.

    * gui/component/select-names/e-select-names-model.h: 
    * gui/component/select-names/e-select-names-model.c: I've heavily
    modified this object to both hide all implementation details
    (which the old version exposed a bit too much for my peculiar
    tastes) and to act as an EDestination container.  The old code put
    the text model operations here.  I've moved them all to
    ESelectNamesTextModel --- so the text model actions (insert,
    delete, etc.) are all done through the API rather than operating on
    ESelectNamesModel internals.

    * gui/component/select-names/e-select-names-completion.c: Added.  A
    fairly complicated object derived from ECompletion that searches
    our local addressbook in various and sundry ways.

    * gui/component/select-names/e-select-names-completion.h: 

    * backend/ebook/e-destination.h: 
    * backend/ebook/e-destination.c: Added.  This object encapsulates
    a place to sent an email to, which can either be just a address as
    a string ("trow@ximian.com"), a fancier string ("Jon Trowbridge
    <trow@ximian.com>"), or an ECard and a specific address within
    that ECard.

2001-03-01  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-minicard-view.c, gui/widgets/e-minicard-view.h,
    gui/widgets/e-minicard.c, gui/widgets/e-minicard.h: Used
    ESelectionModelSimple and the changes to EReflow and EReflowSorted
    to get multiple selection in the minicard view.

    * gui/widgets/test-reflow.c: Changed this to get it to compile
    with the changes to EReflow.

2001-02-21  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-file.c (pas_backend_file_search): Made
    this pay attention to the return value of e_sexp_parse.

    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_activate_obj): Fixed a const
    inconsistency here.

2001-02-21  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-book.c (pas_book_queue_get_supported_fields):
    new function.
    (impl_GNOME_Evolution_Addressbook_Book_getSupportedFields): track
    change to idl.
    (pas_book_respond_get_supported_fields): new function.

    * backend/pas/pas-book.h: add GetSupportedFields to the
    PASOperation enum.  Also, add a stringlist field to the PASRequest
    struct.  lastly, add a prototype for
    pas_book_respond_get_supported_fields.
    
    * backend/pas/pas-backend.h: remove prototype for
    pas_backend_get_supported_fields, and remove it from the vtable.

    * backend/pas/pas-backend.c (pas_backend_get_supported_fields):
    remove.
    (pas_backend_class_init): no vtable entry for get_supported_fields
    anymore.

    * backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_process_get_supported_fields): new function.
    (pas_backend_ldap_process_client_requests): add case for
    GetSupportedFields.
    (pas_backend_ldap_class_init): get_supported_fields isn't in
    vtable anymore.

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_get_supported_fields): new function.
    (pas_backend_file_process_client_requests): add case for
    GetSupportedFields.
    (pas_backend_file_class_init): get_supported_fields isn't in
    vtable anymore.

    * backend/idl/addressbook.idl: Book::getSupportedFields now
    returns void and add BookListener::notifySupportedFields.

    * backend/ebook/test-client.c (get_fields_cb): new function.
    (auth_user_cb): track change to e_book_get_supported_fields.

    * backend/ebook/e-book.c
    (e_book_do_response_get_supported_fields): new function.
    (e_book_check_listener_queue): add case
    GetSupportedFieldsResponse.
    (e_book_get_supported_fields): switch to async model.

    * backend/ebook/e-book.h: switch e_book_get_supported_fields to an
    async model.

    * backend/ebook/e-book-listener.c
    (e_book_listener_queue_get_supported_fields_response): new
    function.
    (impl_BookListener_response_get_supported_fields): new function.
    (e_book_listener_get_epv): fill in epv's "notifySupportedFields"

    * backend/ebook/e-book-listener.h: add an async response for
    GetSupportedFields and add a stringlist member to the
    EBookListenerResponse struct.

2001-02-20  Federico Mena Quintero  <federico@ximian.com>

    * backend/pas/pas-book-factory.c (pas_book_factory_activate):
    Moved the register_factory() code to here, since it was the only
    thing being called anyways.
    (PasBookFactoryPrivate): Added a "registered" flag.
    (pas_book_factory_activate): Set the registered flag.
    (pas_book_factory_destroy): Deactivate the factory when we go away.

2001-02-20  Chris Toshok  <toshok@ximian.com>

    * backend/ebook/e-book.c (e_book_get_supported_fields): new function.

    * backend/ebook/e-book.h: add e-book interface to getting
    supported fields.

    * backend/ebook/test-client.c (auth_user_cb): shoe-horn in some
    spew about supported fields.

2001-02-19  JP Rosevear  <jpr@ximian.com>

    * conduit/Makefile.am: Remove PISOCK_LIBDIR

2001-02-19  Jon Trowbridge  <trow@ximian.com>

    * gui/component/select-names/e-select-names-manager.c
    (e_select_names_manager_create_entry): When creating the entry,
    open up an ebook (corresponding to the local addressbook) and make
    the entry use an EAddressCompletion.
    (completion_handler): Added; this is the actual completion
    handler, which manipulates the entry when the user selects
    something from the drop-down.

    * gui/component/select-names/e-select-names-model.c: Various hacks
    by clahey to unbreak e_select_names_model_add_item,
    e_select_names_model_replace_item (which I added) and
    e_select_names_model_remove_item.
    
    * gui/component/select-names/e-select-names-text-model.c
    (e_select_names_text_model_obj_count,
    e_select_names_text_model_get_nth_obj): Make chunks of text that
    correspond to ECards in the ESelectNamesModel be embedded objects.
    (e_select_names_text_model_activate_obj): On activation, pop up a
    contact editor for the embedded object's card.
    (e_select_names_text_model_model_changed): Fixed to work with
    ETextModel API changes.
    (e_select_names_text_model_set_text): Make const correct.
    (e_select_names_text_model_insert): Make const correct.
    (e_select_names_text_model_insert_length): Make const correct.

    * backend/ebook/e-address-completion.h,
    backend/ebook/e-address-completion.c: Added.  EAddressCompletion
    is a derived class of ECompletion that does asynchronous address
    lookups for completions.

2001-02-17  Chris Toshok  <toshok@ximian.com>

    * backend/idl/addressbook.idl: add sequence<string> typedef, and
    add getSupportedFields method.

    * backend/pas/pas-book.c
    (impl_GNOME_Evolution_Addressbook_Book_getSupportedFields): new
    function.

    * backend/pas/pas-backend.c (pas_backend_class_init): init
    get_supported_fields = NULL.
    (pas_backend_get_supported_fields): new function.

    * backend/pas/pas-backend.h: add prototype for
    pas_backend_get_supported_fields.

    * backend/pas/pas-backend-file.c
    (pas_backend_file_get_supported_fields): new function.
    (pas_backend_file_class_init): fill in get_supported_fields.

    * backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_get_supported_fields): new function.
    (pas_backend_ldap_class_init): fill in get_supported_fields.

2001-02-14  Christopher James Lahey  <clahey@ximian.com>

    * backend/pas/pas-backend-ldap.c: Undefine E_STRING_PROP and
    E_LIST_PROP here.

    * contact-editor/e-contact-editor.c,
    contact-editor/e-contact-editor.h (e_contact_editor_raise): Added
    this function.

    * gui/widgets/e-minicard.c, gui/widgets/e-minicard.h
    (e_minicard_event): Added an editor field to the EMinicard object.
    Made it so that if you double click on the same card twice, it
    doesn't open a new window, but instead raises the old.

2001-02-08  Iain Holmes  <iain@ximian.com>

    * gui/component/addressbook-storage.c (addressbook_source_free):
    Free the ldap.binddn.

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_setup_menus): Free the dir strings.

2001-02-08  Christopher James Lahey  <clahey@ximian.com>

    * contact-editor/e-contact-editor.c (categories_clicked): Set the
    header on the category dialog we pop up.

2001-02-12  Kjartan Maraas  <kmaraas@gnome.org>

    * backend/ebook/GNOME_Evolution_Addressbook_GnomeCard_Importer.oaf.in: Translations.
    * gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.oaf.in:
    Marked strings for translation in this newly created file.
    * gui/component/select-names/Makefile.am: Hook up the .oaf.in files in the
    xml-i18n-tools framework.
    * gui/component/Makefile.am: Same as above.
    * gui/component/GNOME_Evolution_Addressbook.oaf.in: Marked stuff for translation here
    too.
    
2001-02-11  Jason Leach  <jasonleach@usa.net>

    * gui/component/addressbook.c: Removed an ancient #include
    <libgnorba/gnorba.h>

2001-02-11  Gediminas Paulauskas <menesis@delfi.lt>

    Really use xml-i18n-tools.
    
    * conduit/e-address-conduit-control-applet.desktop: removed.
    * conduit/e-address-conduit-control-applet.desktop.in: added empty.
    * conduit/Makefile.am: reflect above changes, merge translations.
    
    * contact-editor/e-contact-editor-strings.h,
    contact-editor/fulladdr.glade.h, contact-editor/fullname-strings.h,
    contact-editor/e-contact-editor-confirm-delete.glade.h,
    gui/component/select-names/select-names.glade.h:
    removed these files, xml-i18n-extract takes care of strings itself.
    
    * contact-editor/*.glade,
    gui/component/select-names/select-names.glade,
    gui/widgets/alphabet.glade, printing/e-contact-print.glade:
    changed project options to not output_translatable_strings.
    
    * contact-editor/Makefile.am, gui/widgets/Makefile.am,
    gui/component/select-names/Makefile.am, printing/Makefile.am:
    do not include removed files in EXTRA_DIST.

2001-02-07  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (check_for_evolve_person): flesh
    out this check.  #ifdef the entire thing OPENLDAP2, as it only
    works with the new schema stuff in openldap 2.x (both on server
    and client, so upgrade your server.)
    
2001-02-07  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/e-addressbook-view.c: Added N_("* Click here to add
    a contact *").

2001-02-07  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (pas_backend_ldap_connect): only
    set the DEBUG_LEVEL if we're OPENLDAP2.

2001-02-06  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (email_compare): return TRUE if
    equal, FALSE otherwise.
    (business_compare): same.
    (homephone_compare): same.
    (email_ber): return NULL if there are no elements in our list.
    (homephone_ber): same.
    (business_ber): same.
    (build_mods_from_ecards): add smarts to handle list elements
    properly (like email, business_phone, home_phone.)  now we'll
    properly send updates if any element in the list changes.

2001-02-06  Christopher James Lahey  <clahey@ximian.com>

    * gui/widgets/Makefile.am (INCLUDES): Added
    -DEVOLUTION_DATADIR=\""$(datadir)"\".

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_setup_menus): Changed the local and system
    directories.

2001-02-06  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (create_card_handler): doh,
    didn't mean to commit this.
    
2001-02-06  Chris Toshok  <toshok@ximian.com>

    * backend/pas/evolveperson.schema: new file.  this will eventually
    form the suggested additions to an existing openldap server that,
    along with support for inetorgperson, will allow people to store
    all evolution attributes in ldap.
    
2001-02-06  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (pas_backend_ldap_init): don't
    need the = NULL's since we g_new0.
    (check_for_evolve_person): new function.
    (pas_backend_ldap_connect): check to see if the evolvePerson
    objectclass is there.
    (build_mods_from_ecards): right now, just silently skip the extra
    attributes if we don't support evolvePerson.
    (add_objectclass_mod): new function, add both inetOrgPerson and
    (if it's available) evolvePerson as objectclasses.
    (pas_backend_ldap_process_authenticate_user): also check to see if
    evolvePerson is there, if we couldn't do it (due to auth reasons)
    in the connect method.
    (prop_info): change the telephoneNumber LDAP attribute to be used
    for evolution's business phone numbers.  the primary phone number
    will be a single valued attribute on evolvePerson.
    (business_populate): new function.
    (business_ber): new function.
    (business_compare): new function.

2001-02-05  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (create_card_handler): err,
    allocate 2 char*s when i assign 2 char*s.

2001-02-05  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (modify_card_handler): switch to
    ldap_modify_ext_s if OPENLDAP2, as ldap_modify_s is deprecated.
    (build_mods_from_ecards): don't include the mod if the value is ""
    - this isn't valid on schema checking ldap servers.
    (homephone_populate): new function.
    (homephone_ber): new function.
    (homephone_compare): new function.
    (create_card_handler): add spew when adding cards so I can see
    what's going on.
2001-02-05  Christopher James Lahey  <clahey@helixcode.com>

    * gui/component/addressbook-config.c (table_add_elem): Save the
    help_text in the closure.

2001-02-05  Christopher James Lahey  <clahey@helixcode.com>

    * gui/widgets/Makefile.am (libeminicard_a_SOURCES): Added
    gal-view-factory-minicard.c, gal-view-factory-minicard.h,
    gal-view-minicard.c, and gal-view-minicard.h.

    * gui/widgets/gal-view-factory-minicard.c,
    gui/widgets/gal-view-factory-minicard.h,
    gui/widgets/gal-view-minicard.c, and
    gui/widgets/gal-view-minicard.h: New classes for minicard view
    type.

    * gui/widgets/e-addressbook-view.c: Deploy gal-view stuff
    properly.
    
2001-02-05  Christopher James Lahey  <clahey@helixcode.com>

    * backend/ebook/e-card.c (e_card_get_vcard): Make the Note field
    be quoted printable.

2001-01-27  Christopher James Lahey  <clahey@helixcode.com>

    * gui/search/e-addressbook-search-dialog.c
    (e_addressbook_search_dialog_init): This should be a close button,
    not a cancel button.

2001-02-04  Christopher James Lahey  <clahey@ximian.com>

    * gui/component/select-names/e-select-names-manager.c
    (e_select_names_manager_activate_dialog): Call
    e_select_names_set_default when appropriate.

    * gui/component/select-names/e-select-names.c,
    gui/component/select-names/e-select-names.h: Added support for
    double clicking sending the selected contacts to the default
    section.  Added a set_default function.  Made multiple selection
    work.

2001-01-29  Chris Toshok  <toshok@ximian.com>

    * gui/component/addressbook-config.c
    (addressbook_config_source_label): #ifdef INCLUDE_FILE_SOURCE.
    (table_add_elem): add help_text parameter and set up focus_in
    events to display the help in the dialog's html area.
    (focus_help): new function, calls put_html on the help text.
    (addressbook_ldap_auth_item_new): add help texts.
    (addressbook_source_item_new): add help texts.
    (addressbook_source_dialog): add help texts.

2001-01-27  Ettore Perazzoli  <ettore@ximian.com>

    * gui/component/select-names/e-select-names.c
    (e_select_names_add_section): Remove the butt-ugly arrow icon and
    replace it with a less invasive "->" icon.

2001-01-25  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (build_mods_from_ecards): add
    comment about the else block here.
    (prop_info): add home_address, business_address, business_fax,
    assistant, and isdn.

2001-01-25  Christopher James Lahey  <clahey@helixcode.com>

    * backend/pas/pas-backend-file.c (pas_backend_file_load_uri): Made
    this only add the initial VCard if it finds a file
    "create-initial" in the directory it's creating the database in.

    * gui/component/addressbook-component.c (factory_fn): Added a
    create_folder function.

    * gui/search/e-addressbook-search-dialog.c
    (e_addressbook_search_dialog_init): Fixed an unused variable
    warning.

2001-01-25  Christopher James Lahey  <clahey@helixcode.com>

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_setup_menus): Setup the view collection
    properly and handle the "display_view" signal.

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>
    
    * gui/component/addressbook.c (update_pixmaps): Consider the
    placeholder in the path for the "Print" item.

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * gui/component/addressbook.c (update_pixmaps): Set the icon for
    "/Toolbar/Find" to "24_find_contact.xpm".

2001-01-25  Ettore Perazzoli  <ettore@ximian.com>

    * gui/component/addressbook.c (set_pixmap): New.
    (update_pixmaps): New function, setting the pixmaps for the items
    of type "pixbuf", using `set_pixmap'.
    (control_activate): Call it.

2001-01-25  Not Zed  <NotZed@Ximian.com>

    * backend/pas/pas-backend-ldap.c: esexp api change fixes.

    * backend/pas/pas-backend-file.c (entry_compare): Fix for e_sexp api changes.
    (vcard_matches_search): esexp api fixes.
    (pas_backend_file_search): Ouch, unref the e-sexp properly (not gtk object).

2001-01-24  Chris Toshok  <toshok@ximian.com>

    * backend/pas/pas-backend-ldap.c (email_ber_func): make sure to
    add the lengths here (include the \0?  anyone?).
    (build_mods_from_ecards): if we're filling in mod->mod_bvalues,
    set mod_op |= LDAP_MOD_BVALUES.

2001-01-23  Jason Leach  <jasonleach@usa.net>
    
    (Fix #1225: advanced search cancel/close)
    
    * gui/search/e-addressbook-search-dialog.c
    (e_addressbook_search_dialog_init): Set it up with Search and a
    Cancel button, Search is still the default.

2001-01-23  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (local_record_from_ecard): properly ref
    the ecard. still need to kill some memory leaks.

2001-01-22  JP Rosevear  <jpr@ximian.com>

    * conduit/Makefile.am: remove vfs dependency

2001-01-21  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (delete_record):  Remove
    deleted records from the pilot map so we don't have dupes in the future
    
2001-01-19  Dan Winship  <danw@ximian.com>

    * gui/widgets/e-addressbook-view.c (table_right_click): 
    * gui/widgets/e-minicard.c (e_minicard_event): Update for
    e_popup_menu_run prototype change.

2001-01-19  Jason Leach  <jasonleach@usa.net>

    (Adding a boolean "entry_changed" BonoboPropertyBag arg)
    
    * gui/component/select-names/e-select-names-bonobo.c
    (entry_set_property_fn): Use a gtk_object_set_data to set the
    property to TRUE here.

    (entry_changed): New function, calls bonobo_control_set_property
    if entry_changed hasn't been set to TRUE yet.
    
    (impl_SelectNames_get_entry_for_section): Connect "changed" on
    each entry_widget to the new entry_changed() func.

2001-01-19  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (ecard_from_remote_record): always free 
    the delivery elements and correct embarrassingly stupid memory error 
    that was causing the addressbook conduit problems.

    * backend/ebook/e-book-view-listener.c 
    (e_book_view_listener_check_queue): ref/unref ourself when processing 
    in case someone we signal unrefs us.

    * conduit/address-conduit.c (sequence_complete): disconnect signals
    when complete

2001-01-17  Federico Mena Quintero  <federico@ximian.com>

    * backend/pas/pas-book-factory.c (pas_book_factory_activate): Made
    it return a gboolean; it was completely ignoring the return value
    from register_factory().

2001-01-17  Larry Ewing  <lewing@helixcode.com>

    * backend/ebook/.cvsignore: add evolution-gnomecard-importer.

    * backend/ebook/Makefile.am (oaf_DATA): don't require the pine
    oainfo file until it is actually added to the repository.  We need
    to keep the build working for nightlies to work.

2001-01-16  Jason Leach  <jasonleach@usa.net>

    * backend/pas/pas-backend-file.c (INITIAL_VCARD): s/Helix
    Code/Ximian/ for the initial contact card.

2001-01-15  JP Rosevear  <jpr@ximian.com>

    * conduit/address-conduit.c (print_local): prevent segfaults and 
    buffer overflows
    (print_remote): ditto

2001-01-14  JP Rosevear  <jpr@ximian.com>

    * conduit/Makefile.am: pass -module and -avoid-version to conduit
    linker

2001-01-12  Ettore Perazzoli  <ettore@helixcode.com>

    * gui/component/addressbook-component.c (factory_fn): Pass NULL as
    the @copy_folder_fn arg to `evolution_shell_component_new'.

2001-01-12  Miguel de Icaza  <miguel@ximian.com>

    * gui/widgets/e-addressbook-view.c: added i18n for etable.

2001-01-11  Chris Toshok  <toshok@helixcode.com>

    * backend/pas/pas-backend-ldap.c
    (pas_backend_ldap_process_create_card): get a book view from
    somewhere so we can give status messages - choose the first one in
    the list.
    (pas_backend_ldap_process_modify_card): same.
    (pas_backend_ldap_process_remove_card): same.
    (prop_info): add more properties, like home_phone, mobile, pager,
    uri, org_unit, office, title, and manager.

2001-01-09  Miguel de Icaza  <miguel@gnu.org>

    * gui/widgets/Makefile.am (minicard_widget_test_LDADD): Put GNOME
    libraries at the end to make the thing compile.

    * printing/Makefile.am: Order LDADD flags correctly so it compiles.

2001-01-09  Chris Toshok  <toshok@helixcode.com>

    * gui/component/addressbook.c (addressbook_factory_new_control):
    connect with the EAddressbookView's status_message signal.
    (set_status_message): set the status message on the ShellView
    Interface associated with our control.
    (retrieve_shell_view_interface_from_control): new function.  get
    the shell view inteface associated with a control.

    * gui/widgets/e-addressbook-view.c
    (e_addressbook_view_class_init): register status_message signal.
    (status_message): new function, emit our status_message signal.
    (change_view_type): connect with the view->object's
    "status_message" signal.

    * gui/widgets/e-addressbook-view.h (struct
    _EAddressbookViewClass): add status_message signal.

2001-01-09  Chris Toshok  <toshok@helixcode.com>

    * gui/widgets/e-minicard-view-widget.c
    (e_minicard_view_widget_class_init): register our status_message
    signal.
    (status_message): new function, emit our status_message signal.
    (e_minicard_view_widget_realize): connect to the EMinicardView's
    status_message signal.

    * gui/widgets/e-minicard-view-widget.h: add status_message signal.

    * gui/widgets/e-minicard-view.c (e_minicard_view_class_init):
    register our status_message signal.
    (e_minicard_view_init): init status_message_id.
    (status_message): new function, emit our status_message signal.
    (book_view_loaded): connect to the EBookView's status_message
    signal.
    (disconnect_signals): disconnect status_message_id.

    * gui/widgets/e-minicard-view.h: add status_mesage_id, and
    status_message signal.

    * gui/widgets/e-addressbook-model.c (status_message): new
    function, emit our status_message.
    (e_addressbook_model_class_init): register our "status_message"
    signal.
    (book_view_loaded): connect to the EBookView's status_message
    signal, so we can chain it to our parent.
    (e_addressbook_model_init): init status_message_id.
    (remove_book_view): disconnect status_message_id.

    * gui/widgets/e-addressbook-model.h: add status_message_id, and
    status_message signal.

    * backend/pas/pas-backend-ldap.c change the objectclass we create
    objects with to "inetOrgPerson" as it encompasses the fields we
    use.
    (create_dn_from_ecard): remove the mail/org handling from
    here.  we just prepend cn=$cn onto the base dn.
    (create_card_handler): remove the NULL that build_mods_from_ecards
    adds at the end, and insert our objectClass.
    (modify_card_handler): call search_for_dn to get the ECardSimple
    of the old card, since it might (and does in the current code)
    doing a brute force search.
    (search_for_dn): new function, to search for an entry by its dn.
    right now we brute force (objectclass=*) under the base dn and
    compare dn's.  going to add a first pass that explodes the dn and
    searches that way, using (objectclass=*) as a last resort.  also,
    here's where we'd put the extensibleMatch code if we want to go
    that route.

    * backend/ebook/e-card.c (e_card_set_arg): if we're setting the
    full name regenerate ecard->name.

2001-01-04  Chris Toshok  <toshok@helixcode.com>

    * backend/ebook/e-book-listener.c
    (e_book_listener_queue_authentication_response): new function.
    (impl_BookListener_respond_authentication_result): new function.
    (e_book_listener_get_epv): fill in
    epv->notifyAuthenticationResult.

    * backend/ebook/e-book-listener.h: add AuthenticationResponse to
    EBookListenerOperation.

    * backend/ebook/e-book.c (e_book_authenticate_user): new function.

    * backend/ebook/e-book.h: add prototype for
    e_book_authenticate_user.

    * backend/idl/addressbook.idl (GNOME:Evolution:Addressbook:Book):
    add authenticateUser method.
    (GNOME:Evolution:Addressbook:BookListener): add
    AuthenticationFailed and AuthenticationRequired to CallStatus.
    also add notifyAuthenticationResult method.

    * backend/pas/pas-backend-file.c
    (pas_backend_file_process_authenticate_user): dummy
    authenticate_user function that always succeeds.
    (pas_backend_file_process_client_requests): respond to the
    AuthenticateUser request.

    * backend/pas/pas-backend-ldap.c (pas_backend_ldap_build_query):
    gtk_object_unref(sexp) => s_exp_unref(sexp).
    (pas_backend_ldap_process_authenticate_user): fill in to use
    ldap_simple_bind_s.
    (pas_backend_ldap_process_client_requests): respond to the
    AuthenticateUser request.

    * backend/pas/pas-book.c (pas_book_queue_authenticate_user): new
    function.
    (impl_GNOME_Evolution_Addressbook_Book_authenticateUser): new
    function.
    (pas_book_respond_authenticate_user): new function.
    (pas_book_get_epv): fill in epv->authenticateUser.

    * backend/pas/pas-book.h: add AuthenticateUser operation type, and
    add user/passwd to the PASRequest struct.

    * gui/component/addressbook-storage.c
    (addressbook_storage_get_source_by_uri): new function.  should use
    a hashtable, perhaps, but the lists will generally be small
    anyway.

    * gui/component/addressbook-storage.h: add prototype for
    addressbook_storage_get_source_by_uri.

    * gui/component/addressbook-config.c
    (addressbook_source_dialog_set_source): fill in the binddn if the
    auth page is shown.

    * gui/component/addressbook.c (book_open_cb): shoe-horn
    authentication in here.  if the source was configured to use
    authentication, authenticate the user after opening the ebook.
    also, be paranoid and clear out the password after authenticating.
    (book_auth_cb): callback for auth.  set the "book" arg on the
    view->view here.
    (passwd_cb): set the view's passwd that'll be used in
    book_open_cb.
    (addressbook_view_free): g_free view->passwd.

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

    * gui/component/addressbook-component.c,
    gui/component/addressbook-component.h
    (addressbook_component_get_shell_client): Added this function.

    * gui/component/select-names/e-select-names.c,
    gui/component/select-names/e-select-names.h: Added code for the
    ability to switch between different folders.  This doesn't work
    yet.

    * gui/component/select-names/select-names.glade,
    gui/component/select-names/select-names.glade.h: Added an option
    menu to this dialog.

2001-01-04  JP Rosevear  <jpr@helixcode.com>

    * conduit/Makefile.am: Fix hard coded library names that were 
    accidentally committed (i'm looking at you miggie)

    * contact-editor/e-contact-editor.c (categories_clicked): Reflect
    renaming.

    * contact-editor/e-contact-editor-categories.[hc]: These are
    living in gal now
    
2001-01-04  JP Rosevear  <jpr@helixcode.com>

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_free): 
    Need to e_sexp_unref the the sexp, not gtk_object_unref it.

2001-01-03  Michael Meeks  <michael@helixcode.com>

    * gui/widgets/e-addressbook-model.c (get_view): check
    capabilities is valid before doing a strstr.

2001-01-03  Michael Meeks  <michael@helixcode.com>

    * backend/pas/pas-backend-file.c (pas_backend_file_search):
    g_strdup things we g_free.

2001-01-02  Christopher James Lahey  <clahey@helixcode.com>

    * contact-editor/e-contact-editor.c (delete_cb): Make sure this
    won't crash if the given contact is removed from the database
    while this function is being called.

    * gui/widgets/e-minicard.c: Made sure this won't crash if the
    given contact is removed from the database while the right click
    menu is being displayed.

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

    * gui/component/addressbook-config.c (edit_source_clicked): copy
    the dialog's source, destroy the dialog after we're done, and make
    sure to update both columns in the clist.
    (add_source_clicked): copy the dialog's source, and destroy the
    dialog when we're done.
    (addressbook_source_dialog_destroy): free up all the dialog's
    memory.

    * gui/component/addressbook.c (set_prop): allow file: uri's that
    point to files, not just dirs that contain addressbook.db.  The
    rule is the addressbook file has to end in .db.

    * gui/component/addressbook-storage.c (file_source_foreach):
    contactserver => contactfile.  cut and paste error.
    (addressbook_storage_init_source_uri): use file://%s to build the
    uri.

    * gui/component/e-ldap-server-dialog.[ch]: forgot to remove these
    in my last commit.

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

    * gui/component/addressbook.c (config_cb): new function, calling
    our new config ui code.
    (control_activate): no longer load evolution-addressbook-ldap.xml,
    as it's not there.

    * gui/component/addressbook-component.c (owner_set_cb):
    setup_ldap_storage => addressbook_storage_setup.

    * gui/component/Makefile.am (evolution_addressbook_SOURCES):
    remove e-ldap-storage.[ch] and add addressbook-storage.[ch].
    (glade_DATA): remove ldap-server-dialog.glade and add
    addressbook-config.glade.
    (EXTRA_DIST): same.

    * gui/component/addressbook-config.[ch]: add another dialog to
    give a list of our sources and offer the Add/Delete/Edit
    interface.  This plugs into the previous dialog work (the source
    editor.)

    * gui/component/addressbook-storage.[ch]: new files, containing
    the remains of e-ldap-storage.[ch] and adding the new
    AddressbookSource type and it's subordinates.  Also, the xml
    format has changed slightly and the file name is no longer
    ~/evolution/ldap-servers.xml - it's
    ~/evolution/addressbook-sources.xml.

    * gui/component/addressbook-config.glade: new file, new config
    interface.

    * gui/component/ldap-server-dialog.glade: removed.

    * gui/component/e-ldap-storage.[ch]: removed.

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

    * gui/component/Makefile.am (evolution_addressbook_SOURCES): add
    addressbook-config.[ch].

    * gui/component/addressbook-config.c,
    gui/component/addressbook-config.h: new files, containing at the
    moment a beautiful "new/edit source dialog" inspired by the
    mail-config-gui code.  It'll be ready for prime time after rev'ing
    the .xml file the addressbook uses to store it's "other sources"
    to include files, and the addition of the ldap auth stuff.

2000-12-25  Miguel de Icaza  <miguel@helixcode.com>

    * gui/widgets/e-minicard.c (e_minicard_realize): Set draw
    background to FALSE.
    
    * gui/widgets/e-minicard-label.c (e_minicard_label_construct): ditto.
    (e_minicard_label_construct): ditto

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

    * contact-editor/fullname-strings.h,
    contact-editor/fullname.glade: Added Ms. and Miss to the prefix
    drop down box.  Patch submitted by Martin Hicks <mort@bork.org>.

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

    * conduit/address-conduit.c (cursor_cb): Ref the cards that get put
    in the change list
    (next_changed_item): util function to get the real next changed item
    (compute_status): really compute the status of the record
    (local_record_from_uid): Set the id of the temporary card
    (check_for_slow_setting): Make this check a little saner
    (card_added): Only record the CardObjectChange if the card is not
    archived
    (card_changed): ditto
    (card_removed): ditto
    (set_status_cleared): actually clear the status
    (for_each_modified): Clean out cruft and use next_changed_item
    (add_record): Set the new id properly in our local card copy
    (replace_record): handle the case where the record has been deleted
    and we need to call add.  need to update the changed_hash entry
    (delete_record): Don't panic if the card is not found, its already
    been deleted.

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_copy): 
    The change_context no longer has a del_cards member
    (pas_backend_file_book_view_free): ditto
    (pas_backend_file_process_get_changes): ditto
    (pas_backend_file_changes_foreach_key): just record the id
    (pas_backend_file_changes): notify_remove needs an id not a vcard

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

    * conduit/address-conduit.c (match): Use my own wrapper
    functions instead of trying to *directly* access the the data 
    structures my self
    (post_sync): Put in hack to prevent syncing the same records twice
    (local_record_from_uid): set the card id when creating a blank one
    (add_record): Set the id of the card we have and don't go to the
    server to get the latest version

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

    * conduit/address-conduit.c (ecard_from_remote_record): Convert
    pilot strings to utf for the e-cards.
    
2000-12-19  JP Rosevear  <jpr@helixcode.com>

    * conduit/address-conduit.c (local_record_from_ecard): Convert ecard
    strings to pilot encodings

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

    * gui/widgets/e-addressbook-view.c (delete): Made it so that if
    you select multiple contacts, the right click menu to delete
    deletes them all.

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

    * backend/pas/pas-backend-ldap.c (ldap_error_to_response): always
    use LDAP_NAME_ERROR (in the openldap1 case it's #defined to
    NAME_ERROR).
    (build_card_from_entry): ldap_get_values can return NULL.  also,
    openldap2 keeps us from getting at ldap->ld_errno, so we can't
    tell if there was a decoding error like we used to.  the double
    free problem where ldap would free the ber if there was a decoding
    problem might be fixed now..  further investigation is needed.
    for now we leak in openldap2.
    (ldap_search_handler): the ldap structure is opaque, so use
    ldap_search_ext to give the extra information (the max responses,
    timeout, etc.) in the openldap2 case.

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

    * backend/pas/pas-backend-ldap.c (ldap_error_to_response): Test
    for the existance of LDAP_NAME_ERROR and if it exists as a macro,
    use it instead of NAME_ERROR.

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

    * gui/component/GNOME_Evolution_Addressbook.oafinfo: update cut
    and paste description error.

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

    * gui/widgets/e-minicard-control.c (stream_read): NULL-terminate
    the returned vcard so we don't sometimes end up with trailing
    junk that makes libversit unhappy.

2000-12-13  Iain Holmes  <iain@helixcode.com>

    * gui/component/select-names/e-select-names.c 
    (e_select_names_add_section): Make the -> into a GNOME stock image.

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

    * gui/component/select-names/e-select-names.c
    (e_select_names_init): Connect to the "cursor_change" signal on
    the ETable here instead of the ETableScrolled.
    (remove_address): Added the col and event parameters to this
    callback to match the added parameters to the double click signal.
    (e_select_names_add_section): Connect to the "double_click" signal
    on the ETable here instead of the ETableScrolled.

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

    * backend/ebook/e-card.c (e_card_set_arg): When setting the "name"
    argument, copy the incoming name.  This fixes a crash.

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

    * contact-editor/e-contact-editor.c: Made editing the name using
    the full name button set the file as entry properly.  Made it
    so that the address parse that the user chooses after
    clicking on the Full Address... button gets saved.

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

    * contact-editor/e-contact-editor.c (full_name_clicked): Made it
    so that the editor->name is set after the entry is changed.  This
    means that the reparse that the person chose is saved.

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

    * gui/component/e-ldap-storage.c (setup_ldap_storage): Pass NULL
    as the @toplevel_node_handler_id argument to
    `evolution_storage_new'.

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

    * backend/ebook/e-card.c: Fixed some formatting.

    * contact-editor/e-contact-editor-categories.h: Removed an
    unneeded #include.

    * gui/widgets/e-addressbook-view.c: Connect to the signals on the
    ETable instead of the ETableScrolled.

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

    * conduit/address-conduit.c (local_record_from_uid): Pass "" rather
    than NULL to e_card_new.
    (local_record_from_ecard): Make sure ecard->name is valid
    (check_for_slow_setting): Remove hard coded test value
    (card_added): g_strdup the resul of e_card_get_id
    (card_changed): ditto

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

    * gui/widgets/e-addressbook-view.c: Got rid of code referencing
    the ETableScrolled proxy functions.

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

    * gui/component/addressbook.c: Moved the gal view menu stuff from
    here to EAddressbookView.

    * gui/widgets/e-addressbook-view.c,
    gui/widgets/e-addressbook-view.h: New function to set up the menus
    for the EAddressbookView.

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

    * conduit/Makefile.am: Another conduit build fix

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

    * backend/pas/pas-backend-file.c (pas_backend_file_changes_foreach_key): 
    Create an empty vcard with the appropriate id for deleted cards

    * conduit/address-conduit.c (ecard_from_remote_record): Ensure the
    address fields are added sensibly

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

    * gui/component/e-ldap-storage.c (setup_ldap_storage): Updated the
    call to `evolution_storage_new()': pass NULL for
    @toplevel_node_uri.

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

    * conduit/address-conduit.c (local_record_to_pilot_record): Return
    a struct rather than a pointer to a struct
    (view_cb): kill warning
    (compare): local_record_to_pilot_record now returns a struct
    (prepare): ditto
    (free_prepare): remove as per gnome-pilot changes
    (conduit_get_gpilot_conduit): don't listen for free_prepare signal

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

    * conduit/address-conduit.h: Remove "complete" field

    * conduit/address-conduit.c (print_local): Make it print useful debug
    info
    (print_remote): ditto
    (local_record_from_ecard): Make sure phone numbers get out to the pilot
    (ecard_from_remote_record): Set phone strings to "" if they are null
    (sequence_complete): unref the book view
    (view_cb): ref the book view
    (free_prepare): do nothing

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_free): 
    Destroy the card lists with the rest of the view.
    (pas_backend_file_changes): Don't destroy the card lists here
    (pas_backend_file_book_view_free): Free the card/id lists in the
    change context here, the correct place.
    (pas_backend_file_changes): instead of here...

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

    * backend/pas/pas-backend-file.c: Set view.change_context to NULL
    in pas_backend_file_process_get_book_view.  Changed
    pas_backend_file_book_view_copy a bit.

    * backend/pas/pas-backend-ldap.c: Got rid of a warning.

2000-11-18  Matt Bissiri  <matt@bissiri.org>

    * gui/component/Makefile.am:
    Add widgets/menus/libmenus.la to evolution_addressbook_LDADD
    so that it will link properly now that gal-view-menus.[ch]
    was moved from gal into evolution.

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

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_copy): 
    Initialize destination struct with '0's.

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

    * backend/ebook/e-card.c: Changed the mime type from "text/vcard"
    to "text/x-vcard".

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

    * backend/ebook/.cvsignore: Add idl-generated files.
    * backend/ebook/e-book.c: (e_book_do_response_get_changes):
    * backend/ebook/e-card.c: (e_card_send):
    s/Evolution_/GNOME_Evolution_/g;

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

    * backend/ebook/Makefile.am: Link in composer bonobo code.

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Added code to
    send mail to an ECard or send an ECard as a VCard attachment.

    * contact-editor/e-contact-editor.c: Add verbs to send the contact
    as a VCard or send mail to the contact.

    * gui/search/e-addressbook-search-dialog.c: Removed some unused
    variables.

    * gui/widgets/e-addressbook-view.c, gui/widgets/e-minicard.c:
    Added menu items to send the contact as a VCard or send mail to
    the contact.

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

    * gui/component/addressbook.oafinfo:
    * gui/component/select-names/evolution-addressbook-select-names.oafinfo:
    Update the remaining "IDL:Evolution*" to "IDL:GNOME/Evolution*"
    to sync up with yesterday's IDL re-scoping.

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

    * backend/pas/pas-backend-ldap.c: Fixed a warning.

    * gui/component/addressbook.c: Put in gal view menus for testing
    purposes.

    * printing/e-contact-print-envelope.c: Fixed up envelope printing
    a bit.  Added code for printing return addresses.

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

    * conduit/address-conduit.h: Add changed_hash, change list and complete bool

    * conduit/address-conduit.c (local_record_from_ecard): Add empty field checks
    (card_added): callback for book view
    (card_changed): ditto
    (card_removed): ditto
    (sequence_complete): ditto
    (view_cb): callback for the get changes call
    (pre_sync): force synchronous loading of book view
    (for_each): we already have the card so create the local record directly
    (for_each_modified): Uncomment and fix
    (delete_record): ditto

    * conduit/Makefile.am: link against gal for ebook - needs fixing

    * backend/ebook/e-book.c (e_book_do_response_get_changes): Properly respond
    to a get_changes call
    (e_book_check_listener_queue): define the get changes response operation

    * backend/ebook/e-book-listener.c (e_book_listener_queue_get_changes_response):
    Queue up a get changes response
    (impl_BookListener_respond_get_changes): Implement the get_changes method
    (e_book_listener_get_epv): add get_changes implementation to epv

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_copy): Only
    copy the search_context and change_context elements if they actually exist
    (pas_backend_file_changes): Hard code a path for now, only notify if
    there is something to notify about

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

    * backend/pas/pas-book.h: Update PASRequest structure

    * backend/pas/pas-book.c (impl_Evolution_Book_get_changes): update param name
    (pas_book_queue_get_changes): Use PASRequest change_id slot

    * backend/pas/pas-backend-file.c (pas_backend_file_book_view_copy): 
    Properly copy change_id and change_context
    (pas_backend_file_book_view_free): Free change_id/change_context
    (pas_backend_file_changes_foreach_key): Callback to figure out the
    deleted cards
    (pas_backend_file_changes): Use new e-dbhash stuff to implement.
    Write out updated hash

    * backend/idl/addressbook.idl: Rename get_changes param

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

    * gui/component/addressbook.c: Switched from EAddressbookSearch to
    ESearchBar.

    * gui/widgets/Makefile.am, gui/widgets/e-addressbook-search.c,
    gui/widgets/e-addressbook-search.h: Removed EAddressbookSearch.
    This has been moved to filter/ and renamed ESearchBar.

    * printing/e-contact-print-envelope.c: Forgot to set the font.
    This works for me now.

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

    * gui/component/select-names/e-select-names-bonobo.c
    (impl_SelectNames_get_entry_for_section): Duplicate the object
    reference before returning.

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

    * contact-editor/e-contact-editor.c,
    gui/widgets/e-addressbook-view.c, gui/widgets/e-minicard.c: Add
    menus items to the envelope printing stuff.

    * gui/component/addressbook.c: Hook up the search menu.

    * gui/widgets/e-addressbook-search.c,
    gui/widgets/e-addressbook-search.h: Add the search menu.

    * printing/Makefile.am: Add e-contact-print-envelope.c and
    e-contact-print-envelope.h.

    * printing/e-contact-print-envelope.c,
    printing/e-contact-print-envelope.h: Added envelope printing.

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

    * gui/component/select-names/Makefile.am: Clean the idl-generated
    files properly.

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

    * ename/.cvsignore, gui/minicard/.cvsignore: Removed these
    unnecessary .cvsignores.

    * gui/component/addressbook.c: Switch to using EAddressbookSearch
    instead of custom quick search widget.

    * gui/component/select-names/e-select-names.c: Made this do a
    slightly better job of rendering names.

    * gui/widgets/Makefile.am: Added e-addressbook-search.c and
    e-addressbook-search.h.

    * gui/widgets/e-addressbook-search.c,
    gui/widgets/e-addressbook-search.h: New class that puts up an
    entry and a combo box.

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

    * gui/component/e-ldap-storage.c (load_ldap_data): 
    (e_ldap_storage_add_server): Add "highlighted" flag to
    evolution_storage_new_folder

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

    * conduit/address-conduit.c (cursor_cb): Let the warning make sense
    (compute_pid): remove
    (local_record_from_ecard): Create local record from ecard - not finished
    (local_record_from_uid): Obtain local_record from uid with the proper
    e-book way
    (set_status_cleared): Add empty callback
    (add_archive_record): kill
    (delete_archive_record): kill
    (archive_record): Add empty callback
    (conduit_get_gpilot_conduit): Update signal connects

    * backend/pas/pas-backend-file.c (vcard_change_type): Function to determine
    the type of change - not finished
    (pas_backend_file_search_changes): Create a view and callback based on 
    how the cards have changed
    (pas_backend_file_process_get_changes): Implement the get changes operation
    for files
    (pas_backend_file_process_client_requests): Add GetChanges method for
    processing

    * backend/pas/pas-book.c (pas_book_queue_get_changes): Add changes to
    the list
    (impl_Evolution_Book_get_changes): implement object method
    (pas_book_get_epv): Add get changes to epv
    (pas_book_respond_get_changes): Respond to the get changes operation

    * backend/pas/pas-book.h: Add GetChanges PASOperation

    * backend/idl/addressbook.idl: add get_changes and respond_get_changes
    methods

    * backend/ebook/e-book.c (e_book_get_changes): Client function
    to a view of the changed objects

    * backend/ebook/e-book.h: New prototype

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

    * backend/e-book/e-card.c: Fixed marking of strings
    for translation. Use "_(" instead of "_ (".
    * gui/component/addressbook-factory.c: Add missing
    calls to bindtextdomain() and textdomain noticed by
    Dan Winship.
    * gui/component/addressbook.c: Marked string for translation.
    
2000-10-27  Christopher James Lahey  <clahey@helixcode.com>

    * backend/pas/Makefile.am, gui/search/Makefile.am,
    printing/Makefile.am: Fixed these to include EXTRA_GNOME_CFLAGS.

    * gui/component/select-names/e-select-names-manager.c: Turned off
    newlines in header fields.

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

    * printing/e-contact-print.c (e_contact_print_letter_tab),
    (complete_sequence, e_contact_do_print_phone_list, lowify):
    unsigned charness.

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

    * backend/pas/pas-backend-ldap.c (ldap_op_process_current): only
    call the handler if the if we're connected, and if we fail to
    connect finish the op and post a message.
    (pas_backend_ldap_connect): add debug spew if DEBUG is defined.
    (modify_card_handler): LDAP_RES_SEARCH_ENTRY => LDAP_SUCCESS.
    (modify_card_handler): only perform the ldap_modify_s if we have a
    list of modifications.
    (get_cursor_handler): use ldap_error_to_response here.
    (pas_backend_ldap_load_uri): use LDAP_PORT instead of the constant
    389.

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

    * gui/component/select-names/Makefile.am (INCLUDES): 
    * gui/component/Makefile.am (INCLUDES): Update EVOLUTION_LOCALEDIR

    * backend/pas/Makefile.am (INCLUDES): 
    * backend/ebook/Makefile.am (INCLUDES): Update GNOMELOCALEDIR.

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

    * conduit/address-conduit.h: Use new libeconduit calls and
    abstraction

    * conduit/address-conduit.c: ditto
    
2000-10-23  JP Rosevear  <jpr@helixcode.com>

    * conduit/address-conduit.c (pre_sync): Use e_pilot_map_read
    (post_sync): Use e_pilot_map_write

    * conduit/Makefile.am: Link libeconduit and not libical

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

    * contact-editor/e-contact-editor.c (tb_save_and_close_cb): 

    * gui/component/addressbook.c (toggle_view_as_cb): 

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

    * conduit/address-conduit.h: New structure of file - similar
    to calendar/todo conduits

    * conduit/address-conduit.c: ditto

    * conduit/address-conduit-config.h: Config stuff for conduit

    * conduit/.cvsignore: Update

    * conduit/Makefile.am: Build fixes

    * conduit/address-conduit-control-applet.desktop: Renamed
    to e-address-conduit-control-applet.desktop

    * conduit/address.conduit.in: Renamed to e-address.conduit.in

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

    * gui/widgets/e-addressbook-view.c (SPEC): Remove Family name
    column since it's a bit weird.  This also fixes the initial state
    since all of the column choices were off by one.

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

    * printing/Makefile.am (glade_DATA): Remove
    `e-contact-print.glade.h'.
    (EXTRA_DIST): Move here.

    * gui/component/Makefile.am (glade_DATA): Remove
    `ldap-server-dialog.glade.h'.
    (EXTRA_DIST): Move here.

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

    * backend/ebook/e-card.c: Change how the extension field acts when
    converting delivery addresses to labels.

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

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Added the
    function e_card_delivery_address_to_label.

    * contact-editor/e-contact-editor-address.c: Fixed a potential
    crash.

    * contact-editor/e-contact-editor.c: Made this save the changed
    data to the string version of the address.

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

    * gui/component/addressbook.c (change_view_type): update to new
    UI handler.
    (update_view_type): split from (change_view_type).
    (control_activate): add an update_view_type.

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

    * backend/ebook/e-card-simple.c: Change NAME_OR_ORG to return the
    email address if both name and organization are taken.

    * gui/component/select-names/e-select-names.c: Fixed up the spec
    strings in this class.  Removed the "cursor_mode" argument to
    ETable since it's part of the spec now.

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

    * contact-editor/contact-editor.glade: Change the initial dialog 
    visibility to FALSE
    so the contact editor doesn't flash when it appears.

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

    * gui/component/select-names/e-select-names-manager.c 
    (e_select_names_manager_activate_dialog): Only allow one dialog
    per manager.

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

    * contact-editor/fulladdr.glade: Fixed a typo.  Made this look a
    bit better.

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

    * gui/component/select-names/Makefile.am:
    * gui/component/Makefile.am: Remove CPPFLAGS since they just
    duplicate flags that were already in INCLUDES.

    * printing/Makefile.am (ecpsdir): 
    * gui/widgets/Makefile.am:
    * contact-editor/Makefile.am: Move -D flags from CPPFLAGS to
    INCLUDES so they don't override any CPPFLAGS set at configure
    time.

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

    * gui/component/addressbook.c (control_activate): if we are in
    LDAP mode then merge in the extra few items, otherwise just merge
    the standard thing; saves duplication.

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

    * gui/component/addressbook.oafinfo: Added
    "evolution:shell-component-icon" property.

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

    * gui/component/select-names/e-select-names.c 
    (e_select_names_manager_activate_dialog): Only allow one dialog
    per id.
    (e_select_names_manager_destroy): Destroy the hashtable.
    (e_select_names_manager_init): Init the hashtable.

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

    * contact-editor/fulladdr.glade, contact-editor/fulladdr.glade.h:
    Rearranged these fields a bit more.

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

    * contact-editor/e-contact-editor-categories.c,
    gui/component/select-names/e-select-names.c,
    gui/widgets/e-addressbook-view.c: Changed these for boolean
    ascending attribute instead of int ascending attribute.  Fixed
    e-select-names to not use a column past the end of its array.

    * contact-editor/e-contact-editor-address.c,
    contact-editor/fulladdr.glade, contact-editor/fulladdr.glade.h:
    Rearranged the address editor dialog.

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

    * contact-editor/e-contact-editor-categories.c: Fixed the column
    elements, the no-headers attribute and added a cursor-mode=line
    attribute.

    * gui/component/select-names/e-select-names.c,
    gui/widgets/e-addressbook-view.c: Fixed the column elements here.

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

    * contact-editor/e-contact-editor-categories.c,
    gui/component/select-names/e-select-names.c,
    gui/widgets/e-addressbook-view.c: Updated these to the new style
    ETables.

2000-10-06  Not Zed  <NotZed@HelixCode.com>

    * gui/search/e-addressbook-search-dialog.c (get_widget): Removed
    ondemand callback nonsense from rule_context_load().

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

    * contact-editor/e-contact-editor.c (create_ui): upd.
    (e_contact_editor_init): upd.

    * gui/component/addressbook.c (control_activate_cb): upd.
    (control_deactivate): kill.
    (control_activate): upd.

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

    * gui/component/addressbook.c (control_activate): update.

    * contact-editor/e-contact-editor.c (create_ui): upd.

Fri Sep 29 07:33:54 2000  Christopher James Lahey  <clahey@helixcode.com>

    * gui/widgets/e-minicard.c, gui/widgets/e-minicard.h: Made it so
    that minicard doesn't write out changes to the backend unless
    something's actually changed.

Tue Sep 26 16:28:47 2000  Christopher James Lahey  <clahey@helixcode.com>

    * backend/ebook/e-card.c: Make sure that card->name and
    card->full_name are always valid.

    * contact-editor/e-contact-editor.c: Removed some unused
    variables.

2000-09-22  Matt Bissiri  <bissiri@eecs.umich.edu>

    * contact-editor/e-contact-editor-fullname.c (extract_info): If
    (editor->name == NULL), store ptr to newly allocated ECardName in
    editor->name, not just in a stack variable.  This fixes a crash
    which happened when you click "New", then click "Full Name...",
    then enter name, then click "OK".

    * backend/ebook/e-card.c (e_card_name_to_string): Add
    g_return_val_if_fail.

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

    * gui/widgets/Makefile.am:
    * gui/component/Makefile.am:
    * contact-editor/Makefile.am:
    * printing/Makefile.am: Look for ename in /e-util/ename instead of
    /addressbook/ename
    
    * backend/ebook/e-card.c: Updated to include e-util/ename/*.h

    * ename: Moved to /e-util so it could be shared

    * Makefile.am (SUBDIRS): took out ename

2000-09-25  Nat Friedman  <nat@helixcode.com>

    * ename/e-name-western-tables.h: Added a ton of new prefixes and
    suffixes.

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

    * gui/component/addressbook.c (control_activate): update.

    * contact-editor/e-contact-editor.c (create_ui): upd.

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

    * backend/pas/pas-backend-ldap.c: lots of changes.  flesh out the
    remove/modify/create functions.  add another flag for the property
    table, PROP_DN, which makes it easy for us to determine when we
    need to create a new DN for a record when we're modifying.  also
    add a ber_func to the table for PROP_TYPE_LIST fields, which fills
    in the list of bvalues that we send to the ldap server.  The
    add/modify/delete stuff hasn't been tested yet, and it hopelessly
    complex (yay ldap).
    (ldap_search_handler): act synchronous when ldap_search responds
    with -1.
    (view_destroy): use pas_book_view_notify_status_message.
    (ldap_op_process_current): same
    (ldap_op_process): same
    (poll_ldap): same
    (ldap_search_handler): same

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

    * backend/ebook/e-card-simple.h: add
    E_CARD_SIMPLE_FIELD_FAMILY_NAME to the enum.

    * backend/ebook/e-card-simple.c (field_data): add
    E_CARD_SIMPLE_FIELD_FAMILY_NAME.
    (e_card_simple_get): add getter for FAMILY_NAME.

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

    * backend/ebook/e-card.c: Made addresses be quoted printable again
    so that they will encode properly if they have carriage returns in
    them.  This is possible now because of a fix in libversit.

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

    * backend/ebook/e-book-view-listener.c,
    backend/ebook/e-book-view-listener.h, backend/ebook/e-book-view.c,
    backend/ebook/e-book-view.h, backend/idl/addressbook.idl,
    backend/pas/pas-book-view.c, backend/pas/pas-book-view.h: Added a
    function to set the status message associated with a given view.
    This is not yet implemented in the gui.

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

    * backend/ebook/e-book.c, backend/ebook/e-book.h,
    backend/idl/addressbook.idl, backend/pas/pas-backend-file.c,
    backend/pas/pas-backend-ldap.c, backend/pas-backend.c,
    backend/pas/pas-backend.h, backend/pas/pas-book.c,
    backend/pas/pas-book.h: Added a function to query static
    capabilities (capabilities that can be reported immediately) and
    implemented them in the 2 servers.

    * gui/component/addressbook.c: Added a View All button and a Stop
    button.  Sorted out the new directory server stuff a bit.

    * gui/widgets/e-addressbook-model.c,
    gui/widgets/e-addressbook-model.h: Cleaned up a bit.  Added a stop
    function.  Check for capabilities before deciding whether to load
    all cards when initially viewed.

    * gui/widgets/e-addressbook-view.c,
    gui/widgets/e-addressbook-view.h: Added stop and view all
    functions.

    * gui/widgets/e-minicard-view-widget.c,
    gui/widgets/e-minicard-view-widget.h,
    gui/widgets/e-minicard-view.c, gui/widgets/e-minicard-view.h:
    Added a stop function.  Check for capabilities before deciding
    whether to load all cards when initially viewed.

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

    * gui/component/addressbook.c (control_activate): remove _UIHandler

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

    * backend/ebook/load-pine-addressbook.c: Added a missing include
    of ctype.h.

    * backend/pas/pas-backend-file.c: Fixed a problem where using a
    GList was causing us to not be reentrant.  We now use an EList
    here and so now this is reentrant.  This should fix the "wombat
    crashes every time you run evolution" bug.

    * contact-editor/e-contact-editor.c: Fixed a type mismatch.

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

    * backend/ebook/load-pine-addressbook.c: Make this work when a
    field is spread across multiple lines.

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

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Added a
    wants_html field to cards.  Uses "x-mozilla-html".

    * contact-editor/Makefile.am: Added definition of
    EVOLUTION_DATADIR.

    * contact-editor/contact-editor.glade: Make Wants HTML check
    button visible.

    * contact-editor/e-contact-editor.c,
    contact-editor/e-contact-editor.h: Make Wants HTML check button
    active.  Fix UI stuff to use XML.  Set parent window of
    confirm_delete dialog.

    * gui/widgets/e-addressbook-view.c, gui/widgets/e-minicard.c: Set
    the parent window of the confirm_delete dialog.
    
2000-09-20  Christopher James Lahey  <clahey@helixcode.com>

    * gui/widgets/e-addressbook-view.c: Fixed display of the minicards
    when the addressbook was first loading.  (It was overwriting a
    string with NULL during init.)

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

    * gui/search/Makefile.am (ruledir): Use $(datadir), not
    $(prefix)/share

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

    * backend/ebook/Makefile.am, contact-editor/Makefile.am,
    ename/Makefile.am, gui/component/Makefile.am,
    gui/widgets/Makefile.am: Added $(EXTRA_GNOME_CFLAGS) and
    $(EXTRA_GNOME_LIBS).  Removed unneeded libraries.

    * backend/ebook/e-card.c, backend/pas/pas-backend-file.c,
    contact-editor/e-contact-editor-address.c,
    contact-editor/e-contact-editor-categories.c,
    contact-editor/e-contact-editor-categories.h,
    contact-editor/e-contact-editor-fullname.c,
    contact-editor/e-contact-editor.c,
    contact-editor/e-contact-save-as.c, ename/e-address-western.c,
    ename/test-ename-western-gtk.c,
    gui/component/addressbook-factory.c, gui/component/addressbook.c,
    gui/component/e-cardlist-model.h, gui/component/e-ldap-storage.c,
    gui/component/select-names/e-select-names-bonobo.c,
    gui/component/select-names/e-select-names-manager.c,
    gui/component/select-names/e-select-names-model.c,
    gui/component/select-names/e-select-names-table-model.c,
    gui/component/select-names/e-select-names-table-model.h,
    gui/component/select-names/e-select-names-text-model.h,
    gui/component/select-names/e-select-names.c,
    gui/component/select-names/e-select-names.h,
    gui/search/e-addressbook-search-dialog.c,
    gui/widgets/e-addressbook-model.h,
    gui/widgets/e-addressbook-view.c, gui/widgets/e-minicard-label.c,
    gui/widgets/e-minicard-view-widget.c,
    gui/widgets/e-minicard-view-widget.h,
    gui/widgets/e-minicard-view.c, gui/widgets/e-minicard-view.h,
    gui/widgets/e-minicard-widget.h, gui/widgets/e-minicard.c,
    gui/widgets/test-minicard-label.c, gui/widgets/test-reflow.c,
    printing/e-contact-print.c: Fixed the #include lines to deal
    properly with gal.
    
2000-09-15  Christopher James Lahey  <clahey@helixcode.com>

    * contact-editor/e-contact-editor.h,
    contact-editor/e-contact-save-as.h,
    gui/widgets/e-addressbook-model.h,
    gui/widgets/e-minicard-view-widget.h,
    gui/widgets/e-minicard-view.h, gui/widgets/e-minicard.c,
    gui/widgets/e-minicard.h: Fixed the paths of some .h #includes.

    * gui/component/addressbook.c: Removed all of the code to actually
    create and display the correct view of the addressbook and moved
    it to the new class gui/widgets/e-addressbook-view.c.

    * gui/widgets/Makefile.am: Added everything necessary for
    e-addressbook-view.c and e-addressbook-view.h.

    * gui/widgets/e-addressbook-view.c,
    gui/widgets/e-addressbook-view.h: New class to deal with actual
    display of addresses and switching between card view and table
    view.

    * gui/widgets/e-minicard-view-widget.c: Made this deal more
    gracefully with having the book set to NULL.

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

    * gui/component/select-names/e-select-names.c: fix broken include.

    * gui/component/Makefile.am (INCLUDES): define datadir.
    (evolution_addressbook_SOURCES): remove e-addressbook-model.[ch]

    * gui/component/addressbook.c (control_activate): use datadir.

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

    * gui/widgets/Makefile.am (gladedir): Define.
    (glade_DATA): Install `alphabet.glade'.
    (EXTRA_DIST): Define.

    * gui/component/Makefile.am (glade_DATA): Remove `alphabet.glade'.
    (EXTRA_DIST): Remove `alphabet.glade.h'.

    * gui/widgets/Makefile.am (libeminicard_a_SOURCES): Add
    `e-addressbook-model.c' and `e-addressbook-model.h'.  I hope this
    is what Chris meant to do.

    * gui/component/Makefile.am (INCLUDES): Add
    `-I$(top_srcdir)/addressbook/gui/widgets'.
    (evolution_addressbook_SOURCES): Remove `e-addressbook-model.c'
    and `e-addressbook-model.h'.

    * gui/component/select-names/e-select-names.c: #include
    "e-addressbook-model.h" from "addressbook/gui/widgets" instead of
    "addressbook/gui/component", as it has been moved there.

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

    * backend/pas/pas-backend-ldap.c: split all the ldap operations
    into 2 halves, a handler, and destructor, and create a structure
    containing two function pointers and any data they need.  this
    allows us queue up pending operations (since the LDAP*'s are no
    longer view specific.  there's one per backend.)  also, add
    support for restarting async operations if the SERVER DOWN error
    isn't communicated until sometime after the handler is called (as
    is the case with the async search stuff.)

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

    * gui/component/addressbook-factory.c (main): Call unicode_init
    for e-font stuff.

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

    * contact-editor/Makefile.am, gui/widgets/Makefile.am: Added
    $(GNOME_PRINT_LIBS) to all of the test files in these directories.

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

    * gui/component/Makefile.am (evolution_addressbook_LDADD): fix path.

    * gui/component/addressbook.c: update include.

    * gui/component/addressbook-factory.c: update include.

    * gui/widgets/e-minicard-view.h: update include.

    * gui/search/e-addressbook-search-dialog.c: update include path.

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

    * contact-editor/e-contact-editor.c (e_contact_editor_init): hack.
    (create_toolbar): ditto.

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

    * gui/component/addressbook.c: Radicaly update UI handler code.

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

    * gui/widgets/*, gui/minicard/*: Moved gui/minicard to
    gui/widgets, except for e-reflow.c, e-reflow.h, e-reflow-sorted.c,
    and e-reflow-sorted.h.

    * gui/widgets/Makefile.am: Added e-reflow to the INCLUDES list and
    libereflow.a to a bunch of LDADD lines.

    * gui/component/Makefile.am (evolution_addressbook_LDADD): Added
    libereflow.a here.

    * gui/Makefile.am (SUBDIRS): Replaced minicard with widgets.

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

    * gui/component/select-names/Makefile.am: Add space after `-I'
    when invoking `orbit-idl'.

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

    * gui/component/Makefile.am (EXTRA_DIST): Remove `ui.xml'.

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

    * contact-editor/e-contact-editor.c: Fixed a crash error.

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

    * ename/e-address-western.c: Fixed some warnings.

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

    * ename/e-address-western.c: fixed certain address parsing
    problems.

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

    * contact-editor/fulladdr.glade: Made this a bit better balanced.

    * gui/component/addressbook.c: Make the toolbar button for find do
    the same thing that the menu item for search does.

    * gui/search/e-addressbook-search-dialog.c: Made the top half of
    this not expand.

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

    * backend/ebook/e-card-simple.c, backend/ebook/e-card-simple.h:
    Removed a bunch of redundant code.  Made it so that when you set
    an address label, it sets the delivery address as well.  Added
    functions to set and get the delivery address.

    * backend/ebook/e-card.c, backend/ebook/e-card.h: Added code to
    convert and address label to a delivery address.

    * contact-editor/Makefile.am: Added e-contact-editor-address.[ch],
    fulladdr.glade, fulladdr.glade.h.

    * contact-editor/contact-editor.glade,
    contact-editor/e-contact-editor-strings.h: Switched from a label
    to a button to show the parsed address.

    * contact-editor/e-contact-editor-address.c,
    contact-editor/e-contact-editor-address.h: New class to implement
    the parsed address dialog.

    * contact-editor/e-contact-editor-fullname.c,
    contact-editor/e-contact-editor-fullname.h: Added const to the
    _new function.

    * contact-editor/e-contact-editor.c: Implemented clicking on the
    address button.

    * contact-editor/fulladdr.glade, contact-editor/fulladdr.glade.h:
    New glade files for the parsed address dialog.

    * contact-editor/fullname-strings.h, fullname.glade: Changed these
    accellabels to labels.

    * ename/Makefile.am: Added e-address-western.c.

    * ename/e-address-western.c: Fixed some warnings.

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

    * ename/e-address-western.c: Added by Jesse.

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

    * gui/minicard/e-minicard-label.c (e_minicard_label_construct):
    Use canvas default font

    * gui/minicard/e-minicard.c (e_minicard_realize): Ditto
    (get_left_width): Ditto

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

    * contact-editor/e-contact-editor-categories.c: Fixed a few warnings.

2000-09-02  Lauris kaplinski  <lauris@helixcode.com>

    * contact-editor/e-contact-editor-categories.c: e_utf8 wrappers

    * contact-editor/e-contact-editor.c: e_utf8 wrappers

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

    * gui/component/e-ldap-storage.c (load_ldap_data): Updated for the
    extra arg now needed by `evolution_storage_new_folder()'.
    (e_ldap_storage_add_server): Likewise.

2000-08-31  Ettore Perazzoli  <ettore@helixcode.com>

    * conduit/Makefile.am (INCLUDES): Add `BONOBO_GNOME_CFLAGS' and
    `-I$(top_srcdir)'.

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

    * backend/ebook/Makefile.am: Install load-gnomecard-addressbook
    and load-pine-addressbook.

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

    * printing/e-contact-print.c: Countless small changes for gnome-print 0.21+

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

    * gui/component/addressbook.oafinfo: Add a name to the minicard
    viewer.

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

    * backend/ebook/e-book.c: 
    * backend/ebook/test-client.c: 
    * backend/ebook/test-client-list.c: 
    * backend/ebook/load-gnomecard-addressbook.c: 
    * backend/ebook/load-pine-addressbook.c: 
    * backend/pas/pas-book-factory.c: 
    * conduit/address-conduit.h: Remove USING_OAF checks

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

    * gui/component/addressbook.c: Use the right argument name to turn
    on grid lines.

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

    * gui/minicard/Makefile.am: Comment out minicard-view-test
    since its gnorba dependent
    
2000-08-26  JP Rosevear  <jpr@helixcode.com>

    * gui/component/addressbook-component.c: Remove gnorba stuff

    * gui/minicard/e-minicard-control.c (e_minicard_control_factory_init):
    ditto

    * gui/component/addressbook.c: ditto

    * gui/component/addressbook-factory.c: ditto

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

    * demo/* Removed the demo directory since it's no longer used.

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

    * gui/minicard/Makefile.am: Remove gnorba stuff

    * gui/minicard/e-minicard-control.gnorba: Kill
    
2000-08-26  JP Rosevear  <jpr@helixcode.com>

    * gui/component/addressbook.gnorba: Kill

    * gui/component/Makefile.am:  Remove gnorba stuff

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

    * gui/component/Makefile.am (evolution_addressbook_LDFLAGS): Add
    -export-dynamic so libglade will be able to resolve custom widget
    callbacks.

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

    * backend/pas/pas-backend-file.c (func_contains): Use e_utf8_strstrcase

    * contact-editor/e-contact-editor-fullname.c (fill_in_field): Use e_utf8 wrapper
    (extract_field): Same

    * contact-editor/e-contact-editor.c (full_name_clicked): Don't crash

    * ename/Makefile.am: Link demo with libeutil.la

    * ename/test-ename-western-gtk.c (full_changed_cb): Use e_utf8 wrapper

    * gui/component/addressbook.c (find_contact_cb): Use e_utf8 wrapper
    (search_entry_activated): Same

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

    * gui/search/e-addressbook-search-dialog.c: Fix an error in the
    arguments to rule_context_load.

    * backend/ebook/e-card.c: Fix this to not mess up if the person
    passes a VCard with a carriage return in the mailing address.

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

    * gui/search/addresstypes.xml: Fixed fullname->full_name for
    search field.

    * gui/search/e-addressbook-search-dialog.c (get_widget): Check we
    actually got any parts to build the dialogue with.

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

    * gui/component/addressbook-component.c (owner_set_cb): Set the
    global_shell_client nastyhack when we know it.
    This is only required to link with the filter code ...

    * gui/component/Makefile.am (evolution_addressbook_LDADD): Added
    libfilter.a to the link line.

    * gui/search/Makefile.am (noinst_LIBRARIES): Change library name
    from libaddressbooksearchdialog to libaddressbooksearch, as used
    elsewhere.

    * gui/search/e-addressbook-search-dialog.c (get_widget):
    Implement.
    (get_query): Likewise.
    (e_addressbook_search_dialog_destroy): Unref filter stuff when
    done.

    * gui/component/addressbook.c (control_deactivate): Added chris's
    patch to put the meny in

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

    * contact-editor/e-contact-editor.c: Use e_utf8 wrappers everywhere

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

    * backend/e-card.h: Started adding a time zone field to ECard.

    * gui/component/e-addressbook-model.c: Added
    e_table_model_pre_change where appropriate.

    * gui/minicard/e-minicard-control.c: Added a ref and unref pair.

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

    * gui/component/addressbook.c: Linked in the search dialog again.
    It looks like some changes in the shell made this not work.

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

    * conduit/address-conduit.c, conduit/address-conduit.h: Changed
    this to use ECardSimple.

    * contact-editor/e-contact-editor.c: Fixed a memory leak.

    * gui/component/addressbook.c: Added stuff to the right click
    menu.  Activated the new search dialog that doesn't quite work
    yet.

    * gui/minicard/e-minicard-view.c: Fixed some run time warnings.

2000-08-15  Larry Ewing  <lewing@helixcode.com>

    * gui/minicard/e-minicard.c (e_minicard_event): use style colors
    for the selected state.  This doesn't properly redraw the minicard
    when there is a style_change event, that is next.
    (e_minicard_realize): use style colors.

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

    * backend/pas/pas-backend-file.c: Include the proper db1/db.h
    as in RedHat 7.0 -- patch from Kenny Graunke <kwg@teleport.com>

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

    * conduit/Makefile.am (libaddress_conduit_la_SOURCES): add
    address-conduit.h

    * Makefile.am (CONDUIT_SUBDIR): only set subdir if
    ENABLE_PILOT_CONDUITS is set.

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

    * Makefile.am (SUBDIRS): add conduit subdir.

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

    * conduit/address-conduit.c (conduit_get_gpilot_conduit): add
    special oaf initialization hack so conduit can find wombat, and
    accept all cookies so that we can actually talk to oaf.

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

    * backend/pas/pas-backend-file.c: Fixed a typo that cause the
    wrong field to be searched.

    * gui/component/select-names/e-select-names.c: Made the select
    names dialog only display entries with email addresses.

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

    * contact-editor/contact-editor.glade: Fixed a typo in the name of
    the first phone entry.

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

    * gui/search/Makefile.am,
    gui/search/e-addressbook-search-dialog.c,
    gui/search/e-addressbook-search-dialog.h: A few small interface
    fixes.

    * gui/component/Makefile.am: Link in the addressbook search
    dialog.

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

    * gui/Makefile.am: Added the search directory.

    * backend/ebook/e-book.c: Fixed a potential crash.

    * gui/minicard/e-reflow-sorted.h: Fixed an include line.

    * gui/search/.cvsignore, gui/search/Makefile.am: New files.

    * gui/search/e-addressbook-search-dialog.c: Fixed compilation.

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

    * printing/Makefile.am: Ettore fixed compilation.

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

    * backend/ebook/.cvsignore: Added load-gnomecard-addressbook.

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

    * gui/search/e-addressbook-search-dialog.c,
    gui/search/e-addressbook-search-dialog.h: Made this into a Gtk
    object.

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

    * backend/pas/pas-book-view.c: Ref our book view listener.

    * gui/component/addressbook.c: Updated to use new minicard view
    widget.

    * gui/minicard/Makefile.am: Added e-minicard-view-widget.c and
    e-minicard-view-widget.h.

    * gui/minicard/e-minicard-view-widget.c,
    gui/minicard/e-minicard-view-widget.h: New class that's just a
    minicard view in an ECanvas.

    * gui/search/e-addressbook-search-dialog.c: New file for
    implementing a search dialog.

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

    * conduit/address-conduit.c (transmit): implement code to encode
    the first email address and send to the pilot.
    (get_phone_label_by_flag): rename find_phone_label_for_flags to
    this, and implement by calling get_phone_label_by_name.

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

    * conduit/address-conduit.c (ecard_from_remote_record): add code
    for handling email addresses from pilot (which stores it as a
    phone number entry.  go figure.)
    (check_for_slow_setting): #if 0 out, since we don't use it (yet).
    (update_record): un #if 0 the code to handle the case where the
    pilot info has changed for a local record.
    (merge_ecard_with_remote_record): implement function, but for now
    just return the existing (desktop) record - we still don't allow
    merge from the pilot.


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

    * gui/search/addresstypes.xml: Changed a couple of input field
    names.

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

    * gui/component/addressbook-component.c: Remove prototype for
    `setup_ldap_storage()', which shouldn't be here anyway.

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

    * gui/search/, gui/search/addresstypes.xml: New search dialog for
    addressbook.

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

    * gui/component/addressbook-component.c (owner_set_cb): Update for
    changed prototype, pass evolution_homedir arg to
    setup_ldap_storage.

    * gui/component/e-ldap-storage.c (setup_ldap_storage): Now takes
    an evolution_homedir arg, uses that to generate the path to the
    ldapservers.xml file, and stores the result in a static variable.
    (e_ldap_storage_add_server, e_ldap_storage_remove_server): Use that
    static variable rather than hardcoding the path to the file.

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

    * backend/pas/pas-backend-file.c: Fixed any search to not crash on
    missing phone numbers or email addresses.

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

    * gui/minicard/e-minicard-control.c: Added a button to save to
    your addressbook.

2000-08-09  Cody Russell  <bratsche@gnome.org>

    * gui/component/addressbook.c: Make the toolbar honor the user's
    gnomecc settings for detachable toolbars.