1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703
|
2006-07-31 Harish Krishnaswamy <kharish@novell.com>
* NEWS, configure.in: Release updates -
EDS - 1.6.3.
2006-07-08 Veerapuram Varadhan <vvaradhan@novell.com>
** Fixes #343976
* libedataserver/e-msgport.c (e_msgport_put): Make e_msgport_put
symmetric to e_msgport_wait
Patch contributed by Ed Catmur <ed@catmur.co.uk>
2006-07-08 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #335692
* libedataserver/e-iterator.c (e_iterator_is_valid):
Added a NULL check.
2006-06-16 Tor Lillqvist <tml@novell.com>
* libedataserver/e-msgport.c: Rename the E_IS_SELECT_STATUS_INTR()
portability macro to E_IS_STATUS_INTR() as it isn't spefic to
select().
(e_msgport_put, e_msgport_wait, e_msgport_get): Use
E_IS_STATUS_INTR() instead of looking at errno directly. On Win32
the socket functions don't touch errno. (And there is no EINTR
style error possible in WinSock 2 anyway, according to MSDN.)
2006-06-02 Tor Lillqvist <tml@novell.com>
* configure.in: Catch more failure modes of strftime() when
presented with conversion specifications %l and %k: On Windows,
these just do nothing, you don't get a 'l' or 'k' in the result,
which was all we used to test for here. Catch also if strftime()
does nothing at all when presented with a format containing
unsupported conversion specifications.
* libedataserver/e-data-server-util.c (e_strftime): The Microsoft
strftime() doesn't have %e either.
2006-06-01 Jeffrey Stedfast <fejj@novell.com>
* libedataserver/e-msgport.c (e_msgport_get): Loop the reads
checking errno for EINTR.
(e_msgport_put): Loop the writes checking for EINTR. Also, instead
of writing a nul-char, write 'E' as suggested by Michael Meeks for
easier strace debugging purposes.
2006-05-31 Jeffrey Stedfast <fejj@novell.com>
Hopeful fix for Novell bug #176277
* libedataserver/e-msgport.c: Changed the structure of EMsgPort
slightly to make ::prpipe a union more like ::pipe.
(e_pipe): For convenience, on error set the fds each to -1.
(e_prpipe): New convenience function much like e_pipe but for
PRFileDescs.
(e_msgport_new): Always create the pipes here now instead of
creating them on demand.
(e_msgport_fd): Simply return the pipe fd (no longer creates the
pipe on demand).
(e_msgport_prfd): Same.
2006-05-29 Harish Krishnaswamy <kharish@novell.com>
* NEWS, configure.in: Release updates, bump version.
Correct the libecal and libedatacal versions to reflect
the ABI break in a prior release.
2006-05-04 Ross Burton <ross@openedhand.com>
* libedata-book/e-book-backend-sexp.c:
Fix memory leak in and optimize the performance of compare_im
(#340036).
2006-04-25 Jeffrey Stedfast <fejj@novell.com>
* configure.in: Figure out auto-magically what the mozilla-nss
pkg-config module name is.
2006-03-29 Jeffrey Stedfast <fejj@novell.com>
* configure.in (LARGEFILE_CFLAGS): new configure checks to #define
O_LARGEFILE if not present and to set other required CFLAGS for
large file support.
2006-04-10 Tor Lillqvist <tml@novell.com>
* libedataserver/e-time-utils.c (get_locale_string)
(translate_picture): New Win32-only helper functions.
(__strptime_internal): Add Win32 love to fix a Win32-specific bug
in calendar reported by Thierry Dubois.
2006-04-10 Harish Krishnaswamy <kharish@novell.com>
-------------
Release 1.6.1
-------------
* NEWS, configure.in: Release updates, bump
version
2006-03-23 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #334807
* libedataserver/e-source-group.c: Check if the
object is created before accessing it.
2006-03-22 Tommi Vainikainen <thv@iki.fi>
* configure.in (ALL_LINGUAS): Added Dzongkha (dz).
2006-03-20 Vladimer Sichinava <vlsichinava@gmail.com>
* configure.in: Added "ka" (Georgian) to ALL_LINGUAS
2006-03-13 Harish Krishnaswamy <kharish@novell.com>
-------------
Release 1.6.0
-------------
* NEWS, configure.in: Release updates, bump
version, libtool numbers.
2006-03-02 Devashish Sharma <sdevashish@novell.com>
Fixes #303046
* libedataserverui/e-name-selector-dialog.c:
(e_name_selector_dialog_init): Select contacts from address book
screen doesn't use current contact source
2006-02-27 Srinivasa Ragavan <sragavan@novell.com>
* configure.in, NEWS: Release updates. Bump version.
***** Release 1.5.92 *****
2006-02-27 Tor Lillqvist <tml@novell.com>
* libedataserver/e-data-server-util.c: The fixed Win32 versions of
g_rename() and g_stat() have been in GLib since GLib 2.8.5, so
let's drop them from here.
2006-02-24 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #332318 #329356
* libedataserver/e-time-utils.c: (e_time_parse_date): Added the format
%x for representing the date for current locale.
2006-02-13 Harish Krishnaswamy <kharish@novell.com>
* configure.in, NEWS: Release updates. Bump version.
***** Release 1.5.91 *****
2006-02-09 Kjartan Maraas <kmaraas@gnome.org>
* libedataserver/e-categories.c: (cleanup_at_exit): Don't
call g_source_remove() when source id is 0. Closes bug #327413.
2006-02-09 Sushma Rai <rsushma@novell.com>
* libedataserver/e-source-list.c (e_source_list_is_gconf_updated):
Fixed some memory leaks. See #329251.
2006-02-09 Sushma Rai <rsushma@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): Freeing
xml properties. See #309316.
2006-02-06 Harish Krishnaswamy <kharish@novell.com>
* evolution-data-server.pc.in: Add variable execversion
that denotes the version of the evolution-data-server
executable.
2006-02-04 Theppitak Karoonboonyanan <thep@linux.thai.net>
* configure.in: Added 'th' (Thai) to ALL_LINGUAS.
2006-02-02 Tor Lillqvist <tml@novell.com>
* configure.in: Don't use getadrinfo() etc on Windows, as they are
present on XP only. Windows 2000 is still widespread.
2006-01-30 Harish Krishnaswamy <kharish@novell.com>
* configure.in, NEWS: Release updates, bump version
***** Release 1.5.90 *****
2006-01-30 Harish Krishnaswamy <kharish@novell.com>
* libedataserver/e-data-server-module.c:
(e_data_server_module_add_type):
* libedataserver/e-data-server-module.h:
Reverting the previous commit as it breaks the API freeze.
Shall get this in HEAD as soon as we branch out.
2006-01-30 Ross Burton <ross@openedhand.com>
* libedataserver/e-data-server-module.c:
* libedataserver/e-data-server-module.h:
Add e_data_server_remove_unused() to release unused modules
(#319396).
2006-01-21 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: add "zh_HK" to ALL_LINGUAS.
2006-01-17 Harish Krishnaswamy <kharish@novell.com>
* configure.in, NEWS: Release updates, bump version
libtool numbers.
***** Release 1.5.5 *****
2006-01-16 P S Chakravarthi <pchakravarthi@novell.com>
* libedataserver/e-source-list.[ch] : added a function called
e_source_list_is_gconf_updated () which returns a boolean indicating
whether or not a given ESourceList instance is in sync with its
corresponding gconf xml or not.
e_source_list_sync () : added an if clause that uses the above
function before updating the gconf.
2006-01-16 Harish Krishnaswamy <kharish@novell.com>
* configure.in : Add target for CALDAV calendar
backend.
2006-01-12 Harish Krishnaswamy <kharish@novell.com>
* src/GNOME_Evolution_DataServer.server.in.in:
* src/server.c:
The Cal and Book Factory oafids should reflect
the API version rather than the BASE version.
Fixes #323115.
2006-01-10 Simon Zheng <simon.zheng@sun.com>
* docs/reference/camel/camel-sections.txt:
* docs/reference/camel/tmpl/camel-file-utils.sgml:
Detele the function camel_mkdir description.
* libedataserver/e-data-server-util.h: Rename e-util.h as this
file.
* libedataserver/e-data-server-util.c: Rename e-util.c as this
file.
(e_util_mkdir_hier):Merge the change
of evolution/e-util/e-util.c (e_mkdir_hier) into this copy.
(e_strftime):Merge the change of evolution/e-util/e-util.c into
this copy.
* libedataserver/Makefile.am:
* libedataserver/e-file-cache.c:
* libedataserver/e-msgport.c:
* libedataserver/e-time-utils.c:
* src/server.c:
Replace e-util.h as e-data-server-util.h, and replace e-util.c as
e-data-server-util.c.
2006-01-08 Tor Lillqvist <tml@novell.com>
* configure.in: Define _WIN32_WINNT as 0x501 in the config.h on
Win32 to get freeaddrinfo(), getaddrinfo() and getnameinfo()
declarations with current mingw w32api headers.
2006-01-06 Simon Zheng <Simon.Zheng@sun.com>
* libedataserver/e-account-list.c: Since e-util/e-account-list.c
in evolution module has been developed further, merge those
changes into libedataserver and drop e-util/e-account-list.c.
libedataserver/e-account-list.h: Since e-util/e-account-list.h in
evolution module has been developed further, merge those changes
into libedataserver and drop e-util/e-account-list.h.
libedataserver/e-account.c: Since e-util/e-account.c in
evolution module has been developed further, merge those changes
into libedataserver and drop e-util/e-account.c.
libedataserver/e-account.h: Since e-util/e-account.h in
evolution module has been developed further, merge those changes
into libedataserver and drop e-util/e-account.h.
2006-01-04 Tor Lillqvist <tml@novell.com>
* libedataserver/e-util.c (e_util_replace_prefix): As this
(Win32-only) function is called from evo, too, it needs a third
argument, the configure time prefix that it should replace,
instead of harcoding e-d-s's one. (Assuming e-d-s and evo are
configured with different temporary dirs as prefix, which is the
recommended way.)
* libedataserver/e-util.h: Update declaration correspondingly.
* src/server.c (libdir): Modify calls correspondingly.
2006-01-02 Harish Krishnaswamy <kharish@novell.com>
* NEWS, configure.in: Release updates, bump version
libtool numbers.
***** Release 1.5.4 *****
2005-12-13 Tor Lillqvist <tml@novell.com>
* libedataserver/e-uid.c (e_uid_new): Use g_get_host_name() when
building against GLib >= 2.8, not just on Win32.
2005-12-12 Harish Krishnaswamy <kharish@novell.com>
* NEWS, configure.in: Release updates, bump version
libtool numbers.
***** Release 1.5.3 *****
2005-12-09 Tor Lillqvist <tml@novell.com>
* libedataserver/e-msgport.c: Add some socket API wrappers to hide
Unix/Winsock differences.
Use separate flag fields to indicate whether we have a thread or
not in the EThread and EMutex structs. There is no portable way to
check a pthread_t for uninitializedness. Remove the E_THREAD_NONE
magic constant.
The portable way to check two pthread_t values for equality is
pthread_equal().
Use e_util_pthread_id() to get an "id" for the thread in debugging
output.
(e_pipe): New function, Win32 only. Creates a connected TCP socket
pair. Should have this in GLib, I guess. This code snippet is
essentially duplicated in
ORBit2/linc/src/linc-compat.c:link_pipe() and at least one other
place I don't recall now.
(e_msgport_prfd): Use PR_NewTCPSocketPair() instead of
PR_CreatePipe() on Win32, as we want sockets, not a pipe (file
descriptors).
* libedataserver/e-util.c (e_util_mkdir_hier): When building
against GLib 2.8, use g_mkdir_with_parents().
(e_util_utf8_strcasecmp): New function. Casefolds two UTF-8
strings, then does a linguistically correct comparison using
g_utf8_collate().
(e_filename_make_safe): New function, move here from
evolution/e-util/e-util.c.
(g_rename, g_stat): Win32-only fixed versions of these GLib
functions, just until the next GLib version including the same
fixes is out. This version of g_rename() overwrites existing
files, and this version of g_stat() strips trailing insignificant
slashes.
* libedataserver/e-util.h: Declare the new functions.
2005-12-08 Tor Lillqvist <tml@novell.com>
* libedataserver/e-db3-utils.c
* libedataserver/e-file-cache.c: Use gstdio wrappers.
* libedataserver/e-source.c (e_source_build_absolute_uri): Don't
use G_DIR_SEPARATOR or g_build_filename() to manipulate URIs. URIs
always use slashes, not platform-dependent separators.
(e_source_set_name): Compare the strings, not the pointers.
* libedataserver/e-source-group.c (e_source_group_set_name):
Compare the strings, not the pointers.
* libedataserver/e-xml-utils.c
* libedataserver/e-xml-utils.h: New files.
(e_xml_parse_file): Replacement for xmlParseFile(). Needed because
the file names we handle on Win32 are in UTF-8, which libxml2
doesn't grok. So, when using GLib 2.8, we map the file with the
GMappedFile API and use xmlParseMemory(). When built against older
GLibs (which doesn't happen on Win32), just use xmlParseFile().
(e_xml_save_file, e_xml_get_child_by_name): Moved from Evolution's
e-xml-utils.c. Presumably should move all the rest of the
functions from there, too.
* libedataserver/Makefile.am: Add the new files. Install
e-xml-utils.h.
* libedataserver/e-xml-hash-utils.c: Use e_xml_parse_file() and
e_xml_save_file(). As e_xml_save_file() does the very careful
saving using a temporary filename and then rename, don't need to
that here.
2005-12-07 Irene Huang <Irene.Huang@sun.com>
Fix for #323349.
* configure.in: Change iconv_open ("UTF-8", "ISO_8859-1")
to iconv_open ("UTF-8", "ISO-8859-1") to avoid build error
on solaris.
2005-12-07 Tor Lillqvist <tml@novell.com>
* libdb/dbinc/db_int.in: As we are using this file (and not the
prebuilt one in libdb/build_win32/db_int.h) when building using
autofoo on Win32, need to have the correct PATH_SEPARATOR for
Win32, too. Add ifdef.
* libdb/os_win32/os_open.c (__os_open): When using a
user-registered open function to open the file (and not
CreateFile()), we still need to set the DB_FH::handle, too, as all
the other stuff in libdb/os_win32 assumes it is correctly set
up. On Win32, addressbook/backends/file needs to register an own
open function (that uses g_open()) as the pathnames e-d-s handles
on Win32 are in the GLib encoding (i.e., UTF-8) and not the system
codepage that CreateFile() wants.
2005-12-06 Tor Lillqvist <tml@novell.com>
* configure.in: Set LIBEXECDIR_IN_SERVER_FILE to libexecdir on
Unix. On Win32, set it to a path relative from lib/bonobo/servers.
* src/GNOME_Evolution_DataServer.server.in.in: Use
LIBEXECDIR_IN_SERVER_FILE here. We don't want absolute
compile-time paths in the .server file on Win32. libbonobo on
Win32 interprets relative location paths to exes or shlibs as
being relative to the directory where the .server file was found.
This makes the .server file point to the correct executable
regardless of where e-d-s is installed on the end-user machine.
2005-12-02 Tor Lillqvist <tml@novell.com>
* src/GNOME_Evolution_DataServer.server.in.in: Add missing dash in
the executable file's name in the InterfaceCheck location.
* evolution-data-server-zip.in: New file, a script used to build a
Win32 zipfile distribution of E-D-S. (End users will not be
expected to install from zipfiles, they would be for power users
and developers only.)
* Makefile.am
* configure.in: Distribute and expand it.
2005-12-01 Chenthill Palanisamy <pchenthill@novell.com>
reviewed by Srinivasa Ragavan <sragavan@novell.com>
* libedataserver/e-uid.c: (e_uid_new): Use the functions
defined in glib -2.8 only for win32 as it fails to build
for OS which has glib 2.4.
2005-12-01 Tor Lillqvist <tml@novell.com>
* libedataserver/e-util.c (e_util_pthread_id): Fix silly bug in
the ifdef section for "uncommon" platforms. Thanks to Ross Burton for
noticing.
2005-11-25 Tor Lillqvist <tml@novell.com>
* libedataserver/e-categories.c (add_category_if_not_present):
Drop unused static function.
(e_categories_add_relative): New function. Form the pathname to
the icon file at run-time (for installability in freely chosen
location on Windows).
(initialize_categories_config): Call e_categories_add_relative()
with just the basename of the icon files.
* libedataserver/e-data-server-module.c
(e_data_server_module_init): Include libedataserver-private.h to
get redefinition of E_DATA_SERVER_EXTENSIONDIR (for run-time
pathname construction) on Windows.
* libedataserver/e-time-utils.c: Include strptime() implementation
lifted from glibc for portability. Use it unless
HAVE_STRPTIME. Make it local for this file, though.
* libedataserver/e-uid.c (e_uid_new): Use g_get_host_name() from
GLib 2.8 instead of gethostname().
* libedataserver/e-url.c (e_uri_new): Use g_ascii_strncasecmp()
instead of strncasecmp() for portability.
* libedataserver/e-util.c: Implement install-anywhere machinery
for Win32.
(DllMain): Minimal DllMain that just tucks away the handle to the
DLL.
(_libedataserver_get_extensiondir, _libedataserver_get_imagesdir,
_libedataserver_get_ui_gladedir): Functions private to e-d-s.
(e_util_get_prefix, e_util_get_cp_prefix, e_util_get_localedir,
e_util_replace_prefix): Functions intended also for Evolution. We
assume e-d-s and evo are installed in the same folder on the
end-user machine.
* libedataserver/e-util.h: Declare the above new public Win32-only
functions.
* libedataserver/libedataserver-private.h: New file. Declares so
far some Win32-only functionality, to be used in various parts of
e-d-s.
* libedataserver/md5-utils.c (md5_get_digest_from_file): Use
gstdio wrappers for better non-ASCII filename support on
Win32. Open file in binary mode. Don't use sizeof(guchar), it
won't be different than 1 in this universe. Do use sizeof(tmp_buf)
instead of hardcoding 1024. Drop leftover debugging printouts.
* libedataserver/Makefile.am: Add libedataserver-private.h. Pass
more configure-time pathname definitions (as used elsewhere in
e-d-s) in INCLUDES so that they can be recognized and changed at
run-time to end-user machine installation paths on Win32.
* src/server.c: No segv handling on Win32. Run-time path
construction for the PREFIX, SYSCONFDIR, DATADIR and LIBDIR used
in GNOME_PROGRAM_STANDARD_PROPERTIES which is passed to
gnome_program_init().
2005-11-18 Ross Burton <ross@burtonini.com>
* libedataserver/md5-utils.c:
* libedataserver/e-component-listener.c:
Fix build.
2005-11-17 Ross Burton <ross@burtonini.com>
* libedataserver/md5-utils.c:
* libedataserver/md5-utils.h:
Don't do byte order checks at runtime but use the GLib
G_BYTE_ORDER macro (#319592)
2005-11-17 Ross Burton <ross@burtonini.com>
* libedataserver/e-account-list.c:
* libedataserver/e-account.c:
* libedataserver/e-component-listener.c:
* libedataserver/e-file-cache.c:
* libedataserver/e-iterator.c:
* libedataserver/e-list-iterator.c:
* libedataserver/e-list.c:
* libedataserver/e-sexp.c:
* libedataserver/e-source-group.c:
* libedataserver/e-source-list.c:
* libedataserver/e-source.c:
Use G_DEFINE_TYPE and add some more const keywords (#319591)
2005-11-15 Ross Burton <ross@burtonini.com>
* libedataserver/e-data-server-module.c
Use lazy bindings (#321515)
2005-11-14 Harish Krishnaswamy <kharish@novell.com>
* NEWS, configure.in: Release updates, bump version.
***** Release 1.5.2 *****
2005-10-28 Erdal Ronahi <erdal.ronahi@gmail.com>
* configure.in: Added ku (Kurdish) to ALL_LINGUAS
2005-10-28 Sushma Rai <rsushma@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): Add
default categories only if the category list is empty in gconf, so that
we don't bring back the deleted category from the default list
every time. Fixes #273905.
2005-10-26 Harish Krishnaswamy <kharish@novell.com>
* src/GNOME_Evolution_DataServer.server.in.in:
Fixed bonobo server install locations as well.
(See below.)
2005-10-25 Harish Krishnaswamy <kharish@novell.com>
* configure.in: Update version, libtool numbers.
*** Release 1.5.1 ***
* src/Makefile.am : Fixed the executable installation
error in the previous patch. Executable installed in
libexecdir - not under evolution-data-server-$(API_VERSION).
2005-10-24 Irene Huang <Irene.Huang@sun.com>
* configure.in: Add API_VERSION to EVO_SUBST_SERVER_RULE
* src/GNOME_Evolution_DataServer.server.in.in: Change location
of OAFIID:GNOME_Evolution_DataServer_BookFactory:@VERSION@,
OAFIID:GNOME_Evolution_DataServer_CalFactory:@VERSION@,
OAFIID:GNOME_Evolution_DataServer_InterfaceCheck,
OAFIID:GNOME_Evolution_DataServer_Logging from
@LIBEXECDIR@/evolution-data-server-@VERSION@@EXEEXT@ to
@LIBEXECDIR@/evolution-data-server-@API_VERSION@/evolution-
data-server-@VERSION@@EXEEXT@.
* src/Makefile.am: In section install-evolution-data-servers:
change to $(mkinstalldirs) $(DESTDIR)$(libexecdir)/evolution-
data-server-$(API_VERSION)
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) evolution-data-server
$(DESTDIR)$(libexecdir)/evolution-data-server-$(API_VERSION)/
evolution-data-server-$(BASE_VERSION)
2005-10-17 Ross Burton <ross@burtonini.com>
* configure.in:
Change UTF-8 check from ISO-2022-JP to ISO-8859-1 (#317451).
2005-10-14 Ross Burton <ross@burtonini.com>
* configure.in: Remove unused dependencies from the pkg-config
calls and add E_FACTORY_CFLAGS/_LIBS.
* src/Makefile.am: Use E_FACTORY_*.
* libedataserver/e-sexp.c:
* libedataserver/test-source-list.c:
Don't use libgnome when GTK+ or GLib will do.
* libedataserver/libedataserver.pc.in:
Fix strings, update libraries.
2005-09-17 Andre Klapper <a9016009@gmx.de>
Fixes #273149.
* libedataserver/e-categories.c: adding translator comment for
"hot contacts".
2005-09-16 Tor Lillqvist <tml@novell.com>
* libedataserver/e-iconv.c (e_iconv_charset_language): Use
g_ascii_strcasecmp() instead of strcasecmp(). The strings we are
comparing are just ASCII anyway, so spell it out that we really do
need ASCII casefolding only.
2005-09-15 Tor Lillqvist <tml@novell.com>
* acinclude.m4 (EVO_PTHREAD_CHECK): Check if pthread_t is an
integral type (or pointer) that can be cast to a guint64 without
loss of precision. If so, AC_DEFINE HAVE_GUINT64_CASTABLE_PTHREAD_T.
* configure.in: Move the EVO_PTHREAD_CHECK call after GLIB_CFLAGS
has been set up.
* libedataserver/e-util.c: Just include <glib.h> instead of a
random set of <glib/*.h>. Remove large amount of whitespcace on
some empty lines.
(e_util_utf8_strstrcase): Clarify doc comment, mention that no
proper Unicode case folding or normalization is done.
(e_util_pthread_id): New function, returns an integer representing
a thread. Only for debugging output and logging purposes, cannot
be guaranteed to be consistent on all platforms.
* libedataserver/e-util.h: Include <pthread.h>. Declare
e_util_pthread_id().
2005-09-14 Tor Lillqvist <tml@novell.com>
* win32/README
* win32/Makefile.am
* win32/dummy.la
* win32/libedataserverui.def: New files. Bootstrap import library
for libedataserverui. Needed in servers/exchange/storage where
libexchange-storage-1.2.la links to libedataserverui before it has
been built.
* configure.in: Add -ldnsapi to SOCKET_LIBS on Win32. Always
enable LDAP and Exchange on Win32, don't need to test. AC_OUTPUT
also win32/Makefile.
* Makefile.am: Add win32 to SUBDIRS.
2005-09-01 Parthasarathi Susarla <sparthasarathi@novell.com>
* confugure.in : Add API_VERSION to config.h
2005-08-29 Harish Krishnaswamy <kharish@novell.com>
* configure.in : Update release number to 2.4.0
2005-08-26 Chenthill Palanisamy <pchenthill@novell.com>
* configure.in: Do not build camel docs.
* docs/reference/Makefile.am: Removed camel docs.
reviewed by Parthasarathi Susarla <sparthasarathi@novell.com>
2005-08-22 Not Zed <NotZed@Ximian.com>
* libedataserver/e-xml-hash-utils.c (e_xmlhash_foreach_key): cast
the func to remove a warning.
2005-08-22 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version
***** Release 1.3.8 *****
2005-08-22 Harish Krishnaswamy <kharish@novell.com>
* docs/reference/Makefile.am : enable libedataserver docs
* libedataserver/e-sexp.h, docs/reference/libedataserver
/libedataserver-sections.txt: Fix build issues - patch
contributed by Tor Lillqvist <tml@novell.com>
2005-08-22 Shreyas Srinivasan <sshreyas@novell.com>
* configure.in: Build camel-docs.
* docs/reference/Makefile.am: Build camel-docs.
2005-08-21 Chenthill Palanisamy <pchenthill@novell.com>
* libedataserver/e-xml-hash-utils.[ch]:
(e_xmlhash_foreach_key_remove): function to remove
hash keys.
Committing for Armin Bauer <armin.bauer@desscon.com>
and modified by <jmubeen@novell.com> and
<vvaradhan@novell.com>.
2005-08-19 Sarfraaz Ahmed <asarfraaz@novell.com>
* configure.in : Add the check for NTLM support in OpenLDAP. This
is needed for enabling the Exchange support in e-d-s.
2005-08-19 Harish Krishnaswamy <kharish@novell.com>
* configure.in : Build libedataserver api docs
2005-08-18 Tor Lillqvist <tml@novell.com>
* libedataserver/e-iconv.c (e_iconv_init): Sync with the version
in evolution/e-util: Use g_win32_getlocale() and g_get_charset()
on Win32. (Why is this file duplicated in e-d-s and evo, BTW?)
2005-08-13 Tor Lillqvist <tml@novell.com>
* libedataserver/Makefile.am: Link with SOCKET_LIBS. Use
NO_UNDEFINED.
* src/Makefile.am (INCLUDES): Remove stray trailing slashes from
some -I options.
2005-08-08 Harish Krishnaswamy <kharish@novell.com>
* configure.in: Update version, libtool numbers.
*****Release 1.3.7*****
2005-08-05 Harish Krishnaswamy <kharish@novell.com>
* configure.in: fix for bug #300048. patch
submitted by Roland Illig <roland.illig@gmx.de>
2005-07-30 Harish Krishnaswamy <kharish@novell.com>
* configure.in: update libtool numbers for libebook
2005-07-29 Harish Krishnaswamy <kharish@novell.com>
* configure.in: Bump version number
*****Release 1.3.6.1***** includes fix for
#311731 - (Removing folders from an IMAP)
2005-07-28 Tor Lillqvist <tml@novell.com>
* src/GNOME_Evolution_DataServer.server.in.in: Use EXEEXT.
2005-07-26 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version
****** Release 1.3.6 *****
2005-07-21 Joe Shaw <joeshaw@novell.com>
* libedataserver/e-source-group.c:
* libedataserver/e-source-list.c:
* libedataserver/e-source.c: Change the init and class_init
functions to contain the whole class name for the benefit of the
gtk-sharp parser.
2005-07-20 Tor Lillqvist <tml@novell.com>
* configure.in: Enable building with Mozilla nspr and nss on
Win32. No -ldl on Win32. No import library for softokn3.dll.
2005-07-14 Sarfraaz Ahmed <asarfraaz@novell.com>
* configure.in : Substituting the CURRENT:REVISION:AGE variables for
library versions
2005-07-12 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version, libtool numbers.
***** Release 1.3.5 *****
2005-07-06 Ross Burton <ross@openedhand.com>
* libedataserver/e-util.c:
Remove a function and table which is in GLib.
2005-07-06 Harish Krishnaswamy <kharish@novell.com>
* configure.in : align the name of the LIBEXCHANGE_STORAGE
to the conventions (_ instead of -).
2005-07-02 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version, libtool numbers.
2005-07-02 Harish Krishnaswamy <kharish@novell.com>
* libedataserver/e-categories.c: (initialize_categories_config):
Fix all the compiler warnings.
2005-06-22 Tor Lillqvist <tml@novell.com>
* configure.in: Don't check locking on Win32. Add gnome-vfs-2.0 o
E_DATA_SERVER_DEPS. Add gobject-2.0 to CAMEL deps. Substitute also
EXEEXT in EVO_SUBST_SERVER_RULE.
2005-06-12 Sarfraaz Ahmed <asarfraaz@novell.com>
* servers/Makefile.am : use ENABLE_LDAP instead of HAVE_LDAP
* configure.in : And rename HAVE_KRB5 to ENABLE_KRB5.
2005-06-12 Sarfraaz Ahmed <asarfraaz@novell.com>
* configure.in : Print the status for Exchange support being present.
* servers/Makefile.am : Build Exchange only if LDAP is enabled.
2005-06-11 Sarfraaz Ahmed <asarfraaz@novell.com>
* configure.in : Fixed a minor typo to fix make clean.
2005-06-10 Sarfraaz Ahmed <asarfraaz@novell.com>
* configure.in : Added the Exchange server communication code to
servers directory. Also enabled a HAVE_KRB5 automake conditional.
* servers/Makefile.am : Now build exchange as well.
2005-06-09 Harish Krishnaswamy <kharish@novell.com>
* configure.in : Do not build camel docs. They are borked now :(
2005-06-07 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version, libtool numbers.
2005-05-31 Rodrigo Moya <rodrigo@novell.com>
* src/GNOME_Evolution_DataServer.server.in.in: added missing
names for CORBA services.
2005-05-28 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Disable the libedataserver api docs build
* docs/reference/Makefile.am: Here too. It doesn't build.
2005-05-24 Tor Lillqvist <tml@novell.com>
* configure.in: Define NO_UNDEFINED as -no-undefined and
SOCKET_LIBS as -lws2_32 (the WinSock2 library) on Win32. AC_SUBST
them. Check for strtok_r. Add gobject-2.0 to
EVOLUTION_ADDRESSBOOK_DEPS and EVOLUTION_CALENDAR_DEPS.
2005-05-24 Tor Lillqvist <tml@novell.com>
Make libdb as included in e-d-s build on Win32 with mingw. (The
official build setup for libdb uses MSVC.)
* libdb/dist/Makefile.in: Use EXEEXT for Win32 portability. Use
the MAKEFILE_MAYBE_WIN32 variable (which configure.ac sets to
empty on Unix, "_win32" on Win32) to use those source files that
have an own copy in os_win32 from there.
* libdb/dist/config.hin: Add DB_WIN32 flag. Insert stuff from the
libdb/build_win32_db_config.h file.
* libdb/dist/configure.ac: Changes for mingw builds. AC_SUBST some
more variables.
* libdb/dist/configure: Manually make corresponding changes as in
configure.ac. (Yuck! But we don't run autogen in libdb/dost, so
what else to do?)
* libdb/os_win32/os_type.c: Include db_int_def.h here, too.
2005-05-19 Tor Lillqvist <tml@novell.com>
* configure.in: Check for regexec in a separate -lregex. Add
gmodule to CAMEL_CFLAGS and _LIBS, as camel uses gmodule,
too. Don't bother mentioning glib as gthread and gmodule drag in
it automatically.
2005-05-18 Harish Krishnaswamy <kharish@novell.com>
* configure.in : bump version, libtool numbers.
2005-05-18 Harish Krishnaswamy <kharish@novell.com>
* docs/reference/Makefile.am : Do not build
camel docs. They are a bit flaky ATM.
2005-05-13 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (add_category_if_present): new private
function to create standard categories if they don't exist.
(initialize_categories_config): make sure, in all cases, that our
standard categories are available.
2005-05-13 Shreyas Srinivasan <sshreyas@novell.com>
* libedataserver/e-categories.c: Add new Anniversary category,
Fixes #256874
2005-05-13 Harish Krishnaswamy <kharish@novell.com>
* configure.in: export LIBSOUP for use elsewhere.
2005-05-06 Tor Lillqvist <tml@novell.com>
* configure.in: Check for Win32 (mingw), set Automake
conditional. Move the libtool stuff a bit earlier so that $host
gets set early and can be checked in a more logical place. Check
for some more headers and functions. Use gobject-2.0 instead of
glib-2.0 in E_DATA_SERVER_DEPS as the libs we build do depend on
gobject. Check for libsoup-2.4 first, as that is what HEAD libsoup
calls its .pc file. On Win32, copy the libtool generated here to
libdb/dist.
2005-05-05 Veerapuram Varadhan <vvaradhan@novell.com>
* configure.in: Added "docs/reference/calendar/libedata-cal".
2005-05-04 Rodrigo Moya <rodrigo@novell.com>
* configure.in:
* docs/reference/calendar/Makefile.am:
* docs/reference/calendar/libedata-cal/*: added gtk-doc setup for
libedata-cal.
* docs/reference/libedataserver/libedataserver-docs.sgml: added missing
files.
2005-05-04 Rodrigo Moya <rodrigo@novell.com>
* docs/reference/calendar/*: improved API documentation.
2005-04-26 Harish Krishnaswamy <kharish@novell.com>
* configure.in: bump version, libtool numbers.
2005-04-25 Harish Krishnaswamy <kharish@novell.com>
* configure.in: Modify camelproviderdir to use API_VERSION.
* evolution-data-server.pc.in: use VERSION instead of API_VERSION.
2005-04-20 Ross Burton <ross@burtonini.com>
* src/offline-listener.c:
Remove an usused variable.
2005-04-20 Ross Burton <ross@burtonini.com>
* libedataserver/e-data-server-module.c:
* libedataserver/e-data-server-module.h:
* src/server.c:
Use a #define hack to revert API change to EDataServerModule.
2005-04-20 Ross Burton <ross@burtonini.com>
* configure.in: Depend on GLib 2.4.
* libedataserver/e-data-server-module.c:
* libedataserver/e-data-server-module.h:
Use G_DEFINE_TYPE over GNOME_CLASS_BOILERPLATE, and rename
e_data_server_module_init to _initialize.
* src/server.c:
Update for change to e-data-server-module.h.
2005-04-20 Ross Burton <ross@burtonini.com>
* src/offline-listener.c: Don't leak a GConfValue.
2005-04-20 James Henstridge <james@jamesh.id.au>
* configure.in (EVO_SET_COMPILE_FLAGS): fix up macro so that it
doesn't trigger configure failures with newer versions of
pkg-config. Fixes bug #300435.
2005-04-14 Sushma Rai <rsushma@novell.com>
* libedataserver/e-source.c (e_source_set_relative_uri): Resetting the
absolute uri, when relative uri is changed if source is having absolute
uri.
Fixes #274308
2005-04-11 Harish Krishnaswamy <kharish@novell.com>
* Makefile.am: use API_VERSION instead of BASE_VERSION in
pc files.
* configure.in: bump version, leave extensiondir, idldir,
bonobo server and libtool numbers untouched (use API_VERSION
instead).
* evolution-data-server.pc.in, libedataserver/Makefile.am,
servers/groupwise/Makefile.am, src/Makefile.am: use API_VERSION.
2005-04-07 Gareth Owen <gowen72@yahoo.com>
* po/en_GB.po: Updated British English translations
2005-03-31 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-03-30 Adi Attar <aattar@cvs.gnome.org>
* configure.in: Added "xh" to ALL_LINGUAS.
2005-03-29 James Bowes <bowes@cs.dal.ca>
* docs/reference/libedataserver/libedataserver-docs.sgml:
* docs/reference/libedataserver/libedataserver-sections.txt: Add
e-time-utils and e-xml-hash-utils.
* docs/reference/libedataserver/tmpl/e-time-utils.sgml:
* docs/reference/libedataserver/tmpl/e-xml-hash-utils.sgml: New API
template files.
* libedataserver/e-time-utils.c:
* libedataserver/e-time-utils.h:
* libedataserver/e-xml-hash-utils.c:
* libedataserver/e-xml-hash-utils.h: New API documentation.
2005-03-27 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Add ne in ALL_LINGUAS
2005-03-23 James Bowes <bowes@cs.dal.ca>
* configure.in: Add docs/reference/libedataserver/Makefile
as output.
* docs/reference/Makefile.am: Add libedataserver as subdir.
* docs/reference/libedataserver/Makefile.am: Remove ignored files
section.
* docs/reference/libedataserver/libedataserver-docs.sgml: Add
sections for new API docs.
* docs/reference/libedataserver/libedataserver-sections.txt: Make
nice formatting for the new documentation.
* libedataserver/e-trie.c:
* libedataserver/e-uid.c:
* libedataserver/e-url.c:
* libedataserver/e-url.h:
* libedataserver/e-util.c:
* libedataserver/e-util.h:
* libedataserver/md5-utils.c:
* libedataserver/md5-utils.h: Document public functions and data
structures.
* docs/reference/libedataserver/tmpl/e-trie.sgml:
* docs/reference/libedataserver/tmpl/e-uid.sgml:
* docs/reference/libedataserver/tmpl/e-url.sgml:
* docs/reference/libedataserver/tmpl/e-util.sgml:
* docs/reference/libedataserver/tmpl/md5-utils.sgml: New template
files for API documentation.
2005-03-06 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2005-02-28 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2005-02-10 Kjartan Maraas <kmaraas@gnome.org>
* libedataserver/e-data-server-module.c: (load_module_dir):
Don't leak the module path.
2005-02-09 Hans Petter Jansson <hpj@novell.com>
* libdb/dbinc/mutex.h: Fix PPC assembly.
2005-02-07 JP Rosevear <jpr@novell.com>
* configure.in: bump version. libtool numbers
2005-02-07 Ross Burton <ross@openedhand.com>
* libedataserver/e-db3-utils.c:
Remove useless libgnome use.
2005-02-03 Ross Burton <ross@burtonini.com>
* libedataserver/e-categories.c:
* libedataserver/e-component-listener.c:
* libedataserver/e-time-utils.c:
* servers/groupwise/e-gw-connection.c:
* src/server.c:
Use glib/gi18n.h.
2005-02-03 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (idle_saver_cb): changed to return a
gboolean and always FALSE to remove the idle callback after saving.
(save_config): new function that marks the config as dirty and installs
the idle callback.
(initialize_categories_config, e_categories_remove, e_categories_add,
e_categories_set_color_for, e_categories_set_icon_file_for): call
save_config() when saving the categories.
2005-02-01 Jeffrey Stedfast <fejj@novell.com>
* configure.in: Generate the old imap makefile.
2005-01-28 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): pass
a correct boolean value as the 'searchable' flag.
2005-01-26 JP Rosevear <jpr@novell.com>
Fixes #69909
* src/server-logging.h: add private structure to instance
* src/server-logging.c (server_logging_register_domain): track the
information for the registration so we can later unregister it
(server_logging_dispose): unregister the log handlers and from the
information and list
(server_logging_finalize): free the private structure
(server_logging_class_init): set finalize/dispose methods
2005-01-25 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.[ch] (e_categories_add): added a
'searchable' argument.
(e_categories_is_searchable): new function.
(hash_to_xml_string): add the 'searchable' property to the config.
2005-01-24 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2005-01-21 Jeffrey Stedfast <fejj@novell.com>
* configure.in: Removed the enable checks for IMAP4, we just
always build it now. Also don't generate
camel/providers/imap/Makefile as we no longer build it.
2005-01-21 Sivaiah Nallagatla <snallagatla@novell.com>
* libedataserver/e-source.c
(e_source_update_from_xml_node) : look for
case where passed in node does not contain any properites.
In the case reset the properites of the source
and emit the changed signal
makes personal books unselectable
from auto-completion
2005-01-14 Priit Laes <amd@store20.com>
* configure.in: Added 'ar', 'cy', 'he', 'hi', 'is', 'mk', 'ml',
'wa' to ALL_LINGUAS.
2005-01-14 Not Zed <NotZed@Ximian.com>
* libedataserver/e-sexp.c: reverted rodrigo's change. We never
build ESexp as a GObject anymore (it is used by camel).
2005-01-12 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.[ch] (e_categories_exist): new function.
* libedataserver/e-sexp.[ch]: removed the usage of the
E_SEXP_IS_G_OBJECT macro, since it was not being set anywhere.
(e_sexp_new): fixed some typoes.
(e_sexp_class_init): use g_type_class_peek_parent to get the
parent class for our class.
2005-01-08 Not Zed <NotZed@Ximian.com>
* libedataserver/e-xml-hash-utils.c (e_xmlhash_write): cast field
length to int.
* libedataserver/e-url.c (e_url_shroud): setup string manually
don't use *.%s as it depends on locale.
2005-01-10 Rodrigo Moya <rodrigo@novell.com>
* e-categories.c (escape_string): new function.
(hash_to_xml_string): add category names after escaping them.
(initialize_categories_config): mark the configuration as not dirty
only when we just got the list of categories from it.
2005-01-07 David Trowbridge <David.Trowbridge@Colorado.edu>
* configure.in:
* Makefile.am: added weather calendar backend to build.
2005-01-05 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): set
the configuration to not dirty even when we add the set of built-in
categories.
2005-01-05 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): set
the initialized flag to TRUE before starting, or we'll get infinite
recurrent calls to this function.
2005-01-05 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (initialize_categories_config): use _()
instead of N_() for translatable strings.
2005-01-04 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-categories.c (idle_saver_cb): new GSourceFunc to be
called at idle times.
(cleanup_at_exit): save configuration if it's dirty. Remove the idle
callback.
(initialize_categories_config): install the idle callback.
2005-01-04 Rodrigo Moya <rodrigo@novell.com>
* art/Makefile.am:
* art/category*.png: added category icons from GAL.
* Makefile.am:
* configure.in: added 'art' directory to build.
* libedataserver/e-categories.[ch]: moved categories API from evolution.
* libedataserver/Makefile.am: added new files to the build.
2004-12-31 JP Rosevear <jpr@novell.com>
* Makefile.am: clean iconv-detect.h
2004-12-29 David Trowbridge <trowbrds@cs.colorado.edu>
* libedataserver/e-source.c: Add logic for emitting a "changed" signal
if any of the properties change
2004-12-27 Rodrigo Moya <rodrigo@novell.com>
* src/server.c (gnome_segv_handler): use the correct binary name (ie,
include the BASE_VERSION and the full path).
2004-12-23 Sivaiah Nallagatla <snallagatla@novell.com>
* src/offline-listener.[ch] :New class to listen for gconf
key and set online/offline modes on factories -> backends
* src/Makefile.am : added new source file
offline-listener.[ch] to _SOURCES
2004-12-23 Rodrigo Moya <rodrigo@novell.com>
* Makefile.am: build servers/ dir before camel/.
2004-12-20 David Mosberger-Tang <David.Mosberger@acm.org>
* libedataserver/e-memory.c (STRUCT_ALIGN): Replace with G_MEM_ALIGN.
(ALIGNED_SIZE): New macro.
(MemPoolNode): Remove "data" member.
(MemPoolThresholdNode): Likewise.
(e_mempool_alloc): Use (ALIGNED_SIZEOF(*n) + N) in lieu of
&n->data[N] to ensure proper alignment.
2004-12-21 Hans Petter Jansson <hpj@novell.com>
* libedatasererui/e-name-selector.[ch]: Implement ENameSelector,
a convenience context that sets up and provides the shared model
and widgets for one name selection session.
* libedataserverui/Makefile.am (libedataserverui_1_2_la_SOURCES)
(libedataserveruiinclude_HEADERS): Add ENameSelector.
2004-12-20 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-12-20 JP Rosevear <jpr@novell.com>
* libedataserverui/test-name-selector.c (main): no need to init
mime utils explicitly any more
2004-12-20 Hans Petter Jansson <hpj@novell.com>
* libedataserverui/test-name-selector.c (main): Don't lie to
gnome_program_init () about our name.
2004-12-20 Hans Petter Jansson <hpj@novell.com>
* libedataserverui/e-contact-store.c (clear_contact_ptrarray):
Implement.
(free_contact_ptrarray): Use clear_contact_ptrarray () to unref the
contacts.
(clear_contact_source): Keep the primary contact array around even
when it's empty.
(query_contact_source): Make sure the book is opened before we
try to open a view to it. Set view to NULL if we can't get one.
(e_contact_store_add_book): Allocate temporary memory on stack.
(e_contact_store_remove_book): Free the primary contact array.
* libedataserverui/e-destination-store.c
(e_destination_store_insert_destination): Implement.
(e_destination_store_append_destination): Renamed from
_add_destination (). Connect to destination's "changed" signal.
(e_destination_store_remove_destination): Disconnect from
"changed" signal.
* libedataserverui/e-name-selector-dialog.c (add_destination):
Use e_destination_store_append_destination ().
* libedataserverui/test-name-selector.c (start_test): We don't
need the gconf_path. Set up an ENameSelectorEntry for testing.
(main): Remove junk related to gconf_path.
* libedataserverui/e-name-selector-entry.[ch]: Implement a completing
entry for Evolution contacts. Still considered unstable.
* libedataserverui/Makefile.am (libedataserverui_1_2_la_SOURCES)
(libedataserveruiinclude_HEADERS): Add ENameSelectorEntry to build.
2004-12-17 JP Rosevear <jpr@novell.com>
* libedataserverui/test-name-selector.c (close_dialog): destroy
the dialog and quit
(start_test): listen for any response so we can exit
* libedataserverui/e-name-selector-dialog.glade: don't make the
blank window visible
2004-12-16 Hans Petter Jansson <hpj@novell.com>
* libedataserverui/libedataserverui.pc.in: Remove gladedir definition,
it's useless and breaks the evo build.
2004-12-16 Hans Petter Jansson <hpj@novell.com>
* libedataserverui/test-name-selector.c: Implement a test for
ENameSelectorDialog.
* libedataserverui/Makefile.am (noinst_PROGRAMS): Build the test.
(test_name_selector_SOURCES)
(test_name_selector_LDADD): Build parameters for the test.
2004-12-16 Hans Petter Jansson <hpj@novell.com>
* libedataserver/e-data-server-marshal.list: Add NONE:STRING.
* libedataserverui/e-destination-store.[ch]: Implement
EDestinationStore, a GtkTreeModel interface to a list of
EDestinations.
* libedataserverui/e-name-selector-model.[ch]: Implement
ENameSelectorModel, a model that provides an EContactStore and a
list of EDestinationStores whose members are filtered out from
the EContactStore.
* libedataserverui/e-name-selector-dialog.[ch]: Implement
ENameSelectorDialog, a GtkDialog that lets you select EContacts
interactively, producing lists of EDestinations.
* libedataserverui/e-name-selector-dialog.glade: The Glade XML
specification for the ENameSelectorDialog interface.
* libedataserverui/e-contact-store.c (e_contact_store_get_contact):
Implement.
(e_contact_store_get_books): Free a small temp allocation.
(e_contact_store_remove_book): Get the pointer to the source struct.
* libedataserverui/libedataserverui.pc.in (gladedir): Set this var.
* Makefile.am (INCLUDES): Add a define providing the installed
Glade directory.
(libedataserverui_1_2_la_SOURCES): Add new files.
(libedataserveruiinclude_HEADERS): Add new files.
(glade_DATA): Add new Glade file.
(EXTRA_DIST): Dist glade_DATA.
2004-12-16 Hans Petter Jansson <hpj@novell.com>
* configure.in: Pull in libglade-2.0.
2004-12-09 Hans Petter Jansson <hpj@novell.com>
* libedataserverui/e-contact-store.[ch]: Implement EContactStore,
a GtkTreeModel interface to EBook views.
* libedataserverui/test-contact-store.c: Implement an interactive
test for EContactStore.
* libedataserverui/Makefile.am (libedataserveruiinclude_HEADERS)
(libedataserverui_1_2_la_SOURCES): Build e-contact-store.c and install
e-contact-store.h.
(test_contact_store_SOURCES)
(test_contact_store_LDADD): Build the interactive test for
EContactStore.
2004-12-09 JP Rosevear <jpr@novell.com>
* configure.in: check for zlib, for the gzip mime filter
2004-12-07 Rodrigo Moya <rodrigo@novell.com>
Fixes #70267
* libedataserver/e-file-cache.[ch] (e_file_cache_freeze_changes,
e_file_cache_thaw_changes): new functions to disable temporarily
writes to disk.
(e_file_cache_init): initialize new private members.
(e_file_cache_add_object, e_file_cache_remove_object): mark the
cache file as dirty when we are frozen.
2004-12-06 Rodney Dawes <dobey@novell.com>
* Makefile.am (EXTRA_DIST): Add iconv-detect.c
2004-12-06 Jeffrey Stedfast <fejj@novell.com>
* configure.in (E_DATA_SERVER_DEPS): Fixed to include $mozilla_nspr
* libedataserver/Makefile.am: Don't need to have NSS_CFLAGS or
NSS_LIBS here - they are included in E_DATA_SERVER_[CFLAGS,LIBS]
2004-12-03 Rodney Dawes <dobey@novell.com>
* configure.in: Remove the commented out OpenSSL block
Don't do pkg-config --exists for mozilla, just try to use the
PKG_CONFIG() macro, and set have_nss="no" if it fails
* libedataserver/Makefile.am: Add NSS_CFLAGS and NSS_LIBS for the
e-msgport code that needs it
2004-12-03 Jeffrey Stedfast <fejj@novell.com>
* configure.in: Display configuration info after configure runs
(S/MIME, SSL, Kerberos, etc)
2004-12-03 Not Zed <NotZed@Ximian.com>
* libedataserver/Makefile.am (libedataserver_1_2_la_LIBADD): add
iconv_libs to the library list.
2004-12-01 Hans Petter Jansson <hpj@novell.com>
* Makefile.am: Build libedataserverui after non-UI libraries that it
may depend on.
2004-11-28 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-11-25 Harish Krishnaswamy <kharish@novell.com>
* libedataserverui/e-source-selector.[ch]:
(selector_button_press_event): if rt-clicked on a source
group, set it as primary on the selector and emit a popup event.
(e_source_selector_get_primary_source_group): accessor for
primary source group.
2004-11-16 Not Zed <NotZed@Ximian.com>
* Makefile.am (DIST_SUBDIRS, SUBDIRS): Added camel.
* configure.in: Added more camel required config checks. Build
the camel makefiles. Not sure if this should be in its own
configure.in.
2004-11-15 Not Zed <NotZed@Ximian.com>
* libedataserver/e-util.c: include config.h.
* libedataserver/e-sexp.c: updated from evolution/e-util.
* libedataserver/e-memory.c: updated from evolution/e-util.
* iconv-detect.c: added iconv format checker.
* configure.in: add stftime checks and iconv charset format checks.
* libedataserver/e-util.c (e_strftime): copied from gal/e-util.h.
* libedataserver/e-time-utils.c (parse_with_strptime): reove
e-utf8 depenedncy.
* libedataserver/e-iconv.[ch]: Moved from gal/util.
* libedataserver/e-trie.[ch]: Moved from evolution/e-util.
* libedataserver/e-msgport.[ch]: Moved from evolution/e-util.
* libedataserver/e-time-utils.[ch]: Moved from evolution/e-util.
2004-11-05 Rodrigo Moya <rodrigo@novell.com>
* configure.in: use evolution-data-server-$BASE_VERSION as the
GETTEXT_PACKAGE.
2004-11-03 Ryan Skadberg <skadz@stigmata.org>
Fixes #69056
* configure.in: Fix GETTEXT_PACKAGE to be 1.2 to match EDS version.
2004-11-02 JP Rosevear <jpr@novell.com>
Fixes #68737
* configure.in: require libbonobo >= 2.4.2
2004-11-01 Hans Petter Jansson <hpj@novell.com>
* libdb/dbinc/mutex.h: Remove duplicated x86-64 mutex definition.
2004-10-27 JP Rosevear <jpr@novell.com>
* src/server.c: include just include signal.h for portability
2004-10-21 Rodrigo Moya <rodrigo@novell.com>
* libedataserverui/Makefile.am:
* libedataserverui/e-source-selector-dialog.[ch]: added source
selector dialog widget.
* libedataserverui/e-source-selector.h: added G_BEGIN/END_DECLS.
2004-10-14 JP Rosevear <jpr@novell.com>
* libedataserverui/e-source-selector.c: G_DEFINE_TYPE cleanups for
parent class
* libedataserverui/e-source-option-menu.c: ditto
2004-10-14 JP Rosevear <jpr@novell.com>
* libedataserverui/libedataserverui.pc.in: link to the right lib
and require libedataserver 1.2
2004-10-13 JP Rosevear <jpr@novell.com>
* libedataserver/e-data-server-marshal.list: add missing
marshaller list
2004-10-13 JP Rosevear <jpr@novell.com>
* Makefile.am: build libedataserverui
2004-10-13 JP Rosevear <jpr@novell.com>
* libedataserverui/test-source-option-menu.c: move from evolution
* libedataserverui/e-source-selector.c: ditto
* libedataserverui/e-source-selector.h: ditto
* libedataserverui/e-source-option-menu.c: ditto
* libedataserverui/e-source-option-menu.h: ditto
* libedataserverui/test-source-selector.c: ditto
* libedataserverui/libedataserverui.pc.in: add a pkg-config file
* libedataserverui/Makefile.am: build libedataserverui and test progs
* configure.in: add libtool versioning for libedataserverui and
output the files
2004-10-11 Hans Petter Jansson <hpj@ximian.com>
Probably fixes bugs #67600 and #65996.
* libdb/dbinc/mutex.h
* libdb/dist/config.hin
* libdb/dist/configure
* libdb/mutex/mut_tas.c
* libdb/lock/lock_region.c
* libdb/dist/aclocal/mutex.ac
* libdb/dist/aclocal/libtool.ac: Commit mutex portability changes for
x86-64 and a couple of other archs, and rebuild the generated
configure files.
2004-10-04 Chris Toshok <toshok@ximian.com>
* libedataserver/e-data-server-module.h: add the prototype for the
eds_module_* functions here, so modules can include this file
instead of writing their own prototypes in module sepcific
headers.
2004-09-30 Chris Toshok <toshok@ximian.com>
* evolution-data-server.pc.in (extensiondir,privlibdir): add these
variables so extension authors can find the place to install their
stuff.
2004-09-30 Chris Toshok <toshok@ximian.com>
* src/GNOME_Evolution_DataServer.server.in.in: add this
(previously generated) file to the build.
* src/GNOME_Evolution_DataServerLDAP.server.in.in,
src/GNOME_Evolution_DataServerNOLDAP.server.in.in: nuke these
files.
* src/Makefile.am (evolution_data_server_LDADD): remove all the
addressbook/calendar backend .la's from here.
(SERVER_IN_FILE): always use
GNOME_Evolution_DataServer.server.in.in here, and it's no longer
generated from LDAP/NOLDAP.
(EXTRA_DIST): remove
GNOME_Evolution_DataServer{LDAP,NOLDAP}.server.in.in
(CLEANFILES): remove GNOME_Evolution_DataServer.server.in.in.
* src/server.c (setup_books): replace hardcoded knowledge of
backends with a call to e_data_book_factory_register_backends.
(setup_cals): remove explicit backend registration with a call to
e_data_cal_factory_register_backends.
(main): call e_data_server_module_init.
* libedataserver/Makefile.am (INCLUDES): add extensiondir #define.
(libedataserver_la_SOURCES): add e-data-server-module.c
(libedataserverinclude_HEADERS): add e-data-server-module.h
* libedataserver/e-data-server-module.[ch]: new files, manage the
extensions. ripped almost entirely from Dave Camp's nautilus
module stuff.
* configure.in (privlibdir, extensiondir): new Makefile variables.
2004-09-23 Not Zed <NotZed@Ximian.com>
** See bug #66209
* libedataserver/e-source-list.c (sync_idle_callback): clear the
idle id after we've been called.
2004-09-23 JP Rosevear <jpr@novell.com>
* Makefile.am: don't hard code pkg config version
* configure.in: bump version, reset libtool versions because the
library is now versioned
* libedataserver/Makefile.am: build versioned lib and version
pkgconfig stuff
* src/Makefile.am: link against versioned libs
2004-09-22 Harish Krishnaswamy <kharish@novell.com>
* libedataserver/e-file-cache.[ch]:
(e_file_cache_get_keys): utility function that allows to get
a list of the keys of all the items in the cache. Used by
the fix for bug #61865
2004-09-21 Hans Petter Jansson <hpj@ximian.com>
* libdb/dbinc/mutex.h
* libdb/dist/configure
* libdb/dist/aclocal/mutex.ac
* libdb/dist/aclocal/options.ac:
Applied patch from Toshok that fixes issues related to NPTL and AMD
processors.
2004-09-16 JP Rosevear <jpr@novell.com>
* configure.in: update version to 1.1.0 and BASE_VERSION to 1.2
2004-09-14 Roozbeh Pournader <roozbeh@farsiweb.info>
* configure.in: Added 'fa' (Persian) to ALL_LINGUAG.
2004-09-14 Tomasz Kłoczko <kloczek@pld.org.pl>
* servers/groupwise/Makefile.am: automake fix for paralel build ("make -j<N>").
2004-09-10 Mohammad DAMT <mdamt@bisnisweb.com>
* configure.in: Added 'id' to ALL_LINGUAS
* po/id.po: Added Indonesian translation
2004-08-27 Akagic Amila <bono@linux.org.ba>
* configure.in: Added 'bs' to ALL_LINGUAS.
2004-08-26 JP Rosevear <jpr@novell.com>
* configure.in: bump verision, libtool numbers
2004-08-26 Not Zed <NotZed@Ximian.com>
** See bug #63051.
* libedataserver/e-util.c (e_util_utf8_strstrcase)
(e_util_utf8_strstrcasedecomp):
* libedataserver/e-sexp.c (e_sexp_term_eval):
* libedataserver/e-memory.c (e_memchunk_clean): use g_alloca for
stupid arcanely out of date and posixly-busted slowaris which
doesn't put alloca in stdlib.h like any sane system.
2004-08-25 Frederic Crozat <fcrozat@mandrakesoft.com>
* libedataserver/e-file-cache.c: (add_key_to_list),
(add_object_to_list):
Add missing include, fix warnings.
* libedataserver/e-util.c: add missing include.
* servers/groupwise/e-gw-connection.c:
(e_gw_connection_get_categories):
Fix type, causing warnings.
2004-08-23 Sivaiah Nallagatla <snallagatla@novell.com>
* libedataserver/e-file-cache.c (e_file_cache_set_property) :
assing the value set for filename property to priv->filename
2004-08-21 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Added «nb» to ALL_LINGUAS.
2004-08-13 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers, soup requirement
2004-08-13 Rodney Dawes <dobey@novell.com>
* acinclude.m4: Revert previous EVO_LDAP_CHECK changes, aren't working
as well as expceted and determined in testing
2004-08-13 Rodney Dawes <dobey@novell.com>
* acinclude.m4: Remove EVO_CHECK_LIB
Update EVO_LDAP_CHECK to support --with-openldap-{libs,includes}
2004-08-09 Ankit Patel <ankit@redhat.com>
* configure.in: Added Gujarati & Panjabi
2004-08-06 Sayamindu Dasgupta <sayamindu@gnome.org>
* configure.in: Added bn (Bengali) to ALL_LINGUAS.
2004-08-02 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-08-02 Not Zed <NotZed@Ximian.com>
* src/server.c (gnome_segv_handler): deadlock in non-main threads
so we only run once, and increment our recursive-call code
properly, and actually exit anyway. should fix infinite crash
loop crap.
2004-07-29 Rodney Dawes <dobey@novell.com>
* configure.in: Check for libgnomeui_serverdir with pkgconfig, and
AC_DEFINE it so we know where to find gnome_segv2
* src/server.c (gnome_segv_handler): Use GNOMEUI_SERVERDIR that we
now define at configure time to find the path to gnome_segv2
Fixes #62021
2004-07-19 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers, soup requirement
2004-07-16 Sivaiah Nallagatla <snallagatla@novell.com>
* libedataserver/e-source-group.c (e_source_group_remove_source)
(e_source_group_remove_source) : disconnet the signal
handler registered on source object for CHANGED singal
as we may not be interested in the changes in source once
it is removed form the group
2004-07-12 Chris Toshok <toshok@ximian.com>
[ most likely fixes #57999 ]
* libdb/dist/aclocal/options.ac: set the default unique name to
"_eds". this will append _eds to all externally visible libdb
symbols, so we can be sure it won't conflict with another libdb
(linked dynamically).
* libdb/dist/configure: regen after options.ac change.
* libdb/dist/.cvsignore: ignore db_int_def.h
2004-07-07 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-source.[ch] (e_source_build_absolute_uri): made
this function public.
2004-07-07 Not Zed <NotZed@Ximian.com>
* src/server.c (main): bind to the right charset (i.e. utf8). See
#58976.
2004-07-02 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-07-02 Chris Toshok <toshok@ximian.com>
[ fixes #60691 ]
* libedataserver/e-iterator.h: rename the "delete" member to
"remove", to fix c++ build.
* libedataserver/e-iterator.c (e_iterator_delete): same.
(e_iterator_class_init): same.
* libedataserver/e-list-iterator.c (e_list_iterator_class_init): same.
(e_list_iterator_remove): same.
2004-06-23 Jeffrey Stedfast <fejj@novell.com>
* src/server.c (main): Register a segv handler to popup bug-buddy
or whatever. Fixes bug #51165.
2004-06-14 Not Zed <NotZed@Ximian.com>
* libedataserver/e-source-group.c
(e_source_group_new_from_xmldoc): abort and fail if we get an xml
error setting up the new_source entries. #59592.
2004-06-03 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-06-02 Chris Toshok <toshok@ximian.com>
* configure.in: bump to 0.0.93.1 so we can rev evo's dep.
2004-06-01 Chris Toshok <toshok@ximian.com>
* libedataserver/e-source.c (e_source_set_absolute_uri): permit
NULL absolute_uri, so we can clear it.
2004-06-01 Chris Toshok <toshok@ximian.com>
* libedataserver/e-source.c (e_source_set_group): back out the
change that causes this function to always add an absolute_uri to
the ESource, as this uri is always used instead of the
relative_uri in e_source_get_uri, which is NOT what we want in 99%
of the cases. If you want an absolute uri, call
e_source_set_absolute_uri - it should never happen implicitly.
(e_source_copy): when copying an ESource don't create an absolute
uri when @source might have had one.
(e_source_set_absolute_uri): use strcmp, not ==. also,
"source->priv->readonly" governs whether or not data can be stored
in the folder represented by the ESource, not that the ESource
itself is readonly.
2004-05-27 Rodrigo Moya <rodrigo@novell.com>
* libedataserver/e-file-cache.[ch] (e_file_cache_clean): new function.
2004-05-27 Sushma Rai <rsushma@novell.com>
* libedataserver/e-source.[ch] (e_source_new_with_absolute_uri)
(e_source_set_absolute_uri)(e_source_peek_absolute_uri):
Added new.
* libedataserver/e-source.c: (e_source_set_group)(e_source_get_uri):
Build absolute URI only if source is not having it.
* libedataserver/e-source.c: (dump_common_to_xml_node): Writing
absolute URI to the file.
2004-05-26 Rodney Dawes <dobey@novell.com>
* configure.in: Make the ORBit >= 2.9.8 requirement more obvious to
work around a problem with the AM_PATH_ORBIT2() m4 function not failing
properly when < 2.9.8 is found
* libedataserver/libedataserver-1.0.pc.in (Requires): Add the ORBit
requirement here, so that dependents pick it up properly as well
2004-05-19 JP Rosevear <jpr@novell.com>
* configure.in: bump version, libtool numbers
2004-05-17 Rodney Dawes <dobey@ximian.com>
* libedataserver/Makefile.am (libedataserver_la_LIBADD):
Add $(E_DATA_SERVER_LIBS) to link all the right dependencies for the
mono bindings to work correctly
Fixes #58615
2004-05-04 Edward Rudd <urkle@outoforder.cc>
* addressbook/backend/ldap/e-book-backend-ldap.c: Added new complex
handlers for postal address fields. Bug # 45210
2004-05-03 JP Rosevear <jpr@ximian.com>
* libedataserver/e-memory.h: include glib.h for G_BEGIN_DECLS
* libedataserver/e-uid.h: ditto
* libedataserver/e-memory.c: remove unnecessary include
* libedataserver/e-uid.c: ditto
* libedataserver/e-list-iterator.h: order G_BEGIN_DECLS after the
glib include
2004-05-03 William Jon McCann <mccann@jhu.edu>
* libedataserver/e-account-list.h:
* libedataserver/e-account.h:
* libedataserver/e-db3-utils.h:
* libedataserver/e-dbhash.h:
* libedataserver/e-iterator.h:
* libedataserver/e-list-iterator.h:
* libedataserver/e-list.h:
* libedataserver/e-memory.h:
* libedataserver/e-sexp.h:
* libedataserver/e-source-group.h:
* libedataserver/e-source-list.h:
* libedataserver/e-source.h:
* libedataserver/e-uid.h:
* libedataserver/e-url.h:
* libedataserver/e-util.h:
* libedataserver/e-xml-hash-utils.h:
* libedataserver/md5-utils.h: Add missing G_BEGIN_DECLS and G_END_DECLS
2004-04-27 Jeffrey Stedfast <fejj@ximian.com>
* libedataserver/e-dbhash.c (e_dbhash_foreach_key): Revert
yesterday's changes. The data is useless for what I needed it for
(which was for migrating pilot-sync changelog files). md5sums are
...not what I wanted.
2004-04-26 Jeffrey Stedfast <fejj@ximian.com>
* libedataserver/e-dbhash.c (e_dbhash_foreach_key): Call func with
3 arguments (key, data, user_data).
2004-04-26 Adam Weinberger <adamw@gnome.org>
* configure.in: Added en_CA to ALL_LINGUAS.
2004-04-22 Jeffrey Stedfast <fejj@ximian.com>
* libedataserver/e-xml-hash-utils.c (e_xml_to_hash): Make sure
that 'key' always points to a malloc'd block of memory that we can
free.
(foreach_save_func): Use xmlEncodeEntitiesReentrant() rather than
xmlEncodeSpecialChars() since that latter doesn't encode 8bit
chars and the like.
(e_xmlhash_write): Save the doc to a tmp file first, only if
saving is successful rename() the file over the original.
2004-04-21 Chris Toshok <toshok@ximian.com>
* configure.in: bump version to 0.0.92.1.
2004-04-21 Tomasz KÅ?oczko <kloczek@pld.org.pl>
* acinclude.m4: minor fixes (added missing [] quotation).
2004-04-19 JP Rosevear <jpr@ximian.com>
* configure.in: bump version, libtool numbers
2004-04-13 Sivaiah Nallagatla <snallagatla@novell.com>
* configure.in: added LIBEGROUPWISE_* variables and corresponding
AC_SUBST for assinging libegroupwise version number. Defined a
varible LIBSOUP_REQUIRED. added
servers/groupwise/libegroupwise-1.0.pc for AC_OUTPUT section
* servers/groupwise/Makefile.am: added
libegroupwiseinclude_HEADERS, libegroupwise_la_LDFLAGS etc to make
groupwise apis installable
* servers/groupwise/libegroupwise-1.0.pc.in: new pc.in file
libegroupwise
2004-04-02 JP Rosevear <jpr@ximian.com>
* configure.in: bump version, libtool numbers
2004-03-25 William Jon McCann <mccann@jhu.edu>
* src/server.c (setup_cals): add registration of webcal protocol
for tasks.
2004-03-19 Rodrigo Moya <rodrigo@ximian.com>
* src/Makefile.am: added $SOUP_CFLAGS, needed for
e-cal-backend-groupwise.h.
2004-03-18 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-xml-hash-utils.c (e_xml_from_hash): set encoding
on XML document.
* libedataserver/e-file-cache.c (e_file_cache_set_property): if we fail
opening the cache file, just create it empty, don't fail.
2004-03-17 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: yank --enable-debug option, not needed anymore.
2004-03-15 Rodney Dawes <dobey@ximian.com>
* configure.in: Add LIBBONOBO_REQUIRED, and AC_SUBST() it
* evolution-data-server-1.0.pc.in:
* libedataserver/libedataserver-1.0.pc.in: Add @LIBBONOBO_REQUIRED@ for
the libbonobo dependency
2004-03-05 JP Rosevear <jpr@ximian.com>
* configure.in: bump version, libtool numbers and soup requirement
2004-02-26 JP Rosevear <jpr@ximian.com>
* Makefile.am: dist the libdb stuff properly
2004-02-26 Harish K <kharish@novell.com>
* servers/groupwise/e-gw-connection.c : the latest GW server
requires getFolderListRequest instead of the getContainerListRequest
message to get the ids of folders.
2004-02-24 Chris Toshok <toshok@ximian.com>
* libedataserver/e-source-group.c
(e_source_group_new_from_xmldoc): don't leak uid.
2004-02-23 JP Rosevear <jpr@ximian.com>
* Makefile.am: make sure to distclean libdb
* autogen.sh: require automake 1.6
* marshal.mk: make sure we use the srcdir as the location of the
list file
* libdb/dist/Makefile.in: add installcheck target that does
nothing, don't remove tags
* src/Makefile.am: add extra libical includes for srcdir !=
builddir
2004-02-20 Sivaiah Nallagatla <snallagatla@novell.com>
* configure.in : added addressbook/backends/groupwise/Makefile to AC_OUTPUT section
* src/Makefile.am : added libebookbackendgroupwise.la to LDADD
* src/server.c (setup_books) : register groupwise address book backend
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in
* src/GNOME_Evolution_DataServerLDAP.server.in.in : added groupwise to supported
address book protocols
2004-02-13 Chris Toshok <toshok@ximian.com>
* libedataserver/Makefile.am (libedataserver_la_LIBADD): use
libdb-4.1.la instead of libdb.a.
* libdb/dist/configure.ac: remove all the static/shared logic and
force libtool to be used. also, remove -rpath from the SOFLAGS.
without -rpath and -static libtool builds the equivalent of a
noinst_ automake library.
* libdb/dist/configure: regen configure from configure.ac.
2004-02-12 Chris Toshok <toshok@ximian.com>
* configure.in (AM_PATH_ORBIT2): up our requirement to 2.9.8.
2004-02-09 Michael Meeks <michael@ximian.com>
* libedataserver/e-list-iterator.c (e_list_iterator_new),
* libedataserver/e-list.c (e_list_get_iterator):
add preconditions for NULL list.
2004-02-09 JP Rosevear <jpr@ximian.com>
* configure.in: Bump version, libtool numbers
2004-02-08 Robert Sedak <robert.sedak@sk.htnet.hr>
* configure.in: Added "hr" (Croatian) to ALL_LINGUAS.
2004-02-06 Rodrigo Moya <rodrigo@ximian.com>
* configure.in:
* Makefile.am:
* servers/Makefile.am: added servers/ dir to build.
2004-02-03 Chris Toshok <toshok@ximian.com>
* libedataserver/libedataserver-1.0.pc.in (Requires): add
libxml-2.0 as the e-source* stuff needs it.
2004-01-30 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: require libsoup >= 2.1.6.
2004-01-26 JP Rosevear <jpr@ximian.com>
* configure.in: Bump libtool versions, version, soup requirement
2004-01-25 Sanlig Badral <badral@openmn.org>
* configure.in: Added "mn" to ALL_LINGUAS.
2004-01-24 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: s/GROUPWISE/SOUP.
2004-01-22 Thomas Cataldo <tcataldo@users.sourceforge.net>
* libedataserver/e-xml-hash-utils.c: (e_xml_to_hash):
Fix leak.
2004-01-21 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-file-cache.[ch] (e_file_cache_remove): new function
to remove the file cache from disk.
2004-01-21 JP Rosevear <jpr@ximian.com>
* configure.in: include calendar test stuff in AC_OUTPUT
2004-01-21 Rodrigo Moya <rodrigo@ximian.com>
Fixes nasty crash in e-d-s
* libedataserver/e-xml-hash-utils.[ch]: EXmlHashFunc gets 3 arguments.
(foreach_hash_func): pass the value also to the XML hash function.
* libedataserver/e-file-cache.c (add_object_to_list): use the correct
argument types.
2004-01-15 JP Rosevear <jpr@ximian.com>
* libedataserver/e-source-list.c (e_source_list_peek_source_any):
make sure we don't derefence a NULL pointer
2004-01-15 Mark McLoughlin <mark@skynet.ie>
* libedataserver/e-source-list.c: (load_from_gconf):
Fix leak.
* libedataserver/e-source.c: (dump_common_to_xml_node):
Don't output properties tag if there are no properties.
2004-01-14 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-file-cache.c (add_object_to_list): use the GList **
correctly when calling g_slist_prepend.
2004-01-13 Laurent Dhima <laurenti@alblinux.net>
* configure.in: Added "sq" to ALL_LINGUAS.
2004-01-12 JP Rosevear <jpr@ximian.com>
* configure.in: bump version, libtool numbers
2004-01-12 Rodrigo Moya <rodrigo@ximian.com>
* src/server-logging.c (server_log_handler): avoid CORBA allocations
by using the CORBA_any directly. Free the CORBA exception.
2004-01-10 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-file-cache.c (e_file_cache_set_property): fixed
memory leak.
2004-01-09 ERDI Gergo <cactus@cactus.rulez.org>
* libedataserver/e-source-group.h: added new read-only flag
* src/contactdates-server.c: new factory for ContactDates backend
* configure.in: Added new ContactDates calendar backend
2004-01-09 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-source-list.[ch]
(e_source_list_peek_group_by_name): new function.
2004-01-08 JP Rosevear <jpr@ximian.com>
* libedataserver/e-source-list.c (e_source_list_sync): don't
remove the gconf listener
2004-01-07 JP Rosevear <jpr@ximian.com>
* libedataserver/Makefile.am: remove DISABLE_DEPRECATED flags
2004-01-05 Christian Neumair <chris@gnome-de.org>
* addressbook/libebook/e-book.c: Generalize some more strings.
2004-01-05 Christian Neumair <chris@gnome-de.org>
* calendar/libedata-cal/e-cal-backend-sexp.c: Generalize some strings.
2004-01-05 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-file-cache.[ch] (e_file_cache_get_objects): new
function to get all objects in the cache.
2003-12-29 JP Rosevear <jpr@ximian.com>
* configure.in: bump libsoup requirement, version, libtool numbers
2003-12-23 Ross Burton <ross@burtonini.com>
* docs/reference/addressbook/libebook/tmpl/*:
* docs/reference/addressbook/libebook/libebook-docs.sgml:
* docs/reference/addressbook/libebook/libebook-sections.txt
* docs/reference/addressbook/libebook/libebook.types:
Updated API documentation.
2003-12-21 JP Rosevear <jpr@ximian.com>
* libedataserver/e-source-list.c (e_source_list_peek_source_any):
find a source if there is one
* libedataserver/e-source-list.h: add proto
2003-12-18 Rodrigo Moya <rodrigo@ximian.com>
* src/server.c (setup_logging, setup_interface_check): get the
BonoboObject's we create here out of the function.
(main): re-organize extra interfaces initialization code, and
make sure we unref all objects we have created.
2003-12-17 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (build_absolute_uri): Implement based on
factored-out code.
(e_source_set_group): Generate and keep an absolute URI so we can
work stand-alone if the group goes away.
(e_source_get_uri): Use build_absolute_uri ().
2003-12-16 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (e_source_equal): Implement. Compares
two sources based on UID and full URI.
2003-12-12 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: added --enable-debug argument.
2003-12-10 Chris Toshok <toshok@ximian.com>
* Makefile.am (ACLOCAL_AMFLAGS): remove
2003-12-08 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-file-cache.[ch]: renamed from e-cache.[ch]
to avoid conflicts with GAL's ECache class, which might get
registered before.
* libedataserver/Makefile.am: added new files.
2003-12-08 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-util.[ch] (e_util_mkdir_hier): added this
function from GAL, needed for the cache objects.
* libedataserver/e-cache.c (e_cache_set_property): make sure the
directory for the cache file exists by calling e_util_mkdir_hier.
2003-12-08 Rodrigo Moya <rodrigo@ximian.com>
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in:
* src/GNOME_Evolution_DataServerLDAP.server.in.in: added "groupwise" to
the "calendar:supported_protocols" property.
2003-12-07 JP Rosevear <jpr@ximian.com>
* src/GNOME_Evolution_DataServerLDAP.server.in.in: update the repo
and oaf iids
* src/server.c: set correct default oaf id's
* configure.in: Bump version
2003-12-07 JP Rosevear <jpr@ximian.com>
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: version our
repo_ids
* src/GNOME_Evolution_DataServerLDAP.server.in.in: ditto
2003-12-07 Chris Toshok <toshok@ximian.com>
* libdb/dist/Makefile.in: make install depend on all.
2003-12-07 JP Rosevear <jpr@ximian.com>
* configure.in: bump version and libsoup requirement
2003-12-04 JP Rosevear <jpr@ximian.com>
* libedataserver/e-source-list.c
(e_source_list_new_for_gconf_default): uses the default gconf
client for getting the source list
* libedataserver/e-source-list.h: add proto
2003-12-01 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-cache.[ch]: new class for a cache implementation,
to be shared between calendar and addressbook backends.
* libedataserver/Makefile.am: added new files.
2003-12-01 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (e_source_to_standalone_xml): Allow
creating XML from already standalone source.
(e_source_copy): Return the new source, not the one passed in. Duh.
2003-12-01 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (e_source_set_property): Emit changed
signal.
(copy_property): Implement.
(e_source_copy): Implement. Creates a standalone copy of a source.
2003-11-29 Chris Toshok <toshok@ximian.com>
* src/GNOME_Evolution_DataServerLDAP.server.in.in: add
DataServer_Logging oaf_server.
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: same.
* src/Evolution-DataServer.idl: add a Logging interface. the
events emitted are of type LogEvent.
* src/Makefile.am (evolution_data_server_SOURCES): add
server-logging.[ch]
* src/server.c (termination_handler): use g_message, not a printf.
(setup_logging): new function, register the log domains that'll
generate bonobo events.
(main): initialize the DataServer::Logging interface.
* src/server-logging.[ch]: a glib log handler that emits log
events via a BonoboEventSource.
2003-11-27 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (impl_finalize): Destroy properties table.
(init): Create properties table.
(import_properties): Implement. Imports properties from XML tree to
table.
(e_source_update_from_xml_node): Import properties to table.
(property_dump_cb): Implement. Dumps a property to XML tree.
(dump_common_to_xml_node): Dump properties to XML tree.
(e_source_get_property): Implement.
(e_source_set_property): Implement.
(e_source_foreach_property): Implement.
* libedataserver/test-source-list.c (dump_property): Implement.
(dump_source): Dump properties.
(on_idle_do_stuff): Add --property, --set-value, --unset-value args.
2003-11-26 Hans Petter Jansson <hpj@ximian.com>
* libedataserver/e-source.c (impl_finalize): Support absolute URI.
(e_source_update_from_xml_node): Ditto.
(e_source_get_uri): Ditto.
(dump_common_to_xml_node): Implement for parameters common to
dependent and standalone ESources.
(e_source_dump_to_xml_node): Use dump_common_to_xml_node ().
(e_source_to_standalone_xml): Implement.
(e_source_new_from_standalone_xml): Implement.
2003-11-26 Rodney Dawes <dobey@ximian.com>
* Makefile.am: remove \ on last line of LIBDB_FILES
2003-11-26 JP Rosevear <jpr@ximian.com>
* tags: add a dummy file for disting
2003-11-25 Chris Toshok <toshok@ximian.com>
* libdb/dist/configure.ac: switch the order of AC_DISABLE_SHARED
and AC_PROG_LIBTOOL.
* libdb/dist/configure: same.
* libedataserver/Makefile.am (libedataserver_la_LIBADD): switch to
dist/libdb.a
2003-11-25 Chris Toshok <toshok@ximian.com>
* libdb/dist/configure.ac: AC_DISABLE_SHARED.
* libdb/dist/configure: same.
* libedataserver/e-db3-utils.c: remove the db3 version checks.
* libedataserver/e-dbhash.c: same.
(e_dbhash_new): pass NULL for txn.
2003-11-25 Chris Toshok <toshok@ximian.com>
* libedataserver/Makefile.am (INCLUDES): use the embedded db4.
(libedataserver_la_LIBADD): explicitly list the db4 .a since I
suck at getting libtool to do what I want.
* libdb/dist/Makefile.in (install-strip install): don't do
anything here.
* Makefile.am (SUBDIRS): add libdb
(DIST_SUBDIRS): new variable, list everything in SUBDIRS except
libdb.
(LIBDB_FILES): list all the db4 files.
(EXTRA_DIST): add the db4 files explicitly to this.
* configure.in: remove all the db3 stuff, and build the embedded
db4.
2003-11-25 Aaron Weber <aaron@ximian.com>
* configure.in: Add 1.0 to GTK_DOC_CHECK: Rodney says "It won't
hurt to add it, and might helpsince GTK_DOC_CHECK is in
acinclude.m4 so you can build the stuffwithout gtk-doc
installed/working."
* docs/reference/addressbook/libebook/libebook-docs.sgml: added title
* docs/reference/calendar/libecal/libecal-docs.sgml: added title
* Plus added short/long descriptions and "See Also" where appropriate to:
* docs/reference/addressbook/libebook/tmpl/e-address-western.sgml
* docs/reference/addressbook/libebook/tmpl/e-book-async.sgml
* docs/reference/addressbook/libebook/tmpl/e-book-listener.sgml
* docs/reference/addressbook/libebook/tmpl/e-book-view-listener.sgml
* docs/reference/addressbook/libebook/tmpl/e-book-view.sgml
* docs/reference/addressbook/libebook/tmpl/e-book.sgml
* docs/reference/addressbook/libebook/tmpl/e-contact.sgml
* docs/reference/addressbook/libebook/tmpl/e-vcard.sgml
* docs/reference/calendar/libecal/tmpl/e-cal-component.sgml
* docs/reference/calendar/libecal/tmpl/e-cal-listener.sgml
* docs/reference/calendar/libecal/tmpl/e-cal-view-listener.sgml
* docs/reference/calendar/libecal/tmpl/e-cal-view.sgml
* docs/reference/calendar/libecal/tmpl/e-cal.sgml
2003-11-22 Chris Toshok <toshok@ximian.com>
* dist/NO-AUTO-GEN: don't autogen in here.
* libdb/.cvsignore: new file, ignore the generated Makefile foo.
* libdb/Makefile.am: new file so we can integrate libdb into our
build.
2003-11-20 Aaron Weber <aaron@ximian.com>
* docs/reference/calendar/libecal/libecal-sections.txt: moved private structs to private subsections
* docs/reference/addressbook/libebook/libebook-sections.txt: moved private structs to private subsections
* docs/reference/libebook/tmpl/e-book-async.sgml: made tentative stabs at some description (same for sgml files below).
* docs/reference/addressbook/libebook/tmpl/e-book-types.sgml
* docs/reference/addressbook/libebook/tmpl/e-book-view-listener.sgml
* docs/reference/addressbook/libebook/tmpl/e-book.sgml
* docs/reference/calendar/libecal/libecal-sections.txt
* docs/reference/calendar/libecal/tmpl/e-cal-component.sgml
* docs/reference/calendar/libecal/tmpl/e-cal-listener.sgml
* docs/reference/calendar/libecal/tmpl/e-cal.sgml
2003-11-20 Rodney Dawes <dobey@ximian.com>
* autogen.sh: Remove extra #!/bin/sh line
2003-11-19 JP Rosevear <jpr@ximian.com>
* MAINTAINERS: Update
2003-11-18 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: require libsoup version from CVS (2.1.1).
2003-11-17 Rodrigo Moya <rodrigo@ximian.com>
* configure.in: added libsoup-2.2 as a dependency for Groupwise.
2003-11-14 JP Rosevear <jpr@ximian.com>
* libedataserver/test-source-list.c: use only libgnome stuff (no
ui bits)
* libedataserver/e-source.c: ditto
* libedataserver/e-source-list.c: ditto
* libedataserver/e-source-group.c: remove use of gal bits, use
local marshallers
* libedataserver/Makefile.am: build and install e-source stuff
2003-11-14 Rodrigo Moya <rodrigo@ximian.com>
* src/server-interface-check.[ch]: fixed copyright comments.
2003-11-14 Rodrigo Moya <rodrigo@ximian.com>
* src/server.c (setup_cals): register the Groupwise calendar backend.
* src/Makefile.am:
* configure.in: added Groupwise calendar backend to build.
2003-11-14 Rodney Dawes <dobey@ximian.com>
* acinclude.m4: Add the GTK_DOC_CHECK m4 macro here, as we need it
2003-11-11 Chris Toshok <toshok@ximian.com>
* src/server.c (queue_termination): guard against multiple threads
here by using a mutex. also, always remove the
terminal_handler_id if one exists and reinstate it afterward.
This gives us the behavior of always lasting EXIT_TIMEOUT
milliseconds after the most recent book/calendar shutdown. Before
there was a potential for shutting down EXIT_TIMEOUT milliseconds
after the *first* book/calendar shutdown.
2003-11-10 JP Rosevear <jpr@ximian.com>
* Makefile.am: build docs
* configure.in: check for gtk-doc
2003-11-08 Hans Petter Jansson <hpj@ximian.com>
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: Correct typo
that broke GNOME_Evolution_DataServer_CalFactory. And another one
that broke GNOME_Evolution_DataServer_InterfaceCheck.
2003-11-07 Dan Winship <danw@ximian.com>
* configure.in: Remove a bunch more checks that
evolution-data-server doesn't need. Change "Evolution" to
"evolution-data-server" in two messages. Remove gtk-doc support
since there is currently no doc/ directory, and we'll want to use
the new GTK_DOC_CHECK macro when we add it back anyway.
* libedataserver/ename/*: Moved to libebook
* libedataserver/Makefile.am (SUBDIRS): Remove ename
(libedataserver_la_LIBADD): Remove libename
(libedataserver_la_LDFLAGS): Remove -no-undefined
* configure.in (AC_OUTPUT): Remove libedataserver/ename/Makefile
2003-11-07 Rodney Dawes <dobey@ximian.com>
* configure.in: Remove kerberos checks since we don't need them here
2003-11-06 JP Rosevear <jpr@ximian.com>
* configure.in: output new .pc file
* evolution-data-server-1.0.pc.in: pkconfig for idl
* libedataserver/ename/Makefile.am: don't install
* libedataserver/Makefile.am: link in libename
2003-11-06 Rodney Dawes <dobey@ximian.com>
* configure.in: Remove dependencies for GUI libs that we don't need
2003-11-06 JP Rosevear <jpr@ximian.com>
* libedataserver/Makefile.am: e-msgport is no longer needed
2003-11-06 JP Rosevear <jpr@ximian.com>
* src/server.c: include the addressbook backend files properly
* src/Makefile.am: link to the individual addressbook backends
2003-11-06 JP Rosevear <jpr@ximian.com>
* src/server.c: include the backend files properly
* src/Makefile.am: link to the individual backends
2003-11-06 JP Rosevear <jpr@ximian.com>
* configure.in (BASE_VERSION): clean up priv* dirs
* src/Makefile.am: install a version binary to libexecdir
* src/GNOME_Evolution_DataServerLDAP.server.in.in: reflect new
binary location
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: ditto
2003-11-05 JP Rosevear <jpr@ximian.com>
* src/server.c: following renaming of libedata-book
* src/server-interface.[hc]: ditto
2003-11-05 JP Rosevear <jpr@ximian.com>
* src/server.c: following renaming of libedata-cal
* src/server-interface.[hc]: ditto
2003-11-05 JP Rosevear <jpr@ximian.com>
* configure.in: make the priv*dir's sane
* libedataserver/libedataserver-1.0.pc.in: use privincludedir;
remove gal
* libedataserver/ename/Makefile.am: ditto
* libedataserver/Makefile.am: install to privincludedir
2003-11-05 Rodrigo Moya <rodrigo@ximian.com>
* libedataserver/e-util.[ch]: new files to contain a few functions
from GAL.
* libedataserver/Makefile.am: added new files.
* libedataserver/ename/e-address-western.c:
* libedataserver/e-account-list.c:
* libedataserver/e-account.c:
* src/server-interface-check.c:
* configure.in: removed libgal dependency.
2003-11-04 JP Rosevear <jpr@ximian.com>
* src/server.c: tidy up logging messages
2003-11-04 JP Rosevear <jpr@ximian.com>
* src/server.c: properly name space the oaf ids
* src/server-interface-check.c: use the correctly named poa
* src/server-interface-check.h: ditto
* src/GNOME_Evolution_DataServerLDAP.server.in.in: name space the
factories and interface check better
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: ditto
* src/Evolution-DataServer.idl: name space the interface check
properly
2003-11-04 JP Rosevear <jpr@ximian.com>
* src/Evolution-DataServer.idl: server interface check instead of
wombat interface check
* src/GNOME_Evolution_DataServerLDAP.server.in.in: ditto
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: ditto
* src/server.c: adjust to interface check renaming
* src/server-interface-check.[hc]: finish renaming so wombat
disappears
2003-11-04 JP Rosevear <jpr@ximian.com>
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in: ditto
* src/GNOME_Evolution_DataServerLDAP.server.in.in: update to point
to the right binary
* libedataserver/Makefile.am: install pkg-config file
2003-11-04 Hans Petter Jansson <hpj@ximian.com>
* src/GNOME_Evolution_DataServerNOLDAP.server.in.in:
* src/GNOME_Evolution_DataServerLDAP.server.in.in: Add "webcal" to
supported protocols.
2003-11-04 JP Rosevear <jpr@ximian.com>
* MAINTAINERS, TODO: update
2003-11-04 JP Rosevear <jpr@ximian.com>
* src/server-interface-check.h: use G_*_DECLS and include the data
server stub
* src/Makefile.am: compile Evolution-DataServer.idl and manipulate
the DataServer .server files
2003-11-03 JP Rosevear <jpr@ximian.com>
* configure.in: don't need EVO_DIR
2003-11-03 JP Rosevear <jpr@ximian.com>
* configure.in: remove trailing slash
2003-11-03 JP Rosevear <jpr@ximian.com>
* configure.in: add the trailing slash to the config subdir
|