File: ChangeLog

package info (click to toggle)
gdome2 0.8.1%2Bdebian-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,500 kB
  • ctags: 1,947
  • sloc: ansic: 23,268; sh: 6,739; makefile: 479; xml: 476
file content (3402 lines) | stat: -rw-r--r-- 132,816 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
2003-10-05  Paolo Casarini <paolo@casarini.org>
	* configure.in, README, gdome2.spec.in
        - fixed dipendencies
        - now gdome2 depends by default from glib2
        - added "enable-glib-1" flag to compile gdome2 with glib1
        - updated for 0.8.1 release
        - deleted traversal module related rule
        
        * libgdome/gdome-treegc.[ch]
        removed some dead code
	
2003-10-03  Luca Padovani <lpadovan@cs.unibo.it>
	* fixed configure.in so that it checks correctly
	  for glib-2.0
	* fixed dependencies in gdome2.pc
	* added inline versions for simple functions in gdome-xsmlutil.h.
	  The inline versions are currently disabled by they can be easily
	  enabled by defining a macro at the top of the file
	* removed some dead code within #ifdef LUCA in several files
	* added missing #include directive in gdome.c

2003-09-10  Paolo Casarini <paolo@casarini.org>
        * configure.in, README
	Updated for 0.8.0 release

	* gtk-doc/
        * libgdome/gdome.c
        * libgdome/gdomecore/gdome-xml-domimpl.c
        Updated documentation
	
2003-09-09  Luca Padovani <lpadovan@cs.unibo.it>
	* Re-enabled --enable-glib-2 flag for supporting GLIB 2.x.
	The code seems to compile and run OK.

2003-07-28  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_createDocument) Deleted duplicated checks on the
        qualifiedName and now is always used the gdome_xml_doc_createElementNS.
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_removeChild) Modified the check on the oldChild parameter
        from GDOME_XML_IS_N to GDOME_XML_IS_TREE_N to prevent errors.
        
2003-07-22  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_createElementNS) patched to allow the creation of node
        that belogs to the default namespace (no prefix and namespaceURI!=NULL)
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_t_splitText) patched to always initialize gparent before use
        
2003-07-18  Luca Padovani <lpadovan@cs.unibo.it>
	* internally events are initialized by their code directly. This
	saves one allocation of a GdomeDOMString, and one lookup for
	mapping the event name into the event code. Auxiliary functions have
	been implemented into *-event.c and *-mevent.c

2003-07-17  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_createAttributeNs) patched to allow namespaceURI = NULL
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_unref) moved the delNode call before checking for removal
        * test/test-treegc.c
        Modified to follow changes in the treegc behaviour
        
        * libgdome/events/gdome-evt-event.[ch]
        (struct _Gdome_evt_Event) field type change from gchar* to guint32
        (gdome_evt_evnt_initEvent) modified to follow the type field change
        (gdome_evt_evnt_type) modified to follow the type field change
        * libgdome/events/gdome-evt-mevent.h
        (struct _Gdome_evt_MutationEvent) field type change from gchar* to
        guint32
        (gdome_evt_mevnt_unref) modified to follow the type field change
        * libgdome/events/gdome-evt-propagation.c
        (gdome_evt_fireEvent) modified to folloe the type field change
        * libgdome/gdomecore/gdome-xml-node.[ch]
        (Gdome_xml_ListenerList) field type change from char* to guint32
        (gdome_xml_n_addEventListener) modified to follow the type field change
        (gdome_xml_n_removeEventListener) modified to follow the type field
        change
        (gdome_xml_n_dispatchEvent) modified to follow the type field change
        
2003-07-14  Paolo Casarini <paolo@casarini.org>
	* libgdome/events/gdome-evt-propagation.c
        (gdome_evt_invokeListeners) removed, no more used
        (gdome_evt_invokeListerner_new) renamed in gdome_evt_invokeListeners
        (gdome_evt_fireEvent1) removed, no more used
        (gdome_evt_fireEvent2) removed, no more used
        * libgdome/events/gdome-xml-node.[ch]
        (Gdome_xml_ListenerList) removed porcessing and toRemove fields no
        more used in event propagation.
        (gdome_xml_n_addEventListener) modified to follow 
        Gdome_xml_ListenerList and event propagation changes
        (gdome_xml_n_removeEventListener) modified to follow
        Gdome_xml_ListenerList and event propagation changes

2003-07-13  Luca Padovani <lpadovan@cs.unibo.it>
	* added methods for filtering fired events
	* changed the tree GC mechanism. The document tree is now
	freed only when there are no wrappers left. This fixes a reported
	bug and should improve performances as it is no longer necessary to
	count the live nodes in subtrees for adjusting the livenodes field.

2003-04-25  Paolo Casarini <paolo@casarini.org>
	* libgdome/events/gdome-evt-propagation.h
        (gdome_evt_invokeListeners) removed from header        
	* libgdome/events/gdome-evt-propagation.h
        (Gdome_evt_PropagationEl) added this new structure to build propagation
        simple lists.
        (gdome_evt_fireEvent) Modified to use three simple list, one for each
        propagation phase, to store the node-listeners pairs.
        (gdome_evt_invokeListeners_new) added to call handleEvent on the lists
        made by Gdome_evt_PropagationEl.
        (gdome_evt_fireEvents1) is the previous functin based on GList.
        
2003-03-31  Paolo Casarini <paolo@casarini.org>
	* libgdome/events/gdome-evt-propagation.c
        (gdome_evt_fireEvent) Modified to use a GList instead of a dynamic
        array to store the propagation path. Now to save the propagation
        path, only gdome wrappers that have at least one listener are
        stored instead of all subordinate libxml2 nodes as done before.
        (gdome_evt_fireEvent2) inserted. Is the old gdome_evt_fireEvent.

2003-03-10  Paolo Casarini <paolo@casarini.org>
        * configure.in, README
	Updated for 0.7.4 release

	* gtk-doc/
        Updated documentation

2003-03-03  Luca Padovani <lpadovan@cs.unibo.it>
	* gdome-xml-evntl.?
	added callback for finalization of eventlistener objects

2003-01-29  Paolo Casarini <paolo@casarini.org>
	* configure.in
	Updated libxml2 min version to 2.4.26

2003-01-21  Paolo Casarini <paolo@casarini.org>
	* gdome-xml-node.h
	(gdome_xml_n_appendChild) bug fix in treegc
	(gdome_xml_n_replaceChild) now works also to replace the
	  documentElement node

2003-01-10  Paolo Casarini <paolo@casarini.org>
	* gdome-xml-node.h
        Added the "extern" modifier to all gdome-xml-n-vtab const
        declaration (Thanx to Alexandr Petrosian)
        
	* gdome-xml-memory.c
        Added the "static" modifier to all 'const xmlChar' declarations
        (Thanx to Alexandr Petrosian)

        * gdome-xml-node.c
        (gdome_xml_n_removeEventListener) bug fix on searching the listener to
        remove

2003-01-08  Paolo Casarini <paolo@casarini.org>
	* gdome-xml-node.c
        * gdome-xml-text.c
        Fixed all occurrences of DOMSubtreeModified initialization
        changing the canBubbleArg from FALSE to TRUE.
        
        * gdome-xml-node.c
        (gdome_xml_n_addEventListener) Now check duplicates only on parameters
        
2003-01-07  Paolo Casarini <paolo@casarini.org>
	* Makefile.am
	Added declaration for pkgconfig support
	(EXTRA_DIST) added gdome2.m4 and gdome2.pc.in

	* configure.in
	Updated to release 0.7.3 with libxml2 min ver set to 2.4.23
	(AC_OUTPUT) removed comment line and added gdome2.pc
	(HTML_DIR) changed the default directory and the description

	* gdome2.m4
	* gdome2.pc.in
	Added to CVS
	
	* configure.in
	Removed the GLIB2 flag to enable/disable a not yet implemented glib2
	support.

	* gdome2.spec.in
	Applied patch provided by Oron Peled
	- %defattr(-,root,root) wasn't set for documents in the
	  devel package. This cause wrong ownership of docs in
	  non-root builds. Fixed.
	- Update URL: and Source: locations
	- s/Copyright:/License:/

2002-11-08  Paolo Casarini <paolo@casarini.org>
	* Makefile.am
        (EXTRA_DIST) added README.developer (Tobias Peters patch)
        * test/apigen/Makefile.am
        (EXTRA_DIST) added xpath.xml (Tobias Peters patch)

2002-09-14  T.J. Mather <tjmather@tjmather.com>
	* test/test-xpath.c
	test failures should return FALSE
	libxml2 2.4.23 namespace order changed, updated test to reflect this
	* test/test-document3.xml
	Added ATTLIST for tns:NODE, required for libxml2 2.4.23 and greater

2002-07-16  T.J. Mather <tjmather@tjmather.com>
	* libgdome/Makefile.am
	* libgdome/gdome-libxml-util.h
	Added header to private interface for XML::LibXML to use,
	patch provided by Christian Glahn.

2002-05-30  Paolo Casarini <paolo@casarini.org>
	* configure.in
        (VERSION) updated to 0.7.2
        (XML_MIN_VERSION) updated to 2.4.21
        
        * libgdome/traversal/gdome-trv-nodeiterator.[ch}
        (struct _Gdome_trv_NodeIterator) added field entityReferenceExpansion
        (gdome_trv_ni_mkref) added entityReferenceExpansion to prototype
          and implemented
        (gdome_trv_ni_ref) implemented
        (gdome_trv_ni_unref) implemented
        (gdome_trv_nodefilter.h) added in include
        (gdome-xml-node.h) added in include
        (gdome_trv_ni_query_interface) implemented
        (gdome_trv_ni_root) implemented
        (gdome_trv_ni_whatToShow) implemented
        (gdome_trv_ni_filter) implemented
        (gdome_trv_ni_expandEntityReference) implemented
        (gdome_trv_ni_detach) implemented

2002-05-28  T.J. Mather <tjmather@tjmather.com>
	* libgdome/gdome-treegc.c
	* libgdome/gdomecore/gdome-xml-document.c
	* test/Makefile.am
	* test/test-importnode.c
	Fixed bug when importing Entity Reference Node

2002-05-23  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.[ch]
        (gdome_di_saveDocToMemory) changed the type of the mem parameter
          from char* to char**
        (gdome_di_saveDocToFileEnc) added
        (gdome_di_saveDocToMemoryEnc) added
        
        * test/apigen/core.xml
        (saveDocToMemory) changed the type of the mem parameter from char*
          to char** in the DOMImplementation interface
        (saveDocToFileEnc) added
        (saveDocToMemoryEnc) added
        
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_saveDocToMemory) changed the type of the mem parameter
          from char* to char**
        (gdome_xml_di_saveDocToFileEnc) added
        (gdome_xml_di_saveDocToMemoryEnc) added
        
        * test/test-loadsave.c
        Modified to test gdome_di_saveDocToMemmory and
        gdome_di_saveDocToMemoryEnc
        
        Updated Documentation

2002-05-15  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.[ch]
        (gdome_di_saveDocToMemory) changed the type of the mem parameter
          from char** to char*
        
        * test/apigen/core.xml
        (saveDocToMemory) changed the type of the mem parameter from char**
          to char* in the DOMImplementation interface
        
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_saveDocToMemory) changed the type of the mem parameter
          from char** to char*
        
	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_removeChild) moved the dispatch of "DOMSubtreeModified"
        before inlink the node from the tree.
        
	* libgdome/events/gdome-evt-event.h
	* libgdome/events/gdome-evt-eventl.h
	* libgdome/events/gdome-evt-mevent.h
	* libgdome/gdomecore/gdome-xml-attribute.h
	* libgdome/gdomecore/gdome-xml-cdata.h
	* libgdome/gdomecore/gdome-xml-cdata.h
	* libgdome/gdomecore/gdome-xml-cdatas.h
	* libgdome/gdomecore/gdome-xml-comment.h
	* libgdome/gdomecore/gdome-xml-document.h
	* libgdome/gdomecore/gdome-xml-documentf.h
	* libgdome/gdomecore/gdome-xml-documentt.h
	* libgdome/gdomecore/gdome-xml-domimpl.h
	* libgdome/gdomecore/gdome-xml-element.h
	* libgdome/gdomecore/gdome-xml-entity.h
	* libgdome/gdomecore/gdome-xml-entityref.h
	* libgdome/gdomecore/gdome-xml-nnodem.h
	* libgdome/gdomecore/gdome-xml-node.h
	* libgdome/gdomecore/gdome-xml-nodel.h
	* libgdome/gdomecore/gdome-xml-notation.h
	* libgdome/gdomecore/gdome-xml-pi.h
	* libgdome/gdomecore/gdome-xml-text.h
	* libgdome/gdomecore/gdome-xml-xpns.h
	* libgdome/traversal/gdome-trv-nodefilter.h
	* libgdome/traversal/gdome-trv-nodeiterator.h
	* libgdome/traversal/gdome-xpath-xpeval.h
	* libgdome/traversal/gdome-xpath-xpnsresolv.h
	* libgdome/gdomecore/gdome-xpath-xpresult.h
        Added the "extern" modifier to all gdome-*-*-vtab const
        declaration (Thanx to Tobias Peters)
        
        * gtk-doc/gdome2-sections.txt
        * gtk-doc/tmpl/etypes.sgml
        Updated
        
        Updated Documentation

2002-04-17  T.J. Mather <tjmather@tjmather.com>
	* libgdome/gdomecore/gdome-xml-document.c
	* libgdome/gdomecore/gdome-xml-node.c
	Added support for handling HTML documents like XML documents

2002-04-16  T.J. Mather <tjmather@tjmather.com>
	* test/test-xpath.c
	Added test for when XPath returns no results.
	* libgdome/xpath/gdome-xpath-xpresult.c
	Fixed bug when XPath result set is empty.

2002-04-05  Paolo Casarini <paolo@casarini.org>
	* configure.in
        (XML_MIN_VERSION) updated to 2.4.19
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (itemHashScanner) modified to fit xmlHashScanner prototype
        
        * libgdome/gdomecore/gdome-xml-document.c
        (idsHashScanner) modified to fit xmlHashScanner prototype
        
        * libgdome/gdomecore/gdome-xml-xmldtdutil.c
        (notationsHashScanner) modified to fit xmlHashScanner prototype
        (entitiesHashScanner) modified to fit xmlHashScanner prototype
        
        * gtk-doc/Makefile.am
        (EXTRA_DIST) Added html/gdome2-xpath.html and
          html/gdome2-xpath-basic-types-and-enumerations.html
        
2002-04-04  Paolo Casarini <paolo@casarini.org>
	* AUTHORS
        Added Luca Padovani and T.J. Mather
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_createDocFromMemory)
        (gdome_xml_di_createDocFromURIWithEntitiesTable)
        (gdome_xml_di_createDocFromMemoryWithEntitiesTable)
        Added GDOME_LOAD_COMPLETE_ATTR in documentation.
        
        * libgdome/gdome.c
        (gdome_xml_createDocFromMemory)
        (gdome_xml_createDocFromURIWithEntitiesTable)
        (gdome_xml_createDocFromMemoryWithEntitiesTable)
        Added GDOME_LOAD_COMPLETE_ATTR in documentation.
        
        * gtk-doc/Makefile.am
        (EXTRA_DIST) html filename w.r.t XPath module modified
        
        * libgdome/Makefile.am
        removed traversal references
        
        * test/Makefile.am
        (EXTRA_DIST) Added test data file test-xpath.xml
	
        * gdome2.spec.in
        Updated
        
        Updated Documentation
        
2002-04-01  Daniel Veillard <veillard@redhat.com>

	* libgdome/gdome-treegc.c libgdome/events/gdome-evt-event.h
	  libgdome/events/gdome-evt-propagation.c
	  libgdome/gdomecore/gdome-xml-attribute.c
	  libgdome/gdomecore/gdome-xml-cdata.c
	  libgdome/gdomecore/gdome-xml-document.c
	  libgdome/gdomecore/gdome-xml-documentt.c
	  libgdome/gdomecore/gdome-xml-domimpl.c
	  libgdome/gdomecore/gdome-xml-element.c
	  libgdome/gdomecore/gdome-xml-entity.c
	  libgdome/gdomecore/gdome-xml-nnodem.c
	  libgdome/gdomecore/gdome-xml-node.c
	  libgdome/gdomecore/gdome-xml-nodel.c
	  libgdome/gdomecore/gdome-xml-notation.c
	  libgdome/gdomecore/gdome-xml-pi.c
	  libgdome/gdomecore/gdome-xml-str.c
	  libgdome/gdomecore/gdome-xml-text.c
	  libgdome/gdomecore/gdome-xml-xmldtdutil.c
	  libgdome/gdomecore/gdome-xml-xmlmemory.c
	  libgdome/gdomecore/gdome-xml-xmlutil.c
	  libgdome/gdomecore/gdome-xml-xpns.c
	  libgdome/gdomehtml/gdome-xml-htmlcollection.c
	  libgdome/gdomehtml/gdome-xml-htmldocument.h
	  libgdome/gdomehtml/gdome-xml-htmlelement.c
	  libgdome/xpath/gdome-xpath-xpresult.h
	  test/test-events.c test/test-gdome.c:
	  updated all the includes for libxml to use #include <libxml/...>
	  since it's the supported way and to avoid headers name clashes (
	  especially with tree.h)

2002-02-28  T.J. Mather <tjmather@tjmather.com>
	* libgdome/gdome-xpath.[c|h]
	* libgdome/gdome.h
	* libgdome/xpath/Makefile.am
	* libgdome/xpath/gdome-xpath-xpresult.[c|h]
	* libgdome/xpath/gdome-xpath-xpsetiter.[c|h]
	* test/test-xpath.c
	* test/apigen/xpath.xml
	Replaced XPathSetIterator module with
	XPathResult.iterateNext method, to reflect change made in
	DOM Level 3 XPath working document.

2002-02-25  T.J. Mather <tjmather@tjmather.com>
	* libgdome/gdomecore/gdome-xml-document.c
	* libgdome/gdomecore/gdome-xml-element.c
	* test/test-element.c
	* test/test-element.xml
	Fixed bug when gdome_n_unref on document node was called before
	gdome_nnm_unref.

2002-02-22  T.J. Mather <tjmather@tjmather.com>

	* BUGS
	Added bugs files

	* README.developer
	Added developer README file

	* libgdome/gdome.c
	Added Level 3 DOM XPath Module
	Added support for namespace declaration attributes

	* libgdome/gdome.h
	Added GDOME_LOAD_COMPLETE_ATTR option
	Added Level 3 DOM XPath Module
	Added support for namespace declaration attributes

	* libgdome/gdomecore/gdome-xml-attribute.[ch]
	* libgdome/gdomecore/gdome-xml-document.c
	* libgdome/gdomecore/gdome-xml-documentt.c
	* libgdome/gdomecore/gdome-xml-element.c
	* libgdome/gdomecore/gdome-xml-node.c
	* libgdome/gdomecore/gdome-xml-nnodem.[ch]
	* libgdome/gdomecore/gxome-xml-util.h
	* libgdome/gdomecore/gdome-xml-xmlutil.[ch]
	Added support for namespace declaration attributes

	* libgdome/gdomecore/gdome-xml-cdata.c
	Memory leak fix

	* libgdome/gdomecore/gdome-xml-domimpl.c
	* gtk-doc/tmpl/types.sgml
	* gtk-doc/gdome2-decl.txt
	Added GDOME_LOAD_COMPLETE_ATTR option

	* libgdome/gdomecore/gdome-xml-xpns.[ch]
	* libgdome/xpath/gdome-xpath-xpeval.[ch]
	* libgdome/xpath/gdome-xpath-xpresolv.[ch]
	* libgdome/xpath/gdome-xpath-xpresult.[ch]
	* libgdome/xpath/gdome-xpath-xpsetiter.[ch]
	* libgdome/gdome-xpath.[ch]
	* libgdome/Makefile.am
	* configure.in
	Added Level 3 DOM XPath Module

	* test/apigen/core.xml
	added XPathNamespace interface
	added "automatically generated" message

	* test/apigen/events.xml
	added "automatically generated" message

	* test/apigen/xpath.xml
	Added Level 3 DOM XPath Module
	
	* test/apigen/srcutil.c
	Added Level 3 DOM XPath Module

	* test/test-namednodemap.c
	* test/test-namednodemap.xml
	* test/test-element.c
	* test/test-element.xml
	added tests for namespace declaration attributes

	* test/Makefile.am
	* test/test-xpath.c
	* test/test-xpath.xml
	added tests for XPath module

2002-01-14  Paolo Casarini <paolo@casarini.org>
	* test/apigen/Makefile
        (EXTRA_DIST) Added events.xml and traversal.xml
        
        * test/apigen/srcutil.c
        (writeException) now manage also int32 method and attribute type
        
        * test/apigen/traversal.xml (added to CVS)
        (NodeFilter) INTERFACE added
        (NodeIterator) INTERFACE added
        
	* libgdome/Makefile
        Added traversal directory to the build process
        Added libgdometraversal.la to libgdome.la build process
        
        * configure.in
        Added traversal Makefile to the build process
        
        * ligdome/gdome.h
        (GdomeNodeFilter) typedef added
        (GdomeNodeIterator) typedef added
        (GdomeTreeWalker) typedef added
        
        * libgdome/gdome-traversal.[ch] (added to CVS)
        external interface for Traversal Level 2 Module
        (GdomeNodeFilterVtab) added
	(GdomeNodeIteratorVtab) added
	(GdomeTreeWalkerVtab) added
        (GdomeFilterResultType) implemented
        (GdomeWhatToShowType) implemented
        (struct _GdomeNodeFilter) implemented
        (struct _GdomeNodeIterator) implemented
        (struct _GdomeTreeWalker) implemented
	(gdome_nf_mkref) external API implemented
	(gdome_nf_ref) external API implemented
	(gdome_nf_unref) external API implemented
	(gdome_nf_query_interface) external API implemented
	(gdome_nf_acceptNode) external API implemented
	(gdome_ni_root) external API implemented
	(gdome_ni_whatToShow) external API implemented
	(gdome_ni_filter) external API implemented
	(gdome_ni_expandEntityReference) external API implemented
	(gdome_ni_ref) external API implemented
	(gdome_ni_unref) external API implemented
	(gdome_ni_query_interface) external API implemented
	(gdome_ni_nextNode) external API implemented
	(gdome_ni_previousNode) external API implemented
	(gdome_ni_detach) external API implemented
             
        * libgdome/traversal (added to CVS)
        directory where to implement Traversal Level 2 module
        
        * libgdome/traversal/Makefile (added to CVS)
        gives instructions on building libgdometraversal.la
        
        * libgdome/traversal/gdome-trv-nodefilter.[ch] (added to CVS)
        (Gdome_trv_NodeFilter) implemented
        (struct _GdomeNodeFilterVtab) implemented
	(gdome_trv_nf_mkref) internal API implemented
	(gdome_trv_nf_ref) internal API implemented
	(gdome_trv_nf_unref) internal API implemented
	(gdome_trv_nf_query_interface) internal API implemented
	(gdome_trv_nf_acceptNode) internal API implemented
        
        * libgdome/traversal/gdome-trv-nodeiterator.[ch] (added to CVS)
        (Gdome_trv_NodeIterator) implemented
        (struct _GdomeNodeIteratorVtab) implemented
	(gdome_trv_ni_root) internal empty prototype added
	(gdome_trv_ni_whatToShow) internal empty prototype added
	(gdome_trv_ni_filter) internal empty prototype added
	(gdome_trv_ni_expandEntityReference) internal empty prototype added
	(gdome_trv_ni_mkref) internal empty prototype added
	(gdome_trv_ni_ref) internal empty prototype added
	(gdome_trv_ni_unref) internal empty prototype added
	(gdome_trv_ni_query_interface) internal empty prototype added
	(gdome_trv_ni_nextNode) internal empty prototype added
	(gdome_trv_ni_previousNode) internal empty prototype added
	(gdome_trv_ni_detach) internal empty prototype added
        
        * libgdome/traversal/gdome-trv-treewalker.[ch] (added to CVS)
        added empty
        
2002-01-09  Paolo Casarini <paolo@casarini.org>
	* gdome2.spec.in
        URL and Source updated
        
        * libgdome/gdome.h
        (GdomeException) changed type from guint to guint32
        (GdomeExcetionType) added
        (GdomeExceptionMasks) added
        (GDOME_EXCEPTION_TYPE) macro added
        (GDOME_EXCEPTION_CODE) macro added
        
        * libgdome/gdome-events.h
        (GdomeEventException) removed
        (GDOME_UNSPECIFIED_EVENT_TYPE_ERR) Modified from 257 to 0
        
        * libgdome/gdome-xml-node.c
        (gdome_xml_n_dispatchEvent) Updated Exception handling
        
2001-12-21  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_parseFile) removed
        (gdome_xml_di_validateFile) removed
        (gdome_xml_di_saveFile) removed
        (gdome_xml_di_saveFormatFile) removed
        
        * libgdome/gdome.[ch]
        (gdome_di_parseFile) removed
        (gdome_di_validateFile) removed
        (gdome_di_saveFile) removed
        (gdome_di_saveFormatFile) removed
        
        * test/apigen/*
        Updated
        
        * configure.in
        Modified for release 0.7.0
        
        * gdome2.spec.in
        Updated
        
        * README
        Updated
        
2001-12-03  Paolo Casarini <paolo@casarini.org>
	* configure.in
        (AC_SUBST) Added GLIB_LIBS
        
        * libgdome/Makefile.am
        (libgdome_la_LIBADD) Added GLIB_LIBS and LIBXML_LIBS
        
        * test/test-node.c
        Modified to follow new treegc features
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_replaceChild) Reference counting bug fix
        (gdome_xml_n_appendChild) Bugs fix related to DocumentFragment node
          and treegc
        (gdome_xml_n_insertBeforeChild) Bugs fix related to DocumentFragment
          node and treegc
        
        * libgdome/gdome-treegc.c
        (gdome_treegc_insertSubtree) Modified to handle XML_DOCUMENT_FRAG_NODE
        
        * libgdome/gdomecore/gdome-xmlutil.[ch]
        (gdome_xmlSetFirstChild) Added
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_doctype) Modified to link always intSubset
        
        * configure.in
        (gdome-config.1.in) added
        
        * gdome-config.in
        Modified to use prefix and exec-prefix outputting cflags and libs result
        
        * libgdome/gdome.h
        (GdomeExceptionCode) Added GDOME_NOEXCEPTION_ERR = 0
        (GdomeException) modified from unsigned short to guint
        
        * libgdome/gdome-events.h
        (GdomeEventExceptionCode) Modified GDOME_UNSPECIFIED_EVENT_TYPE_ERR
           from 0 to 257.
        
        * gtk-doc/
        - Added a new main section called "Memory Management System"
        - Moved private-list documentation to the new main section
        - Added a new section related to treegc module in the new main section
        - Declared DEPRECATED! som old functions in GdomeDOMImplementation
           interface
        
        CVS
        Removed gdome-config.1
        Added gdome-config.1.in
        
2001-11-30  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_replaceChild) Modified to raise NO_MODIFICATION_ALLOWED_ERR,
           before HIERARCHY_REQUEST_ERR.
        (gdome_xml_n_childNodes) Modified to return an empty NodeList, instead
           NULL, if the specified node is a node that can't have childrens.
           
        * lingdome/gdomecore/gdome-xml-util.h
        (GDOME_XML_IS_LEAF_N) Added
        
        * libgdome/gdomecore/gdome-xml-nodel.c
        (gdome_xml_nl_length) Modified to return 0L if the specified node is 
           "leaf" node
        (gdome_xml_nl_item) Modified to return NULL if the specified node is 
           "leaf" node
           
        * test/test-cdata.c
        Modified to test Text.childNodes

        * test/test-dtd.c
        Modified to test DocumentType.childNodes and Notation.childsNodes

2001-11-28  Paolo Casarini <paolo@casarini.org>
        - Changed the type of all unsigned long parameters, variables and return
          values to gulong
        - Changed the type of all unsigned short parameters, variables and return
          values to gushort
          
	* libgdome/gdome-treegc.c
        Modified comments on parameters
        
        * libgdome/gdome-xml-nnodem.c
        (gdome_xml_nnm_mkref) Added memset call to reset Gdome_xml_NamedNodeMap
          after creation
        
        * libgdome/gdome-xml-domimpl.c
        (gdome_xml_di_mkref) Added memset call to reset Gdome_xml_DOMImplementation
          after creation
        
2001-11-23  Paolo Casarini <paolo@casarini.org>
	* test/apigen/core.xml
        Added INVALID_STATE_ERR EXCEPTION to attrs and methods of NodeList and 
        NamedNodeMap interfaces. Added IMPLEMENTATION to gdome_nl_unref and to
        gdome_nnm_unref.
        
2001-11-22  Paolo Casarini <paolo@casarini.org>
	* test/apigen/apigen.c
        (createInterfaceAPI) Modified to read the name of attribute from
           the attribute NAME instead of the content of the ATTR node.
           Modified also to read EXCEPTION info from the xml.
           Modified also to read IMPLEMENTATION info from xml.
           
        * test/apigen/srcutil.c
        (writeAttribute) modified to write Exception handler
        (writeMethod) modified to write Exception handler and Implementation
        (writeCheck) deleted
        (writeException) Added
        
        * test/apigen/core.xml
        * test/apigen/events.xml
        Modifed all ATTR Node moving the name of the attribute specified
        from the content to the the attribute NAME.
        Modified all NOT RAW ATTR and METHOD addind NULL_POINTER_ERR Exception.
        Modified all NOT RAW ATTR and METHOD of Node derived interfaces adding
        INVALID_STATE_ERR Exception.
        Added IMPLEMENTATION element to gdome_xxx_unref
        
        * libgdome/gdome-events.h
        (GdomeEventType) Added
        
        * libgdome/events/gdome-evt-event.[ch]
        (struct _Gdome_evt_Event) added etype field
        (gdome_evt_evnt_mkref) Modified to add etype field initialization
        
        * libgdome/events/gdome-evt-mevent.[ch]
        (struct _Gdome_evt_MutationEvent) added etype field
        (gdome_evt_mevnt_mkref) Modified to add etype field initialization
        
        * libgdome/events/gdome-evt-eventl.c
        (gdome_evt_evntl_handleEvent) Bug Fix
        
        * libgdome/events/gdome-evt-util.h
        (GDOME_XML_IS_EVNT) Implemented
        (GDOME_XML_IS_MEVNT) Implemented
        
        * libgdome/events/gdome-xml-util.h
        All macros modified
        
        * libgdome/gdome-util.[ch]
        (gdome_cast_evnt) added
        (gdome_cast_mevnt) added
        
        * libgdome/gdome-events.h
        (GDOME_EVNT) added
        (GDOME_MEVNT) added
        
2001-11-19  Paolo Casarini <paolo@casarini.org>
        * libgdome/gdome-treegc.[ch]
        (gdome_treegc_isDetached) added to finds nodes that are in detached
           subtrees
        (gdome_treegc_countLiveNodes) added to count referenced node in a
           detached subtree
        (gdome_treegc_addRef) modified to handle NOTATION, ENTITY nodes and
           nodes owned by detached subtree
        (gdome_treegc_delRef) modified to handle NOTATION, ENTITY nodes and
           nodes owned by detached subtree
        (gdome_treegc_removeSubtree) added to decrease main doc livenodes value
           when a subtree is removed.
        (gdome_treegc_removeSubtree) added to increase main doc livenodes value
           when a subtree is inserted.
        (gdome_treegc_adjust) added to adjust main doc livenodes value.
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_unref) Modified to free libxml2 underling structures
           if a node is the root of a detached subtree.
        (gdome_xml_n_appendChild) now also calls gdome_treegc_insertSubtree
        (gdome_xml_n_insertBefore) now also calls gdome_treegc_insertSubtree
           and gdome_treegc_removeSubtree
        (gdome_xml_n_removeChild) now also calls gdome_treegc_removeSubtree
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_removeAttribute) now it doesn't free the directly free
           the removed attribute, but gdome_xml_n_unref does it if needed.
        (gdome_xml_el_removeAttributeNS) now it doesn't free the directly free
           the removed attribute, but gdome_xml_n_unref does it if needed.
           
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_removeNamedItem) now also calls
           gdome_treegc_removeSubtree and gdome_treegc_adjust if needed.
        (gdome_xml_nnm_removeNamedItemNS) now also calls
           gdome_treegc_removeSubtree and gdome_treegc_adjust if needed.
        (gdome_xml_nnm_setNamedItem) now also calls
           gdome_treegc_insertSubtree and gdome_treegc_removeSubtree if
           needed.
        (gdome_xml_nnm_setNamedItemNS) not also calls
           gdome_treegc_insertSubtree and gdome_treegc_removeSubtree if
           needed.
           
        * test/test-document.c
        * test/test-namednodemap.c
        * test/test-treegc.c
        Modified to follow new treegc features
        
        * libgdome/gdomecore/Makefile.am
        Modified to compile also gdome-xml-xmlmemory.[ch]
        
        * libgdome/gdomecore/gdome-xml-xmlmemory.[ch]
        (gdome_xmlFreeSubtree) Added to free libxml2 subtree enabling
           GDOME_INVALID_STATE_ERR exception.
        
        CVS
        Added: gdome-xml-xmlmemory.[ch]
        
2001-11-07  Paolo Casarini <paolo@casarini.org>
	* test/apigen/apigen.c
        * test/apigen/util.c
        * test/test-element.c
        * test/namednodemap.c
        * test/examplea.c
        * test/exampleb.c
        * test/examplec.c
        Added stdio.h in includes
        
        * test/test-cdata.c
        Removed parser.h from includes
        Replaced all !xmlStrEqual with strcmp
        
        * test/test-document.c
        Removed parser.h from includes
        Added string.h in includes
        Replaced all !xmlStrEqual with strcmp
        Replaced all XML_ costants with corresponding GDOME_ ones

        * test/test-dtd.c
        Removed parser.h from includes
        Replaced all !xmlStrEqual with strcmp
        
        * test/test-node.c
        Removed parser.h from includes
        Added string.h in includes
        Replaced all !xmlStrEqual with strcmp
        Replaced all XML_ costants with corresponding GDOME_ ones
        
        * libgdome/gdome.h
        Removed libxml/tree.h from includes
        
        * libgdome/events/gdome-evt-events.h
        Added tree.h in includes
        
        * libgdome/gdome.h
        * libgdome/gdome-events.h
        Removed from every _Gdome... structs the vtab field
        
        * libgdome/gdomecore/gdome-xml-node.h
        * libgdome/gdomecore/gdome-xml-attribute.h
        * libgdome/gdomecore/gdome-xml-cdata.h
        * libgdome/gdomecore/gdome-xml-cdatas.h
        * libgdome/gdomecore/gdome-xml-comment.h
        * libgdome/gdomecore/gdome-xml-document.h
        * libgdome/gdomecore/gdome-xml-documentf.h
        * libgdome/gdomecore/gdome-xml-documentt.h
        * libgdome/gdomecore/gdome-xml-domimpl.h
        * libgdome/gdomecore/gdome-xml-element.h
        * libgdome/gdomecore/gdome-xml-entity.h
        * libgdome/gdomecore/gdome-xml-entityref.h
        * libgdome/gdomecore/gdome-xml-nnodem.h
        * libgdome/gdomecore/gdome-xml-node.h
        * libgdome/gdomecore/gdome-xml-nodel.h
        * libgdome/gdomecore/gdome-xml-notation.h
        * libgdome/gdomecore/gdome-xml-pi.h
        * libgdome/gdomecore/gdome-xml-text.h
        Added in _Gdome_xml_... structs added the vtab field
        * libgdome/gdomecore/gdome-evt-event.h
        * libgdome/gdomecore/gdome-evt-eventl.h
        * libgdome/gdomecore/gdome-evt-mevent.h
        Added in _Gdome_evt_... structs added the vtab field
        
        * libgdome/gdomecore/gdome-xml-node.c
        * libgdome/gdomecore/gdome-xml-nodel.c
        * libgdome/gdomecore/gdome-xml-nnodem.c
        * libgdome/gdomecore/gdome-xml-document.c
        * libgdome/gdomecore/gdome-xml-documentt.c
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_XXX_mkref) Modified to follow the vtab field

        * libgdome/gdomecore/gdome-evt-event.c
        * libgdome/gdomecore/gdome-evt-eventl.c
        * libgdome/gdomecore/gdome-evt-mevent.c
        (gdome_evt_XXX_mkref) Modified to follow the vtab field and
        added the reset for super.user_data field
        
        * libgdome/gdome-treegc.c
        (gdome_treegc_delRef) Modified to fix a memory leak
        
2001-11-05  Paolo Casarini <paolo@casarini.org>
	* libgdome/events/gdome-evt-propagation.c
        (add_timestamp) replaced gettimeofday with g_get_current_time
           patch from Tobias Peters
        
        * Makefile.am
        (EXTRA_DIST) added gdome-config.1
        
        * gdome2.spec.in
        (%doc) added gdome-config.1
        
	* test/Makefile
        Added test-treegc.c test program
        
	* libgdome/gdomecore/gdome-xml-domimpl.c
        Added gdome-treegc.h in includes
	(gdome_xml_di_createDocument)  Modified to fix a bug related 
        to the treegc with regard to DocumentType
        
	* libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_mkref) Modified to fix a bug related to the treegc
        (gdome_xml_dt_unref) Modified to fix a bug related to the treegc

	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_unref) Modified to fix a bug related to the treegc
        
        * libgdome/gdomecore/gdome-xmldtdutil.c
        (notationDeallocator) Modified to fix a memory bug related to the
 	Notation Nodes implemetation at the gdome2 layer
        
        CVS
        Added gdome-config.1 (made by Enrico Zini)
        Added test/test-treegc.c
        
2001-10-23  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_hasFeature) Modified to return TRUE for "Events" and
          "MutationEvents" modules.
          
        * libgdome/gdome.h
        (gdome_xml_n_mkref) declaration moved in gdome-xml-node.h
        (gdome_xml_from_document) declaration removed
        (gdome_xml_n_get_xmlNode) declaration moved in gdome-xml-node.h
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_from_document) removed
        
2001-10-22  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_mkref) added the call to the treegc module and added the
          different call to manage GdomeDocument nodes
        (gdome_xml_n_unref) added the call to the treegc module
        (gdome-treegc.h) in includes
        
        * libgdome/gdomecore/gdome-xml-document.[ch]
        (gdome_xml_doc_mkref) added
        (gdome_xml_doc_unref) added
        (Gdome_xml_Document) added the field livenodes of type int to hold
          tree garbage collector information
        (gdome_xml_doc_vtab) gdome_xml_n_unref replaced with gdome_xml_doc_unref
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_mkref) added the call to the treegc module
        (gdome_xml_dt_unref) added the call to the treegc module
        
        * test/examplea.c
        Added two gdome_n_unref to free result reference
        Updated to the new memory management system
        
        * test/exampleb.c
        Added gdome_nl_unref to free childs reference
        Added gdome_el_unref to free root reference
        Updated to the new memory management system
        
        * test/examplec.c
        Added gdome_el_unref to free rootel reference
        Updated to the new memory management system
        
        * test/test-loadsave.c
        Removed glib.h from includes
        Updated to the new memory management system
        
        * test/test-nodelist.c
        Removed glib.h from includes
        Added gdome_nl_unref to free the last nl reference
        Added gdome_n_node to free node reference
        Updated to the new memory management system

        * test/test-dtd.c
        Removed glib.h from includes
        Added some gdome_xxx_unref to free some zombie references
        Updated to the new memory management system

        * test/test-cdata.c
        Very old gdome2 style programming
        Removed gdome_xml_str.h from includes
        Added many gdome_xxx_unref to free some zombie references
        Updated to the new memory management system
        
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_t_splitText) Lost references bug fix
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_setNamedItem) Lost references bug fix
        (gdome_xml_nnm_setNamedItemNS) Lost references bug fix
        (gdome_xml_nnm_removeNamedItem) Lost references bug fix
        (gdome_xml_nnm_removeNamedItemNS) Lost references bug fix

        * test/test-document.c
        Added many gdome_xxx_unref to free some zombie references
        Updated to the new memory management system

        * test/test-element.c
        Added many gdome_xxx_unref to free some zombie references
        Updated to the new memory management system
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_removeAttributeNode) Lost reference bug fix

        * test/test-mevents.c
        Added many gdome_xxx_unref to free some zombie references
        Added many removeEventListener to free some zombie references
        Updated to the new memory management system

        * test/test-namednodemap.c
        Added many gdome_xxx_unref to free some zombie references
        Updated to the new memory management system

        CVS
        Added gdome-treegc.[ch]
        
2001-10-02  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_getAttribute) modified to be compliant to DOM2 spec
        (gdome_xml_el_getAttributeNS) modified to be compliant to DOM2 spec
        
        * test/test-element.c
        Modified to follow Element.getAttribute and Element.getAttributeNS
        changes
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_ownerDocument) modified to be compliant to DOM2 spec
        
2001-08-06  Paolo Casarini <paolo@casarini.org>
        * configure.in
        Added in AC_OUTPUT gdome2.spec.in (by Andrew Hughes Chatman)
        Prepared for 0.6.9
        
        * Makefile.am
        Added in EXTRA_DIST gdome2.spec
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        Removed "extern int xmlDoValidityCheckingDefaultValue;"
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_hasChildNodes) Bug Fix
        
        CVS
        Added gdome2.spec.in
        
2001-06-13  Paolo Casarini <paolo@casarini.org>
	* gtk-doc/Makefile.am
        install-data-local fix: now ignore errors
        
        * COPYING.LIB
        Changed the license from GPL to LGPL: to make this change I asked the
        consent to previous Gdome2 authors (Raph Levien, Daniel Veillard,
        Mathieu Lacage, Anders Carlson). See the mailing list archive.
        
        * *.[ch]
        Changed the license in the start of each source file from GPL to LGPL
        
2001-06-08  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.[ch]
        (GdomeExceptionCode) bug fix
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_di_createDocument) Added GDOME_WRONG_DOCUMENT_ERR check
        
        * gtk-doc/tmpl/...
        Added short and long description to Entity, EntityReference,
        NamedNodeMap, Node, NodeList, Notation, ProcessingInstruction,
        Text, EventListener, Event and MutationEvent interfaces.
        
        Updated Documentation
        
2001-05-30  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-str.c
        (gdome_xml_str_ref) Added g_return... check on paramenter
        (gdome_xml_str_unref) Added g_return... check on paramenter
        
        * test/Makefile.am
        Added bench.c
        
        CVS
        Added: test/bench.c
        
2001-05-27  Paolo Casarini <paolo@casarini.org>
	*libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_ieEmpty) added
        
        *libgdome/gdome.[ch]
        (gdome_str_isEmpty) added
        
        HTML Documentation
        Added short e long description to Attr, CharacterData, CDATASection,
        Comment, Document, DocumentFragment, DocumentType, DOMImplementation,
        Element interfaces
        
        * libgdome/gdome.[ch]
        (GdomeLoadingMode) added GDOME_LOAD_SUBSTITUTE_ENTITIES
        (gdome_di_createDoc...) changed the type of parameter mode from
          GdomeLoadindMode to unsigned int to add the entities substitution
          capability.

        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_createDoc...) changed the type of parameter mode from
          GdomeLoadindMode to unsigned int to add the entities substitution
          capability.
        (gdome_xml_di_createDocFromXXXXWithEntitiesTable) Fixed SAX memory leak
        
        * test/test-loadsave.c
        Modified to test the GDOME_LOAD_SUBSTITUTE_ENTITIES flag
        
        CVS TREE
        Added in gtk-doc/tmpl: 
        attribute.sgml, documentf.sgml, entityref.sgml, mevent.sgml, pi.sgml,
	cdata.sgml, documentt.sgml, etypes.sgml, nnodem.sgml, text.sgml,
	cdatas.sgml, domimpl.sgml, event.sgml, node.sgml, types.sgml,
	comment.sgml, element.sgml, eventl.sgml, nodel.sgml,
	document.sgml, entity.sgml, gdome2-unused.sgml, notation.sgml.
        
2001-05-24  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_createDocFromURIWithEntitiesTable) Bug Fix
        (gdome_xml_di_createDocFromMemoryWithEntitiesTable) Bug Fix
        
        * libgdome/gdome.[ch]
        Changed the return value of all gdome_xxx_query_interface prototypes
        from void * to gpointer
        
        * libgdome/gdome-events.[ch]
        Changed the return value of all gdome_xxx_query_interface prototypes
        from void * to gpointer
        (gdome_evntl_mkref) changed the type of priv field from void * to gpointer
        (gdome_evntl_get_priv) changed the return value from coid * to gpointer
        
        * libgdome/events/gdome-evt-eventl.h
        (struct _Gdome_evt_EventListener) changed type of field priv from void* to gpointer
        
        * libgdome/gdomecore/gdome-xml-str.[ch]
        Removed old functions
        
        Changed in all function mapped by public API the type void* to gpointer
        
        Updated Documentation
        
2001-05-23  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.h
        * libgdome/gdome-events.h
        * libgdome/gdome-util.h
        * libgdome/gdome-refdebug.h
        * libgdome/gdome-private-list.h
        Added extern "C" {} block when _cplusplus is defined
        
        * libgdome/gdome.h
        * libgdome/gdome-events.h
        CHANGED THE TYPE OF THE user_data field FROM GdomePrivateList TO gpointer
        TO ALL PUBLIC OBJECT STRUCTURES
        
        Updated documentation
        
2001-05-23  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-xmldtdutil
        (notationDeallocator) bug fix to be compiled with libxml 2.3.9
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_getAttributeNode) bug fix
        
        * libgdome/gdome.[ch]
        (GdomeEntitiesTableEntry) added
        (gdome_di_createDocFromURIWithEntityTable)
          renamed in gdome_di_createDocFromURIWithEntitiesTable
        (gdome_di_createDocFromMemoryWithEntityTable)
          renamed in gdome_di_createDocFromMemoryWithEntitiesTable
	(gdome_di_createDocFromURIWithEntitiesTable)
	(gdome_di_createDocFromMemoryWithEntitiesTable)
           changed the field type of entityTable from gchar [][4] to
           const GdomeEntitiesTableEntry[]
        (gdome_str_equalIgnoreCase) added
	(gdome_str_charAt) added
	(gdome_str_concat) added
	(gdome_str_endsWith) added
	(gdome_str_length) added
	(gdome_str_startsWith) added
        
        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_createDocFromURIWithEntityTable)
           renamed in gdome_xml_di_createDocFromURIWithEntitiesTable
        (gdome_xml_di_createDocFromMemoryWithEntityTable)
           renamed in gdome_xml_di_createDocFromMemoryWithEntitiesTable
	(gdome_xml_di_createDocFromURIWithEntitiesTable)
	(gdome_xml_di_createDocFromMemoryWithEntitiesTable)
           changed the field type of entityTable from gchar* [][4] to
           const GdomeEntitiesTableEntry[]
        
        * test/tes-loadsave.c
        Modified to follow changes in DOMImplementation interface
        
        * libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_equalIgnoreCase) added
	(gdome_xml_str_charAt) added
	(gdome_xml_str_concat) added
	(gdome_xml_str_endsWith) added
	(gdome_xml_str_length) added
	(gdome_xml_str_startsWith) added
        
        * configure.in
        Prepared for release 0.6.8
        
        Updated Documentation
        
        
2001-05-22  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.h
        (GDOME_A) Casting Marco added
        (GDOME_CD) Casting Marco added
        (GDOME_CDS) Casting Marco added
        (GDOME_C)) Casting Marco added
        (GDOME_DOC) Casting Marco added
        (GDOME_DF) Casting Marco added
        (GDOME_DT) Casting Marco added
        (GDOME_EL) Casting Marco added
        (GDOME_ENT) Casting Marco added
        (GDOME_ER) Casting Marco added
        (GDOME_N) Casting Marco added
        (GDOME_NOT) Casting Marco added
        (GDOME_PI) Casting Marco added
        (GDOME_T) Casting Marco added
        (GDOME_EVNTT) Casting Marco added
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_ref) added g_return assert to check parameters
        (gdome_xml_di_unref) added g_return assert to check parameters
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_attributes) added g_return assert to check parameters
        (gdome_xml_el_getAttribute) added g_return assert to check parameters
        (gdome_xml_el_getAttributeNode) added g_return assert to check parameters
        (gdome_xml_el_getElementsByTagName) added g_return assert to check parameters
        (gdome_xml_el_getElementsByTagNameNS) added g_return assert to check parameters
        (gdome_xml_el_getAttributeNS) added g_return assert to check parameters
        (gdome_xml_el_getAttributeNodeNS) added g_return assert to check parameters
        (gdome_xml_el_hasAttribute) added g_return assert to check parameters
        (gdome_xml_el_hasAttributeNS) added g_return assert to check parameters

        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_ref) added g_return assert to check parameters
        (gdome_xml_nnm_unref) added g_return assert to check parameters
        (gdome_xml_nnm_length) added g_return assert to check parameters
        (gdome_xml_nnm_getNamedItem) added g_return assert to check parameters
        (gdome_xml_nnm_getNamedItemNS) added g_return assert to check parameters
        (gdome_xml_nnm_item) added g_return assert to check parameters

	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_ref) added g_return assert to check parameters
        (gdome_xml_n_unref) added g_return assert to check parameters
        (gdome_xml_n_) added g_return assert to check parameters
        (gdome_xml_n_) added g_return assert to check parameters
        (gdome_xml_n_) added g_return assert to check parameters
        (gdome_xml_n_) added g_return assert to check parameters
        
	* libgdome/gdomecore/gdome-xml-nodel.c
        (gdome_xml_nl_ref) added g_return assert to check parameters
        (gdome_xml_nl_unref) added g_return assert to check parameters
        (gdome_xml_nl_length) added g_return assert to check parameters
        (gdome_xml_nl_item) added g_return assert to check parameters

        CVS TREE
        Added: gdome-util.[ch]
2001-05-20  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_di_saveDocToFile) added
        (gdome_xml_di_saveDocToMemory) added
        
        * libgdome/gdome.[ch]
        Renamed field private to user_data in all object structures
        (gdome_di_saveDocToFile) added
        (gdome_di_saveDocToMemory) added
        
        * libgdome/gdome-events.h
        Renamed field private to user_data in all object structures
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_mkref) modified to follow private field name

        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_mkref) modified to follow private field name
        
        * test/examplea.c
        * test/exampleb.c
        * test/examplec.c
        * test/test-document.c
        * test/test-node.c
        Modified to follow save API changes
        
        * configure.in
        Prepared for 0.6.7
        
        Updated dodumentation

2001-05-19  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-attribute.c
	* libgdome/gdomecore/gdome-xml-cdata.c
	* libgdome/gdomecore/gdome-xml-documentt.c
	* libgdome/gdomecore/gdome-xml-element.c
	* libgdome/gdomecore/gdome-xml-entity.c
	* libgdome/gdomecore/gdome-xml-nnodem.c
	* libgdome/gdomecore/gdome-xml-node.c
	* libgdome/gdomecore/gdome-xml-nodel.c
	* libgdome/gdomecore/gdome-xml-notation.c
	* libgdome/gdomecore/gdome-xml-pi.c
	* libgdome/gdomecore/gdome-xml-text.c
	* libgdome/gdomecore/gdome-xml-util.c
        * libgdome/events/gdome-evt-event.c
        * libgdome/events/gdome-evt-eventl.c
        * libgdome/events/gdome-evt-mevent.c
        (gdome-util.h) removed from include
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_internalSubset) implemented
        
        * libgdome/Makefile.am
        (gdome-util.[ch]) removed
        
        * libgdome/gdomecore/Makefile.am
        (gdome-xml-util.c) removed
        
        * libgdome/events/Makefile.am
        (gdome-evt-util.c) added

        * libgdome/gdomecore/gdome-xml-util.h
	(gdome_xml_cast_node) removed
	(gdome_xml_cast_el) removed
	(gdome_xml_cast_evntt) removed
	(gdome_xml_cast_evntl) removed
	(GDOME_XML_IS_EVNTT) moved in gdome-evt-util.h
	(GDOME_XML_IS_EVNTL) moved in gdome-evt-util.h
	(GDOME_XML_IS_EVNT) moved in gdome-evt-util.h
	(GDOME_XML_IS_MEVNT) moved in gdome-evt-util.h
        
        * test/test-dtd.c
        Added test for gdome_dt_internalSubset
        
        CVS TREE
        Removed libgdome/gdome-util.[ch], libgdome/gdomecore/gdome-xml-util.c
        Added libgdome/events/gdome-evt-util.h
        
        
2001-05-19  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_importNode) Bug Fix handling GDOME_ATTRIBUTE_NODE
        
	* libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_cloneNode) Bug Fix handling GDOME_ATTRIBUTE_NODE
        
2001-05-16  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_createEvent) added the support for "Events" eventType
        
        * libgdome/gdome-events.[ch]
        (struct _GdomeMutationEvent) added "private" field
        (struct _GdomeEvent) added "private" field
        (struct _GdomeEventListener) added "private" field
        (gdome_evntl_get_priv) added - Deprecated function -
        
        * libgdome/gdomecore/gdome-evt-evntl.[ch]
        (gdome_evt_evntl_get_priv) commented
        
2001-05-15  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-node.c
        (addEventListener) bug fix in EventListener reference counting
        (removeEventListener) bug fix in EventListener reference counting
        
        * libgdome/events/gdome-evt-propagation.c
        (invokeListeners) bug fix in EventListener reference counting
        
        * libgdome/gdomecore/gdome-xml-node.[ch]
        (gdome_xml_n_canAppend) added - used for GDOME_HIERARCHY_REQUEST_ERR
        (gdome_xml_n_appendChild) added check for GDOME_HIERARCHY_REQUEST_ERR
        (gdome_xml_n_insertBefore) added check for GDOME_HIERARCHY_REQUEST_ERR
        (gdome_xml_n_replaceChild) added check for GDOME_HIERARCHY_REQUEST_ERR
        (gdome_xml_n_set_prefix) bug fix in prefix check
        
        * libgdome/gdome.[ch]
        (gdome_xxx_canAppend) added
        
        * libgdome/gdomecore/gdome-xml-nnodem.h
        (struct _Gdome_xml_NamedNodeMap) Changed the type of field "type" from gint to GdomeNodeType
        (GDOME_XML_NNM_LIST) removed
        (GDOME_XML_NNM_HASH) removed
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_mkref) changed parameter type of "type" from gint to
        GdomeNodeType, added increasing of reference counting for elem,
        changed the check to distinguish the type of the nnm from specific gint
        to GdomeNodeType
        (gdome_xml_nnm_unref) added decreasing of referecen counting for doc and elem
        (gdome_xml_nnm_length) modified to distinguish on node type
        (gdome_xml_nnm_getNamedItem) modified to distinguish on node type
        (gdome_xml_nnm_getNamedItemNS) modified to distinguish on node type
        (gdome_xml_nnm_item) modified to distinguish on node type
        (gdome_xml_nnm_removeNamedItem) modified to distinguish on node type
        (gdome_xml_nnm_removeNamedItemNS) modified to distinguish on node type
        (gdome_xml_nnm_setNamedItem) modified to distinguish on node type,
        added GDOME_GDOME_HIERARCHY_REQUEST_ERR (see DOM-Level-2-errata core-4)
        (gdome_xml_nnm_setNamedItemNS) modified to distinguish on node type
        added GDOME_GDOME_HIERARCHY_REQUEST_ERR (see DOM-Level-2-errata core-4)
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_entities) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_dt_notations) modified to follow changes in gdome_xml_nnm_mkref
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_attributes) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_removeAttribute) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_getAttributeNode) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_setAttributeNode) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_removeAttributeNode) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_removeAttributeNodeNS) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_getAttributeNodeNS) modified to follow changes in gdome_xml_nnm_mkref
        (gdome_xml_el_setAttributeNodeNS) modified to follow changes in gdome_xml_nnm_mkref
        
2001-05-13  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        Renamed all functions from gdome_xml_DOMImplementation_xxx to gdome_xml_di_xxx
        
	* libgdome/gdome.[ch]
        Renamed all functions from gdome_DOMImplementation_xxx to gdome_di_xxx
        (GdomeLoadingCode) added
        (gdome_di_createDocFromURI) added
        (gdome_di_createDocFromMemory) added
        (gdome_di_createDocFromURIWithEntityTable) added
        (gdome_di_createDocFromMemoryWithEntityTable) added
        
        * gtk-doc/gdome2-sections.txt
        * test/apigen/core.xml
        * test/examplea.c
        * test/exampleb.c
        * test/examplec.c
        * test/test-cdata.c
        * test/test-document.c
        * test/test-dtd.c
        * test/test-element.c
        * test/test-mevents.c
        * test/test-namednodemap.c
        * test/test-node.c
        * test/test-nodelist.c
        * test/apigen/apigen.c
        * libgdome/gdomecore/gdome-xml-document.c
        * libgdome/gdomecore/gdome-xml-node.c
        Updated to follow changes of DOMImplementation Inteface APIs
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_childNodes) hierarchy bug fix
        (gdome_xml_n_firstChild) hierarchy bug fix
        (gdome_xml_n_lastChild) hierarchy bug fix
        (gdome_xml_n_mkref) hierarchy bug fix
        (gdome_xml_n_unref) hierarchy bug fix
        (gdome_xml_n_dispatchEvent) modified to return the right value
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (config.h) added in include
        (gdome-refdebug.h) added in include
        (gdome_xml_dt_mkref) modifed to add reference counting debug
        (gdome_xml_dt_unref) modifed to add reference counting debug
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_removeAttribute) SegFault BUG FIX
        (gdome_xml_el_removeAttributeNS) SegFault BUG FIX
        
        * test/test-mevents.c
        Adde tests on DOMAttrModified events
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_di_createDocFromURI) added
        (gdome_xml_di_createDocFromMemory) added
        (gdome_xml_di_createDocFromURIWithEntityTable) added
        (gdome_xml_di_createDocFromMemoryWithEntityTable) added
        
        * libgdome/refdebug.[ch]
        (GDOME_REFDBG_NODELIST) added
        (GDOME_REFDBG_NAMEDNODEMAP) added
        (GDOME_REFDBG_EVENTLISTENER) added
        
        * libgdome/events/gdome-evt-eventl.c
        (config.h) added in include
        (gdome-refdebug.h) added in include
        (gdome_evt_evntl_mkref) modified to add reference counting debug
        (gdome_evt_evntl_unref) modified to add reference counting debug

        * libgdome/events/gdome-xml-nodel.c
        (config.h) added in include
        (gdome-refdebug.h) added in include
        (gdome_xml_nl_mkref) modified to add reference counting debug
        (gdome_xml_nl_unref) modified to add reference counting debug
        
        * libgdome/events/gdome-xml-nnodem.c
        (config.h) added in include
        (gdome-refdebug.h) added in include
        (gdome_xml_nnm_mkref) modified to add reference counting debug
        (gdome_xml_nnm_unref) modified to add reference counting debug
        
        * test/apigen/core.xml
        (gdome_di_createDocFromURI) added
        (gdome_di_createDocFromMemory) added
        (gdome_di_createDocFromURIWithEntityTable) added
        (gdome_di_createDocFromMemoryWithEntityTable) added
        
        * gtk-doc
        Update Documentation
        
        * test/exampleb.c
        * test/examplec.c
        * test/test-document.c
        * test/test-dtd.c
        * test/test-document.c
        * test/test-element.c
        * test/test-mevents.c
        * test/test-namednodemap.c
        * test/test-node.c
        * test/test-nodelist.c
        Modified to use new DOMImplementation APIs
        
        * test/Makefile.am
        Added test-loadsave test program
        
        * configure.in
        Prepared for 0.6.6
        
        CVS ADD
        test/test-loadsave.c, test/test-loadsave1.xml, test/test-loadsave2.xml
        
2001-05-09  Paolo Casarini <paolo@casarini.org>
	* libgdome/Makefile.am
        Added gdome-refdebug.[ch]
        
        * configure.in
        Added with-ref-debug flag to include reference counting module
        
        * libgdome/gdomecore/gdome-xml-node.c
        (config.h) added in include
        (gdome_xml_n_mkref) modified to add reference counting debug
        (gdome_xml_n_unref) modified to add reference counting debug
        (gdome_xml_n_removeChild) modified the order of dispatching
        (gdome_xml_n_insertBefore) modified the order of dispatching

        * libgdome/gdomecore/gdome-evt-event.c.c
        (config.h) added in include
        (gdome_evt_evnt_mkref) modified to add reference counting debug
        (gdome_evt_evnt_unref) modified to add reference counting debug

        * libgdome/gdomecore/gdome-evt-mevent.c
        (config.h) added in include
        (gdome_evt_mevnt_mkref) modified to add reference counting debug
        (gdome_evt_mevnt_unref) modified to add reference counting debug
        
        * libgdome/gdomecore/gdome-xml-str.c
        (config.h) added in include
        (gdome_xml_str_mkref) modified to add reference counting debug
        (gdome_xml_str_mkref_own) modified to add reference counting debug
        (gdome_xml_str_mkref_xml) modified to add reference counting debug
        (gdome_xml_str_mkref_dup) modified to add reference counting debug
	(gdome_xml_str_const_unref) modified to add reference counting debug
        (gdome_xml_str_unref_own) modified to add reference counting debug
        (gdome_xml_str_unref_xml) modified to add reference counting debug
        
        * libgdome/events/gdome-evt-propagation.c
        (fireEvent) bug fix in capturing and bubbling phase
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_DOMImplementation_createDocument) refcnt bug fix
        
        * test/Makefile.am
        Added test-mevents test program
        
        * gtk-doc/Makefile.am
        (EXTRA_DIST) added events html files
        
        CVS TREE
        Added:
        libgdome/gdome-refdebug.[ch], acconfig.h, test/test-mevents.c,
        test/test-mevents.xml
        
2001-05-06  Paolo Casarini <paolo@casarini.org>
        * libgdome/events/gdome-evt-eventl.[ch]
        Added doumentation comments to all functions
        (gdome_evt_evntl_handleEvent) modified the prototype
        
        * libgdome/events/gdome-evt-event.[ch]
        (gdome_evt_evnt_currentTarget) modified the prototype
        (gdome_evt_evnt_target) modified the prototype
        
        * libgdome/events/gdome-evt-event.[ch]
        (gdome_evt_mevnt_unref) bug fix
        (gdome_evt_mevnt_query_interface) added
        (gdome_evt_mevnt_vtab) modified
        
        * libgdome/gdome-events.h
        (gdome_evnt_currentTarget) modified the prototype
        (gdome_evntl_handleEvent) modified the prototype
        (gdome_evnt_target) modified the prototype
        (gdome_mevnt_attrChange) added
        (GdomePhaseType) added
        (GdomeAttrChangeType) added
        * libgdome/gdome-events.c
        Added Comments
        
        * test/apigen/apigen.c
        Bug Fix
        
        * test/apigen/srcutil.c
        (writeMethod) added implementation for function params
        (writeCheck) added implementation for GdomeDOMTimeStamp
        
        * libgdome/gdomecore/gdome-xml-attribute.c
        * libgdome/gdomecore/gdome-xml-cdata.c
        * libgdome/gdomecore/gdome-xml-element.c
        * libgdome/gdomecore/gdome-xml-nnodem.c
        * libgdome/gdomecore/gdome-xml-node.c
        * libgdome/gdomecore/gdome-xml-pi.c
        * libgdome/gdomecore/gdome-xml-text.c
        Bug fix using gdome_evt_mevnt_unref
        
        * libgdome/gdome.h
        (struct _GdomeNamedNodeMapVtab) removed
        (struct _GdomeNodeListVtab) removed
        (struct _GdomeDOMImplementationVtab) removed
        (struct _GdomeNodeVtab) removed
        (struct _GdomeCharacterDataVtab) removed
        (struct _GdomeTextVtab) removed
        (struct _GdomeCDATASectionVtab) removed
        (struct _GdomeCommentVtab) removed
        (struct _GdomeDocumentVtab) removed
        (struct _GdomeDocumentFragmentVtab) removed
        (struct _GdomeDocumentTypeVtab) removed
        (struct _GdomeAttrVtab) removed
        (struct _GdomeElementVtab) removed
        (struct _GdomeEntityVtab) removed
        (struct _GdomeEntityReferenceVtab) removed
        (struct _GdomeNotationVtab) removed
        (struct _GdomeProcessingInstructionVtab) removed
        
        * libgdome/gdome.c
        * test/apigen/core.xml
        (libxml/hash.h) added in include
        (gdome-xml-nnodem.h) added in include
        (gdome-xml-nodel.h) added in include
        (gdome-xml-domimpl.h) added in include
        (gdome-xml-node.h) added in include
        (gdome-xml-cdata.h) added in include
        (gdome-xml-text.h) added in include
        (gdome-xml-cdatas.h) added in include
        (gdome-xml-comment.h) added in include
        (gdome-xml-document.h) added in include
        (gdome-xml-documentf.h) added in include
        (gdome-xml-documentt.h) added in include
        (gdome-xml-attribute.h) added in include
        (gdome-xml-element.h) added in include
        (gdome-xml-entity.h) added in include
        (gdome-xml-entityref.h) added in include
        (gdome-xml-notation.h) added in include
        (gdome-xml-pi.h) added in include
        
        * libgdome/gdomecore/gdome-xml-nnodem.h
        (struct _GdomeNamedNodeMapVtab) added

        * libgdome/gdomecore/gdome-xml-nodel.h
        (struct _GdomeNodeListVtab) added
        
        * libgdome/gdomecore/gdome-xml-domimpl.h
        (struct _GdomeDOMImplementationVtab) added
        
        * libgdome/gdomecore/gdome-xml-node.h
        (struct _GdomeNodeVtab) added

        * libgdome/gdomecore/gdome-xml-cdata.h
        (struct _GdomeCharacterDataVtab) added

        * libgdome/gdomecore/gdome-xml-cdata.h
        (struct _GdomeTextVtab) added

        * libgdome/gdomecore/gdome-xml-cdatas.h
        (struct _GdomeCDATASectionVtab) added
        
        * libgdome/gdomecore/gdome-xml-comment.h
        (struct _GdomeCommentVtab) added
        
        * libgdome/gdomecore/gdome-xml-document.h
        (struct _GdomeDocumentVtab) added
        
        * libgdome/gdomecore/gdome-xml-documentf.h
        (struct _GdomeDocumentFragmentVtab) added
        
        * libgdome/gdomecore/gdome-xml-documentt.h
        (struct _GdomeDocumentTypeVtab) added

        * libgdome/gdomecore/gdome-xml-attribute.h
        (struct _GdomeAttributeVtab) added

        * libgdome/gdomecore/gdome-xml-element.h
        (struct _GdomeElementVtab) added
        
        * libgdome/gdomecore/gdome-xml-entity.h
        (struct _GdomeEntityVtab) added
        
        * libgdome/gdomecore/gdome-xml-entityref.h
        (struct _GdomeEntityReferenceVtab) added
        
        * libgdome/gdomecore/gdome-xml-notation.h
        (struct _GdomeNotationVtab) added
        
        * libgdome/gdomecore/gdome-xml-pi.h
        (struct _GdomeProcessingInstructionVtab) added
        
        * test/test-node.c
        * test/test-dtd.c
        * test/test-document.c
        All API calls changed from vtabs style to C API style
        
        * gtk-doc/Makefile.am
        Added gdome-events.h to scan
        
        * gtk-doc/gdome2-sections.txt
        * gtk-doc/gdome2-docs.sgml
        Added Events Documentation
        
        CVS TREE
        Added: test/apigen/events.xml
         gtk-doc/html/gdome2-events-basic-types-and-enumerations.html
         gtk-doc/html/gdome2-events.html
         gtk-doc/html/gdome2-gdomeevent.html
         gtk-doc/html/gdome2-gdomeeventlistener.html
         gtk-doc/html/gdome2-gdomemutationevent.html
        
2001-05-04  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_saveFormatFile) changed the prototype
        
        * libgdome/gdomecore/gdome-xml-document.[ch]
        (gdome_xml_doc_createEvent) added
        
        * libgdome/gdome.[ch]
        (gdome_DOMImplementation_saveFormatFile) changed the prototype
        (gdome_xml_mut_invoke_listener) removed
        (struct _GdomeNodeVtab) added subTreeDispatchEvent
        (gdome_n_subTreeDispatchEvent) added
        (gdome_el_subTreeDispatchEvent) added
        (gdome_a_subTreeDispatchEvent) added
        (gdome_cd_subTreeDispatchEvent) added
        (gdome_t_subTreeDispatchEvent) added
        (gdome_cds_subTreeDispatchEvent) added
        (gdome_c_subTreeDispatchEvent) added
        (gdome_doc_subTreeDispatchEvent) added
        (gdome_dt_subTreeDispatchEvent) added
        (gdome_df_subTreeDispatchEvent) added
        (gdome_ent_subTreeDispatchEvent) added
        (gdome_er_subTreeDispatchEvent) added
        (gdome_not_subTreeDispatchEvent) added
        (gdome_pi_subTreeDispatchEvent) added
        (struct _GdomeDocumentVtab) added createEvent
        (gdome_doc_createEvent) added
        
        * test/apigen/core.xml
        Changed the prototype of the saveFormatFile METHOD in DOMImplmentation
        Interface.
        Added createEvent in Document Interface and subTreeDispatchEvent in
        Node Interface.
        
        * configure.in
        Prepared for 0.6.5 release
        
        * libgdome/gdomecore/gdome-xml-node.[ch]
        (gdome_xml_n_invoke_listener) removed
        (gdome_xml_mut_invoke_listener_recursive) removed
        (add_timestamp) removed
        (gdome_xml_n_invoke_listener_prop) removed
        (gdome_xml_mut_invoke_listener_recursive) removed
        (gdome_xml_n_subTreeDispatchEvent) commented
        
        * gtk-doc
        Documentation on Core module updated
        
2001-05-03  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-pi.c
        (gdome_xml_pi_set_data) mopdified to dispatch of DOMSubTreeModified and
                                the check for GDOME_NO_MODIFICATION_ALLOWED_ERR
        (gdome_xml_pi_query_interface) added and implemented
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_set_nodeValue) modified to forward the call to more
	                            specific API
        (gdome_xml_n_appendChild) modifed to dispatch DOMNodeInserted,
                                  DOMInsertedIntoDocument and DOMSubTreeModified
        (gdome_xml_n_insertBeforeChild) modifed to dispatch DOMNodeInserted,
                                        DOMInsertedIntoDocument, DOMSubTreeModified,
                                        DOMNodeRemovedFromDocument and DOMNodeRemoved
        (gdome_xml_n_removeChild) modifed to dispatch DOMSubTreeModified,
                                  DOMNodeRemovedFromDocument and DOMNodeRemoved
        (gdome_xml_n_query_interface) modified and commented
        
        
        * libgdome/gdomecore/gdome-xml-cdata.[ch]
        (gdome_xml_n_set_data) modified to dispatch of DOMSubTreeModified and
                               DOMCharacterDataModified
        (gdome_xml_cd_appendData) modified to dispatch of DOMSubTreeModified
                                  and DOMCharacterDataModified
        (gdome_xml_cd_deleteData) modified to dispatch of DOMSubTreeModified
                                  and DOMCharacterDataModified
        (gdome_xml_cd_insertData) modified to dispatch of DOMSubTreeModified
                                  and DOMCharacterDataModified
        (gdome_xml_cd_replaceData) modified to dispatch of DOMSubTreeModified
                                   and DOMCharacterDataModified
        (gdome_xml_cd_query_interface) implemented
        
	
        * libgdome/gdomecore/gdome-xml-attribute.[ch]
        (gdome_xml_a_set_value) modified to dispatch of DOMAttrModified
	                        and DOMSubTreeModified
        (gdome_xml_a_query_interface) bug fix
        (gdome_xml_a_ownerElement) bug fix
        (gdome_xml_a_query_interface) modified and commented
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_removeNamedItem) modifed to dispatch DOMAttrModified
	                                and DOMSubTreeModified
        (gdome_xml_nnm_removeNamedItemNS) modifed to dispatch DOMAttrModified
	                                  and DOMSubTreeModified
        (gdome_xml_nnm_setNamedItem) modifed to dispatch DOMAttrModified
	                             and DOMSubTreeModified
        (gdome_xml_nnm_setNamedItemNS) modifed to dispatch DOMAttrModified
	                               and DOMSubTreeModified
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_setAttribure) modifed to dispatch DOMAttrModified
                                    and DOMSubTreeModified
        (gdome_xml_el_setAttribureNS) modifed to dispatch DOMAttrModified
                                      and DOMSubTreeModified
        (gdome_xml_el_removeAttribute) modified tests on params
        (gdome_xml_el_removeAttributeNS) modified tests on params
        (gdome_xml_el_setAttributeNode) modified tests on params
        (gdome_xml_el_setAttributeNodeNS) modified tests on params
        (gdome_xml_el_removeAttributeNode) modified tests on params
        (gdome_xml_el_query_interface) added and implemented
        
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_t_splitText) modifed to dispatch DOMNodeInserted
                                and DOMSubTreeModified
        (gdome_xml_t_query_interface) added and implemented
        
        * libgdome/gdomecore/gdome-xml-cdatas.[ch]
        (gdome_xml_cds_query_interface) added and implemented

        * libgdome/gdomecore/gdome-xml-comment.[ch]
        (gdome_xml_c_query_interface) added and implemented
        
        * libgdome/gdomecore/gdome-xml-document.[ch]
        (gdome_xml_doc_query_interface) added and implemented
        
        * libgdome/gdomecore/gdome-xml-documentf.[ch]
        (gdome_xml_df_query_interface) added and implemented

        * libgdome/gdomecore/gdome-xml-documentt.[ch]
        (gdome_xml_dt_query_interface) added and implemented

        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_query_interface) implemented

        * libgdome/gdomecore/gdome-xml-entity.[ch]
        (gdome_xml_ent_query_interface) added and implemented

        * libgdome/gdomecore/gdome-xml-entityref.[ch]
        (gdome_xml_er_query_interface) added and implemented

        * libgdome/gdomecore/gdome-xml-notation.[ch]
        (gdome_xml_not_query_interface) added and implemented

        * lingdome/gdomecore/gdome-xml-util.h
        (GDOME_XML_IS_C) implemented
        (GDOME_XML_IS_CDS) implemented
        (GDOME_XML_IS_DF) implemented
        (GDOME_XML_IS_ER) implemented
        
        * libgdome/gdome.h
        (GdomeEventTarget) added
        (GdomeDocumentEvent) added
        
2001-04-29  Paolo Casarini <paolo@casarini.org>
	* test/test-nodelist.c
        Bug fix
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_addEventListener) modified
        (gdome_xml_n_removeListener) implemented
        (gdome_xml_n_dispatchEvent) implemented
        (gdome_xml_n_subTreeDispatchEvent) added - no standard
        (gdome_xml_n_appendChild) modified event's implementation
        
        * libgdome/gdomecore/gdome-evt-propagation.c
        (gdome_evt_invokeListeners) modified to handle removal
        (gdome_evt_fireEvent) modified
        
        * libgdome/events/gdome-evt-mevnt.c
        (gdome_evt_mevnt_initMutationEvent) modified
        
        * libgdome/gdome-events.h
        (GdomeEventException) added
        (GdomeEventExceptionCode) added
        
        * libgdome/events/gdome-evt-event.c
        (gdome_evt_evnt_preventDefault) bug fix.
        
2001-04-27  Paolo Casarini <paolo@casarini.org>
        * libgdome/events/Makefile.am
        Modified to follow CVS TREE changes
        
        * libgdome/gdome-events.[ch]
        (struct _GdomeEventListenerVtab) moved in libgdome/events/gdome-evt-eventl.h
        (struct _GdomeEventVtab) moved in libgdome/events/gdome-evt-event.h
        (struct _GdomeMutationEventVtab) moved in libgdome/events/gdome-evt-mevent.h
        Modified to follow events file changes
        
        * libgdome/events/gdome-evt-eventl.[ch]
        (struct _GdomeEventListenerVtab) added
        (struct _Gdome_xml_EventListenerPriv) removed
        (struct _Gdome_xml_EventListener) added struct _Gdome_xml_EventListenerPriv fields
        Implementation of the EventListener Interface
        
        * libgdome/events/gdome-evt-event.[ch]
        (struct _GdomeEventVtab) added
        (struct _Gdome_xml_EventPriv) removed
        (struct _Gdome_xml_Event) added struct _Gdome_xml_EventPriv fields
        Implementation of the Event Interface

        * libgdome/events/gdome-evt-mevent.[ch]
        (struct _GdomeMutationEventVtab) added
        (struct _Gdome_xml_MutationEventPriv) removed
        (struct _Gdome_xml_MutationEvent) added struct _Gdome_xml_MutationEventPriv fields
        Implementation of the MutationEvent Interface

        * libgdome/gdomecore/gdome-xml-comment.h
        (#include "gdome-xml-eventl.h") removed, useless
        
        * libgdome/gdomecore/gdome-xml-node.c
        * libgdome/gdomecore/gdome-xml-util.[ch]
        * libgdome/Makefile.am
        * libgdome/gdome-events.c
        Modified to follow events file changes
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_n_cloneNode) modified comment and implementation

        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_doc_importNode) modified comment and implementation
        (gdome_doc_createEvent) added
        
        * libgdome/gdomecore/gdome-xml-pi.c
        (gdome_xml_pi_set_data) bug fix and added Events
        
        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_saveFormatFile) added

        CVS TREE
        Added:
        libgdome/events/gdome-evt-propagation.[ch]
        Moved:
        libgdome/events/gdome-xml-event.c to libgdome/events/gdome-evt-event.c
        libgdome/events/gdome-xml-event.h to libgdome/events/gdome-evt-event.h
        libgdome/events/gdome-xml-eventl.c to libgdome/events/gdome-evt-eventl.c
        libgdome/events/gdome-xml-eventl.h to libgdome/events/gdome-evt-eventl.h
        libgdome/events/gdome-xml-mevent.c to libgdome/events/gdome-evt-mevent.c
        libgdome/events/gdome-xml-mevent.h to libgdome/events/gdome-evt-mevent.h
        
2001-04-25  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_importNode) bug fix
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_mkref) bug fix in the init of the Gdome_xml_Node structure
        (gdome_xml_vtabs) bug fix for entity reference nodes
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_mkref) bug fix in the init of the Gdome_xml_DocumentType structure
        
        * Makefile.am
        (SUBDIRS) Added gtk-doc
        
        * gtk-doc/Makefile.am
        (EXTRA_DIST) added
        
        * test/test-cdata.c
        All API calls changed from vtabs style to C API style
        
        * configure.in
        Prepared for 0.6.4
        
        CVS TREE
        Added:
        gtk-doc/html
        gtk-doc/html/book1.html
        gtk-doc/html/gdome2-basic-types-and-enumerations.html
	gtk-doc/html/gdome2-core.html
	gtk-doc/html/gdome2-gdomeattr.html
	gtk-doc/html/gdome2-gdomecdatasection.html
	gtk-doc/html/gdome2-gdomecharacterdata.html
	gtk-doc/html/gdome2-gdomecomment.html
	gtk-doc/html/gdome2-gdomedocument.html
	gtk-doc/html/gdome2-gdomedocumentfragment.html
	gtk-doc/html/gdome2-gdomedocumenttype.html
	gtk-doc/html/gdome2-gdomedomimplementation.html
	gtk-doc/html/gdome2-gdomeelement.html
	gtk-doc/html/gdome2-gdomeentity.html
	gtk-doc/html/gdome2-gdomeentityreference.html
	gtk-doc/html/gdome2-gdomenamednodemap.html
	gtk-doc/html/gdome2-gdomenode.html
	gtk-doc/html/gdome2-gdomenodelist.html
	gtk-doc/html/gdome2-gdomenotation.html
	gtk-doc/html/gdome2-gdomeprocessinginstruction.html
	gtk-doc/html/gdome2-gdometext.html
	gtk-doc/html/index.sgml
        
2001-04-24  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_importNode) Bug Fix
        
        * libgdome/gdomecore/gdome-xml-nodel.c
        (gdome_xml_nl_mkref) Added gdome_xml_n_ref(root, &exc)
        (gdome_xml_nk_unref) Added gdome_xml_n_unref(root, &exc)
        
        * test/test-nodelist.c
        Modified to test all attribute, methods and liveness
        
        * test/Makefile.am
        Modified to compile test-nodelist.c and test-namednodemap.c
        
        * test/apigen/Makefile.am
        removed "copying" from EXTRA_DIST
        
        * configure.in
        Prepared for 0.6.3
        
        CVS
        Added: test/test-namednodemap.c test-namednodemap.xml
        
2001-04-22  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-attribute.c
	* libgdome/gdomecore/gdome-xml-cdata.c
        * libgdome/gdomecore/gdome-xml-document.c
        * libgdome/gdomecore/gdome-xml-documentt.c
        * libgdome/gdomecore/gdome-xml-domimpl.c
        * libgdome/gdomecore/gdome-xml-element.c
        * libgdome/gdomecore/gdome-xml-entity.c
        * libgdome/gdomecore/gdome-xml-nnodem.c
        * libgdome/gdomecore/gdome-xml-node.c
        * libgdome/gdomecore/gdome-xml-nodel.c
        * libgdome/gdomecore/gdome-xml-notation.c
        * libgdome/gdomecore/gdome-xml-pi.c
        * libgdome/gdomecore/gdome-xml-str.c
        * libgdome/gdomecore/gdome-xml-text.c
        * libgdome/gdomecore/gdome-xml-xmldtdutil.c
        * libgdome/gdomecore/gdome-xml-xmlutil.c
        Modified some comments to respect gtk-doc rules
        
        * libgdome/gdome.h
        (GdomeExceptionCode) Added GDOME_NULL_POINTER_ERR
	(gdome_nnm_getNamedItemNS) Added prototype
	(gdome_nnm_setNamedItemNS) Added prototype
	(gdome_nnm_removeNamedItemNS) Added prototype
        -Added the old field private (GdomePrivateList*) to all the interface struts
        -Some Bugs Fix
        
        * libgdome/gdome-private-list.[ch]
        Some little changes and added comments
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_DOMImplementation_createDocumentType) Bug fix
        (gdome_DOMImplementation_createDocumentType) Bug fix
        
        * configure.in
        * libgdome/gdome.[ch]
        * libgdome/gdome-util.h
        * libgdome/Makefile.am
        * lingdome/gdomecore/Makefile.am
        Modified to follow "events" directory creation
        
        CVS TREE
        Added: 
        libgdome/gdome-events.[ch]
        libgdome/events
        libgdome/events/Makefile.am
        test/apigen
        test/apigen/Makefile.am
        test/apigen/apigen.c
        test/apigen/core.xml
        test/apigen/srcutil.c
        test/apigen/srcutil.h
        test/apigen/util.c
        test/apigen/util.h
        gtk-doc
        gtk-doc/Makefile.am
        gtk-doc/gdome2-docs.sgml
        gtk-doc/gdome-sections.txt
        
        Moved in libgdome/events:
        libgdome/gdomecore/gdome-xml-event.[ch]
        libgdome/gdomecore/gdome-xml-mevent.[ch]
        libgdome/gdomecore/gdome-xml-eventl.[ch]
        
2001-04-12  Paolo Casarini <paolo@casarini.org>
	* test/Makefile.am
        * test/examplea.c
        * test/exampleb.c
        * test/examplec.c
        * test/test-document.c
        * test/test-dtd.c
        * test/test-element.c
        * test/test-node.c
        Modified work fine with distcheck
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_setAttribute) Memory Bug Fix (thanx to Laurent Lemaitre)
        
        * configure.in
        (GDOME_INCLUDEDIR) bug fix
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        Modified some comments
        
2001-04-12  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-attribute.c
	* libgdome/gdomecore/gdome-xml-document.c
	* libgdome/gdomecore/gdome-xml-documentf.c
	* libgdome/gdomecore/gdome-xml-documentt.c
	* libgdome/gdomecore/gdome-xml-element.c
	* libgdome/gdomecore/gdome-xml-event.c
	* libgdome/gdomecore/gome-xml-eventl.c
	* libgdome/gdomecore/gome-xml-mevent.c
	* libgdome/gdomecore/gdome-xml-node.c
	* libgdome/gdomecore/gdome-xml-nodel.c
	* libgdome/gdomecore/gdome-xml-str.c
	* libgdome/gdomecore/gdome-xml-util.c
        deleted #include <gtk/gtk.h>
        
        * configure.in
        Deleted check for GTK libraries
        (GDOME_INCLUDEDIR) Added GLIB,LIBXML and -I${includedir}/libgdome
        (GDOME_LIBS) Added GLIB and LIBXML
        Prepared for release 0.6.2
        
        * gnome-config.in
        (the_libs) Added GLIB
        (the_flags) Added GLIB and -I$includedir/libgdome
        
        * libgdome/Makefile.am
        * test/Makefile.am
        * libgdome/gdomecore/Makefile.am
        * libgdome/gdomehtml/Makefile.am
        Now include GLIB and not GTK
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_importNode) bug fix (thanx to rob)
        
        * test/test-element.c
        (test_el) bug fix
        
        * test/Makefile.am
        Now support the test suites
        
        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_parseFile) renamed field filename in uri
        (gdome_xml_DOMImplementation_validateFile) renamed field filename in uri
        
	* libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_dup) changed type for field str from gchar to const gchar
        
        * libgdome/gdome.[ch]
        (gdome_DOMImplementation_parseFile) renamed field filename in uri
        (gdome_DOMImplementation_validateFile) renamed field filename in uri
        (gdome_str_dup) changed type for field str from gchar to const gchar
        
        CVS TREE
        Added test/examplec.c test/examplec.xml
        
2001-03-26  Paolo Casarini <paolo@casarini.org>
        * configure.in: prepared for release 0.6.1
        
        * test/Makefile.am
        Added EXTRA_DIST for xml and dtd data files
        Removed test-gdome.c, test-events, test-nodelist
        
        * test/test-document.c
        Added test for the existence of input files
        
        * test/test-dtd.c
        * test/test-element.c
        * test/test-node.c
        Added test for the existence of input file
        
2001-03-25  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.h
        (GdomeNodeType) added
        
        * configure.in: require libxml2-2.3.5
        
	CVS TREE
        Added: test/examplea.c, test/exampleb.c test/exampleb.xml
               test/test-element.c test/test-element.xml
        Deleted: STATE
	
2001-03-25  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.[ch]
        (gdome_str_mkref) added
        (gdome_str_mkref_own) added
        (gdome_str_mkref_dup) added
        (gdome_str_ref) added
        (gdome_str_equal) added
        
        * libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_equal) modified
        
        * Makefile.am: 0.6.0
        * configure.in:0.6.0
        
        * Makefile.am, README, config.h.in, configure.in, gdome-config.in,
          gdomeConf.sh.in, libgdome/Makefile.am, ligdome/gdomecore/Makefile.am
          Prepared for release 0.6.0
        
        * gdome-xml-documentt.c, gdome-xml-node.c
          bug fix
        
        * Test Programs: bug fix 
        
2001-03-23  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-node.[ch]
        (gdome_xml_n_normalize) modified
        (gdome_xml_n_supports) renamed in gdome_xml_n_supports
        (gdome_xml_n_isSupported) implemented
        (gdome_xml_n_vtab) updated
        (gdome_xml_n_set_prefix) modified to manage GDOME_NAMESPACE_ERR
        
        * libgdome/gdomecore/gdome-xml-attribute.c
        (gdome_xml_a_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-documentf.c
        (gdome_xml_df_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-cdata.c
        (gdome_xml_cd_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-cdatas.c
        (gdome_xml_cds_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-comment.c
        (gdome_xml_c_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-entity.c
        (gdome_xml_ent_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-entityref.c
        (gdome_xml_er_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-notation.c
        (gdome_xml_not_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-pi.c
        (gdome_xml_pi_vtab) updated
        
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_t_vtab) updated
        
        * libgdome/gdome.[ch]
        "supports" method renamed in "isSupported" in all intefaces
        Added to all gdome2 API check for "self != NULL"
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_DOMImplementation_hasFeature) implemented
        (gdome_xml_DOMImplementation_createDocument) modified to manage GDOME_NAMESPACE_ERR
        (gdome_xml_DOMImplementation_createDocumentType) modified to manage GDOME_NAMESPACE_ERR
        
        * libgdome/gdomecore/gdome-xml-document.[ch]
        (gdome_xml_doc_vtab) updated
        (gdome_xml_doc_importNode) added
        (gdome_xml_doc_createAttributeNS) modified to manage GDOME_NAMESPACE_ERR
        (gdome_xml_doc_createElementNS) modified to manage GDOME_NAMESPACE_ERR
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_setAttributeNS) modified to manage GDOME_NAMESPACE_ERR
        
2001-03-22  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.h
        
        * libgdome/gdomecore/gdome-xml-attribute.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Attribute
        
        * libgdome/gdomecore/gdome-xml-cdata.h
        (GdomeAccessType accessType) added to struct Gdome_xml_CharacterData
        
        * libgdome/gdomecore/gdome-xml-cdatas.h
        (GdomeAccessType accessType) added to struct Gdome_xml_CDATASection
        
        * libgdome/gdomecore/gdome-xml-comment.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Comment

        * libgdome/gdomecore/gdome-xml-document.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Document

        * libgdome/gdomecore/gdome-xml-documentf.h
        (GdomeAccessType accessType) added to struct Gdome_xml_DocumentFragment

        * libgdome/gdomecore/gdome-xml-documentt.h
        (GdomeAccessType accessType) added to struct Gdome_xml_DocumentType

        * libgdome/gdomecore/gdome-xml-element.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Element

        * libgdome/gdomecore/gdome-xml-entity.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Entity

        * libgdome/gdomecore/gdome-xml-entityref.h
        (GdomeAccessType accessType) added to struct Gdome_xml_EntityReference

        * libgdome/gdomecore/gdome-xml-node.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Node

        * libgdome/gdomecore/gdome-xml-notation.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Notation

        * libgdome/gdomecore/gdome-xml-pi.h
        (GdomeAccessType accessType) added to struct Gdome_xml_ProcessingInstruction

        * libgdome/gdomecore/gdome-xml-text.h
        (GdomeAccessType accessType) added to struct Gdome_xml_Text
        
        * libgdome/gdomecore/gdome-xml-nodel.[ch]
        (GdomeAccessType accessType) added to struct Gdome_xml_Nodelist
        (gdome_xml_nl_mkref) modified to manage readonly

        * libgdome/gdomecore/gdome-xml-nnodem.[ch]
        (gboolean isReadonly) deleted
        (GdomeAccessType accessType) added to struct Gdome_xml_NamedNodeMap
        (gdome_xml_nnm_mkref) modified to manage readonly
        (gdome_xml_nnm_removeNamedItem) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_nnm_removeNamedItemNS) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_nnm_setNamedItem) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_nnm_setNamedItemNS) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-util.h
        (GDOME_ISREADONLY) added
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_mkref) modified to manage readonly
        (gdome_xml_n_ref) modified
        (gdome_xml_n_unref) modified
        (gdome_xml_n_childNodes) modified to manage readonly
        (gdome_xml_n_setNodeValue) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_n_setPrefix) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_n_appendChild) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_n_insertBefore) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_n_removeChild) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_n_replaceChild) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-attr.c
        (gdome_xml_a_set_value) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-cdata.c
        (gdome_xml_cd_set_data) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_cd_appendData) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_cd_deleteData) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_cd_insertData) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_cd_replaceDat) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_getElementById) modified to manage readonly
        (gdome_xml_doc_getElementsByTagName) modified to manage readonly
        (gdome_xml_doc_getElementsByTagNameNS) modified to manage readonly
        
        * libgdome/gdomecore/gdome-xml-domimpl.c
        (gdome_xml_DOMImplementation_parseFile) modified
        (gdome_xml_DOMImplementation_validateFile) modified
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_attributes) modified to manage readonly
        (gdome_xml_el_getAttribute) bug fix
        (gdome_xml_el_setAttribute) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_removeAttribute) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_setAttributeNode) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_removeAttributeNode) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_getAttributeNS) bug fix
        (gdome_xml_el_setAttributeNS) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_removeAttributeNS) modified to manage NO_MODIFICATION_ALLOW_ERR
        (gdome_xml_el_setAttributeNodeNS) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-text.c
        (splitText) modified to manage NO_MODIFICATION_ALLOW_ERR
        
        * libgdome/gdomecore/gdome-xml-documentt.c
        (gdome_xml_dt_mkref) modified manage readonly
        (gdome_xml_dt_entities) modified to manage readonly
        (gdome_xml_dt_notations) modified to manage readonly
        
2001-03-18  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdome.h
        (GdomeExceptionCode) added
        (GdomeAccessType) added
        
        * libgdome/gdomecore/gdome-xml-node.[ch]
        (gdome_xml_n_mkref) modified for XML_ENTITY_DECL
        (gdome_xml_n_nodeName) modified for XML_ENTITY_DECL
        (gdome_xml_vtabs[]) modified for XML_ENTITY_DECL
        (gdome_xml_n_nodeType) modified for XML_ENTITY_DECL
        (gdome_xml_n_nodeValue) modified for XML_ENTITY_DECL
        deleted doc field in _Gdome_xml_Node struct
        (gdome_xml_n_mkref) modified for XML_DTD_NODE
        
        * libgdome/gdomecore/gdome-xml-util.h
        (GDOME_XML_IS_N) XML_ENTITY_DECL added
        (GDOME_XML_IS_ENT) implemented
        (GDOME_XML_IS_NOT) added
        
        * libgdome/gdomecore/gdome-xml-entity.[ch]
        (struct _Gdome_xml_Entity) changed type for n (xmlNode* to xmlEntity*)
        (gdome_xml_ent_publicId) implemented
        (gdome_xml_ent_systemId) implemented
        (gdome_xml_ent_notationName) implemented

        * libgdome/gdomecore/gdome-xml-entityref.[ch]
        Implementation of EntityReference Interface
        
        * libgdome/gdomecore/gdome-xml-element.[ch]
        deleted doc field in _Gdome_xml_Node struct
        (gdome_xml_el_attributes) updated
        (gdome_xml_el_removeAttribute) updated
        (gdome_xml_el_getAttributeNode) updated
        (gdome_xml_el_setAttributeNode) updated
        (gdome_xml_el_removeAttributeNode) updated
        (gdome_xml_el_removeAttributeNodeNS) updated
        (gdome_xml_el_getAttributeNodeNS) updated
        (gdome_xml_el_setAttributeNodeNS) updated
        
        * libgdome/gdomecore/gdome-xml-xmldtdutil.[ch]
        (gdome_xmlNotation) implemented
        (gdome_xmlNotattionsHashCreate) implemented
        (gdome_xmlNotattionsHashFree) implemented
        (gdome_xmlEntitiesHashCreate) implemented
        (gdome_xmlEntitiesHashFree) implemented
        
        * libgdome/gdomecore/gdome-xml-documentt.[ch]
        Added to _Gdome_xml_DocumentType struct:
	 -Gdome_xml_ListenerList *ll
         -xmlHashTable *entities (to hold xmlEntity structs)
         -xmlHashTable *notations (to hold gdome_xmlNotation structs)
        (gdome_xml_dt_mkref) added
        (gdome_xml_dt_unref) added
        (gdome_xml_dt_notations) updated
        (gdome_xml_dt_entities) updated
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_docType) updated
        
        * test/test-dtd.[c|xml|dtd]
        Added tests for Notations and Entities.
        
        CVS TREE
        Added: libgdome/gdomecore/gdome-xml-entityref.[ch]
               libgdome/gdomecore/gdome-xml-xmldtdutil.[ch]
        
2001-03-14  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_createDocumentType) modified
        (gdome_xml_DOMImplementation_validateFile) added
        
        * libgdome/gdomecore/gdome-xml-documentt.[ch]
        Renamed field "dt" in "n" in struct _Gdome_xml_DocumentType
        (gdome_xml_dt_name) implemented
        (gdome_xml_dt_entities) implemented
        (gdome_xml_dt_notations) implemented
        (gdome_xml_dt_publicId) implemented
        (gdome_xml_dt_systemId) implemented
        
        * libgdome/gdomecore/gdome-xml-util.h
        (GDOME_XML_IS_DT) added
        (GDOME_XML_IS_CD) implemented
        (GDOME_XML_IS_T) implemented
        
        * libgdome/gdome.[ch]
        (gdome_xml_DOMImplementation_validateFile) added
        
        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_doctype) implemented
        (gdome_xml_doc_createCDATASection) bug fix
        
        * libgdome/gdomecore/gdome-xml-cdatas.[ch]
        Implementation of CDATASection Interface
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_vtabs[]) added vtabs for CDATA_SECTION_NODE and DTD_NODE
        (gdome_xml_n_hasAttributes) bug fix
        (gdome_xml_n_nodeName) modified for XML_DTD_NODE, XML_PI_NODE
        (gdome_xml_n_nodeType) modified for XML_DTD_NODE
        (gdome_xml_n_nodeValue) modified for XML_DTD_NODE, XML_PI_NODE
        (gdome_xml_n_set_nodeValue) modified for XML_DTD_NODE, XML_PI_NODE
        
        * libgdome/gdomecore/gdome-xml-cdata.c
        (gdome_xml_cd_replaceData) bug fix
        
        * libgdome/gdomecore/gdome-xml-pi.[ch]
        (gdome_xml_pi_data) implemented
        (gdome_xml_pi_target) implemented
        (gdome_xml_pi_set_data) implemented
        
        * test/test-document.
        (test_document1) added test on CDATASection creation
        
        CVS TREE
        Added: libgdome/gdomecore/gdome-xml-cdatas.[ch]
               test/test-dtd.dtd test/test-dtd.xml test-dtd.c
        
2001-03-11  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-cdata.c
        (gdome_utf16Length) added (helper function)
        (gdome_utf16Offset) added (helper function)
        (gdome_xml_cd_data) modified
        (gdome_xml_cd_set_data) modified
        (gdome_xml_cd_length) modified
        (gdome_xml_cd_appendData) modified
        (gdome_xml_cd_deleteData) modified
        (gdome_xml_cd_insertData) modified
        (gdome_xml_cd_replaceData) modified
        (gdome_xml_cd_substringData) modified
        
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_t_splitText) modified
        
        * libgdome/gdomecore/gdome-xml-xmlutil.[ch]
        (gdome_xmlSetPrev) added
        (gdome_xmlSetNext) added
        (gdome_xmlSetLastChild) added
        (gdome_xmlGetPrevChild) renamed in gdome_xmlGetPrev
        (gdome_xmlGetNextChild) renamed in gdome_xmlGetNext
        
        * libgdome/gdomecore/gdome-xml-node.c
        Updated calls to gdome_xmlGet[Prev|Next]Child
        bug fix
        
        CVS TREE
        Added: test-cdata.c (test nodes bases on CharacterData)
        
2001-03-08  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-xmlutil.[ch]
        (gdome_xmlSetAttrValue) added
        Like libxml xmlSetProp
        (gdome_xmlAppendChild) modified
        (gdome_xmlInsertBeforeChild) modified
        Modified to specialize the behavior for DocumentFragment nodes
        
        * libgdome/gdomecore/gdome-xml-attribute.c
        (gdome_xml_a_set_value) modified
        Now use gdome_xmlSetAttrValue
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnodem_mkref) bug fix
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_appendChild) bug fix
        
        * test/test-document.c
        (test_document1) bug fix
        
        * test/test-node.c
        Completely changed, now test all attributes and methods
        
        * libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_freeDoc) added
        
        * libgdome/gdome.[ch]
        (gdome_DOMImplementation_freeDoc) added
        
        * CVS TREE
        added: test/test-node.xml used by test-node
        deleted: libgdome/gdomecore/gdome-xml-element-nnodem.[ch] useless
        
2001-03-06  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-domimpl.[ch]
        (gdome_xml_DOMImplementation_parseFile) implemented
        (gdome_xml_DOMImplementation_saveFile) implemented
        (gdome_xml_DOMImplementation_createDocument) implemented
        
        * libgdome/gdomecore/gdome-xml-document.[ch]
        (gdome_xml_doc_createAttributeNS) implemented
        (gdome_xml_doc_createElementNS) implemented
        (gdome_xml_doc_getElementsByTagNameNS) implemented
        (gdome_xml_doc_getElementById) implemented
        (gdome_xml_doc_getElementsByTagName) modified
        (gdome_xml_doc_createEntityReference) modified
        (gdome_xml_doc_createAttribute) modified
        (gdome_xml_doc_createCDATASection) modified
        (gdome_xml_doc_createComment) modified
        (gdome_xml_doc_createDocumentFragment) modified
        (gdome_xml_doc_createElement) modified
        (gdome_xml_doc_createProcessingInstruction) modified
        (gdome_xml_doc_createTextNode) modified
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        bug fix in nodeIterator struct
        
        * libgdome/gdome.[ch]
        (gdome_DOMImplementation_parseFile) added
        (gdome_DOMImplementation_saveFile) added
        (gdome_DOMImplementation_mkref) added
        
        * libgdome/gdome-html.c
        (gdome_HTMLDocument_createAttributeNS) updated
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_mkref) bug fix
        
        * libgdome/gdomecore/gdome-xml-attribute.c
        (gdome_xml_a_value) bug fix
        
        * test
        -Modified: Makefile.am
        -Added files: test-document.c test-document2.xml test-document3.xml
        Test Document object and its methods, preorder traversal Nodelist and
        the new bootstrap mode in DOMImplementation. Create also a file named
        test-document1.xml.
        
2001-02-25  Paolo Casarini <paolo@casarini.org>
        * libgdome/gdomecore/gdome-xml-xmlutil.[ch]
        (gdome_xmlGetPrevChild) implemented
        (gdome_xmlGetNextChild) implemented
	(gdome_xmlGetFirstChild) implemented
	(gdome_xmlGetLastChild) implemented
	(gdome_xmlGetNsPrefix) implemented
	(gdome_xmlGetType) implemented
	(gdome_xmlRemoveChild) implemented
	(gdome_xmlAppendChild) implemented
	(gdome_xmlInsertBeforeChild) implemented
        (gdome_xmlSetNs) implemented
        (gdome_xmlGetChildrenItem) implemented
        (gdome_xmlGetChildrensLength) implemented
        (gdome_xmlPreoderTraveral) replaced by gdome_xmlGetChildrenItem
        (gdome_xmlCntTreeNodes) replaced by gdome_xmlGetChildrensLength
        
        * libgdome/gdomecore/gdome-xml-node.[ch]
        "Attributes"
        (gdome_xml_n_attributes) modified
        (gdome_xml_n_childNodes) modified
	(gdome_xml_n_firstChild) updated
	(gdome_xml_n_lastChild) updated
        (gdome_xml_n_localName) implemented
        (gdome_xml_n_namespaceURI) modified
	(gdome_xml_n_nextSibling) updated
        (gdome_xml_n_nodeName) modified
        (gdome_xml_n_nodeType) updated
        (gdome_xml_n_nodeValue) modified
        (gdome_xml_n_ownerDocument) modified
        (gdome_xml_n_parentNode) modified
        (gdome_xml_n_prefix) updated
	(gdome_xml_n_previousSibling) updated
        (gdome_xml_n_set_nodeValue) modified
        (gdome_xml_n_set_prefix) implemented
        Methods
        (gdome_xml_n_appendChild) modified
        (gdome_xml_n_insertBeforeChild) modified
        (gdome_xml_n_hasAttributes) implemented
        (gdome_xml_n_hasChildNodes) modified
        (gdome_xml_n_cloneNode) modified
        (gdome_xml_n_removeChild) modified
        (gdome_xml_n_replaceChild) modified
        vtab
        (gdome_xml_n_hasAttributes) added
        
        * libgdome/gdomecore/gdome-xml-util.h
        GDOME_XML_IS_TREE_N added
        GDOME_XML_IS_A implemented
        GDOME_XML_IS_EL implemented
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_tagName) modified
        (gdome_xml_el_setAttributeNS) bug fix
        (gdome_xml_n_hasAttributes) added in vtab

        * libgdome/gdomecore/gdome-xml-attribute.[ch]
        (gdome_xml_a_nodeName) renamed in gdome_xml_a_name
        (gdome_xml_a_name) modified
        (gdome_xml_a_nodeValue) modified and renamed in gdome_xml_a_value
        (gdome_xml_a_set_nodeValue) modified and renamed in gdome_xml_a_set_value
        (gdome_xml_a_ownerElement) implemented
        vtab
        (gdome_xml_n_namespaceURI) added
        (gdome_xml_n_prefix) added
        (gdome_xml_n_set_prefix) added
        (gdome_xml_n_localName) added
        (gdome_xml_n_hasAttributes) added
        
        * libgdome/gdomecore/gdome-xml-cdata.c
        * libgdome/gdomecore/gdome-xml-comment.c
        * libgdome/gdomecore/gdome-xml-document.c
        * libgdome/gdomecore/gdome-xml-documentf.c
        * libgdome/gdomecore/gdome-xml-documentt.c
        * libgdome/gdomecore/gdome-xml-entity.c
        * libgdome/gdomecore/gdome-xml-notation.c
        * libgdome/gdomecore/gdome-xml-pi.c
        * libgdome/gdomecore/gdome-xml-text.c
        (gdome_xml_n_hasAttributes) added in vtab
        
        * libgdome/gdome.h
        (hasAttributes) added to _GdomeNodeVtab
        (ownerElement) added to _GdomeAttrVtab
        Added prototypes: gdome_n_hasAttributes, gdome_pi_hasAttributes,
        gdome_not_hasAttributes, gdome_er_hasAttributes, gdome_ent_hasAttributes,
        gdome_dt_hasAttributes, gdome_df_hasAttributes, gdome_doc_hasAttributes,
        gdome_c_hasAttributes, gdome_cds_hasAttributes, gdome_t_hasAttributes,
        gdome_el_hasAttributes, gdome_a_hasAttributes, gdome_el_hasAttributes,
        gdome_a_ownerElement.
        
        *libgdome/gdome.c
        Added implementations: gdome_n_hasAttributes, gdome_a_hasAttributes,
        gdome_cd_hasAttributes, gdome_t_hasAttributes, gdome_cds_hasAttributes,
        gdome_c_hasAttributes, gdome_doc_hasAttributes, gdome_df_hasAttributes,
        gdome_dt_hasAttributes, gdome_el_hasAttributes, gdome_ent_hasAttributes,
        gdome_er_hasAttributes, gdome_not_hasAttributes, gdome_pi_hasAttributes,
        gdome_a_ownerElement.        
        
2001-02-20  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_mkref_dup) implemented
        
        * libgdome/gdomecore/gdome-xml-xmlutil.[ch]
        (gdome_xmlPreorderTraversal) implemented
        (gdome_xmlNamedPreorderTraversal) implemented
        (gdome_xmlCntTreeNodes) implemented
        (gdome_xmlNamedCntTreeElemets) implemented
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_traversal_helper) deleted (obsolete)
        (gdome_xml_el_getElementsByTagName) modified to use the new NodeList
        (gdome_xml_el_getElementsByTagNameNS) implemented
        
        * libgdome/gdomecore/gdome-xml-nodel.[ch]
        (gdome_xml_nl_mkref) rewritten
        (gdome_xml_nl_unref) modified
        (gdome_xml_nl_item) rewritten
        (gdome_xml_nl_length) rewritten
        (gdome_xml_nl_append) deleted (obsolete)
        Completely changed
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_childNodes) modified to use the new NodeList

        * libgdome/gdomecore/gdome-xml-document.c
        (gdome_xml_doc_traversal_helper) deleted (obsolete)
        (gdome_xml_doc_getElementsByTagName) modified to use the new NodeList
        
2001-02-18  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/gdome-xml-xmlutil.[ch]
        Added the prefix gdome_ to all functions
        (gdome_xmlGetAttrList) implemented
        (gdome_xmlSetAttrList) implemented
        (gdome_xmlGetOwner) implemented
        (gdome_xmlSetOwner) implemented
        (gdome_xmlGetParent) implemented
        (gdome_xmlSetParent) implemented
        (gdome_xmlGetNsURI) implemented
        (gdome_xmlGetNs) implemented
        (gdome_xmlGetName) implemented
        (gdome_xmlGetAttr) implemented
        (gdome_xmlGetNsAttr) implemented
        (gdome_xmlUnlinkAttr) modified to use the new functions
        (gdome_xmlUnlinkNsAttr) modified to use the new functions
        (gdome_xmlLinkAttr) modified to use the new functions and bug fix
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        (gdome_xml_nnm_removeNamedItem) bug fix
        (gdome_xml_nnm_removeNamedItemNS) bug fix
        Most of method modified to use the new functions in module xmlutil
        
        * libgdome/gdomecore/gdome-xml-element.c
        (gdome_xml_el_tagName) modified
        (gdome_xml_el_attributes) updated
        (gdome_xml_el_getAttributeNode) updated
        (gdome_xml_el_getAttributeNodeNS) updated
        (gdome_xml_el_removeAttributeNode) updated
        (gdome_xml_el_setAttributeNode) implemented
        (gdome_xml_el_setAttributeNodeNS) implemented
        (gdome_xml_el_getAttribute) updated
        (gdome_xml_el_setAttribute) added comment
        (gdome_xml_el_removeAttribute) modified
        (gdome_xml_el_getAttributeNS) updated
        (gdome_xml_el_setAttributeNS) modified
        (gdome_xml_el_removeAttributeNS) modified
        (gdome_xml_hasAttribute) modified
        (gdome_xml_hasAttributeNS) modified
        
        * libgdome/gdomecore/gdome-xml-str.[ch]
        (gdome_xml_str_equal) implemented (an utility function for tests)
        (gdome_xml_unref) implemented
        (gdome_xml_ref) implemented
        (gdome_xml_mkref) updated
        (gdome_xml_mkref_xml) implemented
        (gdome_xml_unref_xml) implemented
        (gdome_xml_mkref_own) updated
        (gdome_xml_unref_own) updated
        Added: -xml function that substitute xmlfree ones
               -global unref for all kind of GdomeDOMString
               -refcnt field
        
        * libgdome/gdome.h
        Added the field refcnt to the _GdomeDOMString struct
        Added GDOME_NAMESPACE_ERR
        
        * libgdome/gdomecore/gdome-xml-node.c
        (gdome_xml_n_unref) bug fix
	
2001-02-14  Paolo Casarini <paolo@casarini.org>
	* libgdome/gdomecore/Makefile.am
        Added gdome_xml_nnodem.[ch] and gdome_xml_xmlutil.[ch]
        Removed gdome_xml_element_nnodem.[ch]
        
        * libgdome/gdome.h
        Added GDOME_WRONG_DOCUMENT_ERR
              GDOME_NO_MODIFICATION_ALLOWED_ERR
              GDOME_INUSE_ATTRIBUTE_ERR
        
        * libgdome/gdomecore/gdome_xml_nnodem.h
        Fixed compilation error (#include <libxml/hash.h>).

        * libgdome/gdomecore/gdome_xml_nnodem.c
	(gdome_xml_nnm_getNamedItemNS) bug fix
        
        * libgdome/gdomecore/gdome_xml_node.h
        Added a GdomeDocument ref in the Gdome_xml_Node struct.
        
        * libgdome/gdomecore/gdome_xml_node.c
        (gdome_xml_n_mkref) modified to inizialize the GdomeDocument ref in
                            the Element Object.

        l* libgdome/gdomecore/gdome_xml_element.h
        Added a GdomeDocument ref in the Gdome_xml_Element struct.

        * libgdome/gdomecore/gdome_xml_node.c
        (gdome_xml_el_attributes) modified to return the new NamedNodeMap.
        (gdome_xml_el_getAttributeNode) modified using NamedNodeMap.
        (gdome_xml_el_getAttributeNodeNS) modified using NamedNodeMap.
        (gdome_xml_el_removeAttributeNode) modified using NamedNodeMap.

        * libgdome/gdomecore/gdome_xml_xmlutil.c
        (xmlUnlinkNsAttr) bug fix
        
2001-02-11  Paolo Casarini <paolo@casarini.org>

	* libgdome/gdomecore/gdome-xml-xmlutil.c
        * libgdome/gdomecore/gdome-xml-xmlutil.h
        added, it's a module with the functions to works on gnome-xml tree
        structure. So if something change we have to modify only these
        function.
        (not added to the Makefile.am)
        
        * libgdome/gdomecore/gdome-xml-nnodem.c
        * libgdome/gdomecore/gdome-xml-nnodem.h
	(gome_xml_nnm_mkref) implemented.
	(gdome_xml_nnm_length) implemented.
	(gome_xml_nnm_getNamedItem) implemented.
	(gdome_xml_nnm_getNamedItemNS) implemented.
	(gdome_xml_nnm_item) implemented.
	(gdome_xml_nnm_removeNamedItem) implemented.
	(gdome_xml_nnm_removeNamedItemNS) implemented.
	(gdome_xml_nnm_setNamedItem) implemented.
	(gdome_xml_nnm_setNamedItemNS) implemented.
        This object map two kind of structure. It has to work with an
        xmlHashTable when is called by a DocumentType with the methods
        getNotations and getEntities, and with a list of xmlAttr when is
        called by an Element with the method getAttributes.
        (not added to the Makefile.am)
        
        * AUTHORS
        update

2000-11-06  Mathieu Lacage <mathieu@eazel.com>

	move to doc/
	* ChangeLog.gdome1: 
	* TODO:	
	* Copyright:
	* doc/ChangeLog.gdome1: 

	* STATE: more work on the state.
	* Makefile.am: fix make distcheck.
	* libgdome/Makefile.am: fix make distcheck.
	* libgdome/gdomehtml/Makefile.am: fix make
	distcheck.
	* libgdome/gdome-util.h:
	* libgdome/gdomecore/Makefile.am:
	* libgdome/gdomecore/gdome-util.c:
	* libgdome/gdomecore/gdome-util.h:
	* libgdome/gdomecore/gdome-xml-node.c: (gdome_xml_n_childNodes),
	(gdome_xml_n_removeChild),
	(gdome_xml_mut_invoke_listener_recursive):
	fix 2 or 3 bugs.

	Add test to show the bug in NodeList.
	* test/Makefile.am:
	* test/test-nodelist.c: (main):
	* test/test-nodelist.xml:

Thu Oct 26 11:11:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>

	* libgdome/gdomecore/gdome-xml-util.h: added missing definition for
	  GDOME_XML_IS_DOC
	* libgdome/gdomecore/gdome-xml-element-nnodem.c: closed an unfinished
	  comment
	* libgdome/gdomecore/gdome-xml-document.c: 3 missing local variable
	  declarations

2000-10-26  Mathieu Lacage  <mathieu@eazel.com>

	* AUTHORS:
	* MAINTAINERS:
	update.
	
	* QUERIES:
	* README.gdome1:
	move to doc/
	
	* STATE:
	state of oimplementation. not finished.
	
	* configure.in:
	make gtk+/glib 2.0 compilation optional.
	
	* doc/QUERIES:
	* doc/README.gdome1:
	* doc/RaphDream:
	move there.
	
	* libgdome/gdomecore/gdome-xml-attribute.c:
	(gdome_xml_a_specified):
	* libgdome/gdomecore/gdome-xml-cdata.c: (gdome_xml_cd_data),
	(gdome_xml_cd_set_data), (gdome_xml_cd_length),
	(gdome_xml_cd_substringData):
	* libgdome/gdomecore/gdome-xml-cdata.h:
	* libgdome/gdomecore/gdome-xml-document.c: (gdome_xml_doc_doctype),
	(gdome_xml_doc_implementation), (gdome_xml_doc_documentElement),
	(gdome_xml_doc_createElement),
	(gdome_xml_doc_createDocumentFragment),
	(gdome_xml_doc_createTextNode), (gdome_xml_doc_createComment),
	(gdome_xml_doc_createCDATASection),
	(gdome_xml_doc_createProcessingInstruction),
	(gdome_xml_doc_createAttribute),
	(gdome_xml_doc_createEntityReference),
	(gdome_xml_doc_getElementsByTagName):
	* libgdome/gdomecore/gdome-xml-document.h:
	* libgdome/gdomecore/gdome-xml-element-nnodem.c:
	* libgdome/gdomecore/gdome-xml-element.c:
	(gdome_xml_el_setAttribute), (gdome_xml_el_getElementsByTagNameNS),
	(gdome_xml_el_hasAttribute):
	* libgdome/gdomecore/gdome-xml-node.c: (gdome_xml_n_nodeName),
	(gdome_xml_n_parentNode), (gdome_xml_n_childNodes):
	* libgdome/gdomecore/gdome-xml-nodel.h:
	add numerous FIXMEs, cleanup, change some error handling.
	
	
	* test/test-gdome.c: (test_el_structure):
	small fix.

2000-09-01  Anders Carlsson  <andersca@gnu.org>

	* libgdome/gdomecore/gdome-xml-util.h: Update to match libxml

	* libgdome/gdomecore/gdome-xml-node.c: Likewise.

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

	* libgdome/gdome-private-list.c (gdome_private_list_nth): New function.

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

	* libgdome/gdomecore/gdome-xml-mevent.c (gdome_xml_mevnt_vtab = ): Add declaration for
	gdome_xml_evnt_type in the vtab.

	* libgdome/gdomecore/gdome-xml-util.h (GDOME_XML_IS_N): Add HTML_DOCUMENT_NODE.

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

	* libgdome/gdomecore/gdome-xml-node.c (gdome_xml_n_insertBefore): Emit correct events.
	(gdome_xml_n_replaceChild): Likewise.
	(gdome_xml_n_removeChild): Likewise.
	(gdome_xml_n_appendChild): Likewise.
	(gdome_xml_mut_invoke_listener_recursive): Function for traversing a node and emitting
	all its children's event listeners.

	* libgdome/gdomecore/gdome-xml-element.c (gdome_xml_el_setAttribute): Emit correct events.

	* libgdome/gdomecore/gdome-xml-cdata.c (gdome_xml_cd_set_data): Emit events.
	(gdome_xml_cd_appendData): Likewise.
	(gdome_xml_cd_insertData): Likewise.
	(gdome_xml_cd_deleteData): Likewise.
	(gdome_xml_cd_replaceData): Likewise.

	* libgdome/gdomecore/gdome-xml-node.c (gdome_xml_n_get_xmlnode): Add a function
	to get an xmlNode from a GdomeNode.

	* libgdome/gdome.h (gdome_xml_n_get_xmlNode): Add function declaration.

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

	* libgdome/gdomecore/gdome-xml-node.c (add_timestamp): Function for
	adding a timestamp to an event.
	(gdome_xml_n_invoke_listener): Call add_timestamp ()
	(gdome_xml_n_invoke_listener_prop): Likewise.
	(gdome_xml_n_namespaceURI): Implement function.
	(gdome_xml_n_prefix): Implement function.

	* libgdome/gdomecore/gdome-xml-mevent.c (gdome_xml_mevnt_vtab = ): Add timestamp
	function.

	* libgdome/gdomecore/gdome-xml-event.h: Add timestamp variable
	to Gdome_xml_EventPriv structure.

	* libgdome/gdomecore/gdome-xml-event.c: Add timeStamp to vtable.
	(gdome_xml_evnt_timeStamp): Add function.

	* libgdome/gdome.h: Add typedef for GdomeDOMTimeStamp.
	Add timeStamp function to GdomeEvent's vtab.
	Several function declarations.

	* libgdome/gdome.c (gdome_evnt_timeStamp): Add function.
	(gdome_mevnt_timeStamp): Likewise.
	(gdome_uievnt_timeStamp): Likewise.

	* libgdome/gdome.h (gdome_xml_from_document): Move a public function
	declaration.

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

	* libgdome/gdomecore/gdome-xml-node.c: Update to match new
	HTML tree style in libxml2 (using XML_HTML_DOCUMENT_NODE)

2000-06-30  Anders Carlsson  <andersca@gnu.org>

	* libgdome/gdomecore/gdome-xml-node.c
	(gdome_xml_n_addEventListener): Don't add duplicate event listeners.

2000-06-11  Anders Carlsson  <andersca@gnu.org>

	* libgdome/gdome.h: Add PrivateList pointer to all Gdome
	structures. This may not be needed, but it's easy to remove them
	later.

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

	* configure.in (XML_CONFIG): add XML_CONFIG for gdome-config.in script.

	* gdome-config.in: Make this work.

	* libgdome/gdome.h: Add private field to GdomeNode;

	* libgdome/gdomecore/gdome-xml-node.c (gdome_xml_n_mkref): Set private field to NULL.

	* libgdome/gdome-private-list.c: New file, used for a
	"private" list in GdomeNode for views etc.

	* libgdome/gdome-private-list.h: Likewise.

	* libgdome/Makefile.am: Add gdome-private-list.[ch]

2000-06-04  Jonas Borgstrm  <jonas_b@bitsmart.com>

	* configure.in: set XML_CONFIG="xml-config" as default. Or else it will not find 
	the xml-config in the $PATH.

	* .cvsignore: Added gdome-config.

2000-06-04  Anders Carlsson  <andersca@gnu.org>

	* Makefile.am (bin_SCRIPTS): Install gdome-config.

	* configure.in (GDOME_LIBS): Create gdome-config.

	* gdome-config.in: New file.

2000-05-17  Anders Carlsson  <andersca@gnu.org>

	* libgdome/gdome.h: Change syntax.

	* libgdome/gdome.c (gdome_DOMImplementation_createDocumentType): Change syntax.

	* libgdome/gdome-html.c (gdome_HTMLDOMImplementation_createDocumentType): Change syntax.

	* libgdome/gdomecore/gdome-xml-domimpl.c (gdome_xml_DOMImplementation_createDocumentType): Implement,
	and change syntax due to changes in the DOM spec.

	* libgdome/gdomecore/gdome-xml-document.c (gdome_xml_doc_createDocumentFragment): Implement.
	(gdome_xml_doc_createComment): Likewise.
	(gdome_xml_doc_createCDATASection): Likewise.
	(gdome_xml_doc_createProcessingInstruction): Likewise.
	(gdome_xml_doc_createEntityReference): Likewise.

2000-05-16  Anders Carlsson  <andersca@gnu.org>

	* libgdome/gdomecore/gdome-xml-element.c (gdome_xml_el_getElementsByTagName): Implement.

2000-05-10  Anders Carlsson  <andersca@gnu.org>

	* libgdome/*.[ch]: Add LGPL headers.

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

	* libgdome/gdome-xml-document.c (gdome_xml_doc_implementation): Implement.

	* configure.in: Better (?) libxml check.

	* libgdome/Makefile.am: Added new files.

	* test/test-gdome.c (test_DOMImplementation): Added test case.

	* libgdome/gdome-xml-domimpl.[ch]: Added.

16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/gdome-xml-entity.[hc]: added.

	* libgdome/gdome-xml-documentf.[hc]: added.

	* libgdome/gdome-xml-documentt.[hc]: added.

	* libgdome/gdome-xml-comment.[hc]: added.

	* libgdome/gdome-xml-pi.[hc]: added.

	* libgdome/gdome-xml-notation.[hc]: added.

	* libgdome/gdome-xml-node.c: added the other files in the 
	Node vtable.

	* libgdome/Makefile.am: added new files for 
	compilation.

	* autogen.sh: changed warning for raph.
	
16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/*.[hc]: 

	* Copyright: added.

	* COPYING.LIB: added.

	* AUTHORS: added myself.
	
16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/gdome-xml-element.[hc] : finish sanity checks.
	 - gdome_xml_el_hasAttribute. implement.
	 - gdome_xml_el_hasAttributeNs. implement.
	
16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/gdome-xml-element.[hc] : add new DOM2 method
	from the latest spec.
	
	* libgdome/gdome.[hc] : add new DOM2 method
	from the latest spec. Also, format code.

16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/gdome-xml-element.c: 
	 - gdome_xml_el_getAttributeNS : implement.
	 - gdome_xml_el_setAttributeNS : implement.
	 - gdome_xml_el_removeAttributeNS : implement.
	 - gdome_xml_el_getAttributeNodeNS : implement.
	 - gdome_xml_el_setAttributeNodeNS : implement.
	 Warning: the above 2 last implementations do not take
	 into account the fact that the Attribute default value may 
	 be defined in the document DTD. It lacks code to search the
	 DTD attributes first. (same for gdome_xml_el_getAttributeNode
	 and gdome_xml_el_setAttributeNode)

	* libgdome/gdome-xml-nnodem.[hc]: mv gdome-xml-element-nnodem.[hc]
	The above name change will allow me to begin the implementation
	of some other stuff which must export some NamedNodeMap objects
	which don't have the same implementation of the NamedNodeMap object
	exported by Element. (namely, DocumentType for example)
	Also cleanups inside this thing : replace all xmlElement with 
	xmlNode and all xmlAttribute with xmlAttr and all attributes with 
	properties.
	
16/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* ligdome/gdome-xml-element.c: my, god, I am plain stupid.
	I still wonder how the code I wrote worked...
	replace all xmlElement with xmlNode and all xmlAttribute
	with xmlAttr and all attributes with properties.

13/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* libgdome/gdome-xml-nodel.c: implement
	gdome_xml_nl_query_interface.

	* libgdome/gdome-xml-document.c: implement
	 - gdome_xml_doc_createAttribute. thanks to DV_ for
	 xmlNewDocProp.
	 

	* libgdome/gdome-xml-attribute.c:
	 - gdome_xml_a_query_interface. implement.
	 - gdome_xml_a_nodeName. implement.
	 - all other functions. New sanity checks.

	* libgdome/gdome-xml-element.c: 
	 - gdome_xml_el_tagName. New sanity checks.
	 - gdome_xml_el_getAttribute. New sanity checks. cleanups.
	 - gdome_xml_el_setAttribute. New sanity checks.
	 - gdome_xml_el_removeAttribute. New sanity checks. cleaner 
	 implementation.
	 - gdome_xml_el_getAttributeNode. New sanity checks. cleaner 
	 implementation.
	 - gdome_xml_el_setAttributeNode. New sanity checks. full
	 implementation.
	 - gdome_xml_el_removeAttributeNode. New sanity checks.
	 - all other functions --> new sanity checks. cleanups.

05/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* gdome2/ : mv gdome2 libgdome. cvs import.
	
04/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* test/test-gdome.c : complete rewrite of the tests.
	focusing on the Element Node.

	* gdome2/gdome-xml-element.c : as a consequence of 
	the tests, correct bugs, add some new ones and implement
	a lot of methods in Element. They do not support Events.
	 - gdome_xml_el_removeAttribute.
	 - gdome_xml_el_getAttributeNode : no test.
	 - gdome_xml_el_setAttributeNode : no test.
	 - gdome_xml_el_removeAttributeNode : no test.

	* gdome2/gdome-xml-document.c : implement some methods
	of the Document interface.
	 - gdome_xml_doc_createTextNode.
	Fix the gdome_xml_from_document function: make it call
	the gdome_xml_n_mkref function.

	* configure.in : dump version to 0.5.
	eh: it still compiles !! /me becomes good programmer.

03/04/2000	Mathieu Lacage	<mathieu@advogato.org>
	
	* gdome2/gdome-xml-str.[hc] : new files. str helper
	functions are there.

	* gdome2/gdome-xml-util.[hc], gdome2/gdome-util.[hc]
	implement the dynamic type-checking stuff we discused 
	with Raph though the use of the macros: 
	 - GDOME_N
	 - GDOME_EL
	 - GDOME_EVNTT
	 - GDOME_EVENL
	These macros rely on the GDOME_XML_IS_* macros which 
	are defined in gdome-xml-util.h and called by the
	gdome_xml_cast_* functsion defined in gdome_xml_util.c.
	The whole thing is not very complex... Most of its 
	overhead will disapear when compiling g_return_val_if_fail
	as no-op.

	* gdome2/*.h and *.c : need to cleanup the includes.
	Sanity checks are now uniform. All the parameters are tested
	against NULL with: if (self == NULL ) return NULL;
	int parameters are furthermore tested against their bounds.
	The type checking is made with g_return_*_if_fail.
	It still compiles !! I managed not to break compilation :)

	* gdome2/gdome-xml-doc.[hc] : rename.
	mv gdome-xml-doc gdome-xml-document

	* gdome2/gdome-xml-text.[hc] : new file. implement Text
	interface.

	* gdome2/gdome-xml-cdata.[hc] : new file. implement the
	CharacterData interface.

	* gdome2/gdome-xml-nnodem.[hc] : new file. implement the
	NamedNodeMap interface.

	* configure.in : dump version to 0.4.
	
02/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* gdome2/gdome-xml.c : 
	- gdome_xml_doc_createElement : implement using
	xmlNewDocNode.
	- gdome_xml_doc_documentElement : implement.
	The root Element of a document can be found 
	using xmlDocGetRootElement. (Fuck, Daniel
	did a HUGE work !! I LOVE libxml2 !!!)
	- gdome_xml_from_document : implement.

	* gdome2/gdome-xml-doc.[hc], 
	gdome2/gdome-xml-node.[hc],
	gdome2/gdome-xml-element.[hc], 
	gdome2/gdome-xml-attribute.[hc],
	gdome2/gdome-xml-event.[hc],
	gdome2/gdome-xml-eventl.[hc],
	gdome2/gdome-xml-mevent.[hc],
	gdome2/gdome-xml-nodel.[hc],
	new files.
	Basically, we have in each .h file: 
	 - Structure definition.
	 - gdome_xml_* function declarations.
	 - vtable declarations.
	in each .c file, we have: 
	 - header inclusion.
	 - vtable declaration.
	 - gdome_xml_* function implementation.

	* gdome2/gdome-xml.[hc] : removed.

	* configure.in : dump version unmber to 0.3
	It now compiles again. (the breakage lasted 4 hours)
	
01/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* gdome2/gdome-xml.c : make it compile.
	Now, need to find anders and ask him for his
	test prgm for Gdome. I wonder if things will 
	work with this awfull implementation...

	* configure.in : dump version number to 0.2.

01/04/2000	Mathieu Lacage	<mathieu@advogato.org>

	* gdome2/gdome-xml.c :
	 - add implementation for NodeList.
	 - cleanups. I will try compiling soon.
	 There are issues on the xmlSetNodeValue function
	 from libxml --> it seems not to handle the 
	 attribute code properly.

31/03/2000	Mathieu Lacage	<mathieu@advogato.org>

	* gdome2/gdome-xml.c : 
	 - remove all the implementations which are child 
	 of Node except for Element and Attribute.
	 - gdome_evntl_get_priv : rename : 
	 gdome_evntl_get_attribute.
	 - change lots of checks to be still there when
	 compiled with g_return_* as NoOp.
	 - removed gdome_a_mkref. Now, you can use 
	 gdome_n_mkref for Attribute thanks to the 
	 common structures.
	* gdome2/gdome.[hc] : some indentation fixes.

30/03/2000	Mathieu Lacage	<mathieu@advogato.org>

	* Changelog : new Changelog. old one is in
	Changelog.gdome1.
	
	* README : new README. old one is in README.gdome1.
	
	* gdome2 : new source directory. mv gdome gdome2.
	
	* configure.in : remove old stuff. add checks to 
	specify the location of the libxml library.
	That way, we can use both libxml2 and libxml during
	developement.
	
	* Makefile.am, autogen.sh : change to match the 
	directory name change (gdome -> gdome2).

	* gdome2/rxml* : remove.

	* gdome2/*rdom* : remove.

	* ifgen.pl, DOM* : remove.

	* gdome2/Makefile.am : cleanups. Remove code autogeneration.