1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151
|
2020-10-01 13:14:25 +1000 Chris Adams (f9a8f0fc)
* Remove use of deprecated QString methods
2020-10-01 12:52:54 +1000 Chris Adams (c94196fb)
* Use QMultiHash where appropriate
2019-12-08 19:31:14 +0100 Luca Weiss (c2026b9f)
* Add missing break in switch
2020-02-27 09:59:21 +0100 Edward Welbourne (6675d412)
* Deprecation fix: conversions between QList and QSet
2020-08-17 13:40:07 +0200 Edward Welbourne (d2823985)
* Use non-static data member initialization for default constructor
2020-08-17 13:35:54 +0200 Edward Welbourne (cfdeb163)
* Prefer QDate::startOfDay() over QDateTime(const QDate &)
2020-02-25 15:15:12 +0100 Edward Welbourne (848d4a2b)
* Use Qt::SplitBehavior in preference to QString::SplitBehavior
2020-06-27 12:54:51 +0200 Lars Schmertmann (2515b369)
* Add ; to Q_UNUSED
2020-02-09 23:32:57 +0300 Alberto Mardegan (e2314b05)
* QVersitContactImporter: read X-FOLKS-FAVOURITE property
2019-06-18 11:26:52 +0200 Marc Mutz (8fec622c)
* Eradicate Java-style iterators and mark the module free of them
2018-03-17 21:20:06 +0100 Tempura San (0b4522ae)
* Enable parsing of VCARDs with mixed line endings
2019-02-22 11:34:43 +1000 Chris Adams (3f567865)
* Don't build QtPIM for WebAssembly platform
2018-11-21 16:46:07 +1000 Chris Adams (380605ef)
* Improve handling of malformed Versit documents
2018-10-31 17:37:04 +1000 Chris Adams (cba19673)
* Work around malformed Versit documents with empty interior lines
2018-10-02 16:23:04 +1000 Chris Adams (189bc667)
* Fix bug in QRegularExpression usage
2018-10-24 12:02:29 +1000 Chris Adams (0d38970b)
* Don't include mocs inside namespaces
2018-08-04 22:55:16 +0200 Samuel Gaist (b1832969)
* Migrate QVCard(21|30)Writer classes to use QRegularExpression
2018-08-04 22:51:49 +0200 Samuel Gaist (49b80e6c)
* Migrate QOrganizerManagerData to use QRegularExpression
2018-08-04 22:44:56 +0200 Samuel Gaist (cc454d3c)
* Migrate QContactManagerData to use QRegularExpression
2018-07-19 18:22:12 +1000 Chris Adams (582018c0)
* Use hardcoded wait in specific test circumstance
2018-07-19 18:08:40 +1000 Chris Adams (bfd521d0)
* Adapt to new QVariant<QDateTime>().toString() behavior
2018-07-12 10:32:51 +1000 Chris Adams (93123aa0)
* Disable build on QNX, INTEGRITY, VxWorks, WinRT
2018-06-25 15:24:20 +1000 Chris Adams (565810ba)
* Fix license headers
2017-09-24 23:55:00 +0200 Kevin Funk (fcc18340)
* Replace Q_NULLPTR with nullptr
2017-11-08 22:12:10 +0300 Alberto Mardegan (0bd985be)
* QVersitOrganizerImporter: fix reading of visual reminder URL
2017-05-03 14:43:40 +0300 Jani Heikkinen (12b0bf84)
* Fix licensing
2017-01-22 13:18:05 +0100 Robin Burchell (107bbfdc)
* Switch to using QQmlExtensionInterface ID
2017-03-06 13:53:33 +0100 Ulf Hermann (5fd528fe)
* Drop condition around QFactoryLoader
2017-03-17 19:10:00 +1000 Chris Adams (59167a6f)
* Fix QVersitReader::testReading unit test
2017-03-10 19:07:16 +0100 Marc Mutz (e3ce7e34)
* Remove uses of QString::null
2017-03-12 09:33:52 +0100 Marc Mutz (e80e85a0)
* Blacklist tst_QVersitReader::testReading() on all platforms
2017-01-05 20:54:48 +0100 Robin Burchell (317e5efb)
* QtPim: Use the newly-introduced qmlWarning instead of qmlInfo
2016-12-03 08:43:37 -0800 Thiago Macieira (e3b79b98)
* Make operator<< match the code that is in operator>>
2016-12-03 08:49:01 -0800 Thiago Macieira (e796a90e)
* Match operator>>: m_detailType is deserialized as quint32
2016-11-01 21:08:22 -0700 Thiago Macieira (670652d8)
* Make symmetric the streaming of enums
2016-08-23 14:35:03 -0700 Jake Petroules (a318b5bf)
* Assign return value of non-mutating function back to variable
2016-08-23 14:36:33 -0700 Jake Petroules (3fb5cf4e)
* Suppress warning also with Clang
2016-09-08 13:54:42 +1000 Chris Adams (70733640)
* Fix breakage caused by QtQml "null" assignment semantics change in
5.8
2016-05-15 17:22:08 -0700 Thiago Macieira (02efef5e)
* Compile public headers with GCC 6
-Werror=zero-as-null-pointer-constant
2016-06-10 16:24:09 +1000 Chris Adams (d9eb1ae2)
* Install QtOrganizer example applications
2016-06-10 15:24:55 +1000 Chris Adams (a7f2781e)
* Fix QtVersit extended detail encoding unit test
2016-06-10 12:39:49 +1000 Chris Adams (857ec105)
* Fix QtVersit encoding of Gender details
2016-04-20 13:10:11 +1000 Chris Adams (15f85780)
* Fix crashing unit test for QDeclarativeOrganizerModel
2016-04-20 13:02:16 +1000 Chris Adams (1df28e5c)
* Coalesce signals from QDeclarativeOrganizerModel
2016-04-18 13:12:51 +1000 Chris Adams (3875c03d)
* Fix QDeclarativeContactVersion accessor and mutator
2016-04-07 13:51:49 +1000 Chris Adams (05b0eadc)
* Fix detail equality comparison to ignore provenance
2016-06-14 10:01:58 +0200 Edward Welbourne (5a43bedf)
* Remove spurious execute permissions (qtpim).
2016-04-05 19:11:04 +0200 Oswald Buddenhagen (5e115267)
* fix build with qt in namespace
2016-04-05 18:23:12 +0200 Oswald Buddenhagen (3b235418)
* purge symbian vestiges
2016-04-05 18:58:01 +0200 Oswald Buddenhagen (eb8899e1)
* re-enable
2016-03-15 11:11:44 -0300 Renato Araujo Oliveira Filho (98c8af10)
* Populate declarative Item id with the new id after it be created.
2015-12-02 16:23:27 -0300 Renato Araujo Oliveira Filho (de4cfc6b)
* QtVersit: Fix crash on access to static variable in multiple
threads.
2015-11-02 19:45:48 +1000 Chris Adams (56ac9714)
* QtOrganizer: fix date-only value handling to avoid UTC conversion
2015-11-02 21:08:16 +1000 Chris Adams (480303e8)
* QtContacts: detail-leaf-class API improvements
2015-10-09 01:56:30 +0200 Christian Stromme (6ff25f70)
* Fix crash in the declarative contact model
2015-07-20 15:37:31 +1000 Chris Adams (3eb14202)
* Improve QContactDetail performance and memory usage
2015-07-07 17:35:11 -0700 Thiago Macieira (3ff8c2c5)
* Add the GPLv3 license text
2015-08-14 14:03:05 +0200 Oswald Buddenhagen (a24e049c)
* *** disable
2015-08-05 15:07:43 +1000 Chris Adams (bbec06e7)
* Provide QContactDetail microbenchmark
2015-08-20 17:23:21 +1000 Chris Adams (ecfbb3be)
* Detect the collation used by each manager before verifying sorting
results
2015-09-02 14:26:53 +1000 Chris Adams (b0fc1305)
* Add unit test plugins path to library paths for test
2015-04-22 15:23:19 +0200 Stephan Binner (fa74ad6e)
* do not shadow members
2015-04-23 11:45:04 +0200 Stephan Binner (36dbbdda)
* fix compilation with -developer-build option
2015-04-23 14:54:13 +0200 Alex Blasche (c2a8fbbc)
* Cleanup headers to pass new headersclean test
2015-03-26 11:49:19 -0300 Renato Araujo Oliveira Filho (7687b224)
* Added 'detailTypesHint' property to
QDeclarativeOrganizerItemFetchHint.
2015-04-16 16:00:20 +1000 Matt Vogt (057193a3)
* Fix unit test failures
2015-04-14 09:03:09 +0200 Alex Blasche (4244ebe8)
* More license test fixes
2015-04-13 13:49:50 +0200 Alex Blasche (89620dcf)
* Make tests compile even when serviceframework was built
2015-04-13 13:21:01 +0200 Alex Blasche (72b75f16)
* Update contact URL
2015-04-13 12:49:53 +0200 Alex Blasche (94266fee)
* Project files do not have a license header
2015-04-13 11:58:50 +0200 Alex Blasche (b34c956f)
* Fix licenses for QtPIM
2015-04-13 11:23:36 +0200 Alex Blasche (b2a951a1)
* Update license files for qtpim repo
2015-04-09 10:46:26 +0200 Alex Blasche (272c4482)
* Remove stable branch from qtpim/dev sync.profile
2015-02-12 14:06:18 +0400 Konstantin Ritt (18e3d741)
* Replace defaultCollection() with defaultCollectionId()
2015-02-12 08:30:35 +0400 Konstantin Ritt (86db658e)
* Do not mention QtOrganizer in QtContacts module
2015-02-12 08:10:51 +0400 Konstantin Ritt (c44db2f3)
* Fix build with Qt 5.5 (current dev)
2015-01-19 17:08:23 -0300 Renato Araujo Oliveira Filho (86aa5627)
* Add QContactCollection.
2015-01-12 20:21:44 +0300 Dmitry Shachnev (c08717fb)
* Add missing qmetatype.h include to qorganizerrecurrencerule.h
2014-12-23 08:08:21 +1000 Matt Vogt (d8a9ba4d)
* Make ID component parameter escaping functions consistent
2014-12-23 08:06:04 +1000 Matt Vogt (6aa227bc)
* PIM ID local components do not need to be human-readable
2014-12-28 22:47:04 +0800 Zhang Xingtao (f922e68d)
* Fix build: error: ‘guard’ was not declared in this scope
2014-12-06 14:12:24 +0100 Alejandro Exojo (88783ec1)
* Remove unnecessary \inqmlmodule parameter
2014-09-25 17:45:09 -0300 Renato Araujo Oliveira Filho (f506ede1)
* Avoid update contact model if it is marked as autoUpdate false.
2014-06-25 15:00:25 -0300 Renato Araujo Oliveira Filho (b198d0a2)
* Fixed contact import into QDeclarativeContactModel.
2014-08-22 18:50:30 -0300 Renato Araujo Oliveira Filho (4c0b26cf)
* Added list of imported ids as argument for importItems.
2014-08-04 09:52:09 +1000 Matt Vogt (74dbcf92)
* Cache deserialized manager URIs to promote data sharing
2014-08-01 15:22:03 +1000 Matt Vogt (7a2b179f)
* Unify semantics of ID classes
2014-07-24 15:33:20 +1000 Matt Vogt (9c16c52e)
* [versit] SubTypeLandline does not imply TEL;TYPE=ISDN
2014-08-01 11:50:09 +1000 Matt Vogt (1501a8f9)
* Cache managerUri value to promote string data sharing
2014-05-13 21:47:16 +0300 Konstantin Ritt (39f686ed)
* Simplify contact and organizer ID representations
2014-05-22 19:18:55 +1000 Matt Vogt (3b77fe17)
* Extend changed signals to optionally report changed types
2014-07-14 13:27:05 +1000 Matt Vogt (69065fa9)
* [versit] Ensure VCARD output is deterministic
2014-05-16 17:38:07 +0300 Konstantin Ritt (73db06da)
* Get rid of StorageLocations concept
2014-06-16 18:20:31 +1000 Matt Vogt (b28dc2d9)
* Revert change to QContactRelationship participant types
2014-06-30 11:16:19 -0300 Renato Araujo Oliveira Filho (8f8c830c)
* Fixed DisplayName conversion to vcard.
2014-06-13 14:00:13 +1000 Matt Vogt (03be9e28)
* Add QContactType::TypeFacet value
2014-06-18 09:34:56 +1000 Matt Vogt (98b97520)
* Fix organizer tests in outlying timezones
2014-06-12 11:30:12 +1000 Matt Vogt (2c771de9)
* Remove jsondb backends
2014-05-30 11:10:39 +1000 Matt Vogt (dfa4e6b7)
* Add the qmlcontacts test back to the set of auto tests
2014-05-13 21:29:34 +0300 Konstantin Ritt (98b9bf1a)
* Improve Q*Id autotests a bit
2014-05-13 20:41:28 +0300 Konstantin Ritt (b9cdb21b)
* Centralize the URI and the ID string parse/build code
2014-05-13 21:48:08 -0300 Renato Araujo Oliveira Filho (29475884)
* Avoid create a new contact engine model if the current one is
equal.
2014-05-13 23:08:12 -0300 Renato Araujo Oliveira Filho (8f97f049)
* Fixed memory leak on QDeclarativeContactModel private data.
2014-05-13 20:28:49 +0300 Konstantin Ritt (d86f5210)
* Decrease code duplication
2014-05-13 13:01:38 +1000 Matt Vogt (b7cf9cf5)
* Correct expected results when using ICU
2014-05-01 12:56:32 +1000 Matt Vogt (fb2df2ac)
* Make the qcontactmanagerfiltering test pass
2014-05-01 12:55:15 +1000 Matt Vogt (8030932b)
* Fix the generic implementation of relationship filtering
2014-03-03 21:37:10 -0800 Matt Vogt (55287ea7)
* Remove dependency on jsondb for generic tests
2014-02-27 19:54:00 -0800 Matt Vogt (d55fd205)
* Remove the 'local' text from the IdFilter description
2014-05-10 12:12:44 -0300 Renato Araujo Oliveira Filho (e1523b7a)
* Export QDeclarativeContactInvalidFilter and
QDeclarativeOrganizerItemInvalidFilter to QML.
2014-04-20 09:25:45 +0300 Konstantin Ritt (3d01233e)
* [ContactModel] Make better use of shared filter and fetchHint
2014-04-20 09:22:00 +0300 Konstantin Ritt (5f2ab3b3)
* [OrganizerModel] Don't delete fetchHint we don't own
2014-04-19 08:08:39 +0300 Konstantin Ritt (e9da7d24)
* [OrganizerModel] Don't track the inactive filter
2014-03-07 15:11:27 -0300 Renato Araujo Oliveira Filho (cfc2068c)
* Delete declarative contact after remove it from the model.
2014-04-17 12:57:09 +0200 Albert Astals Cid (b5017b86)
* Do not delete m_filter on the destructor
2014-04-14 12:17:21 +0300 Konstantin Ritt (d147efd5)
* Minor clean-up for plugin .pro files
2014-04-14 12:15:12 +0300 Konstantin Ritt (9808635f)
* Make use of $$MODULE_PLUGIN_TYPES
2014-01-21 16:45:51 +0200 Michael Krasnyk (cbe7d1e7)
* QmlOrganizer: delete removed collection safely
2014-03-19 06:24:18 +0200 Konstantin Ritt (ffdcfd88)
* Make *AbstractRequest::type() non-virtual
2014-03-19 06:04:50 +0200 Konstantin Ritt (e259036c)
* [Organizer] Fix declarative meta types registration
2014-04-02 14:56:01 +0200 Alex Blasche (fddd0db1)
* Merge branch 'master' into dev
2014-01-22 19:13:32 +0200 Konstantin Ritt (5c7aec06)
* Fix QOrganizerItemFilter::testDebugStreamOut() test failures
2014-03-25 10:26:01 +0100 Alex Blasche (e5fef81c)
* Work around issues in qtpim. The primary target is to unblock
integration
2014-02-04 15:27:34 -0300 Renato Araujo Oliveira Filho (cdbe3d4a)
* Set the contact detail parent to avoid memory leak.
2014-02-02 14:08:26 -0800 Thiago Macieira (4aa58022)
* Normalize signal & slot signatures in connection
2014-01-17 21:05:35 +0200 Konstantin Ritt (e0c5eebe)
* Make simple wrappers don't derive from QQmlParserStatus
2014-01-21 20:59:14 +0200 Konstantin Ritt (412ecec4)
* Make sort order with unset field act on a detail presence
2014-01-20 17:20:02 +0200 Michael Krasnyk (e68e01ef)
* Porting qmlorganizer auto tests
2014-01-20 14:38:59 +0200 Konstantin Ritt (55f494c8)
* [QOrganizerCollection] Add SecondaryColor metadata key
2014-01-10 15:00:55 +0200 Michael Krasnyk (04260961)
* QtOrganizer: reduce code duplication
2014-01-21 02:42:40 +0200 Konstantin Ritt (e4f71237)
* [Memory backend] Allow to modify the default collection
2014-01-20 15:43:42 +0200 Michael Krasnyk (3846fcc8)
* QmlOrganizer: fix limit date conversion in a recurrence rule
2014-01-05 11:07:22 +0200 Michael Krasnyk (0fb0096d)
* QtOrganizer: fix initial date for recurrent events
2014-01-10 15:19:24 +0200 Michael Krasnyk (457c5af8)
* QtOrganizer: unescape &equ; character in engine id string
2014-01-17 19:31:34 +0100 Oswald Buddenhagen (332bdc92)
* whitespace fixes
2014-01-17 14:47:50 +0200 Michael Krasnyk (58cd127d)
* Emit valueChanged on appending a recurrence detail
2014-01-17 23:34:19 +0200 Konstantin Ritt (748be923)
* Optimize QOrganizerManagerEngine::addSorted()
2014-01-17 23:01:52 +0200 Konstantin Ritt (5d04be57)
* Avoid gcc warnings
2014-01-17 23:00:41 +0200 Konstantin Ritt (62016126)
* Use STL algorithms instead of Qt's deprecated ones
2013-12-20 15:55:13 +0200 Michael Krasnyk (b81f79f1)
* Emit dataChanged() on item modifications
2014-01-07 00:12:17 +0200 Konstantin Ritt (45d104a6)
* [QOrganizerItemMemoryEngine] Optimize work with collections
2014-01-09 23:20:16 +0200 Konstantin Ritt (1600963c)
* Treat detail filter with unset field like a "detail exists" filter
2014-01-14 07:04:48 +0200 Konstantin Ritt (8071fa2b)
* Don't use deprecated qtAddLibrary()
2014-01-14 06:58:43 +0200 Konstantin Ritt (f8f14ee1)
* Make QtDeclarative an optional dependency
2014-01-14 06:55:08 +0200 Konstantin Ritt (105868cd)
* Fix threaded request synchronization issues
2014-01-10 21:51:38 +0200 Konstantin Ritt (b9d5f941)
* Separate SortOrder tests out from Filter tests
2014-01-06 11:10:40 +0200 Konstantin Ritt (26b2eab7)
* Require the request be non-null
2014-01-03 13:00:30 +0200 Michael Krasnyk (3275aad7)
* QtOrganizer: fix SortOrder initialization
2014-01-04 15:21:12 +0200 Konstantin Ritt (d34ef577)
* Notify the request destruction from Q*AbstractRequest dtor
2014-01-06 23:43:01 +0200 Konstantin Ritt (b1f256e6)
* Check that the request don't get deleted in a slot
2014-01-08 08:08:45 +0200 Konstantin Ritt (1ca89333)
* Use the installed headers
2013-12-26 22:46:11 +0200 Konstantin Ritt (7487a1bf)
* [QOrganizerItemMemoryEngine] Reduce code duplication in saveItem()
2013-12-21 19:09:40 +0200 Konstantin Ritt (23136ae2)
* Organizer: Optimize assignment and comparison operators
2014-01-04 14:24:14 +0200 Konstantin Ritt (01700e16)
* Fix thread-safety for Q*AbstractRequest in operator debug
2014-01-04 16:33:41 +0200 Konstantin Ritt (8db5ea31)
* Don't mention "mobility" in QtPim
2014-01-06 10:38:48 +0200 Konstantin Ritt (ef85e412)
* Move the declarative bindings out of the module namespace
2014-01-03 07:35:56 +0200 Michael Krasnyk (75d049f7)
* QtOrganizer: fix QML enum property types
2013-12-26 23:22:49 +0200 Konstantin Ritt (941c0aa4)
* [QOrganizerItemMemoryEngine] Decrease code duplication
2013-12-26 14:14:03 +0200 Konstantin Ritt (8afee885)
* [QOrganizerItemMemoryEngine] Fix collection change notifications
2013-12-26 14:50:45 +0200 Konstantin Ritt (28cd5aa9)
* [QOrganizerItemMemoryEngine] Don't keep anonymous store in hash
2013-12-25 23:55:53 +0200 Konstantin Ritt (d5221e61)
* [QOrganizerItemMemoryEngineData] Get rid of extra ref counter
2013-12-26 14:53:37 +0200 Konstantin Ritt (bc97f51c)
* [QOrganizerItemMemoryEngineData] Get rid of unused member
2013-12-20 12:00:45 +1000 Chris Adams (5275f553)
* [versit] Handle malformed concatentations of vCard files
2013-12-21 18:58:59 +0200 Konstantin Ritt (87b76ba7)
* Drop some refactoring leftovers
2013-12-17 14:17:13 +0200 Konstantin Ritt (667c2c22)
* Declare missing operators for
QOrganizerItemFetchHint::OptimizationHints
2013-12-16 12:45:15 +0200 Konstantin Ritt (3c0c998a)
* Add missing comparison operators
2013-12-13 16:06:53 +0200 Michael Krasnyk (88fa07b2)
* Qt Organizer: do not emit unnecessary collectionsChanged signals
2013-11-29 15:55:40 +0200 Michael Krasnyk (b152468c)
* Fix declarative model update for items with a modified order
2013-12-12 16:31:21 +0100 Sergio Ahumada (bbaf90d0)
* Remove unused qtjsbackend module from sync.profile
2013-08-06 21:46:22 -0300 Renato Araujo Oliveira Filho (e6c2773a)
* Update QDeclarativeContact contactId field after creation.
2013-09-10 19:57:52 -0300 Renato Araujo Oliveira Filho (902c55a2)
* Fixed "removePreferredDetail" locks due a infinite loop.
2013-08-13 10:52:16 -0300 Gustavo Pichorim Boiko (7bd0f9ad)
* Update the contact model when the sort and filter change.
2013-06-03 15:59:41 -0700 Thiago Macieira (eb9cb81d)
* headersclean: Fix compiler warnings
2013-08-06 15:58:20 -0300 Renato Araujo Oliveira Filho (b60951d5)
* Avoid wrong contact update into the model.
2013-08-07 00:54:25 +0200 Robin Burchell (04b4c9b9)
* Put the memory manager last, if it is found.
2013-07-19 15:23:01 -0300 Renato Araujo Oliveira Filho (8e9575f3)
* Added support to preferredDetails on QML Contact.
2013-07-19 20:59:17 -0300 Renato Araujo Oliveira Filho (10399332)
* Fixed QDeclarativeContactDetailFilter.
2013-07-19 13:06:22 -0300 Renato Araujo Oliveira Filho (82ee035a)
* Fixed QContact::preferredDetails()
2013-07-09 16:14:19 -0300 Renato Araujo Oliveira Filho (c2d4ab7a)
* Prevent duplicated contacts on QDeclarativeContactModel.
2013-07-01 11:45:35 -0300 Renato Araujo Oliveira Filho (6476912e)
* Created protocol property in QDeclarativeContactOnlineAccount.
2013-07-13 21:41:41 -0300 Renato Araujo Oliveira Filho (4112f913)
* Fixed test to make sure that works with 5.1.1.
2013-06-17 17:21:13 -0300 Renato Araujo Oliveira Filho (bf098ff3)
* Fixed vcard contact importer.
2013-06-26 14:31:14 -0300 Renato Araujo Oliveira Filho (d38b4bba)
* Changed QDeclarativeContactModel behavior to quick show results.
2013-06-20 18:17:19 -0300 Renato Araujo Oliveira Filho (563a242d)
* Fixed import contact from a vcard.
2013-05-23 13:48:01 +0300 Timo Jyrinki (1c596431)
* Add license files mandated by (L)GPL and FDL.
2013-06-12 12:12:44 +1000 Matt Vogt (5ec99cd4)
* Allow overriding default QContactManagerEngine via env var
2013-05-16 15:39:37 -0300 Renato Araujo Oliveira Filho (71bcc158)
* Fixed vcard parse to check for OTHER context.
2013-05-28 20:11:29 +0200 Liang Qi (977578ba)
* Update all plugins.qmltypes files
2013-05-10 14:15:23 -0300 Renato Araujo Oliveira Filho (a102eace)
* Fixed QML bindings.
2012-12-21 11:47:06 +0100 Oswald Buddenhagen (9352f485)
* make use of qtHaveModule()
2013-02-14 14:24:03 +0200 Timo Jyrinki (aab663da)
* Make QtContacts and QtOrganizer identified modules.
2013-03-13 11:54:14 +0100 Oswald Buddenhagen (d6d67f39)
* fix compile
2013-02-26 12:52:24 +0100 Oswald Buddenhagen (8d094099)
* define MODULE_VERSION
2013-03-13 11:55:12 +0100 Sergio Ahumada (c12bf367)
* Adjust QT*_{BEGIN,END}_NAMESPACE macro
2013-03-26 12:16:50 +0100 Sergio Ahumada (eff4e1fc)
* Add missing QT_{BEGIN,END}_NAMESPACE_<MODULE>
2012-12-14 19:37:50 +0100 Oswald Buddenhagen (50473186)
* remove some unnecessary CONFIG additions
2012-12-19 13:18:58 +0100 Stephen Kelly (4f5631d9)
* Fix Q_DECLARE_METATYPE uses.
2012-12-13 11:06:57 +0100 Oswald Buddenhagen (cf6bdf99)
* point dependencies to stable branches
2012-12-03 21:42:12 +0100 Oswald Buddenhagen (24a41212)
* remove symbian vestiges
2012-10-24 15:34:57 +0200 Oswald Buddenhagen (2c24dab3)
* adjust to qt_plugin.prf changes
2012-10-31 18:42:45 +0200 Xizhi Zhu (de6ee2ee)
* Removed the dead "simulator" code path from project file.
2012-08-07 07:51:45 +0300 Xizhi Zhu (a4796571)
* Removed deprecated APIs.
2012-10-23 14:56:11 +0200 Jan Arve Saether (a4cefa29)
* Prepare removal of Softkeys API
2012-10-23 16:46:11 +0200 Marco Bubke (099111a9)
* Fix the qml list interface
2012-10-16 18:10:43 +0200 Jerome Pasion (7804109c)
* Doc: Added information about modules from qtdoc's modules.qdoc
file.
2012-10-11 12:53:10 +0200 Jerome Pasion (5cd7318e)
* Doc: Removed legal notifications.
2012-10-11 15:18:21 +0200 Tor Arne Vestbø (89eb7bf9)
* Update docs after modularization of docs
2012-10-10 12:50:45 +0200 Jerome Pasion (d56ea69e)
* Qt Organizer: Added \module and \qmlmodule pages.
2012-10-10 14:16:48 +0200 Jerome Pasion (2d61d4c6)
* Qt Contacts: Added reference pages and polished documentation
2012-10-10 14:49:27 +0200 Jerome Pasion (a5adde7b)
* Qt Versit: Added \module page and polished links in landing page.
2012-10-10 17:36:12 +0200 Jędrzej Nowacki (c5c26faa)
* Build fix, after QVariant change.
2012-09-27 16:34:30 +0200 Jerome Pasion (e7772415)
* Qt PIM: Fixed examples' .pro files
2012-09-25 12:22:24 +0200 Jerome Pasion (ea8102b6)
* HTML template: Updated copyright notice from Nokia to Digia Plc
2012-09-24 17:31:21 +0200 Jerome Pasion (3d0cffa9)
* Doc: Updated license headers from Nokia to Digia Plc
2012-09-21 18:08:54 +0200 Jerome Pasion (165eadd8)
* Qt Versit: Modularized documentation
2012-09-24 08:38:22 +0300 Iikka Eklund (d2361e07)
* Change copyrights from Nokia to Digia
2012-09-21 13:12:39 +0200 Jerome Pasion (a9924b36)
* doc/global: Updated templates according to the qtbase standard
2012-09-20 14:43:32 +0200 Jerome Pasion (846b1302)
* Qt Contacts: modularized documentation
2012-09-17 17:14:44 +0200 Jerome Pasion (cad1d101)
* Qt Versit: Added Qt Versit's qdocconf file
2012-09-17 16:43:47 +0200 Jerome Pasion (085edb5d)
* Doc: Add doc/global contents
2012-09-17 16:03:04 +0200 Jerome Pasion (e120a146)
* Qt Contacts: Added a .qdocconf file for the Qt Contacts module
2012-09-17 15:54:04 +0200 Jerome Pasion (f1a0abc1)
* Qt Contacts: Modularized examples and examples documentation
2012-09-17 14:33:44 +0200 Geir Vattekar (38ea0ce6)
* Doc: Added module pages for QtContacts
2012-09-03 12:11:07 +0200 Oswald Buddenhagen (1f755635)
* centralize load(qt_build_config)s in .qmake.conf
2012-09-11 14:38:23 +0200 Leena Miettinen (cbab708e)
* Doc: add landing page for Qt Versit
2012-09-10 16:10:12 +0200 Leena Miettinen (cfda8de0)
* Doc: add landing page for Qt Organizer
2012-09-04 16:45:39 +0200 Leena Miettinen (b8f24d9e)
* Doc: add a landing page for Qt Contacts Module
2012-08-29 21:40:04 +0200 Thiago Macieira (1b72ab3c)
* Update the git-archive export options
2012-08-29 10:06:00 +0200 Sergio Ahumada (53676199)
* Remove dependency on QtJsonDb
2012-08-16 18:06:53 +0300 Xizhi Zhu (a869b9ab)
* Removed one un-used file.
2012-08-06 19:33:03 +0300 Xizhi Zhu (3177b628)
* Removed storage location related APIs from QtOrganizer.
2012-06-07 10:51:45 +0300 Mikko Suonio (7bff49d3)
* Adjust handling of fetch request ids in the organizer model
2012-06-13 11:13:14 +0300 Mikko Suonio (d1e001fc)
* Support more data types in extended details in versitorganizer
2012-08-07 19:11:23 +0200 Oswald Buddenhagen (080749cb)
* follow rename of qt_module_config.prf to qt_module.prf
2012-06-11 16:33:45 +0300 ikause (f574450f)
* Organizer - Improving Qml documentation
2012-08-01 16:43:19 +0200 Thiago Macieira (d66c0abb)
* Set the Qt API level to compatibility mode in all tests.
2012-07-27 18:45:54 +0200 Jerome Pasion (f4073884)
* Doc: Changed \qmlclass to \qmltype and added \instantiates
2012-07-24 16:49:12 +0200 Mitch Curtis (1a9dc16c)
* Remove duplicate link to ISO 8601 in qtpim external resources file.
2012-07-23 09:52:22 +0200 Stephen Kelly (83135c51)
* Add the CMake directory created during unit testing to .gitignore.
2012-06-23 11:33:30 +0200 Stephen Kelly (9c301d29)
* Test that the package configs for QtPim work.
2012-07-09 19:03:53 +0200 Oswald Buddenhagen (37856c02)
* use centralized qml plugin project handling
2012-07-03 21:40:24 +0200 Oswald Buddenhagen (fc8213c6)
* use centralized handling of QT_BUILD_PARTS
2012-07-13 17:07:49 +0200 Oswald Buddenhagen (05bba497)
* make the unit test find the uninstalled plugins
2012-06-22 11:09:25 +0200 Thiago Macieira (8e7d1db9)
* Update the export macros in qtpim.git
2012-07-12 10:14:31 +0200 Mitch Curtis (766db169)
* Fix qorganizerrecurrencerule compile error.
2012-04-12 12:29:43 +0200 Oswald Buddenhagen (798d97cc)
* build system cleanups
2012-04-12 11:11:17 +0200 Oswald Buddenhagen (834de473)
* auto-generate module pris
2012-06-28 11:27:50 +0200 Friedemann Kleint (4d6785be)
* Fix build/ add missing includes for QDataStream.
2012-06-28 13:56:32 +0200 Oswald Buddenhagen (aada1336)
* contactmanger{,details} tests need jsondb
2012-06-11 15:54:38 +0300 Kranthi Kuntala (b16ac370)
* qtcontactsdocsample is now building
2012-06-13 11:28:08 +0300 Peng Wu (b167a150)
* Add allDay property to occurrences in Organizer QML API
2012-05-30 14:44:02 +0300 Mika Tikkakoski (f673526c)
* Added partial save tests to qcontactjsondb test module.
2012-06-11 14:38:47 +0300 Kranthi Kuntala (23764099)
* better variable names for code snippets
2012-06-11 12:18:17 +0300 Kranthi Kuntala (89bb87ad)
* fix doc typo
2012-06-11 12:01:11 +0300 Kranthi Kuntala (df58558a)
* Correct docs for Enum order
2012-06-11 11:49:17 +0300 Kranthi Kuntala (d3501c02)
* Doc Corrections for wrong return value for relatedContacts Method
2012-06-11 11:28:09 +0300 ikause (ed8c85bf)
* Cleaning up old keywords from documentation
2012-06-11 09:46:19 +0300 Mikko Suonio (89121c2b)
* Fix small issues in contacts documentation
2012-06-11 14:45:46 +0300 Mikko Suonio (52ce4c04)
* Remove unnecessary semicolons
2012-06-12 10:47:49 +0300 Mikko Suonio (56c0d4d5)
* Fix some documentation issues in organizer
2012-06-11 15:03:48 +0300 ikause (4c0217e1)
* QmlOrganizer - Fix the used filter DetailFilter->DetailFieldFilter
2012-06-06 15:31:38 +0300 ikause (7043d34c)
* Organizer - fix for not storing location-longitude information
2012-06-06 11:57:06 +0300 Mikko Suonio (6bc12739)
* Remove fetchContacts request ids from the hash when completed
2012-06-06 11:44:02 +0300 Mikko Suonio (030b3be4)
* Adjust handling of contact fetch request ids in the model
2012-06-07 10:06:12 +0300 ikause (d0aa1ca2)
* Organizer - Test also fields on qml e2e tests
2012-05-04 12:02:53 +0300 Mikko Suonio (760dbedc)
* Implement organizer versit export/import of extended details
2012-06-06 22:41:52 +0200 Kent Hansen (f6a95b27)
* Fix compilation of examples when Qt is configured with -no-widgets
2012-06-06 10:47:39 +0300 Mikko Suonio (e757d3ae)
* Fix some contacts qml tests for the memory backend
2012-06-06 09:14:39 +0300 ikause (beb0f83f)
* Fix for organizer qml test's missing test data
2012-06-06 10:02:19 +0300 Cristiano di Flora (5ac47aac)
* Fix organizer versit export_import qml tests.
2012-05-18 13:22:50 +0300 Cristiano di Flora (c31771ee)
* Refactoring Organizer detailFilter class.
2012-06-04 16:12:17 +0300 acox (0adbe2e2)
* updated OrganizerModel fetchItems method
2012-05-16 10:31:46 +0300 Cristiano di Flora (45207237)
* Do not use dangling EngineId pointers in jsondb plugin.
2012-06-04 12:49:27 +0300 Pekka Kauppila (505db972)
* Refactored Contacts async tests
2012-05-17 14:42:38 +0300 Mika Tikkakoski (c03c7331)
* Improved detecting and reporting errors on storage locations.
2012-06-04 14:39:32 +0300 Mika Tikkakoski (01d73409)
* Fixed jsondb field name for organization details.
2012-06-01 14:43:36 +0300 Mikko Suonio (3160a0c6)
* Make member variables of contacts jsondb converter private
2012-05-25 14:20:18 +0300 acox (a30092e5)
* Adding fetchItems to QML Organizer Model
2012-06-01 11:20:29 +0300 Mikko Suonio (13d2fd8e)
* Enable qml test for fetching contacts from multiple partitions
2012-05-16 11:40:07 +0300 Mikko Suonio (fa11a100)
* Support more data types in extended details in versit for contacts
2012-04-17 16:48:09 +0300 Mikko Suonio (ccb1286f)
* Add qml test for fetching contacts from multiple partitions
2012-05-23 11:13:11 +0300 Mikko Suonio (6ac8cae1)
* Improve contact extended detail documentation
2012-05-30 19:26:24 +0200 Stephen Kelly (8c19724e)
* Use QPointer instead of QWeakPointer for tracking QObjects.
2012-05-31 08:35:54 +0300 Cristiano di Flora (3983f789)
* Use QStringLiteral macro instead of QLatin1String where possible.
2012-05-23 13:47:45 +0300 Mikko Suonio (aae77c1a)
* Improve qml tests for extended detail in contacts
2012-05-25 12:02:20 +0300 Mikko Suonio (cbcbebf6)
* Refactor contacts qml tests accessing jsondb
2012-05-25 13:58:25 +0300 Mikko Suonio (4a7f093d)
* Change the format of birthday date for contacts in jsondb
2012-05-29 10:40:04 +0300 Mikko Suonio (035289e7)
* Adjust static_casts in versit and versit organizer
2012-05-09 11:58:03 +0300 Cristiano di Flora (c3cdebcf)
* Add support for ical's VALARM to versit organizer.
2012-05-16 15:03:34 +0300 Cristiano di Flora (ecc6fa35)
* Don't use invalid list index in warning message.
2012-05-03 16:13:10 +0300 Mika Tikkakoski (c9498d77)
* Added support for QOrganizerItemVersion detail to versit.
2012-05-23 10:33:23 +0300 ikause (9929f010)
* Fix the error propagation on OrganizerModel backend creation
2012-05-25 10:15:48 +0300 Päivi Rajala (847c2e70)
* Increased modelChanged signal waiting times in Organizer QML tests
2012-05-23 11:29:12 +0300 Mikko Suonio (b8adf692)
* Improve contact detail documentation
2012-04-19 15:36:18 +0300 Mikko Suonio (c526904d)
* Add more qml tests for contact saving
2012-04-27 14:12:40 +0300 Tommi Anttila (086631c6)
* Support QOrganizerItemTag in QVersitOrganizer
2012-05-22 16:52:34 +0300 Mikko Suonio (9a883641)
* Remove an unused local variable
2012-05-23 14:21:30 +0300 ikause (fc0472b0)
* Workaround for SignalSpy-problems on Organizer Qml tests
2012-05-22 14:32:35 +0300 ikause (a31801c6)
* Finetune Organizer storage location errors
2012-04-17 15:58:14 +0300 Tommi Anttila (b7f85326)
* Remove QContactManagerEngineV2Wrapper, add PartialSave
functionality
2012-05-23 10:41:53 +0300 Päivi Rajala (97e3979f)
* Removed duplicate thread creation from organizer jsondb backend
2012-05-21 14:41:33 +0300 Mikko Suonio (2fa577c5)
* Add qml module version to \inqmlmodule references
2012-04-25 15:18:11 +0300 ikause (5eab6b91)
* Extend testing of Organizer storage locations
2012-05-21 12:57:31 +0300 ikause (6a0cfbe3)
* Improve storage location error handling on Organizer jsondb backend
2012-05-18 18:19:06 +0300 Päivi Rajala (abf50e35)
* Fix handling of multiple recurrence rules in organizer
2012-05-18 14:16:29 +0300 Päivi Rajala (d0d0fb70)
* Modified Organizer QML test utility method
2012-05-16 10:10:25 +0300 Cristiano di Flora (2ccf8677)
* Don't try to access item details list if it's empty.
2012-05-14 14:18:49 +0300 Mikko Suonio (d4cacff8)
* Reorder declarative contact detail properties alphabetically
2012-04-23 12:04:27 +0300 Claudio Brunelli (29911cfd)
* Guard warning messages
2012-05-09 11:45:01 +0300 Peng Wu (cb775135)
* Optimize organizer item fetch request
2012-05-11 11:59:24 +0200 Friedemann Kleint (d10e6300)
* QtPim: Fix compiler warnings.
2012-05-10 16:38:38 +0200 Kent Hansen (7a827529)
* Don't use QtDeclarative compat module
2012-05-09 12:26:07 +0300 ikause (1806d30a)
* Split OrganizerModel update()
2012-05-11 14:44:04 +0300 ikause (1c628e6e)
* Small improvement to OrganizerModel filter documentation
2012-03-06 11:11:36 +0200 Pekka Kauppila (dc257a32)
* Added tests and refactored tst_organizerrecurrence.qml
2012-05-11 10:17:20 +0300 ikause (089abe18)
* Fix problem with destroying SignalSpy on Organizer Qml tests
2012-05-08 14:02:28 +0300 Mikko Suonio (8c4f1c6e)
* Do not restart the timer after every notification from jsondb
2012-05-10 13:53:32 +0200 Marius Storm-Olsen (a69cf1f7)
* Doc: Fix \sa usage
2012-05-07 11:46:26 +0300 Cristiano di Flora (bc3d5655)
* Remove a few compilation warnings from contacts auto tests.
2012-04-30 13:49:07 +0300 Kranthi Kuntala (db4bde3c)
* remove personId detail from the contacts API
2012-04-27 15:55:05 +0300 Kranthi Kuntala (6d74c61b)
* remove startdate and enddate fields from QContactOrganization
2012-03-26 18:09:52 +0300 Mika Tikkakoski (45a75396)
* Storage locations support for fetch by id request.
2012-05-07 12:04:44 +0300 Päivi Rajala (bcd6c74f)
* Fix for determining occurrence end date in Organizer
2012-04-27 22:30:53 +0200 Kent Hansen (75020a0c)
* Port QContactManager to QMetaMethod-based connectNotify()
2012-05-07 16:06:12 +0300 Cristiano di Flora (f7a4fa28)
* Ignore "almost empty" details instead of marking them as invalid.
2012-05-04 15:14:26 +0300 Cristiano di Flora (12e7f643)
* Force "Replace" conflictResolutionMode in jsondb plugins.
2012-05-07 11:03:00 +0300 Cristiano di Flora (7c1c7e71)
* Change sanitation behaviour for empty phone number in jsondb
plugin.
2012-05-07 14:05:58 +0300 Peng Wu (ed1ed854)
* Fix organizer compiling warning
2012-04-26 11:33:40 +0300 Mikko Suonio (2a4d4e89)
* Implement contacts versit export/import of extended details
2012-05-03 11:56:30 +0300 Cristiano di Flora (b0a39f44)
* Fix crash in synchronous contacts save+update for jsondb backend.
2012-05-04 15:47:26 +0300 Cristiano di Flora (64b86a1f)
* Don't re-define QTCONTACTS_VERSION constant statically.
2012-05-03 17:05:12 +0200 Thiago Macieira (394e6e14)
* Change uses of {to,from}Ascii to {to,from}Latin1
2012-04-27 16:44:32 +0300 Mika Tikkakoski (5c1fc9ab)
* Added support for QContactVersion detail to Versit.
2012-05-03 09:06:38 +0300 Päivi Rajala (af7b755e)
* Fixing Organizer event view object notification handling
2012-05-02 08:36:11 +0200 Kent Hansen (967b8bac)
* Get rid of double bookkeeping in signal proxying
2012-04-30 15:56:50 +0300 Päivi Rajala (6af528c8)
* Fixed the handling of event view objects
2012-04-30 14:54:48 +0300 Cristiano di Flora (3f748df0)
* Fix email,phone,extdetail handling in qmlcontacts example.
2012-04-30 00:37:56 +0300 acox (822b02d6)
* Documentation broken, renaming qdoc3 to qdoc
2012-04-24 16:28:49 +0300 Tommi Anttila (a29abc5e)
* Support ringtone urls in Versit exports.
2012-04-27 18:03:11 +0300 Päivi Rajala (6c33882c)
* Improve OrganizerModel.containsItems
2012-04-27 10:49:30 +0300 Mikko Suonio (a225b6eb)
* Fix handling of contact avatar in Versit contact importer
2012-04-25 09:40:30 +0300 Claudio Brunelli (9904e280)
* Implement contact favorite detail import/export in Versit
2012-04-27 20:41:45 +0300 acox (e4319fb3)
* Corrected spelling mistake
2012-04-27 16:02:39 +0300 Kranthi Kuntala (476f3e3c)
* export/import contacts phonenumber subtypes are working now
2012-04-24 18:11:25 +0300 Mikko Suonio (cfec3f80)
* Fix retrieving favorite detail from a contact
2012-04-25 14:28:58 +0300 Tommi Anttila (857afd3f)
* Support QContactPhoneNumber subtype LandLine in Versit
import/export
2012-04-23 21:47:22 +1000 Jason McDonald (d58a7c50)
* Remove insignificant_test markers for maemo platform.
2012-04-23 21:20:28 +0300 Xizhi Zhu (05aaf9c4)
* C++ STL style iterator is faster.
2012-04-24 15:57:48 +0300 Mika Tikkakoski (4d8b72e8)
* Proper encoding for gender in versit contacts exporter.
2012-04-11 12:35:03 +0300 Kranthi Kuntala (71525bf0)
* Support MatchFlags properly in Contacts Jsondb backend
2012-04-23 18:29:46 +0300 acox (f54009fb)
* qversitreader setData multiple times fixed.
2012-04-04 14:55:01 +0300 acox (8289af0c)
* Improve QUOTED-PRINTABLE handling of malformed Versit Property
2012-04-17 12:57:31 +0300 Mikko Suonio (4fada078)
* Make manager configurable in contacts qml tests
2012-04-26 14:07:46 +0300 Peng Wu (521eee8d)
* Disable request cancelling tests for JsonDb backend
2012-04-23 13:26:28 +0300 ikause (2de7e1e7)
* Loosen storage location restrictions on Organizer
2012-04-17 14:21:05 +0300 Mikko Suonio (e5b898bb)
* Correct the contact index in prefetch response handling
2012-04-20 15:57:15 +0300 Peng Wu (367dd56b)
* Remove alarm object operation from Jsondb backend
2012-04-16 12:10:27 +0300 Päivi Rajala (204a7bf0)
* Fix for OrganizerModel.containsItems method
2012-04-20 09:37:18 +0300 ikause (03485301)
* Organizer - Fix to handle EventView objects correctly
2012-04-18 10:40:20 +0300 Pekka Kauppila (a03045ec)
* Use percentageComplete in QML tests
2012-04-19 16:37:06 +0300 Cristiano di Flora (a33f4e1c)
* Don't save test data from contacts benchmarks init
2012-04-11 16:16:39 +0300 Claudio Brunelli (9414c8ed)
* Add function QContactJsonDbConverter::sanitizeContactDetailString
2012-04-17 13:40:35 +0300 Mikko Suonio (9fb776a8)
* Improve prefetch request error handling in contacts jsondb plugin
2012-04-17 16:06:50 +0300 ikause (cba48582)
* Make organizer qml tests more robust
2012-04-18 12:13:52 +0300 ikause (f86bef82)
* Improve QmlOrganizer
2012-04-17 16:00:21 +0300 Mikko Suonio (db1ff54c)
* Refactor contacts qml jsondb partition tests
2012-04-18 14:04:39 +0300 Cristiano di Flora (8644636a)
* Add supportedDetailTypes method to QContactManager.
2012-04-12 16:30:38 +0300 Cristiano di Flora (dcb439b3)
* Removing unused engine argument from two jsondbconverter methods.
2012-04-18 12:28:05 +0200 Kent Hansen (af0e4b90)
* Fix test failures due to QVariant debug output change
2012-04-19 12:08:52 +0300 Päivi Rajala (836caea5)
* Fix Organizer memory backend fetch for export request
2012-04-18 15:03:03 +0200 Kent Hansen (06b8e063)
* Disable tests that assume QHash is ordered
2012-04-17 15:27:56 +0300 ikause (f7e06ec5)
* Improving organizer qml test robustness
2012-03-27 15:26:31 +0300 Pekka Kauppila (c80c4596)
* Improved robustness of Organizer QML tests
2012-04-10 13:19:45 +0300 Cristiano di Flora (6e1cf8fb)
* Use switch / case statement when converting storage locations
2012-03-22 15:32:34 +0200 Mikko Suonio (5970be0f)
* Add qml tests for saving multiple contact detail instances
2012-04-17 09:09:03 +0300 Päivi Rajala (5aad5ae0)
* Updated QtCreator's Organizer related auto-completion definitions
2012-04-16 14:17:02 +0300 ikause (75a46aa0)
* Improving OrganizerModel versit related documentation
2012-04-16 16:50:50 +0300 Mikko Suonio (e0fe3a9a)
* Disable copying of contacts jsondb plugin internal classes
2012-04-04 15:58:28 +0300 Cristiano di Flora (3c36abbf)
* Remove QContactJsonDbEngineData class.
2012-04-16 16:16:51 +0300 Päivi Rajala (b6fabde8)
* Added missing include file generation to organizer
2012-04-16 15:28:34 +0300 Cristiano di Flora (cc961605)
* Do not use forward declaration of QUuid.
2012-04-16 12:48:46 +0300 Mikko Suonio (50d5675e)
* Fix contacts documentation warnings related to storage locations
2012-02-14 12:27:33 +0200 Mikko Suonio (51674c97)
* Introducing StorageLocations in QtContacts.
2012-04-16 11:20:14 +0300 Pekka Kauppila (01da69ee)
* Use -config-path argument when starting JsonDb in jsondbprocess.h
2012-04-16 12:02:35 +0300 ikause (48c96a46)
* Improved the organizer qml versit test
2012-04-04 10:40:34 +0300 Xizhi Zhu (47342246)
* Remove several obsoleted APIs.
2012-04-05 11:26:00 +0300 Cristiano di Flora (6dd7e441)
* Use QUuid instead of QString to store jsondb uuid in
qcontactjsondbid.
2012-04-16 09:19:23 +0300 ikause (b0e35675)
* Fixed organizer qml testcase to have correct classification type
2012-04-12 14:19:18 +0300 ikause (eee6b36e)
* storageLocation() getter to QOrganizerItem/CollectionEngineId level
2012-04-12 16:29:58 +0300 ikause (5ab5cc08)
* Cleaning up Organizer header inclusions
2012-03-31 12:46:28 +0300 acox (fb838c2a)
* Added iCal supported information as was done with vCard in Versit
2012-04-03 06:55:12 +0300 acox (7923bf95)
* Remove incorrect reference to compatibleContact.
2012-04-10 14:43:53 +0300 ikause (c5eb66bf)
* Organizer - More robust testing for storage locations
2012-04-12 14:35:28 +0300 Cristiano di Flora (d0843e7f)
* Make jsondb organizer tests more defensive.
2012-04-12 13:52:06 +0300 ikause (40fc8edf)
* Fixed QOrganizerJsonDbEngine::itemsForExport() missing
storagelocation
2012-04-10 20:59:23 +0300 Cristiano di Flora (b8643776)
* Remove dependencies from QtGui
2012-04-05 10:35:18 +0300 Cristiano di Flora (67cf5cb4)
* Remove workaround for fixed bug in qobject_cast.
2012-04-12 11:23:01 +0300 ikause (41b99a1a)
* Improve the storage location documentation of OrganizerModel
2012-04-11 10:47:33 +0300 Cristiano di Flora (d9283e3e)
* Fix regression on organizer side due to latest changes in qtjsondb.
2012-03-14 09:17:55 +0200 Päivi Rajala (efdf0388)
* Change Organizer Classification detail value from string to enum
2012-04-05 15:14:55 +0300 ikause (c2aeee63)
* Delete also the alarm object from jsondb during event deletion
2012-03-09 16:59:53 +0200 Pekka Kauppila (05f59776)
* Added test case for exporting all Contact details
2012-03-15 10:16:13 +0200 Päivi Rajala (a089c93e)
* Fixing the handling of "date-only" parameters in Organizer QML API
2012-04-03 09:34:15 +0300 Xizhi Zhu (dfdf15cb)
* Make the item field value unique.
2012-04-04 10:35:08 +0300 Xizhi Zhu (bec06dbe)
* Several fixes.
2012-04-04 10:12:06 +0300 Xizhi Zhu (057cb20f)
* Don't save default values for recurrence rule into JsonDb.
2012-04-03 15:55:45 +0300 Xizhi Zhu (a745190e)
* Fix various coding style issues.
2012-04-03 15:41:15 +0300 Xizhi Zhu (1ed8e9e6)
* Beef-up the detail handling.
2012-04-03 11:46:40 +0300 Xizhi Zhu (30b071a2)
* Remove QOrganizerItemTag::Anniversary static const string.
2012-04-03 11:46:27 +0300 Xizhi Zhu (65bf5696)
* Minor fixes for coding style.
2012-04-03 10:33:58 +0300 Xizhi Zhu (24d48eb0)
* Fix various issues in docs.
2012-01-31 14:36:12 +0100 Xizhi Zhu (76246f21)
* Treats backend version as a normal parameter.
2012-01-30 17:51:45 +0100 Xizhi Zhu (11b30f61)
* Use enumeration for collection metadata keys.
2012-02-09 16:02:49 +0200 ikause (60ca9a8b)
* Removal of hardcoded update() -call
2012-02-10 10:12:27 +0200 ikause (c45fef6d)
* Optimizing id string construction
2012-03-20 20:54:56 +0200 acox (9b5f128e)
* Corrected exportItems in organizer to be Ical rather than VCard
2012-03-27 16:50:54 +0300 ikause (20778743)
* Storagelocation support for Organizer items
2012-01-30 16:13:10 +0100 Xizhi Zhu (a17aaa1a)
* Metadata should be compared for collections.
2012-01-30 15:59:40 +0100 Xizhi Zhu (83dca71f)
* Fix coding style issues.
2012-04-02 16:20:56 +0300 Xizhi Zhu (b9f84082)
* Remove one un-needed macro.
2012-04-02 16:06:40 +0300 Xizhi Zhu (99c3d863)
* Use STL-style iterators, since they are faster.
2012-04-02 17:00:24 +0300 Pekka Kauppila (4b7fe542)
* Fixed another bug when setting reminders occurring 0s before event
2012-04-03 14:57:52 +0300 Cristiano di Flora (d6c2d5ff)
* Remove obsoleted references to customLabel.
2012-04-02 13:26:40 +0300 Pekka Kauppila (e844cce6)
* Added timestamp property to QDeclarativeContact
2012-03-21 09:01:15 +0200 Cristiano di Flora (940495f3)
* Enable faster appending of details to QContact objects.
2012-04-03 09:04:34 +0300 Xizhi Zhu (751ac260)
* Better variable names.
2012-04-03 09:03:09 +0300 Xizhi Zhu (287798a8)
* Directly access engine ID for better performance.
2012-04-02 14:49:10 +0300 Xizhi Zhu (be8da4ae)
* Clean-up header inclusion for JsonDb backend.
2012-04-02 13:26:02 +0300 Xizhi Zhu (422f2501)
* Remove some un-needed code from JsonDb backend.
2012-03-13 13:38:39 +0200 Kranthi Kuntala (dfebfb17)
* refactor displayLabel detail in contacts API
2012-04-02 12:06:00 +0300 Xizhi Zhu (d59fc09a)
* Add warning for private headers in JsonDb backend.
2012-04-02 12:01:40 +0300 Xizhi Zhu (179ff3a3)
* Remove un-needed comments from qorganizerjsondbid.cpp.
2012-04-02 09:52:15 +0300 Cristiano di Flora (999b9e03)
* QVersitReader should open the device upon setData call.
2012-03-31 15:32:45 +0300 Mikko Suonio (186f474a)
* Register some types in contacts Qt Quick plugin and backends
2012-03-28 16:21:43 +0300 Cristiano di Flora (af5d3a47)
* Replace BIG if / elseif block with better switch / case.
2012-03-29 15:53:34 +0300 ikause (b53e27d0)
* Storagelocation support for Organizer collections
2012-03-14 16:36:02 +0200 Cristiano di Flora (16f258ff)
* Sanitize phone number strings from / to jsondb.
2012-03-01 17:52:50 +0200 Kranthi Kuntala (e48f1cdc)
* Adapt Contacts API to new QtJsonDb C++ API
2012-03-29 15:53:34 +0300 ikause (6f4ae05b)
* Improve JsonDbProcess c++ test utility
2012-03-15 14:36:35 +0200 Kranthi Kuntala (80955a7d)
* remove hasFeature method from contacts Api
2012-03-29 11:59:19 +0300 Pekka Kauppila (1b387cb8)
* Check for existing JsonDb process before starting new one in tests
2012-03-27 15:51:53 +0300 Peng Wu (f6cf5d00)
* Fix alarm object create bug
2012-03-27 11:45:26 +0300 Peng Wu (9673377c)
* Fix alarm object creation bug
2012-03-27 13:11:23 +0300 Pekka Kauppila (d8e33d76)
* Fixed test reliability problems caused by
tst_organizeraudiblereminder.qml
2012-03-27 10:31:43 +0300 Mikko Suonio (c9051ecc)
* Improve contacts qml tests.
2012-03-14 11:54:12 +0200 Claudio Brunelli (bfcf62df)
* "Lazy" plugin load in contacts.
2012-03-22 17:08:13 +0200 Cristiano di Flora (4fc178e4)
* Fix examples/qmlcontacts and bring it back to life.
2012-02-24 14:51:50 +0200 Mikko Suonio (525a03ea)
* Enable qcontactjsondb tests in builds.
2012-03-22 13:58:09 +0200 Cristiano di Flora (c8a0e2e0)
* QtContacts does not depend on Gui module anymore.
2012-03-21 10:16:25 +0200 Pekka Kauppila (2ec16c34)
* Skip maliciousmanager test if the plugin is not present
2011-11-30 16:01:40 +0200 Kranthi Kuntala (fa4f8c77)
* qml benchmark tests for contacts
2012-03-20 16:27:49 +0200 Cristiano di Flora (5d93d937)
* Add QContactGuid detail handling to jsondb backend.
2012-03-20 16:06:59 +0200 Cristiano di Flora (7b83107d)
* Add QContactSyncTarget detail handling to jsondb backend.
2012-03-20 01:44:37 +0200 acox (069fa890)
* Moved qmlorganizer to test/system folder
2012-03-21 01:08:39 +0200 acox (94c53cbd)
* QTBUG-24902 : Fixed by removing the PIM overview
2012-03-20 16:48:22 +0200 Cristiano di Flora (f280d824)
* Fix a small styling issue introduced by commit 5a16d782
2012-03-20 13:36:03 +0100 Xizhi Zhu (08d94605)
* Fixed several warnings in docs.
2012-03-14 21:04:01 +0200 acox (fa367b3c)
* Documentation errors 191->171
2012-03-19 13:26:19 +0200 Mikko Suonio (5a16d782)
* Remove unused member variable from declarative contact model.
2012-03-16 09:29:08 +0200 Mikko Suonio (091b2af7)
* Adjust debug logging in qml contact model
2012-03-20 11:33:05 +0200 Cristiano di Flora (f341ce71)
* Updating Organizer's plugins.qmltypes.
2012-03-20 09:30:36 +0200 Cristiano di Flora (eb0ec9c6)
* Improving performance of qcontact to json conversion.
2012-03-20 13:03:39 +0200 Mikko Suonio (8e7dc07f)
* Declare parameters as unused to disable compilation warnings
2012-01-16 11:59:18 +0200 Xizhi Zhu (d61bf3f9)
* Fix various coding style issues.
2012-02-13 09:59:52 +0100 Xizhi Zhu (110ec249)
* Change extended detail field names.
2012-02-12 10:14:09 +0100 Xizhi Zhu (b0408b9b)
* Remove one un-necessary constructor for organizer item detail.
2012-03-18 15:54:26 +0800 Yuchen Deng (6c01a898)
* Build fix for export symbols
2012-03-20 09:17:04 +0200 Päivi Rajala (016dd325)
* Added null check to Organizer jsondb backend converter
2012-03-18 18:08:43 +0200 acox (f5897bb2)
* Added expectFail for export/import known issue
2012-03-15 12:04:47 +0200 Päivi Rajala (0ea7631d)
* Remove the obsolete definition name for organizer details.
2012-03-19 09:46:14 +0200 Cristiano di Flora (26feece5)
* Contacts jsondb plugin does not depend on network and declarative.
2012-03-13 20:41:30 +0200 acox (185ae873)
* Reduce documentation errors from 226 to 191
2012-03-16 11:46:40 +0100 Friedemann Kleint (a9d6078d)
* QtPim: Fix linking in Windows.
2012-03-16 14:17:27 +0200 Päivi Rajala (28fa7b3b)
* Fixed documentation of OrganizerModel.itemsByTimePeriod method
2012-03-16 14:20:54 +0200 Cristiano di Flora (056efc99)
* Don't hardcode default-partition name in jsondb contacts plugin.
2012-03-14 10:38:00 +0200 Cristiano di Flora (35b93c1f)
* Remove QContactThumbnail detail.
2012-03-12 20:58:32 +0200 acox (8e953bbe)
* Taken from 261 documentation errors down to 246
2012-03-13 14:33:12 +0200 acox (0fe7ed27)
* Documentation correction in overview titles
2012-03-13 09:44:04 +0200 Pekka Kauppila (489b2146)
* Test for exporting and importing all types of item details
2012-01-12 12:02:58 +0200 Claudio Brunelli (12d749ce)
* Fix tst_QContactManager tests and add them to auto tests build.
2012-03-13 16:21:12 +0100 Xizhi Zhu (45ec8b2d)
* Adapt organizer QML plugin to new plugin mechanism.
2012-03-13 15:27:37 +0200 Cristiano di Flora (e7bb1fe9)
* Remove QLatin1Constant from Qt PIM module APIs.
2012-03-13 14:18:39 +0200 Cristiano di Flora (2faf1c9c)
* Remove compatibleContact() method from QContactManager.
2012-03-13 09:18:10 +0200 Cristiano di Flora (941e51d2)
* JsonDb plugin does not support action and union filters.
2012-02-10 15:03:51 +0100 Xizhi Zhu (f75a03af)
* Adapt organizer to the new QtJsonDb API.
2012-01-13 11:48:58 +0200 Xizhi Zhu (bab6390b)
* Allow custom fields for reminder, rsvp, and location in JsonDb.
2012-03-12 09:25:22 +0200 Cristiano di Flora (b1ab5d36)
* Check detail fields when validating contact detail filters on
jsondb.
2012-03-12 15:10:43 +0200 Pekka Kauppila (115c896f)
* Fixed an issue in verification in tst_organizere2e.qml
2012-02-25 11:01:16 +0100 Xizhi Zhu (2e41c3a2)
* Adapt QtOrganizer to the new plugin mechanism.
2012-03-07 12:26:50 +0100 Xizhi Zhu (f0212d84)
* Declarative --> Qml adaptation.
2012-03-12 10:02:55 +0200 Päivi Rajala (5e33c516)
* Added Event and Todo occurrences as supported item types
2012-03-12 09:22:49 +0200 Cristiano di Flora (f6d09ad9)
* Handle custom label property of contact objects in jsondb plugin.
2012-03-03 20:01:10 +0200 acox (0f665aa2)
* Updating the overview pages to include useage.
2012-03-09 14:01:09 +0200 Cristiano di Flora (cb993378)
* Don't de-reference invalid / null pointers in relationships.
2012-03-08 17:42:53 +0200 Pekka Kauppila (cfe10a76)
* Fixed case where reminders starting 0s before start didn't get
saved
2012-02-29 15:02:46 +0200 ikause (8e1695ea)
* Make the timeout temporarily longer
2012-03-07 08:42:36 +0200 Cristiano di Flora (17e0e119)
* Update error map arguments documentation.
2012-03-08 12:00:06 +0200 Mikko Suonio (300cff5b)
* Remove obsolete comment.
2012-03-07 08:55:57 +0200 Mikko Suonio (5a98e45b)
* Rename contacts qml test case file.
2012-01-26 14:52:10 +0100 Xizhi Zhu (406eefb0)
* Directly access engine ID of items.
2012-01-25 17:49:46 +0100 Xizhi Zhu (f0f1c4e7)
* Remove one un-needed default collection checking when removing.
2012-01-25 14:46:53 +0100 Xizhi Zhu (6f353688)
* Remove 4 un-used warning strings.
2012-01-24 16:14:50 +0100 Xizhi Zhu (a76fe2c0)
* Pass by const reference, instead of creating copies.
2012-03-07 09:09:17 +0200 Cristiano di Flora (e3b2f766)
* Changing namespace for contacts jsondb back-end.
2012-03-06 09:46:03 +0200 Kranthi Kuntala (a6779046)
* Adapt QContactManager tests to new plugin mechanism
2012-03-06 08:32:49 +0100 Caroline Chao (22538a84)
* CodeCoverage: Remove additional includes to header files.
2012-03-01 18:53:51 +0100 Casper van Donderen (9672c95c)
* Remove the usage of deprecated qdoc macros.
2012-02-15 07:33:32 -0800 acox (0cfe72cd)
* Organizer QML ical file import/export completed signal added.
2012-02-28 10:22:51 +0200 Cristiano di Flora (8953568d)
* Add proper plugins.qmltypes for organizer API.
2012-03-05 16:50:21 +0200 Mikko Suonio (d2b4858f)
* Remove extra occurences of partion name in contacts qml tests.
2012-02-28 16:04:56 +0200 Cristiano di Flora (5fa9f981)
* Adapt contacts plugins to new QPlugin system.
2012-03-02 13:30:18 +0100 Sergio Ahumada (7046b225)
* Change bugreports.qt.nokia.com -> bugreports.qt-project.org
2012-02-27 09:59:50 +0200 Pekka Kauppila (5eeb4c1b)
* Add dependency to QtJsonDb
2012-03-01 12:02:27 +0200 ikause (3f86d7fe)
* Fix compilation problem on certain compilers
2012-02-29 14:24:31 +0200 ikause (cec64b81)
* Adapt to new error codes from jsondb
2012-02-22 14:04:19 +0200 Päivi Rajala (36d4c74d)
* Organizer recurrence support, QML API and examples
2012-02-22 13:50:00 +0200 Päivi Rajala (7d410b31)
* Organizer recurrence support, jsondb and memory backend support
2012-02-22 13:38:54 +0200 Päivi Rajala (db35789b)
* Organizer recurrence support, changes to C++ API
2012-02-28 10:13:21 +0100 Friedemann Kleint (1be18836)
* QtPim: Fix warnings.
2012-02-28 15:27:48 +0200 Pekka Kauppila (3498d98e)
* Fix jsondb version handling in Organizer API
2012-02-27 14:07:58 +0200 Claudio Brunelli (1e4662e7)
* Add function exportContact in qdeclarativecontactmodel
2012-02-27 10:33:06 +0200 Cristiano di Flora (10deca26)
* Fix jsondb version handling in contacts API.
2012-02-27 16:48:14 +0200 Cristiano di Flora (cfc0df03)
* Remove unneeded casting to QObject* for declarative contact.
2012-02-27 09:34:06 +0200 Cristiano di Flora (50a50b4e)
* Don't change the socket name of jsondb for auto tests.
2012-02-16 02:04:04 +0200 Mika Tikkakoski (d9a2cd5c)
* Fixed overlapping export and import signaling test cases.
2012-02-24 16:03:27 +0200 Cristiano di Flora (77dca2c5)
* Change default partition to "database.System".
2012-02-14 14:01:03 +0200 Mika Tikkakoski (583fca72)
* Saving contact after removing it first should fail.
2012-02-16 12:16:30 +0200 Cristiano di Flora (40e82235)
* Use enumerations for detail types and detail fields.
2012-02-24 13:00:46 +0200 Mika Tikkakoski (3e812b76)
* Fixed qcontactjsondb test module build.
2012-02-14 13:59:55 +0200 Mika Tikkakoski (868c4866)
* Merging ContactVersitTestCase to ContactsSavingTestCase.
2012-02-22 14:07:05 +0200 Pekka Kauppila (f9f1414a)
* Added JsonDb process startup to relevant test cases.
2012-02-08 14:29:37 +0200 Mikko Suonio (7c498e6f)
* Set contacts jsondb backend partition name to default partition.
2012-02-23 14:09:28 +0200 Mikko Suonio (394f094e)
* Convert casting contact filters to do copy construction
2012-02-23 16:43:58 +0200 Mikko Suonio (54982dcc)
* Adjust destruction in contacts jsondb backend
2012-02-23 14:24:56 +0200 Cristiano di Flora (2f340312)
* Remove obsolete contacts API example.
2012-02-22 17:24:36 +0200 Mikko Suonio (9fd46734)
* Handle contact change notifications when contacts are to be removed
2012-02-16 13:35:12 +0200 Mikko Suonio (6aa77dd2)
* Improve qml tests for fetching contacts.
2012-01-10 17:04:27 +0200 Cristiano di Flora (e32d273b)
* Adapt qml contacts tests to behavioral change in fetch contacts.
2012-01-23 10:01:30 +0200 Kranthi Kuntala (f01ab8e3)
* improve performance for contact model
2012-02-07 22:45:09 +0200 Kranthi Kuntala (9d69c0f6)
* rename LocalIdFetchTransaction
2012-02-23 08:53:34 +0200 Mikko Suonio (c9940662)
* Remove logging test result in contacts qml tests.
2012-02-22 16:29:09 +0200 Pekka Kauppila (e2ab604b)
* Restructured test asset.
2012-02-21 13:41:41 +0200 Cristiano di Flora (39baebd5)
* Use lastError when updating contact remove request in Jsondb
back-end.
2012-02-21 12:41:54 +0200 Cristiano di Flora (947904b1)
* Don't use deprecated QString(char *) constructor in qcontactid.
2012-02-18 11:05:21 +0100 Xizhi Zhu (e93777ba)
* Remove the un-used simulator back-end for QtOrganizer.
2012-02-19 14:38:54 +0200 acox (7ac908bc)
* 14 errors removed from documentation for qcontactdetail.cpp
2012-02-20 11:04:07 +0200 Cristiano di Flora (2900a6c3)
* Disable temporarily qcontactmanagerplugins test.
2012-02-21 11:32:52 +0200 Cristiano di Flora (becfe1d0)
* Disable make check rules for Win32 and Mac builds.
2012-01-26 16:12:27 +0200 Mikko Suonio (099eac46)
* Improve contacts qml sorting tests
2012-02-13 10:40:40 +0200 ikause (bc4acdfb)
* Improving d-pointer handling of OrganizerModel
2012-02-09 17:05:13 +0200 Mika Tikkakoski (f350e8f1)
* Skipping test for sorting with last and firstname.
2012-02-13 10:27:15 +0200 Mikko Suonio (61e365e3)
* Disconnect signals from discarded filters in contact compound
filter
2012-01-24 17:53:57 +0100 Xizhi Zhu (d7388361)
* Update JsonDb backend strings and converter.
2012-02-09 20:01:58 +0200 Mika Tikkakoski (5c438ddc)
* Test and fix for overlapping export and import requests.
2012-01-26 16:33:34 +0100 Xizhi Zhu (0213bfa3)
* Initial implementation for view object handling.
2012-02-13 13:52:03 +0200 Pekka Kauppila (e1a7d043)
* Added QML test for Contacts intersection filter.
2012-02-01 12:09:11 +0200 Kranthi Kuntala (41c82eba)
* dont delete the filters associated with ContactCompoundFilter
2012-01-26 14:27:31 +0200 Kranthi Kuntala (1922f15f)
* intersection filters support for contacts jsondb backend
2012-02-13 14:40:39 +1000 Jason McDonald (2ecb2b7e)
* Remove duplicates definitions of QTRY_VERIFY and QTRY_COMPARE.
2012-02-12 13:37:47 +0100 Xizhi Zhu (fc493eb2)
* Remove dead code.
2012-02-09 09:27:31 +0200 acox (0831fa58)
* Updated the plugins.qmltypes for QML code completion
2012-02-09 09:50:28 +0200 Cristiano di Flora (ab01ed81)
* Use jsondbcompat libraries and header files.
2012-02-09 14:52:19 +0200 Mika Tikkakoski (9d9f99b1)
* Update qml test files list in the project file.
2012-02-09 17:59:04 +0200 ikause (89871d34)
* Fix tst_QOrganizerItemAsync
2012-02-02 11:16:48 +0200 Tommi Anttila (d906c693)
* Fix for reading detailsToJsonMapping in JsonDb converter
2012-02-01 23:49:35 +0200 Mika Tikkakoski (c9a365f0)
* Export and import from ContactModel emit completion signals.
2012-01-31 15:03:24 +0200 Mika Tikkakoski (38a2ead1)
* Testing export and import operation in Contacts QML API.
2012-02-08 13:02:00 +0100 Xizhi Zhu (ef29c394)
* Fix auto tests.
2012-02-07 14:11:00 +0200 Mikko Suonio (724684ad)
* Fix some contacts qml tests for the memory backend.
2012-02-06 17:01:42 +0200 Mikko Suonio (a95e0c60)
* Fix contacts memory backend engine id handling.
2012-02-01 15:17:04 +0200 Cristiano di Flora (d13fcb34)
* Add new QContactVersion detail to QtContacts API.
2012-02-08 12:56:12 +1000 Rohan McGovern (4fe277e6)
* Fixed compile when using statement-expression form of
QStringLiteral
2012-01-31 13:06:36 +0200 Mikko Suonio (a3c777fd)
* Make contacts specify a partition in all jsondb operations.
2012-01-26 17:19:01 +0100 Xizhi Zhu (14aed3c8)
* Save the detail after set a new value.
2012-02-06 16:43:53 +0200 Mikko Suonio (fe9bcd6e)
* Make invalid contacts backend the last one selected.
2012-01-31 16:39:34 +0200 Mikko Suonio (eafdd977)
* Convert contacts qml tests to use the latest JsonDb API.
2012-01-11 11:03:27 +0200 Mikko Suonio (a877314b)
* Allow multiple simultaneous declarative contact fetch requests
2012-02-06 16:50:36 +0100 Xizhi Zhu (99aab2f4)
* Fix detail filter conversion in JsonDb.
2012-02-07 08:46:19 +0200 Cristiano di Flora (9306fa37)
* Fix a recent regression in qcontactjsondb tests.
2012-01-11 16:15:46 +0200 Xizhi Zhu (3a359d45)
* JsonDb can directly save certain types.
2012-01-11 16:06:08 +0200 Xizhi Zhu (36dd1ed6)
* Avoid creating temporary copies when converting extended details.
2012-01-11 15:54:41 +0200 Xizhi Zhu (6a60d612)
* Use pointers for output paramters.
2012-01-11 12:17:06 +0200 Xizhi Zhu (d05dcb77)
* Add the support for TODO progress in JsonDb backend.
2012-01-10 14:15:57 +0200 Xizhi Zhu (10abc2ee)
* Remove qorganizerpluginsearch_p.h.
2012-01-09 16:26:10 +0200 Xizhi Zhu (dd71be48)
* Fix various coding style issues.
2012-01-09 16:24:06 +0200 Xizhi Zhu (eaf9ff0a)
* Remove the change log filter.
2012-01-04 16:58:01 +0200 Xizhi Zhu (86106ae2)
* Fix various coding style issues.
2012-01-04 15:03:55 +0200 Xizhi Zhu (4d33036e)
* Merge the "invalid" backend into QOrganizerManagerEngine.
2012-01-03 10:51:22 +0200 Xizhi Zhu (1df10b76)
* Simplify the interface for QOrganizerManager.
2012-01-16 12:04:33 +0200 Claudio Brunelli (7feb9e06)
* Add contact validation methods to jsondb back-end.
2012-01-31 10:20:36 +0100 Xizhi Zhu (8fb86590)
* Fix the module names in the file headers.
2012-02-05 10:48:03 +0200 acox (ff0891a4)
* Removed Q_OS_SYMBIAN flagged code
2012-01-18 13:39:55 +0200 Tommi Anttila (edb27c48)
* JsonDb private api removal work for QContactJsonDb test case
2012-01-16 11:49:31 +0200 Claudio Brunelli (f1d78659)
* Fix a couple of error handling problems in QContactJsonDbEngine.
2012-01-27 14:25:01 +0200 Pekka Kauppila (cd950bbb)
* Refactored QML detail filtering test cases.
2012-02-03 14:15:51 +0200 Cristiano di Flora (4499dc66)
* Expect failure in qlatin1constant auto tests.
2012-01-26 19:31:23 +0200 Mika Tikkakoski (3f366340)
* Improving error handling for save requests.
2012-01-24 11:55:52 +0200 Mikko Suonio (51ba6b50)
* Small improvements to contact id implementation and docs.
2012-01-20 15:18:26 +0200 Mika Tikkakoski (81cb773d)
* Enabling qcontactmanagerdetails test module.
2012-01-31 15:47:00 +0200 Cristiano di Flora (dfda90fb)
* Don't try to remove or update non-jsondb contacts.
2012-01-30 11:13:18 +0100 Xizhi Zhu (de44fcd3)
* Fix for JsonDb version.
2012-01-19 16:14:34 +0200 Claudio Brunelli (4bdf50f8)
* Add comment to tst_QContactAsync::contactIdFetch()
2012-01-24 14:53:51 +1000 Jason McDonald (26a70e9d)
* Remove "All rights reserved" line from license headers.
2012-01-27 17:46:53 +0200 acox (25105c05)
* Change references from Qt5 to Qt
2012-01-27 17:01:28 +0200 acox (08f4442b)
* Remove Symbian and Maemo backend information.
2012-01-27 09:12:07 +0200 acox (7ba57d31)
* Changes to reduce some documentation build errors.
2012-01-26 16:19:53 +0200 acox (1edd7684)
* Created individual Contacts and Organizer Overviews
2012-01-24 18:24:27 +0200 acox (c761f06a)
* QtPim Documentation corrections
2012-01-24 15:39:38 +0200 Cristiano di Flora (642b810f)
* Don't access extended detail name characters when empty.
2011-12-21 16:18:40 +0200 Xizhi Zhu (ca24681c)
* Directly access collection / item engine ID if possible.
2012-01-19 16:11:57 +0200 Mika Tikkakoski (89cdf756)
* Fixing several white space related style issues.
2011-12-21 13:14:47 +0200 Xizhi Zhu (122bd0b4)
* Add detail for item version.
2012-01-18 15:49:24 +0200 Kranthi Kuntala (d70552b7)
* Fix several white space styling issues.
2011-12-19 18:57:47 +0200 Kranthi Kuntala (e6cf6153)
* introduce QContactId
2012-01-19 13:34:45 +0100 Xizhi Zhu (d3a14bb3)
* Rename all our interfaces from com.nokia to org.qt-project.
2012-01-23 16:24:04 +1000 Jason McDonald (84434eb8)
* Update contact address in recently added files.
2012-01-10 10:23:33 +0200 Mikko Suonio (1a5bb1dc)
* Allow running contacts qml tests against any backend.
2012-01-16 10:06:53 +0200 Mikko Suonio (20aaa10a)
* Rename some contacts qml test case files.
2012-01-20 11:06:42 +0200 Kranthi Kuntala (5f23880e)
* fix tst_contact_signals tests
2012-01-18 11:37:04 +0200 Claudio Brunelli (a1c0e17e)
* Remove DetailOrdering from QContactJsonDbEngine::hasFeature
2012-01-20 16:16:15 +0200 Cristiano di Flora (12f01fbc)
* Remove simulator backend from QtContacts API.
2012-01-13 15:08:30 +0200 Mikko Suonio (ba00e76e)
* Set auto update off in discarded models in contacts qml tests.
2012-01-20 12:25:56 +0200 Cristiano di Flora (80989570)
* Remove QtContacts wince backend from source tree.
2012-01-20 14:37:29 +1000 Jason McDonald (839a5bf2)
* Update obsolete contact address.
2012-01-11 15:39:40 +0200 Mikko Suonio (98ca4080)
* Disconnect signal from old filter in declarative contact model.
2011-12-21 15:30:38 +0200 Xizhi Zhu (358ba04c)
* Optimize the convenience access function for item type.
2011-12-16 14:27:33 +0200 Xizhi Zhu (e75df439)
* Improve the performance of QOrganizerJsonDbConverter.
2012-01-05 10:23:10 +0200 Mikko Suonio (74104f69)
* Improve doc comments in declarative contact model.
2011-12-21 11:38:14 +0200 Xizhi Zhu (3328447c)
* Remove unused header inclusion.
2012-01-19 17:27:15 +0200 Mikko Suonio (828baedf)
* Remove movable type declaration from organizer item engine id.
2011-12-16 19:13:53 +0200 Xizhi Zhu (af8a255d)
* Remove white space.
2011-12-16 19:13:35 +0200 Xizhi Zhu (30fa2e4e)
* Use QMap to store detail fields.
2012-01-12 09:01:45 +0200 acox (b18e07f2)
* Removed setType from QDeclarativeContact
2012-01-17 13:53:36 +0200 ikause (bc330383)
* Fix typo in DetailFilter in QmlOrganizer
2012-01-17 15:31:52 +1000 Jason McDonald (b745d450)
* Remove obsolete second argument in QSKIP calls.
2012-01-17 12:01:02 +0200 acox (b9f17f60)
* white space removal for coding guideline fix.
2012-01-17 11:56:44 +0200 acox (f0100838)
* Removed non existant saveItem method
2012-01-10 16:15:50 +0200 Tommi Anttila (2fbf86b4)
* Fixed QContactJsonDbConverter and QContactJsondb tests.
2012-01-03 15:28:23 +0200 Tommi Anttila (58da3077)
* Removing jsondb private api and private strings header file
2011-12-21 11:19:06 +0200 Mika Tikkakoski (f38f5ea3)
* Dropping dependencies to jsondb private api.
2012-01-15 17:06:30 +0200 Mikko Suonio (d29d1eef)
* Derive contacts qml tests from base class.
2012-01-16 10:30:14 +0200 Mikko Suonio (cb378c70)
* List all contacts qml tests in pro file for the test.
2012-01-13 08:57:23 +0200 acox (d960dcde)
* Added files for QtCreator code completion.
2012-01-05 19:07:31 +0100 Gatis Paeglis (24b04291)
* Example application for QtContacts QML API.
2012-01-14 08:14:23 +0200 acox (25b1fb28)
* EditorEvent title editable area bordered same as rest of editables
now.
2012-01-13 16:17:53 +0200 acox (4394c1c0)
* Corrected mouse events wrongly being used by hidden component.
2012-01-14 11:27:46 +0200 Xizhi Zhu (c9aa73bc)
* Fix build break for tests.
2012-01-13 18:29:31 +0100 Denis Dzyubenko (65f38ac8)
* Fixed static strings in qorganizer.
2012-01-12 16:17:32 +0200 Xizhi Zhu (a2305770)
* Fixed new default collection creation problem.
2011-12-16 13:03:41 +0200 Xizhi Zhu (09e306fd)
* Avoid the un-needed clearDetails() call.
2012-01-09 13:29:58 +0200 Xizhi Zhu (b8273a67)
* Do not use JsonDbString, since it's a private API.
2011-12-16 11:29:57 +0200 Xizhi Zhu (854d3289)
* Directly copy the saved items instead of creating tmp objects.
2012-01-13 14:18:34 +0200 Xizhi Zhu (bce10eb3)
* Fix addSorted() function in QML wrapper.
2011-12-15 17:53:16 +0200 Xizhi Zhu (79d4f212)
* Fix various coding style issues.
2011-12-15 16:10:22 +0200 Xizhi Zhu (2814e1ae)
* Remove the un-needed detailPrivate() function.
2011-12-15 15:47:26 +0200 Xizhi Zhu (4b898412)
* Fix the lastDetailKey so that it's no longer a global static.
2012-01-13 10:40:46 +0100 Friedemann Kleint (7a10b035)
* Compile fix for tests.
2012-01-12 08:01:00 +0200 acox (8956a114)
* Specify scope explicitly for createEmptyItem
2012-01-10 11:33:39 +0200 Claudio Brunelli (e543ca79)
* Fix tst_QContactManager::add() test
2012-01-11 08:32:40 +0200 Claudio Brunelli (c30f5637)
* Override synthesizedDisplayLabel method in QContactJsonDbEngine
2012-01-02 12:47:40 +0200 Xizhi Zhu (f8c5106d)
* Adapt to the JsonDb notification API.
2011-12-15 12:02:56 +0200 Xizhi Zhu (bd0e37af)
* Remove more global static strings ;)
2011-12-15 11:34:38 +0200 Xizhi Zhu (247126e6)
* Pass parameter by reference instead of creating a copy.
2011-12-14 17:25:49 +0200 Xizhi Zhu (bbd0ff62)
* Don't use global static strings.
2011-11-25 09:26:40 +0200 Xizhi Zhu (401cf4f7)
* Use QString instead of macros for JsonDb query strings.
2012-01-11 11:19:32 +0200 Claudio Brunelli (6cb01fd1)
* Fix tst_QContactManager::selfContactId() test
2012-01-10 11:59:46 +0200 Claudio Brunelli (b5cda6b1)
* Fix tst_QContactManager::batch() test
2012-01-10 11:44:41 +0200 Claudio Brunelli (79b69cdd)
* Fix tst_QContactManager::update() test
2012-01-12 12:42:41 +1000 Rohan McGovern (8d300da1)
* Fixed compile when using statement-expression form of
QStringLiteral
2012-01-10 13:14:09 +0200 Cristiano di Flora (72368b35)
* Remove invalid contact manager error string from model.
2011-12-21 12:28:17 +0200 ikause (a8ba51f6)
* Making Organizer APIs more consistent
2011-12-17 17:48:16 +0200 acox (622d0a38)
* Corrected link to Contacts Documentation
2011-12-18 08:21:34 +0200 acox (9d016f07)
* Added missing vcard support file to documentation
2012-01-10 15:32:51 +1000 Jason McDonald (dae79217)
* Update copyright year in Nokia copyright headers.
2011-12-18 15:29:24 +0200 acox (4b5590c0)
* Missing qmlproject needed for listviewexample and documentation
2012-01-11 09:28:32 +1000 Rohan McGovern (1a6d4012)
* Fixed tst_qorganizeritemfilter for QVariant QDebug change
2012-01-10 18:04:39 +1000 Rohan McGovern (999edc71)
* sync.profile: introduce dependency on qtjsbackend
2011-12-12 15:39:16 +0200 Xizhi Zhu (b65802ec)
* Fix various coding style issues.
2011-12-12 15:25:27 +0200 Xizhi Zhu (7e268a60)
* Fix the internal naming of detail filter and sort order.
2011-12-12 15:07:56 +0200 Xizhi Zhu (db547f67)
* Remove the match() function for creating filters from details.
2011-12-12 14:58:33 +0200 Xizhi Zhu (24da1d64)
* Remove access constraints of item detail.
2011-12-09 16:48:55 +0200 Xizhi Zhu (1227baf7)
* Use enumeration for detail types.
2011-12-07 09:16:38 +0200 Xizhi Zhu (cc679d80)
* Use enumerations for detail fields.
2011-12-14 14:31:05 +0200 Xizhi Zhu (9065d6c6)
* Don't use JsonDbConnection since it's a private API.
2012-01-02 16:45:34 +0200 acox (0f1942c6)
* Corrected images for qmllistviewexample example application.
2011-12-20 16:26:27 +0200 acox (26d1f84b)
* Updated proposed change in deleting and correct coding standard
issue.
2012-01-05 16:08:00 +0200 Cristiano di Flora (8736b5d6)
* Use forward declaration headers to include QUuid.
2011-12-29 16:40:15 +0200 Mikko Suonio (bacbd13d)
* Improve contacts qml tests for jsondb notifications.
2011-12-16 15:27:55 +0200 Kranthi Kuntala (56e58cf3)
* Jsondb to model and model to model notification tests
2011-12-02 12:02:18 +0200 Mikko Suonio (cf998790)
* Improved qmlcontacts test cases for notification signals.
2011-12-02 17:06:29 +0200 Mikko Suonio (aab4cbe0)
* Refactored a new structure for declarative model for notifications.
2011-12-07 12:04:13 +0200 Kranthi Kuntala (6ad78dd0)
* Adapting qcontactmanager signalEmission tests
2012-01-02 16:34:39 +0200 Mikko Suonio (1abea891)
* Add object type to contact removal requests for jsondb.
2011-11-30 23:35:05 +0200 Mika Tikkakoski (71bb4b27)
* Basic signaling from jsondb notifications to qcontactmanager.
2012-01-05 11:36:56 +0200 Mikko Suonio (93eae83a)
* Revert "Fixed QtPim jsondb namespace compilation."
2012-01-05 15:49:18 +1000 Jason McDonald (92761db1)
* Update copyright year in license headers.
2012-01-05 12:20:51 +1000 Toby Tomkins (eabd4524)
* Fixed QtPim jsondb namespace compilation.
2012-01-05 11:18:47 +1000 Toby Tomkins (e2ce29b4)
* Revert "Fixed QtPim jsondb namespace compilation."
2011-12-20 15:52:33 +0200 acox (28cefaab)
* Seperate common qt and pim qdocref ignore files
2011-12-29 11:21:29 +1000 Toby Tomkins (bb53027a)
* Fixed QtPim example compilation.
2011-12-12 15:11:52 +1000 Toby Tomkins (468515f5)
* Fixed QtPim jsondb namespace compilation.
2011-12-22 13:34:17 +0200 acox (1fb7db18)
* Added import and include information into documentation
2011-12-21 09:31:59 +0200 acox (a9c414ad)
* Removed all since references from Organizer, contacts and Versit
2011-12-21 11:26:02 +0200 Xizhi Zhu (97b943ca)
* Fix the comment for item types.
2011-12-21 16:53:46 +0200 Xizhi Zhu (45a6c80c)
* Remove un-needed docs.
2011-12-16 08:42:33 +0200 acox (2a60fe5e)
* qmlorganizerlistview example doc naming standardized
2011-12-15 11:53:05 +0200 acox (cde9be52)
* Corrections to naming for the organizer basic list snippet
2011-12-01 16:07:26 +0200 acox (a7b15caa)
* Initial qmlOrganizerListView Example
2011-12-17 17:44:40 +0200 acox (092db87e)
* Fixed link to organizer documentation
2011-12-16 13:09:43 +0200 ikause (a693af8d)
* Fix for multiple modelChanged-signals when doing the full update
2011-12-14 11:51:00 +0200 Mikko Suonio (06dba903)
* Fix C++ tests for detail filters with empty field name or value.
2011-12-14 09:08:02 +0200 Xizhi Zhu (1b093ec6)
* Add the missing begin/endRemoveRows() in clearItems.
2011-12-14 13:01:05 +0200 Xizhi Zhu (b8f80ef1)
* Time stored in JsonDb is of UTC time.
2011-12-14 10:09:46 +0200 Xizhi Zhu (28be9c3c)
* Update the convertion of location detail against latest schema.
2011-12-14 10:26:21 +0200 Cristiano di Flora (8f941f6a)
* Don't immediately delete requesthandler.
2011-12-14 09:32:34 +0200 Mikko Suonio (3a74e211)
* Expect four tests to fail in contacts remove tests.
2011-12-09 17:09:11 +0200 acox (2080b4c2)
* Initial tutorial and examples added to QtPIM Documentation
2011-12-12 17:46:36 +0200 Mikko Suonio (49d57627)
* Fix contact detail filter with empty value
2011-11-30 16:09:58 +0200 Xizhi Zhu (c85d50af)
* Avoid unnecessary detach() calls remove un-needed constData()
calls..
2011-12-12 14:48:52 +0200 Cristiano di Flora (5d9b3ea0)
* Remove a memory leak from qcontactjsondbenginedata.
2011-12-08 11:43:02 +0200 Xizhi Zhu (630e512a)
* Add a framerate counter to the qmlorganizer example.
2011-11-17 12:12:21 +0200 Xizhi Zhu (3622c322)
* Fix several coding style issues.
2011-11-16 20:16:43 +0200 Xizhi Zhu (299297a4)
* Use enumerations for organizer item types.
2011-12-12 15:36:43 +0200 Cristiano di Flora (6c0e7e39)
* Removing obsolete source files from qmlcontacts example.
2011-12-12 15:45:21 +1000 Toby Tomkins (db641a16)
* Fixed QtPim test namespace compilation.
2011-12-02 07:13:55 +0200 ikause (0645d2e9)
* Stabilizing Organizer Qml unit test cases
2011-11-30 17:44:57 +0200 Mikko Suonio (6c5bc80b)
* Tests for model to model notification case: create a contact.
2011-12-09 14:08:39 +0200 Xizhi Zhu (60288050)
* No need to connect any signals for invalid filter.
2011-12-09 14:07:43 +0200 Xizhi Zhu (5077f2a1)
* Fix the checking of start time in OrganizerModel::itemsByTimePeriod
2011-12-08 14:48:23 +0200 Xizhi Zhu (1a477c39)
* Add an overload containsItems function for OrganizerModel.
2011-11-30 03:57:06 +0200 ikause (e1dacb59)
* Classification -detail to Organizer QML API
2011-12-07 13:58:04 +0200 Xizhi Zhu (8106400b)
* SortOrder only accepts enums for detail and field types.
2011-12-07 12:11:54 +0200 Xizhi Zhu (757860d4)
* Fix various coding style issues.
2011-12-08 13:50:01 +0200 PengWu (322257b4)
* Fix organizer item comparison operator bug
2011-12-08 14:23:12 +0200 Xizhi Zhu (f2d41f40)
* Pass const reference, instead of copies, as function parameter.
2011-11-30 13:52:38 +0200 Xizhi Zhu (bf154c70)
* Fix fetchItems function so it can fetch items not in model.
2011-11-29 14:48:36 +0200 Xizhi Zhu (7af237da)
* Add a new function for OrganizerModel.
2011-11-25 16:20:38 +0200 Xizhi Zhu (717ab353)
* Clean-up the interface of OrganizerModel.
2011-11-29 22:54:56 +0200 ikause (b766ad84)
* Classification -detail to Organizer C++ API
2011-11-30 16:14:51 +0200 Tommi Anttila (3bb256f6)
* filtering and sorting refactored, localid fetch added
2011-12-07 14:28:08 +0200 Cristiano di Flora (b064cf49)
* Avoid unnecessary detach() calls.
2011-11-23 14:09:18 +0200 Xizhi Zhu (563666a9)
* Fix some coding style issues.
2011-11-22 15:21:30 +0200 Xizhi Zhu (874fb924)
* Detail filter for attendee is not supported by JsonDb.
2011-11-21 16:38:28 +0200 Xizhi Zhu (f2dcd34e)
* Add JsonDb support for detail filter on RSVP.
2011-11-21 15:42:30 +0200 Xizhi Zhu (505b8845)
* DetailRangeFilter only accepts enum for detail and field.
2011-11-21 15:33:18 +0200 Xizhi Zhu (6e66840e)
* Fix coding style issues.
2011-11-21 15:03:55 +0200 Xizhi Zhu (5505d19d)
* DetailFilter only accepts enum for detail and field.
2011-11-29 15:12:33 +0200 Xizhi Zhu (2e226270)
* Remove QTORGANIZER_VERSION definition.
2011-11-23 14:05:56 +0200 Xizhi Zhu (70f17917)
* Create versit reader / writer only when needed.
2011-12-08 16:30:14 +1000 Jason McDonald (585e83b4)
* Fix error in QContactManager test.
2011-12-07 16:55:23 +1000 Jason McDonald (8a31cf94)
* Improve QOrganizerManager test.
2011-12-07 16:36:17 +1000 Jason McDonald (7a1b8936)
* Improve QContactManager test.
2011-12-07 14:26:48 +0200 Xizhi Zhu (178226cf)
* Fix one typo.
2011-12-07 15:53:25 +0200 Pekka Kauppila (1bc80b3f)
* Fixed a typo.
2011-11-30 11:47:14 +0200 ikause (2b7658c2)
* Fix issue with details and keys
2011-12-02 16:15:39 +0200 PengWu (80377264)
* Fix QML organizer model initialization bug
2011-12-05 17:29:11 +1000 Toby Tomkins (6db03299)
* Fixed QtPim versitorganizer namespace compilation.
2011-12-05 15:46:20 +0200 Cristiano di Flora (dc6041e0)
* Set filter ids properly in synchronous contact fetch.
2011-12-06 17:20:05 +1000 Jason McDonald (1bf66cf6)
* Remove unused QTRY_WAIT macro.
2011-12-06 16:17:54 +1000 Jason McDonald (731c0df5)
* Remove duplicates of QTRY_VERIFY and QTRY_COMPARE.
2011-12-05 16:23:20 +1000 Toby Tomkins (afda17a0)
* Fixed QtPim organizer namespace compilation.
2011-12-06 10:22:46 +1000 Jason McDonald (3cd14a49)
* Remove TESTED_CLASS/TESTED_FILES comments from tests.
2011-12-05 14:33:52 +0200 Claudio Brunelli (94ef433c)
* Resolving wrong code merging in qcontactjsondbconverter.cpp
2011-12-05 16:34:08 +1000 Toby Tomkins (3b216d25)
* Fixed QtPim versit namespace compilation.
2011-12-05 16:01:38 +1000 Toby Tomkins (291fd502)
* Fixed QtPim contacts namespace compilation.
2011-12-05 11:35:28 +0200 Cristiano di Flora (58d401a7)
* Add a framerate counter to qmlcontacts example
2011-11-23 14:41:26 +0200 Pekka Kauppila (5734339a)
* QML test for Contacts relationships
2011-12-01 11:28:13 +0200 Tommi Anttila (b5e07357)
* Fix QContact equal comparison when details are in different order
2011-12-02 14:44:22 +0200 PengWu (cbf3c478)
* Improve organizer QML unit tests
2011-11-29 10:59:01 +0200 Simo Kivimäki (b39d9ecb)
* Improvements to the Qt Contacts QML documentation.
2011-12-02 11:30:10 +0200 Cristiano di Flora (32cbb8dc)
* Iterate via const reference when possible
2011-11-23 16:12:43 +0200 Tommi Anttila (ecfa6245)
* Support filtering by url and local id
2011-11-29 10:24:14 +0200 Mikko Suonio (df841ee8)
* Refactor contacts qml tests.
2011-11-29 10:08:38 +0200 Mikko Suonio (33775c15)
* Fix detail modification signaling in contacts qml plugin.
2011-11-22 16:02:09 +0200 Mikko Suonio (c36bf5a5)
* Add tests for contacts qml plugin.
2011-11-29 15:12:09 +0200 Mikko Suonio (dc0b121a)
* Collapse all model saving helpers in e2e tests into a base class.
2011-11-29 14:10:13 +0200 Mikko Suonio (8426b027)
* Refactor contacts qml tests by unifying saving to model.
2011-11-21 14:13:50 +0200 Xizhi Zhu (cefa753d)
* Fix coding style issues.
2011-11-29 15:33:11 +0100 Friedemann Kleint (03c8ae9e)
* QtPim: Fix compilation on Windows.
2011-12-01 15:20:33 +0200 acox (1ee29a2e)
* Add qmlbasicOrganizerList snippet as simplest code example
2011-12-01 13:20:23 +0200 acox (6c037028)
* Seperated QML and low level c++ tables for api tables in index
pages
2011-11-29 14:48:33 +0200 Claudio Brunelli (72acf0c3)
* Fix query when filtering contacts by multiple identical LocalIds
2011-11-28 16:52:30 +0200 acox (e0286177)
* Removed \internal for templates as qdoc3 gives errors
2011-11-28 16:18:43 +0200 acox (e50c931b)
* Corrected qdoc example path
2011-11-25 14:28:57 +0200 Pekka Kauppila (76ebf538)
* Modified tests to include detail removal.
2011-11-29 15:17:55 +0200 Xizhi Zhu (e92a7363)
* Remove two extra semicolons.
2011-11-25 10:53:03 +0200 Simo Kivimäki (45c3af82)
* Corrected typos and reformatted the introduction paragraph.
2011-11-23 17:15:57 +0200 Tommi Anttila (762b29b7)
* Do not support relationships
2011-11-28 09:54:54 +0200 Cristiano di Flora (c664ca70)
* Add new list property for extendedDetails
2011-11-28 15:37:01 +0200 PengWu (60d0d16c)
* Improve organizer qml collection filter unit test
2011-11-25 12:06:27 +0200 Mikko Suonio (a6ec2f7c)
* Improve contacts qml tests.
2011-11-28 11:56:28 +0200 Mikko Suonio (2d2a28bd)
* Fix contacts qml test failure.
2011-10-19 09:35:50 +0200 Caroline Chao (7adfe84a)
* Fix instrumentation with testcocoon.
2011-11-28 09:14:53 +0200 Xizhi Zhu (50a4bcb4)
* Add the missing valueChanged() signal for Note element.
2011-11-27 23:18:00 +0200 pengwu (d7bc7f7c)
* Add alarm object feature into organizer JsonDb backend
2011-11-25 13:36:55 +0200 Tero Äijälä (469cdd3c)
* Removed the word 'Project' from the page title.
2011-11-27 14:01:05 +0200 pengwu (8eb3278d)
* Fix organizer qml remove detail bug
2011-11-15 10:13:55 +0200 Cristiano di Flora (a756e0d4)
* Add an extended detail field to example.
2011-11-09 16:13:30 +0200 Cristiano di Flora (6c968dab)
* Simplify interface of QContactDetail.
2011-10-31 17:02:18 +0200 Cristiano di Flora (ade72a2b)
* Adding new ExtendedDetail detail.
2011-11-23 09:46:34 +0200 Cristiano di Flora (43010ddb)
* Fix a few problems in qmlcontacts example
2011-11-23 15:40:57 +0200 Mikko Suonio (4610a5b9)
* Refactor contacts qml tests.
2011-11-25 09:59:53 +0200 Mikko Suonio (d9fefdc4)
* Fix copyright statements in contacts qml tests.
2011-11-23 15:22:26 +0200 Mikko Suonio (d7871451)
* Rename contacts qml sorting tests to e2e.
2011-11-23 15:50:08 +0200 Xizhi Zhu (85b202d1)
* Improve docs for Organizer QML APIs.
2011-11-04 13:42:03 +0200 Xizhi Zhu (0b449d1f)
* Implement nofification system for JsonDb back-end.
2011-11-11 16:12:20 +0200 Xizhi Zhu (e47a3f12)
* Handle notification propertly in OrganizerModel.
2011-11-22 14:10:10 +0200 Mikko Suonio (c7fee261)
* Refactor contacts qml tests.
2011-11-22 13:17:21 +0200 Mikko Suonio (cf5f4dab)
* Refactor contacts qml tests.
2011-11-24 15:58:20 +0200 PengWu (71210f2d)
* Fix attendee conversion bug
2011-11-23 15:11:31 +0200 Pekka Kauppila (d8118e50)
* Enabled test_filterByDuplicateIds which is no longer causing crash.
2011-11-21 11:40:06 +0200 Mikko Suonio (910f7fbd)
* Fix references to contacts QML module in docs.
2011-11-22 15:12:24 +0200 Mikko Suonio (3b697514)
* Fix missing signal when assigning to a contact detail in qml.
2011-11-17 14:36:53 +0200 Xizhi Zhu (b71a4e38)
* Fix some obsoleted documents.
2011-11-21 11:29:50 +0200 Mikko Suonio (2cf49c9e)
* Update docs for contacts QML plugin.
2011-11-22 10:22:48 +0100 Casper van Donderen (da796f37)
* Rename output file for qtpim.qdoc
2011-11-21 14:40:33 +0200 Xizhi Zhu (7946d9de)
* Fix docs for QML filters.
2011-11-17 11:01:30 +0200 Mikko Suonio (e44a3ab2)
* Fix contact detail change signaling in qml plugin.
2011-11-16 16:23:41 +0200 Cristiano di Flora (2ca0db8f)
* Remove unused detail property from FieldEdit component.
2011-11-21 14:07:26 +0200 Cristiano di Flora (ea7ff291)
* Import QtContacts 5.0 in qmlcontacts example.
2011-11-21 10:20:11 +0200 Xizhi Zhu (86f025cb)
* Move index.qdoc to qtpim.qdoc and rename output.
2011-11-17 16:01:23 +0200 Mikko Suonio (b1c92bde)
* Add qml tests for clearing contact details.
2011-11-18 11:33:44 +0200 Mikko Suonio (758ae18e)
* Add qml tests for detail contexts.
2011-11-20 12:12:52 +0200 Xizhi Zhu (ebeb756b)
* QtPim doesn't depend on QtSvg.
2011-11-05 18:36:15 +0200 ikause (ce2d0389)
* RSVP functionality for the Organizer Qml API
2011-11-17 10:12:56 +0200 Xizhi Zhu (5f7f32fa)
* Fix two memory leaks.
2011-11-18 13:51:10 +0200 Tero Äijälä (e104d119)
* Fixed a typo in the index page
2011-11-18 14:46:33 +0200 Tero Äijälä (8e75b458)
* Fixed a typo in the index file.
2011-11-17 14:06:26 +0200 Xizhi Zhu (c8edf839)
* Rename two filter types.
2011-11-16 21:31:18 +0200 Xizhi Zhu (d015d272)
* Remove one un-used filter type for organizer.
2011-11-04 06:44:45 +0200 ikause (4929cca7)
* Rsvp-detail C++ implementation for the QOrganizer
2011-11-18 10:06:24 +0200 Xizhi Zhu (e7025f82)
* Remove some left-over for Symbian.
2011-11-16 16:22:23 +0200 Cristiano di Flora (ecada68c)
* Emit contactChanged signal when new empty detail is created
2011-10-27 18:02:46 +0300 tikkis (df0a439c)
* Iterate through all fields in json contact object.
2011-11-10 16:58:39 +0200 acox (4d97d553)
* QtPim doc builds and remove as much of Mobility refs as possible
2011-11-16 11:50:40 +0200 Mikko Suonio (da6a75c6)
* Set contact as modified when a detail is modified.
2011-11-16 13:24:21 +0200 Mikko Suonio (819e06aa)
* Remove warning from contacts QML test runs.
2011-11-15 15:46:13 +0200 PengWu (7b5aa1a4)
* Modify organizer jsondb backend compound filters to be recursive
style
2011-11-13 11:24:43 +0200 Xizhi Zhu (c055bb40)
* Introduce enumerations for detail fields in QML.
2011-10-30 10:20:41 +0200 Xizhi Zhu (971c78b6)
* Merge organizer mgr engine v2 into v1.
2011-11-16 11:16:38 +1000 Rohan McGovern (b0a5473e)
* Don't install tests by default.
2011-11-08 19:30:03 +0200 Cristiano di Flora (a78a5748)
* QContact Memory backend as a plugin.
2011-11-15 11:29:23 +0200 Mikko Suonio (549113b6)
* Fix bug in declarative contact detail addition signaling.
2011-11-10 16:28:23 +0200 Cristiano di Flora (3302ec1a)
* Contact element properties to use a common template getter.
2011-11-10 17:11:21 +0200 Claudio Brunelli (120bc9b6)
* Test for contacts details end-to-end
2011-11-11 14:41:33 +0200 pengwu (95637ea4)
* Change Organizer attendee detail contactId to attendeeId
2011-11-09 16:03:03 +0200 Mikko Suonio (989fb494)
* Add contacts QML tests for contact detail access
2011-11-04 06:20:36 +0200 ikause (d8b6ad2b)
* QOrganizerItemDisplayLabel::FieldLabel to correct place
2011-11-11 10:31:41 +0200 Xizhi Zhu (cc8e7e10)
* Make QOrganizerManagerEngine::addSorted() return the index.
2011-11-08 15:36:02 +0200 Mikko Suonio (30c75c98)
* Add comments.
2011-10-26 20:57:38 +0300 Xizhi Zhu (591eed97)
* Organizer memory backend as a plugin.
2011-11-10 23:31:06 +0200 pengwu (dafb95c8)
* Fix organizer example DayView update bug
2011-11-10 12:13:37 +0200 pengwu (1db51015)
* Add birthday tag to organizer qml example
2011-10-28 13:05:43 +0300 Xizhi Zhu (d5154a40)
* Don't set details if the value is the same.
2011-11-09 14:11:23 +0200 PengWu (97bffe01)
* Add attendee feature to Organizer QML API
2011-11-09 17:00:05 +0200 PengWu (88734a0b)
* Add and enable more organizer c++ test
2011-11-07 15:14:36 +0200 PengWu (dbc780d6)
* Modify QDeclarativeOrganizerItem some Q_INVOKABLE functions to be
virtual
2011-11-08 12:14:52 +0200 pengwu (bfce0fbe)
* Improve organizer qml example items update
2011-11-09 13:49:03 +0200 Päivi Rajala (6ac32114)
* Fixed a bug related to modifying the default collection in
Organizer
2011-11-08 10:56:05 +0200 Claudio Brunelli (61509d9f)
* Add QML tests for contact list properties
2011-10-18 16:29:11 +0300 Mikko Suonio (7585e753)
* Add support for list properties in contacts QML binding.
2011-09-20 03:32:39 -0700 ikause (73afe959)
* Detail filter implementation for jsondb backend
2011-11-09 10:08:09 +0200 Xizhi Zhu (4079ab38)
* Fix the docs of QOrganizerItemCollectionFilter.
2011-11-02 16:22:18 +0200 Cristiano di Flora (d3ff6879)
* Fix build break in qcontactmanager autotests.
2011-11-07 11:53:08 +0200 Cristiano di Flora (d941d5e0)
* Don't set QContactAddress SubType to context in JsonDb plugin.
2011-10-27 10:41:48 +0300 Xizhi Zhu (70680686)
* Remove qdeclarativeorganizer tests.
2011-11-04 09:36:26 +0200 Xizhi Zhu (ce46ce34)
* Remove "_p" from qorganizerjsondbstring_p.h.
2011-11-08 11:18:55 +0200 Cristiano di Flora (154239e7)
* Don't add invalid dates to QContactOrganization.
2011-11-07 10:32:27 +0200 Cristiano di Flora (27e08ece)
* Don't test unsupported details on jsondb backend.
2011-11-07 11:34:30 +0200 Cristiano di Flora (0b623c7b)
* JsonDb Contacts plugin to use default display label.
2011-11-07 16:25:17 +0200 Mikko Suonio (50042f65)
* Fix contacts qml test failures caused by reusing signal spies.
2011-11-07 15:39:24 +0200 Mikko Suonio (c640e9af)
* Fix contacts qml test failure due to changed signal name.
2011-11-07 11:31:31 +0200 Cristiano di Flora (a6052b01)
* Don't set error when display label cannot be synthesized.
2011-11-07 10:25:29 +0200 Tommi Anttila (30e78c0f)
* Enable qcontactmanagerplugins test plugin installation
2011-10-31 15:17:16 +0200 Mikko Suonio (96830c63)
* Add qml tests for contact detail change signaling.
2011-11-03 21:14:01 +0200 Cristiano di Flora (3c6f66be)
* Fix build of tst_qcontactmanagerdetails auto test.
2011-11-03 15:46:57 +0200 Tommi Anttila (2158c46f)
* Enable test plugin installation in two test sets
2011-10-11 10:01:50 +0300 Claudio Brunelli (c4ce09f0)
* Remove dynamic properties in contacts QML binding
2011-11-01 15:43:51 +0200 Xizhi Zhu (05037d2a)
* Arguments pass by reference instead of make a copy.
2011-11-01 15:12:50 +0200 Xizhi Zhu (d6510ca2)
* QOrganizerJsonDbRequestManager doesn't need to be a QObject.
2011-11-01 15:30:59 +0200 Xizhi Zhu (c2604cc3)
* Fix various coding style issues.
2011-11-01 10:19:34 +0200 pengwu (5cedf072)
* Add attendee detail to organizer c++ API
2011-10-27 16:07:09 +0300 Pekka Kauppila (40da526d)
* Test for saving all types of Organizer items and details.
2011-10-27 17:38:52 +0300 tikkis (cbf6b6ae)
* Proper date formats for organization detail in converter test.
2011-10-31 13:56:54 +0200 tikkis (c4e2e6ce)
* Do not store empty embedded details for contact objecst to jsondb.
2011-10-28 10:22:10 +0300 Tommi Anttila (bf864470)
* Enable QContactName header creation
2011-10-26 16:14:53 +0300 Tommi Anttila (2e64f548)
* previously hanging and crashing tests are now verified to pass
2011-10-31 10:24:21 +0200 pengwu (1fccadb9)
* Update anniversary tag string
2011-10-31 13:25:16 +0200 tikkis (3c14c1ac)
* Updated namespace to test code.
2011-10-31 11:38:13 +0200 Mikko Suonio (6053b332)
* Refactor contacts QML tests.
2011-10-28 16:10:25 +0300 Xizhi Zhu (157d6706)
* Remove unsupported platform code from several places
2011-10-27 10:06:46 +0300 Mikko Suonio (f1204e9e)
* Add qml test for contact detail change signaling.
2011-10-28 15:37:20 +0300 Xizhi Zhu (0dcd992b)
* QSKIP will only accept 1 parameter.
2011-10-28 15:22:54 +0300 Xizhi Zhu (7377f257)
* Use QString as the key for collection meta data.
2011-10-28 15:20:33 +0300 Xizhi Zhu (f4471b57)
* Remove docs for already removed functions.
2011-10-28 11:46:21 +0300 Xizhi Zhu (ab2afe41)
* Fix the QML detail classes signal redefinition bug
2011-10-28 13:21:10 +0300 Xizhi Zhu (f022a06f)
* Remove one un-needed include.
2011-10-27 16:47:47 +0300 PengWu (c1f7009b)
* Changed some constant static strings' definition
2011-10-27 16:52:45 +0300 PengWu (ffe11632)
* Add anniversary tag constant string for birthday use case
2011-10-27 11:29:27 +0300 Xizhi Zhu (94367b26)
* Bump the version to 5.0.
2011-10-20 10:14:00 +0300 tikkis (19f3dbc5)
* Preserving extra fields in jsondb contact object when updating it.
2011-10-26 15:01:23 +0300 Xizhi Zhu (0c4b0124)
* Fix doc for QOrganizerItemSaveRequest.
2011-10-25 16:39:26 +0300 Xizhi Zhu (673c0046)
* Create GUID for item when saving if needed.
2011-10-26 11:58:31 +0300 Mikko Suonio (e34caec4)
* Refactor contacts QML tests.
2011-10-26 11:21:41 +0300 Mikko Suonio (b1a8fc7a)
* Refactoring contacts QML tests.
2011-10-24 12:50:58 +0300 Xizhi Zhu (3a6bab40)
* Refactor the JsonDb converter.
2011-10-24 10:10:45 +0300 Xizhi Zhu (393e1426)
* Rename custom detail to extended detail.
2011-10-23 11:44:05 +0300 Xizhi Zhu (131ec70e)
* Remove 3 functions from QOrganizerItem.
2011-10-23 11:30:16 +0300 Xizhi Zhu (87986fe0)
* Remove functions treats detail fields as QString.
2011-10-22 16:53:17 +0300 Xizhi Zhu (8874a351)
* Fix some coding style issues.
2011-10-22 15:57:50 +0300 Xizhi Zhu (de60e3ae)
* Simplify interface of QOrganizerItemDetail.
2011-10-22 01:58:39 +0300 tikkis (a3c0fedd)
* Fixing namespaces in test code.
2011-10-25 02:14:58 +0300 ikause (2be38220)
* Improving qml unit test case robustness on different platforms
2011-10-25 14:53:02 +0300 PengWu (8b42d121)
* Fix the QML QDeclaretiveOrganizerItem inherit classes signal
redefinition bug
2011-10-24 20:46:10 +0300 ikause (9c5ab9b9)
* Adjust Qml Unit tests to pass Qt5
2011-10-22 10:22:02 +0300 Xizhi Zhu (dea2e45b)
* Make sure calendardemo is built when asked.
2011-10-22 10:05:13 +0300 Xizhi Zhu (0a533a4b)
* Make sure todo example is built when asked.
2011-10-22 10:44:58 +0300 Xizhi Zhu (ac07e433)
* Removing C++ code from qmlorganiser.
2011-10-24 15:11:53 +0300 Xizhi Zhu (eec20091)
* Fix the recurrence() function for event and todo.
2011-10-24 16:02:10 +0300 Päivi Rajala (15448e74)
* Removed skeleton plugin from Organizer QML tests
2011-10-14 10:24:40 +0300 Päivi Rajala (db7becd1)
* Synchronous interface for performing Organizer related jsondb
operations
2011-10-21 15:30:24 +0300 Xizhi Zhu (d4a913de)
* Fix one typo in .pro.
2011-10-21 10:38:13 +0300 PengWu (1e58624b)
* Fix orgainizer qml unit test failings
2011-10-20 09:05:38 +0300 Xizhi Zhu (be770aa7)
* Remove some commented code from one example file.
2011-10-20 08:52:59 +0300 Xizhi Zhu (d5aca82e)
* endDateTime --> dueDateTime for Todo
2011-10-20 08:56:37 +0300 Xizhi Zhu (9f535e0e)
* Fix namespace.
2011-10-13 14:37:16 +0300 Pekka Kauppila (b9adcb76)
* QML tests for filtering contacts by id.
2011-10-19 11:48:22 +0300 Cristiano di Flora (3980aa93)
* Check detail pointer before trying to remove a detail.
2011-10-17 11:13:07 +0300 Xizhi Zhu (9825975c)
* Finalize namespace.
2011-10-18 12:24:10 +0300 PengWu (673ca792)
* Fix QDeclarativeOrganizerModel item save/remove bug and improve qml
unit test
2011-10-18 10:09:51 +0300 Xizhi Zhu (9ff0629c)
* Use emit instead of Q_EMIT.
2011-10-17 11:23:47 +0300 Cristiano di Flora (d36cad15)
* Fix two issues in contact relationship qml elements.
2011-10-14 10:26:52 +0300 Mikko Suonio (c3559597)
* Refactoring contacts QML tests.
2011-10-14 16:16:31 +0300 Xizhi Zhu (41eca2d0)
* Don't save empty fields.
2011-10-14 10:28:35 +0300 Xizhi Zhu (b1f0fda8)
* Remove one unused file.
2011-10-13 11:07:04 +0300 Mikko Suonio (91a4ffe5)
* Add QML testcase for sorting by email address.
2011-10-12 09:07:53 +0300 Xizhi Zhu (69940cd2)
* Remove unused code in .pro files.
2011-10-05 08:56:30 +0300 Xizhi Zhu (d539a764)
* Enable skeleton when running tests.
2011-10-05 08:57:30 +0300 Xizhi Zhu (39ca2c81)
* New test covering all supported items and details.
2011-10-11 13:45:25 +0300 Xizhi Zhu (8c43ba24)
* Fix coding style issues...
2011-10-07 15:33:30 +0300 Xizhi Zhu (62fef325)
* Fix error handling in OrganizerModel.
2011-10-10 16:21:03 +0300 PengWu (9f41dc41)
* Fix organizer QML reminder unit test
2011-10-11 10:58:42 +0300 Mikko Suonio (6dc1ae15)
* Add a qml test for contacts sorting
2011-10-07 16:41:09 +0300 PengWu (83d3744d)
* Fix the tst_organizermanager unit test failings
2011-09-28 14:49:25 +0300 Kranthi Kuntala (f045d0de)
* qml test case for adding and removing details
2011-10-07 10:31:09 +0300 Xizhi Zhu (2c49026e)
* Update TODO file ;)
2011-10-06 16:13:26 +0200 Friedemann Kleint (b0dce677)
* QtPim: Compile on Windows, remove qmake warnings.
2011-10-05 15:43:55 +0300 Mikko Suonio (6444ab23)
* Add a qml test for contacts sorting
2011-10-05 14:14:00 +1000 Rohan McGovern (ad98036d)
* tests: fixed several tests all named `unittest'
2011-10-03 16:05:47 +0300 Xizhi Zhu (02cbfe20)
* Remove the un-used supportedDataTypes.
2011-09-30 10:43:30 +0300 Xizhi Zhu (a98da1be)
* Simplify item / collection validation.
2011-09-30 10:09:07 +0300 Xizhi Zhu (6bbeaa42)
* Remove QOrganizerManager::hasFeature().
2011-09-26 16:54:46 +0300 Xizhi Zhu (2f927da2)
* Simplify the custom detail for organizer.
2011-10-03 15:26:06 +0300 Xizhi Zhu (cbb35608)
* Remove yet another back-end.
2011-10-03 10:15:42 +0300 PengWu (b1ddbf99)
* Implement intersection, union and itemId filters
2011-09-30 10:32:19 +0300 Xizhi Zhu (bd3426a0)
* Fix the docs in skeleton plugin.
2011-09-28 09:08:44 +0300 Xizhi Zhu (9f3dc731)
* Cancel current update when old manager is removed.
2011-09-28 09:07:29 +0300 Xizhi Zhu (82adbed5)
* Do nothing if same manager wants to be set again.
2011-09-29 14:23:10 +0200 Friedemann Kleint (5db4aeea)
* QtPim: Fix compilation on Windows/Warnings.
2011-09-27 11:01:59 +0300 Xizhi Zhu (654cf55e)
* Remove Symbian back-end.
2011-09-26 17:18:43 +0300 acox (d1e85070)
* Initial QtPim documentation
2011-09-26 16:06:52 +1000 Jason McDonald (50725017)
* Fix missing/outdated licenses.
2011-09-26 13:37:39 +1000 Jason McDonald (fb5d983a)
* Call QWARN() instead of QTest::qWarn().
2011-09-22 14:39:37 +0300 Päivi Rajala (d50acbaf)
* Changed method names in QOrganizerJsonDbConverter
2011-09-22 10:01:47 +0300 Cristiano di Flora (f76c7436)
* Cleanup in contacts jsondb request handler.
2011-09-20 17:21:43 +0300 Päivi Rajala (6da4fbbb)
* Created a new class for organizer converter functions
2011-09-11 15:43:17 +0300 Xizhi Zhu (c9f00b43)
* Remove dynamic properties in organizer QML binding
2011-09-22 10:30:36 +0300 Petri Järvenpää (84a7c272)
* Not a proper place for the file, removing it.
2011-09-21 16:13:35 +0300 Kranthi Kuntala (ec75cbaf)
* initial set of qml tests for contacts API
2011-09-20 08:25:23 -0700 Cox Andrew Robert (b08bbb2c)
* Cosmetic updates for the Organizer Example Application
2011-09-21 12:44:33 +0300 Petri Järvenpää (f9644150)
* Added rpm spec file for CI builds
2011-09-20 15:49:18 +0300 Claudio Brunelli (132c3439)
* Added sorting functionality to contacts QML demo
2011-09-20 17:51:40 +0300 Päivi Rajala (9cb49e81)
* Disabled compilation of organizer C++ demos
2011-09-21 14:14:51 +0300 Cristiano di Flora (4a8cf012)
* Adapt auto tests to refactored qcontactrelationship.
2011-09-21 13:13:21 +0300 Cristiano di Flora (7b390244)
* Adapt contacts qml plugins to refactored qcontactrelationship.
2011-09-20 17:01:11 +0300 Cristiano di Flora (a0fa9bf3)
* First draft of QContactRelationship refactoring.
2011-09-14 09:26:17 +0300 Kranthi Kuntala (2fc607fb)
* organization start and enddate added to contacts demo
2011-09-15 16:44:46 +0300 ikause (d68057a4)
* Fix for fetching collections with empty fields
2011-09-16 10:07:59 +0300 Tommi Anttila (1776747a)
* Fixed autotest compilation issue and failing jsondbconverter tests
2011-09-12 19:26:59 +0300 Claudio Brunelli (e29a889f)
* Improving / extending contacts sorting and filtering.
2011-09-14 11:22:22 +0300 Cristiano di Flora (dc9cdf37)
* Add support for filtering to qml contacts demo.
2011-09-16 10:31:18 +0300 Cristiano di Flora (1d2c5b67)
* Get rid of QtWidgets dependencies from Qt pim libraries.
2011-09-14 11:20:13 +0300 Cristiano di Flora (a5bee1d3)
* Add missing type property to Contact Filter element.
2011-09-13 14:52:11 +0300 Cristiano di Flora (09027e9e)
* Fix + demo PersonId handling.
2011-09-15 14:25:47 +0300 Cristiano di Flora (953f7e26)
* Fix build break related to qtbase refactoring.
2011-09-13 13:55:34 +0200 Gunnar Sletta (5f7e9228)
* Compile with refactor
2011-09-12 13:02:13 +0300 PengWu (fec7dce1)
* Extending QmlOrganizer example for Collection Filter QML API
2011-09-13 09:48:49 +0300 Cristiano di Flora (c6e2934c)
* Adding one missing file to refactored contacts demo.
2011-09-13 09:11:32 +0300 Cristiano di Flora (67e665a3)
* Convert image URLs to strings when creating json object from
QContact.
2011-09-12 16:57:31 +0300 Cristiano di Flora (0730ec59)
* Contacts qml demo refactoring / cleanup.
2011-09-12 16:39:03 +0300 Cristiano di Flora (37cf93c6)
* Fix a couple of issues in QContactBirthday handling.
2011-09-12 11:48:23 +0300 Cristiano di Flora (42d3daa0)
* Fix a bug in qcontactaddress parsing logic.
2011-09-12 09:39:45 +0300 ikause (a54508cf)
* Extending QmlOrganizer example for Collection Qml API additions
2011-09-09 10:13:49 +0300 ikause (de270068)
* Improved qml unit tests for organizer collections. They now catch
color and image fails. Enabled also testing metadata.
2011-09-09 13:47:18 +0300 PengWu (5fb3390d)
* Fix collection properties save bug
2011-09-08 13:45:27 +0300 Xizhi Zhu (208467df)
* Not save empty details.
2011-09-08 20:46:48 +0300 Xizhi Zhu (65575cc4)
* Organizer doesn't depend on Gui.
2011-09-08 14:23:23 +0300 Kranthi Kuntala (a79d51f4)
* removing email uri scheme as per new schema
2011-09-08 13:56:13 +0300 PengWu (5b2a9982)
* Add orgainizer collection filter feature
2011-09-03 19:11:29 +0300 Xizhi Zhu (68a75b51)
* Implement "tags" for Organizer JsonDb backend.
2011-09-08 13:52:40 +1000 Jason McDonald (203de3f4)
* Fix outdated license headers
2011-09-01 15:35:58 +0300 Kranthi Kuntala (f928175d)
* startdate and enddate added to qcontactorganization
2011-09-07 11:55:14 +0300 Cristiano di Flora (0124abf1)
* Remove unused querydialog from demo app.
2011-09-04 12:23:56 +0300 Päivi Rajala (48076368)
* Support for Collection metadata in Organizer jsondb backend. Bug
fixes.
2011-09-06 11:59:37 +0300 PengWu (35fa37d1)
* Add organizer jsondb reminder feature
2011-09-02 18:38:17 +0300 Xizhi Zhu (9f85fa06)
* Implement "comments" for Organizer JsonDb backend.
2011-09-06 08:06:04 +0300 Xizhi Zhu (16688172)
* Fix header files.
2011-09-05 12:45:57 +0300 ikause (2201bae3)
* Adding Collection support to Organizer Model/Item QML API
2011-09-02 20:20:49 +0300 Xizhi Zhu (cd150014)
* Enable the examples.
2011-09-02 20:20:25 +0300 Xizhi Zhu (452029e4)
* Fix samples for contacts.
2011-09-01 11:53:05 +0300 Päivi Rajala (5229e723)
* Added missing files to qmlorganizer demo application
2011-09-01 11:03:03 +0300 Päivi Rajala (f8c10aff)
* Converted QDates to QStrings before storing to jsondb
2011-09-01 09:52:09 +0300 Xizhi Zhu (0876a3b4)
* Fix the default organizer engine for JsonDb.
2011-09-01 09:41:21 +0300 Xizhi Zhu (edb0601e)
* Plugins need to be explicit installed.
2011-09-01 10:09:29 +1000 Rohan McGovern (f22c777a)
* tests: don't unconditionally enable debug mode for tests
2011-08-31 16:55:01 +0300 tikkis (39d572f8)
* Skipping non passing autotests for contacts jsondb backend.
2011-08-31 15:14:44 +0300 tikkis (62c2749b)
* Releasing contacts-jsondb-rebased to qtpim.
2011-08-31 09:49:35 +0300 Xizhi Zhu (fe297be9)
* Fix the paths for plugins regarding Qt5.
2011-08-31 09:05:13 +0300 Xizhi Zhu (0d31e96a)
* Add one missing file.
2011-08-30 09:05:39 +0300 Xizhi Zhu (742503be)
* Various fixes again.
2011-08-29 16:17:12 +0300 Xizhi Zhu (992e5c85)
* Disable some tests for JsonDb backend.
2011-08-29 10:13:04 +0300 Xizhi Zhu (3ccb2898)
* Import samples for organizer.
2011-08-29 09:11:02 +0300 Xizhi Zhu (e37c21c0)
* Import QML example for contacts.
2011-08-29 11:03:46 +0300 Xizhi Zhu (0615af7d)
* Various fixes.
2011-08-29 10:03:56 +0300 Xizhi Zhu (843db760)
* Add one missing file
2011-08-26 10:35:30 +0300 Xizhi Zhu (2eb0a23c)
* Import JsonDb backend for organizer.
2011-08-26 09:23:11 +0300 Xizhi Zhu (040e97b6)
* Import JsonDb backend for contacts.
2011-08-24 13:46:59 +0300 Xizhi Zhu (9453d779)
* Cherry-pick various changes in the common code.
2011-08-10 15:08:50 +0300 Xizhi Zhu (ff95b159)
* Import from latest QtMobility.
|