1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
|
Tue Aug 19 00:38:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/Makefile.am libxslt/libxslt.h libxslt/numbersInternals.h
libexslt/*.c configure.in: applied patch from Mikhail Grushinskiy
for compilation with MingW compiler on Windows.
Mon Aug 18 14:42:12 HKT 2003 William Brack <wbrack@mmm.com.hk>
* keys.c: enhanced xsltInitCtxtKey to take care of multiple
instances of a key with the same namespace:name, reported
on the mailing list by Ian Young. Added regression test
(bug-128).
Thu Aug 15 13:00:02 HKT 2003 William Brack <wbrack@mmm.com.hk>
* variables.c: fixed bug 119699 (missing error on shadowed
variable)
* autogen.sh: removed dependency on automake-1.4, updated
links for fetching auto* tools
* doc/Makefile.am: added check for automatic regeneration of
win32/*.def.src when api xml files are updated.
Thu Aug 14 23:15:14 HKT 2003 William Brack <wbrack@mmm.com.hk>
* transform.c: fixed bug 114563 (params not passed when
default template processed)
Thu Aug 14 22:04:37 HKT 2003 William Brack <wbrack@mmm.com.hk>
* xslt.c: fixed bug 119862 (missing param on ns error print)
Sun Aug 10 00:21:48 CEST 2003 Daniel Veillard <daniel@veillard.com>
* News configure.in: preparing libxslt-1.0.32 release
* doc/* : updated the doc and rebuilt
Thu Aug 7 21:02:07 HKT 2003 William Brack <wbrack@mmm.com.hk>
* breakpoint/Makefile.am: removed ref to libxslt.la
* numbers.c transform.c python/libxml_wrap.h python/types.c
xlstproc/xsltproc.c: Minor cleanup of warning errors
Mon Aug 4 22:43:05 CEST 2003 Daniel Veillard <daniel@veillard.com>
* doc/libxslt-api.xml doc/* doc/html/*: revuilt the API and docs
Sun Aug 3 21:34:44 EDT 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-127.*
tests/general/Makefile.am tests/general/bug-127*: added the
test from bug #118763 to the regression suite.
Sun Aug 3 17:40:13 EDT 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: minor change, avoid wasting CPU cycles
Sun Aug 3 21:05:07 HKT 2003 William Brack <wbrack@mmm.com.hk>
Minor cleanup of regression test general/bug-125
Sun Aug 3 19:46:42 HKT 2003 William Brack <wbrack@mmm.com.hk>
Fixed bug 116517 - handling of '{' and '}'
* templates.c: added checks for escaping and balancing of
curly brackets
* tests/general/Makefile.am tests/docs/Makefile.am:
Added test case (bug-126) to regression suite.
Sun Aug 3 15:50:51 HKT 2003 William Brack <wbrack@mmm.com.hk>
Fixed bug 117552 - sort with multiple keys
* xsltutils.c: enhanced treatment of NaN when multiple sort
keys are specified.
* tests/general/Makefile.am tests/docs/Makefile.am:
Added test case (bug-125) to regression suite.
Sat Aug 2 09:55:38 HKT 2003 William Brack <wbrack@mmm.com.hk>
Fixing bug 118561 (IRIX MIPSPro compiler warnings)
* transform.c, variables.c, xslt.c, xsltutils.c:
removed some unused variables
Thu Jul 31 20:33:12 HKT 2003 William Brack <wbrack@mmm.com.hk>
Fixing bug 118558 (Solaris 8 compiler warnings)
* xslt.c: minor re-ordering of code
* functions.c: added an explicit cast
* number.c: added include for string.h
* security.c: added an explicit cast
Tue Jul 29 12:43:17 HKT 2003 William Brack <wbrack@mmm.com.hk>
* libexslt/date.c test/exslt/data/seconds.1 : changed sign
of date:seconds as previously posted to the mailing list
* numbers.c: extensive modification to cater for UTF8 within
the various routines.
Thu Jul 24 19:38:56 IST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: applied patch from Shaun McCance to fix bug
#117616 about EXST str:tokenize.
* tests/exslt/strings/Makefile.am tests/exslt/strings/tokenize.3.*:
added the test in the regression suite.
Wed Jul 23 21:57:39 IST 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: applying a patch based on #117377
for --path option.
Mon Jul 21 20:28:11 IST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: allow strip-space to support full namespaces
using prefix:* , should fix #114287
* tests/docs/Makefile.am tests/docs/bug-124.*
tests/general/Makefile.am tests/general/bug-124*: added a
test to the regression suite for this bug.
Mon Jul 21 20:09:57 IST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/tramsform.c: make xsl:copy on attribute a copy in case
the attribute was already defined, should fix bug #113812
* tests/docs/Makefile.am tests/docs/bug-123.*
tests/general/Makefile.am tests/general/bug-123*: added the
test to the regression suite.
Fri Jul 18 13:13:52 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: applied patch from Shaun McCance to implement
exslt:split c.f. #117752
* tests/exslt/strings/Makefile.am tests/exslt/strings/split.1.*:
added the test to the regression suite.
Thu Jul 17 10:35:22 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: quick fix for an HP-UX compilation problem,
might require more attention could be an Unicode support breakage.
Wed Jul 16 10:46:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c libxslt/transform.c libxslt/transform.h
libxslt/xsltInternals.h: optimize text node coalescing by
caching info about the last text node generated and doing
fast alloc/copy of the text. Should fix #115273
Mon Jul 14 13:00:00 HKT 2003 William Brack <wbrack@mmm.com.hk>
* fixed bug 113520, incorrect result for date:seconds
with change to type casting in libexslt/date.c
Sat Jul 12 20:35:28 HKT 2003 William Brack <wbrack@mmm.com.hk>
* fixed bug 114764: trouble with globals and RVT's
with minor changes in variables.c and transform.c
so that any global instantiated with an RVT gets
uninitialized when the RVT is destroyed.
Thu Jul 10 15:47:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: simple cast missing Peter Breitenlohner
* breakpoint/Makefile.am: added deps to libxslt
* tests/exslt/common/Makefile.am: integrated William Brack test
in the regression suite
Wed Jul 9 21:27:43 HKT 2003 William Brack <wbrack@mmm.com.hk>
* fixed bug 114812, trouble with imported exslt functions
added lookup function in libxslt/extension.c
enhanced exsltInitFunc in libexslt/functions.c to take
better care of imports
Wed Jul 9 12:19:34 CEST 2003 Daniel Veillard <daniel@veillard.com>
* python/generator.py python/libxslt-python-api.xml python/libxslt.c
python/libxslt_wrap.h python/libxsltclass.txt: patch from
Sean Treadway, adding Python bindings for extension element and
some bindings cleanups.
* python/tests/Makefile.am python/tests/extelem.py: also add an
example/test.
Tue Jul 8 12:20:11 CEST 2003 Daniel Veillard <daniel@veillard.com>
* python/libxml_wrap.h: applied patch from #116943 which should
fix the xsltSaveResultToFile python binding.
Mon Jul 7 11:03:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
* INSTALL: removed an old reference to libxml2 >= 2.2.12
Sun Jul 6 23:57:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
* configure.in: releasing 1.0.31
* doc/*: update and rebuild of the docs
Sun Jul 6 18:31:56 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #115913 for xsl:copy with namespace
nodes.
* tests/docs/Makefile.am tests/docs/bug-122.*
tests/general/Makefile.am tests/general/bug-122*: added the
test to the regression suite.
Sun Jul 6 18:09:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/preproc.c: fix bug #115778 for attribute value template
on xsl:sort order
Sun Jul 6 17:22:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/documents.c libxslt/transform.c: applied patch from
Keith Isdale to desactivate node numbering when running under
the debugger.
Sun Jul 6 00:00:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/security.c: fix the write checking code when
the output filename does not parse as an URL bug #115402
Sun Jun 22 19:38:04 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/Makefile.am: Albert Chin pointed out that trio.h and
triodef.h were missing from the distribution
Fri Jun 13 16:53:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in libexslt/Makefile.am libexslt/libexslt.3
libxslt/Makefile.am libxslt/libxslt.3: Moved the man pages
to section 3
* libexslt/sets.c: applied patch from Peter Breitenlohner
* doc/*: rebuilt the docs
* tests/docbook/result//* tests/xmlspec/*.html: changes in
generattion of " as " in element content.
Sun Jun 08 22:57:13 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* libxslt/transform.c: changed xsltChoose to ignore whitespace
which is a sibling of xsl:when
Sat May 31 17:18:21 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* libxslt/xslt.c: fixed a possible crash when the document
wasn't a proper stylesheet.
Tue May 20 12:14:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixes a 64bits cleanliness issue #113318
Sat May 17 13:25:32 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* win32/defgen.xsl: new file, generates the export sources.
* win32/*.def.src: these are now autogenerated, changes to these
will not be logged anymore.
Fri May 16 13:22:31 EDT 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-121.*
tests/general/Makefile.am tests/general/bug-121*: added the
example for bug #112904 in the regression tests, the bug fix is
actually in libxml2
Thu May 15 16:26:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: fixing portability bug #113002 on HP-UX
* configure.in libxslt.spec.in python/Makefile.am: cleanup
of --with-python like for libxml2
Thu May 15 11:45:00 HKT 2003 William Brack <wbrack@mmm.com.hk>
* libxslt/xsltutils.c: fixing bug #112995, a problem with
NaN within the sort element. Also added regression test.
Tue May 13 18:22:38 EDT 2003 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am: fixing bug #112803 , make sure to avoid
network accesses when building
Sat May 10 14:19:14 EDT 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed a segfault introduced with the RVT
handling change, bug #112703 .
Sat May 10 13:05:21 EDT 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: make sure stylesheet compilation errors
forces a NULL stylesheet, fixes #112270
Sun May 4 17:41:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
* NEWS configure.in : preparing release 1.0.30
* doc/apibuild.py: backported a patch from libxml2
* doc/*: updated and rebuilt the docs
Wed Apr 30 22:44:49 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
cleaning up Result Value Tree handling
* libexslt/functions.c libexslt/strings.c: fixed a pair of
implementations.
* tests/exslt/strings/Makefile.am tests/exslt/strings/tokenize.2.*:
added Mark Vakoc test combining for-each and exslt:tokenize
Wed Apr 30 15:23:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #111755 when a template is
applied to an attribute
* tests/docs/Makefile.am tests/docs/bug-119.*
tests/general/Makefile.am tests/general/bug-119*: added the
example in the regression tests for that bug.
Tue Apr 29 15:18:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am doc/libxslt.xml: upgraded to the XML/XSLT toolchain
for the HTML generation fixing #111799
* doc/html/*.html doc/html/*.png: associated update
Sun Apr 27 18:00:12 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* libxslt/variables.c: removed premature call to xsltFreeStackElem
* win32/libxslty.def.src: added more exports
Sun Apr 27 12:46:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
* NEWS doc/*.xsl doc/*.html: updated the web site, made the
transition to XHTML1 added validity checking to the makefile rules.
Sat Apr 26 14:00:58 CEST 2003 Daniel Veillard <daniel@veillard.com>
* python/generator.py: fixed a problem in the generator where
the way functions are remapped as methods on classes was
not symetric and dependant on python internal hash order,
as reported by Stéphane Bidoul
* libexslt/strings.c: attempt at fixing an object type pbm
* libxslt/triodef.h: update for OpenVMS from libxml2
Fri Apr 25 15:26:26 CEST 2003 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am doc/xsltproc.1 doc/xsltproc.xml: automated the
generation of the man page
Wed Apr 23 23:27:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/sets.c: fixed a bug introduced in the last commit
* libxslt/transform.c: tried to fix #111437
* tests/docbook/result/xtchunk/html/*.orig
tests/multiple/out/*.orig: side effect of #111437 change.
Wed Apr 23 22:41:08 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: applied last patch for #110023 from
Mark Vakoc
* libexslt/sets.c: fixed a memory leak when mixing one of the
EXSLT set functions and a Result Value Tree
* TODO: there are other bugs around in libexslt/sets.c in conjunction
with Result Value Tree
Wed Apr 23 17:00:16 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c: patch from Vasily Tchekalkin fixing
bug #111420 about double initialization of extension contexts
Wed Apr 23 14:25:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fix bug #110577 namespace in copy-of
don't obbey the same rules as for literal reusl elements.
* tests/docs/Makefile.am tests/docs/bug-118.*
tests/general/Makefile.am tests/general/bug-118*: added the
example in the regression tests for that bug.
* libxslt/variables.c: fixed a bug introduced in fixing #110020
* tests/docs/Makefile.am tests/docs/bug-11[67].*
tests/general/Makefile.am tests/general/bug-11[67]*: added 2
regression tests one still exposing a mem leak (Mark Vadoc).
Tue Apr 22 16:01:25 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fix a memory related segfault on a
pattern compilation error #110189
Tue Apr 22 15:45:25 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixing bug #110020 on global parameter
and variables mismatch
* tests/reports/Makefile.am tests/reports/cmdlineparams.*: added
the test to the regression suite
Mon Apr 21 12:22:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/math.c: applied patch from Charles Bozeman fixing
the math power function where args were inverted #110996
* tests/exslt/math/Makefile.am tests/exslt/math/power.1.*:
added the test to the regraession for #110996
* libexslt/sets.c: avoid a problem with nodesets.
Wed Apr 14 18:10:21 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* libxslt/win32config.h: added HAVE_MATH_H
Wed Apr 13 14:04:15 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
* win32/Makefile.msvc: fixed compilation with thread-enabled
libxml
Wed Apr 9 22:02:17 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: applied patch from Mark Vakoc fixing a problem
with RTF in libexslt
Mon Apr 7 14:39:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/keys.c libxslt/templates.c libxslt/transform.c
libxslt/variables.c: Fixes bug #110023 reported by Mark Vakoc and
other places where ctxt->document pointer may be used without
checking it agaisnt NULL.
* tests/docs/Makefile.am tests/docs/bug-115.*
tests/general/Makefile.am tests/general/bug-115*: added the
example in the regression tests for that bug.
* libxslt/trio.h libxslt/triodef.h: update of Trio from Bjorn Reese
Tue Apr 1 13:39:26 CEST 2003 Daniel Veillard <daniel@veillard.com>
* configure.in NEWS: preparing 1.0.29 release
* libxslt/documents.c: generate the document order for document()
loaded resources.
* doc/*: updated and regenerated the docs
Tue Apr 1 11:28:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed a namespace redundancy problem
in xsl:element
* tests/docs/Makefile.am tests/docs/bug-114.*
tests/general/Makefile.am tests/general/bug-114*: added an
example in the regression tests for that bug.
Fri Mar 28 12:19:35 CET 2003 Daniel Veillard <daniel@veillard.com>
* python/libxsl.py: fix bug #109395 as pointed out by Ben Phillips
and avoid some warnings when loading the python modules on non
Linux platforms.
* libxslt/transform.c: fix a bug introduced in the document lookup
and exhibited by the keys test.
Wed Mar 26 22:41:00 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-113.*
tests/general/Makefile.am tests/general/bug-113*: added an
example in the regression tests for bug #109160 fixed in libxml2
Wed Mar 26 21:43:30 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in python/Makefile.am python/libxslt.c libxslt/xsltutils.c
libxslt/trio.h libxslt/triodef.h: portability fixes from Albert Chin
* python/libxslt.py: avoid RTLD_GLOBAL detection warning too
Wed Mar 26 19:08:55 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: forgot to make one change related to
Result Value Tree change, pointed out by Sebastian Rahtz
* tests/docs/Makefile.am tests/docs/bug-112.*
tests/general/Makefile.am tests/general/bug-112*: added an
example in the regression tests that bug
Wed Mar 26 01:38:38 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: second part of the patch fixing #108905
performances problems, ask for computation of document order on
the document transformed and avoid inefficiencies building large
nodesets of unique nodes.
* configure.in: fix a trouble with libtool in my debug environment.
Mon Mar 24 22:30:00 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c libxslt/transform.c libxslt/variables.c:
Result Value Tree are now generated with a document root node
not an element, it's quite cleaner.
* configure.in libxslt.spec.in NEWS: But this requires libxml2-2.5.5
also prepared for libxslt-1.0.28 release
* doc/*: updated and regenerated the docs
Mon Mar 24 15:01:07 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c libxslt/transform.c libxslt/variables.c:
Finally fixed bug #75813, processing or Result Value Tree
converted into node-sets should be a bit more sensible now.
* tests/exslt/common/node-set.2.out: the associated fix in libxml2
fixes this regression test, there is 4 nodes, not 3
* tests/docs/Makefile.am tests/docs/bug-111.*
tests/general/Makefile.am tests/general/bug-111*: added an
example in the regression tests for bug #75813
Sun Mar 23 13:09:17 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-110.*
tests/general/Makefile.am tests/general/bug-110*: added an
example in the regression tests for bug #108976 which is
fixed in libxml2
Sat Mar 22 12:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-109.xml
tests/general/Makefile.am tests/general/bug-109*: added an
example in the regression tests for the invalid bug #108716
Sat Mar 22 12:01:24 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixed bug #108633 reported by
Jerome Pesenti about recursive global variables/param detections
* tests/reports/Makefile.am tests/reports/rec*: added regression
tests for the checking of recusion in global/local param/variables.
Fri Mar 7 16:08:24 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: valgrind pointed out an uninitialized
variable use in format-number()
Fri Mar 7 15:27:56 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-108.xml
tests/general/Makefile.am tests/general/bug-108*: added an
example in the regression tests bug #107804 fixed in libxml2
Wed Mar 5 12:47:31 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed bug #107591 node() in pattern
matches should catch comments and PIs
* tests/docs/Makefile.am tests/docs/bug-107.xml
tests/general/Makefile.am tests/general/bug-107*: added an
example in the regression tests for this case
Wed Feb 26 16:49:17 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-106.xml
tests/general/Makefile.am tests/general/bug-106*: added the next
example for bug #106788 from James Clark in the regression tests,
the bug fix is actually in libxml2
Tue Feb 25 16:19:45 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in doc/Makefile.am xsltproc/Makefile.am: some cleanup
for Python checks, makefile cleanup, and convenience changes
Mon Feb 24 23:49:01 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: had to comment out Igor last change
since it made libxslt-1.0.27 depends on libxml2 newly
API extension which hasn't propagated yet :-(
Mon Feb 24 22:21:09 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing release 1.0.27
* doc/*: updated and rebuilt the docs
Mon Feb 24 19:43:15 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/namespaces.c: fixed #106554 for spurious xmlns:nsX=""
generation
Sun Feb 23 14:52:57 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-105.xml
tests/general/Makefile.am tests/general/bug-105*: added the
example for bug #106788 from James Clark in the regression tests,
the bug fix is actually in libxml2
Sun Feb 23 14:25:13 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/namespaces.c libxslt/transform.c: fixed bug #106789 from
James Clark and a bit of cleanup
* tests/docs/Makefile.am tests/docs/bug-104.xml
tests/general/Makefile.am tests/general/bug-104*: added the
example in the regression tests for this case
Fri Feb 21 17:07:59 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in: fixed RH#84801 wrong prereqs in the spec file
Wed Feb 19 18:51:06 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
* libxslt/functions.c libxslt/xslt.c: fixed bug 106251
Wed Feb 19 15:52:33 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
* xsltproc/xsltproc.c: obsoleted xmlNormalizeWindowsPath
* win32/configure.js: included handling of the trio option
Mon Feb 10 17:34:32 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in doc/*: preparing release 1.0.26
Fri Feb 7 15:47:20 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: fixing another bug in document(), bug #105450
* tests/documents/test_bad.result: Slight change to the output
Fri Feb 7 15:34:24 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: fixing a segfault in document(), bug #105418
* tests/documents/Makefile.am tests/documents/test_bad: add the
specific test as suggested by Jean T Anderson
Fri Feb 7 14:18:40 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c libxslt/keys.c libxslt/pattern.c
libxslt/preproc.c libxslt/transform.c libxslt/variables.c
libxslt/xslt.c: tried to fix 105387 and all similar cases
in the library sources.
Wed Feb 5 16:04:10 CET 2003 Daniel Veillard <daniel@veillard.com>
* doc/* configure.in: preparing for release of 1.0.25
Wed Feb 5 00:07:43 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: fixed bug #99623
Tue Feb 4 22:10:17 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #105116 sometimes one need
to generate a default namespace reset xmlns="" in the output
* tests/docs/Makefile.am tests/docs/bug-103.xml
tests/general/Makefile.am tests/general/bug-103*: added the
example in the regression tests for this case
Tue Feb 4 18:39:35 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c libxslt/transform.c: changed the way the
root element of value tree are handled to fix bug #104123
Tue Feb 4 18:15:01 CET 2003 Daniel Veillard <daniel@veillard.com>
* README: change of policy w.r.t. mails
* configure.in: small cleanup
* libxslt/transform.c libxslt/xslt.c libxslt/variables.c: fixed
a couple of bugs raised by Eric van der Vlist in #104114
* tests/exslt/*/*.out: slight change to the tests
Tue Feb 4 17:18:54 CET 2003 Daniel Veillard <daniel@veillard.com>
* doc/xsltproc.1 doc/xsltproc.xml: fixing bug #104096, put
emphasis on the fact that --docbook should not be used
for XML.
Wed Jan 22 16:43:49 CET 2003 Daniel Veillard <daniel@veillard.com>
* python/libxslt.c: fixed a couple of return error #104150
reported by Peter O'Shea
Fri Jan 17 17:43:43 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: fixed a double free of stylesheet
when applied to a standalone stylesheet
Tue Jan 14 16:22:48 CET 2003 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing release 2.0.24
* libxslt.spec.in: small update
* doc/*: updated the news, rebuilt the APIs descriptions
Tue Jan 14 14:23:47 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: fixed #101502 by applying and cleaning up
the associated patch from Daniel Stodden.
* tests/documents/Makefile.am tests/documents/fragment*: added a
specific test.
Mon Jan 13 23:25:59 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c libxslt/transform.c: fixing bug #101602
for extension modules init and shutdown callbacks, check that
they are now called when needed.
* python/libxsl.py python/libxslt-python-api.xml python/libxslt.c:
started adding the extension module support at the Python level.
Still a strange bug to hunt down left.
Sun Jan 12 23:56:18 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/xsltInternals.h libxslt/imports.c
libxslt/xslt.c: fixed bug #101003 on attribute-sets value
computation in the presence of imports
* tests/docs/Makefile.am tests/docs/bug-102.xml
tests/general/Makefile.am tests/general/bug-102*: added an
example in the regression tests for this case
Fri Jan 10 10:34:23 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: final touch to #102800 fix
Thu Jan 9 18:17:40 CET 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: tried to fix #102800 for good. Reenabled
memory debug checking which got deactivated at some point ?!?
* libexslt/date.c libxslt/attributes.c: fixing some memory leaks
* libxslt/xsltutils.c: very small change on HTML indentation handling
Thu Jan 9 14:28:19 CET 2003 Daniel Veillard <daniel@veillard.com>
* tests/REC/test-8-1.xsl tests/REC/test-9.1-2.xsl
tests/general/bug-83.xsl tests/multiple/dict.xsl: added some
exclude-result-prefixes to avoid extra namespace declaration being
dumped following the fix for #102920 in libxml2
Wed Jan 8 12:33:47 CET 2003 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed a problem related to directory
checking and creation raised by Craig Goss
Thu Jan 2 23:23:30 CET 2003 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: applied patch from Jörg Walter to provide
URI escaping and unescaping functions.
Thu Dec 26 15:43:31 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/strings.c: Alexey Efimov found a typo bug in
exsltStrPaddingFunction()
Mon Dec 23 15:43:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt.c: patch from Stéphane Bidoul for Python 2.1
Sun Dec 22 22:54:04 CET 2002 Daniel Veillard <daniel@veillard.com>
* vms/build_xslt.com libxslt/xsltconfig.h.in libxslt/xsltutils.c:
applied patch from Craig A. Berry for the VMS port.
Wed Dec 18 15:41:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltInternals.h: increase the max number of cascaded
sort operations.
* AUTHORS doc/* win32/*: updated Igor's mail and the Web page for
the Windows binaries.
Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/libxslt.def.src: added more exports for Stephane Bidoul
Fri Dec 13 14:50:12 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/apibuild.py doc/libexslt-api.xml doc/libxslt-api.xml: updated
the apibuilder script, regenerated the APIs
Fri Dec 13 11:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: numbering should not traverse XInclude
nodes left in the tree. Closes bug #101114 raised by
Bernd Kuemmerlen
Thu Dec 12 01:17:09 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/apibuild.py: fixed a bug in merging public info from
C modules.
* win32/Makefile.msvc win32/configure.js: patch from Mark Vakoc
the iconv option to configure.js didn't work, and
added zlib option needed when linking xsltproc statically
Wed Dec 11 19:18:45 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am doc/apibuild.py doc/libexslt-api.xml: added
the generation of libexslt-api.xml
* libexslt/exslt.h: small cleanup.
Wed Dec 11 18:45:09 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am doc/apibuild.py doc/libxslt-api.xml:
copied over the apibuild.py from libxml2, adapted a bit and
regenerated the API description in XML. Todo: libexslt-api.xml
* libxslt/attributes.c libxslt/documents.c libxslt/extensions.c
libxslt/imports.c libxslt/numbers.c libxslt/numbersInternals.h
libxslt/pattern.c libxslt/preproc.c libxslt/security.c
libxslt/templates.c libxslt/transform.c libxslt/transform.h
libxslt/variables.c libxslt/xslt.c libxslt/xsltInternals.h
libxslt/xsltutils.c libxslt/xsltutils.h: cleanup based on the
report from the scripts.
* libxslt.spec.in: make sure libxslt-api.xml ends up in the devel
package
Thu Dec 5 18:05:44 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: xsl:element generated superfluous xmlns
declarations, closes bug #99905
* tests/docs/Makefile.am tests/docs/bug-101.xml
tests/general/Makefile.am tests/general/bug-101.*: added the
example in the regression tests for this case
Wed Dec 4 18:12:24 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: Matt Sergeant reported a bug when having comments
within an <xsl:text>
Mon Dec 2 17:19:38 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c: applied patch from Josh Parsons fixing bug
#100056
* tests/docs/Makefile.am tests/docs/bug-100.xml
tests/general/Makefile.am tests/general/bug-100.*: added the
example in the regression tests for this case
* tests/docs/Makefile.am tests/docs/bug-99.xml
tests/general/Makefile.am tests/general/bug-99.*: this test
covers an xsl:attribute namespace bug that Norm pointed out.
Thu Nov 28 17:52:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltInternals.h libxslt/xsltutils.c libxslt/xsltutils.h
win32/libxslt.def.src: applied another patch from Richard Jinks
for the export of teh sorting routine and allowing per context
sort.
Wed Nov 27 13:33:26 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/preproc.c libxslt/xsltInternals.h libxslt/xsltutils.c
libxslt/xsltutils.h: Applied patch from Richard Jinks to allow
redefining the sorting routine, plus a bit of tweaking of the
interfaces.
Tue Nov 26 16:02:38 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am doc/parsedecl.py: fixed the API generation
scripts.
* doc/libxslt-api.xml doc/libxslt-refs.xml: regenerated
* doc/html/*.html: updated too
* python/libxsltclass.txt: updated too
Tue Nov 26 15:17:13 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c libxslt/xsltutils.h: added the function
xsltGetProfileInformation() to retrieve profiling informations
from an XSLT transformation context. It returns it as an XML
tree. Provided by Michael Rothwell this closes RFE #99527
Tue Nov 26 14:40:45 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/imports.c: apply patch from Daniel Stodden, a bug
in xsltFindElemSpaceHandling() missing imported informations
* tests/REC/stand-2.7-1.stand.out: this change slightly the result
of this test.
Mon Nov 25 17:33:48 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/namespaces.c: fix for namespace generation on
attributes created with xsl:attribute
Mon Nov 25 17:30:02 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in configure.in: add a line in %changelog for releases
Mon Nov 25 14:57:53 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.h: Kir Kolyshkin pointed out it lacked
xsltInternals.h reference.
Sun Nov 24 15:49:58 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/tests/*.py: enable libxml2 memory debug before
loading libxslt since libxslt initialization now includes
EXSLT registration which initialize the libxml2 library and
allocate memory
Sun Nov 24 13:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxsl.py: updated with new version from Stéphane Bidoul
Sat Nov 23 22:49:08 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/libxslt.def.src: exported new functions
Sat Nov 23 14:46:06 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/date.c: patch from Charles Bozeman fixing a memory
leak in exsltDateDurationFunction pointed out by Bernard Brinkhus
* python/tests/exslt.py: trouble with mem debug in that specific
test...
Sat Nov 23 12:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltInternals.h: Alexey Efimov reported a portability
problem when compiling on HP-UX
Sat Nov 23 12:23:32 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/generator.py python/libxslt.c: fixes for compiling
without config.h
Thu Nov 21 18:51:29 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed bug #99168 select evaluating to
a node list check
Thu Nov 21 15:12:33 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/documents/result.xhtml: the XHTML1 serialization change
to libxml2 modifies slightly the result of that test.
Mon Nov 18 11:38:46 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: the python bindings requires libxml2 >= 2.4.25
for the regexp stuff.
Mon Nov 18 10:09:06 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: similar patch to #98825 for --with-python
Sun Nov 17 22:06:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fix bug #98793 on clash of imported global
variables.
* tests/reports/tst-1.err: this changes the output of that test
Sun Nov 17 18:12:20 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.23
* doc/*: rebuilding the docs
Sat Nov 16 23:23:41 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt.c: make sure to register EXSLT for the bindings
* python/tests/Makefile.am python/tests/exslt.py: add a specific test
* xsltproc/xsltproc.c: minor cleanup
Fri Nov 15 12:35:57 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am python/tests/Makefile.am: trying to fix #98518
when building outside of the source tree
Thu Nov 14 21:39:37 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/generator.py: xpathObjectRet() pertains to the libxml2
module, add the namespace.
Thu Nov 14 18:48:00 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/win32config.h: cleanup
* win32/Makefile.mingw: new file, integrated mingw in JScript configure
* win32/Makefile.msvc: modified to allow mingw coexistence
* win32/configure.js: integrated mingw
* win32/Readme.txt: cleanup
* xsltproc/xsltproc.c: allowed stdarg for mingw
Thu Nov 14 07:22:23 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.1
* doc/xsltproc.html - ran stylesheets to update man page
and html with Daniel's fix to #95510
Thu Nov 14 15:10:13 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: applied patch from Brian McCauley fixing #95493
* doc/xsltproc.xml: fixing #95510 missing description of --writesubtree
* README: fix the bug page URL
Thu Nov 14 10:03:12 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: make sure the fixup for key() reported
by John Escott actually works.
* tests/docs/Makefile.am tests/docs/bug-98.xml
tests/general/Makefile.am tests/general/bug-98.*: added the
example in the regression tests for this case
Wed Nov 13 10:35:46 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixes bug #97969 for @*[...] patterns
* tests/docs/Makefile.am tests/docs/bug-97.xml
tests/general/Makefile.am tests/general/bug-97.*: added the
example in the regression tests for this case
Tue Nov 12 22:35:47 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixes bug #97950 for cdata-section-elements
checks in recursive copies.
* tests/docs/Makefile.am tests/docs/bug-96.xml
tests/general/Makefile.am tests/general/bug-96.*: added the
example in the regression tests for this case
Tue Nov 12 19:31:49 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: autoconvert key() first arg to string,
reported by John Escott
Tue Nov 12 13:40:47 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: corner case handling of copying a CDATA node.
Fri Nov 8 18:12:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/win32config.h: retired xmlwin32version.h
Fri Nov 8 17:09:14 CET 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am libxslt.m4 libxslt.spec.in: integrated libxslt.m4
written by Thomas Schraitle (RFE #96485)
Thu Nov 7 11:18:42 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml
* doc/xsltproc.1
clarifying --catalog option and xsltproc's use of
XML_CATALOG_FILES and /etc/xml/catalog. fixes
http://bugzilla.gnome.org/show_bug.cgi?id=97891
Mon Nov 4 06:55:36 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: remove the use of snprintf, and use
libxml2 string API instead.
* configure.in libxslt/xsltconfig.h.in libxslt/xsltutils.c:
try to cope with architecture lacking some of the string functions,
reuse the trio ones compiled in libxml2 , should close #97113
Wed Oct 23 17:06:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am libxslt.spec.in doc/Makefile.am: cleaned up
the spec file and associated changes in the Makefiles.
Tue Oct 22 21:02:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: Forgot to check a pointer, fixes bug #96495
Tue Oct 22 20:53:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/keys.h: fixed include c.f. bug #96487
* config.h.in: Red Hat 8.0 induced change
Mon Oct 21 20:56:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c libxslt/numbersInternals.h libxslt/xsltutils.[ch]:
fixed bug #78501 when using a non ascii character for the
number formatting grouping separator.
* tests/docs/Makefile.am tests/docs/bug-95.xml
tests/general/Makefile.am tests/general/bug-95.*: added the
example in the regression tests for this case
* libxslt/attributes.c: cleaning up a problem introduced in last
patch
Mon Oct 21 09:31:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/attributes.c: fixed minor typo in a call to
xmlHasNsProp
Sun Oct 20 23:20:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/types.c: fixed bugs when passing result value tree
to Python functions.
Sun Oct 20 15:23:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/win32config.h: mapped vsnprintf to _vsnprintf for the
MS runtime
* xsltproc/xsltproc.c: mapped snprintf to _snprintf for the MS
runtime
Fri Oct 18 13:40:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.22
* doc/*: upated and rebuilt the docs
Thu Oct 17 16:32:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixed bug #86421
* tests/docs/Makefile.am tests/docs/bug-94.xml
tests/general/Makefile.am tests/general/bug-94.*: added the
example in the regression tests for this case
Thu Oct 17 15:50:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc: added and tested the --path option to close #79638
Thu Oct 17 15:25:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c: fixing bug #95826 the attribute was reset
with the inherited stylesheet value.
* tests/docs/Makefile.am tests/docs/bug-93.xml
tests/general/Makefile.am tests/general/bug-93-inc.*
tests/general/bug-93.*: added the example in the regression
tests for this case
Tue Oct 15 18:02:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltInternals.h libxslt/xsltutils.[ch]: added the
possibility to register a transformation context specific
error handler, with xsltSetTransformErrorFunc() and provided
a new routine xsltTransformError() to handle contextual errors,
this should fix #94435
* libxslt/*.c: modified all the code to use the context specific
error handling, as a result xsltPrintErrorContext() is not called
anymore except internally from xsltTransformError()
Tue Oct 15 14:52:23 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: closing #94933, any error will make
the transformation abort with no result.
* tests/reports/tst-1.err tests/reports/tst-1.out
tests/reports/undefvar.err: this changed the regression tests
output.
* tests/exslt/date/difference.1.out tests/exslt/date/seconds.1.out:
updated the result accordingly to the fixes done last month.
* libxslt/namespaces.c: make sure to avoid duplicate namespace
declarations in the result trees. May fix #93692 but it's unclear.
Tue Oct 15 12:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: added a --path option to provide the
enhancement requested by #79638, first cut at it, untested
yet.
Tue Oct 15 13:02:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: seems the media-type attribute wasn't
always correctly handled
Mon Oct 14 09:27:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: added URI escaping in case the resource
target computation of exslt:element failed. Should fix #81837
Tue Oct 15 12:42:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
* README: updated the contact informations
Tue Oct 15 11:40:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed the behaviour of node() patter which
didn't patch the one defined in XPath :-( . Closes bug #95793
* tests/docs/Makefile.am tests/docs/bug-92.xml
tests/general/Makefile.am tests/general/bug-92.*: added the
example in the regression tests for this case
Mon Oct 14 12:29:53 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/win32config.h: remapped mkdir to _mkdir for MS runtime
* win32/Makefile.msvc: added security.c to the build
* win32/libxslt.def.src: exported functions from security.c
Thu Oct 10 18:41:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: added another option --writesubtree to allow
documents to be written only to a given subtree.
Thu Oct 10 17:16:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/security.[ch] libxslt/Makefile.am: new module with
runtime security checks, it will also check and do directory
creation when allowed
* libxslt/documents.c libxslt/imports.c libxslt/transform.c
libxslt/xslt.c libxslt/xsltInternals.h: plug-in the new
security infrastructure probes at file reading or file creation
* xsltproc/xsltproc.c: plugged the security module there too,
added the new options --nowrite and --nomkdir
* doc/*: updated the man page and regenerated.
Wed Oct 9 18:37:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
* doc/*: updated the doc XSLT to add the search, added the search
page, fixed a link problem raised by Yves Pratter, regenerated
Wed Oct 9 14:27:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
* doc/index.py: the indexer version of the XSLT part of the
xmlsoft site + archives
Sun Sep 29 20:02:25 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/Makefile.msvc: introduced double-run compilation.
* win32/configure.js: introduced double-run compilation.
Thu Sep 26 20:08:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.21
* doc/* : updated and regenerated the docs and web pages
Wed Sep 25 11:16:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed a disable output escaping bug for
HTML output introduced in 1.0.20 and raised by Mario Weilguni
* tests/docs/Makefile.am tests/docs/bug-91.xml
tests/general/Makefile.am tests/general/bug-91.*: added the
example in the regression tests for this case
Tue Sep 24 20:33:08 MDT 2002 John Fleck <jfleck@inkstain.net>
* doc/xlst.html: changing link on ftp.gnome.org
Mon Sep 23 10:14:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am: set-up DIST_SUBDIRS to avoid the same problem Jacob
reported for libxml2
Fri Sep 20 14:06:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am configure.in: trying to fix the same problem as
#88412 by bypassing all the python subdir if python ain't detected
Fri Sep 20 10:55:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/templates.c: fixed a problem reported by Mark Vakoc
Wed Sep 18 15:46:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libexslt/date.c: fixed the embedded '-' in the duration format
function
* tests/.../difference.1.xml: added test cases which illustrated
the above bug
Tue Sep 17 18:01:22 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libexslt/date.c: fixed date:difference() bugs, removed all
type conversion warnings.
* libxslt/xsltutils.c: removed unused local variable.
Sat Sep 14 16:17:51 MDT 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.html:
oops, forgot to update the html version of the man page
Sat Sep 14 16:10:21 MDT 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml
* doc/xsltproc.1
* doc/xsltproc2.html
Fixing erroneous mention of old --warnnet option (thanks to Jean
T. Anderson for pointing this out)
Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/configure.js: added more readme info for the binary
package.
Mon Sep 9 14:07:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed a bug in match="node()" reported by
Ben Ko
Mon Sep 9 14:06:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in: fixes libary path for x86_64 AMD
Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: applied patch from Christophe Merlet to
reestablish DESTDIR
Thu Aug 29 21:26:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: re-applied the patch from Nathan Myers about
a possible memory leak in case of error
Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
* doc/Libxslt-Logo-180x168.gif doc/Libxslt-Logo-90x34.gif:
nice logos generated by Marc Liyanage
* doc/site.xsl *.html: changed the stylesheet to show the new
logo and regenerated the pages
Sun Aug 25 17:01:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt-python-api.xml python/libxslt.c
python/libxsltclass.txt python/tests/basic.py: applied a patch
from Ralf Mattes providing style.saveResultToString()
Fri Aug 23 13:53:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing release 1.0.20
* doc/*: updated and regenerated the docs
Wed Aug 21 21:27:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/templates.c: fixed a bug w.r.t. namespace context when
doing the evaluation of attribute value templates
* libxslt.spec.in python/Makefile.am: fixed some troubles
with "make rpm"
Wed Aug 21 18:59:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt.c: fixed the parameter order when calling
Python based extensions.
Wed Aug 21 13:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c libxslt/xslt.c: fixed bug #89258 and a bit of
cleanup.
* tests/docs/Makefile.am tests/docs/bug-90.xml
tests/general/Makefile.am tests/general/bug-90.*: added the
example in the regression tests for this case
Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/Makefile.msvc: added the prefix location to the include
and lib search path.
Mon Aug 19 15:03:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: found and fixed the small <xsl:choose>
bug which was giving troubles to DocBook users (the test expression
of <when> was evaluated in the namespace context of <choose> !)
2002-08-18 Havoc Pennington <hp@pobox.com>
* autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
both automake 1.6 and 1.4 installed get the right automake. Means
compilation from CVS will now require the latest automake 1.4
release, or manually creating symlinks called "automake-1.4" and
"aclocal-1.4"
Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in python/Makefile.am: AMD x86-64 induced changes from
Frederic Crozat
Wed Aug 14 13:35:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c: recovering to the old (somewhat) broken
implementation of document('') when there is no base for the
source document or it can't be realoaded (e.g. when the sytlesheet
was loaded from a memory string). Matt Sergeant insisted on this
one :-)
Tue Aug 13 11:21:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: applied another patch from Nathan Myers about
a possible memory leak in case of error
Mon Aug 12 23:12:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: applied a patch from Nathan Myers about
an erroneous free in case of error
Thu Aug 1 14:29:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: upon suggestion of Marc-Andre Lemburg, make
the misdetection of libxml2 python bindings a warning only
Sun Jul 21 19:10:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
* xsltInternals.h/xslt.c/transform.c and pattern.c: fixed
a bug reported by Gero Meissner (87230)
* fixed a problem compiling python directory when multiple
'make' jobs were executed (python/Makefile.am)
Wed Jul 17 19:58:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c: fixed a bug reported by Keith Isdale
at the xsltdbg interface when encountering an empty attribute
set.
Wed Jul 17 19:51:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
* tests/* : the change in HTML meta encoding tag serialization
affected some of the results
Thu Jul 11 22:04:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am: adding doc/xsltproc.xml to the tarball
to fix Red Hat bug #68614
Wed Jul 10 21:28:11 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/Makefile.msvc: Made the copy *.pdb in install succeed even
if there is no *.pdb
Sat Jul 6 22:00:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.19
* doc/* : rebuilt the docs
Sat Jul 6 17:51:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed bug #83749 about namespace generated
being invalid when they are inherited from the context.
Fri Jul 5 22:27:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed bug #86753 on multiple identical
attributes being generated, oops ...
* tests/docs/Makefile.am tests/docs/bug-89.xml
tests/general/Makefile.am tests/general/bug-89.*: added an
example in the regression tests for this case
Fri Jul 5 18:28:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/preproc.c libxslt/transform.c: fixed bug #87279
* tests/docs/Makefile.am tests/docs/bug-88.xml
tests/general/Makefile.am tests/general/bug-88.*: added an
example in the regression tests for this case
Fri Jul 5 16:30:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/preproc.c libxslt/xsltutils.c: applied a patch from
Ken Neighbors to implement/fix sorting orders
* tests/docbook/result/*/gdp-handbook.*
tests/docbook/result/xtchunk/html/*.orig
tests/general/bug-12-.out tests/general/bug-63.out:
cleaned up the result of "make tests" following some changes
in namespace axis order and serialization rules in libxml2
Thu Jul 4 16:53:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
* transform.c further enhancement for bug 84902 (another
path), also cleaned up code slightly
Wed Jul 3 00:50:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
* transform.c: fixed bug 84902 - message with terminate=yes
caused segfault
Tue Jul 2 00:02:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-87.xml
tests/general/Makefile.am tests/general/bug-87.*: added a
example in the regression tests for a case where the XML
default namespace was missing from the namespace axis
* xsltproc/xsltproc.c: added the informations that parameter
strings are expected to be UTF8
* libxslt/attributes.c: fixes on attribute group implementation
Sat Jun 29 21:12:14 MDT 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml, doc/xsltproc.html/, doc/xsltproc.1
updating docs to add reference to UTF-8 requirement for
stringparam command line option
Wed Jun 19 13:43:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/documents.c libxslt/functions.c libxslt/xsltInternals.h:
fixed document('') as pointed by Eric van der Vlist
* tests/docs/Makefile.am tests/docs/bug-86.xml
tests/general/Makefile.am tests/general/bug-86.*: added the
specific example in the regression tests
Sat Jun 15 15:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c libxslt/numbersInternals.h: applied a
patch from Ken Neighbors fixing some format-number inconsistencies
* tests/numbers/format-number.out tests/numbers/format-number.xml
tests/numbers/format-number.xsl: the patch also included
updates to the regression tests
Mon Jun 10 14:55:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: patch from Richard Jinks t correct a bug in
xsl:number level="multiple"
* tests/docs/Makefile.am tests/docs/bug-84.xml
tests/general/Makefile.am tests/general/bug-84.*: added a
specific example in the regression tests
Fri May 31 09:33:09 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/dynamic.c: turned a function static
* libxslt/win32config.h: applied patch from Mark Vadoc
Thu May 30 23:35:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
* win32/Makefile.msvc libexslt/Makefile.am libexslt/date.c
libexslt/dynamic.c libexslt/exslt.c libexslt/exslt.h: applied
a patch from Mark Vakoc to implement the EXSLT
object dyn:evaluate(string) extension function, and a small fix
to date.c
Mon May 27 23:24:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.18
* doc/*: recompiled the API and web site
Mon May 27 19:14:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/namespaces.c libxslt/transform.c: fix bug #81099 about
duplicated namespace declarations, this might not be as generic as
it should but works well for DocBook stylesheets
Sat May 25 12:07:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt.pc.in: fix bug #82970
Fri May 24 15:02:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/libxslt-python-api.xml python/libxslt.c
python/libxsltclass.txt : tried to fix #79105 by providing a
specific error registering routine.
Thu May 23 17:28:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.[ch] : applied patch from Morus Walter
adding xsltSaveResultToString()
* doc/APIfiles.html doc/APIfunctions.html doc/libxslt-api.xml
doc/libxslt-decl.txt doc/libxslt-refs.xml: this increased the
API with the new function.
Wed May 22 11:50:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/function.c: applied a patch from Richard Jinks
to avoid a crash in element-available()
Tue May 21 19:38:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in: applied patch from Geert Kloosterman to
not miss gif and .png files in the RPM documentation
Tue May 21 08:43:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/libexslt.4: Applied patch for the EXSLT man page
from Charles Bozeman
Sat May 18 10:01:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/libexslt.4 libxslt/libxslt.4 libxslt/keys.c
libxslt/xsltconfig.h.in: applied a man page patch from
Christian Cornelssen and fixed a couple of issues he raised.
Thu May 16 19:38:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: moved the extension dump out of the loop
Thu May 16 19:31:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.[ch] xsltproc/xsltproc.c win32/libxslt.def.src:
Applied Mark Vakoc patch to show registered extensions in xsltproc
* doc/*: rebuilt the API, docs and website
* python/libxsltclass.txt: this added an entry point
Wed May 15 00:20:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libxslt/xslt.c: xsl:include crash fix
* libxslt/imports.c: xsl:include crash fix
* libxslt/imports.h: xsl:include crash fix
Wed May 9 01:39:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libexslt/exslt.h: fixed a typo _cplusplus -> __cplusplus
Thu May 2 11:08:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c libxslt/xsltutils.c doc/xsltproc.xml:
fixed some return code problems raised by Thomas Mauch
Tue Apr 30 18:06:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: don't allow adding an attribute to
a document node
Mon Apr 29 19:00:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt/xsltwin32config.h: preparing 1.0.17
* doc/*: rebuilt the docs.
Mon Apr 29 17:22:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: better attempt to fix the problem in
xsltProcessUserParamInternal reported by Babak Vahedipour-Kunze
Sun Apr 28 17:53:23 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/dsp/*.dsp: Removed obsolete macros
* win32/dsp/*.def: Updated export definitions
Sun Apr 28 17:47:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: tried to fix a problem in
xsltProcessUserParamInternal reported by Babak Vahedipour-Kunze
Fri Apr 26 08:15:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/date.c: applied another patch from Charles Bozeman to
enhance date/duration support
* tests/exslt/date: added the associated set of regression tests
Thu Apr 25 08:18:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/date.c: applied a patch from Charles Bozeman to add
duration routines to the date exslt extensions.
Thu Apr 18 22:56:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/exslt.h: extern "C" { missing by Mark Vakoc
Tue Apr 17 23:16:54 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* libexslt/date.c: fixed type inconsistencies, double->int
and unsigned/signed mismatch warnings eliminated
Tue Apr 16 19:40:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
* win32/Makefile.msvc: XSLT debugger support fix
* win32/configure.js: XSLT debugger support fix
* libxslt/xsltconfig.h.in: XSLT debugger support fix
Mon Apr 15 19:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.16
* doc/*: updated and rebuilt the docs
Mon Apr 15 17:27:51 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c: removed a warning
* libxslt/transform.c libxslt/transform.h win32/libxslt.def.src:
added xsltRunStylesheetUser() API needed to fix #78546
* xsltproc/xsltproc.c: second part of the fix #78546
Mon Apr 15 15:57:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: fixing the equivalent of #75779
Mon Apr 15 14:00:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/keys.c: fixed bug #78735
* configure.in tests/Makefile.am tests/keys/*:
added the tests in a separate directory
Mon Apr 15 00:01:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-83.xml
tests/general/Makefile.am tests/general/bug-83.*: added a
specific example for bug #78662 in the regression tests
* tests/docbook/: this also changed a couple of DocBook results
Sun Apr 14 15:32:23 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: trying to kill #77827 IEEE conformance on alphas
* libxslt/imports.c libxslt/transform.c libxslt/xslt.c: fixing
bug #78211
* tests/docs/Makefile.am tests/docs/bug-82.xml
tests/general/Makefile.am tests/general/bug-82.*: added a
specific example for bug #78211 in the regression tests
Wed Apr 10 20:35:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: applied patch from Mark Vakoc
Fri Mar 29 18:28:23 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-81.xml
tests/general/Makefile.am tests/general/bug-81.*: added a
specific example for bug #76927 in the regression tests
Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
* AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
* python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
that $(datadir) should be used for docs
Mon Mar 25 17:56:44 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.15
* doc/*: updated and rebuilt
Mon Mar 25 17:11:42 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/attributes.h libxslt/pattern.c
libxslt/xslt.c: Fix bug #76043 about cascading attribute sets
* tests/docs/Makefile.am tests/docs/bug-80.xml
tests/general/Makefile.am tests/general/bug-80.*: added a
specific example for bug #76043 in the regression tests
Fri Mar 22 19:26:47 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: Fixing bug #75902 error with @foo[..]
steps which were not compiled
* tests/docs/Makefile.am tests/docs/bug-79.xml
tests/general/Makefile.am tests/general/bug-79.*: added a
specific example for bug #75902 in the regression tests
Fri Mar 22 16:13:22 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: Fixing bug #75777 error with namespaced
attribute match rules evaluation
* tests/docs/Makefile.am tests/docs/bug-78.xml
tests/general/Makefile.am tests/general/bug-78.*: added a
specific example for bug #75777 in the regression tests
Thu Mar 21 17:19:56 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: found another stupid bug by step by
step processing of the code
* libxslt/pattern.c: idem, except that once stupid mistake
ELEM vs NODE forced the templates to be stored in a list
instead of a hash table, fixing this stupidity should
again lead to a substantive improvement of processing speed.
Like divide by 2 processing time for DocBook stylesheets.
Thu Mar 21 00:25:12 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #75603
* tests/docs/Makefile.am tests/docs/bug-77.xml
tests/general/Makefile.am tests/general/bug-77.*: added a
specific example for bug #75603 in the regression tests
Wed Mar 20 17:49:43 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: Art Haas pointed a stupid error
Tue Mar 19 19:42:01 CET 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am tests/Makefile.am tests/*/Makefile.am
tests/*/*/Makefile.am : added "make valgrind" targets
to run the test suite under the debugger control
* transform.c: valgrind spotted 2 bugs, one related to
the ordering of the deallocation of the data associated to
a transofrmation, the second in xsltCopyTree when the new
node may have been coalesced with an adjacent text node.
The regression tests now pass cleanly under testgrind.
Mon Mar 18 21:33:38 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: fixed a stupid bug
Mon Mar 18 20:45:27 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.14
* doc/*: updated rebuilt
* libxslt/*.c libexslt/*.c libxslt/libxslt.h libexslt/libexslt.h:
implemented the IN_LIBXSLT and IN_LIBEXSLT mechanism discussed
with the Windows maintainers
Mon Mar 18 16:22:46 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am python/generator.py python/libxslt.c
python/types.c python/tests/Makefile.am: applied the same kind of
fixes to the Python Makefiels than to libxml2 ones. Updates
and cleanups too.
Sat Mar 16 23:48:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/common.c libxslt/pattern.c libxslt/transform.c
libxslt/variables.c: chaing result tree values which may
be deallocated and must not be kept in the template
pattern lookup cache. Thanks to Valgrin to allow finding
the real problem in bug #74857
Wed Mar 13 15:17:51 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/*.h doc/* python/*: applied another cleanup comment
diff from Heiko W. Rupp, regenerated the API and python
Wed Mar 13 13:41:19 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-76.xml
tests/general/Makefile.am tests/general/bug-76.*: added a
home brewed test for path computation elmininating duplicate
in result sets.
Sat Mar 9 11:53:39 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/Makefile.am: fixed a build problem in some environements
2002-03-08 jacob berkman <jacob@ximian.com>
* python/Makefile.am (libxsltmodule_la_SOURCES): remove $(srcdir)
as make will automatically look there for these files
Fri Mar 8 17:44:31 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt/xsltwin32config.h: preparing release
1.0.13
* doc/*: updated and rebuilt the docs
* python/libxslt.c: fixed a possible reentrancy problem
Fri Mar 8 14:51:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: Fixes the problems exposed by #73880
those ought to be computed at stylesheet compile time, not
at run-time, and the computation was wrong.
* libxslt/transform.c: get rid of fake nodes coming from node-set
transformations. At least if they are still produced they will
become easy to spot as resulting document won't be well-formed.
Thu Mar 7 17:01:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c: fixed bug #73791 related to extension
function declared in included stylesheets
* tests/exslt/functions/function.7.*: added specific test
Thu Mar 7 15:20:32 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-75.xml
tests/general/Makefile.am tests/general/bug-75.*: added a
specific example for bug #72150 in the regression tests
Thu Mar 7 15:17:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in xsltproc/xsltproc.c: fixed bug #71488 in a
similar way as #71457
Thu Mar 7 09:41:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/xmlspec/REC-xml-20001006*.html tests/XSLTMark/xslbench1.out:
some HTML meta encoding fixups resulting from fix in libxml2
Mon Mar 4 18:09:48 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/namespaces.c tests/general/bug-63.out: small fixups
related to the XPath changes in fixing #61290
Mon Mar 4 12:57:21 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed bug #73363, bad tokenization of
pattern
Mon Mar 4 12:01:34 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/date.c: patch from Charles Bozeman for the exslt date
extension
* configure.in tests/exslt/Makefile.am tests/exslt/date/*: added
the associated regression test provided by Charles
Fri Mar 1 10:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/preproc.c: Fixed #73088 with the associated patch
Fri Mar 1 10:14:07 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: similar to #72663 and #72658, don't memdump
unless compiled explicitely with memory debugging switched on
* TODO: refreshed a bit
Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/generator.py python/libxslt.c: changes for the 'usual'
setup.py to allow building a libxml2-python
module based on the same code. The initialization is however
different the 2 .so files fo libxml2 and libxslt are identical and
they entry point initialize both libraries. this is done to avoid
some possible nasty problem since the Python don't merge the maps
of all shared modules.
* python/libxsl.py: attempt to cope with the shared library loading
problem when both modules are not merged.
Thu Feb 21 12:59:59 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/site.xml doc/xslt.html doc/python.html doc/*.html: added
documentation for the wrappers and python modules.
Wed Feb 13 14:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-74.xml
tests/general/Makefile.am tests/general/bug-74.*: added a
specific example for bug #71342 in the regression tests
* tests/docbook/result/xhtml/gdp-handbook.xhtml: fixing
#71342 changed one attribute serialization.
Tue Feb 12 15:08:38 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: trying to fix #71270
Mon Feb 11 19:40:34 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/*.py: removed tab used spaces
* configure.in libxslt/xsltwin32config.h: preparing 1.0.12
* doc/news.html doc/xslt.html: rebuild/updated
Mon Feb 11 16:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-73.xml
tests/general/Makefile.am tests/general/bug-73.*: added a
specific example for bug #71181 in the regression tests
Mon Feb 11 16:22:36 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed bug #71181 p/text() would not
work. A bit of cleanup.
Mon Feb 11 15:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
* xslt-config: fixing Red Hat bug #59508
Mon Feb 11 14:27:25 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-72.xml
tests/general/Makefile.am tests/general/bug-72.*: added a
specific example for bug #58444 in the regression tests
Mon Feb 11 14:13:07 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed bug #58444, was quite simpler
than expected.
Mon Feb 11 13:27:42 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltInternals.h libxslt/pattern.c: expected to have
closed bug #70131, still wondering about the position() when
the node is selected.
Mon Feb 11 10:45:27 CET 2002 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-71.xml
tests/general/Makefile.am tests/general/bug-71.*: added a
specific example for Norm's bug in the regression tests
Sun Feb 10 22:08:51 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c: fixed a bug reported by Norm
Sun Feb 10 20:25:28 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxml.c : fixed a small warning.
* doc/libxslt-api.xml doc/libxslt-decl.txt doc/libxslt-refs.xml
python/libxsltclass.txt: rebuilt the APIs
Sun Feb 10 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/imports.c libxslt/numbers.c libxslt/pattern.c
libxslt/pattern.h libxslt/transform.c libxslt/xslt.c
libxslt/xsltInternals.h: adding extra run-time informations
to make the stylesheet really read-only at run-time.
Sun Feb 10 16:21:09 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #70281
Sun Feb 10 15:10:56 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: trying to fix #68759
Sat Feb 9 23:17:53 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: seems some version of automake didn't
generate the dependancies right as Jacob found out. Add
an extra dependancy rule.
Sat Feb 9 19:04:01 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt.spec.in python/Makefile.am python/generator.py
python/libxsl.py python/libxslt.c python/tests/Makefile.am:
Fixed the python Makefiles, corrected a bug showing up on ia64,
changed the name of the python internal module too
Fri Feb 8 17:01:10 CET 2002 Daniel Veillard <daniel@veillard.com>
* Copyright Makefile.am configure.in libxslt.spec.in: change the
Licence to MIT Licence and release of 1.0.11
* doc/FAQ.html doc/intro.html doc/libxslt-decl.txt doc/news.html
doc/xslt.html: updates of the docs accordingly
* libxslt/xsltwin32config.h: numbering
* python/generator.py python/libxml_wrap.h python/libxsltclass.txt
python/libxslt-python-api.xml: cleanup the dependancies with
libxml2
* python/tests/extfunc.py: updated examples.
Thu Feb 7 23:21:18 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/libxslt-api.xml doc/libxslt-decl.txt doc/libxslt-refs.xml
doc/parsedecl.py: fixup the script and rebuid the API
* libxslt/extensions.h: cleanup
* python/generator.py python/libxslt-python-api.xml python/libxslt.c
python/libxsltclass.txt: provided accessors for a lot of the
tructures involved in the transformation. Stylesheet and
transformation python object don't free automatically the
encapsulated object when deallocated.
* python/tests/Makefile.am python/tests/basic.py
python/tests/extfunc.py python/tests/pyxsltproc.py:
updated the examples
Thu Feb 7 17:59:27 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: small fix
* Makefile.am: cleanup
* python/tests/Makefile.am: avoid a problem with $(TESTS)
* python/generator.py python/libxml_wrap.h python/libxsl.py
python/libxslt.c python/libxsltclass.txt: augmented the
wrappers
* python/tests/pyxsltproc.py: rewrote xsltproc on top of the
libxslt-python API to get an estimate of what is missing
Wed Feb 6 23:34:10 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxsl.py python/libxslt-python-api.xml python/libxslt.c
python/libxsltclass.txt: added libxslt_xsltCleanup() added parameters
to libxslt_xsltApplyStylesheet() removed the memleaks left and
fixed an import order.
* python/tests/basic.py python/tests/extfunc.py: updated the tests
Wed Feb 6 19:46:09 CET 2002 Daniel Veillard <daniel@veillard.com>
* python/libxlst.c python/libxslt-python-api.xml
python/libxsltclass.txt: plugged the extension of the engine
with python defined functions
* python/tests/Makefile.am python/tests/extfunc.py: added a
basic test, still a memleak, cleanup function needed.
Wed Feb 6 13:49:55 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in python/Makefile.am python/libxsl.py: the
spec file will now build libxslt-python, fought with shared
and other crazyness, seems to work now :-)
* doc/libxslt-api.xml: regenerated
Wed Feb 6 11:29:31 CET 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am configure.in tests/Makefile.am tests/*/Makefile.am
tests/*/*/Makefile.am: refactored make tests, make all now don't
run the test suite
* python/Makefile.am: added tests
* python/tests/basic.py python/tests/Makefile.am: added the first
basic test, memory debug included
Wed Feb 6 00:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in python/Makefile.am: attempst to tweak to get
full memory debug...
* python/generator.py python/libxsl.py python/libxslt-python-api.xml
python/libxslt.c python/libxslt_wrap.h python/libxsltclass.txt:
the basic API starts to work
* python/tests/test.*: first basic test
* libxslt/xsltutils.c: fixed a comment
Tue Feb 5 17:35:00 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in doc/Makefile.am: do not install outside of prefix,
make sure the API get shipped.
Mon Feb 4 19:47:32 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.[ch] doc/libxslt-api.xml doc/libxslt-refs.xml:
reactivated xsltMatchPattern() since this is really something
one may want to have access to in an extension function.
* Makefile.am configure.in python/Makefile.am python/generator.py
python/libxml_wrap.h python/libxsl.py python/libxslt-python-api.xml
python/libxslt.c python/libxslt_wrap.h python/libxsltclass.txt
python/types.c: started working on the python bindings, borrowed
most of the work done for libxml2, most of the generator code
is similar. Commit at the point where this compiles cleanly and
"import libxslt" doesn't yield any missing entry point.
Wed Jan 30 12:46:41 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: patch from Charles Bozeman to support
child::* patterns.
Wed Jan 30 12:35:28 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/keys.c: Bob Stayton pointed out a problem when
using unions in key match patterns.
* tests/docs/Makefile.am tests/docs/bug-70.xml
tests/general/Makefile.am tests/general/bug-70.*: added a
specific example in the regression tests
Sun Jan 27 13:54:10 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: avoid a problem with Sun's Workshop CC,
closes bug #69809 submitted by Michael Kroell
Fri Jan 25 15:31:23 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: added links to the Web site from usage()
Wed Jan 23 23:13:37 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/API*.html doc/parsedecl.py doc/*.xsl parsedecl.py: generated
an index based on comments content similar to libxml2 one
The code need more specific comments.
* doc/*: rebuilt the web site with the new references
Mon Jan 21 09:53:45 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.h: roll back the change after more analysis
proper fix is to restore the definition of xmlXPathFuncLookupFunc
int libxml2
Mon Jan 21 09:41:10 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.h: fixed a proble after some cleanup of libxml2
includes.
Sun Jan 20 14:33:33 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: Fixed RH bug #58124 due to an off-by-one
error when parsing -o arguments.
Sun Jan 20 14:15:55 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/xsltproc.xml libxslt/xsltutils.c xsltproc/xsltproc.c:
Fixed RH bug #57496, xsltproc was not returning error
code on internal runtime errors. Should return 9 now.
Fri Jan 18 09:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/math.c: Charlie Bozeman provided the implementation
for the EXSLT math other functions
Thu Jan 17 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
* libexslt/Makefile.am: jacob berkman pointed out that the
Cygwin patch forgot to add libexslt.h to the tarball
Thu Jan 17 23:39:00 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed I18N problemes in the template parser
pointed out by Xavier Cazin
* tests/docs/Makefile.am tests/docs/bug-69.xml
tests/general/Makefile.am tests/general/bug-69.*: added a
specific example in the regression tests
Thu Jan 17 10:40:03 CET 2002 Daniel Veillard <daniel@veillard.com>
* Makefile.am libexslt/common.c libexslt/date.c libexslt/exslt.c
libexslt/exslt.h libexslt/exsltconfig.h.in libexslt/functions.c
libexslt/libexslt.h libexslt/math.c libexslt/saxon.c
libexslt/sets.c libexslt/strings.c libxslt/libxslt.h
libxslt/xslt.h libxslt/xsltconfig.h.in libxslt/xsltutils.c
xsltproc/xsltproc.c: applied Robert Collins patch for
Cygwin support
Thu Jan 17 10:34:39 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/Makefile.am configure.in: ugly way to keep
the memory debugging active on my devel workstation
by bypassing libtool completely
Tue Jan 15 12:00:18 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/templates.c: fixed bug #68751
* tests/docs/Makefile.am tests/docs/bug-68.xml
tests/general/Makefile.am tests/general/bug-68.*: added a
specific example in the regression tests
Tue Jan 15 10:40:41 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c xsltproc/xsltproc.c: fixed a couple of
small problems raised by Justin Fletcher
Mon Jan 14 18:35:18 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: releasing 1.0.10
* doc/*: updating the docs for the release.
* libxslt/namespaces.c libxslt/pattern.c libxslt/transform.c:
seems I inadvertantly commited previously stuff from a failed
attempt at fixing namespace nodes parents.
Mon Jan 14 12:20:33 CET 2002 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: the xsl:number implementation incorrectly
cached the format string in some case. Fixes bug #65391
Mon Jan 14 10:35:27 CET 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: fixed a couple of cut and paste errors in the
math functions detection
* libxslt.spec.in: added missing file entry for libxslt.pc
Tue Jan 8 21:04:17 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml, doc/xsltproc.1, doc/xsltproc.html
update xsltproc man page to add --stringparam option
Tue Jan 8 17:21:02 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: added the --stringparam option
* xsltproc/xsltproc.c: applied John Fleck's patch to correct
the --novalid behaviour.
Tue Jan 8 13:51:08 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/site.xsl doc/*.html: added a DocBook section docbook.html
Tue Jan 8 12:51:15 CET 2002 Daniel Veillard <daniel@veillard.com>
* doc/*.html: updated gdome2 homepage
Sat Jan 5 19:32:17 CET 2002 Daniel Veillard <daniel@veillard.com>
* win32/dsp: Windows/MSVC project files update from Igor Zlatkovic
Fri Jan 4 22:13:40 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml, xsltproc.1 - updating man page to reflect
increased number of parameteres, changed license, cleaned up some
places where it looked junky because of stylesheet issues
Fri Jan 4 15:50:25 CET 2002 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: increased the max number of parameters
Thu Dec 20 14:54:27 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt.pc.in configure.in: added pkg-config file from Rodrigo Moya
Thu Dec 20 14:49:39 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: applied albert portability patch
* libxslt/libxslt.h libxslt/xslt.h libxslt/xsltconfig.h.in
libxslt/xsltutils.c libxslt/xsltwin32config.h.in win32/dsp/libxslt.def:
applied Igor patch for Windows
Tue Dec 11 15:27:15 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c: fixed a problem with the debuuger interface.
Fri Dec 7 15:48:48 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.9
* doc/*: updated and rebuild the doc
Thu Dec 6 14:57:56 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libexslt/Makefile.am: trying to fix the problem
related to prelinking and libtools crazyness
Wed Dec 5 18:49:53 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c libxslt/variables.c: applied Keith Isdale
patch for the debugger glue.
Wed Dec 5 18:43:45 CET 2001 Daniel Veillard <daniel@veillard.com>
* breakpoint/Makefile.am breakpoint/deprecated.c: replaced
the whole module with just the entry points.
Fri Nov 30 18:59:50 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: Nik Clayton found a bug introduced in
1.0.8 when using doctypes for HTML output
Fri Nov 30 12:59:05 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/transform.c libxslt/xsltutils.c
libxslt/xsltutils.h: revamped the mechanism to hook a debuger
to use a callback setup function, deprecating libxsltbreakpoint
* xsltproc/Makefile.am configure.in breakpoint/Makefile.am: removing
dependancies on libxsltbreakpoint
Thu Nov 29 09:52:38 CET 2001 Daniel Veillard <daniel@veillard.com>
Build patch from Peter Williams <peterw@ximian.com>
* breakpoint/Makefile.am (INCLUDES): meed $(top_builddir)/libxslt.
* doc/Makefile.am ($(PAGES)): xslt.html and site.xsl live in
$(srcdir), not the build directory.
Wed Nov 28 11:17:04 CET 2001 Daniel Veillard <daniel@veillard.com>
* doc/FAQ.html doc/site.xsl doc/*.html doc/Makefile.am: added an FAQ
Tue Nov 27 21:15:43 MST 2001 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.xml, xsltproc.1, xsltproc.html - documenting new
xsltproc return codes, per
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=56649
Tue Nov 27 22:16:50 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: Marc Tardif provided a patch to use as
much as 40 steps. A dynamic alloc would still be better
Mon Nov 26 21:45:07 CET 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: return useful code signaling error conditions
closing #56649 (RH)
Mon Nov 26 13:14:14 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt/xsltwin32config.h: preparing release of 1.0.8
Mon Nov 26 11:21:27 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixing bug #64044 reported by Gero Meißner,
template matches compilation was failing to skip blanks bewteen
consecutive predicates
Mon Nov 26 10:27:30 CET 2001 Daniel Veillard <daniel@veillard.com>
* Makefile.am configure.in breakpoint/Makefile.am libexslt/Makefile.am:
updating Makefiles to fix the prelinking.
Sun Nov 25 15:52:38 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixed a bug in the document extension
element where the doctype infos were not taken into account.
Thu Nov 22 19:08:23 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c: fixed xsltDebug() to output with the normal
error routines
* tests/namespaces/*: updated the tests to separate stdout and
stderr
* libxslt/transform.c: increasing xsltMaxDepth to 5000
Thu Nov 22 12:09:56 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libexslt/Makefile.am: more Makefile fixups
Wed Nov 21 16:29:04 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libexslt/Makefile.am: trying to fix more Makefiles
crapola
* libxslt/transform.c: small fix.
Tue Nov 13 16:16:41 CET 2001 Daniel Veillard <daniel@veillard.com>
* vms/* Makefile.am: included OpenVMS port instructions from
John A Fotheringham, integrated in the tar file.
Mon Nov 12 22:46:26 CET 2001 Daniel Veillard <daniel@veillard.com>
* win32/dsp/* xsltproc/xsltproc.c libxslt/transform.c: Patches
from Igor for Windows
* libxslt/xslt.h: try to fix the LIBXSLT_PUBLIC mess
Sun Nov 11 21:15:05 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: fixing bug #64298 reported by T. V. Raman
Sat Nov 10 14:01:44 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.7
* libxslt.spec.in: cleanup similar to libxml2 one
* breakpoint/*.[hc]: finished cleaning up contributed code
* doc/*: updated and rebuilt the documentation
* xsltproc/xsltproc.c: cleanup of the timing code
* xsltproc/Makefile.am: auto* sucks
* libxslt/transform.c: added a missing include
Mon Nov 5 14:29:26 CET 2001 Daniel Veillard <daniel@veillard.com>
* Makefile.am acconfig.h config.h.in configure.in
xsltproc/Makefile.am breakpoint/* libxslt/transform.[ch]
libxslt/xsltconfig.h.in: Applied Keith Isdale patch for
the debugger support, make it the default, added the
WITH_XSLT_DEBUGGER define to xsltconfig.h.in, small cleanups
Fri Nov 2 11:19:49 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/libxslt.h: make sure LIBXSLT_PUBLIC is defined
Thu Nov 1 15:15:39 CET 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c: handle indent=no when using an HTML
output
* tests/docbook/result/* tests/xmlspec/REC-xml-*.html: this
modified the output of those test suites
Wed Oct 31 18:53:26 CET 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: cleanup, moved xsllNoNetExternalEntityLoader()
to libxml and removed the --warnnet option
Tue Oct 30 19:32:08 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: applied patches from David Härdeman closing
bug #62891
Tue Oct 30 15:25:19 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt/xsltwin32config.h: preparing 1.0.6
* libexslt/date.c: applied patch from Bruce Miller
* doc/*: updated and rebuilt the docs
Fri Oct 26 14:12:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
* win32/dsp/libexslt_a.dsp win32/dsp/libexslt_so.dsp
win32/dsp/libxslt.def: updated with latest ZIP from Igor,
made sure the .def is handled as binary
Fri Oct 26 11:37:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
* win32/dsp/libxslt.def libxslt/xslt.h: applied Igor patches
for Win32
* doc/*.html doc/site.xsl: changed the site stylesheet a bit
Thu Oct 25 23:05:14 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/numbers.c: take NaN and infinity attributes of
xsl:decimal-format into account. Closes #62577
Wed Oct 24 13:02:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
* doc/*.html doc/site.xsl doc/Makefile.am: the web site
is now extracted from the xslt.html flat file using
the site stylesheet ... eat your own dogfood !
* libxslt/transform.c libxslt/xsltutils.c: fixed the
HTML output to not generate a DOCTYPE if it should not
i.e. no identifier nor version specified in the xsl:output
* tests/multiple/out/*.orig tests/general/bug-11-.out
tests/general/bug-33-.out tests/general/bug-52.out
tests/docbook/result/xtchunk/html/*.orig
tests/docbook/result/html/gdp-handbook.html
tests/XSLTMark/*.out: fixing xsl:output with method=html
resulted in a number of small changes in the regression tests
output
Fri Oct 19 16:46:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/*.c libexslt/exsltconfig.h.in: moved the
config.h include out of exsltconfig.h since this header is
exported and config.h is not.
Wed Oct 17 21:20:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/extensions.c libxslt/preproc.c
libxslt/transform.c libxslt/xsltutils.h: cleanup TODO into
XSLT_TODO
Wed Oct 17 02:46:55 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/numbers.c: reworked internal representation of
tokenized number format and parsing/tokenization. This fixes
many bugs regarding separator and default tokens.
* tests/REC/test-7.7-3.out: the fix changes the output of this
test. It now complies to the XSLT spec (wow! ;o)
Tue Oct 16 11:25:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/Makefile.am configure.in config.h.in: trying to
bypass libtool crazyness when compiling in my debug environment
* libxslt/templates.c: fix a compilation problem due to recent
libxml changes
Sun Oct 14 17:17:03 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/numbers.c tests/REC/test-7.7-4.out: implement initial
non-alphanumeric token handling in number formatting.
Wed Oct 10 11:58:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: releasing 1.0.5
* doc/xslt.html doc/html/*: updated and rebuilt the docs
Wed Oct 10 00:10:01 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* tests/REC/test-7.7-4.out: fixed a typo
Tue Oct 9 22:59:00 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/saxon.c: fixed a typo and improved handling of
non-XPath-expression arguments.
* libexslt/strings.c: fixed a bug in tokenize: function was using
tctxt->output instead of tctxt->document->doc.
* libxslt/transform.c: fixed a bug in xsltDefaultProcessOneNode
which was using variable "node" instead of "cur"
Tue Oct 9 19:51:48 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/extra.[ch]: removed older SAXON extensions
implementations from Darren Graves.
* libexslt/date.c: applied patch from Charlie Bozeman to fix
a bug with time zone offset on Linux.
Tue Oct 9 13:02:46 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/documents.c libxslt/extra.c libxslt/transform.[ch]:
strip-space should also be applied to document imported
at run-time.
Tue Oct 9 12:36:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/imports.[ch] libxslt/transform.c libxslt/xslt.c:
rewrote the way strip-space gets applied. Closes bugs #61962
* tests/docs/Makefile.am tests/docs/bug-66.xml
tests/general/Makefile.am tests/general/bug-66.*: added a
specific example in the regression tests
Mon Oct 8 11:27:52 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: Fixing bug #61913
* libxslt/transform.c: removing a small memleak when running with
the profiler.
Sun Oct 7 18:53:34 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/saxon.c libexslt/Makefile.am libexslt/exslt.[ch]:
added implementation of SAXON expression(), eval() and
evaluate() functions.
See http://saxon.sourceforge.net/saxon6.4.4/extensions.html
* tests/extension/evaluate.xsl tests/extension/list.{xsl,out}:
modified to use SAXON namespace (functions are not registered
in the LibXSLT namespace)
* tests/exslt/common/object-type.1.out: modified to take account
of the new saxon:expression function
Sun Oct 7 13:15:33 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: fixed bug #61070, number ANY formatting
should be faster too.
* tests/docbook/result/xtchunk/html/* tests/xmlspec/REC-xml-20001006*.html:
updated the result of the tests. A subtle bug unnnoticed yet
in the XML Rec formatting got fixed.
Sat Oct 6 19:45:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: trying to fix bug #61070, seems there
is still a couple of problem left. And optimizations are
certainly needed.
Sat Oct 6 15:10:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixing bug #61673 part II
* tests/docs/Makefile.am tests/docs/bug-65.xml
tests/general/Makefile.am tests/general/bug-65.*: added a
specific example in the regression tests
Sat Oct 6 12:41:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed bug #61627
* tests/docs/Makefile.am tests/docs/bug-64.xml
tests/general/Makefile.am tests/general/bug-64.*: added a
specific example in the regression tests
* tests/docs/Makefile.am tests/docs/bug-63.xml
tests/general/Makefile.am tests/general/bug-63.*: added a
specific example in the regression tests for bug #61291
(fixed in libxml2 module)
* tests/reports/Makefile.am tests/reports/undefvar.*: added
a test for handling undefined variables
Thu Oct 4 15:49:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in xslt-config.in: trying to fix bug #60890
Thu Oct 4 15:28:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: applied patch to close bug #60724
Tue Oct 2 21:38:23 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/date.c: applied patch from Charlie Bozeman that fixes
a bug in DAY_IN_WEEK and implements the date:week-in-month function
Tue Oct 2 17:11:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.[ch] tests/extensions/list.*
tests/extensions/evaluate.*: applied patch from Darren Graves
adding support for Saxon's evaluate & expression extension functions
http://users.iclway.co.uk/mhkay/saxon/saxon6.3/extensions.html
Mon Oct 1 17:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltwin32config.h.in win32/dsp/libexslt_*.dsp: applied
patches from Igor for Windows.
Tue Sep 18 11:48:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xslt.c: fixed bug #60624
* libxslt/xsltutils.c: improver the error context reporting
* tests/reports/Makefile.am tests/reports/tst-2.*: added a
specific regression test
* xsltproc/xsltproc: free the stylesheet if it contained an error.
Mon Sep 17 14:45:48 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/variables.c: fixed a problem with global var override
being reported as an error.
* tests/docs/Makefile.am tests/docs/bug-61.xml
tests/general/Makefile.am tests/general/bug-61.*: added a
specific example in the regression tests
* configure.in tests/Makefile.am tests/reports/*: adding a test
to make sure redefinition of global variables in the same stylesheet
are still reported
Sat Sep 15 17:32:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c: okay the code from Norm is really non
portable and break everywhere except on Sun and Linux
platform. Compile it only on those targets.
Sat Sep 15 06:25:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/date.c: fixed some bugs (reported by Charles Bozeman
and Justin Fletcher)
Fri Sep 14 15:22:30 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c: Fixing bug #60415
* tests/docs/Makefile.am tests/docs/bug-61.xml
tests/general/Makefile.am tests/general/bug-61.*: added a
specific example in the regression tests
Fri Sep 14 12:42:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
* tests/docbook/result/*: the change in libxml to output
decimal charrefs instead of hexadecimal changed a lot of
docbook results
Thu Sep 13 15:30:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt.spec.in doc/Makefile.am: install xsltproc man page
Wed Sep 12 21:09:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing for 1.0.4
* doc/xslt.html doc/html/*: updated and regenerated docs
Wed Sep 12 18:10:33 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/date.c: fixed some compile warnings and disabled
debugging by default.
Wed Sep 12 17:00:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* win32/dsp/libxslt.def libxslt/variables.[ch]: trying to
incorporate comments from bug #59220
Wed Sep 12 05:51:32 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* configure.in libexslt/date.c libexslt/Makefile.am
libexslt/exslt.[ch] libexslt/.cvsignore: added implementation
of the EXSLT - Dates and Times core functions.
The exsltDateFormat* functions need to be reworked but it
works like this, even if it's quite messy.
* tests/exslt/strings/.cvsignore: added
Tue Sep 11 14:48:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: tell in usage that parameter strings
need to be quoted
Tue Sep 11 13:42:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/Makefile.am libxslt/transform.c: trying to close
bug #60304 on xsl:fallback usage
* tests/docs/Makefile.am tests/docs/bug-60.xml
tests/general/Makefile.am tests/general/bug-60.*: added a
specific example in the regression tests
Tue Sep 11 13:02:34 CEST 2001 Daniel Veillard <daniel@veillard.com>
* tests/documents/Makefile.am tests/documents/*: changed the
test to use doc%5Ffile instead of doc%20file, this is
sufficient to preserve the test capacities while closing
bug #60090
Tue Sep 11 12:33:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c : close #59570 by simply not providing
Norm's extension on FreeBSD.
* tests/general tests/docs: added a couple of new entries
in the testsuite
* libexslt/strings.c: NULL initialized a local variable
which was tested later on.
Mon Sep 10 22:52:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c tests/docbook/result/fo/*: applied fix from
#60143 and rebuilt the FO test outputs
Mon Sep 10 19:38:54 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/attributes.c libxslt/transform.c: fixed bug #59757
on inheritance of attributes from multiple attributes-sets
Mon Sep 3 02:14:58 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/Makefile.am libexslt/exslt.[ch] libexslt/strings.c:
added implementation of EXSLT - Strings.
Currently implemented functins are str:tokenize, str:align
str:concat and str:padding.
* configure.in tests/exslt/Makefile.am
tests/exslt/strings/Makefile.am
tests/exslt/strings/tokenize.1.*: added a test for the
str:tokenize function.
Fri Aug 31 13:51:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/libxslt.4 libexslt/libexslt.4 libxslt/Makefile.am
libexslt/Makefile.am: added man pages provided by Heiko Rupp
Wed Aug 29 21:23:54 MDT 2001 John Fleck <jfleck@inkstain.net>
* doc/tutorial/libxslttutorial.xml, libxslttutorial.html - update
tutorial text to add references to global variables cleanups
Wed Aug 29 21:05:43 MDT 2001 John Fleck <jfleck@inkstain.net>
* doc/xsltproc.1 - added xsltproc man page (note: this has not
been added into the build yet)
Wed Aug 29 22:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
* doc/tutorial/libxslt_tutorial.c doc/tutorial/libxslttutorial.html
doc/tutorial/libxslttutorial.xml: added global variables cleanups
to the example.
* tests/documents/Makefile.am: mjcox pointed to some missing files
Wed Aug 29 15:32:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/common.c: fixed a bug in exsltNodeSetFunction
Wed Aug 29 15:18:28 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/common.c: implemented version 3 of the exslt:node-set()
function.
* tests/exslt/common/Makefile.am
tests/exslt/common/node-set.3.{xml,xsl,out}: added a test
Mon Aug 27 08:27:21 MDT 2001 John Fleck <jfleck@inkstain.net>
* adding doc/xsltproc.html - html generated from xsltproc.xml,
update doc/xslt.html with link to xsltproc.html
Mon Aug 27 08:21:47 MDT 2001 John Fleck <jfleck@inkstain.net>
* adding doc/xsltproc.xml - user manual for xsltproc
Sun Aug 26 20:52:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/numbers.c libxslt/xslt.c: removed a couple of
warning raised by the Windows compiler (Chris Poblete)
Fri Aug 24 01:15:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.h libxslt/preproc.c libxslt/transform.c:
closed bugs #59212 and #59220
Thu Aug 23 23:18:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
* config.h.in configure.in xsltproc/xsltproc.c: complete test
of a DocBook XSLt transform with --nonet, need stat(), added
checking in configure.
Thu Aug 23 17:37:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: catalog integration, cleanup with
the --nonet option closing #59427
* libxslt/xslt.c: removed a small memleak when using a
stylesheet PI
Tue Aug 21 13:17:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
* //Makefile.am : fixed an error I propagated to nearly all
Makefiles.am on Saturday
Tue Aug 21 13:10:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/math.c libxslt/numbers.c: use xmlXPathIsNaN() and
xmlXPathIsInf()
* libxslt/pattern.c: tag a potential threading problem.
Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/numbers.c libexslt/math.c: Re-worked NaN and Inf
support.
Sat Aug 18 15:57:46 CEST 2001 Daniel Veillard <daniel@veillard.com>
* //Makefile.am : fixed a number of small problems with
Makefiles spotted by Albert Chin
Thu Aug 16 14:37:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
* win32/dsp/libxslt.def: minimal changes to compile 1.0.2 on
Windows/MSC
Thu Aug 16 12:58:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c: fixed a permutation of args to
xsltPrintErrorContext()
Wed Aug 15 15:19:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
* Makefile.am config.h.in configure.in libxslt/xsltwin32config.h:
release of 1.0.2
* tests/docs/Makefile.am libexslt/Makefile.am
tests/documents/Makefile.am tests/general/Makefile.am
xsltproc/Makefile.am: cleaning of Makefiles pointed out
by make distcheck
Wed Aug 15 13:54:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.h libxslt/transform.c: a bit of cleanup
Wed Aug 15 12:06:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/common.c libexslt/math.c libxslt/Makefile.am
libxslt/libxslt.h libxslt/xsltconfig.h.in: cleanup of includes
export xsltconfig.h at make install stage
Tue Aug 14 20:51:09 MDT 2001 John Fleck <jfleck@inkstain.net>
* doc/xslt.html updated xsltproc description with the many new
command line options Daniel has added, cleaned up some spelling
Tue Aug 14 18:41:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c libxslt/keys.c libxslt/templates.c
libxslt/transform.c libxslt/variables.c libxslt/xsltutils.c:
serious changes on Result Value Trees and NodeSets
w.r.t. deallocation and collect operations. Probably not
100% clean (merge of allocated trees smells like a problem).
Seems sufficient to close #58943 . Also check if XPath evaluations
failed, and in this case stops the processing and avoid
going further, goal is to not segfault on broken XSLT.
Tue Aug 14 15:32:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c libxslt/transform.c: trying to kill bug #58878,
some associated serious cleanup in the pattern code.
* tests/docbook/result/*: regenerated all the results for the
docbook testsuite. Seems killing #58878 also changes the
fo results seriously.
* tests/docs/Makefile.am tests/docs/bug-5[56].xml
tests/general/Makefile.am tests/general/bug-5[56].*: added
2 more tests
Tue Aug 14 05:01:30 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/xslt.c libxslt/xsltInternals.h libxslt/transform.c
libxslt/extra.[ch] libxslt/extensions.c libxslt/preproc.[ch]:
fixed compilation warnings due to recent changes to the extension
framework.
* libxslt/preproc.[ch] libexslt/common.c
fixed the precomputation of *:document elements
* libxslt/functions.h: fixed a compilation warning
Mon Aug 13 11:41:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c: applied fix suggested by Tom Moog
for xsltTimeStamp() in bug report #58012
Sun Aug 12 21:53:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/functions.c libxslt/keys.c libxslt/transform.c
libxslt/xsltutils.h: cleaned up the code w.r.t. handling
of 'non-standard' libxml element like namespace nodes.
* tests/docs/Makefile.am tests/docs/bug-54.xml
tests/general/Makefile.am tests/general/bug-54.*: added a
specific example in the regression tests
Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
* HACKING: added John Fleck right to commit in the doc subdir
Tue Aug 7 03:11:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: for heriting defaulted atts from the DTD
* tests/docs/Makefile.am tests/docs/bug-52.xml tests/docs/bug-53.xml
tests/general/Makefile.am tests/general/bug-52.*
tests/general/bug-53.*: Added a few new tests for recently fixed
stuff in libxml
* tests/xmlspec/REC-xml-20001006-review.html
tests/xmlspec/REC-xml-20001006.html: inheriting default attrs from
DTD changed the result by adding extra attributes to the HTML output
2001-08-06 Peter Williams <peterw@ximian.com>
* libexslt/Makefile.am, xsltproc/Makefile.am: Fixes for compiling
when srcdir != builddir.
Sun Aug 5 09:37:14 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/extensions.[ch] libxslt/preproc.[ch] libxslt/transform.c
libxslt/xslt.c libxslt/xsltInternals.h: modified extension framework
to easify extension element precomputation.
* libexslt/functions.c: uses the new framework and precomputes
func:result elements.
Sat Aug 4 20:42:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.c: bug fix on output="text" from Nicolas Marsgui
Fri Aug 3 14:23:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
* tests/general/bug-21-.out tests/general/bug-31-.out:
this got fixed by libxml patches
* win32/readme.msvc win32/dsp/* xsltproc/xsltproc.c
Makefile.am libexslt/exslt.[ch] libexslt/exsltconfig.h.in
libexslt/functions.c libexslt/math.c libxslt/win32config.h
libxslt/xsltconfig.h.in libxslt/xsltutils.h
libxslt/xsltwin32config.h libxslt/xsltwin32config.h.in:
Applied Igor Zlatkovic Win32 Facelift No.2 patch, and fixed
a few things related to those changes.
Wed Aug 1 13:58:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c: well one need one \n after DOCTYPE
* test//*/*.out: the output of some tests changed, looks better
actually
Wed Aug 1 13:21:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/xsltutils.c: avoid extra \n when serializing top
text nodes.
Wed Aug 1 10:37:50 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c: one more revision on Norm's localTime() function
Wed Aug 1 01:37:41 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/sets.c: fixed bugs in exsltTrailingFunction and
exsltLeadingFunction when passing an empty node-set as the
second argument
* libxslt/functions.[ch]: gave priority to context-level functions
over extension module functions. This allows a function declared
with a func:function element to override an extension module
function for example. This is a bit hackish...
* tests/exslt/sets/{lead,trail}ing.1.out: fixed errors. The result
values didn't conform to the expected values. This is a bug in
the EXSLT official use cases.
Tue Jul 31 23:53:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
* config.h.in configure.in libxslt/extra.c: tried to integrate
Norm's implemntation of localTime()
Tue Jul 31 03:47:10 EDT 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extra.c: fixed a serious proble is node-set was called
on a nodeset
* tests//*/Makefile.am: fixed the rule to rebuild xsltproc
Lun Jul 30 05:47:43 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/functions.c: fixed memory leaks
Sun Jul 29 08:37:59 EDT 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/functions.c libxslt/extensions.[ch] libxslt/extensions.h
libxslt/xslt.[hc] libxslt/xsltInternals.h xsltproc/xsltproc.c:
more cleanup of the problems introduced with EXSLT, also closes
bug #58180
Sat Jul 28 08:25:05 MDT 2001 John Fleck <jfleck@inkstain.net>
* doc/internals.html - general cleanup
Fri Jul 27 04:00:38 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* configure.in tests/Makefile.am tests/exslt/*: added some tests
to check EXSLT conformance
* libexslt/sets.c: fixed a typo when registering has-same-node
Fri Jul 27 12:33:52 EDT 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/extensions.c xsltproc/xsltproc.c: quick cleanup
of memory allocations, raise a bug in the test suite, also
need to be centralized as a single cleanup function.
Fri Jul 27 10:50:39 EDT 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/transform.[ch]: applied changes from Tom Moog #58002
* libexslt/functions.c libxslt/documents.c libxslt/extensions.c:
Some cleanup, there is still a memory leak left and some warnings
in libexslt.
Thu Jul 26 19:05:48 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libxslt/extensions.[ch] libxslt/functions.[ch] libxslt/preproc.c
libxslt/transform.[ch] libxslt/variables.c libxslt/xslt.c
libxslt/xsltInternals.h: new extension framework.
Added stylesheet module data, top-level and extension elements
precomputing, global registration of top-level elements and
extension elements and functions.
Extensions are no longer initialized from extension-element-prefixes
declarations but when modules need the data.
init/shutdown functions registered with xsltRegisterExtModule{,Full}
only allocate and free module data, they shouldn't register the
elements and functions any more.
* libxslt/xsltutils.c: fixed a bug in xsltPrintErrorContext when
@node wasn't NULL.
* libxslt/xslt.c: fixed xsltPrecomputeStylesheetTop which allowed
non-XSLT top-level elements before any xsl:import element.
* libexslt/common.c libexslt/functions.c libexslt/math.c
libexslt/sets.c: adapted to use the new extension framework.
* libxslt/functions.c libxslt/extensions[ch] xsltproc/xsltproc.c:
moved the test module from functions.c to extensions.[ch],
modified it to use the new extension framework. Updated xsltproc
to register the test module.
Thu Jul 26 10:20:19 EDT 2001 Daniel Veillard <daniel@veillard.com>
* libxslt/pattern.c: fixed an ugly problem with namespaces
in templates compilation
* tests/namespaces/tst4.*: added a specific testcase
* libxslt/transform.c: reenabled debug
Tue Jul 24 17:45:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
* configure.in libxslt.spec.in libxslt/xsltwin32config.h:
releasing 1.0.1
* doc/html/*.html: updated the docs.
* xsltproc/xsltproc.c: activate line numbering unfortunately
this works only with CVS, libxml2-2.4.1 is broken in this respect
Mon Jul 23 23:35:00 HKT 2001 William M. Brack <wbrack@mmm.com.hk>
* libxslt/documents.c enhancement to xsltFindDocument to
cater for the Matt Sergeant patch
Mon Jul 23 09:32:27 MDT 2001 John Fleck <jfleck@inkstain.net>
* updating libxslt tutorial to include param support
Mon Jul 23 20:12:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
* libexslt/math.c: small cleanup
* libxslt/functions.c: patch to document('') from Matt Sergeant
* libxslt/xsltInternals.h libxslt/xsltutils.[ch]: profiler on Windows
c.f. bug #57464 from Tom Moog
2001-07-19 Darin Adler <darin@bentspoon.com>
* configure.in: Add HTML_DIR definition.
* xsltproc/.cvsignore: Ignore some generated files.
2001-07-18 Peter Williams <peterw@ximian.com>
* xsltproc/Makefile.am (INCLUDES): Fix compiling when
srcdir != builddir.
2001-07-17 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/.cvsignore libexslt/Makefile.am libexslt/utils.[ch]
libexslt/common.c libexslt/functions.c libexslt/math.c
libexslt/sets.c: removed utils.[ch] as their content is
integrated in libxml
* libexslt/sets.c: uses the new libxml functions
* libxslt/extra.[ch]: removed exsl:document
* AUTHORS: added /me
2001-07-16 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/.cvsignore: some more generated files to ignore
* libexslt/Makefile.am: utils.h not installed anymore
* libexslt/common.c libexslt/exslt.[ch] libexslt/functions.c
libexslt/math.c libexslt/sets.c:
changed function prefix from exsl* to exslt*
{common.c,exslt.c} moved exsltLib{rary,exslt,xslt,xml}Version
from common.c to exslt.c
{common.c} removed exslNodeSetFunction, uses xsltFunctionNodeSet
instead
* libxslt/extra.c: fixed xsltFunctionNodeSet to accept
XPATH_NODESET arguments in addition to XPATH_XSLT_TREE
* xsltproc/xsltproc.c: updated to use the new function prefix
2001-07-15 Darin Adler <darin@bentspoon.com>
* libxslt/.cvsignore:
* tests/XSLTMark/.cvsignore:
* tests/extensions/.cvsignore:
* tests/xmlspec/.cvsignore:
Some more generated files to ignore.
Mon Jul 16 14:26:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* Makefile.am configure.in libexslt/Makefile.am:
Integration of libexslt in the build system
* libxslt/Makefile.am libxslt/xsltproc.c libxslt/xsltutils.c
xsltproc/Makefile.am xsltproc/xsltproc.c:
Moved xsltproc to a separate directory, linked it to libexslt,
and added exslt version reports to -V
* tests/*/Makefile.am: updated the path to xsltproc
* libexslt/common.c libexslt/exslt.h libexslt/exsltconfig.h.in
libexslt/functions.c libexslt/math.c libexslt/sets.c: added
versionning informations, some cleanup, and added documentation
to a couple of exported functions
Sun Jul 15 15:27:47 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/Makefile.am: account for new source files
* libexslt/.cvsignore: added
Sun Jul 15 05:02:50 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
* libexslt/exslt.[hc] libexslt/common.[hc] libexslt/functions.[hc]
libexslt/math.[hc] libexslt/sets.[hc] libexslt/utils.[hc]:
start implementing EXSLT
Sun Jul 15 16:01:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/numbers.c libxslt/numbersInternals.h libxslt/preproc.c:
trying to accept AVT for "format" in xsl:number
Fri Jul 13 16:57:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* win32/libxslt/libxslt.defs: trying to close #57460 by adding
xsltProfileStylesheet
Thu Jul 12 21:31:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/documents.c libxslt/extensions.c libxslt/extra.c
libxslt/functions.c libxslt/imports.c libxslt/keys.c
libxslt/namespaces.c libxslt/numbers.c libxslt/pattern.c
libxslt/preproc.c libxslt/templates.c libxslt/transform.c
libxslt/variables.c libxslt/xslt.c: provide context for
error messages. Requires libxml head changes.
* libxslt/xsltutils.c libxslt/xsltutils.h: fixed a --profile
problem
Wed Jul 11 00:32:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libexslt/Makefile.am: initial EXSLT framework
Tue Jul 10 18:03:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt/xsltwin32config.h: releaseing 1.0.0
* win32/libxslt/libxslt.def: added another entry point
* libxslt/transform.c: fixed a comment block
* doc/xslt.html doc/html/*: updated and regenerated the docs
Tue Jul 10 17:25:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* win32/libxslt/libxslt.def: added missing functions
Tue Jul 10 16:48:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES libxslt/xsltproc.c libxslt/transform.c
libxslt/xsltInternals.h: added Embedding Stylesheets
* tests/REC/Makefile.am tests/REC/stand-2.7-1.*: added the test
from the REC about it
* libxslt/transform.c libxslt/extra.[ch] libxslt/preproc.c:
tried to accomodate the various (and changing) proprietary
ways of implementing chunking.
* tests/docbook/result/xtchunk/html: now output is generated in
ISO-8859-1
Mon Jul 9 23:23:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: small cleanup
* libxslt/transform.c libxslt/xslt.c : patch from Michal Sajdak
for cdata/text handling
Mon Jul 9 22:02:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.c: small fix for xsl:message by Stephane GUIBOU
* tests/documents/Makefile.am tests/documents/message.*: added
a specific regression test
* libxslt/transform.c: fixed an infinite loop
* configure.in doc/Makefile.am: attempt to add --with-html-dir,
this may work
Mon Jul 9 15:55:14 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/xslt.c libxslt/xsltInternals.h:
fixed exclude-result-prefixes handling and how namespaces
propagate from the stylesheet to the result in general, this
is a serious cleanup.
* tests/general/bug-3[67]-inc.xsl tests/general/bug-6-.xsl
tests/general/itemschoose.out tests/namespaces/extra.xsl
tests/REC/test-10-1.xsl tests/REC/test-10-2.xsl
tests/REC/test-11.2-1.xsl tests/REC/test-11.2-2.xsl
tests/REC/test-11.2-6.xsl tests/REC/test-15-1.xsl
tests/REC/test-16.1-1.xsl tests/REC/test-16.1-2.xsl
tests/REC/test-5.4-1.out tests/REC/test-5.4-2.out
tests/REC/test-5.4-3.out tests/REC/test-5.4-4.out
tests/REC/test-7.1.1-2.out tests/REC/test-7.1.1-2.xsl
tests/REC/test-7.1.1-3.out tests/REC/test-7.1.1-3.xsl
tests/REC/test-7.1.1.out tests/REC/test-7.1.3.xsl
tests/REC/test-7.3.xsl tests/REC/test-7.4.xsl
tests/REC/test-7.6.1-1.xsl tests/REC/test-7.6.1-2.xsl
tests/REC/test-7.6.1-3.xsl tests/REC/test-7.6.2-1.xsl:
fixed and rechecked all the tests where the namespace
propagation was wrong either taht the rules were not applied
correctly or that superfluous namespaces were declared in the
stylesheets
Sun Jul 8 22:12:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extra.c libxslt/functions.c libxslt/transform.[ch]
libxslt/variables.h: Norm pointed out that element-available()
didn't work, implemented it
* tests/extensions/Makefile.am tests/extensions/list.*: added
a test for all registered xslt element, function and default
extensions.
Sun Jul 8 20:44:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/documents/Makefile.am 'tests/documents/doc file.xml'
tests/documents/docfile.xml tests/documents/test.result
tests/documents/test.xml tests/documents/test.xsl:
added a test for URI-escaping on document() input
Sun Jul 8 16:34:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-49-* tests/docs/bug-49-*
tests/general/bug-50-* tests/docs/bug-50-*: added a
couple of regression tests for bugs posted on the list
Sun Jul 8 15:40:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: avoid generating CDATA node in document
tree when parsed, force generation of text nodes instead.
Sun Jul 8 14:39:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/extensions.html: fixed a number of typo found by Dan York
* libxslt/xsltutils.c: improved the profiling ouput, added the
average value too.
Sun Jul 8 00:01:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: tryingt to fix a problem raised by Norm
Sat Jul 7 23:19:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* config.h.in configure.in: added gettimeofday() check
* libxslt/transform.c libxslt/xsltInternals.h libxslt/xsltutils.[ch]:
profiling works option --profile (or --norman ;)
Sat Jul 7 18:58:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/templates.c libxslt/transform.c libxslt/transform.h
libxslt/variables.c: big cleanup on the way templates or
template fragments are processed, cleanup of stack building
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-4[1-8]-* tests/docs/bug-4[1-8]-*: added a
series of regression test for the variable/params lookups
* libxslt/transform.c libxslt/xsltutils.[ch] libxslt/xsltproc.c:
started working on profiling code, there is just invocation counting
yet but the framework is in place.
Sat Jul 7 11:20:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-40-* tests/docs/bug-40-*: added a specific
regression test for the variable scope within templates problem
Sat Jul 7 17:05:00 HKT 2001 Wiliam Brack <wbrack@mmm.com.hk>
* xsltInternals.h variables.c transform.c:
fixed problem with variable scope within templates
Fri Jul 6 17:42:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/extensions.html doc/internals.html doc/xslt.html:
added a documentation on writing libxslt extensions, and
added links to the main page
* libxslt/functions.c libxslt/xsltInternals.h
Fri Jul 6 14:30:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
* cleaned up many comments and error messages
Fri Jul 6 01:43:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt/xsltwin32config.h: released 0.14.0
* doc/xslt.html: added 0.14.0 release
Fri Jul 6 01:00:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/html/*: rebuilt docs before release
* libxslt/extensions.c: fixed a function doc header
Fri Jul 6 00:40:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES: updated
* libxslt/xslt.c libxslt/xsltInternals.h: added exclude-result-prefix
support
* tests/REC/Makefile.am tests/REC/test-7.1.1-[23]*: added a couple
of specific tests
* tests/xmlspec/REC-xml-20001006-review.html: seems this changed
something there, not visually perceptible
Thu Jul 5 22:49:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/result/: the change in libxml affected the
output of the Docbook tests (of course it was detected on
a DocBook example)
Thu Jul 5 15:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES: updated
* libxslt/transform.c: added cdata-section-elements
* tests/REC/Makefile.am tests/REC/test-16.1-*: added 2 tests from
the REC
Thu Jul 5 10:44:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES: updated
* libxslt/xsltutils.c: do not dump document for which there have
been no generated content
* tests/multiple/result.xml tests/namespaces/extra2.out: fixed
test output accordingly
* libxslt/transform.c libxslt/preproc.c: added xsl:fallback support
* tests/REC/Makefile.am tests/REC/test-15-1.*: xsl:fallback test
* tests/xmlspec/Makefile.am tests/docbook/Makefi;
; ; ; ; ; ; ; ; ; ; ; r>
* Makefile.am libxslt/Makefile.am libxslt/numbers.c
libxslt/win32config.h libxslt/xsltconfig.h.in libxslt/xsltproc.c:
Patches for Windows mostly contributed by Yon Derek
* win32/libxslt/libxslt.def win32/libxslt/libxslt.dsw
win32/libxslt/libxslt_so.dsp win32/libxslt/xsltproc.dsp:
Project file for Mircrosoft C provided by Yon Derek
Sat Jun 23 14:20:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.c: closing bug #56517, fixed a number of
problems in the patterns compilations, priorities and debug
* libxslt/transform.c: improved the template debug message
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-39-* tests/docs/bug-39-*: added a specific
regression test for #56517
Fri Jun 22 16:17:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.c: avoid a stupid bug when compiling with
libxml < 2.3.11 and without LIBXML_DEBUG_ENABLED
Fri Jun 22 00:11:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/numbers.c: fix of a small bug
* libxslt/transform.c libxslt/variables.c libxslt/xslt.c: cleanups
while bug-hunting
Tue Jun 19 16:13:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/Makefile.am: added XHTML and XSL FO to the
regression tests
* tests/docbook/xhtml/*: added XHTML stylesheets
* tests/docbook/fo/*: added XSL FO stylesheets
* tests/docbook/result/xhtml/*: added XHTML results
* tests/docbook/result/fo/*: added XSL FO results
Tue Jun 19 00:20:32 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* HACKING: fixed, added William
Mon Jun 18 18:36:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.c: forgot to flush in xsltSaveTo() in html and
xml cases, and fixed text output to be recursive in text nodes
lookups
Mon Jun 18 15:44:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: patch from Tony Graham to cleanup libxml2 detection
Sun Jun 17 17:42:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.[ch]: fixed xsltGetNsProp, i always forget
'namespace' is a reserved C++ identifier
Sun Jun 17 17:08:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: adding 0.12.0 release
Sun Jun 17 13:15:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: preparing 0.12.0 release
* libxslt/transform.c: a bit of cleanup on the XInclude defaults
* libxslt/xsltconfig.h.in: added doc inline comment
* libxslt/xslt.[ch] libxslt/xsltproc.c: added more version informations
and enriched xsltproc --version to show them
* doc/html/*.html: rebuilt the docs
* doc/Makefile.am libxslt.spec.in: try to make sure John Fleck
tutorial ends up in the tars and RPMs
Sat Jun 16 23:58:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt.spec.in: updated the descriptions
Sat Jun 16 23:26:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/namespaces.[ch]: added a single namespace def copy
operation xsltCopyNamespace(). cleaned up xsltCopyNamespaceList()
* libxslt/transform.c: cleaned up xsltCopyNode to cope with
any kind of input nodes.
* libxslt/variables.c: checked and closed the last TODO about
namespace propagation
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-38-* tests/docs/bug-38-*: added a specific
regression test for #56115
Sat Jun 16 09:27:27 MDT 2001 John Fleck <jfleck@inkstain.net>
* updating tutorial: adding discussion of freeing memory, image
files for callouts, link to xsltproc.c code
Sat Jun 16 15:23:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: bug #56267 was still not fixed, forgot
to remove the old code
* tests/general/bug-37-.xsl: wrong reference to 36 fixed, this does
the test for good
Sat Jun 16 00:32:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: fixed bug #56267, namespaces must
be propagated when evaluating local variables.
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-37-* tests/docs/bug-37-*: added a specific
regression test for #56267
Fri Jun 15 18:29:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/keys.c: avoid a possibility of an uninitialized variable
* libxslt/documents.c libxslt/transform.[ch] libxslt/transform.h
libxslt/xsltInternals.h libxslt/xsltproc.c: Implement Raphael Hertzog
request to have xinclude processing done on document() if requested
Thu Jun 14 20:52:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/Makefile.am: applied patch from Sander Vesik for -j2
Thu Jun 14 10:07:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c: removed a warning on xsl:transform
* tests/docs/Makefile.am tests/docs/array.xml tests/general/Makefile.am
tests/general/array.out tests/general/array.xsl: added a new
test fround in xsl-dev
Wed Jun 13 23:12:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/result/html/*.html tests/XSLTMark/xslbench[12].out
tests/xmlspec/REC-xml-20001006*.html: the changes to the HTML
serializer of libxml impacted the result of some tests. Checked
that the XML REC renders identically.
Mon Jun 11 07:19:06 MDT 2001 John Fleck <jfleck@inkstain.net>
* fixing embarassing typos in doc/tutorial/libxslttutorial.xml and
generated html
Tue Jun 12 07:42:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: fixed bug #55670, namespaces must
be propagated when evaluating global variables.
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-36-* tests/docs/bug-36-*: added a specific
regression test for #55670
Mon Jun 11 09:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: linked to the tutorial
Sun Jun 10 19:36:31 MDT 2001 John Fleck <jfleck@inkstain.net>
* doc/tutorial/libxslt_tutorial.c, libxslttutorial.html,
libxslttutorial.xml
adding tutorial
Sun Jun 10 21:52:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: closed bug #55723, problem was due to
a limitation of xsltGetNamespace() when the insertion point
is the document.
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-35-* tests/docs/bug-35-*: added a specific
regression test for #55723
Sun Jun 10 13:37:33 HKT 2001 William Brack <wbrack@mmm.com.hk>
* libxslt/transform.c: fixed problems with document() in
xsltApplyTemplates and xsltForEach. Cleaned up several
error messages.
* libxslt/keys.c: saved and restored ctxt->document within
xsltInitKey to fix problem with keys when doc changed
* libxslt/documents.[ch]: added new procedure xsltFindDocument
needed when document() causes a change of doc within
xsltApplyTemplates and xsltForEach
Thu Jun 7 21:31:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.[ch]: closing bug #55683 required to add
xsltGetNsProp()
* libxslt/attributes.c libxslt/imports.c libxslt/namespaces.c
libxslt/preproc.c libxslt/templates.c libxslt/xslt.c:
Updated to use the new function
* tests/XSLTMark/prettyprint.out tests/docbook/result/html/*.html:
the fixes in the serialization of <pre> in HTML in libxml
led to a number of changes in the output
Thu Jun 7 04:23:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-32-* tests/docs/bug-32-*: added a specific
regression test for #55722
Wed Jun 6 09:48:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: updated to ask to not send mail directly
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-33-* tests/docs/bug-33-*: added a specific
regression test for #55722
Wed Jun 6 11:07:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.c : trying to fix #55670
* tests/XSLTMark/reverser.out : result of test changed when
William fixed XPath
Sat Jun 2 06:52:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: updated with 0.11.0
Fri Jun 1 11:30:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt.spec.in: released 0.11.0
Mon May 28 12:54:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: William M. Brack found a small bug
when call-template didn't find the template.
Sat May 26 17:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: fixed handling of PI and comments
(bug raised by Brent M Hendricks).
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-31-* tests/docs/bug-31-*: added a specific
regression test
Wed May 23 13:25:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: added --xinclude in the option list,
patch from Raphael Hertzog
* test/docbook/Makefile.am: force at least the gdp-handbook.xml
test in the normal testsuite
Wed May 23 00:05:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: Mark Vakoc found a bug in variable eval
at the top template level
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-30-* tests/docs/bug-30-*: added a specific
regression test
Tue May 22 18:52:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c: fixed the document() bug reported by
Stephane GUIBOUD-RIBAUD
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-29-* tests/docs/bug-29-*: added a specific
regression test
Tue May 22 15:09:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt/Makefile.am: fixed bug #54953
* libxslt/attributes.c: cleanup pointed by Joe Orton
* libxslt/xsltproc.c: added --catalogs to load catalogs from
$SGML_CATALOG_FILES
* libxslt/functions.c: cleanup unreached code
* configure.in config.h.in libxslt/xsltproc.c: guarded the
include with preprocessor definitions
Sun May 20 20:55:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/documents/Makefile.am tests/general/Makefile.am
tests/multiple/Makefile.am tests/namespaces/Makefile.am
tests/numbers/Makefile.am tests/xmlspec/Makefile.am
tests/REC/Makefile.am tests/REC1/Makefile.am tests/REC2/Makefile.am
tests/XSLTMark/Makefile.am tests/docbook/Makefile.am
configure.in: Makefiles cleanup from Joe Orton
Sun May 20 15:20:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/result/html/external.html
tests/docbook/result/html/graphics.html
tests/docbook/result/html/gtest.html
tests/docbook/test/external.xml tests/docbook/test/subdoc.ent:
Added a test from coolo for IDs in external parsed entities
and fixed 2 outputs
Sat May 19 22:28:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.[ch] libxslt/xsltconfig.h.in libxslt/xsltproc.c:
added --version info to xsltproc closing #54952
Sat May 19 17:41:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/documents/Makefile.am tests/general/Makefile.am
tests/multiple/Makefile.am tests/namespaces/Makefile.am
tests/numbers/Makefile.am tests/xmlspec/Makefile.am:
Seems some of the changes I made for 0.9.0 Makefiles were
not commited ...
Sat May 19 17:23:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: preparing 0.10.0 release
* doc/xslt.html: updated
* doc/html/* : rebuilt the docs
Fri May 18 16:48:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.c libxslt/variables.c libxslt/templates.c
libxslt/keys.[ch] libxslt/functions.c: cleanups for ctxt->inst
avoiding modifying stylesheet informations, and fixing
document() when called from a global variable init
Thu May 17 17:24:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
add ctxt->inst to allow stylesheet element lookup (needed
for document() fix)
* libxslt/*.[ch]: generate docs for the structures and
macros, general cleanup for docs
* doc/html/*.html: regenerated all docs
Wed May 16 23:00:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extra.c libxslt/transform.c libxslt/variables.[ch]
libxslt/xsltInternals.h: optimizations, cleanup of global
variables handling
Wed May 16 12:29:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extensions.c libxslt/preproc.c libxslt/transform.c
libxslt/variables.c: force the precompilation of XPath expressions
at stylesheet compilation time
Tue May 15 14:34:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/keys.c libxslt/transform.c: avoid some possibilities
of crashes on debug
* tests/REC/Makefile.am: be less verbose if things really go wrong
* tests/docs/Makefile.am tests/general/Makefile.am
tests/docs/bug-28-.xml tests/general/bug-28-.*: added bug-28 in
the regression tests
Sat May 12 12:39:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/xsltutils.c: fixed the default
detection method to generate HTML documents
* tests/REC/test-2.5-1.out tests/REC/test-8-1.out
tests/REC/test-9.1-2.out tests/REC2/html.xml tests/XSLTMark/game.out
tests/XSLTMark/html.out tests/XSLTMark/products.out
tests/XSLTMark/xslbench1.out tests/XSLTMark/xslbench2.out
tests/XSLTMark/xslbench3.out tests/general/bug-15-.out
tests/general/bug-5-.out: updated a number of tests output
accordingly
Sat May 12 09:43:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: use LIBXML_DOCB_ENABLED, William M. Brack
Fri May 11 19:12:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/templates.c libxslt/transform.c: fixed bug #54446
about attribute being generated twice. Fixed a number of related
bugs on attributes handling.
* tests/REC/test-7.1.4.out: this changed an attribute generation
order
* tests/docs/bug-27-.xml tests/general/bug-27-.*: added test
Fri May 11 17:08:14 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/templates.c: fixed bug #54451 on escaped curly brackets
* tests/docs/bug-26-.xml tests/general/bug-26-.*: added test
Fri May 11 16:20:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in tests/XSLTMark/Makefile.am: try to handle gracefully
the cases where perl is not in the path (nor in /usr/bin)
* tests/docbook/result/html/gdp-handbook.html
tests/docbook/result/html/kwrite.html
tests/docbook/test/gdp-handbook.xml
tests/docbook/test/kwrite.xml: commited a few more DocBook tests
Wed May 9 12:29:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: added --nonet and --warnnet to catch
cases where a network access is needed to load a DTD or entity
* tests/docbook/Makefile.am: added --nonet
* tests/docbook/test/classsynop.xml tests/docbook/test/docbook40.xml:
fixed 2 tests as a result
Wed May 9 10:43:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in tests/docbook/Makefile.am tests/docbook/**/Makefile.am:
try to remove the unneeded docbook Makefile stuff
Tue May 8 16:18:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: fixed a link error
* libxslt/transform.c libxslt/xsltutils.c: fixed DOCTYPE generation
* libxslt/xsltproc.c: cleaned up the --repeat loop
* tests/documents/result.xhtml tests/xmlspec/REC-xml-20001006*.html:
fixed the DOCTYPE in tests output
* tests/docs/bug-25-.xml tests/doc/Makefile.am
tests/general/bug-25-.* tests/general/Makefile.am : added a new
test case and fixed the EXTRA_DIST
Mon May 7 22:27:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extra.c: add more debug to xsltDebug
* libxslt/transform.c: spent a few hours tracking down an ugly
race like bug in xsltCopyTreeList() arghhh
* libxslt/xsltproc.c: call xmlInitMemory() explictely
Mon May 7 11:38:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/internals.html: more work done on the doc, mostly complete
except the section on the XSLT stack and the extensions API
since both still need more work.
Sun May 6 15:03:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/internals.html doc/contexts.* doc/object.*: more work done
on the doc
Sun May 6 00:18:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/internals.html: more work done on the doc
Sat May 5 18:58:13 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/transform.c tests/XSLTMark/xslbench1.out: Another fix
for the CDATA output
Sat May 5 18:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.c: do not escape content of CDATA nodes on output
Sat May 5 17:52:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/internals.html doc/node.fig doc/node.gif doc/processing.fig
doc/processing.gif doc/stylesheet.fig doc/stylesheet.gif
doc/templates.fig doc/templates.gif: started writing tye doc
on how libxslt works.
Sat May 5 17:13:16 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/numbersInternals.h libxslt/numbers.c
tests/numbers/format-number.out tests/XSLTMark/number.out:
Patch from William Brack to bring format-number() more in alignment
with the Java implementations.
* libxslt/xslt.c tests/XSLTMark/xslbench1.out: Do not remove CDATA
from stylesheet
Fri May 4 20:10:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/result/html/* tests/general/bug-11-.out
tests/multiple/result.xml tests/XSLTMark/*.out
libxslt/transform.c: all the PUBLIC and SYSTEM IDs
were swapped
Fri May 4 19:09:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: add a --docbook option if your libxml2
has the SGML DocBook support compiled in.
Fri May 4 17:06:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/general/bug-2[0-4].* tests/docs/bug-2[0-4].*: added more
tests especially on sorting
* test/xsltutils.c: oops multiple sorts was actually broken !!!
this should fix it
Thu May 3 19:02:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* TODO configure.in libxslt.spec.in: getting ready for 0.9.0
release
* doc/html/* doc/xslt.html: updated and regenerated the docs
Thu May 3 17:56:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* xsltutils.[ch] transform.c: implemented multiple levels of
sorting
* test/REC/test-10-2.*: added a really small test for it
Wed May 2 14:04:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/xslt.c: fixed xsl:text processing
there can be multiple text and CDATA child
Wed May 2 10:55:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/multiple/makefile.am: fixing #54015
* tests/XSLTMark/makefile.am tests/docbook/makefile.am: fixing #54014
and a similar problem for the docbook tests
Mon Apr 30 22:31:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/general/bug-8-.out: fixed in libxml xpath
* libxslt/templates.[ch] libxslt/pattern.c: fixed an namespace
problem in predicates within a pattern. Spotted another
potential namespace problem
Mon Apr 30 19:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c libxslt/xslt.c libxslt/xsltInternals.h
libxslt/xsltproc.c: counting errors and warnings at compilation
time. Stop processing in case of error.
* tests/docs/bug-1[89]* tests/general/-1[89]* tests/general/inner.xsl:
added more namespace related bug checks
Mon Apr 30 13:47:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c libxslt/variables.c: found the source of a
memory leak with DocBook introduced this w.e.. bit of cleanup.
* tests/docbook/result/html/*.html : regenerated the DocBook tests
results.
Sun Apr 29 18:54:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: fixing bug #53769
* tests/general tests/docs: added new examples from the
bug reports to the regression tests, updated the Makefiles
Sun Apr 29 11:47:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* preproc.[ch] templates.[ch] variables.[ch] xslt.c xsltInternals.h
attributes.c extensions.[ch]: moved all stylesheet precomputation
at stylesheet loading time (stylesheet transform should be thread
safe now), improved params and variables evaluations (but optim
is not complete yet).
* TODO: updated
Sat Apr 28 16:28:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c : changed the way --repeat works when
used twice
Sat Apr 28 16:19:06 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/numbers.c libxslt/preproc.c tests/REC/test-7.7-3.out:
fixed default formatting
Sat Apr 28 14:20:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c : fixed <xsl:sort/> bug reported by Ankh
* libxslt/xsltproc.c : added an option to process HTML input
Thu Apr 26 21:13:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: Tony Gorski found a bug pointed by
a compiler on Tandem
* tests/documents/result.xhtml: this results in a small
change in the output of this test
Thu Apr 26 16:33:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* test/general/bug-14*.* test/docs/bug-14*.xml: added testcase from
bug #53689
Wed Apr 25 16:58:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* transform.c: fixed text and cdata handling in xsl:copy
* xslt.c : avoid crashing on invalid xslt input
* test/general/bug-*.* test/docs/bug-*.xml : added a number of
bugs submitted to the regression tests
Wed Apr 25 12:42:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c : Renaud Chaillat provided a fix for #53535
Sun Apr 22 22:47:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: updated to 0.8.0
Sun Apr 22 22:46:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* transform.c: fixed a bug introduced on handling #53401
Sun Apr 22 22:27:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* transform.c: fixed #53401
* configure.in libxslt/*.c: allowed to suppress debug reporting
functionalities but it brings not noticeable improvements
* doc/xslt.html doc/html/*: updated and regenerated docs
Wed Apr 18 15:24:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/general/bug-5-.out tests/multiple/out/*.orig
tests/xmlspec/REC-xml-20001006*.html: fixed the test output
following the libxml changes
Wed Apr 18 12:05:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c: applied TOM's patch to key()
* tests/XSLTMark/chart.out tests/XSLTMark/dbonerow.out
tests/XSLTMark/prettyprint.out tests/multiple/out/*.html:
small HTML output change
Mon Apr 16 16:14:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
fixed current()
Tue Apr 17 10:10:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/keys.c libxslt/preproc.c libxslt/templates.c
libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
fixed for the most part the namespace handling problem in XPath
expression computations.
* test/doc/ tests/general: added bug 5 and 6
Thu Apr 12 14:40:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.c: applied William M. Brack patch fixing the
template lack of support for priority
* test/XSLTMark/*.out : this fixed anumber of problems in the
XSLTMark output
Thu Apr 12 14:29:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c: removed warning in unparsed-entity-uri()
fixed a bug in generate-id()
* libxslt/transform.c: fixed null list result errors
* libxslt/transform.c libxslt/xsltutils.c: applied William M. Brack
fixes for sorting semantic
Wed Apr 11 14:25:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* config.h.in configure.in libxslt/xsltconfig.h.in: added
ansidecl.h test
* libxslt/xsltproc.c : added --xinclude option
* tests/XSLTMark/union.out : fixed the output
Tue Apr 10 20:05:00 CEST 2001 Fatih Demir <kabalak@gtranslator.org>
* .cvsignore & doc/.cvsignore: Added CVS ignore files.
Tue Apr 10 12:10:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: released 0.7.0
* tests/XSLTMark/Makefile.am: trying to solve some make distcheck
problems
Sun Apr 8 11:42:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c libxslt/keys.c libxslt/transform.c:
some checking against NULL pointers
Mon Apr 2 17:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in tests/Makefile.am tests/XSLTMark/* tests/multiple:
added the XSLTMark in the regression tests as well as multiple
output test from Ankh
* libxslt/functions.c libxslt/keys.c libxslt/transform.c
libxslt/variables.c libxslt/xsltutils.c: applied William M. Brack
patches and fixed a memory leak
* tests/docbook/result/html/*.html : updated the results after
William's patch
* tests/xmlspec/REC-xml-20001006-review.html
tests/xmlspec/REC-xml-20001006.html: libxml now don't invent
an HTML doctype when serializing HTML result, but adds the
encoding in ALT
Thu Mar 29 10:24:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: applied fix to xsltApplyTemplates from
William M. Brack
* test/docbook/result/html/*.html: this change the output
* tests/xmlspec/REC-xml-20001006-review.html
tests/xmlspec/REC-xml-20001006.html: this also fixed some of
the reference anchors generated for the XML spec
Mon Mar 26 18:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/attributes.c libxslt/extra.c libxslt/keys.c libxslt/numbers.c
libxslt/templates.c libxslt/transform.c libxslt/xsltconfig.h.in
libxslt/xsltutils.c: of course the way I defined
UNUSED breaks on old gcc version. Try to be smart and
also define it directly in xsltconfig.h
* tests/xmlspec/Makefile.am: fixed the timing arg test
Sun Mar 25 22:07:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.[ch] libxslt/variables.[ch] libxslt/xsltproc.c:
implemented command line parameter passing
* tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-20001006-review.html:
tested it by passing show.diff.markup=1 to build the review version too
Sat Mar 24 19:35:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Huge cleanup, I switched to compile with
-Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
-Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
-Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
-Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
* libxslt/attributes.c libxslt/extensions.c libxslt/extra.c
libxslt/functions.c libxslt/keys.c libxslt/numbers.c
libxslt/pattern.c libxslt/preproc.c libxslt/templates.c
libxslt/transform.c libxslt/variables.c libxslt/xslt.c
libxslt/xsltutils.c: basically made static unexported functions
avoided name clashes and flagged unused parameters.
Thu Mar 22 22:52:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: 0.6.0 yet another release
* doc/xslt.html doc/html/*: updated the docs
Wed Mar 21 23:19:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltInternals.h libxslt/xslt.c libxslt/transform.c
libxslt/templates.[ch] libxslt/preproc.c libxslt/extensions.[ch]
extended xsltEvalStaticAttrValueTemplate and
xsltEvalAttrValueTemplate to support foreign namespaces,
and fixed document()
Mon Mar 19 18:40:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* xsltutils.h: cleanup some garbage added last night
* xsltInternals.h variables.c transform.c templates.[ch]
preproc.c pattern.c keys.c: switched the whole XSLt processing
to use XPath precompiled expressions and reusing them.
* functions.c: some cleanup, seems people don't use
unparsed-entity-uri() the way it's supposed to be used
Mon Mar 19 01:08:05 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/keys.c libxslt/templates.c libxslt/transform.c
libxslt/variables.c libxslt/xsltutils.h: Changed to work
with the new way XPath is interpreted. This doesn't yet
take advantage of the separate parsing/evaluation phases
Wed Mar 14 15:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: robert@xsl.00008.org pointed out a
problem in xsl:copy-of in case of attributes
* tests/docs/Makefile.am tests/docs/bug-3-.xml
tests/general/Makefile.am tests/general/bug-3-.*:
added the test to the general regression suite
Wed Mar 14 14:21:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c: applied and fixed ptittom@free.fr patch
fixing some of the missing functionnalities in the XSLT
functions implementations.
Tue Mar 13 14:38:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/Makefile.am: nick@debian.org forwarded a fix
Tue Mar 13 10:29:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* README.cvs-commits: added, pointing to HACKING
* HACKING: added defines commit rules.
Mon Mar 12 14:43:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extra.c libxslt/variables.c: fixing compilation
when libxml was compiled without debug support
Sat Mar 10 13:50:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in: time for 0.5.0
* tests/docs/Makefile.am tests/general/Makefile.am: make sure the
new test files are included in the distribution
* doc/xslt.html : updated
* doc/html/*.html: regenerated the docs
Thu Mar 8 02:34:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docbook/result/html/*.html: regenerated the HTML
now that value-of an result tree don't include the fake root
Thu Mar 8 02:26:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/variables.c: removed a couple
of possibly uninitialized var probs
* tests/xmlspec/Makefile.am: run the processing without verbose
avoid raising generated id differences.
Wed Mar 7 23:22:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c libxslt/xsltInternals.h: fixed a stylesheet
reuse problem.
* libxslt/transform.c: fixed a bug which exaplined why no
optimization were resulting from preproc stuff
Wed Mar 7 21:51:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c libxslt/transform.c: a couple of nastyness
w.r.t. value of tree result (and attributes within it) fixed.
* tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-20001006.html:
Integrated the xmlspec to the test (i.e. diffed output for
changes).
Wed Mar 7 18:01:07 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* imports.c transform.c xslt.c xsltInternals.h: fixed a
strip-spaces problem
* tests/docs/*.xml tests/general/*.[xsl,out]: added reported
bugs to testsuite
Wed Mar 7 13:34:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.[ch]: finished integrating the current
state of the preproc optimizations.
* tests/xmlspec/diffspec.xsl: switched off diff printing
Wed Mar 7 12:46:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.c libxslt/transform.c: started rolling in
some of the optimizations.
Tue Mar 6 19:39:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* attributes.[ch] extra.[ch] preproc.c xsltInternals.h
transform.[ch]: previous commit broke a lot of stuff, fixing
and preparing for next step
Tue Mar 6 19:03:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/preproc.[ch] Makefile.am templates.[ch] transform.[ch]
xsltInternals.h: started working on optimizing stylesheet
element parsing. Just builds the extra informations so far.
* xsltutils.h: added a missing XPath decl
Tue Mar 6 09:52:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/variables.c: William M. Brack found a serious bug
with imports and global variables ...
Mon Mar 5 21:51:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.[ch] libxslt/transform.c: added
xsltCleanupTemplates() to clean up state left after processing.
Sun Mar 4 19:03:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: applied patch from William M. Brack
to support with-param in xsltApplyTemplates().
Sun Mar 4 17:53:13 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/pattern.c: fixed the compilation of patterns which
contains XPath NodeTypes. Handling of nested predicates.
Sat Mar 3 20:56:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c: save ctxt->node after for-each
Thu Mar 1 18:16:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt.spec.in: updated to 0.4.0 and 2.3.3
* doc/xslt.html: updated
Wed Feb 28 19:24:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extra.[ch] libxslt/transform.[ch] libxslt/xsltInternals.h:
added xsltDocumentElem implementing multiple file output,
including 1.1 xsl:document but yet untested.
Wed Feb 28 00:03:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/extensions.c: fixed stoopid bug
* libxslt/Makefile.am libxslt/extra.[ch]: added a new module
carrying extensions to the specification. Added node-set()
for existing saxon and xt namespaces and debug() in libxslt
namespace (http://xmlsoft.org/XSLT/namespace)
* libxslt/xsltutils.[ch] transform.c: moved xsltDebug to extra.c
plus cleanup.
* configure.in tests/Makefile.am tests/namespaces: added some
namespaces tests, including a test calling the extra debugging
function in libxslt namespace, worked first time !!!
Tue Feb 27 16:15:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.c: extension prefix support for the full stylesheet
* libxslt/transform.c libxslt/extensions.[ch]: more work should
start working
Mon Feb 26 22:59:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html : cleaned up, added a bit more description on
the API section.
Mon Feb 26 09:41:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/Makefile.am libxslt/extensions.[ch]: started working
on functions and element extensions. First on list will be
a document element.
Sun Feb 25 06:52:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in libxslt.spec.in: releasing 0.3.0
* doc/xslt.html: updated
Sun Feb 25 05:28:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in tests/docbook/html : oops forgot to add
the stylesheets themselves :-\
Sun Feb 25 04:51:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* configure.in tests/Makefile.am tests/docbook tree:
added docbook XSL based test suite
Sat Feb 24 14:02:05 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.c: reformat of messages
* libxslt/xsltproc.c: removed memleak on --noout
* libxslt/xsltInternals.h libxslt/variables.[ch] libxslt/transform.c:
changed again the way parameter are evaluated before a
call-template, seems to fix a few nasty bugs, memory alloc debug too
Wed Feb 21 09:10:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
fixed the param evaluation problem in apply-template
* libxslt/pattern.c: speed up seriously some context computation
* libxslt/xsltInternals.h: preparing for extension support
Mon Feb 19 19:34:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/Makefile.am: small cleanup
* libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
fixed current() I hope
Mon Feb 19 18:05:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/numbers.c libxslt/numbersInternals.h libxslt/xslt.c
libxslt/pattern.[ch] libxslt/xsltInternals.h: more work on
support of namespaces, both in templates and in XPath subexpressions
Sun Feb 18 19:11:26 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/xsltutils.c: xsltSortFunction uses Shell's sort
Sun Feb 18 17:13:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.c: when precompiled pattern is ALL, predicate
contextual info must be recomputed
Sun Feb 18 16:39:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xslt.h libxslt/transform.c: defined and exported xsltMaxDepth
* libxslt/xsltproc.c : added --maxdepth
Sun Feb 18 15:44:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltproc.c: added --novalid and --noout as well
as options printing when no args
* libxslt/variables.c libxslt/transform.c: trying to get rid
if some variable/params addressing errors.
Sat Feb 17 14:27:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES libxslt/attributes.c: fixed use-attribute-sets
* libxslt/xsltutils.c: add carriage return to xsl:message when
needed
Sat Feb 17 02:25:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/functions.c: fixed a bug with generate-id()
Sat Feb 17 00:51:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/xsltutils.c: started doing more useful stuff in
xsltDebug
* libxslt/transform.[ch] libxslt/variables.[ch] libxslt/templates.c
libxslt/xsltInternals.h: changed the way variables/params
are stored
* libxslt/xsltproc.c: removed a pedantic warning
* libxslt/variables.[ch]: found an ugly evaluation bug
Thu Feb 15 18:14:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/REC/Makefile.am: updated
Thu Feb 15 17:40:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxlst/functions.c: fixed ID generation
* doc/xslt.html doc/html/*.html: updated/regenerated the doc
Thu Feb 15 13:34:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/numbers.c: removed a couple of memleaks
Thu Feb 15 12:41:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.[ch]: exported pattern matching interfaces
for numbers.c and future debug module
* libxslt/numbers.c: updated to new interface, should avoid
unnecessary recompilation of patterns.
* libxslt/xsltutils.[ch]: cleanup
* tests/REC/gmon.out: removed :-)
Wed Feb 14 19:13:33 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/numbers.c: implemented level=any
* libxslt/transform.c: corrected some default values
* tests/REC/test-7.7-*.*: added
Wed Feb 14 18:07:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/pattern.c: priorities were horribly broken, hope it's
fixed
Wed Feb 14 15:39:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* FEATURES libxslt/imports.h libxslt/pattern.[ch]
libxslt/xsltInternals.h libxslt/transform.[ch]
libxslt/templates.c libxslt/xslt.c:
Added apply-imports, keep a stack of running templates
* libxslt/xsltutils.c: bugfixes, gather the output informations
down the cascade
* tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-2e.xsl
tests/xmlspec/diffspec.xsl tests/xmlspec/xmlspec.xsl: running
the real set of transformation on XML-1.0 2e generages a near
perfect HTML. Needs just more number fixes and implementation
and an obscure problem in 3.3.3
Tue Feb 13 20:31:03 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* libxslt/pattern.c: added xsltMatchPattern()
* libxslt/numbers.c: implemented "level=multiple" for xsl:number
Tue Feb 13 18:07:12 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/transform.c libxslt/xsltproc.c: cleanup and debug
* libxslt/xsltutils.[ch] : added a small debugging hook
Mon Feb 12 18:30:26 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/FEATURES libxslt/transform.c: added support for
disable-output-escaping in xsl:copy-of
* xmlspec/Makefile.am libxslt/variables.c libxslt/transform.c:
give more debugging info
Sun Feb 11 21:08:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* libxslt/documents.[ch] libxslt/functions.c libxslt/imports.c
libxslt/xslt.c libxslt/xsltInternals.h: changed teh way to store
Includes, more document changes
* libxslt/xsltutils.c: fix the output of doctype and what is or
is not HTML
* tests/REC/*.out tests/REC2/html.xml : changed output accordingly
* tests/Makefile.am tests/documents/* : added a new test from Stric
exercising document() among other things
Sun Feb 11 17:24:03 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
* FEATURES libxslt/transform.c libxslt/numbers.c: partial support
for the level attribute for xsl:number
* libxslt/numbers.c: internal restructuring
Fri Feb; ;
|