/www/ocaml-wdialog/

id='cgit'>
aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/ChangeLog
blob: 914b0ae49421a423fbb458b05888efc894878ed7 (plain) (blame)
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
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
2000-07-10  Seth Alves  <alves@hungry.com>

    * gui/Makefile.am (SUBDIRS): 
    * conduits/calendar/Makefile.am: moved calendar-conduit stuff from
    the gui directory to here.

    * Makefile.am (SUBDIRS): added conduits to SIBDIRS

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

    * gui/calendar-commands.c (calendar_control_activate): Remove
    "close calendar" command.

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

    * gui/e-week-view.c (e_week_view_on_button_press): Handle mouse wheel scrolling.

    * gui/e-day-view.c (e_day_view_on_time_canvas_button_press): New function to handle
    mouse wheel scrolling.
    (e_day_view_on_main_canvas_button_press): Handle mouse wheel scrolling.

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

    * cal-util/cal-component.c (scan_property): Handle the SEQUENCE
    property.
    (free_icalcomponent): Ditto.
    (cal_component_get_sequence): Ditto.
    (cal_component_set_sequence): Ditto.
    (cal_component_free_sequence): Ditto.
    (cal_component_set_last_modified): Removed incorrect assertion.
    (CalComponentPrivate): New need_sequence_inc flag.  The sequence
    number must be incremented when certain properties change, so we
    store a flag that says if we need to bump it when piping the
    object over the wire.
    (free_icalcomponent): Reset need_sequence_inc.
    (cal_component_set_dtstart): Set need_sequence_inc.
    (cal_component_set_dtend): Ditto.
    (cal_component_set_due): Ditto.

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

    * cal-util/cal-component.c (scan_property): Handle the
    LAST-MODIFIED property.
    (free_icalcomponent): Ditto.
    (cal_component_get_last_modified): Ditto.
    (cal_component_set_last_modified): Ditto.
    (get_icaltimetype): New function to get struct icaltimetype
    values.
    (cal_component_get_created): Use get_icaltimetype().
    (set_icaltimetype): New function to set struct icaltimetype
    values.
    (cal_component_set_created): Use set_icaltimetype().

    * cal-util/cal-component.c (scan_property): Handle the CREATED
    property.
    (free_icalcomponent): Ditto.
    (cal_component_free_icaltimetype): Ditto.
    (cal_component_get_created): Ditto.
    (cal_component_set_created): Ditto.
    (cal_component_init): Do not create an UID here.
    (ensure_mandatory_properties): New function to ensure that the
    mandatory RFC properties are indeed in the component.  If they are
    not, we create them on the fly.
    (cal_component_set_new_vtype): Use ensure_mandatory_properties().
    (cal_component_set_icalcomponent): Ditto.
    (cal_component_get_uid): Return the UID in a parameter, not as a
    function return value, for consistency's sake.
    (scan_property): Handle the DTSTAMP property.
    (free_icalcomponent): Ditto.
    (cal_component_get_dtstamp): Ditto.
    (cal_component_set_dtstamp): Ditto.

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

    * gui/gncal-todo.c (gncal_todo_update): Use &obj instead of &ico in
    the call to cal_client_get_object(). The ToDo list should work now.

    * gui/event-editor-dialog.glade: set the toplevel GnomeApp to invisible
    so it doesn't appear and then resize.

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

    * cal-util/cal-component.c (cal_component_get_summary): Use
    CalComponentText instead of CalComponentPropSummary.  Removed the
    latter typedef.
    (cal_component_set_summary): Likewise.
    (scan_property): Handle the CLASSIFICATION property.
    (cal_component_get_classification): Ditto.
    (cal_component_set_classification): Ditto.

    * cal-util/cal-component.c (cal_component_free_text_list): Renamed
    from cal_component_free_description_list().  We can share this
    function since both comments and descriptions have the same form.
    (scan_text): Ditto.
    (get_text_list): New function.
    (set_text_list): New function.
    (cal_component_get_description_list): Use get_text_list().
    (cal_component_set_description_list): Use set_text_list().
    (cal_component_set_uid): Add sanity check.
    (cal_component_get_summary): Ditto.
    (cal_component_get_description_list): Ditto.
    (cal_component_get_dtstart): Ditto.
    (cal_component_get_dtend): Ditto.
    (cal_component_get_due): Ditto.
    (scan_property): Handle the COMMENT property.
    (cal_component_get_comment_list): Ditto.
    (cal_component_set_comment_list): Ditto.

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

    * cal-util/cal-component.c (scan_categories): Handle CATEGORIES.
    This can appear multiple times, so we maintain a list.  We
    compress them later to a single property with multiple values.
    (cal_component_get_categories_list): Ditto.
    (cal_component_set_categories_list): Ditto.
    (cal_component_free_categories_list): Ditto.
    (free_icalcomponent): Properly free the mappings.

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

    * cal-util/cal-component.c (scan_datetime): Handle date/time and
    timezone pairs.
    (scan_property): Handle DTSTART and DTEND.
    (cal_component_free_datetime): Ditto.
    (get_datetime): Ditto.
    (cal_component_get_dtstart): Ditto.
    (set_datetime): Ditto.
    (cal_component_set_dtstart): Ditto.
    (cal_component_get_dtend): Ditto.
    (cal_component_set_dtend): Ditto.
    (scan_property): Handle DUE date.
    (cal_component_get_due): Ditto.
    (cal_component_set_due): Ditto.

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

    * cal-util/cal-component.c (cal_component_get_description_list):
    Handle the DESCRIPTION property.  There can be multiple
    descriptions with parameters each, so we deal with a list instead
    of a single structure.
    (cal_component_set_description_list): Ditto.
    (cal_component_free_description_list): Ditto.
    (scan_property): Ditto.
    (scan_description): Ditto.

2000-06-30  Federico Mena Quintero  <federico@helixcode.com>

    * cal-util/cal-component.c (cal_component_get_summary): To avoid
    passing a million parameters to setters/getters for properties
    that support parameters, we now pass client-side structures
    instead.  Here we use CalComponentPropSummary.
    (cal_component_set_summary): Ditto.

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

    * gui/component-factory.c: Make calendar die when evolution quits.

2000-06-30  Federico Mena Quintero  <federico@helixcode.com>

    * cal-util/cal-component.c: Change of plans.  We use an
    icalcomponent from libical as our core representation so that we
    can preserve extension fields and fields that we don't (yet)
    support.  CalComponent is just a wrapper with a nice API that
    provides non-iterative, random access to the ical's fields.
    (cal_component_destroy): Free the thing correctly.
    (cal_component_get_vtype): Re-implement in terms of icalcomponent.
    (cal_component_set_icalcomponent): New function to set the
    CalComponent's data from an existing icalcomponent.
    (cal_component_get_icalcomponent): New function.
    (cal_component_set_new_vtype): New convenience function to create
    an empty component.
    (scan_icalcomponent): Core scanning function.
    (scan_property): Another core scanning function.
    (cal_component_get_uid): Use the property directly.
    (cal_component_get_summary): Ditto.  Handle the altrep parameter
    as well.
    (cal_component_set_summary): Ditto.  Feel the pain, motherfucker.
    It is ridiculous how much code this involves.
    (scan_summary): Ditto.

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

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

2000-06-29  Federico Mena Quintero  <federico@helixcode.com>

    * gui/Makefile.am: Do not link and include the pilot stuff for the
    calendar component, just for the Pilot conduit.  Commented out the
    Pilot part so that Evolution can build.  Sigh, we'll have to
    modify gnome-pilot to use OAF.

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

    * gui/Makefile.am (LINK_FLAGS): Make the calendar-pilot-sync
    program conditional on HAVE_GNOME_PILOT, and add 
    GNOME_PILOT_CFLAGS, GNOME_PILOT_LIBS, and PISOCK_LIBS in the
    appropriate places.

2000-06-29  Seth Alves  <alves@hungry.com>

    * pcs/cal.c (Cal_get_uid_by_pilot_id): 
    (Cal_update_pilot_id): 
    * pcs/cal-backend-imc.c (cal_backend_imc_update_pilot_id): 
    (cal_backend_imc_get_uid_by_pilot_id): 
    * pcs/cal-backend.c (cal_backend_get_uid_by_pilot_id): 
    (cal_backend_update_pilot_id):  server code to service these:

    * gui/calendar-pilot-sync.c: updated to make use of cal-client.
    also uses dirty bits on both sides to aid in syncing.

    * cal-client/cal-client.c (cal_client_get_uid_by_pilot_id): new
    function -- ask the cal server to return uid given an object's
    pilot id.
    (cal_client_update_pilot_id): new function -- inform the
    cal server of an objects pilot id and pilot dirty-flag.

2000-06-28  Federico Mena Quintero  <federico@helixcode.com>

    * cal-util/cal-component.[ch]: New files for the new iCalendar
    component object.  Today's properties: basic component type, UID,
    SUMMARY.

    * cal-util/Makefile.am: Added cal-component.[ch] to the list of
    sources.

2000-06-27  Michael Meeks  <michael@helixcode.com>

    * pcs/Makefile.am (INCLUDES): use BONOBO_VFS_GNOME_CFLAGS.

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

    * gui/calendar-model.c: Added an #ifdefed value_to_string handler
    assignment.

2000-06-26  Federico Mena Quintero  <federico@helixcode.com>

    * gui/calendar-model.c (calendar_model_duplicate_value):
    Implement.
    (calendar_model_initialize_value): Implement.
    (calendar_model_value_is_empty): Implement.

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

    * gui/e-day-view.c (e_day_view_reshape_long_event): set event before
    using it!
    (e_day_view_init): used new colors from tigert.

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

    * gui/e-day-view.c, gui/e-week-view.c: Remove the usage of the "x"
    and "y" arguments.

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

    * gui/gnome-cal.c (gnome_calendar_direction): changed so it keeps the
    selection range. It just moves it on one day/week etc. This makes
    it very handy for the keyboard shortcut code.

    * gui/calendar-commands.c (calendar_control_activate): fixed bug
    setting the radio button active.

    * gui/e-day-view.[hc]: added support for keyboard navigation and
    selection of the time range.

2000-06-20  Federico Mena Quintero  <federico@helixcode.com>

    * gui/calendar-model.c (calendar_model_set_value_at): Implemented.
    (calendar_model_is_cell_editable): Implemented.

    * cal-client/cal-client.c (cal_client_update_object): Take in an
    iCalObject instead of a stringified version.

    * gui/gnome-cal.c (gnome_calendar_update_object): Removed.
    (gnome_calendar_remove_object): Removed.
    (save_ical_object_cb): Use the CalClient function.

    * gui/e-day-view.c (e_day_view_on_delete_occurrence): Likewise.
    (e_day_view_on_unrecur_appointment): Likewise.
    (e_day_view_finish_long_event_resize): Likewise.
    (e_day_view_finish_resize): Likewise.
    (e_day_view_key_press): Likewise.
    (e_day_view_on_editing_stopped): Likewise.
    (e_day_view_on_top_canvas_drag_data_received): Likewise.
    (e_day_view_on_main_canvas_drag_data_received): Likewise.
    (e_day_view_on_delete_appointment): Likewise.

    * gui/e-week-view.c (e_week_view_on_editing_stopped): Likewise.
    (e_week_view_key_press): Likewise.
    (e_week_view_on_delete_occurrence): Likewise.
    (e_week_view_on_unrecur_appointment): Likewise.
    (e_week_view_on_delete_appointment): Likewise.

    * gui/gncal-todo.c (ok_button): Likewise.
    (delete_todo): Likewise.

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

    * gui/event-editor-dialog.glade: tidied up dialog a bit, adding
    space etc.

    * gui/e-week-view.c (e_week_view_reshape_events): removed debug msg.

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

    * cal-util/Makefile.am (INCLUDES): Include from
    `$(top_builddir)/libical/src/libical' too.  [For the generated
    libical `icalversion.h' header.]
    * cal-client/Makefile.am (INCLUDES): Likewise.

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

    * gui/e-day-view.c (e_day_view_on_top_canvas_drag_data_received): 
    fixed a DnD bug.

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

    * cal-client/Makefile.am (INCLUDES): Fix to not depend on
    installed ical.h

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

    * gui/e-week-view.c: added little buttons which are shown when there
    are more events than will fit in a day. Clicking on the button takes
    the user to the 1-Day view and shows the full day.

    * gui/e-day-view.c: 
    * gui/e-week-view.c: set the "use_ellipsis" arg to TRUE for the EText
    items so we get tooltips automatically. Though we may want to use our
    own code to show tooltips so we can show the tips when the mouse is
    around the edges of the event box, and we may want to show the start
    and end times of the event in full.

    * gui/calendar-commands.c (calendar_control_activate): 
    * gui/gnome-cal.h: added view_toolbar_buttons[] so we can access the
    radio buttons in the code easily. We need this if we want to jump to
    another view programmatically.

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

    * gui/jump.xpm: new icon for the EWeekView to jump to the day.

    * gui/Makefile.am (EXTRA_DIST): added jump.xpm

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

    * gui/calendar-model.c (calendar_model_class_init): #ifdef'ed out
    references to functions which don't exist yet, so evolution still
    compiles.

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

    * cal-util/test-recur.c: updated.

    * cal-util/cal-recur.[hc]: mostly finished, though it depends on the
    iCalObject struct being updated to support more of iCalendar.

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

    * pcs/.cvsignore: added icalendar-test.

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

    * cal-util/Makefile.am (test_recur_LDADD): use libical.a

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

    * cal-util/Makefile.am (noinst_PROGRAMS): merge the two separate
    noinst_PROGRAMS declarations into one so automake accepts it.
    (INCLUDES): include libical src dir so we don't depend on having
    ical.h already installed

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

    * gui/calendar-model.c: GPtrArray cannot insert stuff in the
    middle of the array (!), so use plain GArray everywhere.  Sigh.

2000-06-13  Federico Mena Quintero  <federico@helixcode.com>

    * cal-client/cal-client.c (cal_client_get_object): Use vCalendar
    again.

    * cal-util/calobj.c (ical_object_find_in_string): From Seth, make
    it use vCalendar again.

2000-06-13  Federico Mena Quintero  <federico@helixcode.com>

    * gui/calendar-model.c (obj_updated_cb): Juggle some eggs in
    asynchronous fashion.  Finished implementing.
    (obj_removed_cb): Implemented.  This one needs no juggling.
    (calendar_model_set_cal_client): Only load the objects if we have
    a client.
    (calendar_model_destroy): Disconnect from the client's signals.

    * gui/Makefile.am (evolution_calendar_SOURCES): Added
    calendar-model.[ch] to the list of sources.

    * pcs/cal-backend-imc.c (cal_backend_imc_get_n_objects): Doh,
    return the computed value.

2000-06-13  Federico Mena Quintero  <federico@helixcode.com>

    * gui/calendar-model.c (CalendarModelPrivate): Added the array of
    objects and the hash table of UID->array index.
    (calendar_model_row_count): Return the length directly from the
    array instead of asking the Wombat.
    (calendar_model_value_at): Implemented.
    (calendar_model_new): Create an empty model.  We provide a new
    setter function now.
    (calendar_model_construct): Removed function.
    (calendar_model_set_cal_client): New function to set the calendar
    client and object type at any time.  This lets us reuse a calendar
    model object.

    * cal-util/calobj.h (iCalObjectField): Just report whether the
    object has alarms; not every single alarm.

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

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

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

    * gui/component-factory.c (factory_fn): Pass NULL for the new args
    @create_folder_fn and @remove_folder_fn.
    (create_view): Updated to match the new
    `EvolutionShellComponentCreateViewFn'.  Return
    `EVOLUTION_SHELL_COMPONENT_UNSUPPORTEDTYPE' if type is not
    "calendar".

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

    * idl/evolution-calendar.idl (Cal): Added a get_n_objects()
    method.

    * pcs/cal-backend.c (cal_backend_get_n_objects): New function.

    * pcs/cal-backend-imc.c (cal_backend_imc_get_n_objects):
    Implemented.

    * pcs/cal.c (Cal_get_n_objects): Implemented.

    * cal-client/cal-client.c (cal_client_get_uids): Free the ev.
    (cal_client_get_n_objects): Implemented.

    * cal-util/calobj.h (iCalObjectField): New enumeration to identify
    the fields in an iCalObject.

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

    * gui/event-editor.c (event_editor_destroy): Free the private
    structure.

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

    * cal-util/calobj.c (ical_object_to_vobject): Allow for NULL
    summaries.

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

    * gui/event-editor.c (toolbar): Added missing tooltips.  We still
    need icons, though.

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

    * cal-util/calobj.c (ical_object_find_in_string): put this back in,
    it's still used in cal-backend-imc.c:cal_backend_imc_update_object

    * cal-client/cal-client.c (cal_client_get_object): instead of
    returning a text representation, decode the text and return an
    iCalObject.  Also added CalClientGetStatus which indicates
    success or type of failure.

    * cal-util/calobj.c (ical_object_find_in_string): #ifed out
    ical_object_find_in_string since it is unused now.

    * cal-client/client-test.c (list_uids): track get_object change
    * gui/calendar-commands.c (calendar_iterate): same
    * gui/e-day-view.c (e_day_view_update_event): same
    * gui/e-week-view.c (e_week_view_update_event): same
    * gui/print.c (print_day_details): same
    (print_day_summary): same
    (print_todo_details): same
    * gui/gnome-cal.c (trigger_alarm_cb): same
    * gui/gncal-todo.c (gncal_todo_update): same

2000-06-06  Seth Alves  <alves@hungry.com>

    * cal-util/icalendar.c, icalendar-save.c: fixed a bunch of problems
    * cal-util/calobj.c (ical_object_find_in_string): use libical
    instead of libversit
    (ical_object_to_string): same
    (dump_icalobject): prints the contents of an icalobject for debugging

    * gui/Makefile.am (LINK_FLAGS): link libical.a instead of libical.la
    so we don't have to modify the build system of the released libical
    * cal-client/Makefile.am (client_test_LDADD): same
    * cal-util/Makefile.am (icalendar_test_LDADD): same

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

    * cal-util/calobj.c (ical_object_destroy): Removed from the public
    header; made static.  Now everyone should use refcounting.

    * pcs/cal-backend-imc.c (free_ical_object): Use
    ical_object_unref().
    (remove_object): Likewise.

2000-06-02  Federico Mena Quintero  <federico@helixcode.com>

    * gui/calendar-commands.c (print): New function to call the print
    engine.
    (calendar_toolbar): Added the Print button.
    (calendar_control_activate): Added the File/Print item.

    * gui/e-day-view.c (e_day_view_get_selected_time_range): Allow
    start_time and end_time to be NULL.

    * gui/e-week-view.c (e_week_view_get_selected_time_range):
    Likewise.

    * gui/print.c (range_selector_new): Show the range selector
    widgets.  Use the correct radio group for all of them!
    (print_calendar): Do the dialog box here.  We may want to split
    this function later into smaller chunks.

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

    * gui/e-week-view-event-item.c (e_week_view_event_item_button_press): 
    allow the right button to popup the menu, even when the event is
    being edited.

    * gui/e-week-view.c: 
    * gui/e-day-view.c: Set the keyboard focus to the EDayView/EWeekView
    when the right button is clicked, so that any event being edited is
    saved before any action (e.g. opening the Event Editor dialog) is
    started. Note that this won't work if we switch to asynchronous
    notification.

2000-06-02  Federico Mena Quintero  <federico@helixcode.com>

    * gui/event-editor.c (tb_save_and_close_cb): Implemented.
    (toolbar): Added an icon for the Save and Close command.
    (save_ical_object): Recompute the title of the window here.  Maybe
    it would be better to do it when we actually get the
    "object_changed" signal from the CalClient.
    (file_close_cb): Implemented.

2000-06-02  Federico Mena Quintero  <federico@helixcode.com>

    * gui/gnome-cal.c (save_ical_object_cb): Implemented.
    (gnome_calendar_add_object): Removed function, since it was
    identical to gnome_calendar_update_object().  Modified the rest
    of the code to use only the latter.
    (gnome_calendar_remove_object): Be more paranoid about the UID.
    (gnome_calendar_update_object): Ditto.  Also, renamed this
    function from gnome_calendar_object_changed(), for consistency
    with the lower-level CalClient interface.

    * gui/event-editor.c (event_editor_class_init): New
    "save_ical_object" signal to ask that our parent store the
    calendar object to the backend.
    (save_ical_object): New function to save the calendar object,
    actually if just emits the signal.
    (file_save_cb): Implemented.
    (dialog_to_ical_object): We want priv->
    alarm_program_run_program_entry (i.e. the entry inside the
    GnomeFileEntry), not the file entry itself.
    (dialog_to_ical_object): Only insert the recurrence ending date if
    the event is recurrent!

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

    * gui/Makefile.am: Fixed EXTRA_DIST.

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

    * gui/gnome-cal.c (editor_closed_cb): Handler for the
    "editor_closed" signal of the event editor; we just destroy it
    then.

    * gui/event-editor.c (app_delete_event_cb): Callback used when the
    dialog is closed.  Release the iCalObject here instead of the
    event editor's destroy handler, and emit the new "editor_closed"
    signal.

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

    * gui/event-editor-dialog.glade: Change of plans.  The toplevel
    GnomeApp is now generated with Glade instead of being created in
    the program code.  Otherwise we can't migrate the accelerators to
    the new toplevel and they won't work.

    * gui/event-editor.[ch]: EventEditor now derives from GtkObject.
    This lets us use the GnomeApp created by libglade and still have
    signals and stuff.

    * gui/event-editor.c (create_menu): Tell the UI handler that the
    menubar is the GnomeApp's existing one, not to create a new one.
    (create_toolbar): Tell the UI handler to use the GnomeApp's
    existing toolbar.
    (event_editor_focus): New function to raise/focus an event editor.

    * gui/gnome-cal.c (gnome_calendar_edit_object): Use
    event_editor_focus().

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

    * gui/calendar-commands.c (calendar_control_activate): Put the
    toolbar into a frame to make it look like standard GNOME toolbars.
    Also, set `GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL' so that it does not
    do evil things when its moved to the left or the right of the
    window.

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

    * gui/gnome-cal.h (GnomeCalendar): Added a hash table to map
    calendar objects to their respective event editors.

    * gui/gnome-cal.c (gnome_calendar_init): Create the
    object_editor_hash.
    (gnome_calendar_destroy): Free the object_editor_hash.
    (gnome_calendar_edit_object): New function to centralize the
    launching of event editors; if one already exists for a particular
    calendar object, we just raise its window.
    (edit): Use gnome_calendar_edit_object().

    * gui/calendar-commands.c (display_objedit): Use
    gnome_calendar_edit_object().
    (display_objedit_today): Likewise.

    * gui/e-day-view.c (e_day_view_on_new_appointment): Likewise.
    (e_day_view_on_edit_appointment): Likewise.

    * gui/e-week-view.c (e_week_view_on_new_appointment): Likewise.
    (e_week_view_on_edit_appointment): Likewise.

    * gui/event-editor.c (event_editor_new): Do not take in an
    iCalObject; rather provide an event_editor_set_ical_object()
    function.  We need this because a single editor may be switched
    between different calendar objects.  Also, do not show the event
    editor; leave it up to the client code.
    (event_editor_construct): Likewise.
    (clear_widgets): New function to clear the widgets to default
    values.
    (fill_widgets): New function to fill in the widgets from the
    iCalObject.  We don't do this in init_widgets() anymore.
    (free_exception_clist_data): New function to free the exceptions
    clist data.  We were leaking the row data.
    (init_widgets): Hook to the destroy signal of the exceptions
    clist.
    (event_editor_set_ical_object): New function.  Now it also makes a
    copy of the calendar object for the event editor; clients do not
    need to copy it anymore.
    (event_editor_destroy): Unref the UI handler as well.
    (event_editor_class_init): New "ical_object_released" signal to
    notify the parent that we are no longer editing the calendar
    object.
    (make_title_from_ico): Handle NULL objects.

    * gui/event-editor.h (EventEditor): Removed fields that are no
    longer used.

2000-05-31  Damon Chaplin  <damon@helixcode.com>

    * cal-util/Makefile.am: added test-recur test program.

    * cal-util/test-recur.c: new file to test the recurrence code.

    * cal-util/.cvsignore: added test-recur.

    * cal-util/cal-recur.c: updated.

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

    * gui/event-editor.c (event_editor_construct): Create the UI
    handler after we have constructed the parent GnomeApp.
    (main_menu): Menu template is now in place.
    (toolbar): Tollbar template is now in place.
    (create_toolbar): Turn off labels in the toolbar since it sucks;
    it should support non-homogeneous buttons with horizontal icons
    and text.

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

    * gui/gnome-cal.c (gnome_calendar_object_changed): Removed the
    flags argument, since now we just proxy the calendar object to the
    calendar client.

    * gui/event-editor.c (alarm_unit_get): Moved over from
    event-editor-utils.c.

    * gui/event-editor-utils.[ch]: Removed files, since the two
    functions that were left there (i.e. the ones not present in
    e-dialog-widgets) can simply be moved to event-editor.c.

    * gui/Makefile.am (evolution_calendar_SOURCES): Removed
    event-editor-utils.[ch] from the list of sources.

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

    * gui/event-editor-utils.c: Moved many functions to
    e-util/e-dialog-widgets.c.

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

    * gui/event-editor-dialog.glade: Put the main notebook directly
    under a simple GtkWindow.  We are going to pull out the notebook
    and slap it into our custom-built GnomeApp, anwyays.

    * gui/event-editor.c: Made the EventEditor derive from GnomeApp.
    Added a BonoboUIHandler for its menu and toolbar.
    (make_title_from_ico): Create a nice title for the window.
    (get_widgets): Fetch the Glade widgets here instead of all over
    the place.
    (event_editor_new): Temporary hack to show the dialog here, just
    so that I can test it.

    * gui/Makefile.am (EXTRA_DIST): Added the Glade messages file.

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

    * gui/main.c (init_bonobo): Do not initialize libglade twice.

    * gui/component-factory.c (create_view): Set the folder_uri
    property, otherwise the calendar will not get loaded into the
    view.

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

    * gui/main.c: Make it so that warnings don't crash calendar.

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

    * gui/evolution-calendar-control.c: Removed.

    * gui/main.c: New.

    * gui/control-factory.c: New.
    * gui/control-factory.h: New.

    * gui/calendar-component-factory.c: New.
    * gui/calendar-component-factory.c: New.

    * gui/evolution-calendar-control.c (calendar_control_factory):
    Renamed from `calendar_factory'.
    (calendar_control_factory_init): Renamed from
    `calendar_factory_init'.

    * gui/Makefile.am: Link with the files from `$(builddir)/shell'.

    * gui/evolution-calendar.gnorba: New.
    * gui/evolution-calendar.oafinfo: New.

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

    * gui/print.c (range_selector_new): New function to create the
    custom range selector.
    (print_dialog): New function to show the print dialog.
    (print_calendar): Use the print dialog.

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

    * gui/Makefile.am: Added libepaned.a.

    * gui/gnome-cal.c: Switched from GtkPaned to EPaned.

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

    * gui/calendar-commands.c (calendar_get_events_in_range): Removed
    function.

    * gui/mark.c (mark_month_item): Use
    cal_client_get_events_in_range().

    * gui/calendar-commands.c (show_year_view_clicked): Comment out,
    since we don't have a year view.

    * gui/gnome-cal.c (setup_widgets): Removed the year view stuff.
    (gnome_calendar_get_current_view_name): Likewise.
    (gnome_calendar_update_view_times): Likewise.
    (gnome_calendar_direction): Likewise.
    (gnome_calendar_set_view): Likewise.
    (gnome_calendar_update_all): Likewise.
    (gnome_calendar_object_updated_cb): Likewise.
    (gnome_calendar_object_removed_cb): Likewise.
    (gnome_calendar_time_format_changed): Likewise.
    (gnome_calendar_get_current_time_range): Likewise.

    * gui/gnome-cal.h (GnomeCalendar): Removed the year view stuff.

    * gui/Makefile.am (evolution_calendar_SOURCES): Added layout.[ch],
    print.[ch].  Removed quick-view.[ch], year-view.[ch] since they
    are no longer used.  Removed all the old Pilot crap.

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

    * cal-util/cal-recur.[hc]: new files to implement iCalendar recurrence
    rules. These are only part finished, but people may like to check that
    the architecture seems OK.

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

    * gui/e-day-view.c (e_day_view_on_delete_occurrence): 
    * gui/e-week-view.c (e_week_view_on_delete_occurrence): use a copy of
    the iCalObject so we detect the change in the "update_event" callback.
    Maybe we should just update the view ourselves and then we wouldn't
    need to detect any change in the callback.

    * cal-util/calobj.c (ical_object_reset_recurrence): new function to
    get rid of any recurrence rules. Used when we 'unrecur' an event.

    * gui/e-day-view.c (e_day_view_key_press): don't add a new event if it
    won't fit, or we end up adding a new event for each key press.
    (e_day_view_update_event_label): don't update it if it doesn't have
    an EText item (i.e. it isn't visible).

    * gui/e-day-view-time-item.c: allow selection of times using this
    column.

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

    * cal-util/timeutil.c (time_add_minutes): Fixed warning message.
    (time_add_day): Likewise.
    (time_add_month): Likewise.
    (time_add_year): Likewise.
    (time_from_day): Of all functions, *this* one had to have a bug.
    Set the tm.tm_isdst to -1 to specify that we don't know whether
    the time is in DST or not.  This fixes *many* bugs upstream.
    (time_week_begin): Likewise.  We never noticed this since the week
    functions are never used.
    (time_week_end): Likewise.

2000-05-17  Seth Alves  <alves@hungry.com>

    * gui/event-editor.c: hooked up more widget signals to callbacks
    to the gladified dialog acts more like the original one.

2000-05-16  Seth Alves  <alves@hungry.com>

    * gui/event-editor.c (recurrence_toggled): hook the radio buttons
    to the pages of the notebook.
    (append_exception): 
    (recurrence_exception_added): 
    (recurrence_exception_deleted): 
    (recurrence_exception_changed): code to deal with the recurrence
    exception list.

2000-05-15  Seth Alves  <alves@hungry.com>

    * gui/event-editor.[ch]: gladeified replacement for eventedit.c

    * gui/event-editor-utils.[ch]: utilities used by event-editor.c

    * gui/event-editor-dialog.glade: glade file used by event-editor.c

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

    * gui/gnome-cal.c (display_notification): Use the alarm
    notification dialog.
    (display_notification_cb): New callback for the result of the
    alarm notification dialog.

    * gui/dialogs/alarm-notify.glade: New file with the alarm
    notification dialog.

    * gui/dialogs/alarm-notify-dialog.[ch]: New file.

    * gui/dialogs/Makefile.am: New file.

    * gui/Makefile.am (SUBDIRS): Added the dialogs directory.

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

    * gui/gnome-cal.c (trigger_alarm_cb): Better error checking, and
    plug leaks of str_ico and ico.

    * gui/evolution-calendar-control.c (main): Initialize libglade.

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

    * pcs/Makefile.am (INCLUDES): Add
    `-I$(top_builddir)/libical/src/libical'.

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

    * cal-util/calobj.c (generate): Use a (dtend - dtstart) offset to
    compute the ending time of the occurrence.  This takes care of
    recurring events that span multiple days.  Also, removed the DST
    condition since it did not look right at all:  if you have a daily
    appointment at 18:00, it still should happen at 18:00 even during
    daylight savings.

    * gui/gnome-cal.c (gnome_calendar_tag_calendar): Use the timeutil
    functions instead of calculating the month's times by hand.  Use
    cal_obj_instance_list_free() instead of freeing the list by hand.
    Clip the range we pass to mark_gtk_calendar_day().
    (mark_gtk_calendar_day): Fixed off-by-one error at the end of the
    month by adding real day offsets.

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

    * gui/gnome-cal.c (add_alarms_for_object): New function to add
    today's alarms for a single object.
    (gnome_calendar_object_updated_cb): Update the object's alarms.

    * idl/evolution-calendar.idl (Cal): Added a
    get_alarms_for_object() method.

    * pcs/cal.c (Cal_get_alarms_for_object): Implemented method.

    * pcs/cal-backend.c (cal_backend_get_alarms_for_object): New
    function.

    * pcs/cal-backend-imc.c (cal_backend_imc_get_alarms_for_object):
    Implemented.

    * cal-client/cal-client.c (cal_client_get_alarms_for_object): New
    function.

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

    * gui/calendar-commands.c (calendar_control_activate): Now that we
    depend on current gnome-libs we can make the toolbar detachable
    again.

    * pcs/icalendar-save.c (timet_to_icaltime): remove unused timezone
    variable to make this compile on BSD systems (where timezone is
    the name of a function)

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

    * gui/gnome-cal.c (gnome_calendar_update_all): Removed unused
    arguments.  Load the initial alarms here.
    (load_alarms): New function to load a day's worth of alarms.
    (gnome_calendar_class_init): Eeeek!  This was taking in an
    incorrect argument type.
    (gnome_calendar_init): Now the calendar keeps a hash table of
    UIDs->queued alarms.  Create the hash table here.
    (gnome_calendar_destroy): Destroy the alarms hash table.
    (gnome_calendar_object_updated_cb): Remove the alarms for the
    object and regenerate them.
    (gnome_calendar_object_removed_cb): Remove the alarms for the
    object.

    * gui/alarm.c (alarm_add): Do not take in a CalendarAlarm, just
    the trigger time, the callback and the closure data.  Return an
    opaque identifier for the alarm so that it can be removed by the
    client code if needed.  Use the queue_alarm() helper function.
    (queue_alarm): Helper function to actually queue the alarm and set
    up the itimer.  Deal with a nonzero return value from
    setitimer().
    (alarm_remove): New function to remove an alarm based on its ID.
    (pop_alarm): New helper function; pops the first alarm of the
    queue and resets the timer as appropriate.
    (alarm_ready): Simplified a lot by using pop_alarm().

    * idl/evolution-calendar.idl (Cal): Added get_alarms_in_range().

    * pcs/cal.c (build_instance_seq): New function to build a CORBA
    sequence from the internal list of instances.
    (Cal_get_events_in_range): Use build_instance_seq().
    (Cal_get_alarms_in_range): Implemented new method.

    * pcs/cal-backend.c (cal_backend_get_alarms_in_range): New
    function with the get_alarms_in_range() engine.

    * pcs/cal-backend-imc.c (cal_backend_imc_get_alarms_in_range):
    Implemented the get_alarms_in_range() method.

    * cal-client/cal-client.c (cal_client_get_alarms_in_range): New
    client-side function for getting the alarms.
    (build_instance_list): New helper function to build the
    CalObjInstance list from the CORBA sequence.
    (cal_client_get_events_in_range): Use build_instance_list().

    * gui/calendar-commands.h: #include <cal-util/calobj.h>.  #include
    "gnome-cal.h".

    * gui/e-week-view.c: #include "calendar-commands.h" instead of
    main.h; the latter is an obsolete file and will be killed.

    * gui/evolution-calendar-control.c (main): Call init_bonobo()
    before anything else.  We need the GTK+ object system initialized.

    * gui/Makefile.am (evolution_calendar_SOURCES): Do not use main.h.

    * cal-util/cal-util.c (cal_alarm_instance_list_free): New function.

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

    * gui/calendar-commands.c (calendar_control_activate): Move
    "about" menuitem to the help menu.

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

    * gui/Makefile.am: Added main.h.  Combined the two EXTRA_DIST
    sections.

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

    * pcs/cal-backend-imc.c: Set the format when creating a new
    calendar.

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

    * pcs/cal-factory.c: Removed double free of method_string in
    uri->method_string.

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

    * pcs/cal.h: Include "calendar/pcs/evolution-calendar.h" instead
    of "evolution-calendar.h".

    * pcs/cal-backend.h: Include "calendar/pcs/evolution-calendar.h"
    instead of "evolution-calendar.h".

2000-05-08  Seth Alves  <alves@hungry.com>

    * gui/e-day-view.c (e_day_view_on_delete_appointment): call
    e_day_view_stop_editing_event here to avoid a divide by zero
    a bit further on.  i'm not sure if this is the best fix for this.

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

    * pcs/cal-backend.h (CalBackendClass): CalBackendClass now is just
    an interface for calendar backends; this is an abstract class.
    Put in the vtable for the backend methods.

    * pcs/cal-backend.c (cal_backend_new): Removed function, since
    CalBackend is not just an abstract class.
    Removed implementation-specific functions and made public
    functions call the virtual methods instead.

    * pcs/cal-backend-imc.[ch]: New files with the CalBackendIMC
    implementation; this implements a backend for iCalendar and
    vCalendar files.  Moved the implementation-specific stuff from
    cal-backend.[ch] to here.

    * pcs/cal-backend-imc.c (CalendarFormat): Moved enumeration to
    here.  Added a CAL_UNKNOWN value for when the backend is not
    loaded yet.
    (cal_backend_imc_init): Initialize priv->format as CAL_UNKNOWN.
    (save_to_vcal): Use the same VCProdIdProp value as in
    cal-util/calobj.c.  Use "1.0" as the VCVersionProp as per the
    vCalendar spec.
    (ensure_uid): Return nothing, since the result value need not be
    used anymore.
    (add_object): Since we mark the calendar as dirty anyways, we do
    not need to check the result value of ensure_uid() anymore.
    (remove_object): Asssert that we know how to handle the object's
    type.  We do this in add_object() anyways.

    * pcs/Makefile.am (libpcs_a_SOURCES): Added cal-backend-imc.[ch].

    * gui/gnome-cal.c: Replaced debugging printf()s with g_message()
    so that we can see the line number where they occur.

    * gui/gnome-cal.c (gnome_calendar_load_cb): Sort of handle the
    LOAD_METHOD_NOT_SUPPORTED result code, and added a default for the
    switch.

    * cal-client/cal-listener.h (CalListenerLoadStatus): Removed
    enumeration; it is stupid to translate all values for the
    CalClient when it is going to translate them again.
    (CalListenerClass::cal_loaded): This signal now passes the
    LoadStatus directly from the CORBA side.

    * cal-client/cal-listener.c (Listener_cal_loaded): Do not
    translate the status value.

    * cal-client/cal-client.h (CalClientLoadStatus): Added the
    CAL_CLIENT_LOAD_METHOD_NOT_SUPPORTED error code.

    * cal-client/cal-client.c (cal_loaded_cb): Translate the CORBA
    version of the LoadStatus result code.

    * pcs/cal-factory.c (CalFactoryPrivate): New methods field for the
    hash table from method strings to the GtkTypes for backend class
    types.
    (cal_factory_init): Create the priv->methods hash table.
    (cal_factory_destroy): Free the priv->methods hash table.
    (cal_factory_register_method): New function to register a backend
    class for a particular URI method.
    (launch_backend_for_uri): New function to launch a backend for a
    particular URI's method.
    (load_backend): Use launch_backend_for_uri().  Move the error
    notification code from load_fn() to here.
    (create_backend): Use launch_backend_for_uri().  Move the error
    notification code form create_fn() to here; it is #ifdefed out
    since currently cal_backend_create() does not have any error
    reporting capabilities.

    * idl/evolution-calendar.idl (Listener::LoadStatus): Added a
    PROTOCOL_NOT_SUPPORTED error code.

    * pcs/cal-factory.c (cal_factory_load cal_factory_create): Removed
    functions, since they were supposed to be internal only.
    (CalFactory_load): Call queue_load_create_job() directly.
    (CalFactory_create): Likewise.

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

    * gui/e-week-view.c (e_week_view_remove_event_cb):
    * gui/e-day-view.c (e_day_view_remove_event_cb): don't set the ico->uid
    to NULL or we won't find any other occurrences of the event. Set the
    editing_event_day/num to -1 instead.

    * gui/e-week-view-event-item.c (e_week_view_event_item_draw): fixed the
    positioning of the icons for long events.

    * cal-util/calobj.c (ical_object_normalize_summary): forgot to
    terminate the string.

2000-05-07  Damon Chaplin  <damon@helixcode.com>

    * gui/e-day-view.c (e_day_view_on_main_canvas_drag_data_received):
    (e_day_view_on_top_canvas_drag_data_received): show the EText item,
    just in case it hasn't moved, otherwise it won't appear.

    * gui/e-day-view.h (E_DAY_VIEW_BAR_WIDTH): increased from 6 to 8 to
    make it easier to drag an event. Also increased E_DAY_VIEW_GAP_WIDTH
    since it must be >= the BAR_WIDTH.

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

    * gui/evolution-calendar-control.c (PROPERTY_CALENDAR_URI):
    Changed to "folder_uri" from "calendar_uri".
    (set_prop): The uri given to us is a directory, so we append a
    filename onto the end before we use it.

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

    * cal-util/timeutil.c (time_day_begin):
    (time_day_end): changed these so they just do a simple localtime(),
    update the struct tm, then do a mktime(). I don't know why it used to
    look at the tm_isdst flags etc. From a little test program I wrote
    which steps through testing every hour for a year it wasn't working
    correctly, and the new code does.
    (time_add_day): also got rid of the stuff that looked at tm_isdst here.
    My test program now works better.

2000-05-06  Chris Toshok  <toshok@helixcode.com>
    * gui/.cvsignore: ignore evolution-calendar.pure

    * gui/Makefile.am: add support for building evolution-calendar.pure

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

    * gui/e-day-view.c:
    * gui/e-week-view.c: finish editing event when user hits Return key.
    (e_week_view_on_text_item_event): stop event signals after doing any
    other calls, since otherwise it will also stop any other resulting
    event signals.

    * gui/e-week-view-event-item.c (e_week_view_event_item_draw): don't
    draw the start/end times while editing.

    * gui/eventedit.c: changed the Summary field to a GtkEntry, since we
    now only want a single line of text.

    * cal-util/calobj.c (ical_object_normalize_summary): new function to
    convert the summary field to a single line of text, by converting any
    sequence of CR & LF characters to a single space.
    (ical_object_create_from_vobject): call the above function. I think
    all functions that load iCalObjects go through this.
    (ical_new): called it here as well just in case.

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

    * gui/week-view.[hc]: removed.

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

    * gui/gncal-day-panel.[hc]:
    * gui/gncal-day-view.[hc]:
    * gui/gncal-full-day.[hc]:
    * gui/gncal-week-view.[hc]:
    * gui/layout.[hc]:
    * gui/view-utils.[hc]: removed old calendar view files.

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

    * cal-util/calobj.[hc]: added guint ref_count to iCalObject struct,
    and ical_object_ref/unref() functions. I've updated all the gui/
    stuff to use ref_counts but I haven't touched the pcs/ stuff. Maybe
    just using ical_object_destroy() is OK there.

    * gui/gncal-todo.c:
    * gui/calendar-commands.c:
    * gui/eventedit.c:
    * gui/e-week-view.c:
    * gui/e-day-view.c: use refcounting for iCalObjects.

    * gui/e-day-view-main-item.c:
    * gui/e-day-view-top-item.c:
    * gui/e-day-view.c: try not to ever draw outside the event, even when
    the event is very small.

2000-05-05  Damon Chaplin  <damon@helixcode.com>

    * gui/e-day-view.c: don't allow recurring events to be resized or
    dragged, and don't show the resize/drag cursors. Actually it may be
    better to let the user do the resize/drag and then ask them what they
    want to do - change the single occurrence or the entire series.

    * gui/e-day-view-time-item.c (e_day_view_time_item_show_popup_menu):
    use e_auto_kill_popup_menu_on_hide() to destroy the popup menu.

    * gui/popup-menu.c: include e-gui-utils.h

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

    * gui/e-day-view.c (e_day_view_foreach_event_with_uid): for the long
    events pass E_DAY_VIEW_LONG_EVENT as the day. Fixes SEGV.

    * gui/calendar-commands.c: when we switch views, grab the focus.

    * gui/gnome-cal.c (gnome_calendar_tag_calendar):
    (gnome_calendar_mark_gtk_calendar_day): changed this so it uses
    cal_client_get_events_in_range(), and doesn't load any objects.
    Also just return if it isn't visible.

    * gui/calendar-commands.c (calendar_get_events_in_range): call
    g_list_sort() to sort the list rather than g_list_insert_sorted() for
    each element. It is much more efficient.
    Also changed it so that the co->ev_start/end fields are copied from
    the CalObjInstance rather than the parameters to the function
    (that is right, isn't it?)
    Also freed the list elements, and finally the list.
    (calendar_iterate): changed this to use cal_client_get_events_in_range
    since that is more efficient than getting all the uids and then loading
    and parsing all the events.

    * pcs/cal-backend.c (save): output the '... saved' message before
    freeing the string!

    * gui/gncal-todo.c (gncal_todo_update):
    * gui/e-week-view.c (e_week_view_update_event):
    * gui/e-day-view.c (e_day_view_update_event):
    * gui/calendar-commands.c (calendar_get_events_in_range):
    (calendar_iterate): free obj_string after it is parsed.

2000-05-02  Damon Chaplin  <damon@helixcode.com>

    * gui/calendar-commands.c (calendar_control_activate): set the active
    radio button here. Oops - it wasn't a Bonobo problem after all.

    * gui/popup-menu.c (popup_menu): added call to
    e_auto_kill_popup_menu_on_hide() to destroy the menu.

    * gui/e-week-view.c (e_week_view_show_popup_menu):
    * gui/e-day-view.c (e_day_view_on_event_right_click): ico->user_data
    isn't useful any more, since the event editor keeps its own iCalObject.
    So for now we make the menu commands available even when the event is
    being edited in the event editor.
    Also corrected misspellings of 'occurance' -> 'occurrence'.

    * gui/eventedit.c (event_editor_destroy): destroy the iCalObject.
    The event editor now uses its own independent iCalObject.

    * gui/e-week-view.c (e_week_view_on_unrecur_appointment):
    * gui/e-day-view.c (e_day_view_on_unrecur_appointment): create a new
    uid for the new single instance. I'm not sure what we should do about
    the creation/last modification times of the objects.

    * gui/e-week-view.c (e_week_view_on_edit_appointment):
    * gui/e-day-view.c (e_day_view_on_edit_appointment): duplicate the
    iCalObject before passing it to the event editor, since it will change
    the fields. If we don't duplicate it we won't know what has changed
    when we get the "update_event" callback.

    * gui/e-week-view.c (e_week_view_key_press):
    * gui/e-day-view.c (e_day_view_key_press): set the created and last_mod
    times of the new iCalObject. We may want to set the default alarm as
    well.

    * cal-util/calobj.c (ical_gen_uid): made this function public so we
    can generate new uids if necessary.

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

    * gui/gnome-cal.[hc] (gnome_calendar_get_current_time_range): new
    function to get the currently seleted time range form the current view.

    * gui/calendar-commands.c (display_objedit): use the above function
    to get the time for the new appointment.

    * gui/e-week-view.c:
    * gui/e-day-view.c: use a shallow copy of the ico when we update the
    times (when resizing/dragging). Otherwise we won't detect that the
    time has changed in the "update_event" callback.

    Also added functions to get the currently selected time range.

2000-04-30  Seth Alves  <alves@hungry.com>

    * pcs/icalendar-save.c (icalcomponent_create_from_ical_object): set
    attendee and contact address correctly.

    * pcs/cal-backend.c (icalendar_calendar_load): init priv->object_hash
    when loading.
    (cal_get_type_from_filename): if file extension is .ical, consider
    the file an ical file.

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

    * cal-util/calobj.c (ical_object_compare_dates): new function to see
    if the event dates have changed (including any recurrence rules).
    It is used for optimization when we get the "object_changed" signal.
    We have to do far less work if the dates are unchanged.

    * gui/e-week-view.c:
    * gui/e-day-view.c: only draw the selection when we have the keyboard
    focus, since the user expects to be able to type in a new event when
    the selection is shown. Also keep the selection when we lose focus,
    but just don't show it.

    Also quite a few changes to cope with the new client/server
    architecture.

    * gui/e-day-view-top-item.c (e_day_view_top_item_draw):
    * gui/e-day-view-main-item.c (e_day_view_main_item_draw):
    * gui/e-week-view-main-item.c (e_week_view_main_item_draw_day):
    only draw the selection if the widget has the keyboard focus.

    * gui/gnome-cal.c (mark_gtk_calendar_day): fixed so it works with
    events longer than one day. And changed the code for updating events
    in the new views.

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

    * gui/evolution-calendar-control.c
    (init_bonobo): OAFized.

    * gui/main.c (main): Initialize with OAF if `USING_OAF'.

    * gui/evolution-calendar-control.c: New #define
    `CONTROL_FACTORY_ID', varying according to whether we are
    `USING_OAF'.
    (calendar_factory_init): Use `CONTROL_FACTORY_ID'.

    * gui/Makefile.am: Updated for OAF.

    * pcs/cal-factory.h: Explicitly #include
    "calendar/pcs/evolution-calendar.h" instead of just
    "evolution-calendar.h".

    * cal-client/cal-client.c (cal_client_construct) [USING_OAF]: Use
    OAF.

    * cal-client/client-test.c (init_corba): New function, implemented
    differently depending on `USING_OAF'.

2000-04-27    <alves@hungry.com>

    * pcs/cal-backend.c (cal_backend_load): fix memory leak
    (save_to_vcal): same
    (save): same
    (cal_backend_load): same

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

    * cal-util/.cvsignore: Replaced libcal-util.la with *.la

    * pcs/.cvsignore: Added *.la and *.lo.

2000-04-25  Federico Mena Quintero  <federico@helixcode.com>

    * pcs/cal-factory.c (backend_last_client_gone_cb): Renamed from
    backend_destroy_cb.  Now we use it for the "last_client_gone"
    signal from the backend.  Also, unref the backend to destroy it.
    (add_backend): Connect to the "last_client_gone" signal of the
    backend.
    (cal_factory_get_n_backends): New function to query the number of
    running backends.

    * pcs/cal-backend.c (cal_backend_class_init): Register the new
    "last_client_gone" signal.  It is emitted when the last Cal client
    goes away.  It is used to notify the factory when a backend may be
    safely destroyed.
    (cal_destroy_cb): Emit the "last_client_gone" signal when the last
    client disconnects from the backend.

2000-04-25  Seth Alves  <alves@hungry.com>

    * gui/e-day-view.c (e_day_view_find_event_from_ico): compare
    iCalObjects by their UIDs instead of by their pointers.

    * pcs/cal-backend.c (cal_backend_destroy): don't save on destroy.

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

    * cal-client/Makefile.am: Add `$(datadir)/idl'.

    * pcs/Makefile.am (idl_flags): Add `$(datadir)/idl'.
    (INCLUDES): Use `$(BONOBO_GNOME_CFLAGS)'.

2000-04-25  Seth Alves  <alves@hungry.com>

    * gui/gnome-cal.c (gnome_calendar_destroy): hook for widget
    destroy -- used to unref the CalClient so wombat knows we are gone.
    (gnome_calendar_class_init): added a class init for this widget.

    * gui/e-day-view.c (e_day_view_update_event): allow for null ico

    * gui/e-week-view.c (e_week_view_update_event): allow for null ico

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

    * cal-client/client-test.c (main): The path to the test calendar
    changed when we moved stuff around.  Users will have to tweak this
    for their CVS setup, anyways.
    (create_client): Create or load the calendar as appropriate.
    (client_destroy_cb): Exit the main loop if both clients are gone.
    (main): Connect to the "destroy" signal of the clients so that we
    can terminate the test program.

2000-04-24  Seth Alves  <alves@hungry.com>

    * pcs/icalendar.c (parse_person): allow for null CN
    (parse_person): allow for null sent_by

    * pcs/Makefile.am: build icalendar-test

    * pcs/icalendar-test.c: a test which loads an ical file and
    converts it to our internal format, and then saves it back out.

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

    * gui/Makefile.am: added new source files and pixmaps, and removed
    old source files, which can be deleted.

    * gui/e-week-view-titles-item.[hc]:
    * gui/e-week-view-main-item.[hc]:
    * gui/e-week-view-event-item.[hc]:
    * gui/e-week-view.[hc]: new files implementing the week/month views.

    * gui/yearview.xpm:
    * gui/monthview.xpm:
    * gui/weekview.xpm:
    * gui/workweekview.xpm:
    * gui/dayview.xpm: new pixmaps for the toolbar buttons. These aren't
    intended to be the final pixmaps.

    * gui/calendar-commands.c: added radio buttons to the toolbar to
    switch between the calendar views, and moved the am_pm_flag here so we
    can get rid of view-utils.c.

    * gui/gnome-cal.[hc]: made it a subclass of GtkVBox, rearranged the
    widgets into 2 notebooks, and added the selection_start_time and
    selection_end_time fields.

    * gui/goto.c: updated to use new selection time range.

    * gui/quick-view.c: added '#include <gtk/gtkwindow.h>' so it compiles.

    * gui/e-day-view.[hc]: changed the interface to support the new
    selection time range, got rid of a few debugging messages and changed
    a few bits.

2000-04-21  Seth Alves  <alves@hungry.com>

    * pcs/icalendar-save.c: start on code to do the opposite of
    icalendar.c (convert from iCalObjects to libical's icalcomponents).

    * gui/calendar-commands.c (calendar_control_activate): moved
    "About Calendar" into the View menu so it shows up.

2000-04-20  Seth Alves  <alves@hungry.com>

    * gui/gnome-cal.c (gnome_calendar_changed_cb): new function: callback
    for listener's object updated signal.
    (gnome_calendar_object_removed_cb): new function: callback for
    listener's object removed signal.
    (gnome_calendar_new): hook up listener's "obj_updated" and
    "obj_removed" signals so if evolution is running twice,
    they will both see changes right away.
    (gnome_calendar_object_changed): don't call update_all, since
    it will be called by the listener.
    (gnome_calendar_remove_object): don't call update_all
    (gnome_calendar_add_object): don't call update_all

    * gui/gncal-full-day.c (child_realize): create fullday's gcs
    even if pixmap_bell has already been created.  this was
    causing crashes if the calendar was run twice.

2000-04-19  Seth Alves  <alves@hungry.com>

    * gui/eventedit.c (ee_rp_init_rule): changed the order around
    a bit to avoid a Gtk-CRITICAL crash

    * gui/gncal-todo.c (gncal_todo_update): fixed code to populate
    the todo clist

    * cal-client/cal-client.c (cal_client_get_uids): don't check
    type against CALOBJ_TYPE_ANY since it will always match.
    (cal_client_get_uids): same (re: CALOBJ_TYPE_ANY)

    * pcs/cal-backend.c (build_uids_list): same (re: CALOBJ_TYPE_ANY)

    * pcs/cal.c (Cal_get_uids): same (re: CALOBJ_TYPE_ANY)

    * pcs/cal-backend.c (remove_object): don't call save from here
    because in all cases the caller of remove_object calls save

    * gui/calendar-commands.c (calendar_set_uri): calls gnome_calendar_open
    instead of checking on disk and calling load or create.

    * gui/gnome-cal.c (gnome_calendar_object_changed): fixed to use
    cal_client_update_object -- editing and dragging events works again
    (gnome_calendar_open): collapsed gnome_calendar_load and
    gnome_calendar_create into this function.  added new type
    GnomeCalendarOpenMode which has the value CALENDAR_OPEN or
    CALENDAR_OPEN_OR_CREATE.

    * gui/evolution-calendar-control.c (calendar_properties_init): create
    a property bag for this control
    (set_prop): callback for property sets
    (get_prop): callback for proprety gets

    * gui/calendar-commands.c (calendar_set_uri): new function,
    called when the "calendar_uri" property is set on the calendar-
    control's property bag.

2000-04-18  Federico Mena Quintero  <federico@helixcode.com>

    * cal-util/Makefile.am (INCLUDES): Fix include path.

2000-04-16  Federico Mena Quintero  <federico@helixcode.com>

    * pcs/cal-factory.h (CalFactoryClass): We have a new
    "last_calendar_gone" signal that Wombat can use to terminate
    itself properly.

    * pcs/cal-factory.c (cal_factory_class_init): Register the
    "last_calendar_gone" signal.
    (backend_destroy_cb): Emit the "last_calendar_gone" signal instead
    of killing the factory.

    * pcs/Makefile.am: Added $(CORBA_GENERATED) to BUILT_SOURCES.
    (INCLUDES): Make the log domain be "wombat-pcs".

2000-04-17  Seth Alves  <alves@hungry.com>

    * pcs/cal-backend.c (add_object): removed implicit save, since
    we don't want to save as we load from disk.
    (cal_backend_update_object): added a call to save, since it
    isn't done by add_object now.

2000-04-16  Federico Mena Quintero  <federico@helixcode.com>

    * cal-util/Makefile.am: Renamed library from libcalutil to
    libcal-util, to be consistent with libcal-client.  Install header
    files in $(includedir)/evolution/cal-util.
    (INCLUDES): Add "cal-util" log domain for glib.
    (libcal_clientincludedir): The header files are now installed in
    $(includedir)/evolution/cal-client.

    * cal-util/cal-util.h: Fix includes.

    * cal-client/client-test.c: Fix includes.

    * pcs/Makefile.am: Create libpcs.a, not a shared library, because
    it is for internal use by Wombat only.  The header files should
    not be installed, either.  Removed all the old Tlacuache stuff.

    * gui/Makefile.am (EXTRA_DIST): We no longer distribute
    gncal.desktop.
    (evolution_calendar_INCLUDES): Add "calendar-gui" for the glib log
    domain.

    * gui/*.[ch]: Fix cal-util and cal-client includes.

    * pcs/Makefile.am (INCLUDES): Added "pcs" log domain for glib.

    * pcs/*.[ch]: Fix cal-util includes.

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

    * pcs/icalendar.c (icaltime_to_timet): use HAVE_TIMEZONE to switch
    between linux's timezone variable and *bsd's method of getting the
    gmt offset.

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

    * pcs/cal-backend.c (save_to_vcal): create and save an actual
    vcalendar instead of a list of vcal objects.

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

    * gui/Makefile.am (INCLUDES): moved srcdir directories to the top so
    we search headers in the evolution tree before installed headers.
    (Otherwise when you do 'make install' lots of files in gui/ get
    rebuilt, since they depend on the installed cal-client.h which has just
    been updated.)

2000-04-09  Seth Alves  <alves@hungry.com>

    * gui/gnome-cal.c (gnome_calendar_load): catch cal_loaded signal
    on the cal client.
    (gnome_calendar_load_cb): callback for cal_loaded signal.  moved
    gnome_calendar_update_all from gnome_calendar_load to here.

    * gui/calendar-commands.c: minor cleanups

    * pcs/cal-backend.c (save_to_vcal): copied code from gnome-pim
    to write vcal to a file
    (save): filled it with more gnome-pim code
    (add_object): call save () after changing
    (remove_object): same
    (cal_backend_create): same
    (cal_backend_remove_object): same

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

    * gui/Makefile.am: Removed linking with libetable and libeminicard
    since they weren't being used.

2000-04-08  Seth Alves  <alves@hungry.com>

    * gui/gnome-cal.c (gnome_calendar_create): new function:
    friendly wrapper for cal_client_create_calendar

    * gui/calendar-commands.c (new_calendar): call gnome_calendar_create
    if no filename is provided

    * gui/prop.c (properties): calendar is a frame

    * gui/calendar-commands.c (calendar_control_activate): sort out the
    menus a bit, more of them show up now.

    * gui/Makefile.am: don't build library or test, just the bonobo control

    * gui/gncal-todo.c (simple_todo_editor): calendar is a frame instead
    of a window, now.

    * gui/gnome-cal.c (gnome_calendar_new): same

    * gui/goto.c (goto_dialog): same

2000-04-06  Seth Alves  <alves@hungry.com>

    * gui/calendar-commands.c (calendar_control_activate): removed
    uih from the argument list, added cal.  use cal as user_data
    in callbacks rather than the control.
    (calendar_control_deactivate): removed uih from argument list

2000-04-05  Seth Alves  <alves@hungry.com>

    * gui/calendar-commands.c (setup_menu): removed
    (setup_appbar): removed
    (calendar_control_activate): new function -- does the work
    that setup_appbar and setup_menu used to do.
    (calendar_control_deactivate): undoes what calendar_control_activate
    does by removing the toolbar items and menu items.

    * gui/Makefile.am: build test-calendar-widget and evolution-calendar,
    common stuff is in a library

    * gui/gnome-cal.c (gnome_calendar_get_type): made the calendar widget
    based on a gtk_frame rather than a gnome_app

    * gui/calendar-commands.c: split out some of main.c

    * gui/evolution-calendar-control.c: bonobo bung so evolution
    can use the calendar widget

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

    * pcs/.cvsignore: Added *.lo.

2000-03-30  Seth Alves  <alves@hungry.com>

        * gui/main.c (calendar_get_events_in_range):
        cal_client_get_events_in_range returns a list of CalObjInstance *, not
        a list of (char *) uid.

    * Makefile.am (SUBDIRS): readded the gui directory

    * gui/main.c: temporarily added alarm_defaults back in,
    since the calendar doesn't link without it

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

    * Makefile.am: remove the gui directory, which doesn't compile.

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

    * pcs/Makefile.am: create a libpcs.la library, for use in the
    wombat.

2000-03-28  Seth Alves  <alves@hungry.com>

    * gui/Makefile.am (LINK_FLAGS): added libeutil.la and libetext.a

    * gui/main.c (calendar_iterate): switch from string_to_ical_object to
    ical_object_find_in_string
    (calendar_get_events_in_range): same
    (session_save_state): commented out references
    to gcal->client->filename

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

    * pcs/cal-backend.c (cal_backend_get_object): Use
    ical_object_to_string().

    * cal-util/calobj.c (ical_object_to_string): Moved over from
    pcs/cal-backend.c (was string_from_ical_object).
    (get_calendar_base_vobject): Likewise, moved over from
    pcs/cal-backend.c.

    * cal-util/cal-util.c: Removed string_to_ical_object(); the
    correct function is in calobj.[ch], called
    ical_object_find_in_string().  Removed ical_object_to_string,
    since we now implement it in calobj.c.

    * cal-util/calobj.c: Removed ical_object_new_from_string(); see
    above.

    * idl/evolution-calendar.idl (CalObjInstance): Calendar object
    instances now contain only the UID for the object, not the whole
    string representation of the object.  This allows clients to
    implement caching of objects if they wish.

    * pcs/cal.c (Cal_get_events_in_range): Likewise.

    * pcs/cal-backend.c (build_event_list): Likewise.

    * cal-client/cal-client.c (cal_client_get_events_in_range):
    Likewise.

    * cal-util/cal-util.h (CalObjInstance): Likewise.

    * cal-util/cal-util.c (cal_obj_instance_list_free): Likewise.
    (cal_obj_uid_list_free): Assert that the UIDs in the list are not
    NULL.

    * pcs/tlacuache.gnorba (repo_id): The calendar factory also
    supports the Unknown interface.

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

    * gui/e-day-view.c: Fix includes.
    (e_day_view_on_delete_occurance): Do not call save_default_calendar().
    (e_day_view_on_delete_appointment): Likewise.
    (e_day_view_on_unrecur_appointment): Likewise.
    (e_day_view_finish_long_event_resize): Likewise.
    (e_day_view_finish_resize): Likewise.
    (e_day_view_key_press): Likewise.
    (e_day_view_on_editing_stopped): Likewise.
    (e_day_view_on_top_canvas_drag_data_received): Likewise.
    (e_day_view_on_main_canvas_drag_data_received): Likewise.

2000-03-13  Damon Chaplin  <damon@helixcode.com>

    * gui/e-day-view*.[hc]: new files for the Day/Work-Week views.

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

    * gui/main.c (gnome_calendar_locate): Removed function now that it
    is no CORBA server in the GUI.
    (save_default_calendar): Removed function.  Now the personal
    calendar server will take care of saving modified calendars when
    appropriate.
    (close_cmd): Do not call unregister_calendar_services().

    * gui/eventedit.c (ee_ok): Do not save the calendar.

    * gui/gncal-day-panel.c (day_view_range_activated): Likewise.

    * gui/gncal-todo.c (ok_button): Likewise.
    (delete_todo): Likewise.

    * gui/gncal-full-day.c (delete_occurance): Likewise.
    (delete_appointment): Likewise.
    (unrecur_appointment): Likewise.
    (child_focus_out): Likewise.
    (update_from_drag_info): Likewise.

    * gui/gnome-cal.c (gnome_calendar_new): Removed obsolete call to
    create the CORBA server.

    * gui/gnome-cal.h (GnomeCalendar): Renamed `calc' field to
    `client'.

    * cal-client/cal-client.h (CalClient): Removed filename and
    corba_server fields.

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

    * gui/main.c (main): Do not pass the INIT_SERVER flag to
    gnome_CORBA_init_with_popt_table().  Check for exceptions
    properly.
    (main): Initialize Bonobo.
    (main): Call process_dates() to parse the dates from the command
    line before we dump the events or the TODOs.
    (main): Use bonobo_main() instead of gtk_main().

    * cal-util/calobj.c (ical_new): Initialize the alarm types here.
    Do not call default_alarm() anymore, since that is a GUI issue.
    (default_alarm): Removed function.
    (alarm_defaults): Removed defaults data.

    * pcs/tlacuache.c (calendar_notify): Removed stubs for
    alarm_defaults, calendar_notify(), debug_alarms.

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

    * gui/Makefile.am: Removed the corba-cal stuff.  Commented out the
    Pilot conduit stuff for now.

    * gui/calendar.c: Random #ifdefs to make it build, although this
    file is going away.

    * gui/Makefile.am: Removed referenes to calobj.[ch] and timeutil.[ch].

    * gui/calendar-conduit.c: Fixup includes.

    * gui/calendar-conduit.h: Fixup includes.

2000-03-09  Seth Alves  <alves@hungry.com>

    * gui/gnome-cal.h: replaced "Calendar *cal" with "CalClient *calc"
    in the GnomeCalendar struct.

    * gui/*.c: tracked change from Calendar * to CalClient

    * gui/main.c: moved alarm_defaults from here to cal-util/calobj.c
    (calendar_get_events_in_range): pulled this out of calendar.c and
    fixed it up to use cal-client stuff.  i'm not sure where to put it yet.

    * gui/main.c (calendar_iterate): pulled this one out of calendar.c also

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

    * cal-client/Makefile.am: Removed cal-client-alarm.[ch] from the
    list of sources.  This was a miscommunication on our part.

2000-03-05  Seth Alves  <alves@hungry.com>

    * cal-client/cal-client-alarm.c: stubs for client side
    access to alarm structures.  this will probably change,
    since i don't know what i'm doing.

    * cal-util/alarm-enums.h: enums for alarms needed by
    both the client and the server

    * remaining source files in calendar/... have been moved
    to calendar/gui.

    * gui/alarm.c: start to decouple the view from the model
    in the alarm editing code

2000-03-03  Seth Alves  <alves@hungry.com>

    * cal-util/Makefile.am: new file -- things shared between
    the client and server go in this directory

    *  calobj.c calobj.h icalendar.c icalendar.h
    timeutil.c timeutil.h cal-util.c cal-util.h where moved
    backend stuff went into pcs.  shared stuff went into
    cal-util.

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

    At this point the calendar client and personal calendar server
    files were moved to the idl/, cal-client/, and pcs/ directories.

    * idl/Makefile.am: New file.

    * cal-client/Makefile.am: New file.  Moved the libcal-client stuff
    from calendar/Makefile.am to here.

    * pcs/Makefile.am: New file.  Moved the tlacuache stuff from
    calendar/Makefile.am to here.

    * Makefile.am (SUBDIRS): Added the idl and cal-client directories.

    * calendar.h: Removed the references to cal-backend.h and its
    stuff.  This file is going away soon!

    * icalendar.c: #include <config.h>.  Also, we don't need to
    include cal-backend.h or gnome.h.

    * icalendar.h: Protect from multiple inclusions.

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

    * Makefile.am: Use the gnome-config flags for orbit-idl.
    Create a libcal-client library with the calendar client object.

2000-02-29  Federico Mena Quintero  <federico@helixcode.com>

    * Makefile.am: Removed stale rule for the conduit.

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

    * .cvsignore: Added *.lo.

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

    * .cvsignore: Added tlacuache and tl-test.

2000-02-18  Miguel de Icaza  <miguel@nuclecu.unam.mx>

    * Makefile.am (INCLUDES): Use BONOBO_VFS_GNOME_CFLAGS instead of
    GNOMEUI_INCLUDES, as we use Bonobo and VFS.

2000-02-17  Seth Alves  <alves@hungry.com>

    * cal-backend.h: moved CalendarFormat type def here

    * cal-backend.c (cal_backend_load): if extension suggests
    an ical file, attempt to load an iCal file.
    (cal_get_type_from_filename): returns CAL_ICAL if file
    extension is 'ics' or 'ifb', else returns CAL_VCAL
    (icalendar_calendar_load): moved this here from
    icalendar.c because it needs to call the static function
    add_object.

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

    * cal-client.c (cal_client_remove_object): Implemented.

    * cal.c (cal_notify_remove): Implemented.
    (Cal_remove_object): Implemented.
    (cal_get_epv): Fill in the remove_object field in the epv.

    * cal-backend.c (cal_backend_remove_object): Implemented.
    (notify_remove): New function to notify clients that an object was
    removed.

2000-02-16  Russell Steinthal  <rms39@columbia.edu>

    * calobj.[ch], eventedit.c, main.c: Change iCalObject.organizer
    from char* to iCalPerson*

    * calobj.[ch]: Change iCalObject.related from list of char* to
    list of iCalRelation*; assorted related fixes

    * icalendar.c: interface between libical and the gnomecal
    internal representation

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

    * cal-client.c (cal_client_update_object): Implemented.

    * cal.c (cal_notify_update): New function to notify the listener
    about an updated object.
    (Cal_update_object): Implemented.
    (Cal_get_uids): set_release() the sequence to TRUE.
    (Cal_get_events_in_range): Likewise.

    * cal-backend.c (remove_object): New function to remove objects
    from a calendar backend.
    (cal_backend_update_object): New public function to update an
    object and notify clients about it.

    * evolution-calendar.idl (Cal): Added update_object() and
    delete_object() methods.
    (Listener): Removed the obj_changed method and renamed obj_added
    to obj_updated.  We now only have updated and removed notifiers.

    * cal-listener.[ch]: Removed the "changed" notification code.
    Changed the "added" notification code to the "updated"
    notification.

    * cal-client.c: Likewise.

    * tlacuache.c (create_cal_factory): Connect to "destroy" on the
    factory and exit the main loop when the factory is destroyed.

    * cal-factory.c (backend_destroy_cb): New callback used when a
    backend is destroyed.  Removes the backend from the factory's hash
    table and unrefs the factory if all backends go away.
    (add_calendar_client): Free the environment.

    * cal.c (cal_new): Use bonobo_object_unref() if we fail to
    initialize.

    * cal-listener.c (cal_listener_new): Likewise.

    * layout.c (layout_events): Plug li.partition memory leak.

2000-02-10  Federico Mena Quintero  <federico@helixcode.com>

    * cal-backend.c (cal_backend_add_cal): Connect to the Cal's
    destroy signal.
    (cal_backend_remove_cal): Killed function now that removal of Cal
    objects is done in their destroy callback.
    (cal_destroy_cb): New callback to remove a Cal from the backend's
    list of clients.  Also, the backend destroys itself when there are
    no more clients connected to it.
    (save): New placeholder function to save a backend.
    (destroy): New function to destroy a backend's data.
    (cal_backend_destroy): Save the calendar and destroy it.

    * cal.c (cal_destroy): Reset the priv->backend to NULL.

    * cal-factory.c (add_calendar_client): There is no need to call
    cal_backend_remove_cal(); we can now just destroy the Cal object.
    (create_fn): Make sure we always unref the URI.
    (load_fn): Move the URI unref to the end of the function for
    safety.

    * cal-factory.c (add_calendar_client): Unref the Cal only if
    notification of the listener was unsuccessful.  Otherwise, the
    calendar user agent (Listener side) keeps the reference.

    * tl-test.c (list_uids): Free the calobj.

    * cal-client.c (cal_loaded_cb): Use bonobo_object_unref() to get
    rid of the listener.
    (load_or_create): Likewise.
    (destroy_factory): New function to get rid of the factory.
    (destroy_listener): New function to get rid of the listener.
    (destroy_cal): New function to get rid of the calendar client
    interface object.
    (cal_client_destroy): Free all resources.
    (cal_client_get_object): CORBA_free() the calobj string.  Boy, I
    love memprof.

    * cal-listener.c (cal_listener_destroy): Reset the priv->cal to
    CORBA_OBJECT_NIL.

    * cal-backend.c (cal_backend_remove_cal): Do not unref the Cal,
    since the calendar user agent owns it.
    (cal_backend_add_cal): Do not ref the Cal, since the calendar user
    agent owns it.

    * cal-factory.c (add_calendar_client): Use bonobo_object_unref()
    to get rid of the calendar client interface object.

    * calobj.c (ical_object_create_from_vobject): Duplicate the
    default "PUBLIC" string.

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

    * cal-factory.c (cal_factory_load): Added documentation comment.
    (load_fn): Do not print a message if the backend could not be
    loaded due to a non-fatal error.
    (queue_load_create_job): Moved the stuff from cal_factory_load()
    to here.  Now this function serves to queue load or create
    requests.
    (cal_factory_load): Use queue_load_create_job().
    (cal_factory_create): Implemented; use queue_load_create_job().
    (create_fn): New job handler for creating new calendars.
    (create_backend): New function to create a new backend with a new
    calendar.
    (add_backend): New helper function to add backends to the
    factory's hash table.
    (load_backend): Use add_backend() instead of adding the backend by
    ourselves.

    * cal-client.c (load_or_create): Moved the functionality from
    cal_client_load_calendar() to here, and added an option to create
    a new calendar instead of loading an existing one.
    (cal_client_load_calendar): Use load_or_create().
    (cal_client_create_calendar): Implemented.

    * cal-backend.c (cal_backend_create): Implemented.

    * evolution-calendar.idl (LoadStatus): Added an IN_USE error for
    create requests.

    * cal-listener.h (CalListenerLoadStatus): Added CAL_LISTENER_LOAD_IN_USE.

    * cal-listener.c (Listener_cal_loaded): Convert the IN_USE error.

    * cal-client.h (CalClientLoadStatus): Added CAL_CLIENT_LOAD_IN_USE.

    * cal-client.c (cal_loaded_cb): Handle CAL_LISTENER_LOAD_IN_USE.

    * tl-test.c: New test program for the calendar client side; it
    also exercises the server side by sending commands to it.

    * Makefile.am: Added the tl-test program.

    * tlacuache.gnorba: Updated.

    * tlacuache.c (create_cal_factory): Use the right GOAD id.

    * cal-client.c (cal_client_construct): Use the right GOAD id.

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

    * evolution-calendar.idl (Cal): Added get_uids() method to get a
    list of UIDs based on object types.

    * cal-backend.c (cal_backend_get_uids): Implemented get_uids() in
    the backend.

    * cal.c (Cal_get_uids): Implemented get_uids() method.

    * cal-client.c (cal_client_get_uids): Implemented client-side
    function.

    * cal-util.c (cal_obj_instance_list_free): Doh.  Free the list,
    not the last link.
    (cal_obj_uid_list_free): New function to free a list of UIDs.

    * GnomeCal.idl (Repository): Removed unused method
    get_object_by_id_list().  This is just for cleanup purposes and to
    remind me exactly of what needs to be moved over to
    evolution-calendar.idl.
    (Repository): Removed unused get_objects() method.

    * corba-cal.c (init_calendar_repo_class): Removed the unused
    get_objects method.

    * calobj.h (CalObjFindStatus): New status value enumeration for
    the find function.

    * calobj.c (ical_object_find_in_string): New function to parse a
    complete calendar and find a calendar object in it.  This should
    be used instead ical_object_new_from_string() in the future.

    * evolution-calendar.idl (CalObjInstance): Added an uid field.
    Now the idea is that whenever calendar object strings are passed
    around, their UIDs are passed along with them so that the actual
    object can be pulled from the whole VCAL object using its UID to
    identify it.

    * cal-util.h (CalObjInstance): Added uid field.

    * cal-util.c (cal_obj_instance_list_free): Free the UIDs.

    * cal-backend.c (build_event_list): Store the object's UID in the
    instance structure.

    * cal.c (Cal_get_events_in_range): Copy the UID field to the CORBA
    structure.

    * cal-client.c (cal_client_get_events_in_range): Copy the UID
    field from the CORBA structure.

    * main.c (gnome_cal_file_menu): Removed unfinished html-month stuff.

    * Makefile.am (gnomecal_SOURCES): Removed html-month.c.

    * gnome-cal.c: #include "alarm.h"
    (mail_notify): Made static.

    * alarm.h: #include "calobj.h"

    * corba-cal-factory.h (init_corba_server): Fixed prototype.

    * quick-view.c (create_items_for_event): Made static.

    * gncal-todo.c (column_resized): Made static.

    * layout.c (find_index): Made static.

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

    * evolution-calendar.idl (CalObjInstance): New struct to wrap
    instances of calendar objects for recurrencies and alarms.
    (Cal::get_events_in_range): New method to get ocurring and
    recurring events by time range.

    * cal-backend.c (cal_backend_get_events_in_range): New function to
    get a list of event instances in a time range.
    (string_from_ical_object): New internal function.
    (cal_backend_get_object): Use string_from_ical_object() instead of
    doing everything ourselves.
    (cal_backend_get_events_in_range): New function to get a list of
    the events that occur or recur in a specified time range.

    * cal-client.c (cal_client_get_events_in_range): Implemented
    client-side function.

    * cal-util.h:
    * cal-util.c: New files with utilities and types common to the
    client and server parts.
    (CalObjInstance): New structure to hold an instance of an actual
    occurrence, recurrence, or alarm trigger of a calendar object.
    (cal_obj_instance_list_free): New function to free a list of
    calendar object instances.

    * cal.c (Cal_get_events_in_range): Implemented new method.

    * corba-cal.c (cal_repo_get_updated_objects): Free `str' with
    free(), not g_free(), since calendar_get_as_vcal_string() uses
    writeMemVObject(), which uses realloc().  Fixed in gnome-pim as
    well.

2000-02-04  Federico Mena Quintero  <federico@helixcode.com>

    * cal-backend.c (get_calendar_base_vobject): New function to
    create the base VObject for a calendar.
    (cal_backend_get_object): Create the base calendar and add the
    sought object to it, then stringify it.

    * evolution-calendar.idl (Listener::obj_added
    Listener::obj_changed): Now these pass in just the UIDs, not the
    complete objects.

    * cal-listener.c (Listener_obj_added): Changed to pass in the uid,
    not the object.
    (Listener_obj_changed): Likewise.

    * cal-client.h (CalClientClass): Made the obj_added and
    obj_changed signals take in the UIDs, not the full objects.

    * cal-client.c (obj_added_cb): Likewise.
    (obj_changed_cb): Likewise.

2000-02-04  Federico Mena Quintero  <federico@helixcode.com>

    * cal-backend.c (CalBackendPrivate): Renamed the event_hash field
    to object_hash.  Now we hash all the calendar's objects here based
    on their UIDs.
    (ensure_uid): New function to create UIDs for calendar objects
    that don't have them.
    (add_object): Ensure the object has an UID before inserting it in
    the calendar.
    (cal_backend_get_object): New function.

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

    * evolution-calendar.idl (Cal): Added the get_object() method.

    * cal-client.c (cal_client_get_object): New function to get a
    calendar object by its UID.

    * cal.c (Cal_get_object): Implemented.

    * cal-backend.c (cal_backend_get_object): New unfinished backend
    function.  We need some reorganizing of how the calendar objects
    are stored.

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

    * Makefile.am (gnomecal_SOURCES): Added the CORBA generated
    sources.

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

    * cal-client.c (cal_loaded): Handle the cal_loaded signal from the
    listener.  Store the calendar client interface object, and emit
    our own cal_loaded signal.
    (cal_client_load_calendar): Connect to the listener's signals.
    (cal_client_class_init): Added the "obj_added", "obj_removed",
    öbj_changed" signals.
    (obj_added_cb): Handle the signal from the listener.
    (obj_removed_cb): Likewise.
    (obj_changed_cb): Likewise.

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

    * Makefile.am (gnomecal_SOURCES): Added cal-client.[ch] and
    cal-listener.[ch].

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

    * evolution-calendar.idl: Changed the namespace from
    GNOME::Calendar to Evolution::Calendar.
    (Listener::LoadStatus): Fixed SUCESSS -> SUCCESS typo.  And I
    never noticed it in the implementation.  Ain't M-/ grand?

    * Makefile.am: Changed ocurrences of gnome-calendar.idl to
    evolution-calendar.idl.

    * *.[ch]: Changed GNOME_Calendar_foo identifiers to
    Evolution_Calendar_foo.

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

    * cal-client.c cal-client.h: New files with the calendar client
    object.

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

    * cal-factory.c (CalFactory_load): Check that the listener is not
    nil and emit and exception if it is.

    * gnome-calendar.idl (CalFactory::load CalFactory::create): Now
    these raise the NilListener exception.

    * tlacuache.c (calendar_notify): Error stub for alarms.
    (alarm_defaults): Stub array.
    (debug_alarms): Stub variable.
    (main): Initialize gnome-vfs.

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

    * tlacuache.c: New main module for the Tlacuache personal calendar
    server.

    * tlacuache.gnorba: New gnorba file for Tlacuache, the GNOME
    personal calendar server.

    * Makefile.am: Added the stuff necessary to build Tlacuache.

    * cal.c (Cal_get_uri): Convert the URI to a string before
    returning it.

    * cal-factory.c (CalFactory_create): Doh, this function is void.

    * job.c (job_add): Use g_idle_add(), not gtk_idle_add().

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

    * cal-backend.c (cal_backend_remove_cal): New function to remove a
    calendar client interface object from a backend.
    (cal_backend_load): Convert the URI to string and use
    Parse_MIME_FromFileName().  The conversion is not very smart,
    though.

    * cal-factory.c (load_backend): Moved most of the error handling
    upstream to load_fn().
    (load_fn): Handle failure in case the backend could not be loaded.
    (cal_factory_destroy): Free the backends and the backend hash
    table.
    (add_calendar_client): Implemented.  We create a Cal client
    interface object and attach it to the backend, and we notify the
    listener.

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

    * cal-factory.c (lookup_backend): Renamed from lookup_calendar().
    Also, return a backend instead of a Cal client object.

    * cal-backend.c (cal_backend_load): Take in a GnomeVFSURI, not a
    string.

    * cal-listener.c (Listener_cal_loaded): Pass the load status to
    the signal.
    (cal_listener_destroy): Better error checking.
    (cal_listener_new): Better error checking.

    * cal-listener.h (CalListenerLoadStatus): New enum for the load
    status of a calendar.
    (CalListenerClass): Added the status argument to the cal_loaded
    signal.

    * gnome-calendar.idl (cal_loaded): Added a load status code.

    * cal-backend.h (CalBackendLoadStatus): Renamed from
    CalBackendLoadResult.

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

    * cal-backend.c cal-backend.h: Moved the calendar backend here.
    This is the actual calendar-handling object.
    (load_from_vobject): Moved over from calendar.c.  Modified to use
    a CalBackend instead of the old Calendar structure.
    (add_object): Likewise.

    * cal.c: Now the Cal object is just a calendar client interface
    object; we use it as a "viewport" onto a CalBackend.  This also
    lets us do correct resource management.

    * cal-common.h: New file with common forward declarations; we
    can't have circular dependencies between headers.

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

    * cal-factory.c (cal_factory_load): Queue a load job.
    (load_fn): Load job handler.  Lookup the calendar by URI, load it
    if it is not loaded, or just report it to the new listener if it is.

    * job.c job.h: New files with a simple job queue manager.

    * gnome-calendar.idl (Listener::cal_loaded): Do not return the
    whole calendar object string.  The client will be able to query
    the calendar for the events it needs.

    * cal-listener.c (Listener_cal_loaded): Ref the calendar GNOME
    object.  We unref it when the listener is destroyed.

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

    The files from the gncal directory of the gnome-pim module on CVS
    were moved here, to evolution/calendar, in preparation for the
    Evolution work.  The calendar is being split into a model/view
    architecture.  The model is a personal calendar server (PAS):  it
    provides storage, notification, and event generation; the
    views/controllers are the calendar user agents and things like
    Pilot synchronizers.

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

    * cal.c: Removed the CORBA listener methods, adjusted for the new
    IDL.

    * cal-listener.c (cal_listener_init): Create the private
    structure.  In it we hold a reference to the calendar the listener
    is watching.
    (cal_listener_destroy): Destroy the private structure and unref
    the calendar.
    (Listener_cal_loaded): Stuff the calendar into our private data.
    (Listener_obj_added): Adjusted for new IDL.
    (Listener_obj_removed): Likewise.

    * gnome-calendar.idl: New IDL for the personal calendar server.

    * cal.h cal.c: New files with the calendar object.

    * cal-listener.h cal-listener.c: New files with the calendar
    listener object.

    * cal-factory.h cal-factory.c: New files with the calendar factory
    object.

2000-01-09  Eskil Heyn Olsen  <deity@eskil.dk>

    * Makefile.am: Changes to remove todo capplet stuff from distro.

2000-01-08  Vadim Strizhevsky  <vadim@optonline.net>

    * calendar-conduit-control-applet.c: Added pilotID argument to
    gpilotd_conduit_mgmt_new.


2000-01-05  Eskil Heyn Olsen  <deity@eskil.dk>

    * GnomeCal.idl: Added an argument to get_number_of_objects, so you
    can choose which state the object should have
    (any/new/modified/...). Will also add one to choose type
    (event/journal etc).

    * corba-cal.c (cal_repo_get_number_of_objects): Implemented the
    new version of get_number_of_objects.

    * calendar-conduit.c (pre_sync): Calls various
    gnome_pilot_conduit_standard_abs_set_num_yadayda to get progress bars.

2000-01-04  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit.c (start_calendar_server): Let's not call
    g_error, but g_warning instead.
    (pre_sync): Get record numbers info, total, new, deleted etc, and
    tell gpilotd.

1999-12-31  Eskil Heyn Olsen  <deity@eskil.dk>

    * eventedit.c (ee_store_recur_end_to_ical): Adds 86400 secs (1
    day) to the date chooses by the user. This ensures the recurrence
    also occurs on that date.
    (ee_rp_init_ending_date): And subtracts 86400 secs when about to
    redisplay the box.

    * calendar.h: Added an argument to calendar_new, to enable certain
    features, such as initing alarms or nor.

    * calendar.c (calendar_new): Implemented support for the
    CALENDAR_INIT_ALARMS option to calendar_new.

    * corba-cal.c (cal_repo_get_updated_objects): Added
    CALENDAR_INIT_ALARMS to calendar_new calls.

    * main.c: Added CALENDAR_INIT_ALARMS to calendar_new calls. This
    should probably be CALENDAR_INIT_NIL, but I'm not sure, guess
    steintr should check it.

    * gnome-cal.c: Added CALENDAR_INIT_ALARMS to calendar_new calls.

    * calendar-pilot-sync.c: Added CALENDAR_INIT_NIL to calendar_new calls.

1999-12-10  Russell Steinthal  <rms39@columbia.edu>

    * eventedit.c (ee_create_ae): Fix sensitivity bug when used to
    create default alarm box (widgets in that box should always be
    sensitive, even if the enabled checkbutton is not set)

1999-12-08  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit-control-applet.c (setSettings): Capplets now
    sets first_sync on enable, this should make the conduit copy old
    entries from the pilot to gnomecal.

1999-12-07  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit.c (pre_sync): Check if local store is
    empty. If, force slow sync.

    * GnomeCal.idl (GNOME): Added get_number_of_objects.

    * corba-cal.c (cal_repo_get_number_of_objects): implemented the
    get_number_of_objects.

    * calendar-conduit-control-applet.c (setStateCfg): Fixed bug that
    caused the capplet to always set the sync action to Disable upon start.

1999-12-05  Eskil Heyn Olsen  <deity@eskil.dk>

    * Makefile.am (Conduits_second_DATA): Also install .desktop files
    for conduit capplets in the gnome/apps menu dir.

1999-12-04  Eskil Heyn Olsen  <deity@eskil.dk>

    * Makefile.am (EXTRA_DIST): Added .desktop files to EXTRA_DIST.

1999-10-12  Clifford R. Conover  <rusty@zootweb.com>

    * gncal-todo.c Todo List improvements.

    Cleaned up todo item highlighting, added support for highlighting
    events due today, and events not due yet.  Colors are configurable
    on the Colors Tab of the properties window.

    Renamed Frame in Properties window to Colors rather then Month
    Colors since we are now asking for Todo item colors.

    Added ability to display time until todo item is due in list, it
    automatically selects the best denomination of time (up to weeks)
    and down to seconds to display.  This should be made configurable
    in a future version.

    Changed Todo dialog to ask for time that event is due.  This
    allows more accurate tracking of then the item is due, before the
    dialog was only asking for the date of the todo item.

1999-12-03  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit.c: undef DEBUG_CALCONDUT, suppresses debug output.

1999-12-02  Russell Steinthal  <rms39@columbia.edu>

    * alarm.c: Enhanced debug support: can be toggled on and off by
    SIGUSR1, reports alarms which could not be added

    * gnome-cal.c, main.[ch], prop.c: Add snooze capability for audio
    and display alarms.  Snooze interval can be configured in the
    Properties box.

1999-11-30  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit.c (compare): Fixed compare bug. Also neated up
    some of the if's in set_status.

1999-11-22  Russell Steinthal  <rms39@columbia.edu>

    * Merged todo list coloring patch from stable
    * Added myself to AUTHORS, about box (per Miguel)

1999-11-22  Eskil Heyn Olsen  <deity@eskil.dk>

    * calendar-conduit.c (pre_sync): Writes some warning
    messages when pre_sync fails.

1999-11-14  Eskil Heyn Olsen  <deity@eskil.dk>

    * Makefile.am: Stupid misplaced endif cause gncal to depend on an
    install gnome-pilot... fixed... sorry.

1999-11-12  Eskil Heyn Olsen  <deity@eskil.dk>

    * Makefile.am (extra_pilot_bins): Fixed the if then else problem,
    using solution suggested by James Henstridge, appears to be caused
    by a (by now fixed) bug in my automake.

1999-11-12  Russell Steinthal  <rms39@columbia.edu>

    * prop.c: Config code for timeout, make Alarms property page use a
    vbox instead of an hbox so that the propbox stays a reasonable width.

    * gnome-cal.c, main.[ch]: Add timeout for audio alarms, code to load
    from config file

    * eventedit.c: Give some static functions external linkage so they
    can be used elsewhere (make_spin_button); add some prototypes to
    appease gcc.

1999-11-11  Russell Steinthal  <rms39@columbia.edu>

    * calendar.c (calendar_day_change): Add call to