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
|
2015-10-28 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
2.40.1
2015-10-28 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser, Validator: Make handle_exception() private
* libxml++/exceptions/wrapped_exception.h: Added comment.
* libxml++/parsers/parser.h:
* libxml++/validators/validator.h: Make handle_exception() private. Then it
will certainly not be considered added API, and it can be included in
libxml++ 2.40.1. Bug #757042.
2015-10-27 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
SaxParser docs: Describe exception handling
* libxml++/parsers/saxparser.h: Note in the class description that some
exceptions are replaced by xmlpp::exception if std::exception_ptr is not
supported. Bug #757042.
2015-10-26 Daniel Trebbien <dtrebbien@gmail.com>
Work around some platforms' lack of support for std::exception_ptr
* libxml++/exceptions/wrapped_exception.[cc|h]: Declare the wrapped_exception
class only if LIBXMLXX_HAVE_EXCEPTION_PTR is defined.
* libxml++/parsers/parser.[cc|h]:
* libxml++/parsers/saxparser.cc: Add Parser::handle_exception(), and call
it instead the handleException().
* libxml++/validators/validator.[cc|h]: Add Validator::handle_exception(),
and call it instead the handleException().
* tests/saxparser_chunk_parsing_inconsistent_state/main.cc:
* tests/saxparser_parse_double_free/main.cc:
* tests/saxparser_parse_stream_inconsistent_state/main.cc: Catch
xmlpp::exception, if LIBXMLXX_HAVE_EXCEPTION_PTR is not defined.
Bug #757042.
Kjell Ahlstedt <kjell.ahlstedt@bredband.net> added handle_exception() and
modified Daniel Trebbien's patch to fit with the previous commit.
2015-10-26 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add LIBXMLXX_HAVE_EXCEPTION_PTR
* build/.gitignore: New file.
* build/cxx_std.m4: New file with LIBXMLXX_CXX_HAS_EXCEPTION_PTR
autoconf macro. Defines LIBXMLXX_HAVE_EXCEPTION_PTR if std::exception_ptr
exists.
* .gitignore: Move some lines to build/.gitignore.
* configure.ac: Store some build files in the build directory, like most mm
packages. Don't use the macros directory.
* libxml++config.h.in: Add LIBXMLXX_HAVE_EXCEPTION_PTR.
* Makefile.am:
* docs/Makefile.am: macros -> build. Bug #757042.
Thanks to Daniel Trebbien <dtrebbien@gmail.com>, who supplied a patch with
the test code in LIBXMLXX_HAVE_EXCEPTION_PTR.
2015-10-09 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Still more use of nullptr instead of 0
2015-10-08 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
More use of nullptr instead of 0
Bug #756166 (also the previous commit)
2015-10-08 Gaurav Gupta <g.gupta@samsung.com>
Use nullptr instead of 0 at missing places - C++-11
2015-09-21 Murray Cumming <murrayc@murrayc.com>
2.40.0
2015-09-11 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Update the manual
* docs/manual/libxml++_without_code.xml: Minor updates.
2015-09-11 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
docs/Makefile.am: Fix missing update of relative path
Fix relative path to ../examples in the rule for manual/libxml++.xml.
Add a TODO comment, because I'm uncertain about the relative paths in
the rsync commands that upload to sourceforge.net.
2015-09-11 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Split Makefile.am
* Makefile.am: Move most of the contents to the new files. It makes libxml++
more like other mm packages.
* docs/Makefile.am:
* libxml++/filelist.am:
* libxml++/Makefile.am:
* MSVC_Net2010/filelist.am: New files.
* configure.ac: Add the new Makefiles to AC_CONFIG_FILES().
* docs/reference/Doxyfile.in: Remove docs/ from relative paths.
2015-09-09 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Remove MSVC 2005 and 2008 projects
MSVC_Net2005/*:
MSVC_Net2008/*: Remove the whole directories.
configure.ac:
Makefile.am:
.gitignore: Remove MSVC_Net2005 and 2008 files.
It's no longer possible to build libxml++ with MSVC 2005 or 2008, when C++11
features are used. MSVC 2010 is not useful either, but its project files
are kept for now. They can perhaps be useful as a starting point when building
with later MSVC versions. See also libsigc++ bug 754082.
2015-09-05 Murray Cumming <murrayc@murrayc.com>
2.39.2
2015-08-27 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
xmlpp::wrapped_exception: Add comments
Bug #753570
2015-08-27 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Fix make check with --enable-warnings=fatal and fix make distcheck
* tests/saxparser_chunk_parsing_inconsistent_state/main.cc:
* tests/saxparser_parse_double_free/main.cc: Comment out names of unused
parameters in function definitions.
* Makefile.am: Add wrapped_exception.h to h_exceptions_sources_public or else
it won't be distributed.
* libxml++/exceptions/wrapped_exception.h: Add DOXYGEN_SHOULD_SKIP_THIS.
xmlpp::wrapped_exception is a private class that shall not be included in
the documentation. Bug #753570.
2015-08-27 Daniel Trebbien <dtrebbien@gmail.com>
Introduce xmlpp::wrapped_exception
This is an internal class which is used by SaxParser and Validator to
save the exception object thrown by a handler method when the exception
does not derive from xmlpp::exception (e.g. std::exception). The Raise()
method of xmlpp::wrapped_exception calls std::rethrow_exception() to
rethrow the exception object thrown by the handler method.
Catching any exception object thrown by a handler method is important in
ensuring that we are able to reset the internal state, and, in the case
of SaxParser::parse(), that we restore the old _xmlSAXHandler pointer so
that we do not double-free the _xmlSAXHandler object held by SaxParser.
Fixes Bug 753570 - “double free or corruption” if a std::exception is thrown
https://bugzilla.gnome.org/show_bug.cgi?id=753570
2015-08-02 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Replace some auto_ptr by unique_ptr
* libxml++/parsers/parser.cc:
* libxml++/parsers/saxparser.cc:
* libxml++/validators/relaxngvalidator.cc:
* libxml++/validators/validator.cc:
* libxml++/validators/xsdvalidator.cc: Replace the deprecated std::auto_ptr
by std::unique_ptr. There are still auto_ptrs in header files. Replacing
them would break ABI. Bug #753123.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
2.39.1
2015-07-20 Murray Cumming <murrayc@murrayc.com>
Add -Wformat-security to --enable-warnings=fatal.
Because we use it in glibmm too. No code changes were necessary.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
Fix the build with -Wshadow.
And add this warning to --enable-warnings=fatal.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
C++11: More use of auto.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
C++11: Some use of range-based for loops.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
C++11: Use auto.
2015-07-20 Murray Cumming <murrayc@murrayc.com>
C++11: NonCopyable: Use = delete instead of private.
2015-07-19 Murray Cumming <murrayc@murrayc.com>
C++11: Use nullptr instead of 0.
2015-07-19 Murray Cumming <murrayc@murrayc.com>
C++11: Replace throw() with noexcept.
2015-07-19 Murray Cumming <murrayc@murrayc.com>
C++11: Use the override keyword.
2015-07-19 Murray Cumming <murrayc@murrayc.com>
Docs: Correct odd use of "herited" word.
2015-07-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Require C++11
* configure.ac: Use MM_AX_CXX_COMPILE_STDCXX_11 from mm-common to check for
compiler support for C++11 and use it (-std=c++11 for current versions of g++).
Among other reasons, this is because libsigc++ and glibmm now require C++11,
and gmmproc generates C++11 code.
2015-06-08 Murray Cumming <murrayc@murrayc.com>
2.38.1
2015-04-30 Mikhail Titov <mlt@gmx.us>
Fix the build with C++11 compilers, such as MS Visual C++ 2013.
Implicit conversions from streams to bool are no longer allowed.
2015-03-04 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Disable deprecated API in dependencies if --enable-warnings=fatal
* configure.ac: Disable deprecated API in glib, glibmm and libsigc++ when
building with --enable-warnings=fatal.
* libxml++/validators/parser.cc: Put #include <glibmm/threads.h> first.
Necessary when G_DISABLE_DEPRECATED is defined.
2015-03-04 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Require libxml2 2.7.7 or later
* configure.ac: Require libxml2 2.7.7 or later. Earlier versions contain a
bug that makes some of the example programs crash.
2015-02-27 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
2.38.0
2015-02-27 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Docs: Update for Doxygen 1.8.9
* docs/reference/Doxyfile.in: Update for Doxygen 1.8.9.
2014-10-28 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
2.37.2
2014-10-21 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser: Add input operator>>()
* libxml++/parsers/parser.h: Add operator>>(std::istream& in, Parser& parser).
* examples/dom_parse_entities/main.cc: Use operator>>(). Bug #329281.
2014-10-17 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Remove libxml++/Makefile.am
* libxml++/Makefile.am: Removed file. It has not been used for quite some time.
2014-10-16 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add RelaxNGSchema and RelaxNGValidator
* Makefile.am: Add new files.
* libxml++/libxml++.h: Add new header files.
* examples/Makefile.am: Add schemavalidation/example.rng.
* examples/schemavalidation/main.cc: Add test of RelaxNGValidator.
* examples/schemavalidation/example.rng:
* libxml++/relaxngschema.[cc|h]:
* libxml++/validators/relaxngvalidator.[cc|h]: New files.
Thanks to Tjalling Hattink <t.hattink@fugro.nl>, who made other versions
of the new files, which were attached to bug #737712.
2014-10-16 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add XsdSchema and XsdValidator. Deprecate Schema and SchemaValidator
* configure.ac: Add MM_ARG_DISABLE_DEPRECATED_API([LIBXMLXX]).
* Makefile.am: Add new files.
* libxml++config.h.in: Add LIBXMLXX_DISABLE_DEPRECATED.
* libxml++/libxml++.h: Add new header files.
* libxml++/schema.[cc|h]:
* libxml++/validators/schemavalidator.[cc|h]: Deprecate the whole files.
* examples/schemavalidation/main.cc: Add test of XsdValidator.
* libxml++/schemabase.[cc|h]:
* libxml++/xsdschema.[cc|h]:
* libxml++/validators/schemavalidatorbase.[cc|h]:
* libxml++/validators/xsdvalidator.[cc|h]: New files. Bug #737712.
2014-10-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Validator: Make initialize_valid() callable from all subclasses
* libxml++/validators/validator.cc: In initialize_valid(), don't initialize
valid_'s data members, if it's a null pointer.
* libxml++/validators/schemavalidator.cc: Call the base class version from
initialize_valid() instead of copying some code from it.
2014-10-11 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Schema::get_name(): Don't use null pointer
* libxml++/schema.cc: Don't use null pointers in get_name(),
get_target_namespace() and get_version().
2014-10-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
examples/dom_update_namespace: Add calls to Node::add_child_with_new_ns()
* examples/dom_update_namespace/main.cc: Add calls to add_child_with_new_ns().
Bug #737682.
2014-10-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add Node::add_child_with_new_ns()
* libxml++/nodes/node.[h|cc]: Add add_child_with_new_ns() (*2) and
add_child_before_with_new_ns(). Bug #737682.
2014-10-10 Mathias Lorente <mathias.lorente@gadz.org>
Add dom_update_namespace example
* .gitignore: add /examples/dom_update_namespace/dom_update_namespace
* examples/Makefile.am: Add dom_update_namespace files.
* examples/dom_update_namespace/main.cc:
* examples/dom_update_namespace/example1.xml:
* examples/dom_update_namespace/example2.xml: New files. Bug #737682.
2014-10-10 Mathias Lorente <mathias.lorente@gadz.org>
Element::set_namespace_declaration(): Update the node's associated namespace
* libxml++/nodes/element.cc: Update the node's associated namespace, if the
added namespace prefix is the same as the node's own namespace prefix.
* libxml++/nodes/element.h: Mention in the documentation that child nodes
are not updated. Bug #737682.
2014-09-18 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Docs: Use doxygen-extra.css
* configure.ac: Require mm-common 0.9.7.
* .gitignore: Ignore doxygen-extra.css.
* docs/reference/Doxyfile.in: Use doxygen-extra.css instead of doxygen.css.
2014-09-17 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Late update of configure.ac and NEWS for 2.37.1
The changes in configure.ac and NEWS were not pushed to the git repository
when libxml++ 2.37.1 was released. These are the changes that are included
in the tarball.
The last commit in 2.37.1 is "Fix examples/Makefile.am for new versions
of automake" from 2013-09-14.
2014-09-12 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Update libxml++.doap
* libxml++.doap: Update homepage and mailing-list.
Add description, download-page, bug-database and programming-language.
Comment category, because no allowed category seems suitable for libxml++.
2014-08-14 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Remove MAINTAINERS
* MAINTAINERS: Removed file. It has been replaced by libxml++.doap.
* Makefile.am: Don't distribute MAINTAINERS.
2014-07-04 Gaurav <g.gupta@samsung.com>
Document: Avoid possible null pointer dereference
* libxml++/document.cc: In create_root_node() check that 'element' is
non-null before it's used. Bug #732604.
2014-05-20 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add version information to libxml++config.h
* libxml++config.h.in: Add LIBXMLXX_[MAJOR,MINOR,MICRO]_VERSION.
Define LIBXMLCPP_EXCEPTIONS_ENABLED unconditionally in libxml++config.h.
2014-05-20 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Avoid infinite loop with Doxygen 1.8.6
* configure.ac: Use the libstdc++.tag and libsigc++-2.0.tag files that were
used when glibmm-2.4.tag was created.
* docs/reference/libstdc++.tag.xml: Deleted file.
2013-09-14 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Fix examples/Makefile.am for new versions of automake.
* examples/Makefile.am: Don't use make functions, such as addsuffix, in
check_SCRIPTS. New versions of automake (e.g. 1.13.4) expect to find only
a blank-separated list of filenames.
* .gitignore: With new versions of automake, 'make check' generates more
output files. Ignore them. Bug #678390.
2013-09-06 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Manual: Add XIncludeStart and XIncludeEnd to the node type tree.
* docs/manual/libxml++_without_code.xml: Add XIncludeStart and XIncludeEnd
to the node type tree in the DOM Parser section. Should have been done when
those node types were added.
2013-08-12 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Node: Move the null-pointer check to the constructor.
* libxml++/nodes/node.[h|cc]: Let the constructor throw xmlpp:internal_error
if impl_ == 0. Remove other null-pointer checks. Bug #705187.
2013-08-02 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Update Doxyfile.in for doxygen 1.8.3.
* docs/reference/Doxyfile.in: Update for doxygen 1.8.3. Make it more similar
to the template file at mm-common/skeletonmm/doc/reference.
* libxml++/validators/schemavalidator.h: Fix the parameter name in a doxygen
@param comment.
2013-08-02 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser: Add [set|get]_include_default_attributes().
* libxml++/parsers/parser.[h|cc]: Add [set|get]_include_default_attributes()
and [set|get]_parser_options().
* examples/dom_parser/main.cc: Add command option -a for testing
Parser::set_include_default_attributes().
* examples/dom_read_write/example.dtd:
* examples/dom_read_write/example.xml: Add an attribute with default value.
* examples/dom_read_write/main.cc: Add an optional call to
Parser::set_include_default_attributes(). Bug #701674.
2013-07-31 Murray Cumming <murrayc@murrayc.com>
Whitespace fix
2013-07-31 Murray Cumming <murrayc@murrayc.com>
Node: Improve some null-pointer checks
* libxml++/nodes/node.cc:
If we are going to check impl_ for null, we may as well do it
where it makes most sense. Note that we do not bother yet to check
for this in other functions. If we did this consistently we would
want a sensible way to respond to it, such as an exception.
Bug #705187 (Gaurav)
2013-07-03 José Alburquerque <jaalburquerque@gmail.com>
Move to a generated ChangeLog.
2013-07-03 José Alburquerque <jaalburquerque@gmail.com>
Include file for auto-generation of ChangeLog from right directory.
* Makefile.am:
2013-07-02 José Alburquerque <jaalburquerque@gmail.com>
Auto-generate the ChangeLog from the git log for 'make dist'.
* Makefile.am: Include the dist-changelog.am file copied in build/
from mm-common so that the ChangeLog is automatically generated from
the git commit messages on 'make dist'.
2013-06-18 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Examples dom_parse_entities and dom_parser: Fix when LC_ALL=C.
* examples/testutilities.[h|cc]: New files with class CatchConvertError.
* examples/Makefile.am: Add testutilities.[h|cc].
* examples/dom_parse_entities/main.cc:
* examples/dom_parser/main.cc: Change some strings from Glib::ustring to
CatchConvertError before they are printed. It catches Glib::ConvertError
locally. 'make check' can pass even if the global locale does not support all
printed characters. Bug #702136.
2012-11-04 Murray Cumming <murrayc@murrayc.com>
2.36.0
2012-10-25 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Element::set_namespace_declaration(): No error to set the same URI twice.
* libxml++/nodes/element.[h|cc]: Don't throw an exception from
set_namespace_declaration(), if a namespace prefix is assigned the same URI
twice. Bug #635846, comment 27.
2012-10-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Require libxml-2.0 >= 2.7.3.
* configure.ac: Require libxml-2.0 >= 2.7.3.
Don't know if it's really necessary, but 2.7.2 from 2008-10-03 is the oldest
release available at ftp://xmlsoft.org/libxml2, and 2.7.2 contains a bug that
makes examples/import_node segfault.
2012-10-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser::initialize_context(): Call xmlCtxtUseOptions().
* libxml++/parsers/parser.cc: initialize_context(): Call xmlCtxtUseOptions()
instead of setting context_->validate and replaceEntities.
xmlCtxtUseOptions() does that and more.
2012-10-08 Murray Cumming <murrayc@murrayc.com>
2.35.4
2012-08-28 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add XInclude processing.
* Makefile.am: Add XIncludeStart and XIncludeEnd nodes.
* examples/Makefile.am: Add dom_xinclude example.
* examples/README: Add dom_xinclude example and other missing examples.
* examples/dom_xinclude/example.xml:
* examples/dom_xinclude/include1.txt:
* examples/dom_xinclude/include2.xml:
* examples/dom_xinclude/main.cc: New files.
* libxml++/document.[h|cc]: Add process_xinclude().
* libxml++/libxml++.h: Add new header files.
* libxml++/nodes/node.cc: create_wrapper(): Create XIncludeStart and
XIncludeEnd nodes.
* libxml++/nodes/xincludeend.[h|cc]:
* libxml++/nodes/xincludestart.[h|cc]: New files.
* .gitignore: Ignore /examples/dom_xinclude/dom_xinclude. Bug #338521.
2012-08-28 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser: Make it thread-safe.
* configure.ac: Require glibmm-2.4 >= 2.32.0.
* libxml++/parsers/parser.cc: Protect all accesses to extra_parser_data with
a Glib::Threads::Mutex. Bug #681467.
2012-08-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Document: Make the Document(xmlDoc*) constructor public.
* libxml++/document.h: Make the Document(xmlDoc*) constructor public.
Remove friend declarations that become unnecessary. Bug #668980.
2012-08-09 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Improve the DtdValidation and SchemaValidation example programs.
* examples/dtdvalidation/main.cc:
* examples/schemavalidation/main.cc: Print all information from all thrown
xmlpp exceptions.
2012-08-09 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Validators: Improve the error handling.
* libxml++/validators/validator.[h|cc]:
* libxml++/validators/dtdvalidator.[h|cc]:
* libxml++/validators/schemavalidator.[h|cc]: Check more return codes from
libxml2 functions. Improve the description of member functions in the
reference documentation. Bug #635846.
2012-08-07 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add incremental parsing to the SaxParser example program.
* examples/sax_parser/main.cc: Uncomment and correct the code that shows
incremental parsing with SaxParser::parse_chunk().
2012-08-07 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parsers: Improve the error handling.
* libxml++/parsers/domparser.[h|cc]:
* libxml++/parsers/saxparser.[h|cc]:
* libxml++/parsers/textreader.[h|cc]: Check more return codes from libxml2
functions. Improve the description of errors in the reference documentation.
Bug #635846.
2012-08-07 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Document, Element, Node: Remove unnecessary tests for null pointers.
* libxml++/document.cc:
* libxml++/nodes/element.cc:
* libxml++/nodes/node.cc: Remove tests for null pointer before calling
xmlFreeNode(), which does nothing if given a null pointer. These unnecessary
tests were newly added when error handling was improved. Bug #635846.
2012-08-05 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Schema::set_document(): Create empty document.
* libxml++/schema.[h|cc]: set_document(): If the argument 'document' is 0,
create an empty document, as the documentation says.
2012-08-05 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Document, Schema: Improve the error handling.
* libxml++/document.[h|cc]:
* libxml++/schema.[h|cc]: Check more return codes from libxml2 functions.
Improve the description of errors in the reference documentation. Bug #635846.
2012-08-02 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Element, Node: Improve the error handling.
* libxml++/nodes/element.[h|cc]:
* libxml++/nodes/node.[h|cc]: Check more return codes from libxml2 functions.
Improve the description of errors in the reference documentation. Bug #635846.
2012-06-21 Murray Cumming <murrayc@murrayc.com>
2.35.3
2012-06-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add examples/Makefile.am. Let 'make check' run the examples.
* examples/Makefile.am: New file. Let 'make check' both compile and run the
example programs.
* Makefile.am: Call examples/Makefile. Move all 'examples' stuff to
examples/Makefile.am.
* configure.ac: Remove --enable-examples. Generate examples/Makefile.
* .gitignore: Ignore make-check-sh. Bug #678390.
2012-06-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Example programs: Fix return codes and print errors on std::cerr.
* examples/*/main.cc: Return EXIT_FAILURE in case of failure. Print error
messages on std::cerr. The example programs can then be run by 'make check'.
Bug #678390.
2012-04-20 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Node: Add functions eval_to_[boolean|number|string]().
* examples/dom_xpath/example.xml: Add an element with numeric value.
* examples/dom_xpath/main.cc: Add calls to the new functions.
* libxml++/nodes/node.[h|cc]:
Add the functions eval_to_[boolean|number|string](). Bug #316244.
2012-04-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Node: Make the previous fix thread-safe.
* libxml++/nodes/node.cc: Delete the C++ wrapper of a deleted attribute node
without using xmlDeregisterNodeDefault. Bug #672992 comments 9-12.
2012-04-19 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Node: Fix memory problems in import_node().
* libxml++/nodes/node.[h|cc]: Return added_node instead of imported_node,
which libxml2 may delete. Delete the C++ wrapper of a deleted attribute node.
* examples/import_node/example[1|2].xml:
* examples/import_node/main.cc: Import attributes and a text node which is
merged with an existing text node. Bug #672992.
2012-04-12 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Define LIBXMLCPP_EXCEPTIONS_ENABLED unconditionally.
* configure.ac: Add AC_DEFINE([LIBXMLCPP_EXCEPTIONS_ENABLED],[1],...
2012-03-30 Murray Cumming <murrayc@murrayc.com>
Node: Check for a null pointer, to fix a scan-build warning.
* libxml++/nodes/node.cc: This seems unlikely.
2012-03-22 Murray Cumming <murrayc@murrayc.com>
2.35.2
2012-03-21 Murray Cumming <murrayc@murrayc.com>
Fix a warning found by clang++
* libxml++/parsers/textreader.h: PropertyReader is a class, not
a struct.
2012-03-20 Murray Cumming <murrayc@murrayc.com>
Remove the --disable-api-exceptions configure option.
And remove the #ifdefs and #else blocks from the code.
This is not used by anybody now, as far as I know, so this makes the
code easier to maintain.
2012-03-20 Murray Cumming <murrayc@murrayc.com>
A fix for the previous commit.
* libxml++/nodes/node.cc: get_first_child() const: Use the name
parameter.
2012-03-19 Murray Cumming <murrayc@murrayc.com>
Node: Add get_first_child().
* libxml++/nodes/node.[h|cc]: This is like get_children(),
but it returns only the first node, optionally returning
the first one with a certain name.
Based on a patch by Ilya Murav'jov in bug #648125 .
2012-02-16 Murray Cumming <murrayc@murrayc.com>
2.35.1
2012-02-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Handle attributes with default values correctly.
* libxml++/attributedeclaration.[h|cc]:
* libxml++/attributenode.[h|cc]: New files.
* Makefile.am:
* libxml++/Makefile.am: Add the new files.
* libxml++/libxml++.h: Add the new .h files.
* docs/manual/libxml++_without_code.xml: Add AttributeDeclaration and
AttributeNode in the list of node classes.
* libxml++/attribute.[h|cc]: Make get_value() useful also for default values
(XML_ATTRIBUTE_DECL). Fix set_value() for attributes in a namespace.
* libxml++/nodes/element.[h|cc]: get_attribute(): Add description. Don't use
xmlHasProp(), it ignores namespace.
* libxml++/nodes/node.cc: get_namespace_prefix(), get_namespace_uri(),
set_namespace(), create_wrapper(): Add code for XML_ATTRIBUTE_DECL.
* examples/dom_parser/example.dtd: Add attribute 'title' with default value.
* examples/dom_parser/example.xml: Add attribute 'title' with explicit value.
Bug #669635.
2012-02-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Node: Correct mis-spelt LIBXMLCPP_EXCEPTIONS_ENABLED.
* libxml++/nodes/node.h: Add some "@throws exception".
* libxml++/nodes/node.cc: Change LIBXMLCPP_EXCEPTIONS_ENABLE to
LIBXMLCPP_EXCEPTIONS_ENABLED in find_impl() and set_namespace().
2012-02-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Improved handling of entity references and processing instructions.
* libxml++/nodes/entitydeclaration.[h|cc]: New files.
* Makefile.am:
* libxml++/Makefile.am: Add the new files.
* libxml++/libxml++.h: Add the new .h file.
* docs/manual/libxml++_without_code.xml: Add EntityDeclaration in the list
of node classes.
* libxml++/document.[h|cc]: Add add_processing_instruction().
* libxml++/nodes/element.[h|cc]: Add add_child_entity_reference() and
add_child_processing_instruction().
* libxml++/nodes/entityreference.h: Improve the description of
get_resolved_text() and get_original_text().
* libxml++/nodes/node.cc: get_namespace_prefix() and get_namespace_uri():
XML_ENTITY_DECL has no namespace. Don't try to find it.
create_wrapper(): Create an EntityDeclaration when type == XML_ENTITY_DECL.
free_wrappers(): Don't walk the child list when type == XML_ENTITY_REF_NODE.
* examples/dom_build/main.cc: Add entity declarations and references, and
processing instructions to the built xml file.
* examples/dom_parse_entities/example.dtd: Make it compatible with example.xml.
* examples/dom_parse_entities/example.xml: Add an entity definition that
contains entity references.
* examples/dom_parse_entities/main.cc: Print the parsed file both with and
without entity substitution.
* examples/dom_parser/example.dtd: Make it compatible with example.xml.
* examples/dom_parser/main.cc: Add command flag -E (Don't substitute entities).
Bug #669481
2012-02-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add some files to .gitignore.
* .gitignore: Add docs files that are copied from mm-common.
Add /MSVC_Net2010/libxml++/libxml++.rc and
/examples/dom_read_write/example_output.xml.
2012-02-15 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Add @newin{2,36} to some new functions where it's missing.
* libxml++/exceptions/exception.h: Add @newin{2,36} to format_xml_error() and
format_xml_parser_error().
* libxml++/parsers/parser.h: Add @newin{2,36} to [set|get]_throw_messages().
Bug #304020.
2012-02-10 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Make the schema validation example program work with no arguments.
* examples/schemavalidation/main.cc: Correct the test for number of arguments.
2012-01-30 Kjell Ahlstedt <kjell.ahlstedt@bredband.net>
Parser: Throw more detailed error messages.
* examples/dom_parser/main.cc: Add command parameters -v -e -t.
* libxml++/exceptions/exception.[h|cc]: Add format_xml_error() and
format_xml_parser_error().
* libxml++/parsers/domparser.cc: Call format_xml_error() and
format_xml_parser_error() to get more detailed messages in exceptions.
* libxml++/parsers/parser.[h|cc]: Add [set|get]_throw_messages() and (local in
.cc until ABI can be broken) on_parser_[error|warning](). Bug #304020.
2012-01-30 Murray Cumming <murrayc@murrayc.com>
Document: Make the Document(xmlDoc*) constructor protected.
* libxml++/document.h: This was requested in bug #668980 (A. Pignotti).
2011-09-09 Murray Cumming <murrayc@murrayc.com>
Document: write_to_*(): Make sure that we write UTF-8 out.
* libxml++/document.cc: Because the xmlDocDump*() functions use some other
encoding if you specify NULL, causing errors such as:
xmlEscapeEntities : char out of range
2011-09-06 Murray Cumming <murrayc@murrayc.com>
2.34.2
2011-09-06 Mathias Lorente <mathias.lorente@free.fr>
Node::create_new_child_node(): Use the default namespace if none is specified.
* libxml++/nodes/node.cc: This is better than just ignoring it.
Bug #656110
2011-07-20 Murray Cumming <murrayc@murrayc.com>
ContentNode::get_content(): Fix a documentation typo.
* libxml++/nodes/contentnode.h: Mention > instead of &qt (a q
instead of a g, and no ;.).
2011-07-20 Mathias Lorente <mathias.lorente@free.fr>
Add Element::add_child_cdata().
* libxml++/nodes/element.[h|cc]: Add add_child_cdata(), using
xmlNewCDataBlock(), like the existing add_child_text().
* examples/sax_parser_build_dom/example.xml:
* examples/sax_parser_build_dom/svgparser.[h|cc]: Use the new API.
2011-04-18 Murray Cumming <murrayc@murrayc.com>
2.34.1
2011-04-17 Murray Cumming <murrayc@murrayc.com>
Fix distcheck.
* Makefile.am: Specify the full path to docbook-customisation.xsl,
which is apparently necessary with the autotools that I have here.
2011-04-17 Murray Cumming <murrayc@murrayc.com>
Fix the build with --enable-warnings=fatal.
* configure.ac: Use -no-long-long to avoid an (apparently new) compiler
warning about long long not being supported by C++98. glibmm already had
this option.
2011-04-17 Murray Cumming <murrayc@murrayc.com>
Do not require mm-common during the tarball build.
* configure.ac: Add a MM_CONFIG_DOCTOOL_DIR() call.
2011-04-15 Murray Cumming <murrayc@murrayc.com>
Really correct NEWS
2011-04-15 Murray Cumming <murrayc@murrayc.com>
Correct NEWS
2011-04-15 Murray Cumming <murrayc@murrayc.com>
2.34.0
2011-02-24 Murray Cumming <murrayc@murrayc.com>
Fix the build with the changed linker behaviour on Ubuntu Natty.
* Makefile.am: Link the examples to glibmm explicitly.
2011-02-11 Murray Cumming <murrayc@murrayc.com>
2.33.2
2011-02-11 Murray Cumming <murrayc@murrayc.com>
Node::remove_child(): Fix a use of deleted memory
* libxml++/nodes/node.cc:
Use a temporary variable to avoid accessing the node C++ instance after we
have deleted it. Valgrind foudn this.
Also remove the comment about the libxml deleting our C++ instance via a
callback, because we don't do that anymore.
2010-11-26 Murray Cumming <murrayc@murrayc.com>
Check some libxml function return values.
* libxml++/document.cc: do_write_to_stream():
* libxml++/schema.cc: set_document(): Check the results from
xmlSchemaNewDocParserCtxt() and xmlSaveFormatFileTo().
Bug #635846 (Markus Elfring).
2010-11-22 Murray Cumming <murrayc@murrayc.com>
Fix NEWS: 2.33.1 is _not_ stable.
2010-11-18 Murray Cumming <murrayc@murrayc.com>
2.33.1
2010-11-14 Murray Cumming <murrayc@murrayc.com>
free_wrappers(): Fix crash.
* libxml++/nodes/node.cc: free_wrappers(): Revert my change to check
xmlNode::properties for all types, because the layout of some structs
is apparently completely different (not really deriving fully), and this
caused a crash in examples/sax_parser/.
Added an explanatory comment.
2010-11-14 Murray Cumming <murrayc@murrayc.com>
Change the --enable-examples default to yes.
* configure.ac: Build the examples by default, so we at least check the
build more often. Disabling them is only useful for package building,
which is the less common case.
2010-11-14 Murray Cumming <murrayc@murrayc.com>
Moved create_wrapper() and free_wrappers() to Node.
* libxml++/document.[h|cc]:
* libxml++/nodes/node.[h|cc]: Moved create_wrapper() and free_wrappers()
to here from Document.
free_wrappers(): Never return inside the switch/case, so we check
xmlNode::properties for all struct types, and to avoid making the behaviour
non-obvious.
* libxml++/parsers/textreader.cc:
* libxml++/validators/dtdvalidator.cc:
* libxml++/nodes/element.cc: Adapted.
2010-11-14 Alessandro Pignotti <a.pignotti@sssup.it>
Make libxml++ compatible with libxml2 usage
2010-11-08 Murray Cumming <murrayc@murrayc.com>
Do not call xmlCleanupParser() because it is brutal.
* libxml++/document.cc: ~Init(): Do not call xmlCleanupParser() because it
breaks libxml generally and should only be called by an application
explicitly before it ends, for instance at the end of its main().
2010-10-19 Murray Cumming <murrayc@murrayc.com>
Added another TODO for when we can break ABI
2010-10-19 Murray Cumming <murrayc@murrayc.com>
Added a TODO for when we can break ABI
2010-10-19 Knut Aksel Røysland <knutroy@ifi.uio.no>
Node::get_parent(): Removed code duplication.
* libxml++/nodes/node.cc: get_parent() const: Use const_cast<> to call
the non-const version, instead of duplicating the code.
2010-10-14 Murray Cumming <murrayc@murrayc.com>
2.32.0
2010-10-14 Murray Cumming <murrayc@murrayc.com>
website: Change the mailing list location, because I moved it.
* docs/index.html: The mailing list is now at gnome.org.
2010-10-03 Armin Burgmeier <armin@arbur.net>
Add support for MSVC 2010 and 64 bit to MSVC project files
2010-10-03 Armin Burgmeier <armin@arbur.net>
* MSVC_Net2005/README:
* MSVC_Net2005/examples/dom_build/dom_build.vcproj:
* MSVC_Net2005/examples/dom_parse_entities/dom_parse_entities.vcproj:
* MSVC_Net2005/examples/dom_parser/dom_parser.vcproj:
* MSVC_Net2005/examples/dom_parser_raw/dom_parser_raw.vcproj:
* MSVC_Net2005/examples/dom_read_write/dom_read_write.vcproj:
* MSVC_Net2005/examples/dom_xpath/dom_xpath.vcproj:
* MSVC_Net2005/examples/dtdvalidation/dtdvalidation.vcproj:
* MSVC_Net2005/examples/import_node/import_node.vcproj:
* MSVC_Net2005/examples/sax_exception/sax_exception.vcproj:
* MSVC_Net2005/examples/sax_parser/sax_parser.vcproj:
* MSVC_Net2005/examples/sax_parser_build_dom/sax_parser_build_dom.vcproj:
* MSVC_Net2005/examples/sax_parser_entities/sax_parser_entities.vcproj:
* MSVC_Net2005/examples/schemavalidation/schemavalidation.vcproj:
* MSVC_Net2005/examples/textreader/textreader.vcproj:
* MSVC_Net2005/gendef/gendef.vcproj:
* MSVC_Net2005/libxml++.sln:
* MSVC_Net2005/libxml++/libxml++.vcproj:
* MSVC_Net2008/README:
* MSVC_Net2008/examples/dom_build/dom_build.vcproj:
* MSVC_Net2008/examples/dom_parse_entities/dom_parse_entities.vcproj:
* MSVC_Net2008/examples/dom_parser/dom_parser.vcproj:
* MSVC_Net2008/examples/dom_parser_raw/dom_parser_raw.vcproj:
* MSVC_Net2008/examples/dom_read_write/dom_read_write.vcproj:
* MSVC_Net2008/examples/dom_xpath/dom_xpath.vcproj:
* MSVC_Net2008/examples/dtdvalidation/dtdvalidation.vcproj:
* MSVC_Net2008/examples/import_node/import_node.vcproj:
* MSVC_Net2008/examples/sax_exception/sax_exception.vcproj:
* MSVC_Net2008/examples/sax_parser/sax_parser.vcproj:
* MSVC_Net2008/examples/sax_parser_build_dom/sax_parser_build_dom.vcproj:
* MSVC_Net2008/examples/sax_parser_entities/sax_parser_entities.vcproj:
* MSVC_Net2008/examples/schemavalidation/schemavalidation.vcproj:
* MSVC_Net2008/examples/textreader/textreader.vcproj:
* MSVC_Net2008/gendef/gendef.vcproj:
* MSVC_Net2008/libxml++.sln:
* MSVC_Net2008/libxml++/libxml++.vcproj:
* MSVC_Net2010/README:
* MSVC_Net2010/examples/dom_build/dom_build.vcxproj:
* MSVC_Net2010/examples/dom_build/dom_build.vcxproj.filters:
* MSVC_Net2010/examples/dom_parse_entities/dom_parse_entities.vcxproj:
* MSVC_Net2010/examples/dom_parse_entities/dom_parse_entities.vcxproj.filters:
* MSVC_Net2010/examples/dom_parser/dom_parser.vcxproj:
* MSVC_Net2010/examples/dom_parser/dom_parser.vcxproj.filters:
* MSVC_Net2010/examples/dom_parser_raw/dom_parser_raw.vcxproj:
* MSVC_Net2010/examples/dom_parser_raw/dom_parser_raw.vcxproj.filters:
* MSVC_Net2010/examples/dom_read_write/dom_read_write.vcxproj:
* MSVC_Net2010/examples/dom_read_write/dom_read_write.vcxproj.filters:
* MSVC_Net2010/examples/dom_xpath/dom_xpath.vcxproj:
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Node::find(): Check xmlNode::type for a XML_NAMESPACE_DECL.
* libxml++/nodes/node.cc: find_impl(): if the xmlNode has type
XML_NAMESPACE_DECL then it is actually a xmlNs, which is not like a xmlNode
at all (thanks to the awful undocumented libxml++ system of struct
inheritance).
So we just igore these items. We need to decide what the caller really
expects.
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Node::find(): Revert some of my previous change because it breaks some code.
* libxml++/nodes/node.cc: find_impl(): Restore the previous behaviour,
because the strange use of _private only seems to happen sometimes.
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Node::find(): Cope with weird use of _private in xmlNodeSet.
* libxml++/nodes/node.cc: The xmlNodeSet seems to contain extra xmlNodes that
were never given to on_libxml_construct(). Those xmlNodes seem to abuse
private_, where we find our real xmlNodes containing our C++ Nodes.
This fixes bug #386013 (Max Kirillov) though it depends on undocumented
libxml behaviour.
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Node::find(): Use libxml functions instead of direct C access.
* libxml++/nodes/node.cc: Use xmlXPathNodeSetIsEmpty(),
xmlXPathNodeSetGetLength() and xmlXPathNodeSetItem() instead of direct
xmlNodeSet struct access.
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Manual: Use git.gnome.org as the link to the examples source code.
* docs/manual/libxml++_without_code.xml: Use git.gnome.org for the examples
url base, as we do in gtkmm-documentation.
2010-06-13 Murray Cumming <murrayc@murrayc.com>
Restore the mm-common make target and update a link.
* Makefile.am: Restore (and update) the post-html target that was lost when
we redid the build system for mm-common.
* docs/index.html: Change the link to the manual to point to its new location
at library.gnome.org.
2010-05-04 Murray Cumming <murrayc@murrayc.com>
2.30.1
2010-05-04 Murray Cumming <murrayc@murrayc.com>
Documentation: Don't hide undocumented API.
* docs/reference/Doxyfile.in: Use the same options as gtkmm (mostly).
In particular, don't hide undocumented API, such as NodeSet, to fix
bug #583412 (Hubert Figuiere).
2010-05-04 Murray Cumming <murrayc@murrayc.com>
Documentation: Improvements.
* libxml++/libxml++.h: Expand the main page text, linking to the tutorial
and to important classes.
* libxml++/parsers/domparser.h:
* libxml++/schema.h: Correct the class descriptions.
* libxml++/parsers/textreader.h: Add a class description.
* libxml++/nodes/element.h:
* libxml++/nodes/node.h:
* libxml++/parsers/saxparser.h:
* libxml++/validators/schemavalidator.h:
Correct @newin2p2* to @newin{2,*} now that we use mm-common.
2010-04-27 David King <davidk@openismus.com>
Further documentation main page improvements
* libxml++/libxml++.h: Some minor improvements.
2010-04-23 David King <davidk@openismus.com>
Fix typo in main page documentation
2010-04-23 David King <davidk@openismus.com>
Documentation main page improvements
* libxml++/libxml++.h: Add external links and compilation example.
2010-04-18 Olav Vitters <olav@vitters.nl>
Fix doap file
2010-04-16 David King <davidk@openismus.com>
Minor documentation update
* docs/index.html: Link to latest gnome.org resources.
* libxml++/libxml++.h: Add minimal documentation for main page.
2010-04-06 Murray Cumming <murrayc@murrayc.com>
.pc file: Add datarootdir.
* libxml++-2.6.pc.in: Add datarootdir and datadir, as in the gtkmm .pc.in
file, because I started seeing this warning when running autogen.sh in Glom:
Variable 'datarootdir' not defined in '/opt/gnome228/lib/pkgconfig/libxml++-2.6.pc'
2010-04-03 Armin Burgmeier <armin@arbur.net>
Add dom_parser_raw to MSVC solution files
2010-04-03 Armin Burgmeier <armin@arbur.net>
* MSVC_Net2005/libxml++.sln:
* MSVC_Net2008/libxml++.sln: Add dom_parser_raw project to the
solution files.
2010-03-30 Murray Cumming <murrayc@murrayc.com>
Stop exceptions when using std::cout and UTF-8.
* examples/*/main.cc: Initialize the global C and C++ locale to prevent
exceptions when ouputing a ustring (with non-ASCII UTF-8) to std::cout.
We don't see this problem when writing gtkmm apps because gtk_init() (via
Gtk::Main) initializes the C locale correctly.
Thanks to Daniel Elstner for the solution (he will document it properly
in the Glib::ustring API reference) and to Nic Reveles and others for
noticing the problem.
2010-03-30 David King <davidk@openismus.com>
Update pkg-config file
* libxml++-2.6.pc.in: Add documentation locations to pkg-config file.
Update other fields to use variables, rather than hardcoded values.
2010-03-30 David King <davidk@openismus.com>
Release 2.30.0
2010-03-30 David King <davidk@openismus.com>
Disable AM_MAINTAINER_MODE by default
* configure.ac: Pass the disable parameter to AM_MAINTAINER_MODE so
that tarball users do not need doxygen, mm-common, etc. if they modify
files. Maintainer mode is still enabled if running autogen.sh.
2010-03-29 David King <davidk@openismus.com>
Move a target outside a conditional block to fix the build
* Makefile.am: Move docs/manual/libxml++.xml target outside the
ENABLE_DOCUMENTATION conditional block.
2010-03-29 David King <amigadave@amigadave.com>
Use mm-common for reference documentation generation
* .gitignore: Update.
* Makefile.am: Remove SUBDIRS. Make examples build and documentation
build conditional. Build reference documentation with doc-reference.am
from mm-common. Add docs/manual/libxml++.pdf target, but do not enable
it by default. Add autogen.sh and docs/manual/insert_example_code.pl to
dist_noinst_SCRIPTS. Add docs/manual/html/*.html to
MAINTAINERCLEANFILES.
* autogen.sh: Add --enable-maintainer-mode to arguments passed to
configure.
* configure.ac: Add AM_MAINTAINER_MODE. Add a configure argument to
enable the build of the examples. Use mm-common macros to add a
configure argument to enable documentation, and use the glibmm
tagfile. Check for xmllint and db2latex for DTD validation of the
DocBook manual and building the PDF documentation, repectively. Remove
the last non-toplevel Makefiles from AC_CONFIG_FILES.
* docs/Makefile.am:
* docs/Makefile_web.am_fragment:
* docs/manual/Makefile.am:
* docs/reference/Makefile.am: Remove from repository, and move content
to Makefile.am.
* docs/manual/docbook-customisation.xsl: Add DocBook customisation
parameters.
* docs/manual/libxml++_without_code.xml: Make validate.
* docs/reference/Doxyfile.in: Update from mm-common.
* docs/reference/README: Remove empty file.
* examples/README: Mention the --enable-examples configure argument.
2010-03-27 David King <amigadave@amigadave.com>
Fix several compiler warnings
* examples/dom_build/main.cc:
* examples/dtdvalidation/main.cc:
* examples/import_node/main.cc:
* examples/sax_exception/main.cc:
* examples/sax_exception/my_parser.cc:
* examples/sax_parser/main.cc:
* examples/sax_parser/my_parser.cc:
* examples/sax_parser_build_dom/svgparser.cc:
* examples/sax_parser_entities/myparser.cc:
* examples/textreader/main.cc:
* libxml++/parsers/textreader.cc: Comment out unused parameters and
variables.
* libxml++/parsers/saxparser.cc: Fill in missing fields of
xmlSAXHandler struct.
2010-03-27 David King <davidk@openismus.com>
Refactor build system
* Makefile.am: Merge from subdir Makefile.am files, excluding doc.
* MSVC_Net2005/examples/dom_parser_raw/dom_parser_raw.vcproj:
* MSVC_Net2008/examples/dom_parser_raw/dom_parser_raw.vcproj: Add
missing Visual studio project files.
* MSVC_Net2005/examples/*/Makefile.am:
* MSVC_Net2005/examples/Makefile.am:
* MSVC_Net2005/gendef/Makefile.am:
* MSVC_Net2005/libxml++/Makefile.am:
* MSVC_Net2008/examples/*/Makefile.am:
* MSVC_Net2008/examples/Makefile.am:
* MSVC_Net2008/gendef/Makefile.am:
* MSVC_Net2008/libxml++/Makefile.am: Remove from repository, and move
content to Makefile.am, making the MSVC project file build
non-recursive.
* README: Update.
* autogen.sh: Copy from gtkmm.
* configure.in: Move to configure.ac.
* configure.ac: Require autoconf 2.59 and automake 1.9. Use new-style
AC_INIT() with bug-report link and homepage URL. Use mm-common for
initialisation of version variables. Require libtool 2.2.6 for much
faster builds. Use MM_ARG_ENABLE_WARNINGS to configure compiler
warning flags. Use MM_CHECK_PERL to check for the required Perl
version. Use AC_CONFIG_FILES rather than AC_OUTPUT. Update for
Makefile.am changes.
* config.h.in: Remove from repository, as autoheader is now used.
* */.cvsignore: Remove old files.
* doc/manual/Makefile.am: Use the correct Perl.
* doc/reference/Doxyfile.in:
* MSVC_Net2005/libxml++/libxml++.rc.in:
* MSVC_Net2008/libxml++/libxml++.rc.in: Use new-style variable names.
* examples/Makefile.am_fragment:
* examples/Makefile.am:
* examples/*/Makefile.am: Remove from repository, and move content to
Makefile.am, making the examples build non-recursive.
* .gitignore: Update.
* libxml++/Makefile.am:
* libxml++/*/Makefile.am: Remove from repository, and move content to
Makefile.am, making the libxml++ build non-recursive.
* libxml++.spec.in:
* INSTALL: Remove from repository.
* scripts/README:
* scripts/Makfile.am: Remove from repository.
* scripts/reduced.m4: Move to macros/reduced.m4
2010-03-08 Murray Cumming <murrayc@murrayc.com>
Use 0 instead of NULL.
* MSVC_Net2005/gendef/gendef.cc:
* MSVC_Net2008/gendef/gendef.cc:
* libxml++/attribute.cc:
* libxml++/document.cc:
* libxml++/io/outputbuffer.cc:
* libxml++/io/parserinputbuffer.cc:
* libxml++/nodes/node.cc:
* libxml++/parsers/domparser.cc:
* libxml++/parsers/parser.cc:
* libxml++/parsers/textreader.cc:
* libxml++/schema.cc:
* libxml++/schema.h: Do not use NULL. It is unwise in C++.
2009-11-17 Murray Cumming <murrayc@murrayc.com>
Fix typos.
2009-07-27 Johannes Schmid <jhs@gnome.org>
Fixed various bits to allow building with disabled exceptions
2009-07-27 Johannes Schmid <jhs@gnome.org>
New tarball release
2009-06-24 Daniel Elstner <danielk@openismus.com>
Add DOAP category and fix mbox resource
2009-05-07 Murray Cumming <murrayc@murrayc.com>
Fix the build without exceptions, hopefully.
* libxml++/parsers/textreader.cc: check_for_exceptions():
Add an ifdef so that this should build with exceptions disabled,
though there is no alternative API yet. Noticed by David King.
2009-05-07 Murray Cumming <murrayc@murrayc.com>
Whitespace corrections.
2009-04-22 Jonathon Jongsma <jonathon.jongsma@collabora.co.uk>
add doap file
2009-04-21 Hubert Figuiere <hub@figuiere.net>
add .doap and .gitignore
2009-03-25 Hubert Figuiere <hub@src.gnome.org>
add missingf bug# to the changelog
svn path=/trunk/; revision=200
2009-03-25 Hubert Figuiere <hub@src.gnome.org>
Fix some warnings triggered by -Wshadow.
* libxml++/parsers/saxparser.h: Fix some warnings triggered
by -Wshadow.
svn path=/trunk/; revision=199
2009-03-25 Hubert Figuiere <hub@src.gnome.org>
severity_ was not initialised at construction time.
* libxml++/parsers/textreader.cc: severity_ was not initialised
at construction time.
svn path=/trunk/; revision=198
2009-03-16 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=197
2009-03-03 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=196
2009-03-02 Armin Burgmeier <armin@openismus.com>
Removed the vsnprintf #define on Windows. This could conflict with another
2009-03-02 Armin Burgmeier <armin@openismus.com>
* libxml++/validators/validator.h:
* libxml++/parsers/parser.h: Removed the vsnprintf #define on Windows.
This could conflict with another define otherwise. Both MSVC and MinGW
have vsnprintf (without underscore) as well, and I verified libxml++
still compiles in both. If we still need the definition for some
reason, then we should re-add it into the source files, so that other
libraries don't conflict with our definition.
svn path=/trunk/; revision=195
2009-01-09 Stef Walter <stef-list@memberwebs.com>
Add setup_exceptions(), setting the on_libxml_error() callback, and call
2009-01-09 Stef Walter <stef-list@memberwebs.com>
* libxml++/parsers/textreader.[h|cc]: Add setup_exceptions(), setting
the on_libxml_error() callback, and call it from the constructors.
check_for_exceptions(): Actually check some member variables and throw an
exception if necessary.
This should fix bug #348006.
It breaks ABI because it adds member variables, but we decided that is
OK because nobody could actually be using this class seriously before
now because it had no error checking.
svn path=/trunk/; revision=194
2008-12-22 Armin Burgmeier <arminb@src.gnome.org>
Release 2.24.2
svn path=/trunk/; revision=192
2008-12-22 Armin Burgmeier <armin@openismus.com>
Set embedded_doc_ according to the embed parameter instead of always
2008-12-20 Armin Burgmeier <armin@openismus.com>
* libxml++/schema.cc (set_document): Set embedded_doc_ according to
the embed parameter instead of always setting it to false, so that we
actually release the document in release_underlying().
(release_underlying): Free the schema in all cases, also when the
document was not embedded, to avoid a memory leak.
* libxml++/validators/schemavalidator.cc (parse_file, parse_memory,
parse_document): Make sure not to leak the xmlSchemaParserCtxtPtr in
case of an exception. Bug #563321, Arjan Franzen.
svn path=/trunk/; revision=191
2008-12-18 Armin Burgmeier <armin@openismus.com>
Removed outdated MSVC6 project.
2008-12-18 Armin Burgmeier <armin@openismus.com>
* win32_msvc6/:
* Makefile.am:
* configure.in: Removed outdated MSVC6 project.
svn path=/trunk/; revision=190
2008-12-12 Armin Burgmeier <arminb@src.gnome.org>
libxml++ 2.24.1 release
svn path=/trunk/; revision=189
2008-12-12 Armin Burgmeier <armin@openismus.com>
Removed this generated file. It went in by accident.
2008-12-12 Armin Burgmeier <armin@openismus.com>
* MSVC_Net2008/examples/sax_parser/sax_parser.vcproj.HALLWA.Armin.user:
Removed this generated file. It went in by accident.
* MSVC_Net2008/exapmles/sax_parser/sax_parser.vcproj: Added the
example project file instead, which should have been added from the
beginning.
svn path=/trunk/; revision=188
2008-12-12 Armin Burgmeier <armin@openismus.com>
Added schema.cc and schemavalidator.cc to the project. Bug #563664 (Arjan
2008-12-12 Armin Burgmeier <armin@openismus.com>
* MSVC_Net2005/libxml++/libxml++.vcproj:
* MSVC_Net2008/libxml++/libxml++.vcproj: Added schema.cc and
schemavalidator.cc to the project. Bug #563664 (Arjan Franzen).
* MSVC_Net2005/examples/schemavalidation/schemavalidation.vcproj:
* MSVC_Net2005/examples/schemavalidation/Makefile.am:
* MSVC_Net2005/examples/Makefile.am:
* MSVC_Net2005/libxml++.sln: Added the schema validator example to the
MSVC8 solution file.
* MSVC_Net2008/examples/schemavalidation/schemavalidation.vcproj:
* MSVC_Net2008/examples/schemavalidation/Makefile.am:
* MSVC_Net2008/examples/Makefile.am:
* MSVC_Net2008/libxml++.sln: Added the schema validator example to the
MSVC9 solution file.
svn path=/trunk/; revision=187
2008-12-12 Przemysław Grzegorczyk <pgrzegorczyk@gmail.com>
Fix a typo to fix the build.
2008-12-12 Przemysław Grzegorczyk <pgrzegorczyk@gmail.com>
* libxml++/schema.cc: Fix a typo to fix the build.
svn path=/trunk/; revision=186
2008-12-08 Murray Cumming <murrayc@murrayc.com>
check_for_exception(): Use an auto_ptr<> to avoid leaking the exception,
2008-12-08 Murray Cumming <murrayc@murrayc.com>
* libxml++/validators/validator.cc: check_for_exception(): Use an
auto_ptr<> to avoid leaking the exception, as in
Parser::check_for_exception().
Bug #563321 (Arjan Franzen)
svn path=/trunk/; revision=185
2008-12-05 Murray Cumming <murrayc@murrayc.com>
release_underlying(): Use xmlSchemaFree() to avoid a leak, as suggested by
2008-12-05 Murray Cumming <murrayc@murrayc.com>
* libxml++/schema.cc: release_underlying(): Use xmlSchemaFree()
to avoid a leak, as suggested by Balazs Tirpak. Bug #312216.
svn path=/trunk/; revision=184
2008-10-09 Armin Burgmeier <armin@openismus.com>
Adapt the new DLL naming convention.
2008-10-09 Armin Burgmeier <armin@openismus.com>
* MSVC_Net2005/*/*.vcproj: Adapt the new DLL naming convention.
* MSVC_Net2008/: Added project files for Visual Studio 2008.
* Makefile.am:
* configure.in: Added the new files to the distribution.
svn path=/trunk/; revision=183
2008-09-21 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=182
2008-08-18 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=181
2008-08-16 Murray Cumming <murrayc@murrayc.com>
get_value(): xmlGetNsProp() takes the namespace URI, not the prefix. Bug
2008-08-16 Murray Cumming <murrayc@murrayc.com>
* libxml++/attribute.cc: get_value(): xmlGetNsProp() takes the
namespace URI, not the prefix.
Bug #547689 (Sergei Fedorov)
svn path=/trunk/; revision=180
2008-08-14 Murray Cumming <murrayc@murrayc.com>
Added an example using namespace prefixes, from bug #547689. Comment out
2008-08-14 Murray Cumming <murrayc@murrayc.com>
* examples/dom_parser/Makefile.am:
* examples/dom_parser/example_with_namespace.xml:
Added an example using namespace prefixes, from bug
#547689.
* examples/dom_parser/main.cc: Comment out the call to set_validate(),
because that example does not have a DTD.
Show the namespace prefixes in the output.
* libxml++/attribute.cc: get_value(): Use xmlGetNsProp() instead of
xmlGetProp(), so we don't ignore the namespace prefix, so we get
the correct value.
Bug #547689 (Sergei Fedorov)
svn path=/trunk/; revision=179
2008-08-10 Armin Burgmeier <armin@arbur.net>
Renamed from MSVC_Net2003.
2008-08-10 Armin Burgmeier <armin@arbur.net>
* MSVC_Net2005/: Renamed from MSVC_Net2003.
* MSVC_Net2005/libxml++/libxml++.vcproj: Link against libxml2.lib
instead of xml2.lib because that's how it is called in Tor's GTK+
bundle.
* MSVC_Net2005/libxml++/libxml++.rc.in: Removed "#include resource.h"
because there is no resource.h.
* MSVC_Net2005/libxml++/libxml++.sln: Build all examples by default.
* Makefile.am:
* configure.in: Adapt build files for the MSVC_Net2003 -> MSVC_Net2005
rename.
svn path=/trunk/; revision=178
2008-06-12 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=177
2008-05-05 Murray Cumming <murrayc@murrayc.com>
Use parse_file() but leave the parse_chunk() version commented out, to
2008-05-05 Murray Cumming <murrayc@murrayc.com>
* examples/sax_parser/main.cc (main): Use parse_file() but leave
the parse_chunk() version commented out, to simplify this example.
* examples/sax_parser/myparser.cc
Catch Glib::ConvertError exceptions when using std::cout, though
libxml++ should really always supply valid UTF-8 to us.
svn path=/trunk/; revision=176
2008-05-05 Murray Cumming <murrayc@src.gnome.org>
Increased version. I forgot to commit this at the time
svn path=/trunk/; revision=175
2008-04-14 Armin Burgmeier <armin@arbur.net>
Added a parse_chunk_raw() method and changed parse_chunk() to use it.
2008-04-14 Armin Burgmeier <armin@arbur.net>
* libxml++/parsers/saxparser.h:
* libxml++/parsers/saxparser.cc: Added a parse_chunk_raw() method and
changed parse_chunk() to use it.
svn path=/trunk/; revision=174
2008-03-26 Murray Cumming <murrayc@murrayc.com>
Corrected a filename to fix distcheck
2008-03-26 Murray Cumming <murrayc@murrayc.com>
* examples/schemavalidation/Makefile.am: Corrected a filename to
fix distcheck
* libxml++/schema.h:
* libxml++/validators/schemavalidator.h: Added the newin2p24 doxygen
keyword.
svn path=/trunk/; revision=173
2008-03-26 Emilien KIA <cursor@free.fr>
Added Schema class, similar to the existing Dtd class.
2008-03-26 Emilien KIA <cursor@free.fr>
* configure.in:
* libxml++/Makefile.am:
* libxml++/libxml++.h:
* libxml++/schema.cc:
* libxml++/schema.h: Added Schema class, similar to the existing Dtd
class.
* libxml++/validators/Makefile.am:
* libxml++/validators/schemavalidator.cc
* libxml++/validators/schemavalidator.h: Added Schema validator class,
similar to the existing DtdValidator class.
* examples/Makefile.am:
* examples/schemavalidation/: New example, similar to the
existing dtdvalidation example.
Bug #312216.
svn path=/trunk/; revision=172
2008-03-26 Murray Cumming <murrayc@murrayc.com>
Fixed the post-html rule. Corrected some links. Corrected documentation
2008-03-26 Murray Cumming <murrayc@murrayc.com>
* docs/Makefile.am: Fixed the post-html rule.
* docs/index.html: Corrected some links.
* libxml++/nodes/node.h: Corrected documentation for the new methods
from the previous commit.
svn path=/trunk/; revision=171
2008-03-26 Murray Cumming <murrayc@murrayc.com>
Added add_child_text() with a previous_node parameter, for adding between
2008-03-26 Murray Cumming <murrayc@murrayc.com>
* libxml++/nodes/element.cc:
* libxml++/nodes/element.h: Added add_child_text() with a previous_node
parameter, for adding between existing nodes.
Added add_child_text_before() too.
* libxml++/nodes/node.cc:
* libxml++/nodes/node.h: Added add_child() with a previous_node
parameter, for adding between existing nodes.
Added add_child_before() too.
* docs/index.html: Removed the license clarifications text because I
always found it to be arbitrary and not very informative.
* docs/reference/Doxyfile.in: Added a newin2p24 doxygen keyword.
* docs/reference/Makefile.am: Do not create a version-specific
directory name for reference documentation. The Since: text and links
in the documentation are enough to know what was in what version.
svn path=/trunk/; revision=170
2008-03-07 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=167
2008-03-07 Deng Xiyue <murrayc@murrayc.com>
Add a destructor (does not break ABI because the base class already has a
2008-03-07 Deng Xiyue <murrayc@murrayc.com>
* libxml++/document.cc:
* libxml++/document.h: Add a destructor
(does not break ABI because the base class already has a
virtual destructor) that calls xmlCleanupParser to match the
existing call to xmlInitParser() in the constructor. Fixes
a memory leak.
Bug #501168 (Matt G.)
svn path=/trunk/; revision=166
2008-01-17 Murray Cumming <murrayc@src.gnome.org>
Corrected the ChangeLog.
svn path=/trunk/; revision=165
2008-01-17 Murray Cumming <murrayc@src.gnome.org>
2008-01-17 Martin Michlmayr <tbm@cyrius.com>>
* libxml++/attribute.cc:
* libxml++/dtd.cc:
* libxml++/dtd.h:
* libxml++/io/ostreamoutputbuffer.h:
* libxml++/io/outputbuffer.h:
* libxml++/keepblanks.cc:
* libxml++/keepblanks.h:
* libxml++/libxml++.h:
* libxml++/nodes/cdatanode.cc:
* libxml++/nodes/cdatanode.h:
* libxml++/nodes/commentnode.cc:
* libxml++/nodes/commentnode.h:
* libxml++/nodes/contentnode.cc:
* libxml++/nodes/element.cc:
* libxml++/nodes/element.h:
* libxml++/nodes/entityreference.cc:
* libxml++/nodes/entityreference.h:
* libxml++/nodes/node.cc:
* libxml++/nodes/processinginstructionnode.cc:
* libxml++/nodes/processinginstructionnode.h:
* libxml++/nodes/textnode.cc:
* libxml++/nodes/textnode.h:
* libxml++/parsers/domparser.cc:
* libxml++/parsers/domparser.h:
* libxml++/parsers/parser.cc:
* libxml++/parsers/parser.h:
* libxml++/parsers/saxparser.cc:
* libxml++/parsers/textreader.h:
Correct the name of the files in their comment blocks,
though this could just be removed instead.
Bug #510056.
svn path=/trunk/; revision=164
2008-01-17 Murray Cumming <murrayc@src.gnome.org>
2008-01-17 Martin Michlmayr <tbm@cyrius.com>>
* libxml++/parsers/parser.cc:
* libxml++/parsers/textreader.h:
Added includes to fix the build with gcc 4.3
pre-releases.
Bug #510053.
svn path=/trunk/; revision=163
2007-08-30 Murray Cumming <murrayc@murrayc.com>
When exceptions are disabled, assume that they are also disabled in glibmm
2007-08-30 Murray Cumming <murrayc@murrayc.com>
* examples/dom_parser_raw/main.cc: When exceptions are disabled, assume that they are also
disabled in glibmm and then use the extra error parameter to Glib::convert(), to fix the
build when using glibmm with disabled exceptions.
* docs/manual/Makefile.am: Use maintainer-clean instead of clean-local to delete the html,
but this still seems to be deleted when building debian packages.
svn path=/trunk/; revision=162
2007-08-29 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=161
2007-08-29 Murray Cumming <murrayc@murrayc.com>
distcheck fixes.
2007-08-29 Murray Cumming <murrayc@murrayc.com>
* scripts/Makefile.am: distcheck fixes.
svn path=/trunk/; revision=160
2007-08-29 Murray Cumming <murrayc@murrayc.com>
Added an --enable-api-exceptions configure option, which defines
2007-08-29 Murray Cumming <murrayc@murrayc.com>
* autogen.sh:
* Makefile.am:
* configure.in:
* scripts/Makefile.am:
* scripts/reduced.m4: Added an --enable-api-exceptions
configure option, which defines LIBXMLCPP_EXCEPTIONS_ENABLED
in libxml++config.h.
* examples/dom_build/main.cc:
* examples/dom_parse_entities/main.cc:
* examples/dom_parser/main.cc:
* examples/dom_parser_raw/main.cc:
* examples/dom_read_write/main.cc:
* examples/dom_xpath/main.cc:
* examples/dtdvalidation/main.cc:
* examples/import_node/main.cc:
* examples/sax_exception/main.cc:
* examples/sax_exception/myparser.cc:
* examples/sax_parser/main.cc:
* examples/sax_parser_build_dom/main.cc:
* examples/sax_parser_entities/main.cc:
* examples/textreader/main.cc:
* libxml++/document.cc:
* libxml++/exceptions/exception.cc:
* libxml++/exceptions/internal_error.cc:
* libxml++/exceptions/parse_error.cc:
* libxml++/exceptions/validity_error.cc:
* libxml++/io/outputbuffer.cc:
* libxml++/io/parserinputbuffer.cc:
* libxml++/libxml++config.h.in:
* libxml++/nodes/contentnode.cc:
* libxml++/nodes/element.cc:
* libxml++/nodes/node.cc:
* libxml++/parsers/domparser.cc:
* libxml++/parsers/parser.cc:
* libxml++/parsers/saxparser.cc:
* libxml++/parsers/textreader.cc:
* libxml++/validators/dtdvalidator.cc:
* libxml++/validators/validator.cc:
Put LIBXMLCPP_EXCEPTIONS_ENABLED ifdefs around uses of
try, catch, and throw, so that libxml++ can build with
CXXFLAGS=-fno-exceptions. However, we might still
need some alternative error checking API.
svn path=/trunk/; revision=159
2007-07-30 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=158
2007-07-30 Stef Walter <stef@memberwebs.com>
Added get_attribute_value(), to get a simple text value for an attribute,
2007-07-30 Stef Walter <stef@memberwebs.com>
* libxml++/nodes/element.cc:
* libxml++/nodes/element.h: Added get_attribute_value(),
to get a simple text value for an attribute, as a
convenience.
2007-07-30 Murray Cumming <murrayc@murrayc.com>
* docs/reference/Doxyfile.in: Added newin2p18,
newin2p20, and newin2p22 tags.
This is the trunk branch for libxml++ 2.19/2.20.
See also the gnome-2-18 branch.
svn path=/trunk/; revision=157
2007-07-30 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=155
2007-07-25 Christophe de Vienne <cdevienn@src.gnome.org>
Fixed bug #447535
svn path=/trunk/; revision=154
2007-06-10 Murray Cumming <murrayc@murrayc.com>
Avoid accessing freed memory when the text nodes are merged by
2007-06-10 Murray Cumming <murrayc@murrayc.com>
* libxml++/document.cc:
* libxml++/nodes/element.cc: Avoid accessing freed memory
when the text nodes are merged by xmlAddChild().
svn path=/trunk/; revision=153
2007-03-05 Murray Cumming <murrayc@src.gnome.org>
Increased version
svn path=/trunk/; revision=152
2007-02-10 Murray Cumming <murrayc@murrayc.com>
Use std::string for file paths, because we can not know the encoding of
2007-02-10 Murray Cumming <murrayc@murrayc.com>
* examples/dom_parse_entities/main.cc:
* examples/dom_parser/main.cc:
* examples/dom_parser_raw/main.cc:
* examples/dom_read_write/main.cc:
* examples/dom_xpath/main.cc:
* examples/dtdvalidation/main.cc:
* examples/sax_parser/main.cc:
* examples/sax_parser_build_dom/main.cc:
* examples/sax_parser_entities/main.cc: Use std::string for file paths,
because we can not know the encoding of file paths. std::string therefore
means unknown encoding.
svn path=/trunk/; revision=151
2007-02-06 Artur Wegele <a.wegele@web.de>
Check for _MSC_VER instead of WIN32 before setting MSVC++ pragmas, because
2007-02-06 Artur Wegele <a.wegele@web.de>
* libxml++/parsers/parser.h:
* libxml++/validators/validator.h: Check for _MSC_VER instead
of WIN32 before setting MSVC++ pragmas, because that is apparently
more reliable. Bug #380110.
svn path=/trunk/; revision=150
2006-12-21 Murray Cumming <murrayc@src.gnome.org>
Increase version
2006-11-17 Stefan Walter <stefw@src.gnome.org>
Node::get_next_sibling(), Node::get_previous_sibling(). Bug #351867
* libxml++/nodes/node.cc:
* libxml++/nodes/node.h: Node::get_next_sibling(),
Node::get_previous_sibling(). Bug #351867
2006-11-17 Stefan Walter <stefw@src.gnome.org>
libxml++/parsers/textreader.cc Clean up TextReader() data constructor
* libxml++/parsers/textreader.cc
* libxml++/parsers/textreader.h: Clean up TextReader() data
constructor signature. Removed '-1' as a special null terminated
value. This brings it inline with other parsers.
2006-11-17 Murray Cumming <murrayc@src.gnome.org>
Increased version
2006-11-11 Stefan Walter <stefw@src.gnome.org>
Element::set_attribute(): Fix redeclaration of variable in if-block. Bug
* libxml++/nodes/element.cc: Element::set_attribute():
Fix redeclaration of variable in if-block. Bug #361950
2006-11-11 Stefan Walter <stefw@src.gnome.org>
libxml++/parsers/textreader.cc TextReader() can now parse memory buffers
* libxml++/parsers/textreader.cc
* libxml++/parsers/textreader.h: TextReader() can now parse memory
buffers as well as files. Bug #351215
2006-11-11 Nate Nielsen <nielsen@memberwebs.com>
Add Node::get_parent() Bug #351876
2006-11-11 Nate Nielsen <nielsen@memberwebs.com>
* libxml++/nodes/node.cc:
* libxml++/nodes/node.h: Add Node::get_parent() Bug #351876
2006-04-24 Cedric Gustin <cedric.gustin@gmail.com>
Disable autoheader. New file. Added comments about the difference between
2006-04-24 Cedric Gustin <cedric.gustin@gmail.com>
* configure.in: Disable autoheader.
* config.h.in: New file. Added comments about the difference
between config.h.in and libxml++config.h.in.
2006-04-21 Cedric Gustin <cedric.gustin@gmail.com>
Added libxml++config.h.in to EXTRA_DIST.
2006-04-21 Cedric Gustin <cedric.gustin@gmail.com>
* libxml++/Makefile.am: Added libxml++config.h.in to EXTRA_DIST.
2006-04-21 Cedric Gustin <cedric.gustin@gmail.com>
Updated for Visual Studio 2005. Added the /vd2 compiler flag (Bug
2006-04-21 Cedric Gustin <cedric.gustin@gmail.com>
* MSVC_Net2003/*.vcproj: Updated for Visual Studio 2005. Added the
/vd2 compiler flag (Bug #158040). Renamed target DLL to
xml++-2.6 to comply to the value returned by "pkg-config --libs
--msvc-syntax libxml++-2.6".
* MSVC_Net2003/libxml++.sln: Updated for Visual Studio 2005.
* MSVC_Net2003/gendef/gendef.cc: Redirect output of dumpbin to a
file.
* MSVC_Net2003/libxml++/Makefile.am: Get a local copy of the
libxml++config.h file created at configure time and distribute it
in the source tarball.
* libxml++/Makefile.am: Add -DLIBXMLPP_BUILD to the DEFS compiler
flags (switch between dllexport/dllimport on win32). Also install
libxml++config.h to $(prefix)/lib/libxml++-2.6/include.
* libxml++/*/*.Makefile.am: Add -DLIBXMLPP_BUILD to the DEFS
compiler flags (switch between dllexport/dllimport on win32).
* libxml++/exceptions/exception.h: Tag the xmlpp:exception classs
with LIBXMLPP_API to get rid of auto-import errors on win32
(mingw32/cygwin).
* libxml++/libxml++config.h.in: New file. Define LIBXMLPP_API and
switch between dllimport and dllexport on win32.
* libxml++-2.6.pc.in: Add ${libdir}/libxml++-2.6/include to Cflags
(for libxml++config.h).
* configure.in: Added test for a native win32 platform. Use the
ms-bitfields on this platform only. Added the libxml++config.h
configuration file.
2006-03-13 Christophe de Vienne <cdevienne@netcourrier.com>
Updated version number
2006-03-13 Christophe de Vienne <cdevienne@netcourrier.com>
* docs/index.html: Updated version number
2006-03-13 Christophe de Vienne <cdevienne@netcourrier.com>
Prepared release 2.14.0
2006-03-13 Christophe de Vienne <cdevienne@netcourrier.com>
* NEWS, configure.in: Prepared release 2.14.0
2006-03-08 Murray Cumming <murrayc@murrayc.com>
get_content() documentation: Replace the TODO because I know know that
2006-03-08 Murray Cumming <murrayc@murrayc.com>
* libxml++/nodes/contentnode.h: get_content() documentation:
Replace the TODO because I know know that apos is the fifth
predefined entity.
set_content(): Mention that the predefined entities are used
_where necessary_ because XML does not require use of quot or
apos in text nodes - just in attribute values.
2006-01-14 Murray Cumming <murrayc@src.gnome.org>
increase version
2005-12-20 Murray Cumming <murrayc@src.gnome.org>
Fix typo.
2005-12-20 Murray Cumming <murrayc@murrayc.com>
Mention pkg-config.
2005-12-20 Murray Cumming <murrayc@murrayc.com>
* docs/manual/libxml++_without_code.xml: Mention pkg-config.
2005-12-16 Murray Cumming <murrayc@murrayc.com>
Minor grammar fixes in documentation. Correct find() documentation
2005-12-16 Murray Cumming <murrayc@murrayc.com>
* libxml++/document.h: Minor grammar fixes in documentation.
* libxml++/nodes/node.h: Correct find() documentation slightly.
2005-12-15 Robert Fleming <fleming@cs.washington.edu>
Add find() overload that takes namespaces to register, using
2005-12-15 Robert Fleming <fleming@cs.washington.edu>
* libxml++/nodes/node.cc:
* libxml++/nodes/node.h: Add find() overload that
takes namespaces to register, using xmlXPathRegisterNs().
Bug #323935.
2005-12-15 Murray Cumming <murrayc@murrayc.com>
set_namespace(): Pass 0 to xmlSearchNs() for empty (default) namespaces,
2005-12-15 Murray Cumming <murrayc@murrayc.com>
* libxml++/nodes/node.cc: set_namespace(): Pass 0 to
xmlSearchNs() for empty (default) namespaces, instead of
an empty string, as we do elsewhere. This makes
Document::create_root_node() for when not specifying a
namespace. Bug #318186 from Erik Oestby.
2005-12-15 Vadim Zeitlin <vadim@wxwindows.org>
Fix paths so buildir!=srcdir builds work. Bug #319863.
2005-12-15 Vadim Zeitlin <vadim@wxwindows.org >
* docs/reference/Doxyfile.in: Fix paths so buildir!=srcdir
builds work. Bug #319863.
2005-10-03 Christophe de Vienne <cdevienn@src.gnome.org>
file defaultmake.inc was initially added on branch LIBXMLPP_BRANCH_1_0.
2005-10-03 Christophe de Vienne <cdevienn@src.gnome.org>
file libxmlpp_generic.mak was initially added on branch LIBXMLPP_BRANCH_1_0.
2005-10-03 Christophe de Vienne <cdevienn@src.gnome.org>
file makefile was initially added on branch LIBXMLPP_BRANCH_1_0.
2005-10-03 Christophe de Vienne <cdevienn@src.gnome.org>
file readme.txt was initially added on branch LIBXMLPP_BRANCH_1_0.
2005-09-21 Christophe de Vienne <cdevienne@netcourrier.com>
Fixed include and .pc paths. Fixes #316827.
2005-09-21 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++.spec.in: Fixed include and .pc paths. Fixes #316827.
2005-09-08 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared 2.12 release.
2005-08-26 Christophe de Vienne <cdevienne@gmail.com>
Added xmlReadState "Reading" as suggested by Sebastian Moss.
2005-08-26 Christophe de Vienne <cdevienne@gmail.com>
* libxml++/parsers/textreader.h: Added xmlReadState "Reading" as
suggested by Sebastian Moss.
2005-08-24 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared release 2.11.0
2005-08-24 YS <yselkowitz@users.sourceforge.net>
Changed link order to solve a link issue on cygwin. Bug #314419.
2005-08-25 YS <yselkowitz@users.sourceforge.net>
* libxml++/Makefile.am: Changed link order to solve a link issue
on cygwin. Bug #314419.
2005-06-13 Marek Rouchal <marek.rouchal@infineon.com>
Remove extra ;s. Bug #307481
2005-06-13 Marek Rouchal <marek.rouchal@infineon.com>
* libxml++/io/istreamparserinputbuffer.cc:
* libxml++/io/istreamparserinputbuffer.h:
* libxml++/io/parserinputbuffer.cc:
* libxml++/io/parserinputbuffer.h: Remove extra ;s.
Bug #307481
2005-05-15 Murray Cumming <murrayc@src.gnome.org>
Fixed the ChangeLog duplication.
2005-05-15 Murray Cumming <murrayc@murrayc.com>
Add comments about possibly deriving this from Node, though it needs
2005-05-15 Murray Cumming <murrayc@murrayc.com>
* libxml++/document.h: Add comments about possibly deriving this
from Node, though it needs investigation, and we can not do this
in the stable API.
* libxml++/nodes/node.cc: get_namespace(), get_namespace_prefix():
Return an empty string if the node is actually a Document, because
the underlying xmlDocument struct has no ns field. This should
prevent the crash in bug #161825.
2005-05-15 Murray Cumming <murrayc@murrayc.com>
Add link to the LGPL text.
2005-05-15 Murray Cumming <murrayc@murrayc.com>
* docs/index.html: Add link to the LGPL text.
2005-04-24 Murray Cumming <murrayc@murrayc.com>
parse_context(): Delete the context after, not before, checking it for an
2005-04-24 Murray Cumming <murrayc@murrayc.com>
* libxml++/parsers/domparser.cc: parse_context():
Delete the context after, not before, checking it for an error.
Bug #156352 from Jim Garrison.
2005-04-24 Murray Cumming <murrayc@murrayc.com>
SaxParserCallback::characters() Call on_characters(), not
2005-04-24 Murray Cumming <murrayc@murrayc.com>
* libxml++/parsers/saxparser.cc: SaxParserCallback::characters()
Call on_characters(), not on_cdata_block(), so that the correct
derived handler is called. Bug #301712 and patch from
Aaron Walker.
2005-04-24 Murray Cumming <murrayc@murrayc.com>
Remove -I for the include location of a config file, because we don't
2005-04-24 Murray Cumming <murrayc@murrayc.com>
* libxml++-2.6.pc.in: Remove -I for the include location of
a config file, because we don't install one. Bug #301727
from Aaron Walker.
2005-03-15 Murray Cumming <murrayc@murrayc.com>
set_entity_declaration(): Pass 0 instead of empty strings for the public
2005-03-15 Murray Cumming <murrayc@murrayc.com>
* libxml++/document.cc: set_entity_declaration(): Pass 0 instead
of empty strings for the public ID and system ID, if an empty
string is provided. This stops libxml from using a useless empty
string.
2005-03-09 Cedric Gustin <cedric.gustin@swing.be>
Add blank.cpp to EXTRA_DIST. Change name of PDB file to
2005-03-09 Cedric Gustin <cedric.gustin@swing.be>
* MSVC_Net2003/Makefile.am: Add blank.cpp to EXTRA_DIST.
* MSVC_Net2003/examples/*/*.vcproj: Change name of PDB file to
$(OutDir)/$(TargetName).pdb.
2005-03-08 Christophe de Vienne <cdevienn@src.gnome.org>
Updated API ref.
2005-03-08 Christophe de Vienne <cdevienne@netcourrier.com>
Added one more rule so the "make distcheck" works from a clean cvs working
2005-03-08 Christophe de Vienne <cdevienne@netcourrier.com>
* docs/reference/Makefile.am: Added one more rule so the "make distcheck"
works from a clean cvs working copy.
2005-03-08 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared release 2.10
2005-03-08 Christophe de Vienne <cdevienne@netcourrier.com>
Added a few rules so that "make dist" generated the documentation if it's
2005-03-08 Christophe de Vienne <cdevienne@netcourrier.com>
* docs/manual/Makefile.am, docs/reference/Makefile.am: Added a few rules
so that "make dist" generated the documentation if it's absent.
2005-02-15 Murray Cumming <murrayc@murrayc.com>
Added insert_example_code to EXTRA_DIST, though it should not be needed
2005-02-15 Murray Cumming <murrayc@murrayc.com>
* docs/manual/Makefule.am: Added insert_example_code to EXTRA_DIST,
though it should not be needed when building from a DIST anyway,
because we distribute the html.
2005-02-13 Christophe de Vienne <cdevienne@netcourrier.com>
Removed README from EXTRA_DIST.
2005-02-13 Christophe de Vienne <cdevienne@netcourrier.com>
* docs/manual/Makefile.am: Removed README from EXTRA_DIST.
2005-02-11 Christophe de Vienne <cdevienne@netcourrier.com>
Fixed a little inefficency in find (#161925)
2005-02-12 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/nodes/node.cc: Fixed a little inefficency in find (#161925)
2005-02-11 Christophe de Vienne <cdevienn@src.gnome.org>
Increased version.
2005-02-11 Murray Cumming <murrayc@murrayc.com>
Added manual. Use GLIBMM_CHECK_PERL to get the perl path, needed to insert
2005-02-11 Murray Cumming <murrayc@murrayc.com>
* docs/: Added manual.
* configure.in: Use GLIBMM_CHECK_PERL to get the perl path, needed
to insert the example code in the manual.
* docs/Makefile.am: Move the reference and manual into a docs folder
so that the docs and the examples have the same relative path.
* docs/index.html: Mention the manual and update the links.
2005-02-11 Murray Cumming <murrayc@murrayc.com>
do_write_to_string(): libml returns the number of bytes instead of the
2005-02-11 Murray Cumming <murrayc@murrayc.com>
* libxml++/document.cc: do_write_to_string(): libml returns the
number of bytes instead of the number of characters, so use the
appropriate ustring constructor, to avoid an exception later.
Bug found by Cyril Picard.
* docs/reference/Makefile.am: Install the reference documentation.
Distribute the built reference documentatoin, and Do not rebuild it
every time.
* docs/reference/Doxyfile.in: Generate doxygen tags so that other
documentation can link to the libxml++ documentation. Use the
libstdc++ and glibmm doxygen tags to link to their documentation,
for instance for Glib::ustring.
2005-01-27 Cedric Gustin <cedric.gustin@swing.be>
Updated for 2.8.0.
2005-01-26 Cedric Gustin <cedric.gustin@swing.be>
* MSVC_Net2003/README: Updated for 2.8.0.
2005-01-26 Cedric Gustin <cedric.gustin@swing.be>
parse micro version tags at configure time (for libxml++.rc). Added
2005-01-26 Cedric Gustin <cedric.gustin@swing.be>
* configure.in : parse micro version tags at configure time (for
libxml++.rc). Added support for shared libraries (DLL) on
win32. Added MSVC_Net2003 Makefiles.
* Makefile.am: Added MSVC_Net2003 subdir.
* libxml++/Makefile.am: Added linker flags for shared libraries
(DLL) on win32.
* examples/Makefile.am_fragment: Removed trailing slash in INCLUDES.
* MSVC_Net2003/*: Initial release.
2004-12-25 Murray Cumming <murrayc@src.gnome.org>
Increase version
2004-12-25 Murray Cumming <murrayc@murrayc.com>
Added parse_memory_raw() for libxml documents that are not utf8-encoded or
2004-12-25 Murray Cumming <murrayc@murrayc.com>
* libxml++/parsers/domparser.[h|cc], saxparser.[h|cc]: Added
parse_memory_raw() for libxml documents that are not utf8-encoded or
are encoded in an unknown encoding.
* examples/: Added dom_parser_raw() to test parsing of UCS2-encoded
text.
2004-12-20 Murray Cumming <murrayc@murrayc.com>
This is the HEAD branch, for gnome 2.9/2.10.
2004-12-20 Murray Cumming <murrayc@murrayc.com>
* This is the HEAD branch, for gnome 2.9/2.10.
2004-12-18 Murray Cumming <murrayc@murrayc.com>
Node::find(): Check the result of xmlXPathEval and throw an exception
2004-12-18 Murray Cumming <murrayc@murrayc.com>
* libxml++/nodes/node.cc: Node::find(): Check the result of
xmlXPathEval and throw an exception about invalid xpaths, instead of
crashing. Bug #161549 from Caleb Epstein.
2004-12-18 Murray Cumming <murrayc@murrayc.com>
parse_memory(), parse_chunk(), domparser.cc: parse_memory, parse_chunk():
2004-12-18 Murray Cumming <murrayc@murrayc.com>
* libxml++/parsers/saxparser.cc: parse_memory(), parse_chunk(),
domparser.cc: parse_memory, parse_chunk(): Use Glib::ustring::bytes()
to get the size of the array, not size() or length(), which gets
the number of utf8 characters. It might not even be utf8.
size() > 0. It is more efficient.
2004-11-30 Murray Cumming <murrayc@murrayc.com>
Removed an extra ; that g++ 3.4 complains about.
2004-11-30 Murray Cumming <murrayc@murrayc.com>
* libxml++/validator.h: Removed an extra ; that g++ 3.4 complains
about.
2004-11-29 Murray Cumming <murrayc@src.gnome.org>
I forgot to commit this NEWS change, I think.
2004-09-14 Christophe de Vienne <cdevienn@src.gnome.org>
Changed the .so version number from GENERIC_LIBRARY_VERSION=2:1:1 to
Changed the .so version number from
GENERIC_LIBRARY_VERSION=2:1:1
to
GENERIC_LIBRARY_VERSION=2:1:0
to avoid re-linking issues. cf
http://sourceforge.net/mailarchive/forum.php?thread_id=5559194&forum_id=12784
for more informations.
2004-09-14 Christophe de Vienne <cdevienn@src.gnome.org>
Don't exclude 2.6/* anymore.
2004-09-14 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared release 2.8
2004-09-13 Christophe de Vienne <cdevienn@src.gnome.org>
Added some clarifications on the LGPL license.
2004-09-12 Murray Cumming <murrayc@murrayc.com>
Add include for xmlreader.h. Correct (and uncomment) the code to read the
2004-09-12 Murray Cumming <murrayc@murrayc.com>
* libxml++/libxml++.h: Add include for xmlreader.h.
* examples/saxparser/myparser.cc, saxparser_entities/myparser.cc:
Correct (and uncomment) the code to read the attribute values.
2004-09-06 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared release 2.7.1
2004-08-13 Christophe de Vienne <cdevienne@netcourrier.com>
Fixed bug #150082.
2004-08-13 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/domparser.cc, libxml++/parsers/parser.cc: Fixed
bug #150082.
2004-07-02 Christophe de Vienne <cdevienn@src.gnome.org>
Added 2.7.0 tag.
2004-06-24 Murray Cumming <murrayc@.com>
Reverted the changes that made it install a 2.8 pc.in file, and which
2004-06-24 Murray Cumming <murrayc@.com>
* configure.in, Makefile.am, libxml++-2.*.pc.in: Reverted the changes
that made it install a 2.8 pc.in file, and which decreased the .so
name. 2.8 is not parallel-installable with 2.6, and this would only
have been a half-done transition if it was.
2004-06-22 Murray Cumming <murrayc@murrayc.com>
Added include of libxml/globals.h before include of libxml/xmlIO.h,
2004-06-22 Murray Cumming <murrayc@murrayc.com>
* libxml++/io/outputbuffer.cc, inputbuffer.cc:
Added include of libxml/globals.h before include of libxml/xmlIO.h,
because xmlIO.h needs the definition of
xmlParserInputBufferCreateFilenameFunc.
2004-05-28 Christophe de Vienne <cdevienne@netcourrier>
Integrated dtdvalidator patch proposed by Guillaume Arreckx. Modified a
2004-05-28 Christophe de Vienne <cdevienne@netcourrier>
* configure.in, examples/Makefile.am, examples/dtdvalidation/Makefile.am,
examples/dtdvalidation/example.dtd, examples/dtdvalidation/main.cc,
libxml++/Makefile.am, libxml++/dtd.[h|cc], libxml++/io/Makefile.am,
libxml++/io/istreamparserinputbuffer.[h|cc],
libxml++/io/parserinputbuffer.[h|cc],
libxml++/libxml++.h, libxml++/validators/Makefile.am,
libxml++/validators/dtdvalidator.[h|cc]
libxml++/validators/validator.[h|cc]:
Integrated dtdvalidator patch proposed by Guillaume Arreckx.
Modified a bit the patch:
- renamed *.cpp -> *.cc
- fixed a few comments which where copy/paste from other files
- replaced std::string with Glib::ustring
- Added Dtd::cobj, since the patch rely on it.
- added a validaty_error as suggested by jon
2004-05-06 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared HEAD branch for version 2.7/2.8.
2004-05-05 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared 2.6.1 release.
2004-05-05 Christophe de Vienne <cdevienn@src.gnome.org>
Completed for 2.6.1 release.
2004-05-05 Christophe de VIENNE <cdevienne@netcourrier.com>
Fixed set_content which used xmlNodeAddContent instead of
2004-04-26 Christophe de VIENNE <cdevienne@netcourrier.com>
* libxml++/nodes/contentnode.cc: Fixed set_content which used xmlNodeAddContent
instead of xmlNodeSetContent (thanks to Marcello Orizi who outlined it).
2004-05-05 Christophe de Vienne <cdevienne@netcourrier.com>
One more (last one I hope) change about Glib::ustring instanciation from a
2004-05-05 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/saxparser.cc: One more (last one I hope) change
about Glib::ustring instanciation from a buffer + lenght. We now
use Glib::ustring::ustring(In begin, In end) constructor. Thanks to
Jonathan Wakely.
2004-05-04 Christophe de Vienne <cdevienne@netcourrier.com>
Replaced again the use of Glib::ustring(const char*) constructor by
2004-05-03 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/saxparser.cc: Replaced again the use of
Glib::ustring(const char*) constructor by Glib::ustring(std::string).
Fixes #141824.
2004-05-04 Christophe de Vienne <cdevienn@src.gnome.org>
*** empty log message ***
2004-05-04 Christophe de Vienne <cdevienne@netcourrier.com>
Replace the use of Glib::ustring(const char*, unsigned) constructor by
2004-05-03 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/saxparser.cc: Replace the use of
Glib::ustring(const char*, unsigned) constructor by Glib::ustring(const char*).
Fixes #141824.
2004-05-04 Murray Cumming <murrayc@murrayc@com>
Made it require glibmm-2.4, so that apps do not have to check for this
2004-05-04 Murray Cumming <murrayc@murrayc@com>
* libxml++-2.6.pc.in: Made it require glibmm-2.4, so that apps do not
have to check for this themselves.
2004-04-13 Murray Cumming <murrayc@murrayc.com>
Change library name to 2.6 instead of 2.5. Report the changed library
2004-04-13 Murray Cumming <murrayc@murrayc.com>
* libxml++/Makefile.am: Change library name to 2.6 instead of 2.5.
* libxml++-2.6.pc.in: Report the changed library name.
2004-04-13 Christophe de Vienne <cdevienn@src.gnome.org>
Updated to 2.6.0.
2004-04-13 Christophe de Vienne <cdevienn@src.gnome.org>
Updated dependencies and reference documentation links.
2004-04-13 Christophe de Vienne <cdevienn@src.gnome.org>
Switched to version 2.6. Reset library version.
2004-04-13 Christophe de Vienne <cdevienn@src.gnome.org>
Adapted Doxyfile to more recent version of Doxygen. The documentation is now published in a versionned directory on the website.
2004-03-27 Murray Cumming <murrayc@murrayc.com>
Correct constness of get_current_node(), so there is a const and non-const
2004-03-27 Murray Cumming <murrayc@murrayc.com>
* libxml++/parsers/textreader.[h|cc]: Correct constness of
get_current_node(), so there is a const and non-const version.
2004-03-03 Christophe de Vienne <cdevienn@src.gnome.org>
file api_export.h was initially added on branch LIBXMLPP_BRANCH_1_0.
2004-03-02 Christophe de Vienne <cdevienn@src.gnome.org>
Prepared release 2.5.2 (2.6.0 beta1)
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
Check return value of xmlHasNsProp to fix issue #134390 (as reported by
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
* libxml++/nodes/element.cc: Check return value of xmlHasNsProp to
fix issue #134390 (as reported by John Coyle). Use xmlHasProp instead
of testing each attributes.
2004-02-16 Christophe de Vienne <cdevienn@src.gnome.org>
Changed two remaining 1.0 to 2.6.
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
Added libxml-2.0 to Requires: and removed @LIBXML_LIBS@ from libs, as
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
* libxml++-2.6.pc.in: Added libxml-2.0 to Requires: and removed
@LIBXML_LIBS@ from libs, as suggested by Albert Chin.
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
Merged in patches from Albert Chin to get libxml++ build using the SUN,
2004-02-16 Christophe de VIENNE <cdevienne@netcourrier.com>
* libxml++/nodes/node.cc, libxml++/parsers/parser.h:
Merged in patches from Albert Chin to get libxml++ build using the SUN,
HP, SGI & AIX C++ compilers.
2004-02-13 Jim Garrison <garrison@case.edu>
Removed unnecessary semicolons
2004-02-13 Jim Garrison <garrison@case.edu>
* libxml++/attribute.h, libxml++/document.h, libxml++/dtd.h,
libxml++/io/ostreamoutputbuffer.[h|cc],
libxml++/io/outputbuffer.[h|cc], libxml++/keepblanks.[h|cc],
libxml++/nodes/node.h, libxml++/parsers/parser.h,
libxml++/parsers/saxparser.h, libxml++/parsers/textreader.[h|cc]:
Removed unnecessary semicolons
2004-02-13 Jim Garrison <garrison@src.gnome.org>
added cvsignore files
2004-02-13 Christophe de Vienne <cdevienn@src.gnome.org>
Makefile of examples/textreader was forgotten in last commit.
2004-02-09 Murray Cumming <murrayc@src.gnome.org>
Corrected my email address, though I'm not really a libxml++ maintainer.
2004-02-09 Christophe de Vienne <cdevienn@src.gnome.org>
prepared release 2.5.1
2004-02-09 Jim Garrison <garrison@case.edu>
added Document::cobj() function
2004-02-08 Jim Garrison <garrison@case.edu>
* libxml++/document.[h|cc]: added Document::cobj() function
2004-02-06 Christophe de Vienne <cdevienne@netcourrier.com>
Fixed issue #132014.
2004-02-06 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/sax_parser.cc: Fixed issue #132014.
2004-02-06 Christophe de Vienne <cdevienne@netcourrier.com>
Added TextReader interface. It is almost the patch which is here :
2004-02-06 Christophe de Vienne <cdevienne@netcourrier.com>
* libxml++/parsers/[Makefile.am|textreader.h|textreader.cc]: Added
TextReader interface. It is almost the patch which is here :
http://sourceforge.net/tracker/index.php?func=detail&aid=842730&group_id=12999&atid=312999
with Glib::ustring instead of std::string, and member functions names
changed to be consistent with other interfaces.
* configure.in, examples/Makefile.am, examples/textreader: Added an example
of TextReader interface.
2004-02-05 Jim Garrison <garrison@case.edu>
added create_root_node_by_import()
2004-02-05 Jim Garrison <garrison@case.edu>
* libxml++/document.[h|cc]: added create_root_node_by_import()
2004-01-13 Christophe de Vienne <cdevienne@alphacent.com>
Gives NULL strings instead of empty ones to xmlCreateIntSubset. Fixes
2004-01-13 Christophe de Vienne <cdevienne@alphacent.com>
* libxml++/io/document.cc: Gives NULL strings instead of empty ones to
xmlCreateIntSubset. Fixes issue #131329.
2004-01-12 Christophe de Vienne <cdevienne@alphacent.com>
* libxml++/io/outputbuffer.cc: Fix return value of xmlIO callbacks. (Fixes
issue #131018).
2003-12-19 Murray Cumming <murrayc@usa.net>
Added glibmm-2.4 to the pkg-config check. :string/Glib::ustring rename.
2003-12-19 Murray Cumming <murrayc@usa.net>
* configure.in: Added glibmm-2.4 to the pkg-config check.
* Used regexxer to do a complete std::string/Glib::ustring rename.
Everything seems to still work. I think the parse_chunk(stream)
stuff might need some attention/thought.
2003-12-19 Murray Cumming <murrayc@usa.net>
libxml++ has moved to the GNOME cvs.
2003-12-19 Murray Cumming <murrayc@usa.net>
* modulesets/gnome26.modules: libxml++ has moved to the GNOME cvs.
2003-12-19 Murray Cumming <murrayc@usa.net>
removed acinclude.m4 because we do not need it anymore because we do not
2003-12-19 Murray Cumming <murrayc@usa.net>
* removed acinclude.m4 because we do not need it anymore because
we do not need AM_LIBXML now that we use pkg-config.
* libxml++/Makefile.am: Generate a library with 2.5 in the name,
instead of 1.0
* configure.in: Change version to 2.5.0.
* examples/Makefile.am_fragment: Link to the new library name.
* Renamed libxml++-1.0.pc.in to libxml++-2.6.pc.in: and changed the
library name that pkg-config reports for --libs.
* So, this is now the libxml++ 2.6 API, with a library name of 2.5
while it is unstable. It is parallel-installable with libxml++ 1.0.
2003-12-18 Christophe de Vienne <cdevienn@src.gnome.org>
updated CVS repositery and bugtracker url.
2003-12-18 Christophe de Vienne <cdevienn@src.gnome.org>
Initial import into gnome CVS repositery
2003-12-18 Christophe de Vienne <cdevienn@src.gnome.org>
Initial revision
|