File: ChangeLog

package info (click to toggle)
gnuift 0.1.14%2Bds-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 5,632 kB
  • ctags: 2,973
  • sloc: cpp: 15,867; sh: 8,281; ansic: 1,812; perl: 1,007; php: 651; makefile: 483; lisp: 344
file content (3183 lines) | stat: -rw-r--r-- 108,266 bytes parent folder | download
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
2005-03-24    <wolfgang.mueller@wiai.uni-bamberg.de>

	* libMRML/cc/CAccessorAdminCollection.cc: 
	* libMRML/cc/CAccessorAdminCollection.pre-cc: 
	Proper error message for mIDToProxy. 

	NOTE LIBMRML/CC/CACCESSORADMINCOLLECTION.PRE-CC IS 
	NOT USED ANY MORE.

	
	
2005-03-21    <wolfgang.mueller@wiai.uni-bamberg.de>

	* libMRML/include/TID.h: int -> long. makes it work
	on AMD 64

2005-01-25    <wolfgang.mueller@wiai.uni-bamberg.de>

	* FeatureExtraction/Makefile.am (AM_CPPFLAGS): FIXED: should
	not override CPPFLAGS.

2005-01-11    <wolfgang.mueller@wiai.uni-bamberg.de>

	* scripts/perl/gift-add-collection.pre-pl (removeCollection): 
	return lReturnValue;

2005-01-10    <wolfgang.mueller@wiai.uni-bamberg.de>

	* libMRML/include/CCommunicationHandler.h: 
	* libMRML/cc/CCommunicationHandler.cc(getCurrentSessionID): 
	new method. Gets the session ID of the currently built response

	* libMRML/cc/CXEVCommunication.cc(startVisit): use getCurrentSessionID.

	* libMRML/cc/Makefile.am (libMRML_la_LDFLAGS): new version for libMRML

2004-12-15    <wolfgang.mueller@wiai.uni-bamberg.de>

	* configure.in:
	Changed version number to 0.1.14

2004-12-03    <wolfgang.mueller@wiai.uni-bamberg.de>

	* configure.in:
	fixing hardcoded bits in Robert Jordens' patch.
	Use --enable-debian-config in order to use Robert's stuff.

2004-08-05    <Wolfgang.Mueller2@uni-bayreuth.de> for <robertjo@phys.ethz.ch>

	* libGIFTAcDistanceMatrix/include/CPersistentVector.h:
	* libMRML/include/CSelfDestroyPointer.h: 
	this-> before method calls for keeping gcc 3.4 happy.
	Patch supplied by Robert Jordens <robertjo@phys.ethz.ch>

	* ./configure.in:
	* ./libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc:
	* ./scripts/perl/gift-add-collection.pre-pl:
	* ./scripts/perl/gift-remove-collection.pre-pl:
	* ./scripts/perl/gift-start.pre-pl:
	* ./scripts/perl/gift-url-to-fts.pre-pl:
	* ./libGIFTAcInvertedFile/cc/Makefile.am:
	* ./scripts/perl/Makefile.am:
	* ./libMRML/cc/Makefile.am:
	* ./libMRML/include/Makefile.am:
	* ./libGIFTAcHierarchy/cc/Makefile.am:
	* ./Doc/Makefile.am:
	* ./GIFTServer/gift-config/Makefile.am:
	* ./GIFTServer/gift-mrml-messages/Makefile.am:
	* ./libGIFTQuHierarchy/cc/Makefile.am:
	* ./PluginMaker/libGIFTQu@PLUGIN_NAME@/cc/Makefile.am.in:
	* ./PluginMaker/libGIFTAc@PLUGIN_NAME@/cc/Makefile.am.in:
	fixed improper (debian incompatible) use of BINDIR.
	Patch supplied by Robert Jordens <robertjo@phys.ethz.ch>
	
	* Doc/HTML/DoxygenFooter.html:
	* Doc/HTML/DoxygenHeader.html:

	Contact information
	Patch supplied by Robert Jordens <robertjo@phys.ethz.ch>

	* Doc/configuring-and-hacking-the-gift.sgml:
	dtd
	Patch supplied by Robert Jordens <robertjo@phys.ethz.ch>
	
	* Doc/gift-guide.sgml:
	dtd
	export statement
	Patch supplied by Robert Jordens <robertjo@phys.ethz.ch>

2004-06-18    <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl (setDefaultCollection): 
	correctly set default collection on initial install 
	__COLLECTION__ --> unique collection ID

2004-06-16    <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/include/Makefile.am (libMRML_HEADERS): 
	making libMRML gentoo-installable

2004-06-11    <wolfgang.mueller2@uni-bayreuth.de>

	* gift-install-prerequisites.pl: changed to accomodate
	archive name different from unpack directory 
	(i.e. ImageMagick).

	* README: changed readme

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc(operator()): 
	check if mInvertedFile is null. Fixes segmentation fault at
	end of gift-generate-inverted-file.
	(init): check if the file is valid before using the just-read
	ID/offset tuple.

2004-06-10    <muellerw@localhost>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (init): 
	more debugging printouts

2004-06-10    <Wolfgang.Mueller2@uni-bayreuth.de>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (init): 
	changed debugging output for offset file read

2004-04-16  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* configure.in: changed version number.

	* Doc/gift-guide.sgml: Added remarks about java rights problems,
	the gift-prerequisites package etc.

2004-03-24  Wolfgang Mller  <muellerw@btn1x5>

	* scripts/perl/gift-add-collection.pre-pl: Changed to
	react correctly to failing convert calls. Mainly putting
	evals around system calls. Writing out url2fts.xml tags
	only if the conversion and feature extraction were successful.
	[Too?] Verbose error messages.

	* libMRML/cc/CQueryPlugin.cc: don't exit if file not linkable


	* libMRML/include/CAccessorFactoryContainer.h(isPresentFactory): 
	New method

	* libMRML/cc/CAccessorFactoryContainer.cc(configure): 
	Changes to make finding libraries independent of shared library
	extensions using getLibNameFromFileName

	* libMRML/cc/CDynamicQueryFactory.cc: 
	* libMRML/include/CDynamicQueryFactory.cc: 
	Changes to make finding libraries independent of shared library
	extensions using getLibNameFromFileName

	* libMRML/include/getLibNameFromFileName.h: 
	* libMRML/cc/getLibNameFromFileName.cc (getLibNameFromFileName): 
	New function, new file

	* libMRML/cc/CQueryPlugin.cc: 
	* libMRML/include/CQueryPlugin.h: 
	* libMRML/include/CAFPlugin.h: 
	* libMRML/cc/CAFPlugin.cc: 
	Changed constructor to accommodate pre-extracted library name
	Softer reaction on failure.

	


2004-03-23  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CAccessorFactoryContainer.cc(configure): 
	* libMRML/cc/CAFPlugin.cc(CAFPlugin): In constructor, 
		add more verbose error messages


2004-02-24  Knoppix User  <Wolfgang.Mueller2@uni-bayreuth.de>

	* FeatureExtraction/extract_features.c (main): 
	* FeatureExtraction/float_histogram.c (main):
	* FeatureExtraction/fts2blocks.c (main):
	* FeatureExtraction/gabor981029.c (main):
	* FeatureExtraction/gabor_old.c (main):
	* FeatureExtraction/hsv2rgb.c (main):
	* FeatureExtraction/hsv_quantize.c (main):
	* FeatureExtraction/hsv_quantize_median_filter.c (main):
	* FeatureExtraction/hsv_test.c (main):
	* FeatureExtraction/print_float_histogram.c (main):
	* FeatureExtraction/quantize_mean.c (main):
	* FeatureExtraction/quantize_median.c (main):
	* FeatureExtraction/quantize_mode.c (main):
	* FeatureExtraction/rgb2hsv.c (main):
	* FeatureExtraction/write_feature_descs.c (main):
	changed return type to int

	* GIFTServer/modifyDistanceMatrix.cc: 
	* libGIFTAcInvertedFile/cc/CInvertedFileChunk.cc: 
	#include <cassert>

2003-11-12  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: changed UF to Unknown Feature in debug printout

2003-09-15  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* Doc/gift-guide.sgml: removed non GPL compliant license statement.
	Removed some cruft from the to-do-list. Updated the part 
	about hacking the url2fts file. Updated perl prerequisites.

2003-09-02  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CAccessorAdminCollection.cc(getProxy): throwing exception
	on unknown collection

2003-05-06  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* PluginMaker/configure.in.in: fixed wrong options in call
	to libMRML-config

2003-04-24  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl: adding collection
	element to config file has problem on recent perl, apparently.
	Added safeConvertString (necessary, but does not solve this problem), 
	and write out stuff into a temporary file, then use parsefile.

2003-04-22  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* PluginMaker/libGIFTAc@PLUGIN_NAME@/include/packages/GIFTPlugin-FEFTest/libGIFTAcFEFTest/include/CAcFEFTest.h: 
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/include/packages/GIFTPlugin-FEFTest/libGIFTAcFEFTest/include/CAFFEFTest.h: using namespace std

	* configure.in: cleaned up stray files in PluginMaker
	

2002-11-12  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* Doc/configuring-and-hacking-the-gift.sgml (perform): 
	changing date

2002-11-05  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	removed cast when shifting << by one

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: note which file
	is the last one touched by merge_sort_streams.h. Seems to be 
	an old and bad bug in indexing. 

	* configure.in(ACX_PTHREAD): added spaces at end of the line
	for each line of the parameter.

2002-10-23  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CQuery.cc (query): embarrassing bug: the
	output mrml was wrong. query-result-elements were not
	part of a query-result-element-list

2002-10-20  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CSessionManager.cc(translate): removed throw

	* configure.in: check for sys/times.h

	* libMRML/cc/CQuery.cc (query): pipe out some statistics
	about the raw fastQuery duration.

2002-10-01  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CXMLElementBuilder.cc: I just got a 
	sligthly misterious bug in a realloc in expat.
	I try to solve this by copying c_str() to char*
	using a strdup()

2002-09-22  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-dtd-to-keywords.pre-pl (translateToH): 
	add #ifdef to generated c++ headers

2002-09-16  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: Instead
	of doing mergesort all the time, the lowest levels of recursion
	is sorted using quicksort in memory.

	* configure.in: removed check for -ldbi, as this provokes
	weird problems if using dbi in plugins

2002-09-14  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* GIFTServer/Makefile.am (gift_LDADD): adding -ldbi (tentaitive)

2002-09-13  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/Makefile.am (libMRML-config.cc): added destination
	directory to includepath

2002-09-09  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libSquirePPM/normaliseContrast.c: 
	removed old copyright notice from rewritten code (apparently
	when rewriting, I forgot the notice in the file within which I
	changed the procedure)
	
	* libSquirePPM/ppm.h (MIN_BYTE): 
	* libSquirePPM/ppm_noproto.h (MIN_BYTE): 
	* libSquirePPM/typedefs.h (bool): renamed maxbyte and minbyte
	for (c) sake

	* libMRML/cc/libMRML-config.pre-cc: should compile now
	with systems that don't have getopt_long

	* bootstrap-cvs.sh: aclocal -I 

	* aclocal-add.m4: new file. for pthreads and getopt_long
	
	* FeatureExtraction/extract_block_features.c(extract_gabor_features): 
	* FeatureExtraction/extract_block_features.c(extract_mode_features): 
	Patch by Tim TimeWaster <tim@cuba.calyx.nl> 
	
	
2002-09-04  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* gift-install-prerequisites.pl:
	Current packages.

	* libMRML/cc/CAccessorAdmin.cc (CAccessorAdmin): added default
	constructor for mContent.
	Changed: build accessor before changing open/close counter
	=> throwing an exception when building the accessor
	will keep the open/close counter at the old value

2002-09-03  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl (removeCollection): 
	unlinking also the *.ADI files

	* scripts/perl/gift-remove-collection.pre-pl: 
	* scripts/perl/Makefile.am: added gift-remove-collection.pre-pl
	as well as gift-remove-collection.pl targets

	* GIFTServer/Server.cc: applied patch by Carsten Pfeiffer
	adding getopt support to GIFT

2002-08-28  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* GIFTServer/Server.cc (main): got rid of #ifdef single
	The code inside the if-branch is clearly obsolete.
	The only code we keep is in the #else branch.

	Furthermore, gift now creates a file gift-port.txt
	in GIFT_HOME, which contains the port numbers of 
	the ports used.

2002-08-22  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl: fix for case
	where no encoding is found

2002-07-28  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* PluginMaker/libGIFTAc@PLUGIN_NAME@/cc/CAc@PLUGIN_NAME@.cc.in: 
	removed unnecessary expat include

2002-07-27  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* GIFTServer/HomeMadeServer.cc: i18n

	* GIFTServer/Makefile.am: remove references to package-included
	expat

	* libMRML/cc/CAlgorithmCollection.cc: 
	* libMRML/cc/CAccessorAdminCollection.cc: expat includes changed

	* Makefile.am (EXTRA_DIST): gift-check-perl-config.pl

2002-07-26  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CAttributeList.cc: include algorithm

2002-07-24  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CXMLElement.cc(traverse): 
	* libMRML/include/CXMLElement.h(traverse): added non-const 
	version of this function. Needed for i18n

2002-07-23  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CXMLElementBuilder.cc: 
	* libMRML/include/CCommunicationHandler.h: 
	* libMRML/include/CI18nTranslator.h: 
	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc: 
	* GIFTServer/HomeMadeServer.cc: 
	* libGIFTAcHierarchy/cc/CAcHierarchy.cc: 
	* libMRML/cc/CSessionManager.cc: using pre-intalled
	expat instead of GIFT-provided one. changing includes.

2002-07-22  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CXMLElementVisitor.h:
	* libMRML/cc/CXMLElementVisitor.cc: adding non-const
	member functions to CXMLElementVisitor. By default
	all they do is call the const members
	

	* libMRML/cc/CAttributeList.cc (getKeys): 
	* libMRML/include/CAttributeList.h(getKeys): 
	New function: get keys of all attributes

2002-07-21  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/include/CSessionManager.h: 
	* libMRML/cc/CSessionManager.cc(clearLanguages): 
	* libMRML/cc/CSessionManager.cc(addLanguage): 
	* libMRML/cc/CSessionManager.cc(getLanguages): 
	* libMRML/cc/CSessionManager.cc(clearSessionLanguages): 
	* libMRML/cc/CSessionManager.cc(addSessionLanguage): 
	* libMRML/cc/CSessionManager.cc(getSessionLanguages): 
	Three new procedures for maintaining the languages preferred by
	a given session
	
	
2002-07-19  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl: files with special 
	characters now get correctly encoded. Little problem: the client
	has to offer these encodings. The php does not do so, currently.

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: fixed: opening
	wrong file after indexing

	* libMRML/include/Makefile.am (install-data-local): Fixed
	strange intstallation problems seem to have to make
	the path before doing intall-local

	(install-data-hook): this target was an install-data-local 
	before. That crashed if the installation directory was
	not present before installation

2002-07-18  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* pthread-compile-test-program.cc (main): 
	return type must be int

2002-07-17  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* GIFTServer/Server.cc: 

	* libMRML/include/CSessionManager.h (class CSessionManager): 
	* libMRML/cc/CSessionManager.cc: 
	Uses now CI18nTranslator class
	
	* libMRML/cc/CI18nTranslator.cc: 
	* libMRML/include/CI18nTranslator.h: 
	adding support for internationalization of mrml files. This
	i18n is adapted to frequent changes of the languages during
	runtime, as it is appropriate for servers.

2002-07-12  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl: 
	Finding all images within a tree before starting.
	Enables us to write out progress.

2002-07-10  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* scripts/perl/gift-add-collection.pre-pl: 
	1) use strict
	2) applied bugfix for lThumbnailURLPrefix by karl s. eiringer

2002-07-08  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* dtd/mrml.dtd: Ralf Juengling tells me that there are 
	two definitions for algorithm in the dtd. Changed

2002-06-19  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: 
	* libGIFTAcInvertedFile/include/CAcIFFileSystem.h: 
	Changes for putting temporary data at a place
	where we know we can write
	

2002-06-17  Wolfgang Mller  <kde3@btn1n6.inf.uni-bayreuth.de>

	* gift-check-perl-config.pl: this script checks if perl
	modules needed are there
	
	* scripts/perl/gift-start.pre-pl: making this script
	ready for public use.

2002-06-04  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* libMRML/cc/CQuery.cc (query): reading cutoff attribute
	as double value instead of long.

2002-06-03  Wolfgang Mller  <kde3@btn1n6.inf.uni-bayreuth.de>

	* Makefile.am: using current installed expat packaged
	version. This has become necessary for reasons of
	linking with external plugins. Sorry folx.

2002-06-03  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* expat/xmlparse/Makefile.am (LTLIBRARIES): It turns
	out that I have to install lib_temp_xml_parse.la when
	using new libtool and new gcc

2002-05-29  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* GIFTServer/CDomainSocket.cc(serveStream): 
	* GIFTServer/CTCPSocket.cc(serveStream): 
	cannot close socket in serveStream, otherwise multithreading
	goes down the drain

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	Quite massive changes to make it work with the full 
	file lenght allowed by the system. The problem is that
	stream_pos does not have incrementation operators etc...

	Checked in again, have done some debugging in the meanwhile
	
	* configure.in: moving cp statement to very end of the file
	makes sure that this is executed at the right moment

2002-05-28  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* libGIFTAcDistanceMatrix/include/CPersistentVector.h(init): 
	using fill for filling vector with intial value
	
	* libGIFTQuHierarchy/cc/CQHierarchy.cc: include <iterator>

	* libGIFTQuInvertedFile/cc/CQInvertedFile.cc: cast to int in call
	of limitNumberTo

	* libGIFTAcInvertedFile/include/CAcIFFileSystem.h: changes for v31

2002-05-26  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* libGIFTAcDistanceMatrix/include/CDrawer.h: 
	* CDrawer.h:
	* libGIFTAcInvertedFile/cc/CAdditionalDocumentInformation.cc: 
	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: 
	* libMRML/include/CMagic.h: 
	* libMRML/include/CIDRelevanceLevelPair.h: 
	* libMRML/include/CAccessorImplementation.h: 
	remove .h from standard include file names
	assert.h becomes cassert

	* libMRML/cc/CSessionManager.cc: include <iterator>
	
2002-05-24  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* libMRML/cc/CSessionManager.cc(setAlgorithm): 
	bracket notation in maps creates new empty element.
	this was a reason for some crashes. fixed.
	
	* libMRML/cc/CXEVCommunication.cc: removed try/catch exception handling

2002-05-15  Wolfgang Mller  <wolfgang.mueller2@uni-bayreuth.de>

	* configure.in(AM_CONFIG_HEADER): 
	added cp gift-config.h libMRML/include
	in order to install gift-config.h together with the 
	libMRML includes

	* libMRML/include/Makefile.am (install-data-local): 
	target to install the autoconf-generated gift-config.h
	
	* libMRML/cc/CSessionManager.cc(getNewID): if -luuid is present,
	session IDs will ge uuids, instead of integers starting at one

2002-05-08  Wolfgang Mller  <wmueller@bn1x1.inf.uni-bayreuth.de>

	* libMRML/cc/Makefile.am (libMRML-config.cc): 
	* libMRML/cc/libMRML-config.pre-cc (main): 
	changing the way libdir is treated.
	adding --plugin-dir flag.

2002-05-03  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/libMRML-config.pre-cc (main): 
	get rid of spaces that are "too much"

2002-04-30  Wolfgang Mller  <Wolfgang.Mueller2@uni-bayreuth.de>

	* libMRML/cc/CDynamicQueryFactory.cc: 
	* libMRML/cc/CAFPlugin.cc: exit -> exception

	* scripts/perl/Makefile.am (PERLCONFIG): adding "-e" before
	sed expression.

2002-03-30  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* dtd/mrml.dtd: appliet Pruet Boonma's segment query patch
	as discussed in help-gift@gnu.org

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (URLToFeatureList): 
	Bugfix: deplaced endif to avoid returning NULL pointers.
	(Bug report Dr. Stphane Marchand-Maillet)
	
	* scripts/perl/gift-dtd-to-keywords.pre-pl (translateToCC): 
	generating include statement with correct location where mrml_const.h 
	will be installed. (Bug report Pruet Boonma).

2002-03-30  Wolfgang M&uuml;ller  <muellerw@linux.unige.ch>

	* libMRML/cc/Makefile.am (libMRML-config.cc): 
	* configure.in:
	* libMRML/cc/libMRML-config.pre-cc: 
	with-mysql-dir configure option and its usage
	
2002-03-03  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/CQueryParadigmMatcher.cc: 
	bugfix in operator(). one branch did not always
	return a defined value
	
	* libMRML/cc/Makefile.am (libMRML_la_LDFLAGS): 
	incrementing version info

	* libMRML/include/CAccessorAdmin.h: 
	* libMRML/cc/CAccessorAdmin.cc: 
	Added: getQueryParadigmList
	
	* libMRML/include/CAccessorAdminCollection.h: 
	* libMRML/cc/CAccessorAdminCollection.cc: 
	New member functions: getCollectionElement,
  	getQueryParadigmList. They makes it easier
	to find configuration errors without constructing
	an CQuery element (not yet used)


2002-03-02  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	Release gift-0.1.8.

2002-03-02  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/include/Makefile.am (dist-hook): 
	* libMRML/cc/Makefile.am (dist-hook): remove
	files that contain configuration data
	

2002-02-28  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libGIFTAcDistanceMatrix/include/CPersistentVector.h: 
	* libGIFTAcDistanceMatrix/include/CPersistentMatrix.h: make
	it compile with gcc v3. mainly more picky for implicit type 
	casting as well as local classes

2002-02-26  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CQueryParadigmMatcher.cc(matches): 
	implemented matcher function

2002-02-18  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* README: removed first line as requested by RMS

2002-02-18  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/include/GIFTExceptions.h: 
	* libMRML/cc/GIFTExceptions.cc: 
	const and non-const constructor, destructor
	
2002-02-18  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/CSessionManager.cc: catching non-default
	exception in query

	* libMRML/cc/CQueryTreeBuilder.cc (getQueryByID): 
	throwing on error. commented out giving back
	first algorithm on exception. this can fail miserably. 
	better is to tell error.

	* libMRML/cc/createErrorMessage.cc: 
	* libMRML/include/createErrorMessage.h: 
	convenience function for creating MRML error 
	messages

	* libMRML/cc/CXEVCommunication.cc: 
	catch exception on algorithm construction
	

	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc (CAcURL2FTS): 
	Throw exception if url2fts unreadable
	
	* libMRML/cc/GIFTExceptions.cc: adding an accessor to
	the message contained in the exception.

	* libGIFTAcURL2FTS/include/CAcURL2FTS.h: 
	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc: adding exception
	class VEConfigurationError. This is thrown if an
	error occurs that is caused by some configuration mistake.

2002-02-10  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* GIFTServer/CDomainSocket.cc:
	* GIFTServer/CTCPSocket.cc:
	* GIFTServer/CMultiServer.cc:
	multiple sockets used by one gift instance
	
	* GIFTServer/Makefile.am: 
	* GIFTServer/CDomainSocket.h:
	* GIFTServer/CTCPSocket.h:
	* GIFTServer/CMultiServer.h:
	* GIFTServer/processMessage.cc: 
	* GIFTServer/processMessage.h: 
	* GIFTServer/CProcessMessageParameters.h: 
	* GIFTServer/CProcessMessageParameters.cc: 
	* GIFTServer/Server.cc: 
	* Makefile.am:
	Moving classes and functions defined in Server.cc 
	out of Server.cc in order to make them usable for 
	other servers like e.g. multi-gift

2002-01-26  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/Makefile.am (libMRML_la_LDFLAGS): 
	changed libtool version number

	* CRPipe.cc:
	* CReaper.cc:
	* CReaperDistributor.cc:
	* executeVector.cc:
	* CRPipe.h: 
	* CReaper.h: 
	* CReaperDistributor.h:
	* safePopen.h:
	these files contain the implementation of a kind of
	safe popen
	
	* libMRML/cc/Makefile.am: added CRPipe.cc CReaper.cc 
	CReaperDistributor.cc safePopen.cc 

	* libMRML/include/Makefile.am (libMRML_HEADERS): added
	 CRPipe.h CReaper.h CReaperDistributor.h safePopen.h

2002-01-23  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/include/Makefile.am (InvertedFile_HEADERS): 
	* libGIFTAcDistanceMatrix/include/Makefile.am (DistanceMatrix_HEADERS): 
	* libGIFTQuInvertedFile/include/Makefile.am (libGIFTQuInvertedFile_HEADERS): 
	* libMRML/include/Makefile.am (libMRML_HEADERS): 
	* libGIFTAcHierarchy/include/Makefile.am (libGIFTAcHierarchydir): 
	(libGIFTAcHierarchy_HEADERS): 
	* libGIFTQuHierarchy/include/Makefile.am: 
	* libGIFTAcURL2FTS/include/Makefile.am: 
	adding uses-declarations.h to distribution

	
	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (init): 
	show errno
	(init): have to clear file flags after close

	* GIFTServer/oneMinus.cc: 
	* GIFTServer/modifyDistanceMatrix.cc: using namespace std

	* GIFTServer/modifyDistanceMatrix.cc: include iostream

	* GIFTServer/Server.cc (main): return int
	change fstream::in+fstream::out to fstream::in|fstream::out
	
	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	streampos becomes STREAMPOS which is defined as 
	long long int => ++ is defined
	
	* libGIFTAcInvertedFile/cc/CInvertedFileChunk.cc: 
	(writeBinary): 
	* libGIFTAcInvertedFile/cc/CIFListStart.cc: 
	read and write need typecast to char* when using g++ v3

2002-01-22  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* GIFTServer/Server.cc (main): adding seeding by pid
	third parameter has to be "0" to block seeding

2002-01-20  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/Makefile.am (libMRML-config.cc): 
	* libMRML/cc/libMRML-config.pre-cc (main): 
	make it work. replacing @ by % in the sed operation
	transforming pre-cc to cc and consequently in the 
	pre-cc source 

2002-01-12  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* configure.in: $(CXX) instead of $(CC) in perl test
	compile

2002-01-11  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* configure.in(AC_CHECK_FILE[$PERL...]): 
	added -ldl to non-perl branch as consequence of
	patch suggestion by 
	Pruet Boonma <pruet@eng.cmu.ac.th>

2002-01-10  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	streampos troubles

	* libGIFTAcInvertedFile/cc/CDocumentFrequencyList.cc: 
	* libGIFTAcInvertedFile/cc/CDocumentFrequencyElement.cc: (char*) cast 
	in read/write from/to stream

	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc: Yay, gcc v3.0.3 found
	me an error mIDToFFN.find gave back an iterator mURLToFFN.

	* libMRML/cc/CXMLElement.cc: 
	* libMRML/cc/CAttributeList.cc: 
	* libMRML/cc/CXMLElementBuilder.cc: include iostream

	* libMRML/include/CQMultiple.h: 
	* libMRML/include/CAccessorImplementation.h: 
	ifdef HAS_HASH_MAP

	* libGIFTAcInvertedFile/cc/CBitSetCollection.cc: 
	* libGIFTAcInvertedFile/include/CIFListStart.h: 
	* libGIFTAcInvertedFile/include/CAdditionalDocumentInformation.h: 
	* libGIFTAcInvertedFile/include/CAcSQLInvertedFile.h: 
	* libGIFTAcInvertedFile/include/CAcInvertedFile.h: 
	* libGIFTAcInvertedFile/include/CAcIFMySQL.h: 
	* libGIFTAcInvertedFile/include/CADIHash.h: 
	* libGIFTAcInvertedFile/include/CAcIFFileSystem.h: 
	* libMRML/include/myNew.h: 
	* libGIFTAcInvertedFile/cc/CIFListStart.cc: 
	* libGIFTAcInvertedFile/include/CDocumentFrequencyElement.h: 
	iostream.h becomes iostream
	fstream.h becomes fstream etc.

	* libMRML/include/GIFTExceptions.h: added using namespace

	* libMRML/include/CIDRelevanceLevelPair.h: casting to double
	for making fabs unambiguous

	* libMRML/include/CAccessorElement.h: 
	include <iostream> makes it compile

	* libMRML/cc/CAccessorElement.cc(operator<<): small changes
	not affecting functionality for obtaining better error messages
	from gcc v3
	

2002-01-09  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/CAccessorElement.cc: cast TID to long

	* scripts/perl/gift-dtd-to-keywords.pre-pl (translateToH(): 
	adding using namespaces directive to c++ output

	* libMRML/cc/CAccessorElement.cc: 
	convert "char" to strings

2002-01-09  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/include/uses-declarations.h:
	* libGIFTAcDistanceMatrix/include/uses-declarations.h:
	* libGIFTQuInvertedFile/include/uses-declarations.h:
	* libMRML/include/uses-declarations.h:
	* libGIFTAcHierarchy/include/uses-declarations.h:
	* libGIFTAcPerl/include/uses-declarations.h:
	* libGIFTQuHierarchy/include/uses-declarations.h:
	* libGIFTQuPerl/include/uses-declarations.h:
	* libGIFTAcURL2FTS/include/uses-declarations.h:

	Added header files containing the "using namespace" declarations
	for each library.

	* /libGIFTAcInvertedFile/include/CADIHash.h:
	* libGIFTAcInvertedFile/include/CAcSQLInvertedFile.h:
	* libGIFTAcInvertedFile/include/CDocumentFrequencyHash.h:
	* libGIFTAcInvertedFile/include/CDocumentFrequencyList.h:
	* libGIFTAcInvertedFile/include/CIFListStart.h:
	* libGIFTAcInvertedFile/include/CAdditionalDocumentInformation.h:
	* libGIFTAcInvertedFile/include/CBitSetCollection.h:
	* libGIFTAcInvertedFile/include/CAFSpecialised.h:
	* libGIFTAcInvertedFile/include/CIFBuilderTriplet.h:
	* libGIFTAcInvertedFile/include/CAFIFMySQL.h:
	* libGIFTAcInvertedFile/include/CInitializedDouble.h:
	* libGIFTAcInvertedFile/include/CInvertedFileChunk.h:
	* libGIFTAcInvertedFile/include/CAFInvertedFile.h:
	* libGIFTAcInvertedFile/include/CComparisonResults.h:
	* libGIFTAcInvertedFile/include/CAcInvertedFile.h:
	* libGIFTAcInvertedFile/include/CAcIFFileSystem.h:
	* libGIFTAcInvertedFile/include/CDocumentFrequencyElement.h:
	* libGIFTAcInvertedFile/include/CAcIFMySQL.h:
	* libGIFTAcInvertedFile/include/CAcInvertedFileAbstraction.h:
	* libGIFTAcDistanceMatrix/include/CSquasher.h:
	* libGIFTAcDistanceMatrix/include/CDistanceCalculator.h:
	* libGIFTAcDistanceMatrix/include/CPersistentTranslatedIndexMatrix.h:
	* libGIFTAcDistanceMatrix/include/CDrawer.h:
	* libGIFTAcDistanceMatrix/include/CInformationCalculator.h:
	* libGIFTAcDistanceMatrix/include/CIDToMatrixIndex.h:
	* libGIFTAcDistanceMatrix/include/CAcDistanceMatrix.h:
	* libGIFTAcDistanceMatrix/include/CAFDistanceMatrix.h:
	* libGIFTAcDistanceMatrix/include/CPersistentVector.h:
	* libGIFTAcDistanceMatrix/include/CProbabilityCombiner.h:
	* libGIFTAcDistanceMatrix/include/CPersistentMatrix.h:
	* libGIFTQuInvertedFile/include/CWeightingFunctionPointerList.h:
	* libGIFTQuInvertedFile/include/CQInvertedFile.h:
	* libGIFTQuInvertedFile/include/CWeightingFunction.h:
	* libGIFTQuInvertedFile/include/CQueryNormalizer.h:
	* libGIFTQuInvertedFile/include/CWFStandardTF.h:
	* libGIFTQuInvertedFile/include/CWFBestFullyWeighted.h:
	* libGIFTQuInvertedFile/include/CWFBinaryTerm.h:
	* libGIFTQuInvertedFile/include/CQNEuclideanLengthSquare.h:
	* libGIFTQuInvertedFile/include/CQNBestFullyWeighted.h:
	* libGIFTQuInvertedFile/include/CQNSquareDFLogICFSum.h:
	* libGIFTQuInvertedFile/include/CWFCoordinationLevel.h:
	* libGIFTQuInvertedFile/include/CWeighter.h:
	* libGIFTQuInvertedFile/include/CWFClassicalIDF.h:
	* libGIFTQuInvertedFile/include/CScoreBoard.h:
	* libGIFTQuInvertedFile/include/CQNNoNormalization.h:
	* libGIFTQuInvertedFile/include/CWFBestProbabilistic.h:
	* libGIFTQuInvertedFile/include/CQNMaxDocumentFrequency.h:
	* libGIFTQuInvertedFile/include/CWFProbability.h:
	* libGIFTQuInvertedFile/include/CWeightingFunctionPointerHash.h:
	* libMRML/include/CTimeStampGenerator.h:
	* libMRML/include/CXEVCommunication.h:
	* libMRML/include/CXEVTripletList.h:
	* libMRML/include/CMagic.h:
	* libMRML/include/CSelfDestroyPointer.h:
	* libMRML/include/CAccessorFactory.h:
	* libMRML/include/CSessionManager.h:
	* libMRML/include/CArraySelfDestroyPointer.h:
	* libMRML/include/CQueryTreeBuilder.h:
	* libMRML/include/CAccessorImplementation.h:
	* libMRML/include/CAFPlugin.h:
	* libMRML/include/CAccessorAdmin.h:
	* libMRML/include/CAlgorithm.h:
	* libMRML/include/CAccessorElement.h:
	* libMRML/include/CAccessor.h:
	* libMRML/include/CXMLHelper.h:
	* libMRML/include/CMutex.h:
	* libMRML/include/CQueryParadigmMatcher.h:
	* libMRML/include/CPropertySheetList.h:
	* libMRML/include/CXMLElementVisitor.h:
	* libMRML/include/CAccessorFactoryContainer.h:
	* libMRML/include/CRelevanceLevelList.h:
	* libMRML/include/CNoDelete.h:
	* libMRML/include/CQueryTreeNode.h:
	* libMRML/include/CAlgorithmCollection.h:
	* libMRML/include/CMRMLStringConstants.h:
	* libMRML/include/CQMultiple.h:
	* libMRML/include/CIDRelevanceLevelPairList.h:
	* libMRML/include/CQueryPlugin.h:
	* libMRML/include/CDebuggingMemoryManager.h:
	* libMRML/include/CStaticQueryFactory.h:
	* libMRML/include/CCommunicationHandler.h:
	* libMRML/include/CAttributeList.h:
	* libMRML/include/CRelevanceLevel.h:
	* libMRML/include/CXMLElementBuilder.h:
	* libMRML/include/CIDRelevanceLevelPair.h:
	* libMRML/include/CAccessorAdminCollection.h:
	* libMRML/include/CQuery.h:
	* libMRML/include/CQParallel.h:
	* libMRML/include/CXMLElement.h:
	* libMRML/include/CDynamicQueryFactory.h:
	* libGIFTAcHierarchy/include/CAFHierarchy.h:
	* libGIFTAcHierarchy/include/CAcHierarchy.h:
	* GIFTServer/CSelfDestroyPointer.h:
	* GIFTServer/CArraySelfDestroyPointer.h:
	* libGIFTAcPerl/include/CAFPerl.h:
	* libGIFTAcPerl/include/CAcPerl.h:
	* libGIFTQuHierarchy/include/CQHierarchy.h:
	* libGIFTQuPerl/include/CXMLTripletList.h:
	* libGIFTQuPerl/include/CQPerl.h:
	* libGIFTQuPerl/include/CXMLTriplet.h:
	* libGIFTAcURL2FTS/include/CAFURL2FTS.h:
	* libGIFTAcURL2FTS/include/CAcURL2FTS.h:
	Added an #include "../include/uses-declarations.h"
	for proper namespace handling
	
2002-01-04  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/Makefile.am(libMRML-config.cc): bug in sed script
	INCLUDE substitution fixed

2002-01-08  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/cc/CCommunicationHandler.cc (getPeerAddressString): 
	(setPeerAddressString): 
	New functions to get at the peer address

	(readAndParse):	printing a time stamp, of the incoming message, 
	as well as the peer address string

	* GIFTServer/Server.cc(CProcessMessageParameters): 
	(main):
	Changes to get at the peer name, and pass it to the 
	communication handler

2002-01-03  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* expat/Makefile.am: changing sequence of subdirs. xmlwf must be last,
	gennmtab must be first.

	* PluginMaker/libGIFTQu@PLUGIN_NAME@/Makefile.am.in (SUBDIRS): 
	cc AND include
	
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/cc/CAF@PLUGIN_NAME@.cc.in: 
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/include/CAF@PLUGIN_NAME@.h.in: 
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/cc/CAc@PLUGIN_NAME@.cc.in: 
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/include/CAc@PLUGIN_NAME@.h.in: 
	* PluginMaker/libGIFTQu@PLUGIN_NAME@/cc/CQ@PLUGIN_NAME@.cc.in: 
	* PluginMaker/libGIFTQu@PLUGIN_NAME@/include/CQ@PLUGIN_NAME@.h.in: 
	adjusting include paths
	
2002-01-03  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* PluginMaker/configure.in.in(AC_OUTPUT): generate
	make files in include directories

	* PluginMaker/gift-plugin-maker.pl (wanted): don't copy
	files in the CVS directory when making plugin

2001-12-29  Wolfgang M&uuml;ller  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/cc/libMRML-config.pre-cc: 
	New file
	

2001-12-27  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* libMRML/cc/CCommunicationHandler.cc (addToMultiResponse): 
	don't add empty trees

	* PluginMaker/libGIFTQu@PLUGIN_NAME@/include/Makefile.am.in: 
	* PluginMaker/libGIFTAc@PLUGIN_NAME@/include/Makefile.am.in: 
	new files

2001-12-26  Wolfgang M&uuml;ller  <muellerw@cui.unige.ch>

	* expat/xmlwf/Makefile.am(wf_HEADERS): 
	* expat/xmlparse/Makefile.am (parse_HEADERS): 

2001-12-23  Wolfgang M&uuml;ller  <Wolfgang.Mueller@cui.unige.ch>

	* expat/xmltok/Makefile.am (INCLUDES): adding gennmtab

	* expat/gennmtab/Makefile.am: making nametab.h at the right 
	place and time

2001-12-11  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/include/CQMultiple.h: 
	* libMRML/cc/CQMultiple.cc:
	Changes to accomodate merging by URL (instead of merging by ID).
	

	* Doc/Doxyfile.in (PROJECT_NAME): create ini file with
	@PACKAGE@ and @VERSION@ that will be substituted.

	* FeatureExtraction/Makefile.am (EXTRA_DIST): install headers

	* GIFTServer/gift-mrml-messages/Makefile.am: 
	gift-ihandshake.pre-mrml gift-iconfigure.pre-mrml

	* GIFTServer/gift-config/Makefile.am (EXTRA_DIST): gift-config.mrml

	* libGIFTAcInvertedFile/include/Makefile.am (noinst_HEADERS): 
	there were wrong headers in this file

	* expat/xmltok/Makefile.am (EXTRA_DIST): xmltok_impl.c xmltok_ns.c
	are actually  include files which need to be distributed using EXTRA_DIST

	* dtd/Makefile.am: make mrml.dtd part of the distro

	* Doc/Makefile.am: making doc makefile proof against missing tools

	* scripts/perl/Makefile.am: making sure all prerequisites are distributed

2001-12-10  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* bootstrap-cvs.sh: add missing
	* expat/Makefile: removed

	Globally: moving automatically generated files
		out of CVS
	Move towards a working "make dist" target
	
2001-12-08  MUELLER Wolfgang  <Wolfgang.Mueller@cui.unige.ch>

	* libGIFTAcDistanceMatrix/include/Makefile.am: new file
	* libGIFTQuPerl/include/Makefile.am: new file
	* libGIFTQuPerl/Makefile.am(noinst_HEADERS): 
	* libMRML/include/Makefile.am(noinst_HEADERS): 
	make sure that *.h files are distributed

	* scripts/perl/Makefile.am (EXTRA_SCRIPTS): pre-
	pre-files must be distributed
	
	* libSquirePPM/Makefile.am (noinst_HEADERS): 

	* bootstrap-cvs.sh: Added bootstrap script which
	is to be called when having checked out the GIFT from
	CVS. 
	
	

2001-12-03  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/include/CQMultiple.h(mUsesFastQuery): 
	new attribute which checks if fastQuery is used 
	or not. This means either result merging by 
	URL (query) by ID (fastQuery). 

2001-11-23  Wolfgang Mller  <muellerw@cui.unige.ch>

	* dtd/mrml.dtd(query-result): can contain
	multiple query-result-element lists
	(query-step): changing the sequence in the model
	for working around bug in dtd-to-tex

2001-11-08  Wolfgang Mller  <muellerw@cui.unige.ch>

	* dtd/mrml.dtd: query step implied

2001-10-11  Wolfgang Mller  <muellerw@cui.unige.ch>

	* dtd/mrml.dtd: I added "error" tags as children of
	response tags where useful. The goal is to have components
	report their errors, and thus to make it clearer where
	the error occurred.

2001-11-01  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* dtd/mrml.dtd: added cui-text-query tag to dtd,
	enabled multiple user-relevance-lists in one query-step
	added cui-query-string.
	

2001-10-25  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CCommunicationHandler.cc(endMultiRequest): 
	* libMRML/cc/CCommunicationHandler.cc(startMultiRequest): 
	putting time stamp generation back into the code. Time stamp
	generation is interesting for logging

	* GIFTServer/Server.cc (main): write out into
	log file the time at which the GIFT was started 
	(as XML comment)	

2001-10-24  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* configure.in: Changed warning message for 
	enable-interactive.
	

	* libMRML/cc/Makefile.am (INCLUDES): removed doubly
	specified LDFLAGS

	* gift-install-prerequisites.pl: Heavy modification
	in all the script 

2001-10-16  Wolfgang Mller  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/cc/CAccessorAdminCollection.cc(getProxy): 
	* libMRML/include/CAccessorAdminCollection.h: 
	To counter problems with people who do queries
	to a collection with "" as ID, give back
	the default collection to the request.

	This is a quick but useful fix, please see
	code for caveats
	
2001-10-11  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CSessionManager.cc: Returning error tag
	if unknown session

2001-09-27  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CSessionManager.cc(query): 
	* libMRML/cc/CAlgorithmCollection.cc (CAlgorithmCollection): 
	Moving calls to my_throw in a way that they are USED =>
	this makes compilers with good exception handling necessary.

2001-05-31  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* configure.in: changeing package version number

2001-09-10  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CQMultiple.cc: CQMThread gets 
	an additional attribute: mWeight. mWeight
	describes which weight the result obtained
	by this thread should receive. It has to be
	taken care of manually, and it does not cause
	any thing to happen automatically.
	add CQMThread::getWeight function
	(fastQuery): using CQMThread::getWeight() for
	weighting result correctly.

2001-07-30  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: 
	* configure.in: add option --disable-foreign-urls and compiler
	define IGNORE_UNKNOWN_URLS for disabling people's use of URLs 
	that are not part of the collection queried.

	* scripts/perl/gift-url-to-fts.pre-pl (convertURLToFeatureFile): 
	adding a line that logs the external URL along with the time and
	the thumbnail file, as well as the name of the feature file generated

2001-05-08  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/include/CSessionManager.h (CSessionManager): 
	* libMRML/cc/CSessionManager.cc (CSessionManager): 
	adding a newSession function, that creates a session with a           given ID in case of a user requesting a non-exsistent 
	session.

2001-05-07  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CSessionManager.cc: Removed my_throw
	in case of unknown session for query

2001-04-21  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* FeatureExtraction/extract_block_features.c(init_feature_variables): 
	Applied David Squire's bug fix for wrong features
	(int) becomes rint()

	* configure.in: new flag __GIFT_FREE_UNUSED_ACCESSORS
	default is not to free unused accessors, in order to
	increase speed. Real solution to this would be some
	cacheing method.

	(AM_INIT_AUTOMAKE): Changed package version to 0.1.6pre2

2001-05-31  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* GIFTServer/generateInvertedFile.cc: have to initialise
	gMutex. Otherwise failure in gift-generate-inverted-file when
	doing multi-threading 

2001-05-22  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/cc/CQMultiple.cc (fastQuery): commenting out 
	lTemporary [was unused].

	* scripts/perl/gift-add-collection.pre-pl (wanted): 
	removing ^ in front of second http: s[^http:/][^http://]
	is now s[^http:/][http://]

	* libMRML/cc/CIDRelevanceLevelPair.cc: 
	* libMRML/include/CIDRelevanceLevelPair.h: Added cmath include,
	as well as an author notice
	

	* libMRML/include/CAlgorithm.h(CAlgorithm): 
	* libMRML/cc/CAlgorithm.cc(CAlgorithm): 
	Now we can construct an algorithm not only from another algorithm, but also 
	from an exsisting CXMLElement

	* libMRML/include/CAccessorAdminCollection.h: 
	making private classes public where necessary

	* libMRML/cc/CQueryTreeNode.cc(configure): inAttributes
	is not any more a flat attribute list, but a tree of type
	CXMLElement

2001-04-19  Wolfgang Mller  <Wolfgang.Mueller@cui.unige.ch>

	* libMRML/cc/CAccessorAdmin.cc(closeAccessor): 
	CMutex/gMutex include
	New diagnostics including process ID
	(openAccessor): openclosecounter was not incremented
	when reusing accessor. fixed.

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (URLToFeatureList): 
	return emty feature list instead of null pointer

	* libGIFTAcInvertedFile/cc/CDocumentFrequencyList.cc: 
	removing mutex from readbinary [should be already mutexed]
	(CDocumentFrequencyList) in default constructor, create array
	of one element to avoid segfault? removed assertion that
	makes the program fail in any case.

	* libMRML/cc/CMutex.cc (CMutex): printing out
	the lock pids

	* libGIFTAcInvertedFile/cc/CDocumentFrequencyList.cc(readBinary)	: 
	printing out the pid.

	* libMRML/include/CQueryTreeNode.h: changed
	CSelfDestructionPointer<CAlgorithm>
	CSelfDestructionPointer<CQuery>
	to CAlgorithm* CQuery* respectively

	* libMRML/cc/CQueryTreeNode.cc(~CQueryTreeNode): 
	Destroying mContent and mAlgorithm by hand
	to control destruction sequence

	* GIFTServer/Makefile.am: removed references
	to gift-debug-test

2001-04-17  Wolfgang Mller  <Wolfgang.Mueller@cui.unige.ch>

	* libGIFTQuInvertedFile/cc/CQInvertedFile.cc: added decent 
	destructor which closes the accessor on destruction

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: changing
	local to global mutex

	* libMRML/cc/CCommunicationHandler.cc (endMultiRequest): 

2001-02-02  Wolfgang Mller  <Wolfgang.Mueller@cui.unige.ch>

	* configure.in: Changing quotes "" to [] in all calls
	of AC_MSG

2001-04-12  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CXMLElement.cc(clone): changeing
	copy() instruction to use of CAttributeList
	copy constructor.

	* libMRML/cc/CXMLElementBuilder.cc: adding empty
	default constructor

2001-04-11  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/Makefile.am (libMRML_la_SOURCES): 
	adding CXMLElementBuilder to this list

2001-04-09  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* configure.in(CXXFLAGS): set flags for efence
	

	* libMRML/cc/CAttributeList.cc: took out a couple
	of checknprints as well as a call to check()

2001-04-05  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* configure.in: allow full multithreading

	* libMRML/cc/CAttributeList.cc: changing some
	printouts to asserts to increase speed.

2001-04-04  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CDebuggingMemoryManager.cc: 
	* libMRML/include/CDebuggingMemoryManager.h: 
	* libMRML/include/myNew.h: 
	* GIFTServer/Server.cc: 
	replacing memory management in order to have a better view
	on what happens in memory. part of memory overwrite problems
	and their solutions (hopefully).

	* libMRML/cc/CSessionManager.cc(setActiveAlgorithm): 
	* libMRML/cc/CAlgorithmCollection.cc(makeDefaultAlgorithm): check
	the default algorithm.
	

2001-04-03  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CMagic.cc: adding to assertion some
	printout to cout

	* libMRML/cc/CAttributeList.cc: 
	adding mutex locks
	
2001-03-29  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/include/CXMLElement.h: 
	adding mMutex

	* libMRML/cc/CQMultiple.cc: put back copying of
	CXMLElement on construction of CQMThread
	the help-gplusplus mailing list suggests there is
	a severe problem in bastring. quite a number of
	people report mystical problems. The general strategy
	is now to avoid synchronous reads on string 
	incarnations.

2001-03-28  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* configure.in:
	* libMRML/cc/CQMultiple.cc: 
	added  __GIFT_CQMULTIPLE_TREADS__
	 __NO_GIFT_CQMULTIPLE_TREADS__

	* configure.in:
	* GIFTServer/Server.cc: 
	added  __GIFT_SERVER_TREADS__
	 __NO_GIFT_SERVER_TREADS__


	* configure.in:
	* libMRML/cc/CQMultiple.cc: 
	* libMRML/cc/CMutex.cc: 
	* libMRML/include/CMutex.h: introduced new flag
	__GIFT_USES_THREADS__ instead of stupid use of
	HAVE_LIBPTHREAD

	* scripts/emacs-lisp/gift-compile-current.el (gift-Utomake): 
	splitting concat strings in another way to make commenting 
	options easier

2001-04-02  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CAttributeList.cc: 
	For verifying if there some bugs which seem
	to reside in the string classes kill the GIFT, 
	I am changing the type etc. of the attribute
	list to char wherever possible

	I am starting out with changing map<string,string>
	to map<string,char*> which is the easiest for
	going to map<char*,char*> I have to write a comparison
	operator

2001-03-14  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/include/CXMLElementBuilder.h: 
	* libMRML/cc/CXMLElementBuilder.cc: added #ifdefs
	around debugging printouts
	
2001-03-27  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CQMultiple.cc: cut out lone of CQuery
	in CQMThread

	* libMRML/cc/CAttributeList.cc: checking if attributes
	are longer than 200 char.

	* libMRML/cc/CTimeStampGenerator.cc (generateTimeStamp): 
	added lock/unlock

	* libMRML/cc/CCommunicationHandler.cc(readAndParse): 
	adding expressive debugging printouts to cerr

	* scripts/perl/CFeedbackClient.pre-pm (addCollection): 
	Uncommented if $vDEBUG{addCollection};
	Applied Patch by Henning Mller:
	He sais:
	this patch basically changes two things. It adds 
	a new flag to the debug options, so I can block 
	any output on the screen in CFeedbackClient. I
	just called it others, so it does not conflict 
	with any of yours.
	The other problem I had when using the benchmark
	test was an error with an access to an undefined 
	hash element in getAlgorithm. I check wether this 
	element is defined and if not, I sent adefault back.

2001-03-26  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* GIFTServer/Server.cc: commented lock/unlock pair
	in processMessage
	
	* configure.in: Added -D_PTHREADS for multithreading
	

2001-03-23  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CQuery.cc (query): added mutex lock

	* scripts/perl/gift-add-collection.pre-pl: 
	Collections reference url2fts, however, the file
	name must be url2fts.xml

2001-03-22  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CCommunicationHandler.cc: 
	Currently each connection mutex-locks. I.e.
	multithreading is only used in CQMultiple.cc
	
	* libMRML/include/CXMLElement.h: Tracking misterious
	stuff happening when multithreading. Adding mutex
	to CXMLElement.

2001-03-21  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libMRML/cc/CQMultiple.cc (fastQuery): 
	I seem to have solved a problem regarding a leak
	of ressources when doing multi threading. You can
	find further description in the comment EX-LEAK

2001-03-08  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* GIFTServer/Server.cc: Teardown: tries to read
	all characters (includin junk) from the other side 
	before finally closing the socket.

	* scripts/perl/gift-start.pre-pl: a log of the 
	PRINTOUT of each gift instance goes now to a
	temporary file of the type gift$PID.tmplog
	$PID being the proces id of the instance of 
	gift-start.pre-pl (NOT the instance of the GIFT)

2001-03-07  MUELLER Wolfgang  <muellerw@cui.unige.ch>


	* dtd/mrml.dtd: added cui-time-stamp tag with 
	calendar-time attribute

	* libMRML/cc/Makefile.am: corresponding changes

	* libMRML/include/CTimeStampGenerator.h: 
	* libMRML/cc/CTimeStampGenerator.cc: 
	Added these files. A CTimeStampGenerator is made for
	generating time stamps

	* libMRML/cc/CSessionManager.cc(openSession): When opening 
	session, add session-name and user-id to the resulting
	<ackn-session-op ...> element. This resolves some ambiguities 
	in parsing log files. This is OPTIONAL MRML.
	
2001-03-02  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/include/CXMLElementBuilder.h: 
	* libMRML/cc/CXMLElementBuilder.cc: Added this class
	it builds an XML tree from a string. This currently is
	done within CCommunicationHandler, but I found I am using
	this about everywhere, so I put it into a special class.

	* libMRML/include/CCommunicationHandler.h: 
	small changes in the comments

2001-02-21  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl (wanted): adding
	code for URL escaping.

	* scripts/perl/gift-start.pre-pl (REAPER): added reaper
	to get rid of annoying problem in gift-start

2001-02-15  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/cc/CDocumentFrequencyElement.cc: 
	_NO_PRINTOUT_WRITE_BINARY ifdeffed out annoying printouts
	on writing

	* libGIFTAcInvertedFile/include/merge_sort_streams.h: 
	replaced "int" by streampos to follow linux's evolution

	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc (CAcURL2FTS): 
	made lBuffer a global variable. FIXME: it's not elegant
	to slurp in the whole thing at once.

	* GIFTServer/Makefile.am:
	* configure.in: UNPUBLISHED_DIR contains
	now the name of the unpublished directory
	AND the -L flags. This is a fix for libtool
	problems I had
	

2001-02-13  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* GIFTServer/generateInvertedFile.cc (main): 
	changed url2fts to url2fts.xml

2001-02-06  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl (wanted): 
	changing the argument list in the "system" calls to
	avoid shell escapes and misinterpretation of 
	spaces.

	* scripts/perl/gift-start.pre-pl:
	new file. This script starts up the GIFT, and sends out
	mails if the gift goes down.

2001-02-05  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc: changed XML Error
	message to give information in which file the error 
	occured.

	* scripts/perl/CXTVWriter.pre-pm: 
	use CXMLTreeVisitor;

2001-01-31  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (_NO_CONSISTENCYPRINT):
	(_NO_CHECK_CONSISTENCY): These defines block some annoying
	checks and check printouts, that are done when indexing
	collections, and which take MUCH longer than the indexing
	itself.

	* scripts/perl/Makefile.am (distclean): Added this target.
	It does the same as make clean in this directory

	* libMRML/cc/CCommunicationHandler.cc(parseString): do not
	exit on XML error

	* libMRML/cc/CAlgorithmCollection.cc (CAlgorithmCollection): 
	* libMRML/cc/CAccessorCollection.cc(CAccessorCollection): added to
	printout on XML error.

	* GIFTServer/Makefile.am: remove data_DATA line

2001-01-24  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* configure.in: replaced all "CPPFLAGS" by
	"CXXFLAGS"
	$CC pthread-compile-test-program.cc uses
	LDFLAGS now.

2001-01-23  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* GIFTServer/Makefile.am(gift_LDADD): changed link sequence
	we need to link libMRML first. Otherwise the perl stuff does
	not get linked correctly

2001-01-11  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/CXMLTreeBuilder.pm (handleChar): added ?
	after newline in regexp. makes me catch more whitespace
	text nodes.

2001-01-03  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libGIFTQuBayesian/cc/Makefile.am (libGIFTQuBayesian_la_SOURCES): 
	Renamed CIFQuickAndDirtyHunter to CQTracker.
	
	* libGIFTQuBayesian/cc/CIFQuickAndDirtyHunter.cc:
	* libGIFTQuBayesian/include/CIFQuickAndDirtyHunter.h:
	* libGIFTQuBayesian/cc/CQTracker.cc:
	* libGIFTQuBayesian/include/CQTracker.h:
	Renamed CIFQuickAndDirtyHunter to CQTracker. This fits
	the naming scheme, it's shorter, and it meeds the case better.

2000-12-29  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/emacs-lisp/gift-compile-current.el (gift-associated): 
	Change routines for finding associated files so that they
	cope also with flat directory structures.
	(gift-switch-to-associated-h): 

2000-12-28  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libGIFTAcURL2FTS/include/CAcURL2FTS.h: 
	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc:
	adding the functions newStartURL2FTSElement
	newEndURL2FTSElement in order to read url2fts.xml
	files.

	* scripts/perl/gift-add-collection.pre-pl: 
	Making this script xml-ready.

2000-12-24  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CXEVCommunication.cc: 
	changed include CCommunicationHandler

2000-12-23  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/Makefile.am (libMRML_la_SOURCES): 
	* GIFTServer/Makefile.am (gift_SOURCES): 
	* GIFTServer/CCommunicationHandler.cc:
	* GIFTServer/CCommunicationHandler.h:
	* libMRML/cc/CCommunicationHandler.cc:
	* libMRML/include/CCommunicationHandler.h:
	moved CCommunicationHandler.cc to libMRML

2000-12-20  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl: 
	appending an "/" to lIndexPrefix. We assume
	that the path ends with a "/" throughout the
	program.
	

2000-12-15  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/emacs-lisp/gift-compile-current.el (gift-Utomake): 
	(gift-Itomake): use --enable-multi-threading option

	* NEWS: news.

	* Doc/gift-guide.sgml: documented new options of
	configure. Erased "done" items from "to-do" list.
	
	* configure.in: created --enable-multi-threading 
	option. 

2000-12-14  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libGIFTQuPerl/cc/plug_in_fo.cc: surrounding
	the whole file with #ifdef __GIFT_WITH_PERL__

2000-12-13  Wolfgang Mller  <muellerw@cui.unige.ch>

	* Doc/Makefile.am (CLEANFILES): Don't remove 
	gift-guide.txt and configuring-and-hacking-the-gift.txt
	these files are part of the distribution. Now.

	* README: New short readme for the impatient

	* configure.in: Making gift-install-prerequisites.pl
	part of the configuration process.

	* Doc/gift-guide.sgml (Caveat): Adding and changing
	some parts about the installation procedure which
	has become much nicer.

	* gift-install-prerequisites.pl: added this file
	it automatically installs all software prerequisites.
	that are needed by the GIFT.

2000-12-10  Wolfgang Mller  <muellerw@cui.unige.ch>

	* dtd/Makefile.am: making automatically 
	libMRML/cc/mrml_const.cc and libMRML/include/mrml_const.h
	and mrml_const.java using scripts/perl/gift-dtd-to-keywords.pl
	
	* Makefile.am (SUBDIRS): changing sequence. make
	scripts first, then dtd, then libraries. 

2000-12-07  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CAlgorithm.cc(getInheritsFrom):
	* libMRML/include/CAlgorithm.h(getInheritsFrom):
	added

2000-12-06  Wolfgang Mller  <muellerw@cui.unige.ch>

	* GIFTServer/CCommunicationHandler.cc(waitReadStream):
	Added error handling

	* GIFTServer/CCommunicationHandler.h: A mutex for
	the communication handler makes sure that
	no two threads write to the log in the same moment.
	

2000-12-05  Wolfgang Mller  <muellerw@cui.unige.ch>

	* GIFTServer/Server.cc: waiting for eof from
	client for better teardown

	* GIFTServer/CCommunicationHandler.cc(waitReadStream): removed
	&lWaitingTime from read wait
	

2000-12-01  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/include/CAcIFFileSystem.h: 
	improving doc of the constructor

	* Doc/Makefile.am: New targets and new cleanfiles
	for making more documentation
	(noinst_DATA): Now the documentation is automatically made.
	(system-doc): Doxyfile is a precondition for the target.

	* Doc/Doxyfile (MAN_EXTENSION): 
	Manpages into 3gift

	* configure.in: replacing kdoc by doxygen.

2000-11-30  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-url-to-fts.pre-pl (convertURLToFeatureFile): 
	did not give __BINDIR__ for gift-extract-features

	* libMRML/cc/CQMultiple.cc(fastQuery): Giving something
	to do for the main thread
	(CQMThread): adding function callFunction which does
	not spawn a thread

	* scripts/perl/gift-add-collection.pre-pl: 
	lDatabaseName became lCollectionName
	Reading DOT_FILE .gift-add-collection
	Primitive variable reprlacement
	Moved generation/copying of configuration files behind
	processing of the --help option

2000-11-29  Wolfgang Mller  <muellerw@cui.unige.ch>

	* configure.in: Now doing explicit check for being
	able to lock recursively.

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (URLToFeatureList): 
	adjusted path to new directory.h [bugfix relative to unreleased
	version].

2000-11-28  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CSessionManager.cc: 
	* libMRML/include/CSessionManager.h:
	making CSession threadsafe:
	mMutexSession

	* libGIFTAcURL2FTS/include/CAcURL2FTS.h: 
	* libGIFTAcURL2FTS/cc/CAcURL2FTS.cc: 
	analog: adding mMutexURL2FTS
	
	* libGIFTAcHierarchy/include/CAcHierarchy.h: 
	adding mMutexHierarchy

	* libGIFTAcHierarchy/cc/CAcHierarchy.cc: adding
	mMutexHierarchy.lock()/unlock() to all functions

2000-11-27  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CQMultiple.cc: added function doQueryThread. 
	This function is supposed to run in a spawned thread.

	* configure.in: Added check for POSIX threads
	Changing versioning for libraries

	* GIFTServer/Makefile.am (gift_generate_inverted_file_LDADD): 
	Changing library paths to match reality...

	* GIFTServer/Server.cc (main): moving the construction
	of gHandler into the socket listening loop

	* GIFTServer/CCommunicationHandler.h: 
	* GIFTServer/CCommunicationHandler.cc: 
	Changed constructor to take the session manager
	as parameter, as well as the ostream of the logfile.
	The corresponding members become references instread
	of auto variables.
	Deleted unused members mSessionFile mConfigFile

	* GIFTServer/CCommunicationHandler.cc: 
	* libMRML/cc/CXEVCommunication.cc: 
	* libMRML/include/CXEVCommunication.h: 
	Disentangling the two classes in order to prepare them
	for multithreading.

	* libMRML/cc/CSessionManager.cc: Instead of throwing
	exceptions giving back error message in case
	of unknown session. Advantage: easier multithreading.

2000-11-24  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc: 
	adding lock/unlock calls to all functions

	* libMRML/include/CAccessor.h: Beginning to add
	multithreading using posix threads. Adding
	conditionally a lock/unlock, and a mutex.
	
	

2000-11-22  Wolfgang Mller  <muellerw@cui.unige.ch>

	* Doc/Makefile.am (CLEANFILES): the automatically
	generated documentation will now be deleted before
	shipping.

	* Doc/autoDoc/HTML: 
	* Doc/autoDoc/TeX:
	Deleted.

	* libGIFTAcInvertedFile/cc/Makefile.am:
	* libMRML/cc/Makefile.am:
	* libGIFTAcInvertedFile/cc/CAcIFFileSystem.cc (URLToFeatureList): 
	* libMRML/cc/CAccessorCollection.cc: These files
	now use directory.h . This makes the use of
	pre-cc obsolete. Makefile.am-s changed accordingly.

2000-11-21  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/include/CAccessorFactory.h(closeAccessor): 
	* libMRML/cc/CAccessorFactory.cc(closeAccessor): 
	Added closeAccessor function
	
	* libMRML/include/CAccessorProxy.h(CContent): 
	* libMRML/cc/CAccessorProxy.cc(openAccessor): 
	* libMRML/include/CAccessorFactoryContainer.h(CContent): 
	* libMRML/cc/CAccessorFactoryContainer.cc(openAccessor): 
	Moved the open/close-accessor logic from the
	factory container to the accessor proxy.
	Affects openAccessor in both classes, as well
	as the definition of a map which administrates this logic.
	This is mContent of type CContent

	* libMRML/include/CAccessorFactoryContainer.h: 
	* libMRML/cc/CAccessorFactoryContainer.cc: 
	Changed params of CAccessorFactoryContainer::configure
	to CXMLElement* [was const].

2000-11-20  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/include/Makefile.am: 
	* libMRML/Makefile.am: 
	generating a file directory.h from ./configure results
	in order to get around this ugly pre-cc business
	
	
	* GIFTServer/Makefile.am: Added remark
	that CAcPerl and CQuPerl HAVE to be linked
	at linking time.

	* libMRML/include/CAccessorFactoryContainer.cc: 
	* libMRML/cc/CAccessorFactoryContainer.cc: 
	Some aftermath of cleaning the accessorfactorycontainer business up.
	CAccessorFactoryContainer::openAccessor needed a new parameter.
	changed call to openAccessor
	
	* libMRML/cc/CAFPlugin.cc: 
	* libMRML/include/CAFPlugin.h: 
	Added these files. They implement an accessor Factory which
	functions for plugged-in accessors.
	
	* libMRML/cc/CAccessorFactoryContainer.cc: 
	Receives now a parameter which is an XML parse
	tree. This tree is scanned for names of directories.
	These directories will be scanned for plugins.
	Changed error message, if a plugin is registered twice



2000-11-18  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CAccessorFactoryContainer.cc: Made
	a constructor for this function

2000-11-17  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libMRML/cc/CAlgorithmCollection.cc:
	* libMRML/cc/CAccessorCollection.cc:
	  ifdef-ed out some debugging printout
	
	* libMRML/include/CAccessorCollection.h: 
	* libMRML/cc/CAccessorCollection.cc: unused function
	  getAllQueryMethods deleted

	* libMRML/cc/CAccessorProxy.cc(constructor): 
	emptied constructor of things which are realy none of
	CAccessorProxy's business [moved into 
	CAccessorFActoryContainer]
	(constructor): Gets new parameter inFactoryContainer

	* libMRML/cc/CAccessorCollection.cc(constructor):
	Give mFactory as parameter to new new CAccessorProxy

	* libMRML/include/CAccessorCollection.h: mFactory
	becomes new member

	* libMRML/cc/CDynamicBaseTypeFactory.cc: 
	Two query engines are not plugins CQPerl and CQMultiple.
	CQMultiple will be used too often, and CQPerl would be
	only doable if we could count on libPerl being present
	on the system.
	Now I consider CQuery plugins working. Tomorrow we
	do the same with CAccessors.

	* libMRML/cc/CBaseTypeFactory.cc (makeQuery): ifdef-ed out
	this function if LINK_DYNAMICALLY

	* libMRML/cc/CSessionManager.cc(makeQuery):
	call works without algorithm collection now

	* libMRML/cc/CAlgorithmCollection.cc: 
	* libMRML/include/CAlgorithmCollection.h: mFactory
	removed. becomes inFactory in makeQuery, which means
	that makeQuery has become quite obsolete

	* libMRML/cc/CAlgorithmCollection.cc (constructor): 
	Takes now a CBaseTypeFactory as parameter

	* libMRML/include/CDynamicBaseTypeFactory.h: Is now inherited
	from CBaseTypeFactory

	* libMRML/include/CBaseTypeFactory.h: making makeQuery
	virtual

	* libMRML/include/CSessionManager.h (class CSessionManager): 
	Added mBaseTypeFactory

	* libMRML/cc/CSessionManager.cc(setActiveAlgorithm): 
	added inBaseTypeFactory to the call, handed through
	to buildQueryTree
	

	* libMRML/include/CQueryTreeBuilder.h: 
	* libMRML/cc/CQueryTreeBuilder.cc: 
	Added an inBaseTypeFactory parameter to the configure
	call. and to the buildQueryTree function.
	

	* libMRML/include/CQueryTreeNode.h: Things are getting
	hot. I removed mFactory from CQueryTreeNode. This 
	design is not compatible to the idea of having external
	plugins.

	Added an inBaseTypeFactory parameter to the configure
	function.

	* libMRML/include/CAlgorithmCollection.h:
	* libMRML/include/CAlgorithmCollection.cc:
	Changed things that dependent on the -DLINK_DYNAMICALLY
	flag, either the classic CBaseTypeFactory or the
	new CDynamicBaseTypeFactory is used

	* libMRML/cc/Makefile.am:
	Added the aforementioned files
	
	* libMRML/cc/CQueryPlugin.cc: 
	* libMRML/include/CQueryPlugin.h: 
	* libMRML/include/CDynamicBaseTypeFactory.h: 
	* libMRML/cc/CDynamicBaseTypeFactory.cc: 
	New files: The dynamic pendant to CBaseTypeFactory. It scans
	a directory for suitable .so-s and then calls their plug_in_fo
	functions. This gets stored in CQueryPlugin objects.
	
	* libGIFTQuHierarchy/cc/plug_in_fo.cc: 
	* libGIFTQuInvertedFile/cc/plug_in_fo.cc: 
	* libGIFTQuPerl/cc/plug_in_fo.cc: 
	New files. This file contains functions to be used
	as plugin information.
	
2000-11-16  Wolfgang Mller  <muellerw@cui.unige.ch>

	* GIFTServer/CCommunicationHandler.cc: 
	moved the "ID administration subsystem"
        TID gID; to libMRML/cc/CSessionManager.cc



2000-11-15  Wolfgang Mller  <muellerw@cui.unige.ch>

	* GIFTServer/Server.cc: Cleaned include list
	and added CAcURL2FTS accessor

	* GIFTServer/CCommunicationHandler.h: Cleaned the include list
	* GIFTServer/CCommunicationHandler.cc: Cleaned the include list

	* libGIFTAcInvertedFile/include/CAcIFMySQL.h: 
	added include of CAcURL2FTS

	* libMRML/include/CAccessor.h: 
	* libGIFTAcInvertedFile/include/CAcInvertedFile.h: Slimmed list of includes

	* GIFTServer/Makefile.am: 
	(gift_LDADD): removed @PERL_LD_ADD@ from this target and put it
	into libInvertedFile_la_LIBADD

	* libInvertedFile/cc/Makefile.am (libInvertedFile_la_LIBADD): 
	created this target.

	* GIFTServer/CSelfDestroyPointer.h (CSelfClonePointer): 
	Added <T> to CSelfClonePointer

	* CAccessor.h:
	* CAccessorCollection.h:
	* CAccessorElement.h:
	* CAccessorFactory.h:
	* CAccessorFactoryContainer.h:
	* CAccessorProxy.h:
	* CAlgorithm.h:
	* CAlgorithmCollection.h:
	* CAttributeList.h:
	* CBaseTypeFactory.h:
	* CIDRelevanceLevelPair.h:
	* CIDRelevanceLevelPairList.h:
	* CMagic.h:
	* CPropertySheetList.h:
	* CRelevanceLevel.h:
	* CRelevanceLevelList.h:
	* CSessionManager.h:
	* CXEVCommunication.h:
	* CXEVTripletList.h:
	* CXMLElement.h:
	* CXMLElementVisitor.h:
	* CXMLHelper.h:
	* GIFTExceptions.h:
	* mrml_const.c:
	moved these files from libInvertedFile/include to libMRML/include

	* CAccessor.cc:
	* CAccessorCollection.cc:
	* CAccessorElement.cc:
	* CAccessorFactory.cc:
	* CAccessorFactoryContainer.cc:
	* CAccessorProxy.cc:
	* CAlgorithm.cc:
	* CAlgorithmCollection.cc:
	* CAttributeList.cc:
	* CBaseTypeFactory.cc:
	* CIDRelevanceLevelPair.cc:
	* CIDRelevanceLevelPairList.cc:
	* CMagic.cc:
	* CPropertySheetList.cc:
	* CRelevanceLevel.cc:
	* CRelevanceLevelList.cc:
	* CSessionManager.cc:
	* CXEVCommunication.cc:
	* CXEVTripletList.cc:
	* CXMLElement.cc:
	* CXMLElementVisitor.cc:
	* CXMLHelper.cc:
	* GIFTExceptions.cc:
	* mrml_const.c:
	moved these files from libInvertedFile/cc to libMRML/cc
	
	* libMRML/Makefile.am: created

	* configure.in: added entry for libMRML. This library will
	contain all the MRML-specific parts of the GIFT, i.e. the
	framework. I will subsequently break down libInvertedFile
	into smallerlibs which will eventualley end up as plugins.

	* GIFTServer/Server.cc: 
	* GIFTServer/CCommunicationHandler.cc: 
	moved sendMessage and readMessage from Server.cc to 
	CCommunicationHandler.cc in order to solve linking problems
	when using dynamic libraries
	
	* scripts/emacs-lisp/gift-compile-current.el (gift-GIFTServerMake): 
	Changed this function to do what the name sais 
	[quite a change, actually]. It now does the same as Utomake, but
	without configuring first.

	* GIFTServer/Makefile.am: adding -L$(libdir) to a 
	number of targets.

	* configure.in: restructured the file to use 
	libtool, inspired by the libtool demo

2000-11-12    <muellerw@pc71114.unige.ch>

	* scripts/perl/CGLDistanceMatrix.pre-pm: created

	* scripts/perl/CXTVWriter.pre-pm: moved 'use lib'
	statement out of CXTVWriter

2000-11-11    <muellerw@pc71114.unige.ch>

	* libInvertedFile/include/CAcDistanceMatrix.h: 

	* GIFTServer/obsolete.cc:
	removed this file

2000-11-09    <muellerw@pc71114.unige.ch>

	* GIFTServer/gift-config/gift-config.pre-mrml(m/$lTheLine/):
	Changed query-paradigm tag. now clear that the types
	inverted-file and perl-demo can be used

	* scripts/perl/gift-add-collection.pre-pl (wanted): 
	deleted this line from collection tag
	cui-perl-script-file="__BINDIR__/CGIFTLinkDemo.pl"
	it is rather part of the algorithm tag

	* GIFTServer/gift-config/gift-config.pre-mrml: Setting
	pruning to 70% of the features as default, except
	for histogram features

	* libInvertedFile/include/CAcURL2FTS.h: Adding friend
	entry for CAcIFFileSystem.

	* libInvertedFile/cc/CAcIFFileSystem.pre-cc (checkConsistency): 
	Function did not compile (was defined out)
	
	* libInvertedFile/cc/CAcIFFileSystem.pre-cc (FeatureToList): 
	* libInvertedFile/cc/CAcIFFileSystem.pre-cc (getFeatureFile): 
	Removing old emulation of read binary for lists

	* libInvertedFile/cc/CDocumentFrequencyList.cc: 
	Cleaning up: making readBinary read also into a list

	* libInvertedFile/cc/CQInvertedFile.cc(buildQueryHash): 
	Cleaning error-prone redundancies.

2000-11-04    <muellerw@pc71114.unige.ch>

	* expat/Makefile (check): Adding a message
	into the expat makefile, along with the check
	target. Presently we do not run any
	checking, but at least the target should run 
	through.

2000-10-30  Wolfgang Mller  <muellerw@cui.unige.ch>

	* CAcInvertedFile.cc:
	* CAcInvertedFile.pre-cc:
	Files obsolete: deleted

	* GIFTServer/gift-config/gift-config.pre-mrml: 
	cui-perl-package attribute added

	* GIFTServer/gift-config/Makefile.am (data_DATA): 
	Removed InvertedFileFeatureDescription.db

	* GIFTServer/gift-config/gift-config.pre-mrml: 
	Changed line for cui-perl-script-file to reflect
	new perl embedding architecture and the
	location of gift-add-collection.pre-pl

	* scripts/perl/gift-add-collection.pre-pl: 
	Added part which automatically adds 
	gift-embed-perl-modules.pl

	* IFFDBase.db:
	* InvertedFileFeatureDescription.db:
	Deleted. They are now automatically generated
	during installation.
	
	
2000-10-29  Wolfgang Mller  <muellerw@cui.unige.ch>

	* Doc/Makefile.am (system-doc): Removed 
	"../libBayesian/include/*.h" from kdoc call.
	We cannot ship libBayesian, because we have
	to clear that yet (possible patents of others).

	* libInvertedFile/cc/CQPerl.cc (CQPerl): Changing
	completely the way CQPerl works. Reason for this are
	inherent memory leaks in the current version.

	* libInvertedFile/cc/CDocumentFrequencyList.cc: 
	Cured small bugs end(), end()const, setEnd()

	* libInvertedFile/cc/CAcPerl.cc: Adding destructor

2000-10-25  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CSelfDestroyPointer.h: 
	Bracketed out some debugging output: ifdef 
	_DEBUG_SELF_DESTROY_

	* scripts/perl/CXTVWriter.pre-pm (initialize): 
	Setting data mode in XML::Writer

2000-10-23  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAcInvertedFile.cc: The whole file
	was already commented out. These comments are now deleted
	inorder to de-obfuscate the line count

	* libInvertedFile/include/CXMLElement.h: Made destructor of
	CXMLElement virtual

	* libInvertedFile/include/CQuery.h: Made destructor of
	CQuery virtual.

	* libInvertedFile/include/CAccessor.h: Made destructor of
	CQuery virtual.

	* libInvertedFile/cc/CSessionManager.cc: added deleteSession
	function. 
	(setActiveAlgorithm): have to delete old mQueryTree before
	constructing new one.

	* libInvertedFile/cc/CXEVCommunication.cc: activated 
	delete-session signal.
	

	* libInvertedFile/cc/CAcIFFileSystem.pre-cc (FeatureToList): 
	Noticed that I have not used the readBinary function from the 
	CDocumentFrequencyList class. I am using it now.

	* libInvertedFile/cc/CQInvertedFile.cc(buildQueryHash): 
	* libInvertedFile/cc/CInvertedFileChunk.cc (writeBinary): 
	Replacement code for vector<CDocumentFrequencyElement>::push_back

	* libInvertedFile/include/CDocumentFrequencyList.h:
	* libInvertedFile/cc/CDocumentFrequencyList.cc:
	Adding functions to mimick STL, as well as function
	setEnd.

2000-10-22  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAcIFFileSystem.pre-cc: 
	Changed ifdef CDocumentFrequencyListIsVector to 
	ifndef CDocumentFrequencyListIsList

	* libInvertedFile/include/CDocumentFrequencyList.h: 
	* libInvertedFile/cc/CDocumentFrequencyList.cc: 
	Added a destructor + debugging code which counts up/down
	if the CDocumentFrequencyLists are properly 
	allocated/deallocated
	Replaced the use of vectors by the use of arrays
	

	* libInvertedFile/include/CWeightingFunctionPointerHash.h: 
	added function clear.

	* libInvertedFile/include/CXMLElement.h: 
	* libInvertedFile/cc/CXMLElement.cc: 
	Added destructor ~CXMLElement

	* libInvertedFile/include/CSessionManager.h: 
	* libInvertedFile/cc/CSessionManager.cc: 
	Added destructor for CSession
	(CSessionManager::closeSession): deleting the 
	session when closing for avoiding memory leaks.

	* libInvertedFile/include/CQueryTreeBuilder.h: 
	Changed type of CQueryContainer. Was before 
	map<string,CSelDestroyPointer<CQueryTreeNode> >
	This would lead to double destruction.

	* libInvertedFile/cc/CQueryTreeNode.cc: 
	* libInvertedFile/include/CQueryTreeNode.h: mContent
	changed type to CSelfDestroyPointer<CQuery>, i.e.
	it will be automatically destroyed on the destruction
	of the query tree. Had to put in some static_cast<CQuery*>
	in the cout ... lines.

2000-10-13  Wolfgang Mller  <muellerw@cui.unige.ch>

	* configure.in: instead of changing LD_FLAGS
	the check for perl now creates a new autoconf
	variable PERL_LD_ADD.
	(GIFTServer/Makefile.am): PERL_LD_ADD is used for
	linking gift. The standard method (LD_FLAGS) does not 
	work for reasons of sequence dependencies.

2000-10-12  Wolfgang Mller  <muellerw@cui.unige.ch>

	* configure.in: bugfix
	-D__GIFT_WITH_MYSQL__ to -D__GIFT_WITH_PERL__
	in perl expression

2000-10-10  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl: 
	help does not get called before anything happens.
	BAD. Changed this my moving a call to mkdir.
	(wanted): Added making a path to the thumbnail
	if necessary.

2000-10-09  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/xs_init.cc: 
	ifdef __GIFT_WITH_PERL__ comments out
	Perl-specific-parts, if needed.

	RELEASE 0.1.4 here
	
2000-10-08  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl (wanted): changed
	regexp which checks for image file name extensions to case 
	insensitive

	* Doc/gift-guide.sgml (Caveat): 
	This file was changed to make it more readable
	and to reflect some new features.

2000-10-06  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/Makefile.am: 

	* scripts/perl/gift-add-collection.pre-pl: 
	adding option --gift-home to specify a location
	for the configuration directory other than home,
	if the environment variable $GIFT_HOME is not set.

	* libInvertedFile/cc/CMatrix.cc:
	* libInvertedFile/include/CMatrix.h:
	* libInvertedFile/cc/CWeightedFeature.cc:
	* libInvertedFile/include/CWeightedFeature.h:
	* libInvertedFile/cc/CMatrixWithEigenVectors.cc:
	* libInvertedFile/include/CMatrixWithEigenVectors.h:
	* libInvertedFile/cc/Makefile.am (libInvertedFile_a_SOURCES): 
	removed CMatrix.cc CMatrixWithEigenVectors.cc 
	CWeightedFeature.cc as they are currently unused (old idea).

	* scripts/perl/gift-socket-workaround.pre-pl: 
	* scripts/perl/Makefile.am: 
	Removed gift-socket-workaround.pre-pl and related targets

	* libInvertedFile/cc/CAccessorProxy.cc: 
	* libInvertedFile/include/CAccessorProxy.h: 
	* libInvertedFile/include/CAFPerl.h: 
	* libInvertedFile/cc/CAFPerl.h: 
	* libInvertedFile/cc/CBaseTypeFactory.cc (makeQuery): 
	* libInvertedFile/include/CAcPerl.h: 
	* libInvertedFile/cc/CAcPerl.h: 
	* libInvertedFile/include/CQPerl.h: 
	* libInvertedFile/cc/CQPerl.cc: 
	ifdef __GIFT_WITH_PERL__ comments out
	Perl-specific-parts, if needed.

	* libInvertedFile/cc/Makefile.am (INCLUDES): 
	removed @PERL_CC_ADDITIONS@ 

	* GIFTServer/Makefile.am (gift_LDFLAGS): removed
	(gift_LDADD): removed @PERL_LD_ADDITIONS@ 

	* libInvertedFile/cc/Makefile.am (INCLUDES): 
	removed @MY_SQL_PLUS@ @MY_SQL@ 

	* configure.in: got rid of ugly perl code stuff. Implemented
	real test if -lsqlplus is there and working same for includes

	* scripts/emacs-lisp/gift-compile-current.el (gift-utomake): 
	Changed this to delete ./config.cache before deletion.

	* perl-compile-test-program.cc:
	File was added. This file is compiled when running
	./configure in order to test if perl is well installed.
	It should compile with a decently installed Perl 5.

2000-10-05  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAcIFMySQL.h: 
		...(class string) not accepted
	by gcc any more. 
	

	* GIFTServer/Server.cc (main): 
	gGIFTHome is now the variable which contains
	the current home directory of the gift.

2000-10-02  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CDNFullyWeighted.h:
	* libInvertedFile/include/CDocumentNormalizer.h:
	these obsolete files were deleted

	
	* libInvertedFile/include/CAcIFFileSystem.h: 
	* libInvertedFile/include/CAcInvertedFile.h: 
	* libInvertedFile/include/CAccessorImplementation.h: 
	deleted: #include "CCollectionFrequencyList.h"

	* libInvertedFile/cc/Makefile.am (libInvertedFile_a_SOURCES): 
	removed CCollectionFrequencyElement.cc

	* libInvertedFile/cc/CCollectionFrequencyElement.cc: removed
	* libInvertedFile/include/CCollectionFrequencyElement.h: removed
	* libInvertedFile/include/CCollectionFrequencyList.h: removed
	
	* libInvertedFile/cc/CAlgorithmIDList.cc: 
	* libInvertedFile/cc/CAlgorithmIDListList.cc: 
	* libInvertedFile/include/CAlgorithmIDList.h: 
	* libInvertedFile/include/CAlgorithmIDListList.h: 

	* libInvertedFile/cc/CSessionManager.cc (startConfigElement): 
	removed references to algorithm-id-list-list
	(toXML): removed "lReturnValue += CAlgorithmIDListList::toXML();"
	(convertPropertyToXML): commented out this function

	* libInvertedFile/include/CSessionManager.h: 
	removed #include "CAlgorithmIDListList.h"

	* libInvertedFile/cc/Makefile.am (libInvertedFile_a_SOURCES): 
	Removed AlgorithmIDList AlgorithmIDListList

	* libInvertedFile/cc/CAttributeList.cc: ifdef'ed out a couple 
	of debugging printouts. 

2000-09-29  Wolfgang Mller  <muellerw@cui.unige.ch>

	* Doc/Makefile.am (gift-guide.txt): Added this target.
	It makes gift-guide.txt which is then copied to README 
	by hand.

2000-09-27  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/CXMLTreeBuilder.pre-pm (addChildToTree): Changed
	debugging output

2000-09-26  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-add-collection.pre-pl (wanted): On finding
	a pre-exsisting feature file, gift checks, if this file is newer
	than the script. If so, the script will not generate a new feature
	file. This greatly simplifies re-indexing databases after adding 
	images. 

2000-09-25  Wolfgang Mller  <muellerw@cui.unige.ch>

	* scripts/perl/gift-url-to-fts.pre-pl (convertURLToFeatureFile): 
	* libInvertedFile/cc/CAcIFFileSystem.pre-cc (URLToFeatureList): 
	Removed feature file naming bug in the case of an previously 
	unknown image

	* libInvertedFile/cc/CQInvertedFile.cc: 
	If mModulo!=0, only features with 
	featureID % mModulo == mModuloClass are
	taken into account.

	* scripts/perl/CFeedbackClient.pre-pm (getAlgorithmID): 
	* scripts/perl/CFeedbackClient.pre-pm (getCollectionID): 
	Changed these functions in a way that they return identity
	if they are fed with an ID -instead of a number- by mistake.

	* libInvertedFile/include/CQInvertedFile.h: 
	* libInvertedFile/cc/CQInvertedFile.cc(CQInvertedFile::init): 
	Reading the attributes mrml::cui_pr_modulo mrml::cui_pr_moculo_class
	into the variable mModulo and mModuloClass.

	* libInvertedFile/include/mrml_const.h:
	* libInvertedFile/cc/mrml_const.cc:
	Newly generated these files from changed DTD using 
	gift-dtd-to-keywords.pl
	
	* dtd/mrml.dtd: added the attributes cui-pr-modulo and 
	cui-pr-modulo-class to algorithm

2000-09-22  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* GIFTServer/gift-mrml-messages/gift-iconfigure.mrml: 
	* scripts/perl/CFeedbackClient.pre-pm (configureSession): 
	Added a further optional parameter $lAdditionalAlgorithmAttributes.
	This is a string which will be placed at the position of an attribute
	within the MRML signal for configuration that will be sent to the 
	server.

2000-09-21  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* GIFTServer/gift-config/gift-config.pre-mrml: 
	Changed faulty reference to CVLDAudreyTam.pl to
	CViperLinkDemo.pl

	* scripts/perl/gift-mrml-client.pre-pl: Using Getopt::Long
	for better configuring this script.

	* ALLFILES: Viper has changed its name to GIFT. According
	to this all occurences of "viper" have been changed to "gift".
	Derived names have changed vrom CVL.... to CGL etc. The files
 	have also been MOVED accordingly. Sorry for this, but this gives
	us consistency.

2000-09-19  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* configure.in: adding --enable-set-web-publishing-directory
	--enable-set-web-publishing-location for improving
	v-add-collection.pl

	* Doc/viper-guide.sgml (Caveat): Added item containing 
	description how to "configure" SnakeCharmer after 
	unpacking.

2000-08-18  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* Doc/viper-guide.sgml (Always): Added changes to
	reflect changes in v-add-collection.pl . Also adding
	remarks about JAVA2 vs. JAVA1.1.

2000-08-17  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAlgorithmCollection.cc: Added function
	containsAlgorithmByType

2000-08-16  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAlgorithm.cc: Do attribute inheritance
	for CAlgorithms only (not for other XML elements) like e.g. 
	<property>

	* libInvertedFile/cc/CAccessorProxy.cc: added perl accessor
	entry

	* scripts/perl/v-add-collection.pre-pl: Putting thumbnails
	into a _thumbnail directory. if you are indexing ~/aaa, the
	thumbnails will be put into ~/aaa_thumbnails by default.

	* libInvertedFile/cc/CAlgorithmCollection.cc(CAlgorithmCollection::getAlgorithmByType): 
	New, more sensible strategy of returning default algorithm.
	
2000-08-15  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* scripts/perl/v-add-collection.pre-pl: In order to avoid 
	bugs, this v-add-collection.pre-pl creates for each collection
	created its InvertedFileFeatureInformation.db on the fly.

	More than that, it will now recognize if an image directory is in
	the public_html, and will set the options accordingly. One does
	not need to do anything to put things on the web.
	

	* ViperServer/viper-config/viper-config.pre-mrml: 
	Changed this file for providing a reasonable configuration for
	novice users  

2000-07-27  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAFIFMySQL.h: 
	* libInvertedFile/cc/CAFIFMySQL.cc: 
	Added file.

	* libInvertedFile/include/CDocumentFrequencyList.h: 
	Added default constructor

2000-07-17  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAcIFFileSystem.h: 
	* libInvertedFile/cc/CAcIFFileSystem.cc: 
	This class does what CAcInvertedFile did before.
	In order to avoid double inheritance, I had to make
	the CAcURL2FTS class a member [instead of the 
	inheritance that was used before].

	* libInvertedFile/include/CAcInvertedFile.h: 
	* libInvertedFile/cc/CAcInvertedFile.cc: 
	CAcInvertedFile has become purely abstract.
	
	* libInvertedFile/include/CAccessor.h: 
	* libInvertedFile/cc/CAccessor.cc: 
	* libInvertedFile/include/CAccessorImplementation.h: 
	* libInvertedFile/cc/CAccessorImplementation.cc: 
	CAccessor has become a pure abstract class.
	CAccessorImplementation contains now the 
	implementation of CAccessor. This is preparing the structure
	for accessors which access SQL databases.

2000-07-14  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAcURL2FTS.cc: 
	* libInvertedFile/include/CAcURL2FTS.h: 
	Adding accessors to the filenames in CAcURL2FTS

	* scripts/emacs-lisp/v-compile-current.el (v-switch-to-associated-c++): 	
	this function is now aware of the fact that there exsist files
	which have the extension .pre-cc and which will be turned into
	.cc by a sed script. This allows some preconfigurations.
	(v-switch-to-associated-h): the same.
	(v-associated): the same.
	(v-compile-current): dito 

2000-07-05  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* configure.in: "released" as 0.1.1

2000-07-03  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* Doc/Makefile.am (CLEANFILES): added viper-guide.info
	* Doc/Makefile.am (all): added target system-doc and 
	viper-guide.info, in a way that the Makefile will try to make
	them, however, building will be continued even if the Doc cannot
	be made.

2000-07-03  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* Doc/viper-guide.sgml : removing remarks about
	known bugs which have been fixed in the meanwhile.

2000-06-26  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CQPerl.cc (CQPerl): 
	Adding the use of CAcPerl

	* libInvertedFile/include/CAcPerl.h: 
	* libInvertedFile/cc/CAcPerl.cc: 
	* libInvertedFile/include/CAFPerl.h: 
	* libInvertedFile/cc/CAFPerl.cc: 
	New files for configuring perl accessors for a 
	collection

	
	* ViperServer/generateInvertedFile.cc (main): 
	* libInvertedFile/cc/CAFInvertedFile.cc: 
	Changing new CAcInvertedFile to
	new CAcIFFileSystem.

	* libInvertedFile/include/CAcIFFileSystem.h:
	* libInvertedFile/cc/CAcIFFileSystem.cc:
	* libInvertedFile/include/CAcInvertedFile.h:
	Moving files:
	CAcInvertedFile now contains some abstraction
	of CAcIFFileSystem and CAcIFMySQl.
	The old CAcInvertedFile is now CAcIFFileSystem

	* libInvertedFile/include/CAcIFMySQL.h:
	* libInvertedFile/cc/CAcIFMySQL.cc:
	Created. Will contain Cornelia's code?
	 removing getRandomRLLs, because unused.
	
	* libInvertedFile/include/CAcInvertedFile.h:
	* libInvertedFile/include/CAccessor.h: 
	adding comments removing getRandomRLLs, because unused

2000-06-23  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/Makefile.am: 
	Adding @PERL_LD_ADDITIONS@

	* libInvertedFile/cc/Makefile.am: Adding 
	@PERL_CC_ADDITIONS@ 

	* configure.in (PERL_LD_ADDITIONS): 
	* configure.in (PERL_CC_ADDITIONS): New variables 
	and substitutions which contain the additional cc 
	and ld flags needed when lining Perl with Viper

	* ViperServer/Server.cc (main): void cast became 
	char cast. uint became int.

2000-06-21  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAlgorithmIDList.h: 
	* libInvertedFile/cc/CAlgorithmIDList.cc: 
	setID(const string&);

	* libInvertedFile/include/CSessionManager.h: 
	* libInvertedFile/cc/CSessionManager.cc(CSessionManager::toXMLHandshake): 
	is not anymore const.

2000-06-20  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* configure.in: 
	* Makefile.am (SUBDIRS): Changing for separating
	the libBayesian files from the distribution. These
	files presently are unused, but we have to check the
	patent situation before making them GNU. In fact I do not see
	too many problems, as the inspiration drawn from the patented
	PicHunter system is quite remote, our system that uses libBayesian
	is slow and rather for research purposes. However, I would like to
	contact NEC first before proceeding

	* libBayesian/cc/CDistanceCalculator.cc: changing 
	calls to do_for_equal_first by adding lInserter.
	The in-line version does not compile any more with
	the new gcc.

2000-06-19  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* scripts/perl/v-add-collection.pre-pl (wanted):
	Viper does not cope well with the fact that kaffe removes "//" out
	of URLs. So when adding collections, we have to do the same.

	* libInvertedFile/cc/CAccessorCollection.cc: 
	* libInvertedFile/cc/CAlgorithmCollection.cc: Proper error message
	when configuration file not found.

2000-06-14  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* scripts/perl/CFeedbackClient.pre-pm (handleStart): 
	changing m[] to m:: in order to deconfuse the perl mode of
	XEmacs. Adding more comments.

	* dtd/mrml.dtd: added allows-children tag, as well as some
	further comments

	* scripts/perl/v-dtd-to-tex.pre-pl: Added a description
	of the --fragment option

2000-05-25  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAlgorithm.cc: the HACK
	marked part did not cope with text nodes
	in the configuration before.

2000-05-23  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CXMLElement.h: 
	* libInvertedFile/cc/CXMLElement.cc: getText Function.

2000-05-19  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/viper-config/Makefile.am (MRMLCONFIG): 
	Inserted __BINDIR__ and __PERL_LOCATION__ 

	* ViperServer/viper-config/viper-config.pre-mrml: 
	Added "a-perl" algorithm, removed legacy code 
	the (property-item-list) and algorithm-list-list.

2000-05-18  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/Makefile.am: 
	Added a echo|sed to the INCLUDE part. The goal of this
	is to remove the define -Dbool=char from the perl 
	configuration data.

	* libInvertedFile/include/CXMLElement.h: 
	* libInvertedFile/cc/CXMLElement.cc: 
	Added a type of nodes. Necessary for text/CDATA nodes.
	
2000-05-17  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/CTripleTransfer.pre-pl: 
	* scripts/perl/CVLDAudreyMTam.pre-pl: 
	* scripts/perl/CVLStructuredAnnotation.pre-pm: 
	* scripts/perl/CViperLink.pre-pm: 
	* scripts/perl/CViperLinkDemo.pre-pl: 
	* scripts/perl/CXMLTreeBuilder.pre-pm: 
	* scripts/perl/CXMLTreeVisitor.pre-pm: 
	* scripts/perl/CXTVTripletList.pre-pm: 
	* scripts/perl/CXTVTripletList.pre-pm: 
	* scripts/perl/Makefile.am: 
	Added these files, changed Makefile.am accordingly
	(bin_SCRIPTS): 

2000-04-20  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/Server.cc: 
	* ViperServer/CCommunicationHandler.cc: fixing
	even more the problem when VIPER_HOME is unset.
	Test works now.
	

2000-04-19  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/CFeedbackClient.pre-pm: 
	* scripts/perl/CFCMovingTarget.pre-pm: 
	I spent a "nice afternoon" (between 20:00 and 01:40) changing 
	some undocumented stuff, i.e. all the files which have to do 
	with benchmarking and MRML negotiation in Perl, fixing 
	some small annoying mistakes.

	* scripts/perl/CQueryPradigmMatcher.pre-pm:
	added a $self where it was missing.
	
2000-04-18  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/CFeedbackClient.pre-pm (getCollection(): 
	Quite radical changes in about all the program
	for bringing MRML negotiation on the state of
	the JAVA/C++ packages.

2000-04-17  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/CCommunicationHandler.cc(readAndParse): 
	Fixed annoying bug which lets viper crash if the environment 
	variable VIPER_HOME is unset.
	
	* ViperServer/viper-config/Makefile.am (clean): 
	Have to delete viper-config.mrml when cleaning.

	* scripts/perl/CQueryPradigmMatcher.pre-pm: A perl
	module for matching query-paradigm and query-paradigm-list

	* scripts/perl/Makefile.am (EXTRA_SCRIPTS): Adding
	CQueryParadigmMatcher.pre-pm

2000-04-13  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/viper-config/viper-config.pre-mrml: Added query-paradigm
	tag into algorithm, as well as an empty property sheet.

	* scripts/perl/v-add-collection.pre-pl: Added query-paradigm
	tag to the "collection" elements in print statement.

2000-04-10  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/Server.cc(sendMessage): 
	Put last sent message into a separate file

	* ViperServer/CCommunicationHandler.cc(readAndParse): 
	Put last recieved message into a separate file

2000-04-04  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAttributeList.h(operator[]): 
	* libInvertedFile/cc/CAttributeList.cc(operator[]): 
	got rid of embarassing workaround which seemed to be unnecessary
	AND causing bugs.
	
	* libInvertedFile/cc/CSessionManager.cc(CSessionManager::query): 
	fixed a bug which made the system crash if the session which 
	is supposed to be containing the query is unknown. Now the system 
	exits with an error message instead.
	
	* ViperServer/Server.cc(startMRMLElement): 
	* ViperServer/Server.cc(endMRMLElement): 
	Commented out this "legacy code".

	* ViperServer/CCommunicationHandler.h(CSortBySessionID_SH):
	* ViperServer/CCommunicationHandler.cc(CSortBySessionID_SH):
	never used=>removed

	* libInvertedFile/include/CXEVCommunication.h(startVisit): 
	* libInvertedFile/cc/CXEVCommunication.cc(startVisit): 
	* libInvertedFile/include/CXMLElementVisitor.h(startVisit): 
	* libInvertedFile/cc/CXMLElementVisitor.cc(startVisit): 
	* libInvertedFile/include/CXEVCommunication.h(endVisit): 
	* libInvertedFile/cc/CXEVCommunication.cc(endVisit): 
	* libInvertedFile/include/CXMLElementVisitor.h(endVisit): 
	* libInvertedFile/cc/CXMLElementVisitor.cc(endVisit): 
	Changing from preorder visits to a visit both ways, i.e.
	visitor is called once before visiting the children, 
	once afterwards 
		
	* ViperServer/CCommunicationHandler.h(processQuery): 
	* ViperServer/CCommunicationHandler.cc(processQuery): 
	* ViperServer/CCommunicationHandler.h(endConfiguration): 
	* ViperServer/CCommunicationHandler.cc(endConfiguration): 
	* ViperServer/CCommunicationHandler.h(setCurrentSession): 
	* ViperServer/CCommunicationHandler.cc(setCurrentSession): 
	Cleaning up. Deleted all functions which are not used any
	more because of the new visitor aproach. Also trying to move
	things into the threadsafe direction

2000-03-28  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/emacs-lisp/v-compile-current.el (v-compile-current): 
	added JAVA support to this function which before worked only for
	.cc and .h files

2000-03-27  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/Makefile.am (libInvertedFile_a_SOURCES): 
	adding CXMLElementVisitor and CXEVCommunication

	* libInvertedFile/include/CXEVCommunication.h: 
	* libInvertedFile/cc/CXEVCommunication.cc: 
	* libInvertedFile/include/CXMLElementVisitor.h: 
	* libInvertedFile/cc/CXMLElementVisitor.cc: 
	A visitor which is supposed to visit the subtree of an 
	CXMLElement
	
	* ViperServer/Server.cc
	* ViperServer/CCommunicationHandler.h:
	* ViperServer/CCommunicationHandler.cc:
	Moving things towards DOM parsing with subsequent traversal. This
	is a bit slower, but easier to change afterwards.
	
	* ViperServer/CCommunicationHandler.h(stringOfRelevanceLevelList): 
	* ViperServer/CCommunicationHandler.cc(stringOfRelevanceLevelList): 
	Removed this obsolete function.

	* libInvertedFile/include/CXMLElement.h(getNumberOfAttributes): 
	* libInvertedFile/cc/CXMLElement.cc(getNumberOfAttributes): 
	adding a function to get the number of attributes in an CXMLElement.

	* libInvertedFile/include/CPropertySheetMatcher.h: 
	* libInvertedFile/cc/CPropertySheetMatcher.cc: 
	* libInvertedFile/cc/Makefile.am:
	A new class for matchin property sheets. This becomes important
	for getAlgorithm, getCollection.

	* ViperServer/CCommunicationHandler.cc(getAlgorithms): 
	* ViperServer/CCommunicationHandler.h(getAlgorithms): 
	added

	* ViperServer/Server.cc(startMRMLElement): 
	adding getAlgorithms and getCollections.

	* ViperServer/CCommunicationHandler.cc(getCollections): 
	* libInvertedFile/include/CSessionManager.h(getCollections): 
	* libInvertedFile/cc/CSessionManager.cc(getCollections): 
	New function. Probably only temporarily in CSessionManager, but
	here to stay in the CCommunicationHandler.

	* libInvertedFile/include/CAlgorithmCollection.h(CAlgorithmCollection): 
	* libInvertedFile/cc/CAlgorithmCollection.cc(CAlgorithmCollection): 
	Constructor now takes an argument, the config file.

	* libInvertedFile/include/CAlgorithmCollection.cc(startAlgorithmCollectionElement):
	* libInvertedFile/include/CAlgorithmCollection.cc(endAlgorithmCollectionElement): 
	Making CAlgorithmCollection read the configuration file
	as a part of operation to disentangle CAlgorithmCollection
	and CSessionManager

	* libInvertedFile/include/CSessionManager.h: 
	Adding some critic comments to CSessionManager.

	* libInvertedFile/cc/CAccessorProxy.cc(toXMLElement): 
	* libInvertedFile/include/CAccessorProxy.h(toXMLElement): 
	* libInvertedFile/include/CAccessorCollection.h(toXMLElement): 
	* libInvertedFile/cc/CAccessorCollection.cc(toXMLElement): 
	* libInvertedFile/cc/CAlgorithmCollection.cc(toXMLElement): 
	* libInvertedFile/include/CAlgorithmCollection.h(toXMLElement): 
	Added the function toXMLElement which turns the content of
	the respective structures into an CXMLElement which can be
	used for answering mrml_const::get_collections and
 	mrml_const::get_algorithms requests
	

2000-03-24  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* scripts/perl/v-dtd-to-tex.pre-pl: 
	complete rewrite of this perl program, in order
	to make output better, and in order to suppress
	our proprietary extensions from the tex output
	if needed. As a downside, this perl program now
	needs XML::Parser, which is not so surprising after
	all.

2000-03-23  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/CCommunicationHandler.h(openSession): 
	* ViperServer/CCommunicationHandler.h(renameSession): 
	* ViperServer/CCommunicationHandler.h(deleteSession): 
	* ViperServer/CCommunicationHandler.h(getSessionsForUser): 
	* ViperServer/CCommunicationHandler.cc(openSession): 
	* ViperServer/CCommunicationHandler.cc(renameSession): 
	* ViperServer/CCommunicationHandler.cc(deleteSession): 
	* ViperServer/CCommunicationHandler.cc(getSessionsForUser): 
	Changed return value of these functions to CXMLElement*
	
	* ViperServer/CCommunicationHandler.h(getSessions):
	* ViperServer/CCommunicationHandler.cc(getSessions):
	* ViperServer/Server.cc: 
	adding functions to implement mrml:get-sessions.

2000-03-22  MUELLER Wolfgang  <muellerw@cui.unige.ch>

	* ViperServer/CCommunicationHandler.h(newSession):
	* ViperServer/CCommunicationHandler.cc(newSession):
	deleted.

	* dtd/mrml.dtd(open-session): 
	Added "password" attribute.

	* ViperServer/CCommunicationHandler.h(openSession): 
	* ViperServer/CCommunicationHandler.h(renameSession): 
	* ViperServer/CCommunicationHandler.h(deleteSession): 
	* ViperServer/CCommunicationHandler.h(getSessionsForUser): 
	* ViperServer/CCommunicationHandler.cc(openSession): 
	* ViperServer/CCommunicationHandler.cc(renameSession): 
	* ViperServer/CCommunicationHandler.cc(deleteSession): 
	* ViperServer/CCommunicationHandler.cc(getSessionsForUser): 
	Adding new functions for new MRML handshake.

2000-03-21  MUELLER Wolfgang  <muellerw@cui.unige.ch>
        * version 0.1 as sent to the FSF.
	* configure.in: 
	* Makefile.am (SUBDIRS): 
	Added a new directory for scientific work which has not yet been 
	published and thus is not yet released.

2000-03-13  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAcInvertedFile.cc(newGenerateInvertedFile): 
	Delete viper-auxiliary-? files created by the mergesort performed.
	The files stay intact if newGenerateInvertedFile aborts with an
	error for facilitating debugging.

	* libInvertedFile/include/mrml_const.h: 
	* libInvertedFile/cc/mrml_const.cc: 
	Making all string constants named constants in the c++ sense.
	By this we can check if a string constant is defined or not, typos
	are detected at compile time.

2000-03-05  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAcDistanceMatrix.h: 
	* libInvertedFile/include/CAcInvertedFile.h: 
	* libInvertedFile/include/CAcURL2FTS.h: 
	* libInvertedFile/cc/CAcDistanceMatrix.cc: 
	* libInvertedFile/cc/CAcInvertedFile.cc: 
	* libInvertedFile/cc/CAcURL2FTS.cc: 
	Have to change the constructors for the new CAccessor factory design

2000-03-01  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/include/CAccessorFactoryContainer.h: 
	* libInvertedFile/include/CAccessorFactoryContainer.cc: 
	* libInvertedFile/include/CAccessorFactory.h: 
	* libInvertedFile/include/CAccessorFactory.cc: 
	* libInvertedFile/include/COpenCloseTracker.h: 
	* libInvertedFile/cc/COpenCloseTracker.cc: 
	* libInvertedFile/include/CAccessorProxy.h: 
	* libInvertedFile/cc/CAccessorProxy.cc: 
	* libInvertedFile/cc/CAccessorCollection.cc: 
	Changing the CAccessor factory design. Makes adding accessors as easy
	as adding CQueries.

2000-02-18  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* scripts/perl/CFeedbackClient.pre-pm:
	* scripts/perl/v-mrml-client.pre-pl:
	renamed file from v-mrml-client.pre-pm to CFeedbackClient.pre-pm
	created new v-mrml-client.pre-pm which uses CFeedbackClient
	v-mrml-client contains now a very simple client which does
	a one-shot query

2000-02-17  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CQInvertedFile.cc(buildQueryHash): 
	The deleting of feature lists that are not wanted 
	does is not compatible with STL vectors. Unfortunately
	we changed the type to vector, so we have to do something
	we chose to use the #define from CDocumentFrequencyList

	* ViperServer/Server.cc(startMRMLElement): 
	* ViperServer/Server.cc(endMRMLElement): 
	query-step: building an XML subtree instead of a 
	CRelevanceLevelList. Changing tag names to new MRML
	
	* ViperServer/CCommunicationHandler.h(startTreeBuilding): 
	* ViperServer/CCommunicationHandler.h(addToCurrentTree): 
	* ViperServer/CCommunicationHandler.h(moveUpCurrentTree): 
	* ViperServer/CCommunicationHandler.cc(startTreeBuilding): 
	* ViperServer/CCommunicationHandler.cc(addToCurrentTree): 
	* ViperServer/CCommunicationHandler.cc(moveUpCurrentTree): 
	Adding functionality for making document subtrees. 

	* libInvertedFile/cc/CSessionManager.cc: 
	* libInvertedFile/cc/CQuery.cc: 
	* libBayesian/cc/CEnhancedPicHunter.cc: 
	* libInvertedFile/cc/CQIFFerDeLance.cc: 
	* libInvertedFile/cc/CQInvertedFile.cc:
	* libInvertedFile/include/CSessionManager.h: 
	* libInvertedFile/include/CQuery.h: 
	* libBayesian/include/CEnhancedPicHunter.h: 
	* libInvertedFile/include/CQIFFerDeLance.h: 
	* libInvertedFile/include/CQInvertedFile.h:
	In fastQuery and query: a new way of passing parameters. Parameters
	now given as an XML document subtree (CXMLElement)

	
	
2000-02-14  Wolfgang MLLER  <muellerw@cui.unige.ch>

	* FeatureExtraction/extract_block_features.c: HACK to convert
	integer features to float features. WARNING: this is a real
	hack. We write floats in the place of integers. At the time
	of writing this happens at line 480. (For people who get the
	creeps: David wants to redesign feature extraction anyway).

	* FeatureExtraction/viper_features.h (FREQ_MAX): Changed to 0x7ffffff
	to get a high resolution for the above HACK

2000-02-10  Wolfgang Mller  <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CAcInvertedFile.cc (newGenerateInvertedFile): 
	* libInvertedFile/cc/CAcInvertedFile.cc (generateInvertedFile): 
	* libInvertedFile/cc/CAcInvertedFile.h (newGenerateInvertedFile): 
	Changes for incorporating new writeBinary function.
	Added function newGenerateInvertedFile. Supposed to be much faster	
	* libInvertedFile/cc/CInvertedFileChunk.cc (writeBinary): added 
	one parameter. Now the CInvertedfileChunk also writes the FeatureID.
	Before that the caller had to assure that FeatureID was written.

2000-01-24    Wolfgang Mueller <muellerw@cui.unige.ch>

	* libInvertedFile/cc/CScoreBoard.h(CScoreboard::CScoreboard):
	* libInvertedFile/cc/CScoreBoard.cc(CScoreboard::operator()):
	* libInvertedFile/cc/CScoreBoard.cc(CScoreboard::CScoreboard): 
	  Changed things such, that CScoreBoard does not need a CAccessor for
	  being constructed. 

2000-01-06  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* libInvertedFile/cc/CQInvertedFile.cc (blockFeatureGroup): 
	now activates blocking of feature groups

2000-01-04  Wolfgang Mueller  <Wolfgang.Mueller@cui.unige.ch>

	* libInvertedFile/cc/CWeightingFunction.cc (addQueryFeature): 
		Even if the inital version entry is younger than this...
		This is to notify other members, that I deleted in
		the function mentioned above the adjustRelevanceSum entry,
		which seems redundant to me.
		(setID): Necessary changes for rocchio weighting.

1999-11-29  Wolfgang Mueller  <muellerw@flyer.unige.ch>

	* libInvertedFile/include/CInvertedFileQuery.h: 
	Changed pruning interface: Scoreboard pruning now works
	on a fraction of the total number of features, as well as
	a factor of the total number of documents we want to retrieve.
	

1999-11-18  Wolfgang Mueller  <muellerw@flyer.unige.ch>

	* libInvertedFile/include/ViperExceptions.h: 
	* libInvertedFile/include/ViperExceptions.h: VEProgrammingMistake
	added. Goal of this: show if we think what you experienced is not
	an uncaught case, but rather a blunt programming mistake.

	* libInvertedFile/cc/CAlgorithm.cc (buildQueryTree): 
	preliminary implementation

	* libInvertedFile/cc/CAlgorithmCollection.cc (getAlgorithm): 
	* libInvertedFile/cc/CAlgorithmCollection.cc (makeAlgorithm): 
	* libInvertedFile/include/CAlgorithmCollection.h (getAlgorithm):
	* libInvertedFile/include/CAlgorithmCollection.h (makeAlgorithm):
	Thes functions operate now on algorithm TYPES.

	* libInvertedFile/include/CQuery.h: added addChild function and
	lCChildren type and lCChildren mChildren variable. For building
	query trees.

	* libInvertedFile/cc/CAlgorithm.cc: 
	CAlgorithm::getType added in reaction to previous change.

	* mrml.dtd: added attribute "type" to algorithm.
	Background of this is: the actual IDs of the algorithms have to be
	generated by the interface, because there can be multiple
	instances of one type of algorithm. Only the interface knows if
	this is the case. So TODO: we need to add also the functionality to
	property sheets to send a unique ID.

	* libInvertedFile/cc/CInvertedFileQuery.cc
	(buildNormalizedQueryList): 
	Using CSortByAbsQueryFactor_WF instead of CSortByQueryFactor_WF
	(without the "Abs") for queries.

	* libInvertedFile/include/CWeightingFunction.h: 
	added CSortByAbsQueryFactor_WF. its a new sorting
	operator  for making Viper more immune
	against negative feedback. This probably will become unnecessary
	when we incorporate Rocchio feedback. The problem was that if
	features get negative they get pruned, although they might have
	large impact on the query result.