File: package.xml

package info (click to toggle)
php-horde-kronolith 4.2.29-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,616 kB
  • sloc: php: 21,858; javascript: 7,310; xml: 6,197; makefile: 18; sh: 3
file content (4016 lines) | stat: -rw-r--r-- 217,283 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.9" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
 <name>kronolith</name>
 <channel>pear.horde.org</channel>
 <summary>Calendar and scheduling application</summary>
 <description>Kronolith is the Horde calendar application. It provides web-based calendars backed by a SQL database or a Kolab server. Supported features include Ajax and mobile interfaces, shared calendars, remote calendars, invitation management (iCalendar/iTip), free/busy management, resource management, alarms, recurring events, and a sophisticated day/week view which handles arbitrary numbers of overlapping events.</description>
 <lead>
  <name>Jan Schneider</name>
  <user>jan</user>
  <email>jan@horde.org</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Michael J Rubinsky</name>
  <user>mrubinsk</user>
  <email>mrubinsk@horde.org</email>
  <active>yes</active>
 </lead>
 <lead>
  <name>Chuck Hagenbuch</name>
  <user>chuck</user>
  <email>chuck@horde.org</email>
  <active>no</active>
 </lead>
 <date>2020-07-12</date>
 <time>14:42:34</time>
 <version>
  <release>4.2.29</release>
  <api>4.2.0</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
 <notes>
* [mjr] Fix regresssion in event modification notifications (Bug #15022).
 </notes>
 <contents>
  <dir baseinstalldir="/" name="/">
   <file baseinstalldir="/" md5sum="d276cc0aee382ac21f6ad206d6a8f714" name="bin/kronolith-agenda" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="157cc6dbb380851623543ecedf867949" name="bin/kronolith-convert-datatree-shares-to-sql" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="2e826d6b799e9d0aefbe46e9d827080c" name="bin/kronolith-convert-sql-shares-to-sqlng" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="208c2032f7415f4f2209ec3b523f0932" name="bin/kronolith-convert-to-utc" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="649ec3952af58326cfda833fdd253fb0" name="bin/kronolith-import-icals" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="15248cb18a7b66b00165ea9106918169" name="bin/kronolith-import-openxchange" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="a1b1d3146ff823cb1876fa0f1df1fac1" name="bin/kronolith-import-squirrelmail-calendar" role="script">
    <tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
   </file>
   <file baseinstalldir="/" md5sum="38ab0fe37d8f9b13ed1ba33a638e90d7" name="calendars/create.php" role="horde" />
   <file baseinstalldir="/" md5sum="82a96eecbacc84be435a1e97385cb5c9" name="calendars/delete.php" role="horde" />
   <file baseinstalldir="/" md5sum="adf377c251025a940c3dc74b0cfbcbcb" name="calendars/edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="d41d8cd98f00b204e9800998ecf8427e" name="calendars/index.html" role="horde" />
   <file baseinstalldir="/" md5sum="255379f799aa35279b67a2818588de86" name="calendars/remote_edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="fb37c1eeae521b74da521c4b7f53c469" name="calendars/remote_subscribe.php" role="horde" />
   <file baseinstalldir="/" md5sum="03a7a26d01ebed3eaabd7934e2c9dd6b" name="calendars/remote_unsubscribe.php" role="horde" />
   <file baseinstalldir="/" md5sum="2b0effe511597339aad61cb9be3e8617" name="calendars/subscribe.php" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="config/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="461c4f56a3c904e454181b020e8cbc0e" name="config/conf.xml" role="horde" />
   <file baseinstalldir="/" md5sum="e896ba8d56d555739ec7027843c9ac82" name="config/hooks.php.dist" role="horde" />
   <file baseinstalldir="/" md5sum="cc925cfc3723e48c44bb90247500a39c" name="config/menu.php.dist" role="horde" />
   <file baseinstalldir="/" md5sum="6d6f41c2d0249afbbf56d2da74fb480a" name="config/prefs.php" role="horde" />
   <file baseinstalldir="/" md5sum="4c26381e13cd161d6f05d533d95d49b1" name="docs/CHANGES" role="doc" />
   <file baseinstalldir="/" md5sum="960263aa4d0e68f80869541c47bd6ff9" name="docs/CREDITS" role="doc" />
   <file baseinstalldir="/" md5sum="e45359c79dd35b070595166af51fc13a" name="docs/INSTALL" role="doc" />
   <file baseinstalldir="/" md5sum="2dfceb9fca77afbe48bb12266ca5d9c2" name="docs/lighttpd-kronolith.conf" role="doc" />
   <file baseinstalldir="/" md5sum="e0729cd9c6faf98ce49bb47a1cbb2e4d" name="docs/RELEASE_NOTES" role="doc" />
   <file baseinstalldir="/" md5sum="fb21ad93c4a584c014d95ac867c49b1a" name="docs/TODO" role="doc" />
   <file baseinstalldir="/" md5sum="cbfb6620d1e2a246ad88506e01b9508f" name="docs/UPGRADING" role="doc" />
   <file baseinstalldir="/" md5sum="c69b5de307b19775a3602f984753828f" name="feed/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="be4cac3d9f330b8a979accd71136fcc8" name="feed/index.php" role="horde" />
   <file baseinstalldir="/" md5sum="e6f24bb2bd0884513b7404d2b5bd7940" name="js/dragdrop2.js" role="horde" />
   <file baseinstalldir="/" md5sum="d934e798ad1fd7003e286945bdf6f158" name="js/edit.js" role="horde" />
   <file baseinstalldir="/" md5sum="e8f6f4563d14ba194c08fb848994099c" name="js/embed.js" role="horde" />
   <file baseinstalldir="/" md5sum="fd1df6825198a17e37a9f22df866b192" name="js/goto.js" role="horde" />
   <file baseinstalldir="/" md5sum="124a0d99374542f7adcbe2d39cf930ea" name="js/kronolith.js" role="horde" />
   <file baseinstalldir="/" md5sum="b1d026590a4b9a0ca711d12ddfc1446f" name="js/smartmobile.js" role="horde" />
   <file baseinstalldir="/" md5sum="0cffaa0f7961298b37e359730fb96fc5" name="js/views.js" role="horde" />
   <file baseinstalldir="/" md5sum="85addc568035fd0b09385eb133705e13" name="lib/Ajax/Application/Handler.php" role="horde" />
   <file baseinstalldir="/" md5sum="8b22fbe983bedb4f3f5b6e466841bf2f" name="lib/Ajax/Imple/ContactAutoCompleter.php" role="horde" />
   <file baseinstalldir="/" md5sum="85a7649bfecf7ac5cb35765ab4f291b6" name="lib/Ajax/Imple/ResourceAutoCompleter.php" role="horde" />
   <file baseinstalldir="/" md5sum="3b9ad53429b78d66babd19c13737baf0" name="lib/Ajax/Imple/TagAutoCompleter.php" role="horde" />
   <file baseinstalldir="/" md5sum="7093258b1249aff7fa87b46439531e38" name="lib/Ajax/Application.php" role="horde" />
   <file baseinstalldir="/" md5sum="39399fa710fefff1c196d65dfb7516c5" name="lib/Block/Month.php" role="horde" />
   <file baseinstalldir="/" md5sum="3027c42b546207388980ee4837aa1738" name="lib/Block/Monthlist.php" role="horde" />
   <file baseinstalldir="/" md5sum="72b16c0aaa1b312dfe5d31347975e758" name="lib/Block/Prevmonthlist.php" role="horde" />
   <file baseinstalldir="/" md5sum="fae8c7437ddb74f429f0ba755e587ad0" name="lib/Block/Summary.php" role="horde" />
   <file baseinstalldir="/" md5sum="cf384fd57e3ac80f949a7279a1a8d2aa" name="lib/Calendar/External/Tasks.php" role="horde" />
   <file baseinstalldir="/" md5sum="b64a6a3033ca9a6bf08dc8677d949899" name="lib/Calendar/External.php" role="horde" />
   <file baseinstalldir="/" md5sum="bfa07fbb3d2107ae8a8ec1c0fed3a95d" name="lib/Calendar/Holiday.php" role="horde" />
   <file baseinstalldir="/" md5sum="925ee80e749a7225539d51f3bf19c0c7" name="lib/Calendar/Internal.php" role="horde" />
   <file baseinstalldir="/" md5sum="cf986ed7a0442226a9d46089c4c11c73" name="lib/Calendar/Remote.php" role="horde" />
   <file baseinstalldir="/" md5sum="8d41ef771022183cf3a1c6942898c6ca" name="lib/Calendar/Resource.php" role="horde" />
   <file baseinstalldir="/" md5sum="cb6086bef79bd7b36eda896e9913aa04" name="lib/Calendar/ResourceGroup.php" role="horde" />
   <file baseinstalldir="/" md5sum="d48d3ea88dd9e2f64783c451922d0823" name="lib/Calendars/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="be36d608e0b219da7ea6b6895b138980" name="lib/Calendars/Default.php" role="horde" />
   <file baseinstalldir="/" md5sum="e78c2fdbc090bb3a8f0c72046299ea90" name="lib/Calendars/Kolab.php" role="horde" />
   <file baseinstalldir="/" md5sum="c6a508e34e35078c306b9b455bd26694" name="lib/Driver/Resource/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="def0b1eac5207ff2d868f59e629116cb" name="lib/Driver/Holidays.php" role="horde" />
   <file baseinstalldir="/" md5sum="2624ba4eccee2e5b6efefcaf9ea3d389" name="lib/Driver/Horde.php" role="horde" />
   <file baseinstalldir="/" md5sum="8429c13eb4edc8eb6825d98091889276" name="lib/Driver/Ical.php" role="horde" />
   <file baseinstalldir="/" md5sum="241634ce1d25c784636c2f9e7f2b9d2a" name="lib/Driver/Kolab.php" role="horde" />
   <file baseinstalldir="/" md5sum="3f58e9e63ffc7a4238d0f387691fb989" name="lib/Driver/Mock.php" role="horde" />
   <file baseinstalldir="/" md5sum="c1b80d928c0994736bf720dc2847fb3e" name="lib/Driver/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="112d364288f64598febfe17628e67e48" name="lib/Event/Resource/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="7bb575edec9cbe57bb97a42cb2678192" name="lib/Event/Holidays.php" role="horde" />
   <file baseinstalldir="/" md5sum="766ecd03e3e169bf9ab8174228d65feb" name="lib/Event/Horde.php" role="horde" />
   <file baseinstalldir="/" md5sum="abd062e009f644d388d06d6103d6df62" name="lib/Event/Ical.php" role="horde" />
   <file baseinstalldir="/" md5sum="9b33ec094f65a2d7c2f36cb8abbb9b7d" name="lib/Event/Kolab.php" role="horde" />
   <file baseinstalldir="/" md5sum="c81d53dd56905efef2543bda0dfba481" name="lib/Event/Mock.php" role="horde" />
   <file baseinstalldir="/" md5sum="da17cc891e0f3b90683e33513c75ce59" name="lib/Event/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="ab4f22633e3b9737aba00ddd6397f7dc" name="lib/Factory/Calendars.php" role="horde" />
   <file baseinstalldir="/" md5sum="c26df8feeaaa15a1c996676c57b576b1" name="lib/Factory/Driver.php" role="horde" />
   <file baseinstalldir="/" md5sum="0713996aed8cbf74b2b6cf077ae6b618" name="lib/Factory/Geo.php" role="horde" />
   <file baseinstalldir="/" md5sum="e91696fee47951d212f7458984ee8c26" name="lib/Factory/Shares.php" role="horde" />
   <file baseinstalldir="/" md5sum="eb4bf6089b6ef3d3a5cf2edca1721942" name="lib/Factory/Storage.php" role="horde" />
   <file baseinstalldir="/" md5sum="e6c9f56c69cdb8332d0268b72eb6072f" name="lib/Form/Type/KronolithTags.php" role="horde" />
   <file baseinstalldir="/" md5sum="73a053b760b2da5db61d6bc2e9e4602f" name="lib/Form/CreateCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="bcc38be083ed5437d3d77771466c3e8c" name="lib/Form/CreateResource.php" role="horde" />
   <file baseinstalldir="/" md5sum="de42ef880d305e2e017b8c7eb43389a9" name="lib/Form/CreateResourceGroup.php" role="horde" />
   <file baseinstalldir="/" md5sum="d1a0136ae0bf15aed6c7448c973ebc9e" name="lib/Form/DeleteCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="3a99ae7dc8f742688b3f47dcff6d5dcb" name="lib/Form/DeleteResource.php" role="horde" />
   <file baseinstalldir="/" md5sum="61fef710597243cc77feae8e0efe5c36" name="lib/Form/DeleteResourceGroup.php" role="horde" />
   <file baseinstalldir="/" md5sum="934bed5019dbdba060c7200b5e990850" name="lib/Form/EditCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="a85df6b3779602e850169bb20ffcf2c4" name="lib/Form/EditRemoteCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="cf35599edaf145a5dd44cd7f178e3887" name="lib/Form/EditResource.php" role="horde" />
   <file baseinstalldir="/" md5sum="5089ddb492f0769459b3dc004241105a" name="lib/Form/EditResourceGroup.php" role="horde" />
   <file baseinstalldir="/" md5sum="191bd38839c2b1700fbc35f2cbe06c60" name="lib/Form/SubscribeRemoteCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="fcbf02dc1bd9ebe70064b6249f463c30" name="lib/Form/UnsubscribeRemoteCalendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="9c5e6a81b42eadde283419c8ab01a0a8" name="lib/FreeBusy/View/Day.php" role="horde" />
   <file baseinstalldir="/" md5sum="6a3f187ebe255150b8268c13497dcefb" name="lib/FreeBusy/View/Month.php" role="horde" />
   <file baseinstalldir="/" md5sum="3b9b9b2d1ba81cd66690ba8819730bdc" name="lib/FreeBusy/View/Week.php" role="horde" />
   <file baseinstalldir="/" md5sum="700dc506d37d9ac9a839e1a1d620230d" name="lib/FreeBusy/View/Workweek.php" role="horde" />
   <file baseinstalldir="/" md5sum="08c96f1ed24aba37be0dd774dcf9080b" name="lib/FreeBusy/View.php" role="horde" />
   <file baseinstalldir="/" md5sum="b35e222e49f4a496c328f776d7711343" name="lib/Geo/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="fe2e9d0ec45f3b3100aec7f941f3f0b4" name="lib/Geo/Mysql.php" role="horde" />
   <file baseinstalldir="/" md5sum="ed5e93e3365ec7a6b3597c34b8f394bc" name="lib/Geo/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="1864b86c8868f279f306b1caf7907999" name="lib/Icalendar/Handler/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="573a21ca0c4c484f9b525f6c7a5ec369" name="lib/Icalendar/Handler/Dav.php" role="horde" />
   <file baseinstalldir="/" md5sum="6b981a90d741cde6d7c0ff252b551291" name="lib/LoginTasks/SystemTask/Upgrade.php" role="horde" />
   <file baseinstalldir="/" md5sum="dc98aec8ec0699f151cfca451ec3649a" name="lib/LoginTasks/Task/PurgeEvents.php" role="horde" />
   <file baseinstalldir="/" md5sum="52868e247e715b53d90d5707c5a7b4d5" name="lib/Prefs/Special/DefaultAlarm.php" role="horde" />
   <file baseinstalldir="/" md5sum="56ab1e64e2af364b737c2d08dfcf2250" name="lib/Prefs/Special/EventAlarms.php" role="horde" />
   <file baseinstalldir="/" md5sum="cd935c72ba7bb5fb279902fba77158b8" name="lib/Prefs/Special/Sourceselect.php" role="horde" />
   <file baseinstalldir="/" md5sum="23c91ec2afcaae7367286c2db37dba0d" name="lib/Resource/Base.php" role="horde" />
   <file baseinstalldir="/" md5sum="69d63c67bdac499badc1f69975dca59e" name="lib/Resource/Group.php" role="horde" />
   <file baseinstalldir="/" md5sum="662786657c9ebd63ee4eefcc7aa0933d" name="lib/Resource/Single.php" role="horde" />
   <file baseinstalldir="/" md5sum="9c46c03beaf2a82446038d9db67d1824" name="lib/Storage/Kolab.php" role="horde" />
   <file baseinstalldir="/" md5sum="2dbe792560c11da53b99516ff4b144cc" name="lib/Storage/Sql.php" role="horde" />
   <file baseinstalldir="/" md5sum="ea994fd3b17819ddda758687b97bfb54" name="lib/Ui/VarRenderer/Kronolith.php" role="horde" />
   <file baseinstalldir="/" md5sum="65d0b34c4659d6b0ecd9fb4af967f673" name="lib/View/Day.php" role="horde" />
   <file baseinstalldir="/" md5sum="7a060689f4a644b1f7171804d0a1cc88" name="lib/View/DeleteEvent.php" role="horde" />
   <file baseinstalldir="/" md5sum="2b29c86a09f4021b39dd1910644a172d" name="lib/View/EditEvent.php" role="horde" />
   <file baseinstalldir="/" md5sum="b3a700b4a08fa70013bc3e7c9b85c5e5" name="lib/View/Event.php" role="horde" />
   <file baseinstalldir="/" md5sum="7948b45df560e33cef57ec442939d6f6" name="lib/View/ExportEvent.php" role="horde" />
   <file baseinstalldir="/" md5sum="01cdefc8704fd7234b2de2d472652ee5" name="lib/View/Month.php" role="horde" />
   <file baseinstalldir="/" md5sum="11e32fb36be44fc01ac6e0e26ce9f096" name="lib/View/Sidebar.php" role="horde" />
   <file baseinstalldir="/" md5sum="8e1696c4f964b2cb619dac1e88515f0d" name="lib/View/SidebarTasks.php" role="horde" />
   <file baseinstalldir="/" md5sum="6fe646d84690e203009727e4dda7395b" name="lib/View/Week.php" role="horde" />
   <file baseinstalldir="/" md5sum="1004ef070b610a6fad0f973c48c9a964" name="lib/View/WorkWeek.php" role="horde" />
   <file baseinstalldir="/" md5sum="0044dfbbd24de736fe886d51c7273580" name="lib/View/Year.php" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="lib/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="1ddeb9d9dcd5ef14835ee79b29e556bb" name="lib/Ajax.php" role="horde" />
   <file baseinstalldir="/" md5sum="e6d4255f711ad69287a5567b4da0172d" name="lib/Api.php" role="horde" />
   <file baseinstalldir="/" md5sum="a22cf6fa22a124b184672fde918b7bf0" name="lib/Application.php" role="horde" />
   <file baseinstalldir="/" md5sum="731667aca354d1f0712aea2c1134122b" name="lib/Calendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="8cc418604f8867c1e9d48e96a38938b4" name="lib/CalendarsManager.php" role="horde" />
   <file baseinstalldir="/" md5sum="21dc13240daed72525e8183911455760" name="lib/Day.php" role="horde" />
   <file baseinstalldir="/" md5sum="d637687e0c4a5b9fd494f1fc7d2cfed8" name="lib/Driver.php" role="horde" />
   <file baseinstalldir="/" md5sum="14150ffda7eb68747a90459ca4569d68" name="lib/Event.php" role="horde" />
   <file baseinstalldir="/" md5sum="18557bf524191ac05b4097671a0de1b0" name="lib/Exception.php" role="horde" />
   <file baseinstalldir="/" md5sum="a649b661f18514479d909db0bd2e0251" name="lib/FreeBusy.php" role="horde" />
   <file baseinstalldir="/" md5sum="1b9f515d18238f808ebd6bf9ba147544" name="lib/Kronolith.php" role="horde" />
   <file baseinstalldir="/" md5sum="fb60202b07cbfdbd8f27768694fa01b1" name="lib/Resource.php" role="horde" />
   <file baseinstalldir="/" md5sum="da3de1aeeb14284aa70f776f255588a0" name="lib/Storage.php" role="horde" />
   <file baseinstalldir="/" md5sum="9a37ec8db9bc8f4566d06967edce5d04" name="lib/Tagger.php" role="horde" />
   <file baseinstalldir="/" md5sum="5d9f54848d9ec543b4239eb13de94894" name="lib/Test.php" role="horde" />
   <file baseinstalldir="/" md5sum="c77669a04c66fa45211896de5195fcf1" name="locale/ar/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="f8ede005145cb0c809b994bb2e21b897" name="locale/ar/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="81a31f5856c83a735469a65c47c7db2c" name="locale/bg/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="e574711452e54da8e2b957e701d8c8d9" name="locale/bg/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="bd277b5bdc4445bcbd33b055b494a6f5" name="locale/ca/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="bb22e4082014b049e391c3234a5a39d4" name="locale/ca/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="3079126375897e2a42a71c22a167bb41" name="locale/ca/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="85eb5e93492a8bd2b4cac3ab86532a40" name="locale/cs/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="7b67c414a3880edfecb32a2e6d1bcc16" name="locale/cs/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="b3c55b288e06f0b4d0ac0ce05bbaf912" name="locale/da/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="ae880dec797c07daa2c78e4cf44286f7" name="locale/da/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="62648c4982985a0d32961ad96351b9a2" name="locale/de/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="23e861a335683d30de535c7d90a38840" name="locale/de/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="02420864253bdc3e5459b9cdfa0e0aa0" name="locale/de/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="981659e1e23ec572a40d6a99fdbf9467" name="locale/el/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="9c3e94cf5763820222e376d573bfb19f" name="locale/el/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="ceacd6534b14b1efe35ab8f58d04ab7c" name="locale/en/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="94f41ee1980304904c303ce0720d1ee1" name="locale/es/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="a4d58a51cfb6fe0aebddde798fa83181" name="locale/es/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="312602e3af4f38b5665ddad31d32dea6" name="locale/es/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="515a290ad4bd88b8b2ee7564e10c5a0f" name="locale/et/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="693332bfba92ec6ca168f82d5c5be639" name="locale/et/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="89729d575f66b69c0c8f07b51810380f" name="locale/eu/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="9c3962974e1d4d05cc52514769b08491" name="locale/eu/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="6be02896e4c2ea544e48db926ad7ab2f" name="locale/eu/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="260444fce35679094810562b405f17d3" name="locale/fi/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="ed1cc4095586827338db377a4ab47127" name="locale/fi/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="205668efc1a776572fe9eb520f1a22fd" name="locale/fi/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="2356e3355bd80672b5be40cf7dfe5974" name="locale/fr/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="53705a35e87bb8d7101d9ade87b57ccd" name="locale/fr/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="f98822365db009d8f0a0e5762673246c" name="locale/fr/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="35065dc309f3cfd585ade60d31b66cc4" name="locale/hr/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="10951d8bd78d10e127e59b18695a5e79" name="locale/hr/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="f90076d1bc31879fce555c7292e4a428" name="locale/hr/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="24f218479e0d2db57439fae4a23e261a" name="locale/hu/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="b6188383c061e3070581d731a3e050ac" name="locale/hu/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="aa133f3c4964fd22d0117a657b09697b" name="locale/hu/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="30c0825c9a7167192495bed462cc9c70" name="locale/it/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="0a1f9292a0fd66893e8bb3df657c9071" name="locale/it/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="c8030489192368990b34ff1d113ba499" name="locale/ja/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="464c2cb93daf49049530dd30e45185ae" name="locale/ja/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="4e3a93cacfb877814cc49a44b7949b22" name="locale/ko/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="c84492c556605f1bfb9c9597f971546a" name="locale/ko/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="cbf8e5b51e8a0be9d5339ea99af080f3" name="locale/lt/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="139115176bdac23c387e469ee1fc259b" name="locale/lt/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="338ae8efac64dd5b67d2b35d15f2a15c" name="locale/lv/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="9dd37cb44ea0e9cd79f72f55108fd879" name="locale/lv/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="c2a964baa22ac4de2d0ba185d8fd33cd" name="locale/lv/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="534f0f2afdc4bf6f38f8f51c99f00dbd" name="locale/nb/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="84d4ef09db5bc98a5230255158a6207a" name="locale/nb/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="1725b54e06944da653a3bbdf37470562" name="locale/nl/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="34b915f2c0042327a5aebdfaa1fc5a6b" name="locale/nl/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="492788292f170d072c98ccce11706c36" name="locale/nn/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="9476d864e90a4ba3cda8c51b42e42049" name="locale/nn/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="0bfa7f4ecf07ee6632f983b3117bfbbb" name="locale/pl/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="b895e6db465c32bdeafcf83cd3b11baa" name="locale/pl/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="44f4f865176685ae941020778272c98a" name="locale/pt/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="382affdb3575a9b5d5d1808b39404278" name="locale/pt/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="69895dd75f676560b4f1cfcec4ba2e25" name="locale/pt_BR/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="42f9a3d604945cb6835dec163204f02c" name="locale/pt_BR/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="a1cb8947b658b92eb02873ff2007498c" name="locale/pt_BR/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="5bda3f4ea543a3e41b1136dfb349fc05" name="locale/ro/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="5e57bfd366d74f49aa990c11c5c3f712" name="locale/ro/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="c5a3c035809cbbdbf2ba79fc76a3f3af" name="locale/ru/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="72022c25dbbd0d75f3f0a7e60d9a3fbb" name="locale/ru/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="4f12c15d5ef03a1edef48cdef4e3e95e" name="locale/sk/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="308c15b0e10a2886847496666266639f" name="locale/sk/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="18c92af3ed82c6fd9acc434b72154439" name="locale/sl/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="8e7f4e99267a4b4d6aa40afbe23562cf" name="locale/sl/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="88b82f0e0e761ccab1354dbdaa21ce26" name="locale/sv/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="c7d30684318fe3a97672e066308ad800" name="locale/sv/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="2d1095e24b56ea9c7829237381a34a4f" name="locale/tr/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="8ddaa5e70591c0984a4d1b3521e32806" name="locale/tr/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="f737e97a2e9c42e866097d33bc9282ea" name="locale/tr/help.xml" role="horde" />
   <file baseinstalldir="/" md5sum="faa20978f05bc59828efba0e257b8267" name="locale/uk/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="eba480378a2024d2316a9751d8b5211f" name="locale/uk/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="5d8d2bf21145786ec074133a66db81ac" name="locale/zh_CN/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="d45aa8e13e7685228948049c3a842036" name="locale/zh_CN/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="88cc011b460b563a205b158de458c1b0" name="locale/zh_TW/LC_MESSAGES/kronolith.mo" role="horde" />
   <file baseinstalldir="/" md5sum="98b7b0057da69e3669e7c1eca4885e90" name="locale/zh_TW/LC_MESSAGES/kronolith.po" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="locale/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="3306a99e8de1c990ebb49a9fc747c5e0" name="locale/kronolith.pot" role="horde" />
   <file baseinstalldir="/" md5sum="1d92c3583452a608223e0ece42438ec3" name="migration/1_kronolith_base_tables.php" role="horde" />
   <file baseinstalldir="/" md5sum="bd7900b7cd8ee3f1364ee02b3901a8ae" name="migration/2_kronolith_upgrade_autoincrement.php" role="horde" />
   <file baseinstalldir="/" md5sum="caefc4f09e65e6506406cf1fb78c4f71" name="migration/3_kronolith_upgrade_addallday.php" role="horde" />
   <file baseinstalldir="/" md5sum="74a0028115fcff977544236eb2a26917" name="migration/4_kronolith_upgrade_addalarmmethods.php" role="horde" />
   <file baseinstalldir="/" md5sum="028a56ef8857638c8bf254df25382d44" name="migration/5_kronolith_upgrade_addcolor.php" role="horde" />
   <file baseinstalldir="/" md5sum="f0cd6e092391e0c122b2fe6f1aadd72c" name="migration/6_kronolith_upgrade_addresources.php" role="horde" />
   <file baseinstalldir="/" md5sum="16d0fc8e246e8b9f34079bc423f955a0" name="migration/7_kronolith_upgrade_resourceautoincrement.php" role="horde" />
   <file baseinstalldir="/" md5sum="4d444350f1e56bed5469a078e5d16595" name="migration/8_kronolith_upgrade_addgeo.php" role="horde" />
   <file baseinstalldir="/" md5sum="8aafe8900e7d246884c8cf84a9ee7c00" name="migration/9_kronolith_upgrade_addurl.php" role="horde" />
   <file baseinstalldir="/" md5sum="78f0953fb6f59350a2eebd2159fc5126" name="migration/10_kronolith_upgrade_exceptions.php" role="horde" />
   <file baseinstalldir="/" md5sum="93596534c763c9c5624f38399ce62089" name="migration/11_kronolith_upgrade_resourceemail.php" role="horde" />
   <file baseinstalldir="/" md5sum="b2037f45cab2f93faea7ad8ebe5f9015" name="migration/12_kronolith_upgrade_addzoom.php" role="horde" />
   <file baseinstalldir="/" md5sum="516bb2b67a592512696d902f55cc0e9f" name="migration/13_kronolith_upgrade_systemshares.php" role="horde" />
   <file baseinstalldir="/" md5sum="d81a1d99b5f630fb818cf2f5ff59aedc" name="migration/14_kronolith_upgrade_missingresourcefield.php" role="horde" />
   <file baseinstalldir="/" md5sum="1c5c217c01b80f91a14d978d64e2a41d" name="migration/15_kronolith_upgrade_sqlng.php" role="horde" />
   <file baseinstalldir="/" md5sum="8261247ca790e9afc045aadbd6efce2e" name="migration/16_kronolith_upgrade_sqlhierarchical.php" role="horde" />
   <file baseinstalldir="/" md5sum="2df993753876288363a0a57d9a44981a" name="migration/17_kronolith_upgrade_sqlnghierarchical.php" role="horde" />
   <file baseinstalldir="/" md5sum="c29a4f88221f8fd5cf34761e35544996" name="migration/18_kronolith_upgrade_categoriestotags.php" role="horde" />
   <file baseinstalldir="/" md5sum="10377a813abdccdcd0cd8c7aef8ff8a1" name="migration/19_kronolith_upgrade_addmysqlgeo.php" role="horde" />
   <file baseinstalldir="/" md5sum="5bbdccced7799ed518ca50bfc8fa8a78" name="migration/20_kronolith_upgrade_timezone.php" role="horde" />
   <file baseinstalldir="/" md5sum="c44e317b3dba9921a2b7f58273fc6a15" name="migration/21_kronolith_upgrade_exceptionutc.php" role="horde" />
   <file baseinstalldir="/" md5sum="6d44e03223884a82ea42dca22bacc81e" name="migration/22_kronolith_upgrade_parents.php" role="horde" />
   <file baseinstalldir="/" md5sum="3a3813d06b13957b0f27555aede1a8e2" name="migration/23_kronolith_upgrade_baseidindex.php" role="horde" />
   <file baseinstalldir="/" md5sum="6fb130be4db4496475f7903b326443e3" name="resources/groups/create.php" role="horde" />
   <file baseinstalldir="/" md5sum="a2b4554b5057876f791ae2a11fe7f2a6" name="resources/groups/delete.php" role="horde" />
   <file baseinstalldir="/" md5sum="63423eb5106df78c2f48b34d01ff4eb4" name="resources/groups/edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="d41d8cd98f00b204e9800998ecf8427e" name="resources/groups/index.html" role="horde" />
   <file baseinstalldir="/" md5sum="36197e0dd6d00656034fbea3c87c67d0" name="resources/create.php" role="horde" />
   <file baseinstalldir="/" md5sum="37ce6b8af1fca11e88062ed968cfb4a5" name="resources/delete.php" role="horde" />
   <file baseinstalldir="/" md5sum="e2b5f565fe90db15af38e4124570d4da" name="resources/edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="d41d8cd98f00b204e9800998ecf8427e" name="resources/index.html" role="horde" />
   <file baseinstalldir="/" md5sum="2e56d4c22a5d4555e31b1e97cd7653a8" name="templates/agenda/notification.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="61912121b3366f22b8c65cffb8bb3155" name="templates/agenda/notification.plain.php" role="horde" />
   <file baseinstalldir="/" md5sum="3ba488bb0f97195b275442505cf306f9" name="templates/alarm/mail.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="1f71d53ce869c7f4975f6f54d433d6ef" name="templates/alarm/mail.plain.php" role="horde" />
   <file baseinstalldir="/" md5sum="b233907eec7e701197ace3d30ab77938" name="templates/attendees/attendees.inc" role="horde" />
   <file baseinstalldir="/" md5sum="cf1890bde15e918d5c81b271a93b44b0" name="templates/chunks/calendar.php" role="horde" />
   <file baseinstalldir="/" md5sum="3e76a9fce4ef40d4ed7e8b09fd8ace06" name="templates/chunks/permissions.inc" role="horde" />
   <file baseinstalldir="/" md5sum="09bb444a667fa8455f69a8c0bf899e59" name="templates/contacts/contacts.inc" role="horde" />
   <file baseinstalldir="/" md5sum="8eb9e8ea450a8005f5939f59c212c5bb" name="templates/data/export.inc" role="horde" />
   <file baseinstalldir="/" md5sum="02d0008b71af44971b7bdfeb82b4e18e" name="templates/data/import.inc" role="horde" />
   <file baseinstalldir="/" md5sum="014d92d7e37f98fe6640181ad77ef04c" name="templates/day/all_day.inc" role="horde" />
   <file baseinstalldir="/" md5sum="74cb919d6334d500e5ec2ffb40583498" name="templates/day/head.inc" role="horde" />
   <file baseinstalldir="/" md5sum="0c72eb30d77d9ce6d9b18fc75ec20e16" name="templates/day/head_side_by_side.inc" role="horde" />
   <file baseinstalldir="/" md5sum="06ee5f09abc0d19a02d1ac2314361344" name="templates/day/rows.html" role="horde" />
   <file baseinstalldir="/" md5sum="c5f628b790ae4db4b5f29f1d0ba62e95" name="templates/delete/delete.inc" role="horde" />
   <file baseinstalldir="/" md5sum="5aa3caa4873d1f0976d0455d5d3a0b7e" name="templates/delete/one.inc" role="horde" />
   <file baseinstalldir="/" md5sum="dc1f05cdc5fc18abdb81110716989c71" name="templates/dynamic/agenda.inc" role="horde" />
   <file baseinstalldir="/" md5sum="5a14a682184d425677d32f86e729fc11" name="templates/dynamic/day.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e80ce1cf0bd75224c6f9cb026e4f2429" name="templates/dynamic/edit.inc" role="horde" />
   <file baseinstalldir="/" md5sum="7dfeb1a96064a6dd0361dba8d91e07bc" name="templates/dynamic/index.inc" role="horde" />
   <file baseinstalldir="/" md5sum="db415608864ece0c0078f4a8b919b448" name="templates/dynamic/month.inc" role="horde" />
   <file baseinstalldir="/" md5sum="fb85766f93c920ba5810a60e817b7c24" name="templates/dynamic/sidebar.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="2d01fb6804f962ea95dfb3d576d86ac7" name="templates/dynamic/task.inc" role="horde" />
   <file baseinstalldir="/" md5sum="45daf37de923067f6b45af482faa7381" name="templates/dynamic/tasks.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e428bec2cb37dd2679b4aeac3229261e" name="templates/dynamic/week.inc" role="horde" />
   <file baseinstalldir="/" md5sum="6eeeb9fa580c8f2a6e4e8ad04515d9fb" name="templates/dynamic/workweek.inc" role="horde" />
   <file baseinstalldir="/" md5sum="70faf1ea690236820fc93454021317ff" name="templates/dynamic/year.inc" role="horde" />
   <file baseinstalldir="/" md5sum="dc6a3e46d71e6fc9e5fb7423a340c2d6" name="templates/edit/edit.inc" role="horde" />
   <file baseinstalldir="/" md5sum="e88d44b5dae911dcafbda8c9451d54b5" name="templates/edit/edit_timespan.inc" role="horde" />
   <file baseinstalldir="/" md5sum="277ec34e8eae73a7078669f2e0734ab6" name="templates/fbview/busyblock.html" role="horde" />
   <file baseinstalldir="/" md5sum="c64c1fba323d2a8e7b611c56669050c7" name="templates/fbview/emptyblock.html" role="horde" />
   <file baseinstalldir="/" md5sum="d0fc31cbc0d4519d5cfbf1057a8e9988" name="templates/fbview/header.html" role="horde" />
   <file baseinstalldir="/" md5sum="2df5518a5b8f66a2cb17d77413fe6ee9" name="templates/fbview/legend.html" role="horde" />
   <file baseinstalldir="/" md5sum="7befd352f1614adeb9408c9141a9f458" name="templates/fbview/meetingblock.html" role="horde" />
   <file baseinstalldir="/" md5sum="36d58401457c606e7164fd59fe92ac05" name="templates/fbview/row.html" role="horde" />
   <file baseinstalldir="/" md5sum="ce107800d5ef459b5de5da806325266c" name="templates/fbview/section.html" role="horde" />
   <file baseinstalldir="/" md5sum="85054b8948ccb9f96ac0d2412d7c0f2d" name="templates/fbview/unknownblock.html" role="horde" />
   <file baseinstalldir="/" md5sum="384b31b807e90ff06a77f6b67bad40e9" name="templates/feeds/atom.xml" role="horde" />
   <file baseinstalldir="/" md5sum="52bfd1b42bcf4609e85450de2d8f9a4e" name="templates/itip/notification.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="f4395a0aaea50934d747587cb244d2f7" name="templates/itip/notification.plain.php" role="horde" />
   <file baseinstalldir="/" md5sum="97b7bab89a25b9a52fd5d614629f1361" name="templates/month/head.inc" role="horde" />
   <file baseinstalldir="/" md5sum="1af8cbb202f146e2296d96e9a7bcef71" name="templates/month/head_side_by_side.inc" role="horde" />
   <file baseinstalldir="/" md5sum="ef58a8d7a271bac07c4bbbd5dbcc041a" name="templates/perms/perms.inc" role="horde" />
   <file baseinstalldir="/" md5sum="3129b13d86087c9f28ae62c45c27a12e" name="templates/prefs/defaultalarm.html" role="horde" />
   <file baseinstalldir="/" md5sum="2630281227162b50c3327faf2bd2bda7" name="templates/resources/form-header.inc" role="horde" />
   <file baseinstalldir="/" md5sum="52bd144f249a1740b4ff406b5f9fbe19" name="templates/search/empty.inc" role="horde" />
   <file baseinstalldir="/" md5sum="d987e6c1305a9602b522b8d10f52af5a" name="templates/search/event_footers.inc" role="horde" />
   <file baseinstalldir="/" md5sum="b9958356b32779de4f2c08d0187364fd" name="templates/search/event_headers.inc" role="horde" />
   <file baseinstalldir="/" md5sum="02840f931fb6425bb75a65e919b1aae2" name="templates/search/event_summaries.inc" role="horde" />
   <file baseinstalldir="/" md5sum="2f17f87f8e745c968b867496876b2044" name="templates/search/header.inc" role="horde" />
   <file baseinstalldir="/" md5sum="602e8a52bd91a05b4450c47408741a56" name="templates/search/search.inc" role="horde" />
   <file baseinstalldir="/" md5sum="9ee87525c36019f44995ebfea38cf6dd" name="templates/search/search_advanced.inc" role="horde" />
   <file baseinstalldir="/" md5sum="060a9b9a91fe862c3e868ee90f4f21ca" name="templates/share/notification.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="14b292729d5270a59039fe7fb6ce2a5b" name="templates/share/notification.plain.php" role="horde" />
   <file baseinstalldir="/" md5sum="f9b661a5cc9ba73aba05e380da4603a2" name="templates/smartmobile/day.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="048fd267a57977b5b8bc794ecf2e5972" name="templates/smartmobile/event.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="77a3d1428554f827c7fee47d75e57b39" name="templates/smartmobile/javascript_defs.php" role="horde" />
   <file baseinstalldir="/" md5sum="9ac7f94a9dce53cbcae3f5c39b79c8f7" name="templates/smartmobile/month.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="63a1be736d20c4f83ceafe5fe7c26c51" name="templates/smartmobile/summary.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="2d7d2477d3d68ea057e26d71a0661d8c" name="templates/view/view.inc" role="horde" />
   <file baseinstalldir="/" md5sum="973483b143ee535bb18e6310403d15d5" name="templates/week/head.inc" role="horde" />
   <file baseinstalldir="/" md5sum="5f70e147099ac02e2aaf047078d088b6" name="templates/week/head_side_by_side.inc" role="horde" />
   <file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="templates/.htaccess" role="horde" />
   <file baseinstalldir="/" md5sum="c5e42313b78e795d57721cb9b2368e77" name="templates/buttonbar.html.php" role="horde" />
   <file baseinstalldir="/" md5sum="58f4f0b64e18e5d775e80bf0a1438bf0" name="templates/calendar_titles.inc" role="horde" />
   <file baseinstalldir="/" md5sum="19a70b06ecaf691f0f6cc6857fac4337" name="templates/javascript_defs.php" role="horde" />
   <file baseinstalldir="/" md5sum="f6988785fe430ff395b90ae765af9c02" name="test/Kronolith/fixtures/allday.ics" role="test" />
   <file baseinstalldir="/" md5sum="50c4a253a3a5a4bf3fa140a75f1cc53e" name="test/Kronolith/fixtures/bug7068.ics" role="test" />
   <file baseinstalldir="/" md5sum="c1ab910bc4e2fdbb37ec0880e8303624" name="test/Kronolith/fixtures/bug11688.ics" role="test" />
   <file baseinstalldir="/" md5sum="a3d5eed1af5d07cafcf772425d254743" name="test/Kronolith/fixtures/export1.ics" role="test" />
   <file baseinstalldir="/" md5sum="0371527629bfa37da52cc8834e943ec8" name="test/Kronolith/fixtures/export2.ics" role="test" />
   <file baseinstalldir="/" md5sum="dcd43f9695aac0452064fc86b8cf83a7" name="test/Kronolith/fixtures/export3.ics" role="test" />
   <file baseinstalldir="/" md5sum="f586cf147bc0f3eecfdc6bd5fbeed635" name="test/Kronolith/fixtures/export4.ics" role="test" />
   <file baseinstalldir="/" md5sum="c1e9eada13ab9233a9f2b3d6997591d5" name="test/Kronolith/fixtures/fromicalendar.ics" role="test" />
   <file baseinstalldir="/" md5sum="e1c18ecb76d79e099b6bb192dbade297" name="test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php" role="test" />
   <file baseinstalldir="/" md5sum="2e4f4fefc6780c8846ae500d89207a53" name="test/Kronolith/Integration/Driver/Sql/Base.php" role="test" />
   <file baseinstalldir="/" md5sum="9d2032b7a2e366ba1b46de368c9ea5e4" name="test/Kronolith/Integration/Driver/Base.php" role="test" />
   <file baseinstalldir="/" md5sum="8b01c83d77cb64800d5fbee6f19b6280" name="test/Kronolith/Integration/Driver/KolabTest.php" role="test" />
   <file baseinstalldir="/" md5sum="ba10413de49eba65458f6461744d761e" name="test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php" role="test" />
   <file baseinstalldir="/" md5sum="b29a2298568b4c8b120983d3c9116d28" name="test/Kronolith/Integration/Kronolith/Sql/Base.php" role="test" />
   <file baseinstalldir="/" md5sum="5e4261efdb68bf82bbaf19038a607eee" name="test/Kronolith/Integration/Kronolith/Base.php" role="test" />
   <file baseinstalldir="/" md5sum="a6af5795f3e4e4bad810938c61dc7e91" name="test/Kronolith/Integration/Kronolith/KolabTest.php" role="test" />
   <file baseinstalldir="/" md5sum="59309bca00494b583c1a4fd69c85918b" name="test/Kronolith/Integration/AllDayTest.php" role="test" />
   <file baseinstalldir="/" md5sum="59a56734269a4bc39ef46f1c72b4ebc0" name="test/Kronolith/Integration/FromIcalendarTest.php" role="test" />
   <file baseinstalldir="/" md5sum="ab2f28ee88f5926eb0104719dffb4940" name="test/Kronolith/Integration/ToIcalendarTest.php" role="test" />
   <file baseinstalldir="/" md5sum="18f0a3a1fd85a8977293fb7a999c46d6" name="test/Kronolith/Stub/CalendarManager.php" role="test" />
   <file baseinstalldir="/" md5sum="abdff3bbbb249bbe043c3f166da7dac3" name="test/Kronolith/Stub/Driver.php" role="test" />
   <file baseinstalldir="/" md5sum="3a8f93611e68342a668a844e0415f37c" name="test/Kronolith/Stub/ObjectsManager.php" role="test" />
   <file baseinstalldir="/" md5sum="b940595dd8df582087cb653876aac862" name="test/Kronolith/Stub/Registry.php" role="test" />
   <file baseinstalldir="/" md5sum="210b1d0101b92b7687927d39426d3c11" name="test/Kronolith/Stub/ShareFactory.php" role="test" />
   <file baseinstalldir="/" md5sum="d21aedabd6fd3f15593797d28881083d" name="test/Kronolith/Stub/Tagger.php" role="test" />
   <file baseinstalldir="/" md5sum="6d07365505389ee0a57415ad083c9e8c" name="test/Kronolith/Stub/Types.php" role="test" />
   <file baseinstalldir="/" md5sum="8bc9518b9c0576806c82d9413489d099" name="test/Kronolith/AllTests.php" role="test" />
   <file baseinstalldir="/" md5sum="67a7d34cfcf0f7e6e33ebc89caff5ece" name="test/Kronolith/Autoload.php" role="test" />
   <file baseinstalldir="/" md5sum="0a5018f0726d4673850fece3ad4d72c0" name="test/Kronolith/bootstrap.php" role="test" />
   <file baseinstalldir="/" md5sum="d83351f9de365ff0cec2c4305dfffaa0" name="test/Kronolith/TestCase.php" role="test" />
   <file baseinstalldir="/" md5sum="14246186bdebe681ed9247b94f807a3b" name="themes/default/block/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="e14ad83b6496b7b1276567125ff4c4a2" name="themes/default/dynamic/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="2071381d03bc98e33f908ef949745a85" name="themes/default/graphics/alerts/alarm.png" role="horde" />
   <file baseinstalldir="/" md5sum="51302debbb7a622e1ef238eb6cf50979" name="themes/default/graphics/alerts/error.png" role="horde" />
   <file baseinstalldir="/" md5sum="e464deee6a08b43d45f6bda768484248" name="themes/default/graphics/alerts/message.png" role="horde" />
   <file baseinstalldir="/" md5sum="8817779c0b92365cce2eab2161b18782" name="themes/default/graphics/alerts/success.png" role="horde" />
   <file baseinstalldir="/" md5sum="a51c9947d8e64482f99e8e523bb6e49f" name="themes/default/graphics/alerts/warning.png" role="horde" />
   <file baseinstalldir="/" md5sum="350cf36904b5730f02346a8af1b441b7" name="themes/default/graphics/addressbook_browse.png" role="horde" />
   <file baseinstalldir="/" md5sum="6d22ea9b8f6bbec957e4d095740b1da2" name="themes/default/graphics/agenda.png" role="horde" />
   <file baseinstalldir="/" md5sum="0e6b2de36831c558b2006cda5f8e17ba" name="themes/default/graphics/alarm-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="9c53db25ea9f25ffe7068e287eafa01e" name="themes/default/graphics/alarm-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="8977814355b368cb0cd4701487a99df2" name="themes/default/graphics/alarm.png" role="horde" />
   <file baseinstalldir="/" md5sum="8817779c0b92365cce2eab2161b18782" name="themes/default/graphics/attendee-accepted.png" role="horde" />
   <file baseinstalldir="/" md5sum="51302debbb7a622e1ef238eb6cf50979" name="themes/default/graphics/attendee-declined.png" role="horde" />
   <file baseinstalldir="/" md5sum="0b93ced451fb42aa8a710bab844eb76a" name="themes/default/graphics/attendee-none.png" role="horde" />
   <file baseinstalldir="/" md5sum="1434e7d2cb01f2a140c35e9fad6b52d3" name="themes/default/graphics/attendee-tentative.png" role="horde" />
   <file baseinstalldir="/" md5sum="4e433e9be8d2a116f97b7b545cd7c036" name="themes/default/graphics/attendees-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="ef58872a3d14a88b2bdb5a7a5eaa8318" name="themes/default/graphics/attendees-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="a67e47418b54b5b34d4c82de8c548b03" name="themes/default/graphics/attendees.png" role="horde" />
   <file baseinstalldir="/" md5sum="eda6215ae9278d9b6f98580784b489df" name="themes/default/graphics/back.png" role="horde" />
   <file baseinstalldir="/" md5sum="43eae63aa42afb5925d0813c5cb5e0ec" name="themes/default/graphics/back_quick.png" role="horde" />
   <file baseinstalldir="/" md5sum="c344e29af1d66730218edb522b072d24" name="themes/default/graphics/big_agenda.png" role="horde" />
   <file baseinstalldir="/" md5sum="713b4e6fcdac1c847c053d4654c6b8cf" name="themes/default/graphics/big_alarm.png" role="horde" />
   <file baseinstalldir="/" md5sum="56244f38bb37c6f6620186ad45d99b76" name="themes/default/graphics/big_invitation.png" role="horde" />
   <file baseinstalldir="/" md5sum="6798eb8d0d57b5b809c55701dad32d37" name="themes/default/graphics/big_share.png" role="horde" />
   <file baseinstalldir="/" md5sum="03a663a7b79a6fd67c534e70d62e3584" name="themes/default/graphics/calendars.png" role="horde" />
   <file baseinstalldir="/" md5sum="208d1cf004d29e5744b56b46c3751f6a" name="themes/default/graphics/checkbox_off.png" role="horde" />
   <file baseinstalldir="/" md5sum="64df78303d0eb63b0b9c62e0c4a50ab0" name="themes/default/graphics/checkbox_on.png" role="horde" />
   <file baseinstalldir="/" md5sum="64df78303d0eb63b0b9c62e0c4a50ab0" name="themes/default/graphics/checkbox_over.png" role="horde" />
   <file baseinstalldir="/" md5sum="e5cb33a684c486346142fc2418c5c0d3" name="themes/default/graphics/close.png" role="horde" />
   <file baseinstalldir="/" md5sum="e680daf3f0e78feaae446834ba0e6e62" name="themes/default/graphics/data.png" role="horde" />
   <file baseinstalldir="/" md5sum="31e32aa5ffc9dae73ec89bccb5ef223d" name="themes/default/graphics/dayview.png" role="horde" />
   <file baseinstalldir="/" md5sum="ff79d2c74cb6ae2de809b77f7f36ab22" name="themes/default/graphics/delete-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="ae1a8453d1ab406f6ac4df5050baf606" name="themes/default/graphics/delete-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="4263c14c760a8ff137cb87d038ba0c07" name="themes/default/graphics/down.png" role="horde" />
   <file baseinstalldir="/" md5sum="74b581fdc42ac05607d99adf41acdf76" name="themes/default/graphics/drag-handle.png" role="horde" />
   <file baseinstalldir="/" md5sum="61417126bd0841a84b839c1a3803c678" name="themes/default/graphics/edit-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="8ade151bb92e786531e6ab59e700947d" name="themes/default/graphics/edit-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="5e2d8896f2ee48e639c3858513705be4" name="themes/default/graphics/exception-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="90a8b491d1771ae9d3fea148b243d4a7" name="themes/default/graphics/exception-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="f8639424a8b70ecc7be6197a0f35e595" name="themes/default/graphics/favicon.ico" role="horde" />
   <file baseinstalldir="/" md5sum="ce7a7c979bb2a0a0c85b9e540f148cb8" name="themes/default/graphics/goto.png" role="horde" />
   <file baseinstalldir="/" md5sum="0b93ced451fb42aa8a710bab844eb76a" name="themes/default/graphics/help.png" role="horde" />
   <file baseinstalldir="/" md5sum="03a663a7b79a6fd67c534e70d62e3584" name="themes/default/graphics/kronolith.png" role="horde" />
   <file baseinstalldir="/" md5sum="921dfc8c9382ab4143437770ecb0e2f2" name="themes/default/graphics/left.png" role="horde" />
   <file baseinstalldir="/" md5sum="a2e312a65e78663e2c2d4529606c3d91" name="themes/default/graphics/loading.gif" role="horde" />
   <file baseinstalldir="/" md5sum="094893e8eeacce75cdfb35fb94601ff7" name="themes/default/graphics/logout.png" role="horde" />
   <file baseinstalldir="/" md5sum="51302debbb7a622e1ef238eb6cf50979" name="themes/default/graphics/minus.png" role="horde" />
   <file baseinstalldir="/" md5sum="c10f606705053a4016eace5367bf8b67" name="themes/default/graphics/monthview.png" role="horde" />
   <file baseinstalldir="/" md5sum="73cec22f4b7d3a094ec03b26088ab861" name="themes/default/graphics/new.png" role="horde" />
   <file baseinstalldir="/" md5sum="ae8dbc35a42dc518e1e9dc5f810ee94f" name="themes/default/graphics/new_big.png" role="horde" />
   <file baseinstalldir="/" md5sum="ed41d5321c5a71f145cd6e9e9d655198" name="themes/default/graphics/new_small.png" role="horde" />
   <file baseinstalldir="/" md5sum="a041b6b952d8e5023b92eb2f7d5353e8" name="themes/default/graphics/new_small_fade.png" role="horde" />
   <file baseinstalldir="/" md5sum="53d2cd0614602f43d0ff2c8ef7579e8d" name="themes/default/graphics/new_task.png" role="horde" />
   <file baseinstalldir="/" md5sum="03a663a7b79a6fd67c534e70d62e3584" name="themes/default/graphics/picker.png" role="horde" />
   <file baseinstalldir="/" md5sum="ae8dbc35a42dc518e1e9dc5f810ee94f" name="themes/default/graphics/plus.png" role="horde" />
   <file baseinstalldir="/" md5sum="e6f66030fa66fb303eebbaf230fe99bb" name="themes/default/graphics/prefs.png" role="horde" />
   <file baseinstalldir="/" md5sum="00d78bf33774a8f0fa8d0fce5dac6a0e" name="themes/default/graphics/print.png" role="horde" />
   <file baseinstalldir="/" md5sum="ace2855b7960fee5a225f32224902064" name="themes/default/graphics/private-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="0968b0dc77ca9ce0d8ea3f21ad63becb" name="themes/default/graphics/private-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="4a731f73299cb06ef1a0b87602c2b37a" name="themes/default/graphics/recur-000.png" role="horde" />
   <file baseinstalldir="/" md5sum="088c3ec4366d3b85529de00c08624cac" name="themes/default/graphics/recur-fff.png" role="horde" />
   <file baseinstalldir="/" md5sum="116dccf1514261d7868c791c061eed85" name="themes/default/graphics/right.png" role="horde" />
   <file baseinstalldir="/" md5sum="da28189e71172e802316c4c2ceff1917" name="themes/default/graphics/search.png" role="horde" />
   <file baseinstalldir="/" md5sum="bc787557fabbc61952c1c396083fb607" name="themes/default/graphics/tasks.png" role="horde" />
   <file baseinstalldir="/" md5sum="c70a9435dd3ed232b13b884f450ebe8a" name="themes/default/graphics/today.png" role="horde" />
   <file baseinstalldir="/" md5sum="3c7a9cd86fa0e533fadc6fb0e701aac7" name="themes/default/graphics/unknown-background.png" role="horde" />
   <file baseinstalldir="/" md5sum="9afd2f4a167b55d2fa6a1459ffabaea6" name="themes/default/graphics/weekview.png" role="horde" />
   <file baseinstalldir="/" md5sum="9afd2f4a167b55d2fa6a1459ffabaea6" name="themes/default/graphics/workweekview.png" role="horde" />
   <file baseinstalldir="/" md5sum="7d573181d9d31eef4e414267b8248830" name="themes/default/graphics/yearview.png" role="horde" />
   <file baseinstalldir="/" md5sum="253be51975d06bb349ff38d28d2cffc7" name="themes/default/smartmobile/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="77eba2dbbcc7b45c8333a4f56351c438" name="themes/default/embed.css" role="horde" />
   <file baseinstalldir="/" md5sum="ca5abef127a323e1b57e52a7bef42a46" name="themes/default/ie8.css" role="horde" />
   <file baseinstalldir="/" md5sum="7bd769bdfa84cb69cc23014e364d7ab7" name="themes/default/opera.css" role="horde" />
   <file baseinstalldir="/" md5sum="c94cf1c0de08f17531c1951e0fbe57b9" name="themes/default/screen.css" role="horde" />
   <file baseinstalldir="/" md5sum="70d802fdbb857c2fea72eec78d3314fb" name="themes/default/webkit.css" role="horde" />
   <file baseinstalldir="/" md5sum="2171e3d30d967c6e2e1306804a9c64d7" name="add.php" role="horde" />
   <file baseinstalldir="/" md5sum="d99efb24271c2653d7e63ace9f3d9d8f" name="attend.php" role="horde" />
   <file baseinstalldir="/" md5sum="25bb2a8fa2843cf88ec2c8e4dd2ee320" name="attendees.php" role="horde" />
   <file baseinstalldir="/" md5sum="65f4b8fa0da98a12625fb53ea90530a5" name="contacts.php" role="horde" />
   <file baseinstalldir="/" md5sum="83600a711e6dd70e3193eedf92653fe7" name="COPYING" role="doc" />
   <file baseinstalldir="/" md5sum="a48524a157a72eaa5cb54a89396bb9c6" name="data.php" role="horde" />
   <file baseinstalldir="/" md5sum="feb219c8a49b0a1fe427f7faac80654a" name="day.php" role="horde" />
   <file baseinstalldir="/" md5sum="37da9f1f49558c7411f240227da5833a" name="delete.php" role="horde" />
   <file baseinstalldir="/" md5sum="bddb46d8337f22e93d7d1f78507cdab9" name="edit.php" role="horde" />
   <file baseinstalldir="/" md5sum="ed0e2f44df42147b51432a52e523c232" name="event.php" role="horde" />
   <file baseinstalldir="/" md5sum="49206d39a617210632df1f3d543f76c6" name="fb.php" role="horde" />
   <file baseinstalldir="/" md5sum="c971fcd91e330a4d8c7d0273c8f678ef" name="index.php" role="horde" />
   <file baseinstalldir="/" md5sum="6f9620c01def2cc33907a33b685fa1e7" name="month.php" role="horde" />
   <file baseinstalldir="/" md5sum="fdf4a0a9f3a842241b26f959f7dd7739" name="new.php" role="horde" />
   <file baseinstalldir="/" md5sum="e0d985175f13d7b51c3fd2d9aaf856f2" name="perms.php" role="horde" />
   <file baseinstalldir="/" md5sum="1133ec524eaf3d50ec9ba89dab45866f" name="README" role="doc" />
   <file baseinstalldir="/" md5sum="177b011fdc30b11717d99acb662cf621" name="search.php" role="horde" />
   <file baseinstalldir="/" md5sum="053907716a73ab1dff65e2b536f45d2d" name="smartmobile.php" role="horde" />
   <file baseinstalldir="/" md5sum="5682a8d73a4fa61658edfb1c88353d97" name="view.php" role="horde" />
   <file baseinstalldir="/" md5sum="a071ec882c02c3ff1f584b484788ebc6" name="week.php" role="horde" />
   <file baseinstalldir="/" md5sum="f0a3c4e43db85dea0b2e13a69dcd36c0" name="workweek.php" role="horde" />
   <file baseinstalldir="/" md5sum="5ee201c5505c62a607065672619d5e4e" name="year.php" role="horde" />
  </dir>
 </contents>
 <dependencies>
  <required>
   <php>
    <min>5.3.0</min>
    <max>8.0.0alpha1</max>
    <exclude>8.0.0alpha1</exclude>
   </php>
   <pearinstaller>
    <min>1.7.0</min>
   </pearinstaller>
   <package>
    <name>content</name>
    <channel>pear.horde.org</channel>
    <min>2.0.5</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>horde</name>
    <channel>pear.horde.org</channel>
    <min>5.0.0</min>
    <max>6.0.0alpha1</max>
    <exclude>6.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Auth</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Autoloader</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Core</name>
    <channel>pear.horde.org</channel>
    <min>2.30.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Data</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Date</name>
    <channel>pear.horde.org</channel>
    <min>2.0.8</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Date_Parser</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Dav</name>
    <channel>pear.horde.org</channel>
    <min>1.0.0</min>
    <max>2.0.0alpha1</max>
    <exclude>2.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Exception</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Form</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Group</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Http</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_History</name>
    <channel>pear.horde.org</channel>
    <min>2.1.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Icalendar</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Image</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Lock</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_LoginTasks</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Mail</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Mime</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Nls</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Notification</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Perms</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Serialize</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Share</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Support</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Text_Filter</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Timezone</name>
    <channel>pear.horde.org</channel>
    <min>1.0.0</min>
    <max>2.0.0alpha1</max>
    <exclude>2.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Url</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Util</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_View</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Date</name>
    <channel>pear.php.net</channel>
   </package>
   <extension>
    <name>gettext</name>
   </extension>
   <extension>
    <name>json</name>
   </extension>
   <extension>
    <name>SimpleXML</name>
   </extension>
  </required>
  <optional>
   <package>
    <name>nag</name>
    <channel>pear.horde.org</channel>
    <min>4.2.0</min>
    <max>5.0.0alpha1</max>
    <exclude>5.0.0alpha1</exclude>
   </package>
   <package>
    <name>timeobjects</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_ActiveSync</name>
    <channel>pear.horde.org</channel>
    <min>2.4.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Db</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_OpenXchange</name>
    <channel>pear.horde.org</channel>
    <min>1.0.0</min>
    <max>2.0.0alpha1</max>
    <exclude>2.0.0alpha1</exclude>
   </package>
   <package>
    <name>Horde_Test</name>
    <channel>pear.horde.org</channel>
    <min>2.0.0</min>
    <max>3.0.0alpha1</max>
    <exclude>3.0.0alpha1</exclude>
   </package>
   <package>
    <name>Date_Holidays</name>
    <channel>pear.php.net</channel>
    <min>0.21.0</min>
    <max>1.0.0alpha1</max>
    <exclude>1.0.0alpha1</exclude>
   </package>
   <extension>
    <name>xmlwriter</name>
   </extension>
  </optional>
 </dependencies>
 <usesrole>
  <role>horde</role>
  <package>Role</package>
  <channel>pear.horde.org</channel>
 </usesrole>
 <phprelease>
  <filelist>
   <install as="kronolith-agenda" name="bin/kronolith-agenda" />
   <install as="kronolith-convert-datatree-shares-to-sql" name="bin/kronolith-convert-datatree-shares-to-sql" />
   <install as="kronolith-convert-sql-shares-to-sqlng" name="bin/kronolith-convert-sql-shares-to-sqlng" />
   <install as="kronolith-convert-to-utc" name="bin/kronolith-convert-to-utc" />
   <install as="kronolith-import-icals" name="bin/kronolith-import-icals" />
   <install as="kronolith-import-openxchange" name="bin/kronolith-import-openxchange" />
   <install as="kronolith-import-squirrelmail-calendar" name="bin/kronolith-import-squirrelmail-calendar" />
   <install as="kronolith/calendars/create.php" name="calendars/create.php" />
   <install as="kronolith/calendars/delete.php" name="calendars/delete.php" />
   <install as="kronolith/calendars/edit.php" name="calendars/edit.php" />
   <install as="kronolith/calendars/index.html" name="calendars/index.html" />
   <install as="kronolith/calendars/remote_edit.php" name="calendars/remote_edit.php" />
   <install as="kronolith/calendars/remote_subscribe.php" name="calendars/remote_subscribe.php" />
   <install as="kronolith/calendars/remote_unsubscribe.php" name="calendars/remote_unsubscribe.php" />
   <install as="kronolith/calendars/subscribe.php" name="calendars/subscribe.php" />
   <install as="kronolith/config/.htaccess" name="config/.htaccess" />
   <install as="kronolith/config/conf.xml" name="config/conf.xml" />
   <install as="kronolith/config/hooks.php.dist" name="config/hooks.php.dist" />
   <install as="kronolith/config/menu.php.dist" name="config/menu.php.dist" />
   <install as="kronolith/config/prefs.php" name="config/prefs.php" />
   <install as="CHANGES" name="docs/CHANGES" />
   <install as="CREDITS" name="docs/CREDITS" />
   <install as="INSTALL" name="docs/INSTALL" />
   <install as="lighttpd-kronolith.conf" name="docs/lighttpd-kronolith.conf" />
   <install as="RELEASE_NOTES" name="docs/RELEASE_NOTES" />
   <install as="TODO" name="docs/TODO" />
   <install as="UPGRADING" name="docs/UPGRADING" />
   <install as="kronolith/feed/.htaccess" name="feed/.htaccess" />
   <install as="kronolith/feed/index.php" name="feed/index.php" />
   <install as="kronolith/js/dragdrop2.js" name="js/dragdrop2.js" />
   <install as="kronolith/js/edit.js" name="js/edit.js" />
   <install as="kronolith/js/embed.js" name="js/embed.js" />
   <install as="kronolith/js/goto.js" name="js/goto.js" />
   <install as="kronolith/js/kronolith.js" name="js/kronolith.js" />
   <install as="kronolith/js/smartmobile.js" name="js/smartmobile.js" />
   <install as="kronolith/js/views.js" name="js/views.js" />
   <install as="kronolith/lib/.htaccess" name="lib/.htaccess" />
   <install as="kronolith/lib/Ajax.php" name="lib/Ajax.php" />
   <install as="kronolith/lib/Api.php" name="lib/Api.php" />
   <install as="kronolith/lib/Application.php" name="lib/Application.php" />
   <install as="kronolith/lib/Calendar.php" name="lib/Calendar.php" />
   <install as="kronolith/lib/CalendarsManager.php" name="lib/CalendarsManager.php" />
   <install as="kronolith/lib/Day.php" name="lib/Day.php" />
   <install as="kronolith/lib/Driver.php" name="lib/Driver.php" />
   <install as="kronolith/lib/Event.php" name="lib/Event.php" />
   <install as="kronolith/lib/Exception.php" name="lib/Exception.php" />
   <install as="kronolith/lib/FreeBusy.php" name="lib/FreeBusy.php" />
   <install as="kronolith/lib/Kronolith.php" name="lib/Kronolith.php" />
   <install as="kronolith/lib/Resource.php" name="lib/Resource.php" />
   <install as="kronolith/lib/Storage.php" name="lib/Storage.php" />
   <install as="kronolith/lib/Tagger.php" name="lib/Tagger.php" />
   <install as="kronolith/lib/Test.php" name="lib/Test.php" />
   <install as="kronolith/lib/Ajax/Application.php" name="lib/Ajax/Application.php" />
   <install as="kronolith/lib/Ajax/Application/Handler.php" name="lib/Ajax/Application/Handler.php" />
   <install as="kronolith/lib/Ajax/Imple/ContactAutoCompleter.php" name="lib/Ajax/Imple/ContactAutoCompleter.php" />
   <install as="kronolith/lib/Ajax/Imple/ResourceAutoCompleter.php" name="lib/Ajax/Imple/ResourceAutoCompleter.php" />
   <install as="kronolith/lib/Ajax/Imple/TagAutoCompleter.php" name="lib/Ajax/Imple/TagAutoCompleter.php" />
   <install as="kronolith/lib/Block/Month.php" name="lib/Block/Month.php" />
   <install as="kronolith/lib/Block/Monthlist.php" name="lib/Block/Monthlist.php" />
   <install as="kronolith/lib/Block/Prevmonthlist.php" name="lib/Block/Prevmonthlist.php" />
   <install as="kronolith/lib/Block/Summary.php" name="lib/Block/Summary.php" />
   <install as="kronolith/lib/Calendar/External.php" name="lib/Calendar/External.php" />
   <install as="kronolith/lib/Calendar/Holiday.php" name="lib/Calendar/Holiday.php" />
   <install as="kronolith/lib/Calendar/Internal.php" name="lib/Calendar/Internal.php" />
   <install as="kronolith/lib/Calendar/Remote.php" name="lib/Calendar/Remote.php" />
   <install as="kronolith/lib/Calendar/Resource.php" name="lib/Calendar/Resource.php" />
   <install as="kronolith/lib/Calendar/ResourceGroup.php" name="lib/Calendar/ResourceGroup.php" />
   <install as="kronolith/lib/Calendar/External/Tasks.php" name="lib/Calendar/External/Tasks.php" />
   <install as="kronolith/lib/Calendars/Base.php" name="lib/Calendars/Base.php" />
   <install as="kronolith/lib/Calendars/Default.php" name="lib/Calendars/Default.php" />
   <install as="kronolith/lib/Calendars/Kolab.php" name="lib/Calendars/Kolab.php" />
   <install as="kronolith/lib/Driver/Holidays.php" name="lib/Driver/Holidays.php" />
   <install as="kronolith/lib/Driver/Horde.php" name="lib/Driver/Horde.php" />
   <install as="kronolith/lib/Driver/Ical.php" name="lib/Driver/Ical.php" />
   <install as="kronolith/lib/Driver/Kolab.php" name="lib/Driver/Kolab.php" />
   <install as="kronolith/lib/Driver/Mock.php" name="lib/Driver/Mock.php" />
   <install as="kronolith/lib/Driver/Sql.php" name="lib/Driver/Sql.php" />
   <install as="kronolith/lib/Driver/Resource/Sql.php" name="lib/Driver/Resource/Sql.php" />
   <install as="kronolith/lib/Event/Holidays.php" name="lib/Event/Holidays.php" />
   <install as="kronolith/lib/Event/Horde.php" name="lib/Event/Horde.php" />
   <install as="kronolith/lib/Event/Ical.php" name="lib/Event/Ical.php" />
   <install as="kronolith/lib/Event/Kolab.php" name="lib/Event/Kolab.php" />
   <install as="kronolith/lib/Event/Mock.php" name="lib/Event/Mock.php" />
   <install as="kronolith/lib/Event/Sql.php" name="lib/Event/Sql.php" />
   <install as="kronolith/lib/Event/Resource/Sql.php" name="lib/Event/Resource/Sql.php" />
   <install as="kronolith/lib/Factory/Calendars.php" name="lib/Factory/Calendars.php" />
   <install as="kronolith/lib/Factory/Driver.php" name="lib/Factory/Driver.php" />
   <install as="kronolith/lib/Factory/Geo.php" name="lib/Factory/Geo.php" />
   <install as="kronolith/lib/Factory/Shares.php" name="lib/Factory/Shares.php" />
   <install as="kronolith/lib/Factory/Storage.php" name="lib/Factory/Storage.php" />
   <install as="kronolith/lib/Form/CreateCalendar.php" name="lib/Form/CreateCalendar.php" />
   <install as="kronolith/lib/Form/CreateResource.php" name="lib/Form/CreateResource.php" />
   <install as="kronolith/lib/Form/CreateResourceGroup.php" name="lib/Form/CreateResourceGroup.php" />
   <install as="kronolith/lib/Form/DeleteCalendar.php" name="lib/Form/DeleteCalendar.php" />
   <install as="kronolith/lib/Form/DeleteResource.php" name="lib/Form/DeleteResource.php" />
   <install as="kronolith/lib/Form/DeleteResourceGroup.php" name="lib/Form/DeleteResourceGroup.php" />
   <install as="kronolith/lib/Form/EditCalendar.php" name="lib/Form/EditCalendar.php" />
   <install as="kronolith/lib/Form/EditRemoteCalendar.php" name="lib/Form/EditRemoteCalendar.php" />
   <install as="kronolith/lib/Form/EditResource.php" name="lib/Form/EditResource.php" />
   <install as="kronolith/lib/Form/EditResourceGroup.php" name="lib/Form/EditResourceGroup.php" />
   <install as="kronolith/lib/Form/SubscribeRemoteCalendar.php" name="lib/Form/SubscribeRemoteCalendar.php" />
   <install as="kronolith/lib/Form/UnsubscribeRemoteCalendar.php" name="lib/Form/UnsubscribeRemoteCalendar.php" />
   <install as="kronolith/lib/Form/Type/KronolithTags.php" name="lib/Form/Type/KronolithTags.php" />
   <install as="kronolith/lib/FreeBusy/View.php" name="lib/FreeBusy/View.php" />
   <install as="kronolith/lib/FreeBusy/View/Day.php" name="lib/FreeBusy/View/Day.php" />
   <install as="kronolith/lib/FreeBusy/View/Month.php" name="lib/FreeBusy/View/Month.php" />
   <install as="kronolith/lib/FreeBusy/View/Week.php" name="lib/FreeBusy/View/Week.php" />
   <install as="kronolith/lib/FreeBusy/View/Workweek.php" name="lib/FreeBusy/View/Workweek.php" />
   <install as="kronolith/lib/Geo/Base.php" name="lib/Geo/Base.php" />
   <install as="kronolith/lib/Geo/Mysql.php" name="lib/Geo/Mysql.php" />
   <install as="kronolith/lib/Geo/Sql.php" name="lib/Geo/Sql.php" />
   <install as="kronolith/lib/Icalendar/Handler/Base.php" name="lib/Icalendar/Handler/Base.php" />
   <install as="kronolith/lib/Icalendar/Handler/Dav.php" name="lib/Icalendar/Handler/Dav.php" />
   <install as="kronolith/lib/LoginTasks/SystemTask/Upgrade.php" name="lib/LoginTasks/SystemTask/Upgrade.php" />
   <install as="kronolith/lib/LoginTasks/Task/PurgeEvents.php" name="lib/LoginTasks/Task/PurgeEvents.php" />
   <install as="kronolith/lib/Prefs/Special/DefaultAlarm.php" name="lib/Prefs/Special/DefaultAlarm.php" />
   <install as="kronolith/lib/Prefs/Special/EventAlarms.php" name="lib/Prefs/Special/EventAlarms.php" />
   <install as="kronolith/lib/Prefs/Special/Sourceselect.php" name="lib/Prefs/Special/Sourceselect.php" />
   <install as="kronolith/lib/Resource/Base.php" name="lib/Resource/Base.php" />
   <install as="kronolith/lib/Resource/Group.php" name="lib/Resource/Group.php" />
   <install as="kronolith/lib/Resource/Single.php" name="lib/Resource/Single.php" />
   <install as="kronolith/lib/Storage/Kolab.php" name="lib/Storage/Kolab.php" />
   <install as="kronolith/lib/Storage/Sql.php" name="lib/Storage/Sql.php" />
   <install as="kronolith/lib/Ui/VarRenderer/Kronolith.php" name="lib/Ui/VarRenderer/Kronolith.php" />
   <install as="kronolith/lib/View/Day.php" name="lib/View/Day.php" />
   <install as="kronolith/lib/View/DeleteEvent.php" name="lib/View/DeleteEvent.php" />
   <install as="kronolith/lib/View/EditEvent.php" name="lib/View/EditEvent.php" />
   <install as="kronolith/lib/View/Event.php" name="lib/View/Event.php" />
   <install as="kronolith/lib/View/ExportEvent.php" name="lib/View/ExportEvent.php" />
   <install as="kronolith/lib/View/Month.php" name="lib/View/Month.php" />
   <install as="kronolith/lib/View/Sidebar.php" name="lib/View/Sidebar.php" />
   <install as="kronolith/lib/View/SidebarTasks.php" name="lib/View/SidebarTasks.php" />
   <install as="kronolith/lib/View/Week.php" name="lib/View/Week.php" />
   <install as="kronolith/lib/View/WorkWeek.php" name="lib/View/WorkWeek.php" />
   <install as="kronolith/lib/View/Year.php" name="lib/View/Year.php" />
   <install as="kronolith/locale/.htaccess" name="locale/.htaccess" />
   <install as="kronolith/locale/kronolith.pot" name="locale/kronolith.pot" />
   <install as="kronolith/locale/ar/LC_MESSAGES/kronolith.mo" name="locale/ar/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ar/LC_MESSAGES/kronolith.po" name="locale/ar/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/bg/LC_MESSAGES/kronolith.mo" name="locale/bg/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/bg/LC_MESSAGES/kronolith.po" name="locale/bg/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/ca/help.xml" name="locale/ca/help.xml" />
   <install as="kronolith/locale/ca/LC_MESSAGES/kronolith.mo" name="locale/ca/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ca/LC_MESSAGES/kronolith.po" name="locale/ca/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/cs/LC_MESSAGES/kronolith.mo" name="locale/cs/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/cs/LC_MESSAGES/kronolith.po" name="locale/cs/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/da/LC_MESSAGES/kronolith.mo" name="locale/da/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/da/LC_MESSAGES/kronolith.po" name="locale/da/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/de/help.xml" name="locale/de/help.xml" />
   <install as="kronolith/locale/de/LC_MESSAGES/kronolith.mo" name="locale/de/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/de/LC_MESSAGES/kronolith.po" name="locale/de/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/el/LC_MESSAGES/kronolith.mo" name="locale/el/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/el/LC_MESSAGES/kronolith.po" name="locale/el/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/en/help.xml" name="locale/en/help.xml" />
   <install as="kronolith/locale/es/help.xml" name="locale/es/help.xml" />
   <install as="kronolith/locale/es/LC_MESSAGES/kronolith.mo" name="locale/es/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/es/LC_MESSAGES/kronolith.po" name="locale/es/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/et/LC_MESSAGES/kronolith.mo" name="locale/et/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/et/LC_MESSAGES/kronolith.po" name="locale/et/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/eu/help.xml" name="locale/eu/help.xml" />
   <install as="kronolith/locale/eu/LC_MESSAGES/kronolith.mo" name="locale/eu/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/eu/LC_MESSAGES/kronolith.po" name="locale/eu/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/fi/help.xml" name="locale/fi/help.xml" />
   <install as="kronolith/locale/fi/LC_MESSAGES/kronolith.mo" name="locale/fi/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/fi/LC_MESSAGES/kronolith.po" name="locale/fi/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/fr/help.xml" name="locale/fr/help.xml" />
   <install as="kronolith/locale/fr/LC_MESSAGES/kronolith.mo" name="locale/fr/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/fr/LC_MESSAGES/kronolith.po" name="locale/fr/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/hr/help.xml" name="locale/hr/help.xml" />
   <install as="kronolith/locale/hr/LC_MESSAGES/kronolith.mo" name="locale/hr/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/hr/LC_MESSAGES/kronolith.po" name="locale/hr/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/hu/help.xml" name="locale/hu/help.xml" />
   <install as="kronolith/locale/hu/LC_MESSAGES/kronolith.mo" name="locale/hu/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/hu/LC_MESSAGES/kronolith.po" name="locale/hu/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/it/LC_MESSAGES/kronolith.mo" name="locale/it/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/it/LC_MESSAGES/kronolith.po" name="locale/it/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/ja/LC_MESSAGES/kronolith.mo" name="locale/ja/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ja/LC_MESSAGES/kronolith.po" name="locale/ja/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/ko/LC_MESSAGES/kronolith.mo" name="locale/ko/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ko/LC_MESSAGES/kronolith.po" name="locale/ko/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/lt/LC_MESSAGES/kronolith.mo" name="locale/lt/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/lt/LC_MESSAGES/kronolith.po" name="locale/lt/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/lv/help.xml" name="locale/lv/help.xml" />
   <install as="kronolith/locale/lv/LC_MESSAGES/kronolith.mo" name="locale/lv/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/lv/LC_MESSAGES/kronolith.po" name="locale/lv/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/nb/LC_MESSAGES/kronolith.mo" name="locale/nb/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/nb/LC_MESSAGES/kronolith.po" name="locale/nb/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/nl/LC_MESSAGES/kronolith.mo" name="locale/nl/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/nl/LC_MESSAGES/kronolith.po" name="locale/nl/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/nn/LC_MESSAGES/kronolith.mo" name="locale/nn/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/nn/LC_MESSAGES/kronolith.po" name="locale/nn/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/pl/LC_MESSAGES/kronolith.mo" name="locale/pl/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/pl/LC_MESSAGES/kronolith.po" name="locale/pl/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/pt/LC_MESSAGES/kronolith.mo" name="locale/pt/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/pt/LC_MESSAGES/kronolith.po" name="locale/pt/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/pt_BR/help.xml" name="locale/pt_BR/help.xml" />
   <install as="kronolith/locale/pt_BR/LC_MESSAGES/kronolith.mo" name="locale/pt_BR/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/pt_BR/LC_MESSAGES/kronolith.po" name="locale/pt_BR/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/ro/LC_MESSAGES/kronolith.mo" name="locale/ro/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ro/LC_MESSAGES/kronolith.po" name="locale/ro/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/ru/LC_MESSAGES/kronolith.mo" name="locale/ru/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/ru/LC_MESSAGES/kronolith.po" name="locale/ru/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/sk/LC_MESSAGES/kronolith.mo" name="locale/sk/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/sk/LC_MESSAGES/kronolith.po" name="locale/sk/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/sl/LC_MESSAGES/kronolith.mo" name="locale/sl/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/sl/LC_MESSAGES/kronolith.po" name="locale/sl/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/sv/LC_MESSAGES/kronolith.mo" name="locale/sv/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/sv/LC_MESSAGES/kronolith.po" name="locale/sv/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/tr/help.xml" name="locale/tr/help.xml" />
   <install as="kronolith/locale/tr/LC_MESSAGES/kronolith.mo" name="locale/tr/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/tr/LC_MESSAGES/kronolith.po" name="locale/tr/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/uk/LC_MESSAGES/kronolith.mo" name="locale/uk/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/uk/LC_MESSAGES/kronolith.po" name="locale/uk/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/zh_CN/LC_MESSAGES/kronolith.mo" name="locale/zh_CN/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/zh_CN/LC_MESSAGES/kronolith.po" name="locale/zh_CN/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/locale/zh_TW/LC_MESSAGES/kronolith.mo" name="locale/zh_TW/LC_MESSAGES/kronolith.mo" />
   <install as="kronolith/locale/zh_TW/LC_MESSAGES/kronolith.po" name="locale/zh_TW/LC_MESSAGES/kronolith.po" />
   <install as="kronolith/migration/1_kronolith_base_tables.php" name="migration/1_kronolith_base_tables.php" />
   <install as="kronolith/migration/2_kronolith_upgrade_autoincrement.php" name="migration/2_kronolith_upgrade_autoincrement.php" />
   <install as="kronolith/migration/3_kronolith_upgrade_addallday.php" name="migration/3_kronolith_upgrade_addallday.php" />
   <install as="kronolith/migration/4_kronolith_upgrade_addalarmmethods.php" name="migration/4_kronolith_upgrade_addalarmmethods.php" />
   <install as="kronolith/migration/5_kronolith_upgrade_addcolor.php" name="migration/5_kronolith_upgrade_addcolor.php" />
   <install as="kronolith/migration/6_kronolith_upgrade_addresources.php" name="migration/6_kronolith_upgrade_addresources.php" />
   <install as="kronolith/migration/7_kronolith_upgrade_resourceautoincrement.php" name="migration/7_kronolith_upgrade_resourceautoincrement.php" />
   <install as="kronolith/migration/8_kronolith_upgrade_addgeo.php" name="migration/8_kronolith_upgrade_addgeo.php" />
   <install as="kronolith/migration/9_kronolith_upgrade_addurl.php" name="migration/9_kronolith_upgrade_addurl.php" />
   <install as="kronolith/migration/10_kronolith_upgrade_exceptions.php" name="migration/10_kronolith_upgrade_exceptions.php" />
   <install as="kronolith/migration/11_kronolith_upgrade_resourceemail.php" name="migration/11_kronolith_upgrade_resourceemail.php" />
   <install as="kronolith/migration/12_kronolith_upgrade_addzoom.php" name="migration/12_kronolith_upgrade_addzoom.php" />
   <install as="kronolith/migration/13_kronolith_upgrade_systemshares.php" name="migration/13_kronolith_upgrade_systemshares.php" />
   <install as="kronolith/migration/14_kronolith_upgrade_missingresourcefield.php" name="migration/14_kronolith_upgrade_missingresourcefield.php" />
   <install as="kronolith/migration/15_kronolith_upgrade_sqlng.php" name="migration/15_kronolith_upgrade_sqlng.php" />
   <install as="kronolith/migration/16_kronolith_upgrade_sqlhierarchical.php" name="migration/16_kronolith_upgrade_sqlhierarchical.php" />
   <install as="kronolith/migration/17_kronolith_upgrade_sqlnghierarchical.php" name="migration/17_kronolith_upgrade_sqlnghierarchical.php" />
   <install as="kronolith/migration/18_kronolith_upgrade_categoriestotags.php" name="migration/18_kronolith_upgrade_categoriestotags.php" />
   <install as="kronolith/migration/19_kronolith_upgrade_addmysqlgeo.php" name="migration/19_kronolith_upgrade_addmysqlgeo.php" />
   <install as="kronolith/migration/20_kronolith_upgrade_timezone.php" name="migration/20_kronolith_upgrade_timezone.php" />
   <install as="kronolith/migration/21_kronolith_upgrade_exceptionutc.php" name="migration/21_kronolith_upgrade_exceptionutc.php" />
   <install as="kronolith/migration/22_kronolith_upgrade_parents.php" name="migration/22_kronolith_upgrade_parents.php" />
   <install as="kronolith/migration/23_kronolith_upgrade_baseidindex.php" name="migration/23_kronolith_upgrade_baseidindex.php" />
   <install as="kronolith/resources/create.php" name="resources/create.php" />
   <install as="kronolith/resources/delete.php" name="resources/delete.php" />
   <install as="kronolith/resources/edit.php" name="resources/edit.php" />
   <install as="kronolith/resources/index.html" name="resources/index.html" />
   <install as="kronolith/resources/groups/create.php" name="resources/groups/create.php" />
   <install as="kronolith/resources/groups/delete.php" name="resources/groups/delete.php" />
   <install as="kronolith/resources/groups/edit.php" name="resources/groups/edit.php" />
   <install as="kronolith/resources/groups/index.html" name="resources/groups/index.html" />
   <install as="kronolith/templates/.htaccess" name="templates/.htaccess" />
   <install as="kronolith/templates/buttonbar.html.php" name="templates/buttonbar.html.php" />
   <install as="kronolith/templates/calendar_titles.inc" name="templates/calendar_titles.inc" />
   <install as="kronolith/templates/javascript_defs.php" name="templates/javascript_defs.php" />
   <install as="kronolith/templates/agenda/notification.html.php" name="templates/agenda/notification.html.php" />
   <install as="kronolith/templates/agenda/notification.plain.php" name="templates/agenda/notification.plain.php" />
   <install as="kronolith/templates/alarm/mail.html.php" name="templates/alarm/mail.html.php" />
   <install as="kronolith/templates/alarm/mail.plain.php" name="templates/alarm/mail.plain.php" />
   <install as="kronolith/templates/attendees/attendees.inc" name="templates/attendees/attendees.inc" />
   <install as="kronolith/templates/chunks/calendar.php" name="templates/chunks/calendar.php" />
   <install as="kronolith/templates/chunks/permissions.inc" name="templates/chunks/permissions.inc" />
   <install as="kronolith/templates/contacts/contacts.inc" name="templates/contacts/contacts.inc" />
   <install as="kronolith/templates/data/export.inc" name="templates/data/export.inc" />
   <install as="kronolith/templates/data/import.inc" name="templates/data/import.inc" />
   <install as="kronolith/templates/day/all_day.inc" name="templates/day/all_day.inc" />
   <install as="kronolith/templates/day/head.inc" name="templates/day/head.inc" />
   <install as="kronolith/templates/day/head_side_by_side.inc" name="templates/day/head_side_by_side.inc" />
   <install as="kronolith/templates/day/rows.html" name="templates/day/rows.html" />
   <install as="kronolith/templates/delete/delete.inc" name="templates/delete/delete.inc" />
   <install as="kronolith/templates/delete/one.inc" name="templates/delete/one.inc" />
   <install as="kronolith/templates/dynamic/agenda.inc" name="templates/dynamic/agenda.inc" />
   <install as="kronolith/templates/dynamic/day.inc" name="templates/dynamic/day.inc" />
   <install as="kronolith/templates/dynamic/edit.inc" name="templates/dynamic/edit.inc" />
   <install as="kronolith/templates/dynamic/index.inc" name="templates/dynamic/index.inc" />
   <install as="kronolith/templates/dynamic/month.inc" name="templates/dynamic/month.inc" />
   <install as="kronolith/templates/dynamic/sidebar.html.php" name="templates/dynamic/sidebar.html.php" />
   <install as="kronolith/templates/dynamic/task.inc" name="templates/dynamic/task.inc" />
   <install as="kronolith/templates/dynamic/tasks.inc" name="templates/dynamic/tasks.inc" />
   <install as="kronolith/templates/dynamic/week.inc" name="templates/dynamic/week.inc" />
   <install as="kronolith/templates/dynamic/workweek.inc" name="templates/dynamic/workweek.inc" />
   <install as="kronolith/templates/dynamic/year.inc" name="templates/dynamic/year.inc" />
   <install as="kronolith/templates/edit/edit.inc" name="templates/edit/edit.inc" />
   <install as="kronolith/templates/edit/edit_timespan.inc" name="templates/edit/edit_timespan.inc" />
   <install as="kronolith/templates/fbview/busyblock.html" name="templates/fbview/busyblock.html" />
   <install as="kronolith/templates/fbview/emptyblock.html" name="templates/fbview/emptyblock.html" />
   <install as="kronolith/templates/fbview/header.html" name="templates/fbview/header.html" />
   <install as="kronolith/templates/fbview/legend.html" name="templates/fbview/legend.html" />
   <install as="kronolith/templates/fbview/meetingblock.html" name="templates/fbview/meetingblock.html" />
   <install as="kronolith/templates/fbview/row.html" name="templates/fbview/row.html" />
   <install as="kronolith/templates/fbview/section.html" name="templates/fbview/section.html" />
   <install as="kronolith/templates/fbview/unknownblock.html" name="templates/fbview/unknownblock.html" />
   <install as="kronolith/templates/feeds/atom.xml" name="templates/feeds/atom.xml" />
   <install as="kronolith/templates/itip/notification.html.php" name="templates/itip/notification.html.php" />
   <install as="kronolith/templates/itip/notification.plain.php" name="templates/itip/notification.plain.php" />
   <install as="kronolith/templates/month/head.inc" name="templates/month/head.inc" />
   <install as="kronolith/templates/month/head_side_by_side.inc" name="templates/month/head_side_by_side.inc" />
   <install as="kronolith/templates/perms/perms.inc" name="templates/perms/perms.inc" />
   <install as="kronolith/templates/prefs/defaultalarm.html" name="templates/prefs/defaultalarm.html" />
   <install as="kronolith/templates/resources/form-header.inc" name="templates/resources/form-header.inc" />
   <install as="kronolith/templates/search/empty.inc" name="templates/search/empty.inc" />
   <install as="kronolith/templates/search/event_footers.inc" name="templates/search/event_footers.inc" />
   <install as="kronolith/templates/search/event_headers.inc" name="templates/search/event_headers.inc" />
   <install as="kronolith/templates/search/event_summaries.inc" name="templates/search/event_summaries.inc" />
   <install as="kronolith/templates/search/header.inc" name="templates/search/header.inc" />
   <install as="kronolith/templates/search/search.inc" name="templates/search/search.inc" />
   <install as="kronolith/templates/search/search_advanced.inc" name="templates/search/search_advanced.inc" />
   <install as="kronolith/templates/share/notification.html.php" name="templates/share/notification.html.php" />
   <install as="kronolith/templates/share/notification.plain.php" name="templates/share/notification.plain.php" />
   <install as="kronolith/templates/smartmobile/day.html.php" name="templates/smartmobile/day.html.php" />
   <install as="kronolith/templates/smartmobile/event.html.php" name="templates/smartmobile/event.html.php" />
   <install as="kronolith/templates/smartmobile/javascript_defs.php" name="templates/smartmobile/javascript_defs.php" />
   <install as="kronolith/templates/smartmobile/month.html.php" name="templates/smartmobile/month.html.php" />
   <install as="kronolith/templates/smartmobile/summary.html.php" name="templates/smartmobile/summary.html.php" />
   <install as="kronolith/templates/view/view.inc" name="templates/view/view.inc" />
   <install as="kronolith/templates/week/head.inc" name="templates/week/head.inc" />
   <install as="kronolith/templates/week/head_side_by_side.inc" name="templates/week/head_side_by_side.inc" />
   <install as="Kronolith/AllTests.php" name="test/Kronolith/AllTests.php" />
   <install as="Kronolith/Autoload.php" name="test/Kronolith/Autoload.php" />
   <install as="Kronolith/bootstrap.php" name="test/Kronolith/bootstrap.php" />
   <install as="Kronolith/TestCase.php" name="test/Kronolith/TestCase.php" />
   <install as="Kronolith/fixtures/allday.ics" name="test/Kronolith/fixtures/allday.ics" />
   <install as="Kronolith/fixtures/bug7068.ics" name="test/Kronolith/fixtures/bug7068.ics" />
   <install as="Kronolith/fixtures/bug11688.ics" name="test/Kronolith/fixtures/bug11688.ics" />
   <install as="Kronolith/fixtures/export1.ics" name="test/Kronolith/fixtures/export1.ics" />
   <install as="Kronolith/fixtures/export2.ics" name="test/Kronolith/fixtures/export2.ics" />
   <install as="Kronolith/fixtures/export3.ics" name="test/Kronolith/fixtures/export3.ics" />
   <install as="Kronolith/fixtures/export4.ics" name="test/Kronolith/fixtures/export4.ics" />
   <install as="Kronolith/fixtures/fromicalendar.ics" name="test/Kronolith/fixtures/fromicalendar.ics" />
   <install as="Kronolith/Integration/AllDayTest.php" name="test/Kronolith/Integration/AllDayTest.php" />
   <install as="Kronolith/Integration/FromIcalendarTest.php" name="test/Kronolith/Integration/FromIcalendarTest.php" />
   <install as="Kronolith/Integration/ToIcalendarTest.php" name="test/Kronolith/Integration/ToIcalendarTest.php" />
   <install as="Kronolith/Integration/Driver/Base.php" name="test/Kronolith/Integration/Driver/Base.php" />
   <install as="Kronolith/Integration/Driver/KolabTest.php" name="test/Kronolith/Integration/Driver/KolabTest.php" />
   <install as="Kronolith/Integration/Driver/Sql/Base.php" name="test/Kronolith/Integration/Driver/Sql/Base.php" />
   <install as="Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php" name="test/Kronolith/Integration/Driver/Sql/Pdo/SqliteTest.php" />
   <install as="Kronolith/Integration/Kronolith/Base.php" name="test/Kronolith/Integration/Kronolith/Base.php" />
   <install as="Kronolith/Integration/Kronolith/KolabTest.php" name="test/Kronolith/Integration/Kronolith/KolabTest.php" />
   <install as="Kronolith/Integration/Kronolith/Sql/Base.php" name="test/Kronolith/Integration/Kronolith/Sql/Base.php" />
   <install as="Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php" name="test/Kronolith/Integration/Kronolith/Sql/Pdo/SqliteTest.php" />
   <install as="Kronolith/Stub/CalendarManager.php" name="test/Kronolith/Stub/CalendarManager.php" />
   <install as="Kronolith/Stub/Driver.php" name="test/Kronolith/Stub/Driver.php" />
   <install as="Kronolith/Stub/ObjectsManager.php" name="test/Kronolith/Stub/ObjectsManager.php" />
   <install as="Kronolith/Stub/Registry.php" name="test/Kronolith/Stub/Registry.php" />
   <install as="Kronolith/Stub/ShareFactory.php" name="test/Kronolith/Stub/ShareFactory.php" />
   <install as="Kronolith/Stub/Tagger.php" name="test/Kronolith/Stub/Tagger.php" />
   <install as="Kronolith/Stub/Types.php" name="test/Kronolith/Stub/Types.php" />
   <install as="kronolith/themes/default/embed.css" name="themes/default/embed.css" />
   <install as="kronolith/themes/default/ie8.css" name="themes/default/ie8.css" />
   <install as="kronolith/themes/default/opera.css" name="themes/default/opera.css" />
   <install as="kronolith/themes/default/screen.css" name="themes/default/screen.css" />
   <install as="kronolith/themes/default/webkit.css" name="themes/default/webkit.css" />
   <install as="kronolith/themes/default/block/screen.css" name="themes/default/block/screen.css" />
   <install as="kronolith/themes/default/dynamic/screen.css" name="themes/default/dynamic/screen.css" />
   <install as="kronolith/themes/default/graphics/addressbook_browse.png" name="themes/default/graphics/addressbook_browse.png" />
   <install as="kronolith/themes/default/graphics/agenda.png" name="themes/default/graphics/agenda.png" />
   <install as="kronolith/themes/default/graphics/alarm-000.png" name="themes/default/graphics/alarm-000.png" />
   <install as="kronolith/themes/default/graphics/alarm-fff.png" name="themes/default/graphics/alarm-fff.png" />
   <install as="kronolith/themes/default/graphics/alarm.png" name="themes/default/graphics/alarm.png" />
   <install as="kronolith/themes/default/graphics/attendee-accepted.png" name="themes/default/graphics/attendee-accepted.png" />
   <install as="kronolith/themes/default/graphics/attendee-declined.png" name="themes/default/graphics/attendee-declined.png" />
   <install as="kronolith/themes/default/graphics/attendee-none.png" name="themes/default/graphics/attendee-none.png" />
   <install as="kronolith/themes/default/graphics/attendee-tentative.png" name="themes/default/graphics/attendee-tentative.png" />
   <install as="kronolith/themes/default/graphics/attendees-000.png" name="themes/default/graphics/attendees-000.png" />
   <install as="kronolith/themes/default/graphics/attendees-fff.png" name="themes/default/graphics/attendees-fff.png" />
   <install as="kronolith/themes/default/graphics/attendees.png" name="themes/default/graphics/attendees.png" />
   <install as="kronolith/themes/default/graphics/back.png" name="themes/default/graphics/back.png" />
   <install as="kronolith/themes/default/graphics/back_quick.png" name="themes/default/graphics/back_quick.png" />
   <install as="kronolith/themes/default/graphics/big_agenda.png" name="themes/default/graphics/big_agenda.png" />
   <install as="kronolith/themes/default/graphics/big_alarm.png" name="themes/default/graphics/big_alarm.png" />
   <install as="kronolith/themes/default/graphics/big_invitation.png" name="themes/default/graphics/big_invitation.png" />
   <install as="kronolith/themes/default/graphics/big_share.png" name="themes/default/graphics/big_share.png" />
   <install as="kronolith/themes/default/graphics/calendars.png" name="themes/default/graphics/calendars.png" />
   <install as="kronolith/themes/default/graphics/checkbox_off.png" name="themes/default/graphics/checkbox_off.png" />
   <install as="kronolith/themes/default/graphics/checkbox_on.png" name="themes/default/graphics/checkbox_on.png" />
   <install as="kronolith/themes/default/graphics/checkbox_over.png" name="themes/default/graphics/checkbox_over.png" />
   <install as="kronolith/themes/default/graphics/close.png" name="themes/default/graphics/close.png" />
   <install as="kronolith/themes/default/graphics/data.png" name="themes/default/graphics/data.png" />
   <install as="kronolith/themes/default/graphics/dayview.png" name="themes/default/graphics/dayview.png" />
   <install as="kronolith/themes/default/graphics/delete-000.png" name="themes/default/graphics/delete-000.png" />
   <install as="kronolith/themes/default/graphics/delete-fff.png" name="themes/default/graphics/delete-fff.png" />
   <install as="kronolith/themes/default/graphics/down.png" name="themes/default/graphics/down.png" />
   <install as="kronolith/themes/default/graphics/drag-handle.png" name="themes/default/graphics/drag-handle.png" />
   <install as="kronolith/themes/default/graphics/edit-000.png" name="themes/default/graphics/edit-000.png" />
   <install as="kronolith/themes/default/graphics/edit-fff.png" name="themes/default/graphics/edit-fff.png" />
   <install as="kronolith/themes/default/graphics/exception-000.png" name="themes/default/graphics/exception-000.png" />
   <install as="kronolith/themes/default/graphics/exception-fff.png" name="themes/default/graphics/exception-fff.png" />
   <install as="kronolith/themes/default/graphics/favicon.ico" name="themes/default/graphics/favicon.ico" />
   <install as="kronolith/themes/default/graphics/goto.png" name="themes/default/graphics/goto.png" />
   <install as="kronolith/themes/default/graphics/help.png" name="themes/default/graphics/help.png" />
   <install as="kronolith/themes/default/graphics/kronolith.png" name="themes/default/graphics/kronolith.png" />
   <install as="kronolith/themes/default/graphics/left.png" name="themes/default/graphics/left.png" />
   <install as="kronolith/themes/default/graphics/loading.gif" name="themes/default/graphics/loading.gif" />
   <install as="kronolith/themes/default/graphics/logout.png" name="themes/default/graphics/logout.png" />
   <install as="kronolith/themes/default/graphics/minus.png" name="themes/default/graphics/minus.png" />
   <install as="kronolith/themes/default/graphics/monthview.png" name="themes/default/graphics/monthview.png" />
   <install as="kronolith/themes/default/graphics/new.png" name="themes/default/graphics/new.png" />
   <install as="kronolith/themes/default/graphics/new_big.png" name="themes/default/graphics/new_big.png" />
   <install as="kronolith/themes/default/graphics/new_small.png" name="themes/default/graphics/new_small.png" />
   <install as="kronolith/themes/default/graphics/new_small_fade.png" name="themes/default/graphics/new_small_fade.png" />
   <install as="kronolith/themes/default/graphics/new_task.png" name="themes/default/graphics/new_task.png" />
   <install as="kronolith/themes/default/graphics/picker.png" name="themes/default/graphics/picker.png" />
   <install as="kronolith/themes/default/graphics/plus.png" name="themes/default/graphics/plus.png" />
   <install as="kronolith/themes/default/graphics/prefs.png" name="themes/default/graphics/prefs.png" />
   <install as="kronolith/themes/default/graphics/print.png" name="themes/default/graphics/print.png" />
   <install as="kronolith/themes/default/graphics/private-000.png" name="themes/default/graphics/private-000.png" />
   <install as="kronolith/themes/default/graphics/private-fff.png" name="themes/default/graphics/private-fff.png" />
   <install as="kronolith/themes/default/graphics/recur-000.png" name="themes/default/graphics/recur-000.png" />
   <install as="kronolith/themes/default/graphics/recur-fff.png" name="themes/default/graphics/recur-fff.png" />
   <install as="kronolith/themes/default/graphics/right.png" name="themes/default/graphics/right.png" />
   <install as="kronolith/themes/default/graphics/search.png" name="themes/default/graphics/search.png" />
   <install as="kronolith/themes/default/graphics/tasks.png" name="themes/default/graphics/tasks.png" />
   <install as="kronolith/themes/default/graphics/today.png" name="themes/default/graphics/today.png" />
   <install as="kronolith/themes/default/graphics/unknown-background.png" name="themes/default/graphics/unknown-background.png" />
   <install as="kronolith/themes/default/graphics/weekview.png" name="themes/default/graphics/weekview.png" />
   <install as="kronolith/themes/default/graphics/workweekview.png" name="themes/default/graphics/workweekview.png" />
   <install as="kronolith/themes/default/graphics/yearview.png" name="themes/default/graphics/yearview.png" />
   <install as="kronolith/themes/default/graphics/alerts/alarm.png" name="themes/default/graphics/alerts/alarm.png" />
   <install as="kronolith/themes/default/graphics/alerts/error.png" name="themes/default/graphics/alerts/error.png" />
   <install as="kronolith/themes/default/graphics/alerts/message.png" name="themes/default/graphics/alerts/message.png" />
   <install as="kronolith/themes/default/graphics/alerts/success.png" name="themes/default/graphics/alerts/success.png" />
   <install as="kronolith/themes/default/graphics/alerts/warning.png" name="themes/default/graphics/alerts/warning.png" />
   <install as="kronolith/themes/default/smartmobile/screen.css" name="themes/default/smartmobile/screen.css" />
   <install as="kronolith/add.php" name="add.php" />
   <install as="kronolith/attend.php" name="attend.php" />
   <install as="kronolith/attendees.php" name="attendees.php" />
   <install as="kronolith/contacts.php" name="contacts.php" />
   <install as="COPYING" name="COPYING" />
   <install as="kronolith/data.php" name="data.php" />
   <install as="kronolith/day.php" name="day.php" />
   <install as="kronolith/delete.php" name="delete.php" />
   <install as="kronolith/edit.php" name="edit.php" />
   <install as="kronolith/event.php" name="event.php" />
   <install as="kronolith/fb.php" name="fb.php" />
   <install as="kronolith/index.php" name="index.php" />
   <install as="kronolith/month.php" name="month.php" />
   <install as="kronolith/new.php" name="new.php" />
   <install as="kronolith/perms.php" name="perms.php" />
   <install as="README" name="README" />
   <install as="kronolith/search.php" name="search.php" />
   <install as="kronolith/smartmobile.php" name="smartmobile.php" />
   <install as="kronolith/view.php" name="view.php" />
   <install as="kronolith/week.php" name="week.php" />
   <install as="kronolith/workweek.php" name="workweek.php" />
   <install as="kronolith/year.php" name="year.php" />
  </filelist>
 </phprelease>
 <changelog>
  <release>
   <version>
    <release>0.0.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Don&apos;t display delete links in month view; slimmer UI.
* [jon] Silence session_start warnings.
* [jon] Use Horde::url() in place of the deprecated buildURL() function.
* [cjh] Update to work with new slimmed down/Horde:: integrated session code.
* [cjh] Use the new css.php script to generate our stylesheets.
* [cjh] Revising the look and feel to use the new stylesheets and conventions.
* [cjh] Added initial CHANGES file and documentation.
   </notes>
  </release>
  <release>
   <version>
    <release>0.0.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Allow all-day events and montly-on-weekday recurrence.
* [cjh] Add a Horde summary API function.
* [cjh] Use 24hr time preference (Jan Schneider &lt;janmailing@gmx.de&gt;).
* [cjh] Added Preferences framework into Kronolith.
* [jon] Merge doctype.inc into common-header.inc.
* [jon] Allow the registry to handle Kronolith&apos;s configuration values.
* [jon] HORDE_BASE is now defined in lib/base.php instead of config/conf.php.
* [cjh] Define the HORDE_BASE constant in config/conf.php, and use it when referring to any of Horde&apos;s files.
* [jon] Retired config/menu.txt in favor of config/menu.php.  This file follows a new format based on native PHP data structures.
* [cjh] Add an optional keywords section, and a keywords definition file.
* [cjh] Add a location field to events.
* [cjh] Add the ability to re-label the category field, and to make it a system-defined list of options.
* [cjh] Added Kronolith::weeksInYear($year) and Kronolith_Day::isToday().
* [cjh] Add week and workweek (mon-fri) views.
* [cjh] Allow events to recur every other week, every 3 days, etc.
* [cjh] Reorganize the event adding/editing screen and add javascript to give the user sane defaults.
* [cjh] Remove year.php; it&apos;s ugly and not really useful.
* [cjh] Open the calender in base.php.
* [cjh] Remove most of the remaining mcal-dependent code.
* [cjh] Kronolith now uses Horde authentication instead of its own. This means that whatever auth method you are using for Horde will be used to authenticate to Kronolith, and in return you get single sign-on with any other apps using Horde authentication. This also means that Kronolith is completely independent of MCAL for authentication now; if you have one MCAL user, that&apos;s enough to provide calendars for all Horde users.
* [cjh] Add lib/base.php to include all globally needed conf files and libraries, set up the language, etc.
* [cjh] Abstract the event creation/edit code into the Kronolith_Driver/Kronolith_Event classes.
* [cjh] Changes to work with register_globals = Off. (IN PROGRESS)
* [cjh] Add an optional &quot;get the time this event would start on day x&quot; feature to the Kronolith_Event:: class, allowing status.php to work with recurring events.
* [cjh] We now have the Kronolith_Event abstraction class that abstracts away details of events, so that the frontend scripts aren&apos;t dependant on mcal.
* [cjh] Display events which are in progress, just starting, or start in under two hours along with other messages just under the menu.
* [cjh] Much slicker UI.
* [cjh] Use mcal_popen instead of mcal_open - might give us a performance gain.
   </notes>
  </release>
  <release>
   <version>
    <release>0.0.3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [bjn] Change &apos;en&apos; and &apos;en_EN&apos; locales to &apos;en_US&apos; (default).
* [jan] Add Brazilian Portuguese translation (Samuel Mota &lt;samuel@bumerangue.com&gt;).
* [jan] Add DHTML date navigator.
* [jan] Add Greek translation (Stefanos I. Dimitriou &lt;sdimitri@teiath.gr&gt;).
* [jan] Add Russian translation (Anton Nekhoroshih &lt;anton@valuehost.ru&gt;).
* [jan] Recode the html display functions and add extra row for all day events.
* [cjh] Let the Registry handle retrieving preferences.
* [jan] Add icon for recurring events.
* [jan] Add preference to show due tasks from Nag in the calendar.
* [jan] Add import/export capability.
* [jan] Add Italian translation (Giovanni Meneghetti &lt;gmeneghetti@infvic.it&gt;).
* [cjh] Add Traditional Chinese translation (David Chang &lt;david@thbuo.gov.tw&gt;).
* [jan] Add support for timezones
* [jan] Put new-event-link into week header instead around times in week view.
* [jan] Add day of month into week headers
* [cjh] Add Czech translation (pchytil@asp.ogi.edu).
* [jan] The menu buttons now open the day/week/month view corresponding to the actual view. New &apos;Today&apos; button.
* [jan] Make sure that events before 8am are shown correctly.
* [cjh] Add an initial MySQL driver (Luc Saillard &lt;luc+kronolith@alcove.fr&gt;).
* [avsm] Replace $conf[&apos;paths&apos;] with the $registry equivalents.
* [jan] Let the week alternatively start with Sunday. ISO conform week number calculation.
* [cjh] Prevent all day events from causing the day to start displaying at 12am.
* [cjh] Add $conf[&apos;menu&apos;][&apos;apps&apos;] support and a help link.
* [jan] Let the users alternatively select end time or duration of an event.
* [jan] Add support for alarms.
* [cjh] Add a preference to use hour increments instead of half-hour (Jan Schneider &lt;janmailing@gmx.de&gt;).
* [cjh] Bold in progress events in the summary and don&apos;t show events that are over (Jan Schneider &lt;janmailing@gmx.de&gt;).
* [cjh] Add delete links on event edit pages, and make sure delete and cancel work without javascript (Jan Schneider &lt;janmailing@gmx.de&gt;).
* [cjh] Add translation framework.
* [cjh] Make sure events are sorted by time in the summary.
* [cjh] Use the *url() functions more consistently to make sure that cookie-less sessions work.
   </notes>
  </release>
  <release>
   <version>
    <release>1.0.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Add Hungarian translation (Laszlo L. Tornoci &lt;torlasz@xenia.sote.hu&gt;).
* [jan] Add Korean translation (J.I Kim &lt;aporie@netian.com&gt;).
* [jan] Add Danish translation (Bill Edgington &lt;horde@0x20.com&gt;).
* [jan] Add Norwegian Nynorsk translation (Per-Stian Vatne &lt;psv@orsta.org&gt;).
* [jan] Add event view page and make it the standard if clicking on an event link (Brandon Knitter &lt;knitterb@blandsite.org&gt;).
* [jan] Show event description in link tooltip.
* [jan] Add Event::getLink().
* [cjh] Track when events are modified.
* [cjh] Add exceptions to recurring events.
* [cjh] Allow same deletion options as Palm for recurring events.
* [cjh] Add a preference for confirming event deletion.
* [jan] Add Slovak translation (Leo Mrafko &lt;leo@oel.sk&gt;).
* [jan] Add &quot;Save as new&quot; button (Michael Cochrane &lt;mike@graftonhall.co.nz&gt;).
* [cjh] Close a potential problem with register_globals On and $js_onLoad.
* [jan] Add Finnish translation (Leena Heino &lt;liinu@uta.fi&gt;).
* [cjh] Add new event link to the summary (Quinn Wilson &lt;qwilson@midworld.org&gt;).
* [cjh] Use the new PrefsUI class.
* [cjh] Show events that extend past the end hour of the day view.
* [jon] Adapt to the new Horde::img() syntax.
* [cjh] Switch output compression to ob_gzhandler().
* [cjh] Fix column widths in week view to be consistent (Jeff Graves &lt;jeff@image-src.com&gt;).
* [jan] Add Polish translation (Maciek Uhlig &lt;muhlig@us.edu.pl&gt;).
* [cjh] Add preferences for the hour range shown in the day/week views.
* [cjh] Use KRONOLITH_TEMPLATES constant for all template paths.
* [cjh] Use $registry-&gt;get() for all Registry information.
* [cjh] Use the new Notification system.
* [jan] Add Swedish translation (Andreas Dahlén &lt;andreas@dahlen.ws&gt;).
* [jon] Enable the &quot;portability&quot; option in the SQL driver.
* [jan] Use the new notification framework. This breaks compatibility with Horde 2.0.
* [jan] Remove the standard value for the language preference. The language to fall back to should be set Horde wide in lang.php instead.
* [jan] Change &apos;24hr&apos; preference to &apos;twentyFour&apos; to be ldap compliant.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Kronolith_Event objects now know how to obtain their driver, rather than storing a reference. Makes for much smaller/better return values over XML-RPC, at least.
* [cjh] Fix a bug in the spanning algorithm when there were two independant sets of overlapping events that were not common factors (i.e, a set of 2 events and a set of 3 events). Also start to document the row spanning code.
* [mir] Implement week of month recurrence for SQL driver.
* [cjh] Use Kronolith::listEvents() everywhere, so there is only one body of code to debug/add to for listing of events.
* [cjh] Show Nag tasks, if requested, on all views.
* [cjh] Use Kronolith::listEvents() in the week views; should be much more efficient (fewer SQL queries/MCAL calls).
* [cjh] Fix summary display of events after an empty day.
* [cjh] Fix links to events on other calendars in the summary.
* [cjh] Show category colors in the Kronolith summary.
* [cjh] Show current category color in category color options screen (Jan Kuipers &lt;jrkuipers@lauwerscollege.nl&gt;).
* [jan] Add Romanian translation (Eugen Hoanca &lt;eugenh@urban-grafx.ro&gt;, Marius Dragulescu &lt;mariusd@urban-grafx.ro&gt;).
* [jan] Add Print button for day, week, month views (mac).
* [jan] Clean up url creation and XHTML (mac).
* [jan] Add Norwegian Bokmaal translation (Torstein S. Hansen &lt;huleboer@techbee.no&gt;).
* [jan] Add Kronolith::addParameter().
* [jan] Add Lithuanian translation (Darius Matuliauskas &lt;darius@lnk.lt&gt;).
* [mac] Clean up url creation and XHTML.
* [jan] Add Simplified Chinese translation (Zhang Bo &lt;boozhang@sdb.ac.cn&gt;).
* [jan] Add Bulgarian translation (Miroslav Pendev &lt;miro@cybershade.us&gt;).
* [jan] Replace &lt;?= with &lt;?php echo, and remove the short_open_tags requirement.
* [jan] Add delete link to event view.
* [jan] Remove deprecated DB::isWarning() calls.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.1RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix broken image tag in day and week views.
* [jan] Fix &quot;New Category&quot; selection in event edit view.
* [jan] Add Arabic (Syria) translation (Platinum Development Team &lt;devteam@platinum-sy.net&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix some display bugs with recurring events in the sql driver (cjh).
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Fix a bug in the SQL driver preventing events from being displayed.
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix display of category colors in week and day views (Björn Tackmann &lt;bjoern.tackmann@consultico.de&gt;).
* [jan] Add Latvian translation (Ivars Stivrins &lt;ivars@kraslava.lv&gt;).
* [jan] Fix erroneous javascript in recurrence input fields of the event form (Bugs 403, 408).
   </notes>
  </release>
  <release>
   <version>
    <release>1.1.4</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Close XSS when setting the parent frame&apos;s page title by javascript (cjh).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0alpha</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Remote calendars are now parsed with the Horde_iCalendar library, which allows for much better iCalendar support, better handling of timezones, etc.
* [cjh] The month view no longer shows blank boxes for days in the grid that are outside of the current month - instead, it goes back into the previous month and forward into the next month however many days are showable.
* [cjh] Kronolith now includes the functionality, previously in Moment, to track attendees for events, send invitations, updates, and cancellations, and do scheduling based on freebusy information (Stuart Binge &lt;s.binge@codefusion.co.za&gt;).
* [cjh] Kronolith_Driver::move() added to prevent event IDs changing when moving between calendars, if possible.
* [cjh] GUIDs now only contain kronolith: and the event ID - sharename is not needed.
* [cjh] Event IDs are now 32-character unique strings, to be useable as GUIDs. The SQL table definition has changed; conversion scripts are in scripts/.
* [cjh] eventd now uses the Horde_Scheduler API&apos;s ability to serialize and save state; it&apos;s now meant to be run out of cron every minute (no more slow memory munching).
* [cjh] Show start and end times in event tooltips (Payton &lt;payton@repligen.com&gt;).
* [cjh] Fix events that recur every n months (where n != 1) on the same weekday when using the SQL driver.
* [cjh] Track addition, modification, and deletion of events with the Horde History:: API.
* [cjh] The event editor now switches the list of categories to match the calendar that you are adding the event to.
* [cjh] Show tooltips with event descriptions.
* [cjh] Show a legend mapping categories to colors (Jason Rust &lt;jrust@rustyparts.com&gt;).
* [mir] listEvents now supports an option to NOT do recurrence (useful for synchronizing with other systems).
* [cjh] First shot at a reminder daemon, written in PHP and using the Horde_Scheduler framework.
* [cjh] Cache free/busy information for an hour.
* [cjh] Add viewing of shared calendars side-by-side in the month view (j.huinink@wanadoo.nl).
* [cjh] Kronolith now generates free/busy information for any calendar that the viewer has PERMS_SHOW permission to. This can be used in, e.g., Outlook for scheduling meetings, etc.
* [cjh] Support for guest calendars.
* [cjh] Use the global shares editing page for changing/assigning share permissions.
* [mac] Add support for subscribing to remote iCalendar files.
* [cjh] Remove the Share header for now; takes up far too much space to communicate limited information.
* [mac] Add ability to display multiple calendars at a time.
* [cjh] Palm DateBook (PDB) import support.
* [mac] Add shared calendars support (Joel Vandal &lt;joel@scopserv.com&gt;).
* [cjh] Kronolith can now send iCalendar invitations to an event.
* [cjh] Import/Export of iCalendar data works for basic attributes now.
* [cjh] Use Horde::compressOutput() for output compression.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0beta</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] The guts of Kronolith_Event objects are now based on Horde_Date objects instead of timestamps.
* [cjh] Lots of date-related functions moved to the Horde_Date class.
* [jan] Add preference for address books to search for free/busy urls.
* [jan] Add special black-on-white styles for message printing.
* [cjh] Add title field to the basic search.
* [cjh] Allow searches for &quot;All Future&quot; events.
* [cjh] Add search functionality (Meilof &lt;meilof@gmail.com&gt;).
* [jan] Add access keys.
* [cjh] Add Kolab drivers (Stuart Bingë &lt;s.binge@codefusion.co.za&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Fix the menubar popup date navigator on the New Event screen.
* [cjh] Remove unused specialized notification listener.
* [cjh] Update icons.
* [jan] Fix importing of non-recurring events.
* [jan] Save categories of imported events.
* [cjh] Show different calendar views in tabs, not in the menu.
* [cjh] Show free/busy view only in the event screen.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0RC2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix recurring events from remote calendars (Bug #559).
* [cjh] The menubar Goto popup is now always on top of &lt;select&gt; boxes, even in Internet Explorer (Bug #822).
* [cjh] Menubar Goto link works on the Options screen again.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0RC3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Add All Past as an option on simple searches.
* [cjh] Add My Calendars menu entry.
* [cjh] Event exceptions are now correctly exported in iCalendar files.
* [cjh] Fix recurring events that recur on the same day of the month every n months where n &gt; 1 (Bug #907).
* [cjh] Fix month view for months starting on Sunday with the first displayed day set to Monday (Bug #907).
* [cjh] Show event state by CSS styling (Derek P. Moore &lt;derekm@hackunix.org&gt;).
* [jan] Correctly highlight the current view&apos;s tab (Bug #896).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] UIDs need to be stored in the History system with a kronolith: prefix and with the calendar so as not to confuse different instances of the same event (if two users both have a event on their seperate calendars, they should have unique histories for that event).
* [cjh] The My Calendars page now has a tool for generating Free/Busy URLs (Bug #571).
* [cjh] Pass Horde_Date objects instead of timestamps when exporting to iCalendar (Bug #950).
* [cjh] Clone events before changing their start dates to the current day in the day view so that the week view isn&apos;t wrong.
* [cjh] Fix an off-by-one error in the week view when the user views weeks starting on Sunday.
* [cjh] Add a preference for whether or not to show the background color for tasks shown on the calendar.
* [cjh] Don&apos;t produce invalid exception dates when exporting iCal files or when loading SQL events.
* [cjh] Users can now get to the category/color edit screen directly from the category legend, instead of having to find them in Horde&apos;s prefs.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Fix one page load delay in showing new/removing deleted shares on the My Calendars screen (Bug #1048).
* [cjh] Fix labeling of weekday columns in the Month view when the week starts on Monday and show_shared_side_by_side preference is on (Bug #1049).
* [cjh] Fix fatal error when in calendar/import API call (Sebastián Calero &lt;scalero@datadec.es&gt;).
* [cjh] Fix a week boundary problem that took you to the previous week when switching between the week and work week views.
* [cjh] Fix several errors in calculating the week number at the rollover between years.
* [cjh] Fix an off-by-one error in the work week view when the user views weeks starts on Sunday (Bug #1046).
* [cjh] Add PostgreSQL version of 2004-12-21_add_event_uid (Bug #1028).
* [cjh] Fix typo that prevented attendees from being saved (Bug #1019).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.2RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix free/busy views with some languages (Bug #1036).
* [cjh] Prevent infinite loops if events are set to recur weekly on no weekdays (Bug #1074).
* [cjh] Set iCalendar events with weekly recurrence to recur on the day of the week of the first recurrence if no BYDAY data is present (Bug #1074).
* [cjh] Make sure that event UIDs are properly set in iTip notifications (Bug #1153).
* [jan] Add Japanese translation (Hiromi Kimura &lt;hiromi@tac.tsukuba.ac.jp&gt;).
* [cjh] Check the completion status of tasks, not just their due date, before showing them on the calendar (Bug #947).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix portal block for missing events at the turn of the year (Bug #1337).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.3RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix browsing through work weeks in attendees view (Bug #1852, tasin@fhm.edu).
* [jan] Fix updating of attendee status in attendees view (Bug #1188).
* [jan] Don&apos;t show tasks without due dates in all timezones (Bug #514).
* [jan] Include attendees in iTip event invitations (Bug #1676).
* [jan] Fix generated HTML if no calendar has been selected.
* [cjh] Add a PostgreSQL upgrade script (Bug #1778).
* [cjh] Show the calendar selection dropdown if there are remote calendars regardless of number of shares (Bug #1640).
* [cjh] Separate buttons on attendees screen (kevin_myer@iu13.org, Bug #1635).
* [cjh] Use bind variables in the SQL drivers (selsky@columbia.edu, Bugs #1669, #1670).
* [jan] Send reminders in users&apos; languages (Bug #1654).
* [cjh] Don&apos;t leave events in the database with no recurrences left (Bug #1503).
* [cjh] Make sure that remote events can be edited for saving as new, and never show a delete button for them (Bug #1639).
* [cjh] Always use eventID, not eventIndex. Fixes problems with only one remote event showing up per day (Bug #1630).
* [jan] Fix free/busy generation on broken PHP CGI SAPIs (Bug #1599).
* [cjh] Set recurrence end date if present in iCal data (Bug #1365, #1582).
* [cjh] Alarms that are a calendar day or more in the future are now sent on time (Bug #1356)
* [jan] Catch errors if importing incomplete events (Bug #1429).
* [cjh] Fix display errors with overlapping repeating events and PHP4 (Bug #1200).
* [ben] Allow setting the default domain on attendee email addresses when checking for freebusy urls.
* [cjh] Treat webcal:// URLs as http:// for remote calendars (Bug #1480).
* [cjh] Fix problems with PostgreSQL and non-ISO date formats (Bug #1482).
* [jan] Workaround IE warning when entering Kronolith over HTTPS (Bug #910).
* [jan] Add shortcut icon (favicon.ico).
* [jan] Sort whole day events alphabetically (Bug #222).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Respect SMTP authentication settings when sending reminders and notifications (requires Horde 3.0.4).
* [jan] Include date in reminder message (Bug #1855).
* [jan] Fix time grids in free/busy view (Bugs #1557, #1868, tasin@fhm.edu).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.4RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix navigation popup with Safari browsers (t.zell@gmx.de, Bug #2447).
* [cjh] Fix infinite loop with some recurring events (Bug #2346).
* [cjh] Fix All Past and All Future searches (Bug #2257).
* [cjh] Be smarter about enforcing &quot;end before beginning&quot; check for am/pm users when creating an event than spans noon (Bug #1731).
* [jan] Sort search results by start date and show category colors.
* [cjh] Respect twenty_four preference in reminders script (Bug #1896).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.4</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Allow to import more than one event from iCalendar data at once.
* [cjh] Avoid loops and other errors by immediately failing nextRecurrence() checking for any event with a recurInterval of 0 (Bug #2709).
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.5</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix warnings with Internet Explorer on HTTPS connections.
* [jan] Fix reminder emails.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.6</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Close several XSS problems with calendar and event fields.
   </notes>
  </release>
  <release>
   <version>
    <release>2.0.7</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] SECURITY: Close arbitrary file inclusion in free/busy views.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.0RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] The calendar(s) to export data from are now configurable (Request #2330).
* [jan] Add Portuguese translation (Manuel Menezes de Sequeira &lt;Manuel.Sequeira&gt;).
* [cjh] Use HTTP_Request to retrieve Free/Busy information so we don&apos;t rely on allow_url_fopen.
* [cjh] Remove disabled PDB import code.
* [cjh] Fix display when only remote calendars are active (Bug #2777).
* [cjh] Fix alarms for recurring events.
* [ben] Add RSVP to iTip so Outlook will send a reply message when the invitation is accepted/declined/etc.
* [jan] Allow automatic sharing of new calendars with users&apos; groups (gauret@free.fr, Request #1366).
* [jan] Add preference to only retrieve event reminders for certain calendars (kevin_myer@iu13.org, Request #649).
* [jan] Always return to last screen after editing or deleting events.
* [jan] Allow to freely set event years.
* [jan] Add event status of &quot;Free&quot;.
* [jan] Add CLI script to import iCalendar/vCalendar data.
* [cjh] Deprecate the MCAL driver.
* [mas] Allow replacing a calendar with an imported one. (Bug #1364)
* [mas] Change any output of &lt;b&gt; and &lt;i&gt; tags to &lt;strong&gt; and &lt;em&gt; for better accessibility support.
* [cjh] Use CSS for all category colors instead of generating them inline.
* [cjh] Use Horde_Template for day and week view rows.
* [cjh] The length of time slots in the day and week views is now configurable (Bug #1952).
* [cjh] Add a tree block for showing current alarms.
* [jan] Add permissions to restrict number of events.
* [cjh] Show event owners in tooltips.
* [cjh] Fix assumptions about users being logged in when fetching free/busy information (tasin (at) fhm (dot) edu, Bug #1850).
* [jan] Add calendar popup window to side-by-side view to search for calendars and toggle their visibility.
* [jan] Add icon to calendar names to remove calendars from side-by-side view.
* [cjh] fb.php now accepts ?u= arguments as well as ?c=, for displaying a user&apos;s chosen free/busy calendars, allowing users control of which calendars block out free/busy time without changing the free/busy URL (kevin_myer@iu13.org, Bug #1683).
* [cjh] Add exists() method to calendar drivers for checking if events exist by UID (Roel Gloudemans &lt;roel@gloudemans.info&gt;).
* [jan] Send links in iTip requests to let users quickly reply to an invitation.
* [cjh] Add ics.php (also mirrored by an exportCalendar() API method), which can be used for integration with Sunbird, iCal, et. al. (srrafa@usc.es, Bug #917).
* [jan] Add preference to send email notifications to users when events have been added, edited, or deleted in their calendars.
* [cjh] Add a Year view (mbydalek@mobilemini.com) (Bug #1238).
* [jan] Use OPTGROUPs in calendar drop down list.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.0RC2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Show subscription URL for calendars in &quot;My Calendars&quot; overview (kevin_myer@iu13.org, Request #3256).
* [jan] Fix browser redirection after saving events.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.0RC3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix retrieving of free/busy URLs from Kolab servers (tokoe@kde.org, Bug #3450).
* [jan] Fix recurring events without end dates using the Kolab driver (tokoe@kde.org, Bug #2734).
* [jan] Allow to specify port and protocol of Kolab server for free/busy request (aseigo@kde.org, tokoe@kde.org, Request #2178).
* [jan] Improve attendees and contacts forms.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] There are now several guards against users being stuck with no selected calendars and no way to select one (Bug #3538).
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix updating attendee status from KOrganizer replies.
* [jan] Fix events of status &quot;free&quot; being included in busy information.
* [jan] Automatically add current user&apos;s free/busy information to meeting planner.
* [jan] Add 1.1 to 2.x upgrade script for Oracle.
* [cjh] Prevent listAlarms() from causing a fatal error if no calendar is open (Bug #3717).
* [jan] Update free/busy information on Kolab server after editing events (requires Horde 3.1.1) (tokoe@kde.org, Request #3654).
* [cjh] Honor time format and language preferences in email notifications (Bug #2064).
* [cjh] Add missing display_contact preference (Bug #3575).
* [cjh] Fix fatal error during first login of new users.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Don&apos;t show calendar creation form if multiple calendars are not allowed (Bug #3988).
* [jan] Add &quot;Save and Finish&quot; button to attendees popup (Request #1158).
* [jan] Add parameter to Upcoming Events portal block to limit number of displayed events (dorm@dorm.org, Request #3905).
* [jan] Allow adding of events if not using a permanent DataTree backend.
* [jan] Fix fatal error for new users on some sytems (Bug #3711).
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Set vEvent ORGANIZER to the event creator, not the calendar owner (kajtzu@basen.net, Bug #4527).
* [jan] Fix importing of events without end date and duration (Bug #4519).
* [jan] Correctly display recurring events spanning multiple days (Bug #4438).
* [jan] Fix recurrence end dates with SQLite backends (Bug #4219).
* [jan] Fix calculation of recurrence ends with imported and remote events (Bug #2813).
* [cjh] Consolidate the check for whether or not users can add events in the day and month views (Bug #4373).
* [jan] Fix alarms for recurring events in Kolab driver (michael.sheldon@credativ.de, Bug #4326).
* [jan] Show error message if imported file didn&apos;t contain events.
* [cjh] Fix the SQL types of several recurrence fields.
* [jan] Add categories from imported events to the user&apos;s categories.
* [jan] Add Slovenian translation (Duck &lt;duck@obala.net&gt;).
* [jan] Deal with attendee email addresses case insensitively.
* [jan] Don&apos;t consider events from remote calendars as busy time.
* [jan] Always try to return the correct event instance if requesting an event by its UID (Thorsten Schaub, Bug #1994).
* [cjh] Fix permissions for the calendar list in advanced search (Bug #4093).
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.4</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] SECURITY: Close arbitrary file inclusion in free/busy views.
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.5</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix character set encoding of exported vCalendar/iCalendar data.
* [jan] Fixed MS-SQL driver (Bug #5088).
* [jan] Add Catalan translation (Jordi Giralt &lt;projecte.k2@upcnet.es&gt;).
* [jan] Fix searching for non-ascii strings (Bug #4773).
* [cjh] Display partial hours in free/busy view (cbs@cts.ucla.edu, Request #4755).
* [cjh] Honor date_format preference in reminders and notifications (Bug #4726).
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.6</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Display attendees list correctly without a mail/compose method (Bug #5127).
* [cjh] Send iCalendar data as UTF-8 (Bug #5427).
* [jan] Fix duration of remote and imported full-day events (Bugs #4617, #4794).
* [jan] Fix recurring multiday events crossing a month border (Bug #5205).
* [jan] Fix duration calculation in edit form for events covering more than a month (Bug #5120).
   </notes>
  </release>
  <release>
   <version>
    <release>2.1.7</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] SECURITY: Fix privilege escalation in Horde API.
* [cjh] SECURITY: Fix missing ownership validation on share changes.
* [jan] Set the user&apos;s timezone in the free/busy information.
* [jan] Fix redirection after editing an event from the sidebar menu (Bug #5769).
   </notes>
  </release>
  <release>
   <version>
    <release>2.2.0alpha</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Add vCalendar 2.0 alarm export (munzli@olmero.ch, Bug #4851).
* [jan] Add Ukrainian translation (Andriy Kopystyansky &lt;anri@polynet.lviv.ua&gt;).
* [cjh] Inline PHP-generated javascript to avoid cross-domain leaking (Bug #5307).
* [cjh] Add a preference to not send notifications to the person who is adding/updating/deleting the event (steven.deboeck@excentis.com, Request #4770).
* [cjh] Add calendar/subscribe and calendar/unsubscribe methods for adding/ removing calendars to the currently displayed calendars (duck@obala.net).
* [cjh] Remove unneeded Kronolith_Driver::close method.
* [cjh] Fix error handling when moving events (thomas.jarosch@intra2net.com, Bug #5401).
* [jan] Show icon for private events (Request #5190).
* [jan] Allow to edit existing event attendees.
* [jan] Add links to delete exceptions from recurring events.
* [jan] Add recurrence types by day of year and weekday of year.
* [jan] Add recurrence durations by number of recurrences.
* [jan] Allow to edit exceptions from recurring events.
* [jan] Allow to specify attendees without email addresses.
* [jan] Allow to specify attendee names with the email addresses.
* [cjh] Link to remote URLs in iCalendar events, if present (Duck).
* [jan] Hide less important event settings in the edit form by default.
* [jan] Add support for the Horde_Alarm framework (requires Horde 3.2).
* [cjh] Add ContactAutoCompleter javascript to the attendees screen (Request #1635).
* [jan] Add month tab to free/busy view (Gunnar Wrobel &lt;wrobel@pardus.de&gt;, Request #4896).
* [cjh] Use extended Free/Busy information from Kolab (wrobel@pardus.de, Request #4869).
* [ben] Add daily agenda reminder (Request #4655).
* [cjh] Include event location in reminders (webmgr@muskingum.edu, Request #4771).
* [cjh] Use global proxy configuration for HTTP requests (Request #1039).
* [jan] Display holidays generated with the Date_Holiday package (Stephan Hohmann &lt;webmaster@dasourcerer.net&gt;, Request #3862).
* [cjh] Consider failing to find any attendees to update an error (Bug #4588).
* [cjh] Include a summary of which calendars were printed in print views (Request #3263).
* [jan] Add support for reading and saving events through external clients (requires Horde 3.2, d.bussink@student.utwente.nl, Request #3032).
* [jan] Limit number of events in portal summary block (Duck &lt;duck@obala.net&gt;).
* [cjh] Add a live search to the calendar panel (Request #4607).
* [mas] Conform to WCAG 1.0 Priority 2/Section 508 accessibility guidelines. (Request #4080)
* [cjh] Fix Day and Week display of events that overlap with an event that doesn&apos;t start all the way to the left (Bug #2967).
* [cjh] Move calendar selection/deselection to a collapsible panel.
* [jan] Allow to set user name and password for remote calendars (tevans@tachometry.com, Request #3696).
* [jan] Allow to edit remote calendars (tevans@tachometry.com, Request #3696).
* [cjh] Move almost all hiding of elements during printing to CSS classes.
* [cjh] Allow the listEvents api call to list events from multiple calendars, and filter by whether or not events have an alarm (Ben Klang &lt;ben@alkaloid.net&gt;, Bug #4104).
* [mjr] Support for removing user data from backend when user is removed from Horde.
* [jan] Add private flag.
* [cjh] Add a default alarm preference.
* [cjh] Always include X-WR-CALNAME in iCalendar exports (Request #3618).
* [jan] Add multidomain support for Kolab servers (tokoe@kde.org, Request #3579).
* [jan] Allow delegation of events.
* [cjh] Dynamic switching between Display, Edit, and Delete screens.
* [jan] Add preference to force day and week views to selected hours.
* [cjh] Make the duration input a text field instead of a 365-day dropdown.
* [mdj] Add support for split read/write database.
* [mdj] Add failover support for SQL backend.
* [cjh] Use partial page fetches to update the main &quot;page&quot; div if the browser supports the necessary JavaScript.
   </notes>
  </release>
  <release>
   <version>
    <release>2.2.0RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Don&apos;t allow to modify private events throught the API (Bug #5736).
* [jan] Don&apos;t overwrite event owner when changing events over WebDAV (Bug #5736).
* [jan] Implement WebDAV DELETE.
* [cjh] Event exceptions are now correctly reflected when subscribing to Kronolith calendars from Apple iCal.
* [cjh] When adding attendees, parse email groups and add each member individually (Bug #5812).
* [cjh] External events are now enabled/disabled by individual category, such as showing a particular tasklist on your calendar, but not all tasks (Request #4581).
* [jan] Add SQL upgrade script.
* [cjh] Let the &quot;show&quot; URL of a calendar always show that calendar, instead of toggling whether or not it is displayed.
* [cjh] Fix permissions granted to remote calendar subscribers on calendars that do not have guest permissions.
* [cjh] Fix generation of UIDs with PHP 5.2+.
* [cjh] Add preferences for showing event times and locations in screen views, print views, both, or neither (Request #1982).
* [cjh] Run attendee email address through MIME::encodeAddress() before validating them (Bug #5670).
   </notes>
  </release>
  <release>
   <version>
    <release>2.2.0RC2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] SECURITY: Fix privilege escalation in Horde API.
* [cjh] SECURITY: Fix missing ownership validation on share changes.
* [cjh] Fix month links in the year view when the first day of the month is on the first day of the week (hofsteda@gmail.com, Bug #6172).
* [cjh] Make sure calendar info boxes show the full remote URL (Bug #6134).
* [jan] Fix importing of events with an existing UID (Bug #6122).
* [cjh] Fix timestamps in portal block event links.
* [mjr] Fix issue that caused recurring events on 2/29 to appear on 3/1 when recurrence type is HORDE_DATE_RECUR_YEARLY_DATE.
* [cjh] If JavaScript is available, open the Attendees window set to the current event&apos;s date (Request #5813).
* [cjh] Fix display of events that end at 00:00 at a non-zero second (Bug #6047).
* [cjh] Fix handling of local names in attendees.php (m.gabriel@das-netzwerkteam.de, Bug #6041).
* [cjh] Fix inline calendar search in the calendar panel.
* [cjh] New share management UI that doesn&apos;t require JavaScript.
   </notes>
  </release>
  <release>
   <version>
    <release>2.2.0RC3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [cjh] Apply fix for http://dev.rubyonrails.org/ticket/11473 to prototype.js (Request #6590).
* [cjh] In WebDAV PUT operations, only look for existing events on the calendar being uploaded (Bug #6617).
* [cjh] Add an upgrade script for the new SQL share driver (Request #6109).
* [cjh] Use json_encode and json_decode if they are available (Bug #6457).
* [cjh] Use the first matching free/busy URL if more than one is found (almarin@um.es, Request #6638).
* [cjh] Allow subscribing/unsubscribing from external calendars through the API (duck@obala.net, Request #6626).
* [jan] Add another directory level for calendar owners to the WebDAV interface.
* [jan] Cut off categories at 80 characters to save them correctly (Bug #5211).
* [gwr] Fixed removal of recurrence in the Kolab driver.
* [jan] Show full title in email alarms (Bug #6510).
* [jan] Add export of single events.
* [gwr] Fixed History support in the Kolab driver.
* [cjh] Don&apos;t report cancelled events as busy (m.gabriel@das-netzwerkteam.de, Bug #6376).
* [cjh] Show who created or made the last change to an event along with the date (Request #6305).
* [cjh] Make sure event time and location are shown in the day and week views (Bug #6158).
* [cjh] Include Location and Attendee information in the plain-text portion of iTip messages (almarin@um.es, Request #6271).
* [jan] Add Turkish translation (METU &lt;horde-tr@metu.edu.tr&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>2.2.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Identify the correct event when using attend.php to update invitations (Bug #6606).
* [cjh] Improve resource usage in datatree_to_sql share migration script (Bug #6740).
* [jan] Decode user names and passwords when editing remote calendars.
* [cjh] Ensure that event_category is always a string (Bug #6696).
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.0RC1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Send correct iTip notifications when deleting recurring event instances (Bug #6636).
* [mjr] Add support for embedding calendar widgets on external websites.
* [jan] Log moving of events in the history backend (Bug #3207).
* [jan] Fix listing alarms of recurring events crossing day boundaries (Bug #7035).
* [jan] Fix deleting all events over WebDAV (Bug #7005).
* [jan] Add Atom feeds.
* [jan] Fix encoding of holiday names.
* [jan] Add Estonian translation (Alar Sing &lt;alar.sing@err.ee&gt;).
* [jan] Consider RECURRENCE-ID attributes in iCalendar data.
* [cjh] Fix a problem with the put() API call and events that already exist (almarin@um.es, Bug #7088).
* [jan] Fix importing iCalendar events with only a single recurrence exception (guyzdm@gmail.com, Bug #7068).
* [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV &lt;xabier.arrieta@ehu.es&gt;).
* [mjr] Add support for maintenance tasks and add a task for purging old events.
* [jan] Fix future events not being received under certain circumstances (Bugs #6946, #6966).
* [jan] Correctly sort recurring events (develop@kristov.de, Bug #7037).
* [jan] Fix display of recurring events crossing midnight in the portal block (develop@kristov.de, Bug #7036).
* [jan] Fix agenda emails containing wrong events.
* [mjr] Remove user permissions on all shares when deleting a user.
* [jan] Fix warning when importing events through the API (Bug #6865).
* [cjh] Be case insensitive when comparing attendees (aloyse.gilbert@gmail.com, Bug #6833).
* [jan] Use smaller icons for private events.
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.0</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Change group field in shares table to work with LDAP groups (Bug #6883).
* [jan] Fix user name conversion with user hooks in the calendar panel (Bug #7366).
* [gwr] Fixed handling of free events in the Kolab driver (noethen@uni-paderborn.de, Bug #7192).
* [jan] Differentiate between days with events and days with busy events in the year view.
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.1</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Render contact autocompletion list on top of free/busy blocks (Bug #7273).
* [jan] Save recurrence exceptions when copying events (Bug #7689).
* [jan] Prevent warnings if trying to add address lists as attendees (Bug #7834).
* [jan] Fix start and end time calculation of multi-day events (Bug #7788).
* [jan] Wrap URL in calendar information in IE7 (almarin@um.es, Bug #8043).
* [jan] Fix &quot;Date-string has wrong format&quot; error with holidays (Bug #7961).
* [jan] Use improved translation support in Date_Holidays (requires 0.21.0 now, Bug #7272).
* [jan] Empty view cache when changing calendar selection (stpierre@nebrwesleyan.edu, Bug #7879).
* [mjr] Fix category CSS being included on embedded widgets.
* [cjh] Work around BC break with Horde versions before 3.2 (Bug #7820).
* [jan] Allow to manually change attendee responses (paul@carnie.com.au, Request #7443).
* [jan] Fix linking to last week across certain year boundaries (Bug #7827).
* [jan] Add script to import events from SquirrelMail database.
* [cjh] Add private-***.png graphics to Tango and Silver themes (Bug #7531).
* [cjh] Fix listing of users in the calendar/browse API call.
* [jan] Set timezone per user preference and fix recurring events when sending reminders through Kronolith (develop@kristov.de, Bug #7038).
* [cjh] Add a PostgreSQL-specific upgrade script for 2.2 to 2.3 (michael.menge@zdv.uni-tuebingen.de, Bug #7454).
* [mms] Upgrade prototype.js to v1.6.0.3.
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.2</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [mms] Upgrade prototype.js to v1.6.1.
* [jan] Allow to add address lists as attendees through the address book popup (Bug #7834).
* [jan] Fix exporting certain weekday recurrence rules to iCalendar (lst_hoe02@kwsoft.de, Bug #8501).
* [jan] Export recurrence end dates as date-time values in iCalendar data to improve compatibility with external clients (Bug #7846).
* [jan] Fix synchronization with output compression enabled (Bug #7769).
* [jan] Add configuration whether to show user drop down list or text field in permissions dialog (requires Horde 3.3.5).
* [jan] Propagate the &apos;modified&apos; API method (Request #8274).
* [cjh] Fix the signature of the kronolith/import API method (rpolli@babel.it, Bug #8309).
* [jan] Correctly create all-day events if using the all-day link in the day view (stpierre@nebrwesleyan.edu, Bug #8220).
* [jan] Fix rendering of all-day events (Bug #8176).
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.3</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Fix editing URLs of remote calendars.
* [gwr] Fix recurring weekly events with fixed number of occurences but multiple incidences per week (kolab/issue3846).
* [gwr] Fix recurring weekly events with intervals &gt; 1 (Bug #8546).
* [jan] Optimize event link generation (patrick.abiven@apitech.fr).
* [jan] Fix Oracle SQL scripts.
* [jan] Fix charset of ajax responses.
* [jan] Add Croatian translation (Matej Vela &lt;matej.vela@carnet.hr&gt;).
* [jan] Speed up listing alarms (patrick.abiven@apitech.fr, Request #8638).
* [jan] Simplify and improve portability of listing events without date limits in the SQL driver (Bug #8590).
* [mjr] Fix issue that caused the default alarm time to be applied to listTimeObjects events (Bug #8588).
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.4</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Delete Horde alarms when resetting an event alarm.
* [jan] Set an alarm to one minute, if users try to set an alarm without time.
* [gwr] Fix editing the start date of recurring events (kolab/issue3885).
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.5</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [gwr] Fix moving events between calendars for the Kolab driver (Bug #7932)
* [jan] Import and export the privacy field in CSV data (Request #9139).
* [mjr] Send an iTip REQUEST, not ADD, when updating an existing event (Bug #9131).
* [jan] Fix all-day events sometimes showing up an day early too (Bug #9012).
* [mjr] Sort exception list before displaying (Request #7688).
* [mjr] Do not remove history entries when removing user data (Bug #8755).
   </notes>
  </release>
  <release>
   <version>
    <release>2.3.6</release>
    <api />
   </version>
   <stability>
    <release />
    <api />
   </stability>
   <date />
   <license uri="" />
   <notes>
* [jan] Add upgrade scripts for next-generation SQL share driver.
* [jan] Export recurrence exceptions in a more portable way.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0alpha1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2011-03-09</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* First alpha release for Horde 4.
* [jan] Add configuration whether to load other applications in an IFRAME.
* [jan] Provide default configuration files instead of .dist versions.
* [jan] Send a subscription link with the notification about shared calendars if necessary.
* [jan] Default calendars no longer have the user name as the ID.
* [jan] Create a default calendar if the user doesn&apos;t own any yet.
* [jan] Add CalDAV client support (Request #8525).
* [jan] Send agenda emails with HTML part and convert to Horde_View.
* [mjr] More complete handling of recurring event exceptions when dealing with the iCalendar format (Request #9091).
* [jan] Add remote calendars to the possible list of calendars for free/busy information.
* [jan] Send alarm and iTip notifications with HTML part and convert to Horde_View.
* [jan] Add option to notify users about calendar permission changes.
* [mjr] listTimeObject calendars are now viewable independently in the calendar portal blocks (Request #8530).
* [mjr] Recurring event exceptions are now indicated as such in the UI.
* [mjr] Deleting a recurring event now also deletes all exceptions to that event.
* [mjr] Add support for inline maps to the Ajax interface.
* [jan] Add preference to limit the events per day in the month view.
* [jan] Add system calendars (Request #2059).
* [jan] Add URL field to events.
* [jan] Add task management capabilities to the Ajax interface.
* [jan] Manage holidays like any other calendar driver.
* [mjr] Add resource scheduling.
* [jan] Integrate tasks into Ajax interface (Gonçalo Queirós &lt;mail@goncaloqueiros.net&gt;).
* [mjr] Extend listTimeObjects API to include optional links and icons.
* [jan] Allow searching of any type of calendar and improve searching of recurring events.
* [cjh] With only SHOW permissions, display event titles as &quot;busy&quot;.
* [mjr] Replace categories and keywords by tags.
* [jan] Set colors per calendar (Request #7480).
* [jan] Add individual notification methods for single events (Alfonso Marín Marín &lt;almarin@um.es&gt;).
* [jan] Add Ajax interface.
* [jan] Store events in UTC and convert to the user&apos;s timezone on the fly.
* [jan] Remove alarm reminder code.
* [jan] Change listEvents API method to return keys as dates instead of timestamps.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0beta1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2011-03-16</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Only load external events in IFRAME if configured.
* [jan] Fix retrieving event UIDs without date limit (Simon Bühler, Bug #9651).
* [jan] Fix saving display status of other applications&apos; calendars (Bug #9636).
* [mjr] Add migration for converting existing event categories to tags.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0RC1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2011-03-23</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* First release candidate for Horde 4.
* [jan] Update installation and upgrade instructions.
* [jan] Fix custom event alarm settings in traditional view (Bug #9154).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0RC2</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2011-03-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* Second release candidate for Horde 4.
* [jan] Fix javascript error when viewing events with desktop notifications (Bug #9727).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.0</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-04-06</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* First stable release for Horde 4.
* [jan] Fix application-specific permission checks (Bug #9786).
* [jan] Fix fatal error when using the max_events permission (Bug #9784).
* [mjr] Datatree share to SQL upgrade script refactored for Horde 4.
* [mjr] Add migration for mysql specific geospatial fields (Bug #9758).
* [jan] Set default alarm in dynamic view (Bug #9752).
* [jan] Move all executable scripts to bin/ and prefix with kronolith-.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.1</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-04-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix calendar embedding.
* [jan] Don&apos;t store all task lists in the session.
* [jan] Fix new task lists not showing up until next login (Bug #9814).
* [mjr] Fix broken event alarm links in sidebar (Bug #9897).
* [mjr] Fix drag/drop editing of recurring events (Bug #9880).
* [jan] Fix undefined function on Windows (Bug #9916).
* [jan] Support adding and editing of CalDAV events in dynamic view (Bug #9865).
* [mjr] Allow migrations to complete despite of missing shares.
* [jan] Remove debug code in Ajax library (Bug #9818).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.2</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-05-03</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Don&apos;t show event edit links if user doesn&apos;t have edit permissions on any calendar.
* [jan] Fix parsing of recurrence end date in dynamic view (Bug #10025).
* [jan] Fix displaying of new tasks in new task lists.
* [jan] Fix displaying colors of task lists.
* [jan] Delete tasks from tasks view when deleting tasks lists.
* [jan] Don&apos;t export multi-day events as multiple events to iCalendar data (Bug #10007).
* [jan] Fix dragging tasks in the dynamic view.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.3</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-05-18</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Add header for timeobjects calendars.
* [jan] Fix date picker in advanced search form (Bug #10039).
* [mjr] Remove visible exceptions when deleting recurring events (Bug #10013).
* [mjr] Fix issue causing listTimeObject calendars to not appear (Bug #10012).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.4</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-06-14</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix holidays being off with certain system timezones (Bug #9989).
* [jan] Only highlight days in the mini calendar that are currently displayed (Bug #10048).
* [jan] Fix advanced search with empty search criteria (Bug #10038).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.5</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-07-05</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Update task due date in interface after dragging a task (Bug #10001).
* [jan] Correctly sort events in portal block or widget if only displaying a single calendar (Bug #10099).
* [mjr] Allow syncing of multiple owner-owned calendars (Request #8734).
* [jan] Don&apos;t show calendar drop down in event form without delete permissions (Bug #10201).
* [jan] Don&apos;t change event creator when saving events.
* [jan] Fetch events immediately after saving remote calendar.
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.6</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-08-02</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Display event time in dynamic agenda/search view.
* [jan] Don&apos;t load all shares with requested permissions from the backend if $conf[&apos;share&apos;][&apos;hidden&apos;] is enabled.
* [jan] Improve exporting all-day events to Funambol clients.
* [mjr] Fix removing an exception from a recurrence series (Bug # 10365).
* [jan] Close session while listing events to speed up parallel loading from different calendars.
* [jan] Share list of displayed task lists with Nag (requires Nag 3.0.3).
* [jan] Don&apos;t show import/export link in preferences if using the dynamic view.
* [mjr] Force ActiveSync device reset after sync_calendars pref is changed (Request #10342).
* [jan] Try to work with remote servers even if they don&apos;t support a recent WebDAV protocol version.
* [jan] Support updating attendees from vCalendar 1.0 iTip responses.
* [jan] Fix sending invitations to attendees from traditional view.
* [jan] Fix organizer attribute when exporting to vCalendar 1.0.
* [mjr] Fix issue that prevented synching when no sync_calendar pref was set (Bug #10329).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.7</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-08-05</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix updating attendees (Bug #10411).
* [jan] Fix error if Nag is not installed (Bug #10406).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.8</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-08-17</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix deleting resources (Bug #10427)
* [jan] Support snoozing alarms with Sundbird/Lightning (Request #7470).
* [jan] Import VALARM components from iCalendar 2.0 data (Request #6665).
* [jan] Fix exporting all-day events to Funambol clients (Thomas Ilsche &lt;git@zulan.net&gt;, Bug #10349).
* [jan] Fix creating events from dynamic view on Windows (Bug #9916).
* [mjr] Fix displaying of freebusy data in dynamic view (adominguez@cne.gob.ve, Bug #10347).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.9</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-08-30</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix fatal error while searching if hitting certain recurring events.
* [jan] Fix exporting events with snoozed alarms (Bug #10438).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.10</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-09-21</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix opening events from agenda view.
* [mjr] The current default calendar is always included in the sync_calendars preference.
* [mjr] Ensure exception gets start and end times when created from month view (Bug #10496)
* [jan] Update group permission when changing group down list in basic permissions (Bug #10482).
* [jan] Fix race condition when editing group permission in basic permission screen (Bug #10482).
* [mjr] Fix removeUserData API (Bug #10241).
* [jan] Fix deleting events with a WebDAV client (Bug #10478).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.11</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-11-02</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix alarms for recurring events (Bug #10678).
* [mjr] Allow filtering listTagInfo results by user.
* [jan] Fix uncompleting tasks in dynamic view (Carlos Timóteo, Bug #10653).
* [cjh/jan] Improve design.
* [mjr] Fix displaying resources when no attendees are present (Bug #10507).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.12</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-11-22</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Show status of events in agenda messages (Request #10517).
* [mjr] Fix selecting custom time from time selection drop down (Bug #10737).
* [jan] Always use fresh Horde_Http_Client instances for remote calendars (Bug #10740).
* [jan] Add confirmation screen when deleting events in dynamic view (Request #10725).
* [jan] Fix holidays disappearing from month view if deleting another event.
* [jan] Fix resetting attendee response status when saving events in dynamic view (Bug #10620).
* [jan] Support CalDAV servers that don&apos;t use DAV: as the default namespace (christof@buergi.lugs.ch, Bug #10716).
* [jan] Allow to view and create copies of holiday events (Bug #10650).
* [jan] Don&apos;t show import/export tabs in dynamic view if disabled (Bug #10705).
* [jan] Don&apos;t show option to share with everyone in basic permissions if disabled (piper@hrz.uni-marburg.de, Bug #10706).
* [mjr] Only set ORGANIZER field if the event is a group meeting (Bug #10697).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.13</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2011-12-13</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Hide disabled calendar sections (Bug #9815).
* [gwr] Fixed recurrence handling with the Kolab backend.
* [gwr] Fixed naming of the default calendar for the Kolab backend.
* [gwr] Fixed deleting events with the Kolab backend.
* [gwr] Fixed migrations for SQLite as database backend.
* [mjr] Fix keyboard navigation of time entry fields in dynamic view (Bug #10799).
* [mjr] Fix parsing display_cal variables for internal calendar links on various blocks and embedded imples (Bug #10767).
* [mjr] Fix adding events directly to a resource&apos;s calendar (Bug #10827).
* [mjr] Fix regression introduced in 3.0.12 that broke checking a Resource&apos;s availability in certain cases (Bug #10806).
* [jan] Don&apos;t fail on empty CalDAV calendars (christof@buergi.lugs.ch, Bug #10739).
* [jan] Check permissions when building application drop down (sberthelot@emisfr.com, Bug #10811).
* [gwr] Fix saving Kolab events.
* [jan] Update Japanese translation (Hiromi Kimura &lt;hiromi@tac.tsukuba.ac.jp&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.14</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-01-17</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix bug that could cause incorrect event exceptions to be created when drag and dropping events in month view.
* [jan] Fix page titles not always updating correctly.
* [jan] Display event time in dynamic view if requested (Request #9866).
* [jan] Only show end time if different from start time.
* [jan] Fix day sorting in agenda view.
* [jan] Sort user and group names in permission screen (Request #10896).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.15</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-01-31</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Search complete names and addresses when auto-completing attendees.
* [jan] Fix syntax error in migration script (Bug #10902).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.16</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-03-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Use preferred date format in week and agenda views (Bug #11089).
* [jan] Fix fatal error if no external calendars are available (Bug #11079).
* [jan] Fix positioning of events on DST changing dates (Bug #11070).
* [mjr] Fix bug that caused time shift of all day events when imported from ActiveSync devices for users in certain timezones (Bug #10991).
* [mjr] Correctly deal with deleted calendars in sync clients (Bug #10969).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.17</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-05-14</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] SECURITY: Fix XSS vulnerabilities in tasks view and search view (Bug #11189).
* [jan] Update Italian translation (Massimo Malabotta &lt;mmalabotta@units.it&gt;).
* [jan] Improve print styles.
* [jan] Catch if external client doesn&apos;t send LAST-MODIFIED attributes (Bug #11130).
* [jan] Don&apos;t stop agenda script if there is an error with a single user (Bug #11129).
* [jan] Update Hungarian translation (Zoltán Németh &lt;nemeth.zoltan@etit.hu&gt;).
* [jan] Show round corners only on the start and end of multi-day events (Request #11067).
   </notes>
  </release>
  <release>
   <version>
    <release>3.0.18</release>
    <api>3.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-05-14</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mms] Fix permissions checking in the &apos;path_delete&apos; API call.
* [mms] SECURITY: Fix XSS vulnerabilities in the portal blocks.
* [mjr] Fix setting permissions in dynamic mode while $conf[share][world] is false (Bug #11359).
* [mjr] Fix issue causing broken alarm values from being imported from certain ics files.
* [rla] Fix sender of appointment notification (Bug #11198).
* [mjr] Use SSL for map providers if current connection is SSL (Request #11193).
* [jan] Don&apos;t show location of private events (Bug #11235).
* [jan] Fix exporting multi-all-day events to iCalendar.
* [jan] Update Turkish translation (İstanbul Technical University).
* [jan] Update Swedish translation (Jakob Alvermark &lt;jakob.alvermark@bsdlabs.com&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.0beta1</release>
    <api>4.0.0beta1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2012-08-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Add quick task adding to dynamic view.
* [rla] Fix sender of appointment notification (Bug #11198)
* [mjr] Fix tagging in traditional interface.
* [rla] Make system shares browseable in WebDAV (Request #10998).
* [jan] Make calendar lists collapsible (Request #10865).
* [jan] Delay calendar list loading to speed up initial display.
* [mjr] Implement resource scheduling in dynamic view (Request #9774).
* [mjr] Fix issue that could cause incorrect freebusy data to be displayed in certain circumstances.
* [mjr] Prompt to send updates when modifying an event with attendees (Request #10724).
* [mjr] Add heatmap to year view (Request #10658).
* [mjr] Implement proper editing and deleting of recurrence series and exceptions in ajax view (Request #9926).
* [jan] Remove print buttons.
* [jan] Add work week view to dynamic interface (rsalmon@mbpgroup.com, Request #10519).
* [jan] Support importing of iCalendar events with non-local timezones (Request #7156).
* [jan] Include timezone information when exporting events to iCalendar (Request #7156).
* [jan] Allow to set individual timezones for each event (Request #10727).
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.0beta2</release>
    <api>4.0.0beta1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2012-10-12</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Synchronize tags with Kolab categories.
* [mjr] Improvements to resource calendar handling.
* [gwr] Mark the initial default share as such with the Kolab backend.
* [gwr] Always mark the initial share as default calendar.
* [jan] Fix attendees button in traditional view.
* [jan] Fix sending alarm emails.
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.0RC1</release>
    <api>4.0.0beta1</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2012-10-27</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Show completed future tasks in complete category, not in future category (Bug #11562).
* [jan] Fix exporting of recurring events with exceptions from Kolab backends.
* [jan] Fix export links for calendars (Bug #11576).
* [jan] Fix broken Apple iCal behavior with exception dates (Evert Pot &lt;evert@rooftopsolutions.nl&gt;).
* [jan] Use more compatible message format for iTip notifications (Bug #9854).
* [jan] Fix free/busy retrieval on Kolab.
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.0</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-10-30</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Update Polish translation (Krzysztof Kozera &lt;krzysztof113@o2.pl&gt;).
* [jan] Update Dutch translation (Arjen de Korte &lt;arjen+horde@de-korte.org&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.1</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-11-07</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix migration of exceptionoriginaldate field (Bug #11654).
* [jan] Fix generating calendar names when exporting non-internal calendars to iCalendar.
* [jan] Fix authentication to remote calendars (Bug #11643).
* [jan] Fix incorrect nesting of VTIMEZONE components when exporting to iCalendar (Bug #11636).
* [jan] Fix fatal error when moving non-recurring events with resources (Bug #11629).
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.2</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2012-11-27</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Use Kolab modification and creation dates in the UI (Bug #11591).
* [jan] Try to translate holiday drivers (Request #11755).
* [jan] Fix timezone when reading events from Kolab (Bug #11695).
* [jan] Use encoded UIDs as IDs in Kolab driver.
* [jan] Fix saving of events if no calendar has been loaded yet.
* [mjr] Fix importing events from ActiveSync with empty descriptions in EAS version 2.5
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.3</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-01-10</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix setting default start time in new event dialog of basic view (Bug #11861).
* [jan] Fix saving alarm methods to Kolab backend (Thomas Jarosch &lt;thomas.jarosch@intra2net.com&gt;, Bug #11880).
* [jan] Update Basque translation (Ibon Igartua &lt;ibon.igartua@ehu.es&gt;).
* [jan] Fix moving events between calendars (Bug #11830).
* [jan] Fix fatal error on recurring events with custom timezone (Bug #11587).
* [jan] Fix double owner name on shared calendars.
* [jan] Use default Kolab folder for default calendar preference.
* [jan] Mark Kolab folder as default when changing default calendar preference.
* [jan] Defer navigation in dynamic view until environment has been initialized.
* [jan] Fix receiving resource calendars in dynamic view (Bug #11776).
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.4</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-02-12</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Update alarms, resources, and tags when deleting Kolab events (Bug #11988).
* [jan] Update French translation (Paul De Vlieger &lt;paul.de_vlieger@moniut.univ-bpclermont.fr&gt;).
* [jan] Fix some issues with workweek views if first day of week is Sunday (Bug #11973).
* [jan] Fix adding holiday calendars if not using English locale (Bug #11961).
* [jan] More robust date parsing during event importing (Bug #11916).
* [jan] Always export year numbers with four digits to CSV (Request #11917).
* [jan] Fix JavaScript error if Nag is not installed.
   </notes>
  </release>
  <release>
   <version>
    <release>4.0.5</release>
    <api>4.0.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-05-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Don&apos;t throw error on importing events with unknown timezones (Bug #11688).
* [jan] Don&apos;t send notifications for all recurrence exceptions when deleting events.
* [jan] Only send update notifications for local calendars.
* [jan] Re-enable users in drop-down list after revoking permissions (Bug #12000).
* [jan] Fix exporting events of a certain time span (piper@hrz.uni-marburg.de, Bug #12074).
* [mjr] Always populate the meetingstatus property in ActiveSync requests  to avoid issues with some versions of iOS (Bug #12056).
* [mjr] Fix deletion of resource events after deleting resource (Bug #12034).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.0beta1</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <date>2013-05-07</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Add CalDAV server support (Request #4267).
* [jan] Use Horde_Dav for accessing remote calendars.
* [mjr] Expose Kronolith_FreeBusy::get() via the external API.
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.0beta2</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <date>2013-05-14</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix incorrect dependencies.
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.0RC1</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>stable</api>
   </stability>
   <date>2013-05-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix editing of events per CalDAV if client sends LAST-MODIFIED attribute (Bug #12244).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.0</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-06-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Add help text for CalDAV usage.
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.1</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-06-18</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix setting RECURRENCE-ID field when exporting ics file (Bug #12368).
* [jan] Fix propagating calendar URLs if import/export is turned off.
* [mjr] Add API methods for using history modification sequences.
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.2</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-07-16</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Display CalDAV URL of system calendars and tasklists (Bug #12342).
* [jan] Fix system calendar listing via WebDAV.
* [rla] Add system calendar support for Kronolith CalDAV access (Request #12342).
* [mjr] Fix automatically adding organizer as attendee in dynamic view.
* [mjr] Prompt for sending cancellation iTip when deleting an event (Bug #12415).
* [rla] Properly display system-owned calendars when browsing DAV (Bug #12325).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.3</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-08-27</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix inconsistent handling of all-day events (Bug #12627).
* [mjr] Fix infinite loop for Kolab driver when event has recurrence (Bug #12160, Thomas Jarosch &lt;thomas.jarosch@intra2net.com&gt;).
* [jan] Fix fatal errors if DAV support is disabled (Bug #12481).
* [jan] Fix synchronization of shared events in Kolab driver (Thomas Jarosch &lt;thomas.jarosch@intra2net.com&gt;, Bug #12585).
* [jan] Link to CalDAV help text from calendar dialog.
* [mjr] Fix requesting changes by modification sequence (Bug #12508, Thomas Jarosch &lt;thomas.jarosch@intra2net.com&gt;).
* [mjr] Fix subscribing to internal calendars via subscription URL (Bug #12495).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.4</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2013-10-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] SECURITY: Protect against CSRF attacks on share permissions form (Bug #12804, CVE-2013-6365).
* [jan] SECURITY: Fix XSS vulnerabilities when deleting calendars and resources.
* [jan] Fix edge case that allowed to enter start time after end time (Bug #12752).
* [mjr] Expire fb cache when fb_cals preference changes (Bug #12714).
* [jan] Fix setting DTEND in iCalendar data if event has a timezone (Bug #12693).
* [mjr] Fix importing new ActiveSync events created on the client with recurrence.
* [mjr] Fix some issues with recurring event exceptions due to improper timezone handling (Bug #12630).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.5</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-03-10</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix triggering alarms for cancelled events (Bug #12928).
* [jan] Update Danish translation (Erling Preben Hansen &lt;erling@eph.dk&gt;).
* [mjr] Fix exporting recurring events with no recur_end value to CSV.
* [mjr] No longer include AIRSYNCBASEBODY when exporting for ActiveSync if there is no description.
* [mjr] Properly set event status to Cancelled on Resource calendars when the original event status is set to Cancelled.
* [mjr] Fix updating free/busy display when updating event times (Bug #12676).
* [mjr] Fix issue that could cause calendar sync to break when creating an exception on EAS versions &lt; 14.0
* [jan] Fix rounding of start time when dragging events (Bug #11904).
* [mjr] Fix fatal error when searching if Holiday driver is disabled (Bug #12870).
* [jan] Ignore iCalendar alarms without action, and use first, not last alarm (Bug #12865).
* [mjr] Fix incorrect case comparison when synchronizing tags with Kolab (Bug #12770).
* [mjr] Honor recurrence-id range values when deleting recurring events (Bug #12746).
* [mjr] Fix deleting and sending iTip notifications for recurring events (Bug #12746).
* [jan] Fix calculation of work week start if on a weekend.
* [jan] Fix deleting calendars with exceptions to recurring events.
* [jan] Fix fatal error if recurrence exceptions have timezones set (Bug #12801).
   </notes>
  </release>
  <release>
   <version>
    <release>4.1.6</release>
    <api>4.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-07-07</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix history not always returning the last modification time of an event (Bug #13113).
* [jan] Support timezone aliases when importing events (Bug #13100).
* [mjr] Honor the no_sharing configuration option in dynamic view (Bug #13002).
* [mjr] Fix issue that could remove all events from shared calendars if a user with Horde_Perms::EDIT on that calendar is removed via the removeUserData API (Bug #12524).
* [jan] Fix TRIGGER generation if alarm value is negative (Bug #13064).
* [jan] Update Korean translation (Deokgon Kim &lt;dgkim@dgkim.net&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0alpha1</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2014-05-05</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Gracefully handle import errors in dynamic interface (Bug #11127).
* [mjr] Show reservee of a resource in resource&apos;s event description (Request #13037).
* [mjr] Add resource_management permission (Request #13049).
* [jan] Allow to synchronize shared calendars via CalDAV (Request #12380).
* [jan] Add script to import events from Open-Xchange.
* [mjr] Fix various issues with alarms for recurring events.
* [jan] Add calendar legend to print output.
* [jan] Make SQL backend compatible with Oracle.
* [mjr] Allow for exporting of resource calendars (Request #12372).
* [mjr] Make event url property a true hyperlink in dynamic view (Request #12920).
* [jan] Support task assignees.
* [jan] Support parent tasks.
* [jan] Indent sub tasks.
* [jan] Make shares table compatible with Oracle.
* [mjr] Improve display of Free/Busy information and add pagination (Requests #12899, #12676).
* [mjr] Add ability to export event to a timeslice (Request #11307).
* [mjr] Add API support for supporting multiple calendar sync via ActiveSync.
* [jan] Improve sort order of events in month view (Request #11155).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0alpha2</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>alpha</release>
    <api>alpha</api>
   </stability>
   <date>2014-05-07</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix dependency on Nag (Bug #13166).
* [jan] Use the event&apos;s or calendar&apos;s owner identity when sending notifications (Bug #13158).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0beta1</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2014-05-21</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Do not include resources with no email address when synching to EAS clients.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0beta2</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2014-06-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Add synchronization of attendees via CalDAV (Request #13027).
* [mjr] Fix moving an event from one calendar to another while resources are disabled (Bug #13201, Carlos Timóteo &lt;ctimoteo@sapo.pt&gt;)
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0RC1</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2014-06-17</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix error when deleting unselected calendars.
* [jan] Improve DTEND compatibility with other programs using iCalendar.
* [mjr] Fix sending iTip invitations when Save As New is used (Bug #13239).
* [jan] Fix free/busy display with 24-hours-busy days.
* [jan] Fix navigating free/busy dates.
* [jan] Fix hover style in year view (Bug #13057).
* [jan] Update Polish translation (Maciej Uhlig &lt;maciej.uhlig@us.edu.pl&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0RC2</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2014-07-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix issues with event URL field not updating (Carlos Timóteo &lt;ctimoteo@sapo.pt&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.0</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-07-08</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix selecting days in the sidebar mini calendar (Bug #13327).
* [mjr] Issue a cancellation iTip when an event&apos;s status changes to cancelled (Bug #13321).
* [jan] Fix loading events for intial view in smartphone mode.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.1</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-08-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix displayed CalDAV URLs for shared calendars (Bug #12380).
* [jan] Don&apos;t show today&apos;s events that are over in portal (Bug #13368).
* [mjr] Fix exporting to ics file when event contains exceptions and an explicit timezone (Bug #13369).
* [mjr] Fix importing iCalendar data that contains timezone parameters.
* [mjr] Fix both importing and replacing text/calendar data via the API when recurrence exceptions are present (Bug #13399).
* [mjr] Ensure default share attribute is set when auto determining a default share.
* [mjr] Fix fatal error when calculating alarms on a recurring event that has completed.
* [mjr] Fix catching minical clicks on browsers that return element names in uppercase (Jasper.Olbrich@students.uni-marburg.de, Bug #13370).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.2</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-09-05</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix removing resource event when editing the bound event causes the resource to reject the event (Bug #13466).
* [mjr] Fix refreshing resource events in the UI when the host event changes (Bug #13465).
* [mjr] Fix updating the exceptionoriginaldate field when the base event changes (Bug #13512).
* [mjr] Fix moving recurring events with exceptions from one calendar to another (Bug #13524).
* [mjr] Fix honoring resource_management permission (Bug #13049).
* [jan] Fix visual overlapping of certain events (Bug #13376).
* [jan] Fix error editing events if using exotic date formats.
* [jan] Fix JavaScript error if not showing all events in month view (Jasper Olbrich &lt;Jasper.Olbrich@students.uni-marburg.de&gt;, Bug #13433).
* [jan] Fix displayed CalDAV URLs for shared calendars in basic view too (piper@hrz.uni-marburg.de, Bug #12380).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.3</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-10-29</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Export nicer display names for users and resources via WebDAV.
* [jan] Export custom owner and read-only properties via WebDAV.
* [jan] Fix finding modification times of shared calendars via WebDAV.
* [jan] Support time label rotation in week and day views on IE 11.
* [jan] Fix updating of task list view if no tasks are returned from server.
* [jan] Fix ordering of sub-tasks.
* [jan] Send iTip notifications even to attendees that are not required to attend (Bug #13600).
* [jan] Fix notification and alarm issues if alarm is longer than a day (Bug #13584).
* [jan] Fix closure compiler errors (Bug #13593).
* [mjr] Fix checking resource availability when adding multiple resources (Bug #13561).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.4</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2014-12-03</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] SECURITY: Don&apos;t show private event details in daily agenda emails if not the owner (Bug #13660).
* [jan] Make access to non-CalDAV remote calendars faster (Bug #12379).
* [jan] Continue with further events if parsing of one remote event date fails.
* [jan] Fix JS error in month view with more events today than the maximum threshold.
* [mjr] Fix fatal error when creating or modifying an entry via PUT.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.5</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-02-10</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix generating calendar embed code (Bug #13828).
* [jan] Don&apos;t wipe out whole calendars when PUTing individual events via WebDAV.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.6</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-04-28</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix building recipient list for event update notifications.
* [mjr] Honor background color for listTimeObjects API calendars (Bug #13951).
* [jan] Always sort users in advanced sharing dialog (Bug #13938).
* [mjr] Fix saving recurring event after a change in resources (Bug #13921).
* [mjr] Fix creating recurrence exceptions from CalDAV clients.
* [jan] Added an index to find base events of recurrence exceptions faster.
* [jan] Fix finding duplicate events by UID.
* [mjr] Fix updating FB data when start date changes.
* [mjr] Fix detecting attendees when email address is not lowercase (Bug #13905).
* [jan] Fix duplicate group names in sharing dialog.
* [jan] Fix JavaScript error when saving an unselected calendar.
* [mjr] Fix using custom SQL configuration parameters.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.7</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-05-18</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix importing iCalendar events via the API (Bug #13975).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.8</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-06-18</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Don&apos;t delete existing exceptions and completions when editing recurring events or tasks.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.9</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-08-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix enabling deletion of resources for non-admin users (Bug #14069).
* [mjr] Honor workweek view as the login_view (Bug #14042).
* [mjr] Fix Permission Denied error after removing a currently displayed timeObject (Bug #14022).
* [jan] Enable purge calendar checkbox if user has delete permissions.
* [mjr] Honor locking the remote_cals preference.
* [mjr] Fix detecting duplicate events during import via the API (Bug #14018).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.10</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-10-21</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix exporting events from Horde_Perms::SHOW calendars over DAV (Bug #14128).
* [mjr] Send CANCEL iTip when attendee is removed from a meeting (Request #14118).
* [mjr] Remove object reference from Content when object is deleted (Bug #14112).
* [mjr] Fix incorrect offset of freebusy times in certain cases (Bug #14084).
* [mjr] Fix handling of email groups as attendees (Bug #14093).
* [mjr] Fix importing text/calendar data via API (Bug #14089).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.11</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2015-10-22</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix issue when replacing an event via the API and the attendee list changes (Bug #14118).
* [mjr] Fix fatal test error related to Content_Tagger.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.12</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-02-02</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix missing truncated event description when using ActiveSync.
* [jan] Fix week number in basic view if week starts on Sundays.
* [mjr] Fix issue where new event could be created with exceptions from previously edited event.
* [jan] Mark preferences only available in basic mode.
* [jan] Use access rules compatible with both Apache 2.2 and 2.4.
* [jan] Fix accidental deletion of events if importing recurring events without a UID attribute (Bug #14208).
* [mjr] Honor confirm_delete preference in dynamic view (Bug #14188).
* [mjr] Correctly deal with cancelled meetings via ActiveSync.
* [mjr] Fix visibility of alarm titles when alarm is generated via CLI (Bug #14154).
* [mjr] Fix display of embed code by adding the full url.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.13</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-02-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Add missing EAS ghosted property support for all EAS versions. Prevents potential loss of event data during synchronization.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.14</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-02-11</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix issue deleting and closing event dialog during event deletion.
* [mjr] Honor the SCHEDULE-AGENT attribute during CalDAV import.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.15</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-02-17</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix typo preventing deletion of events from dynamic view (Bug #14256).
* [jan] Handle gracefully if the base event of an imported recurrence exception is no longer recurring (Bug #14249).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.16</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-03-21</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix updating list of resource calendars in resource group dialog (Bug #14281).
* [jan] Fixed several issues with resource management.
* [jan] Update Greek translation (Limperis Antonis &lt;limperis@cti.gr&gt;).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.17</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-07-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Update Portuguese translation.
* [jan] Update Basque translation.
* [mjr] Fix issue where it is possible to save an event with an empty start or end date on some browsers.
* [mjr] Require Horde_Perms::DELETE for including a calendar as sync-able.
* [mjr] Fix end date when toggling an all day event off (Bug #13979).
* [jan] Fix showing error message if loading of remote calendars failed.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.18</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-09-06</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix potential memory issue with really long events (Bug #14453).
* [mjr] Fix setting DELETE permissions (Bug #14447).
* [mjr] More fixes and improvements related to preventing empty date values.
* [jan] Fix losing shared users when adding invalid user name (Bug #14415).
* [mjr] Fix displaying tag search results (Bug #14412).
* [jan] Fix sender of event change notification messages.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.19</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2016-12-16</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix allowing ics import on when user has edit permissions on a shared calendar (Bug #14501).
* [jan] Disallow setting of creator permissions too if sharing with world is disabled.
* [jan] Split shared users by linebreaks too.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.20</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-03-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix saving sync preference when no default calendar exists (Bug #14585).
* [mjr] Fix display of date in ITIP_CANCEL notifications of deleted instances of recurring events (PR: 214, almarin@um.es).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.21</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-05-03</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Don&apos;t hide the reservee&apos;s identity on the resource calendar (Bug #14609).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.22</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-08-01</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] SECURITY: Fix open redirects.
* [mjr] Prevent broken iCalendar files from causing fatal errors (Bug #14672).
* [jan] Work around calendar servers advertising as CalDAV-capable, but ignoring CalDAV requests (Bug #14662).
* [jan] Fix displaying yesterday&apos;s event in Prior Events portal block (admin@layertec.de, Bug #14638).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.23</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2017-09-19</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Officially support PHP 7.
* [jan] Fix time offsets when importing CSV data with two-digit years.
* [jan] Fix updating and deleting events from external CalDAV servers (martin1@k0k.net, Bug #14021).
* [jan] Fix exporting multiple tags to iCalendar CATEGORIES (Bug #14057).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.24</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2018-07-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [jan] Fix displaying event start time in calendar feed if using 12-hours time format.
* [jan] Fix SCHEDULE-AGENT setting if there is only one attendee.
* [mjr] Prevent fatal error if calendar not found during DAV sync.
* [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14698).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.25</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2018-09-26</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] SECURITY: Fix XSS vulnerability in resource group property view (Bug #14857).
* [mjr] SECURITY: Fix XSS vulnerability in event URL field (Bug #14857).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.26</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2019-01-06</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Remove hard coded end date for calendar feed and allow it to be specified in url.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.27</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2019-01-08</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Remove erroneously added patch file.
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.28</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2020-07-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] SECURITY: Don&apos;t leak private details when sending notifications for private events (Bug #15011).
* [mjr] Fix regression in display of clickable event URL property (Bug #14941).
   </notes>
  </release>
  <release>
   <version>
    <release>4.2.29</release>
    <api>4.2.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2020-07-04</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Fix regresssion in event modification notifications (Bug #15022).
   </notes>
  </release>
  <release>
   <version>
    <release>5.0.0</release>
    <api>5.0.0</api>
   </version>
   <stability>
    <release>beta</release>
    <api>beta</api>
   </stability>
   <date>2017-10-20</date>
   <license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
   <notes>
* [mjr] Prevent creation of corrupt recurrence end dates (Bug #14752).
* [jan] Add API to backup and restore user data.
* [jan] Use colors, names, and descriptions of remote CalDAV calendars (Request #14612).
* [jan] Add headers to print views.
* [mjr] Add support for tracking the ORGANIZER of an event independently of the horde user (Bug #3965, PR: 127, Ralf Lang &lt;lang@b1-systems.de&gt;).
* [jan] Use preferred start and end of day for color shades in dynamic view.
* [jan] Automatically scroll to preferred start of day (heinz@htl-steyr.ac.at, Request #14498).
* [mjr] Changes to support EAS attachment sync support.
* [jan] Remove dependency on PEAR&apos;s Date package.
* [mjr] Fix display of recurring multi-day events (&quot;Pascal Rigaux&quot; &lt;pascal.rigaux@univ-paris1.fr&gt;).
* [jan] Only export the timezone rules required for an event to iCalendar objects.
* [jan] Show timezone abbreviations in event dialog too.
* [jan] Show users&apos; full names in share dialogs.
* [mjr] Support for subset of features of ActiveSync 16.0.
* [mjr] Disconnect exceptions from base event when series changes.
* [mjr] Support file attachments to events (Request #2009).
* [mjr] Add ability to prevent any iTip notifications from being sent (Request #14157).
* [mjr] Remove maps configuration, replaced by global maps configuration (Bug #14168).
* [mjr] Show created/last-modified info on event view (Request #10715).
* [jan] Allow to edit system calendars in dynamic view.
* [jan] Add support for monthly recurrence on last weekday (Request #1922).
* [jan] Send event update notifications with HTML part.
* [mjr] Resource permissions have been implemented (Request #13647).
* [jan] Add refresh button to individual calendars and task lists.
* [mjr] Enforce case on attendee user part, but add attendee to event if only only the case differs (Bug #13905).
* [jan] Keep original file names when PUTing events via WebDAV.
* [jan] Remove configuration options for database tables.
* [mjr] Honor the UID value sent from EAS clients directly in the message structure.
* [jan] Add entries for Tasks and Agenda to top menu.
* [mjr] Add Kronolith_Api::move().
* [jan] Return ETags with browse() API method.
* [jan] Add importing of calendar data from a URL.
   </notes>
  </release>
 </changelog>
</package>