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
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<api name='libxslt'>
<files>
<file name='attributes'>
<summary>interface for the XSLT attribute handling</summary>
<description>this module handles the specificities of attribute and attribute groups processing. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltResolveStylesheetAttributeSet' type='function'/>
<exports symbol='xsltParseStylesheetAttributeSet' type='function'/>
<exports symbol='xsltApplyAttributeSet' type='function'/>
<exports symbol='xsltFreeAttributeSetsHashes' type='function'/>
</file>
<file name='documents'>
<summary>interface for the document handling</summary>
<description>implements document loading and cache (multiple document() reference for the same resources must be equal. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltFreeDocuments' type='function'/>
<exports symbol='xsltNewDocument' type='function'/>
<exports symbol='xsltFreeStyleDocuments' type='function'/>
<exports symbol='xsltLoadDocument' type='function'/>
<exports symbol='xsltFindDocument' type='function'/>
<exports symbol='xsltLoadStyleDocument' type='function'/>
<exports symbol='xsltNewStyleDocument' type='function'/>
</file>
<file name='extensions'>
<summary>interface for the extension support</summary>
<description>This provide the API needed for simple and module extension support. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltRegisterExtPrefix' type='function'/>
<exports symbol='xsltRegisterExtFunction' type='function'/>
<exports symbol='xsltPreComputeFunction' type='function'/>
<exports symbol='xsltInitCtxtExts' type='function'/>
<exports symbol='xsltTopLevelFunction' type='function'/>
<exports symbol='xsltShutdownCtxtExts' type='function'/>
<exports symbol='xsltGetExtInfo' type='function'/>
<exports symbol='xsltUnregisterExtModuleFunction' type='function'/>
<exports symbol='xsltStyleGetExtData' type='function'/>
<exports symbol='xsltRegisterExtElement' type='function'/>
<exports symbol='xsltExtFunctionLookup' type='function'/>
<exports symbol='xsltExtInitFunction' type='function'/>
<exports symbol='xsltRegisterExtModuleElement' type='function'/>
<exports symbol='xsltFreeCtxtExts' type='function'/>
<exports symbol='xsltRegisterTestModule' type='function'/>
<exports symbol='xsltXPathGetTransformContext' type='function'/>
<exports symbol='xsltExtModuleElementLookup' type='function'/>
<exports symbol='xsltRegisterExtModuleFull' type='function'/>
<exports symbol='xsltUnregisterExtModuleTopLevel' type='function'/>
<exports symbol='xsltShutdownExts' type='function'/>
<exports symbol='xsltStyleExtShutdownFunction' type='function'/>
<exports symbol='xsltNewElemPreComp' type='function'/>
<exports symbol='xsltExtModuleElementPreComputeLookup' type='function'/>
<exports symbol='xsltUnregisterExtModuleElement' type='function'/>
<exports symbol='xsltInitElemPreComp' type='function'/>
<exports symbol='xsltDebugDumpExtensions' type='function'/>
<exports symbol='xsltCheckExtPrefix' type='function'/>
<exports symbol='xsltGetExtData' type='function'/>
<exports symbol='xsltRegisterExtModule' type='function'/>
<exports symbol='xsltExtElementLookup' type='function'/>
<exports symbol='xsltRegisterExtModuleTopLevel' type='function'/>
<exports symbol='xsltRegisterExtModuleFunction' type='function'/>
<exports symbol='xsltExtModuleTopLevelLookup' type='function'/>
<exports symbol='xsltFreeExts' type='function'/>
<exports symbol='xsltStyleExtInitFunction' type='function'/>
<exports symbol='xsltExtModuleFunctionLookup' type='function'/>
<exports symbol='xsltPreComputeExtModuleElement' type='function'/>
<exports symbol='xsltExtShutdownFunction' type='function'/>
<exports symbol='xsltUnregisterExtModule' type='function'/>
</file>
<file name='extra'>
<summary>interface for the non-standard features</summary>
<description>implement some extension outside the XSLT namespace but not EXSLT with is in a different library. </description>
<author>Daniel Veillard </author>
<exports symbol='XSLT_XT_NAMESPACE' type='macro'/>
<exports symbol='XSLT_XALAN_NAMESPACE' type='macro'/>
<exports symbol='XSLT_SAXON_NAMESPACE' type='macro'/>
<exports symbol='XSLT_LIBXSLT_NAMESPACE' type='macro'/>
<exports symbol='XSLT_NORM_SAXON_NAMESPACE' type='macro'/>
<exports symbol='xsltFunctionNodeSet' type='function'/>
<exports symbol='xsltRegisterExtras' type='function'/>
<exports symbol='xsltDebug' type='function'/>
<exports symbol='xsltRegisterAllExtras' type='function'/>
</file>
<file name='functions'>
<summary>interface for the XSLT functions not from XPath</summary>
<description>a set of extra functions coming from XSLT but not in XPath </description>
<author>Daniel Veillard and Bjorn Reese <breese@users.sourceforge.net> </author>
<exports symbol='XSLT_REGISTER_FUNCTION_LOOKUP' type='macro'/>
<exports symbol='xsltXPathFunctionLookup' type='function'/>
<exports symbol='xsltRegisterAllFunctions' type='function'/>
<exports symbol='xsltFunctionAvailableFunction' type='function'/>
<exports symbol='xsltKeyFunction' type='function'/>
<exports symbol='xsltFormatNumberFunction' type='function'/>
<exports symbol='xsltUnparsedEntityURIFunction' type='function'/>
<exports symbol='xsltDocumentFunction' type='function'/>
<exports symbol='xsltSystemPropertyFunction' type='function'/>
<exports symbol='xsltElementAvailableFunction' type='function'/>
<exports symbol='xsltGenerateIdFunction' type='function'/>
</file>
<file name='imports'>
<summary>interface for the XSLT import support</summary>
<description>macros and fuctions needed to implement and access the import tree </description>
<author>Daniel Veillard </author>
<exports symbol='XSLT_GET_IMPORT_PTR' type='macro'/>
<exports symbol='XSLT_GET_IMPORT_INT' type='macro'/>
<exports symbol='xsltNeedElemSpaceHandling' type='function'/>
<exports symbol='xsltParseStylesheetImport' type='function'/>
<exports symbol='xsltFindTemplate' type='function'/>
<exports symbol='xsltFindElemSpaceHandling' type='function'/>
<exports symbol='xsltNextImport' type='function'/>
<exports symbol='xsltParseStylesheetInclude' type='function'/>
</file>
<file name='keys'>
<summary>interface for the key matching used in key() and template matches.</summary>
<description>implementation of the key mechanims. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltInitCtxtKeys' type='function'/>
<exports symbol='xsltFreeKeys' type='function'/>
<exports symbol='xsltGetKey' type='function'/>
<exports symbol='xsltFreeDocumentKeys' type='function'/>
<exports symbol='xsltAddKey' type='function'/>
</file>
<file name='namespaces'>
<summary>interface for the XSLT namespace handling</summary>
<description>set of function easing the processing and generation of namespace nodes in XSLT. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltFreeNamespaceAliasHashes' type='function'/>
<exports symbol='xsltGetSpecialNamespace' type='function'/>
<exports symbol='xsltCopyNamespaceList' type='function'/>
<exports symbol='xsltCopyNamespace' type='function'/>
<exports symbol='xsltNamespaceAlias' type='function'/>
<exports symbol='xsltGetNamespace' type='function'/>
</file>
<file name='numbersInternals'>
<summary>Implementation of the XSLT number functions</summary>
<description>Implementation of the XSLT number functions </description>
<author>Bjorn Reese <breese@users.sourceforge.net> and Daniel Veillard </author>
<exports symbol='xsltFormatNumberInfo' type='typedef'/>
<exports symbol='xsltNumberData' type='typedef'/>
<exports symbol='xsltNumberDataPtr' type='typedef'/>
<exports symbol='xsltFormatNumberInfoPtr' type='typedef'/>
<exports symbol='_xsltNumberData' type='struct'/>
<exports symbol='_xsltFormatNumberInfo' type='struct'/>
</file>
<file name='pattern'>
<summary>interface for the pattern matching used in template matches.</summary>
<description>the implementation of the lookup of the right template for a given node must be really fast in order to keep decent performances. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltCompMatch' type='typedef'/>
<exports symbol='xsltCompMatchPtr' type='typedef'/>
<exports symbol='xsltNormalizeCompSteps' type='function'/>
<exports symbol='xsltAddTemplate' type='function'/>
<exports symbol='xsltCompilePattern' type='function'/>
<exports symbol='xsltFreeCompMatchList' type='function'/>
<exports symbol='xsltMatchPattern' type='function'/>
<exports symbol='xsltFreeTemplateHashes' type='function'/>
<exports symbol='xsltCleanupTemplates' type='function'/>
<exports symbol='xsltGetTemplate' type='function'/>
<exports symbol='xsltTestCompMatchList' type='function'/>
</file>
<file name='preproc'>
<summary>precomputing stylesheets</summary>
<description>this is the compilation phase, where most of the stylesheet is "compiled" into faster to use data. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltExtMarker' type='variable'/>
<exports symbol='xsltFreeStylePreComps' type='function'/>
<exports symbol='xsltDocumentComp' type='function'/>
<exports symbol='xsltStylePreCompute' type='function'/>
</file>
<file name='security'>
<summary>interface for the libxslt security framework</summary>
<description>the libxslt security framework allow to restrict the access to new resources (file or URL) from the stylesheet at runtime. </description>
<author>Daniel Veillard </author>
<exports symbol='XSLT_SECPREF_CREATE_DIRECTORY' type='enum'/>
<exports symbol='XSLT_SECPREF_WRITE_FILE' type='enum'/>
<exports symbol='XSLT_SECPREF_READ_NETWORK' type='enum'/>
<exports symbol='XSLT_SECPREF_READ_FILE' type='enum'/>
<exports symbol='XSLT_SECPREF_WRITE_NETWORK' type='enum'/>
<exports symbol='xsltSecurityPrefs' type='typedef'/>
<exports symbol='xsltSecurityPrefsPtr' type='typedef'/>
<exports symbol='xsltSecurityOption' type='typedef'/>
<exports symbol='xsltNewSecurityPrefs' type='function'/>
<exports symbol='xsltSecurityCheck' type='function'/>
<exports symbol='xsltSetSecurityPrefs' type='function'/>
<exports symbol='xsltGetDefaultSecurityPrefs' type='function'/>
<exports symbol='xsltFreeSecurityPrefs' type='function'/>
<exports symbol='xsltSetDefaultSecurityPrefs' type='function'/>
<exports symbol='xsltSetCtxtSecurityPrefs' type='function'/>
<exports symbol='xsltGetSecurityPrefs' type='function'/>
<exports symbol='xsltSecurityAllow' type='function'/>
<exports symbol='xsltCheckWrite' type='function'/>
<exports symbol='xsltCheckRead' type='function'/>
<exports symbol='xsltSecurityForbid' type='function'/>
</file>
<file name='templates'>
<summary>interface for the template processing</summary>
<description>This set of routine encapsulates XPath calls and Attribute Value Templates evaluation. </description>
<author>Daniel Veillard </author>
<exports symbol='xsltEvalStaticAttrValueTemplate' type='function'/>
<exports symbol='xsltEvalAttrValueTemplate' type='function'/>
<exports symbol='xsltEvalTemplateString' type='function'/>
<exports symbol='xsltAttrTemplateValueProcess' type='function'/>
<exports symbol='xsltAttrTemplateProcess' type='function'/>
<exports symbol='xsltAttrListTemplateProcess' type='function'/>
<exports symbol='xsltEvalXPathPredicate' type='function'/>
<exports symbol='xsltAttrTemplateValueProcessNode' type='function'/>
<exports symbol='xsltTemplateProcess' type='function'/>
<exports symbol='xsltEvalXPathStringNs' type='function'/>
<exports symbol='xsltEvalXPathString' type='function'/>
</file>
<file name='transform'>
<summary>the XSLT engine transformation part.</summary>
<description>This module implements the bulk of the actual</description>
<author>Daniel Veillard </author>
<exports symbol='xsltValueOf' type='function'/>
<exports symbol='xsltNumber' type='function'/>
<exports symbol='xsltRegisterAllElement' type='function'/>
<exports symbol='xsltRunStylesheetUser' type='function'/>
<exports symbol='xsltSort' type='function'/>
<exports symbol='xsltNewTransformContext' type='function'/>
<exports symbol='xsltGetXIncludeDefault' type='function'/>
<exports symbol='xsltApplyOneTemplate' type='function'/>
<exports symbol='xslHandleDebugger' type='function'/>
<exports symbol='xsltCopy' type='function'/>
<exports symbol='xsltDocumentElem' type='function'/>
<exports symbol='xsltApplyTemplates' type='function'/>
<exports symbol='xsltApplyImports' type='function'/>
<exports symbol='xsltIf' type='function'/>
<exports symbol='xsltCallTemplate' type='function'/>
<exports symbol='xsltApplyStylesheet' type='function'/>
<exports symbol='xsltApplyStripSpaces' type='function'/>
<exports symbol='xsltSetXIncludeDefault' type='function'/>
<exports symbol='xsltCopyOf' type='function'/>
<exports symbol='xsltFreeTransformContext' type='function'/>
<exports symbol='xsltAttribute' type='function'/>
<exports symbol='xsltRunStylesheet' type='function'/>
<exports symbol='xsltChoose' type='function'/>
<exports symbol='xsltCopyTextString' type='function'/>
<exports symbol='xsltElement' type='function'/>
<exports symbol='xsltProfileStylesheet' type='function'/>
<exports symbol='xsltForEach' type='function'/>
<exports symbol='xsltText' type='function'/>
<exports symbol='xsltApplyStylesheetUser' type='function'/>
<exports symbol='xsltProcessingInstruction' type='function'/>
<exports symbol='xsltComment' type='function'/>
</file>
<file name='variables'>
<summary>interface for the variable matching and lookup.</summary>
<description>interface for the variable matching and lookup. </description>
<author>Daniel Veillard </author>
<exports symbol='XSLT_REGISTER_VARIABLE_LOOKUP' type='macro'/>
<exports symbol='xsltFreeGlobalVariables' type='function'/>
<exports symbol='xsltQuoteUserParams' type='function'/>
<exports symbol='xsltXPathVariableLookup' type='function'/>
<exports symbol='xsltParseGlobalParam' type='function'/>
<exports symbol='xsltParseStylesheetCallerParam' type='function'/>
<exports symbol='xsltAddStackElemList' type='function'/>
<exports symbol='xsltParseGlobalVariable' type='function'/>
<exports symbol='xsltQuoteOneUserParam' type='function'/>
<exports symbol='xsltEvalUserParams' type='function'/>
<exports symbol='xsltParseStylesheetVariable' type='function'/>
<exports symbol='xsltEvalGlobalVariables' type='function'/>
<exports symbol='xsltEvalOneUserParam' type='function'/>
<exports symbol='xsltParseStylesheetParam' type='function'/>
<exports symbol='xsltVariableLookup' type='function'/>
</file>
<file name='xslt'>
<summary>Interfaces, constants and types related to the XSLT engine</summary>
<description>Interfaces, constants and types related to the XSLT engine </description>
<author>Daniel Veillard </author>
<exports symbol='XSLT_DEFAULT_VERSION' type='macro'/>
<exports symbol='XSLT_DEFAULT_VENDOR' type='macro'/>
<exports symbol='XSLT_PARSE_OPTIONS' type='macro'/>
<exports symbol='XSLT_DEFAULT_URL' type='macro'/>
<exports symbol='XSLT_NAMESPACE' type='macro'/>
<exports symbol='xsltLibxmlVersion' type='variable'/>
<exports symbol='xsltEngineVersion' type='variable'/>
<exports symbol='xsltLibxsltVersion' type='variable'/>
<exports symbol='xsltMaxDepth' type='variable'/>
<exports symbol='xsltCleanupGlobals' type='function'/>
</file>
<file name='xsltInternals'>
<summary>internal data structures, constants and functions</summary>
<description>Internal data structures, constants and functions used by the XSLT engine. They are not part of the API or ABI, i.e. they can change without prior notice, use carefully. </description>
<author>Daniel Veillard </author>
<exports symbol='CHECK_STOPPED0' type='macro'/>
<exports symbol='XSLT_PAT_NO_PRIORITY' type='macro'/>
<exports symbol='XSLT_MAX_SORT' type='macro'/>
<exports symbol='XSLT_RUNTIME_EXTRA' type='macro'/>
<exports symbol='CHECK_STOPPEDE' type='macro'/>
<exports symbol='CHECK_STOPPED' type='macro'/>
<exports symbol='XSLT_RUNTIME_EXTRA_LST' type='macro'/>
<exports symbol='XSLT_RUNTIME_EXTRA_FREE' type='macro'/>
<exports symbol='XSLT_FUNC_ELEMENT' type='enum'/>
<exports symbol='XSLT_FUNC_WHEN' type='enum'/>
<exports symbol='XSLT_FUNC_APPLYIMPORTS' type='enum'/>
<exports symbol='XSLT_FUNC_VALUEOF' type='enum'/>
<exports symbol='XSLT_FUNC_WITHPARAM' type='enum'/>
<exports symbol='XSLT_FUNC_COPY' type='enum'/>
<exports symbol='XSLT_OUTPUT_XML' type='enum'/>
<exports symbol='XSLT_FUNC_EXTENSION' type='enum'/>
<exports symbol='XSLT_STATE_ERROR' type='enum'/>
<exports symbol='XSLT_OUTPUT_HTML' type='enum'/>
<exports symbol='XSLT_OUTPUT_TEXT' type='enum'/>
<exports symbol='XSLT_STATE_OK' type='enum'/>
<exports symbol='XSLT_FUNC_COPYOF' type='enum'/>
<exports symbol='XSLT_FUNC_PARAM' type='enum'/>
<exports symbol='XSLT_FUNC_FOREACH' type='enum'/>
<exports symbol='XSLT_FUNC_COMMENT' type='enum'/>
<exports symbol='XSLT_FUNC_DOCUMENT' type='enum'/>
<exports symbol='XSLT_FUNC_CHOOSE' type='enum'/>
<exports symbol='XSLT_FUNC_SORT' type='enum'/>
<exports symbol='XSLT_FUNC_IF' type='enum'/>
<exports symbol='XSLT_FUNC_PI' type='enum'/>
<exports symbol='XSLT_FUNC_TEXT' type='enum'/>
<exports symbol='XSLT_STATE_STOPPED' type='enum'/>
<exports symbol='XSLT_FUNC_VARIABLE' type='enum'/>
<exports symbol='XSLT_FUNC_NUMBER' type='enum'/>
<exports symbol='XSLT_FUNC_ATTRIBUTE' type='enum'/>
<exports symbol='XSLT_FUNC_APPLYTEMPLATES' type='enum'/>
<exports symbol='XSLT_FUNC_CALLTEMPLATE' type='enum'/>
<exports symbol='xsltStylePreComp' type='typedef'/>
<exports symbol='xsltRuntimeExtra' type='typedef'/>
<exports symbol='xsltTransformContext' type='typedef'/>
<exports symbol='xsltElemPreComp' type='typedef'/>
<exports symbol='xsltTemplatePtr' type='typedef'/>
<exports symbol='xsltOutputType' type='typedef'/>
<exports symbol='xsltDecimalFormat' type='typedef'/>
<exports symbol='xsltDecimalFormatPtr' type='typedef'/>
<exports symbol='xsltTransformContextPtr' type='typedef'/>
<exports symbol='xsltDocument' type='typedef'/>
<exports symbol='xsltTransformState' type='typedef'/>
<exports symbol='xsltStylePreCompPtr' type='typedef'/>
<exports symbol='xsltDocumentPtr' type='typedef'/>
<exports symbol='xsltStylesheetPtr' type='typedef'/>
<exports symbol='xsltStyleType' type='typedef'/>
<exports symbol='xsltRuntimeExtraPtr' type='typedef'/>
<exports symbol='xsltStylesheet' type='typedef'/>
<exports symbol='xsltElemPreCompPtr' type='typedef'/>
<exports symbol='xsltTemplate' type='typedef'/>
<exports symbol='xsltStackElem' type='typedef'/>
<exports symbol='xsltStackElemPtr' type='typedef'/>
<exports symbol='_xsltStylePreComp' type='struct'/>
<exports symbol='_xsltStackElem' type='struct'/>
<exports symbol='_xsltTransformContext' type='struct'/>
<exports symbol='_xsltElemPreComp' type='struct'/>
<exports symbol='_xsltDecimalFormat' type='struct'/>
<exports symbol='_xsltTemplate' type='struct'/>
<exports symbol='_xsltDocument' type='struct'/>
<exports symbol='_xsltRuntimeExtra' type='struct'/>
<exports symbol='_xsltStylesheet' type='struct'/>
<exports symbol='xsltElemPreCompDeallocator' type='function'/>
<exports symbol='xsltRegisterPersistRVT' type='function'/>
<exports symbol='xsltParseStylesheetImportedDoc' type='function'/>
<exports symbol='xsltFreeStackElemList' type='function'/>
<exports symbol='xsltAllocateExtra' type='function'/>
<exports symbol='xsltNumberFormat' type='function'/>
<exports symbol='xsltFreeRVTs' type='function'/>
<exports symbol='xsltRegisterTmpRVT' type='function'/>
<exports symbol='xsltAllocateExtraCtxt' type='function'/>
<exports symbol='xsltIsBlank' type='function'/>
<exports symbol='xsltParseStylesheetFile' type='function'/>
<exports symbol='xsltParseTemplateContent' type='function'/>
<exports symbol='xsltNewStylesheet' type='function'/>
<exports symbol='xsltFormatNumberConversion' type='function'/>
<exports symbol='xsltDecimalFormatGetByName' type='function'/>
<exports symbol='xsltTransformFunction' type='function'/>
<exports symbol='xsltSortFunc' type='function'/>
<exports symbol='xsltParseStylesheetDoc' type='function'/>
<exports symbol='xsltLoadStylesheetPI' type='function'/>
<exports symbol='xsltFreeStylesheet' type='function'/>
<exports symbol='xsltCreateRVT' type='function'/>
<exports symbol='xsltParseStylesheetProcess' type='function'/>
<exports symbol='xsltParseStylesheetOutput' type='function'/>
</file>
<file name='xsltexports'>
<summary>macros for marking symbols as exportable/importable.</summary>
<description>macros for marking symbols as exportable/importable. </description>
<author>Igor Zlatkovic <igor@zlatkovic.com> </author>
<exports symbol='LIBXSLT_PUBLIC' type='macro'/>
<exports symbol='XSLTPUBFUN' type='macro'/>
<exports symbol='XSLTPUBVAR' type='macro'/>
<exports symbol='_REENTRANT' type='macro'/>
<exports symbol='XSLTCALL' type='macro'/>
</file>
<file name='xsltutils'>
<summary>set of utilities for the XSLT engine</summary>
<description>interfaces for the utilities module of the XSLT engine. things like message handling, profiling, and other generally useful routines. </description>
<author>Daniel Veillard </author>
<exports symbol='IS_XSLT_REAL_NODE' type='macro'/>
<exports symbol='IS_XSLT_ELEM' type='macro'/>
<exports symbol='XSLT_TRACE' type='macro'/>
<exports symbol='IS_XSLT_NAME' type='macro'/>
<exports symbol='XSLT_TIMESTAMP_TICS_PER_SEC' type='macro'/>
<exports symbol='XSLT_STRANGE' type='macro'/>
<exports symbol='XSLT_TODO' type='macro'/>
<exports symbol='XSLT_TRACE_PROCESS_NODE' type='enum'/>
<exports symbol='XSLT_TRACE_KEYS' type='enum'/>
<exports symbol='XSLT_TRACE_APPLY_TEMPLATE' type='enum'/>
<exports symbol='XSLT_DEBUG_CONT' type='enum'/>
<exports symbol='XSLT_TRACE_VALUE_OF' type='enum'/>
<exports symbol='XSLT_DEBUG_STEP' type='enum'/>
<exports symbol='XSLT_DEBUG_NEXT' type='enum'/>
<exports symbol='XSLT_TRACE_COPY_OF' type='enum'/>
<exports symbol='XSLT_TRACE_FOR_EACH' type='enum'/>
<exports symbol='XSLT_DEBUG_STEPOUT' type='enum'/>
<exports symbol='XSLT_DEBUG_RUN' type='enum'/>
<exports symbol='XSLT_TRACE_STRIP_SPACES' type='enum'/>
<exports symbol='XSLT_DEBUG_STOP' type='enum'/>
<exports symbol='XSLT_TRACE_APPLY_TEMPLATES' type='enum'/>
<exports symbol='XSLT_TRACE_COPY' type='enum'/>
<exports symbol='XSLT_TRACE_CHOOSE' type='enum'/>
<exports symbol='XSLT_DEBUG_INIT' type='enum'/>
<exports symbol='XSLT_TRACE_COPY_TEXT' type='enum'/>
<exports symbol='XSLT_DEBUG_RUN_RESTART' type='enum'/>
<exports symbol='XSLT_TRACE_NONE' type='enum'/>
<exports symbol='XSLT_TRACE_ALL' type='enum'/>
<exports symbol='XSLT_DEBUG_NONE' type='enum'/>
<exports symbol='XSLT_TRACE_PI' type='enum'/>
<exports symbol='XSLT_TRACE_COMMENT' type='enum'/>
<exports symbol='XSLT_TRACE_VARIABLES' type='enum'/>
<exports symbol='XSLT_DEBUG_QUIT' type='enum'/>
<exports symbol='XSLT_TRACE_CALL_TEMPLATE' type='enum'/>
<exports symbol='XSLT_TRACE_IF' type='enum'/>
<exports symbol='XSLT_TRACE_TEMPLATES' type='enum'/>
<exports symbol='xsltDebugTraceCodes' type='typedef'/>
<exports symbol='xsltDebugStatusCodes' type='typedef'/>
<exports symbol='xsltGenericError' type='variable'/>
<exports symbol='xsltGenericDebug' type='variable'/>
<exports symbol='xsltGenericErrorContext' type='variable'/>
<exports symbol='xslDebugStatus' type='variable'/>
<exports symbol='xsltGenericDebugContext' type='variable'/>
<exports symbol='xsltTimestamp' type='function'/>
<exports symbol='xsltSaveResultToFile' type='function'/>
<exports symbol='xsltSetTransformErrorFunc' type='function'/>
<exports symbol='xsltSetGenericErrorFunc' type='function'/>
<exports symbol='xsltSetDebuggerCallbacks' type='function'/>
<exports symbol='xsltCalibrateAdjust' type='function'/>
<exports symbol='xsltDebugSetDefaultTrace' type='function'/>
<exports symbol='xsltDropCallCallback' type='function'/>
<exports symbol='xsltSetGenericDebugFunc' type='function'/>
<exports symbol='xsltComputeSortResult' type='function'/>
<exports symbol='xsltSetSortFunc' type='function'/>
<exports symbol='xsltDocumentSortFunction' type='function'/>
<exports symbol='xsltTransformError' type='function'/>
<exports symbol='xslAddCall' type='function'/>
<exports symbol='xsltGetDebuggerStatus' type='function'/>
<exports symbol='xsltPrintErrorContext' type='function'/>
<exports symbol='xsltGetUTF8Char' type='function'/>
<exports symbol='xsltDefaultSortFunction' type='function'/>
<exports symbol='xsltSaveResultToFd' type='function'/>
<exports symbol='xsltSetCtxtSortFunc' type='function'/>
<exports symbol='xsltGetNsProp' type='function'/>
<exports symbol='xsltSaveResultToFilename' type='function'/>
<exports symbol='xsltGetQNameURI' type='function'/>
<exports symbol='xsltAddCallCallback' type='function'/>
<exports symbol='xsltSetDebuggerStatus' type='function'/>
<exports symbol='xsltSaveResultTo' type='function'/>
<exports symbol='xsltSaveProfiling' type='function'/>
<exports symbol='xsltSaveResultToString' type='function'/>
<exports symbol='xsltHandleDebuggerCallback' type='function'/>
<exports symbol='xsltDoSortFunction' type='function'/>
<exports symbol='xsltDebugGetDefaultTrace' type='function'/>
<exports symbol='xsltMessage' type='function'/>
<exports symbol='xslDropCall' type='function'/>
<exports symbol='xsltGetProfileInformation' type='function'/>
</file>
</files>
<symbols>
<macro name='CHECK_STOPPED' file='xsltInternals'>
<info>Macro to check if the XSLT processing should be stopped. Will return from the function.</info>
</macro>
<macro name='CHECK_STOPPED0' file='xsltInternals'>
<info>Macro to check if the XSLT processing should be stopped. Will return from the function with a 0 value.</info>
</macro>
<macro name='CHECK_STOPPEDE' file='xsltInternals'>
<info>Macro to check if the XSLT processing should be stopped. Will goto the error: label.</info>
</macro>
<macro name='IS_XSLT_ELEM' file='xsltutils'>
<info>Checks that the element pertains to XSLT namespace.</info>
</macro>
<macro name='IS_XSLT_NAME' file='xsltutils'>
<info>Checks the value of an element in XSLT namespace.</info>
</macro>
<macro name='IS_XSLT_REAL_NODE' file='xsltutils'>
<info>Check that a node is a 'real' one: document, element, text or attribute.</info>
</macro>
<macro name='LIBXSLT_PUBLIC' file='xsltexports'>
</macro>
<macro name='XSLTCALL' file='xsltexports'>
</macro>
<macro name='XSLTPUBFUN' file='xsltexports'>
<info>XSLTPUBFUN, XSLTPUBVAR, XSLTCALL Macros which declare an exportable function, an exportable variable and the calling convention used for functions. Please use an extra block for every platform/compiler combination when modifying this, rather than overlong #ifdef lines. This helps readability as well as the fact that different compilers on the same platform might need different definitions. Windows platform with MS compiler Windows platform with Borland compiler Windows platform with GNU compiler (Mingw) Cygwin platform, GNU compiler</info>
</macro>
<macro name='XSLTPUBVAR' file='xsltexports'>
</macro>
<macro name='XSLT_DEFAULT_URL' file='xslt'>
<info>The XSLT "vendor" URL for this processor.</info>
</macro>
<macro name='XSLT_DEFAULT_VENDOR' file='xslt'>
<info>The XSLT "vendor" string for this processor.</info>
</macro>
<macro name='XSLT_DEFAULT_VERSION' file='xslt'>
<info>The default version of XSLT supported.</info>
</macro>
<macro name='XSLT_GET_IMPORT_INT' file='imports'>
<info>A macro to import intergers from the stylesheet cascading order.</info>
</macro>
<macro name='XSLT_GET_IMPORT_PTR' file='imports'>
<info>A macro to import pointers from the stylesheet cascading order.</info>
</macro>
<macro name='XSLT_LIBXSLT_NAMESPACE' file='extra'>
<info>This is the libxslt namespace for specific extensions.</info>
</macro>
<macro name='XSLT_MAX_SORT' file='xsltInternals'>
<info>Max number of specified xsl:sort on an element.</info>
</macro>
<macro name='XSLT_NAMESPACE' file='xslt'>
<info>The XSLT specification namespace.</info>
</macro>
<macro name='XSLT_NORM_SAXON_NAMESPACE' file='extra'>
<info>This is Norm's namespace for SAXON extensions.</info>
</macro>
<macro name='XSLT_PARSE_OPTIONS' file='xslt'>
<info>The set of options to pass to an xmlReadxxx when loading files for XSLT consumption.</info>
</macro>
<macro name='XSLT_PAT_NO_PRIORITY' file='xsltInternals'>
<info>Specific value for pattern without priority expressed.</info>
</macro>
<macro name='XSLT_REGISTER_FUNCTION_LOOKUP' file='functions'>
<info>Registering macro, not general purpose at all but used in different modules.</info>
</macro>
<macro name='XSLT_REGISTER_VARIABLE_LOOKUP' file='variables'>
<info>Registering macro, not general purpose at all but used in different modules.</info>
</macro>
<macro name='XSLT_RUNTIME_EXTRA' file='xsltInternals'>
<info>Macro used to define extra information stored in the context</info>
<arg name='ctxt' info='the transformation context'/>
<arg name='nr' info='the index'/>
</macro>
<macro name='XSLT_RUNTIME_EXTRA_FREE' file='xsltInternals'>
<info>Macro used to free extra information stored in the context</info>
<arg name='ctxt' info='the transformation context'/>
<arg name='nr' info='the index'/>
</macro>
<macro name='XSLT_RUNTIME_EXTRA_LST' file='xsltInternals'>
<info>Macro used to access extra information stored in the context</info>
<arg name='ctxt' info='the transformation context'/>
<arg name='nr' info='the index'/>
</macro>
<macro name='XSLT_SAXON_NAMESPACE' file='extra'>
<info>This is Michael Kay's Saxon processor namespace for extensions.</info>
</macro>
<macro name='XSLT_STRANGE' file='xsltutils'>
<info>Macro to flag that a problem was detected internally.</info>
</macro>
<macro name='XSLT_TIMESTAMP_TICS_PER_SEC' file='xsltutils'>
<info>Sampling precision for profiling</info>
</macro>
<macro name='XSLT_TODO' file='xsltutils'>
<info>Macro to flag unimplemented blocks.</info>
</macro>
<macro name='XSLT_TRACE' file='xsltutils'>
</macro>
<macro name='XSLT_XALAN_NAMESPACE' file='extra'>
<info>This is the Apache project XALAN processor namespace for extensions.</info>
</macro>
<macro name='XSLT_XT_NAMESPACE' file='extra'>
<info>This is James Clark's XT processor namespace for extensions.</info>
</macro>
<macro name='_REENTRANT' file='xsltexports'>
</macro>
<enum name='XSLT_DEBUG_CONT' file='xsltutils' value='6' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_INIT' file='xsltutils' value='1' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_NEXT' file='xsltutils' value='4' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_NONE' file='xsltutils' value='0' type='xsltDebugStatusCodes' info='no debugging allowed'/>
<enum name='XSLT_DEBUG_QUIT' file='xsltutils' value='9' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_RUN' file='xsltutils' value='7' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_RUN_RESTART' file='xsltutils' value='8' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_STEP' file='xsltutils' value='2' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_STEPOUT' file='xsltutils' value='3' type='xsltDebugStatusCodes'/>
<enum name='XSLT_DEBUG_STOP' file='xsltutils' value='5' type='xsltDebugStatusCodes'/>
<enum name='XSLT_FUNC_APPLYIMPORTS' file='xsltInternals' value='11' type='xsltStyleType'/>
<enum name='XSLT_FUNC_APPLYTEMPLATES' file='xsltInternals' value='13' type='xsltStyleType'/>
<enum name='XSLT_FUNC_ATTRIBUTE' file='xsltInternals' value='5' type='xsltStyleType'/>
<enum name='XSLT_FUNC_CALLTEMPLATE' file='xsltInternals' value='12' type='xsltStyleType'/>
<enum name='XSLT_FUNC_CHOOSE' file='xsltInternals' value='14' type='xsltStyleType'/>
<enum name='XSLT_FUNC_COMMENT' file='xsltInternals' value='6' type='xsltStyleType'/>
<enum name='XSLT_FUNC_COPY' file='xsltInternals' value='1' type='xsltStyleType'/>
<enum name='XSLT_FUNC_COPYOF' file='xsltInternals' value='8' type='xsltStyleType'/>
<enum name='XSLT_FUNC_DOCUMENT' file='xsltInternals' value='17' type='xsltStyleType'/>
<enum name='XSLT_FUNC_ELEMENT' file='xsltInternals' value='4' type='xsltStyleType'/>
<enum name='XSLT_FUNC_EXTENSION' file='xsltInternals' value='22' type='xsltStyleType'/>
<enum name='XSLT_FUNC_FOREACH' file='xsltInternals' value='16' type='xsltStyleType'/>
<enum name='XSLT_FUNC_IF' file='xsltInternals' value='15' type='xsltStyleType'/>
<enum name='XSLT_FUNC_NUMBER' file='xsltInternals' value='10' type='xsltStyleType'/>
<enum name='XSLT_FUNC_PARAM' file='xsltInternals' value='19' type='xsltStyleType'/>
<enum name='XSLT_FUNC_PI' file='xsltInternals' value='7' type='xsltStyleType'/>
<enum name='XSLT_FUNC_SORT' file='xsltInternals' value='2' type='xsltStyleType'/>
<enum name='XSLT_FUNC_TEXT' file='xsltInternals' value='3' type='xsltStyleType'/>
<enum name='XSLT_FUNC_VALUEOF' file='xsltInternals' value='9' type='xsltStyleType'/>
<enum name='XSLT_FUNC_VARIABLE' file='xsltInternals' value='20' type='xsltStyleType'/>
<enum name='XSLT_FUNC_WHEN' file='xsltInternals' value='21' type='xsltStyleType'/>
<enum name='XSLT_FUNC_WITHPARAM' file='xsltInternals' value='18' type='xsltStyleType'/>
<enum name='XSLT_OUTPUT_HTML' file='xsltInternals' value='1' type='xsltOutputType'/>
<enum name='XSLT_OUTPUT_TEXT' file='xsltInternals' value='2' type='xsltOutputType'/>
<enum name='XSLT_OUTPUT_XML' file='xsltInternals' value='0' type='xsltOutputType'/>
<enum name='XSLT_SECPREF_CREATE_DIRECTORY' file='security' value='3' type='xsltSecurityOption'/>
<enum name='XSLT_SECPREF_READ_FILE' file='security' value='1' type='xsltSecurityOption'/>
<enum name='XSLT_SECPREF_READ_NETWORK' file='security' value='4' type='xsltSecurityOption'/>
<enum name='XSLT_SECPREF_WRITE_FILE' file='security' value='2' type='xsltSecurityOption'/>
<enum name='XSLT_SECPREF_WRITE_NETWORK' file='security' value='5' type='xsltSecurityOption'/>
<enum name='XSLT_STATE_ERROR' file='xsltInternals' value='1' type='xsltTransformState'/>
<enum name='XSLT_STATE_OK' file='xsltInternals' value='0' type='xsltTransformState'/>
<enum name='XSLT_STATE_STOPPED' file='xsltInternals' value='2' type='xsltTransformState'/>
<enum name='XSLT_TRACE_ALL' file='xsltutils' value='-1' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_APPLY_TEMPLATE' file='xsltutils' value='4' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_APPLY_TEMPLATES' file='xsltutils' value='512' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_CALL_TEMPLATE' file='xsltutils' value='256' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_CHOOSE' file='xsltutils' value='1024' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_COMMENT' file='xsltutils' value='16' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_COPY' file='xsltutils' value='8' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_COPY_OF' file='xsltutils' value='64' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_COPY_TEXT' file='xsltutils' value='1' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_FOR_EACH' file='xsltutils' value='4096' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_IF' file='xsltutils' value='2048' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_KEYS' file='xsltutils' value='32768' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_NONE' file='xsltutils' value='0' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_PI' file='xsltutils' value='32' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_PROCESS_NODE' file='xsltutils' value='2' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_STRIP_SPACES' file='xsltutils' value='8192' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_TEMPLATES' file='xsltutils' value='16384' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_VALUE_OF' file='xsltutils' value='128' type='xsltDebugTraceCodes'/>
<enum name='XSLT_TRACE_VARIABLES' file='xsltutils' value='65536' type='xsltDebugTraceCodes'/>
<struct name='xsltCompMatch' file='pattern' type='struct _xsltCompMatch'/>
<typedef name='xsltCompMatchPtr' file='pattern' type='xsltCompMatch *'/>
<typedef name='xsltDebugStatusCodes' file='xsltutils' type='enum'/>
<typedef name='xsltDebugTraceCodes' file='xsltutils' type='enum'/>
<struct name='xsltDecimalFormat' file='xsltInternals' type='struct _xsltDecimalFormat'>
<field name='next' type='struct _xsltDecimalFormat *' info=' chained list'/>
<field name='name' type='xmlChar *' info=' Used for interpretation of pattern'/>
<field name='digit' type='xmlChar *' info=''/>
<field name='patternSeparator' type='xmlChar *' info=' May appear in result'/>
<field name='minusSign' type='xmlChar *' info=''/>
<field name='infinity' type='xmlChar *' info=''/>
<field name='noNumber' type='xmlChar *' info=' Not-a-number Used for interpretation of pattern and may appear in result'/>
<field name='decimalPoint' type='xmlChar *' info=''/>
<field name='grouping' type='xmlChar *' info=''/>
<field name='percent' type='xmlChar *' info=''/>
<field name='permille' type='xmlChar *' info=''/>
<field name='zeroDigit' type='xmlChar *' info=''/>
</struct>
<typedef name='xsltDecimalFormatPtr' file='xsltInternals' type='xsltDecimalFormat *'/>
<struct name='xsltDocument' file='xsltInternals' type='struct _xsltDocument'>
<field name='next' type='struct _xsltDocument *' info=' documents are kept in a chained list'/>
<field name='main' type='int' info=' is this the main document'/>
<field name='doc' type='xmlDocPtr' info=' the parsed document'/>
<field name='keys' type='void *' info=' key tables storage'/>
<field name='includes' type='struct _xsltDocument *' info=' subsidiary includes'/>
</struct>
<typedef name='xsltDocumentPtr' file='xsltInternals' type='xsltDocument *'/>
<struct name='xsltElemPreComp' file='xsltInternals' type='struct _xsltElemPreComp'>
<field name='next' type='xsltElemPreCompPtr' info=' chained list'/>
<field name='type' type='xsltStyleType' info=' type of the element'/>
<field name='func' type='xsltTransformFunction' info=' handling function'/>
<field name='inst' type='xmlNodePtr' info=' the instruction end of common part'/>
<field name='free' type='xsltElemPreCompDeallocator' info=' the deallocator'/>
</struct>
<typedef name='xsltElemPreCompPtr' file='xsltInternals' type='xsltElemPreComp *'/>
<struct name='xsltFormatNumberInfo' file='numbersInternals' type='struct _xsltFormatNumberInfo'>
<field name='integer_hash' type='int' info=' Number of '#' in integer part'/>
<field name='integer_digits' type='int' info=' Number of '0' in integer part'/>
<field name='frac_digits' type='int' info=' Number of '0' in fractional part'/>
<field name='frac_hash' type='int' info=' Number of '#' in fractional part'/>
<field name='group' type='int' info=' Number of chars per display 'group''/>
<field name='multiplier' type='int' info=' Scaling for percent or permille'/>
<field name='add_decimal' type='char' info=' Flag for whether decimal point appears in pattern'/>
<field name='is_multiplier_set' type='char' info=' Flag to catch multiple occurences of percent/permille'/>
<field name='is_negative_pattern' type='char' info=' Flag for processing -ve prefix/suffix'/>
</struct>
<typedef name='xsltFormatNumberInfoPtr' file='numbersInternals' type='xsltFormatNumberInfo *'/>
<struct name='xsltNumberData' file='numbersInternals' type='struct _xsltNumberData'>
<field name='level' type='xmlChar *' info=''/>
<field name='count' type='xmlChar *' info=''/>
<field name='from' type='xmlChar *' info=''/>
<field name='value' type='xmlChar *' info=''/>
<field name='format' type='xmlChar *' info=''/>
<field name='has_format' type='int' info=''/>
<field name='digitsPerGroup' type='int' info=''/>
<field name='groupingCharacter' type='int' info=''/>
<field name='groupingCharacterLen' type='int' info=''/>
<field name='doc' type='xmlDocPtr' info=''/>
<field name='node' type='xmlNodePtr' info='* accelerators
*'/>
</struct>
<typedef name='xsltNumberDataPtr' file='numbersInternals' type='xsltNumberData *'/>
<typedef name='xsltOutputType' file='xsltInternals' type='enum'/>
<struct name='xsltRuntimeExtra' file='xsltInternals' type='struct _xsltRuntimeExtra'>
<field name='info' type='void *' info=' pointer to the extra data'/>
<field name='deallocate' type='xmlFreeFunc' info=' pointer to the deallocation routine'/>
<field name='val' type='void *' info=' data not needing deallocation'/>
</struct>
<typedef name='xsltRuntimeExtraPtr' file='xsltInternals' type='xsltRuntimeExtra *'/>
<typedef name='xsltSecurityOption' file='security' type='enum'/>
<struct name='xsltSecurityPrefs' file='security' type='struct _xsltSecurityPrefs'/>
<typedef name='xsltSecurityPrefsPtr' file='security' type='xsltSecurityPrefs *'/>
<struct name='xsltStackElem' file='xsltInternals' type='struct _xsltStackElem'>
<field name='next' type='struct _xsltStackElem *' info=' chained list'/>
<field name='comp' type='xsltStylePreCompPtr' info=' the compiled form'/>
<field name='computed' type='int' info=' was the evaluation done'/>
<field name='name' type='xmlChar *' info=' the local part of the name QName'/>
<field name='nameURI' type='xmlChar *' info=' the URI part of the name QName'/>
<field name='select' type='xmlChar *' info=' the eval string'/>
<field name='tree' type='xmlNodePtr' info=' the tree if no eval string or the location'/>
<field name='value' type='xmlXPathObjectPtr' info=' The value if computed'/>
</struct>
<typedef name='xsltStackElemPtr' file='xsltInternals' type='xsltStackElem *'/>
<struct name='xsltStylePreComp' file='xsltInternals' type='struct _xsltStylePreComp'>
<field name='next' type='xsltElemPreCompPtr' info=' chained list'/>
<field name='type' type='xsltStyleType' info=' type of the element'/>
<field name='func' type='xsltTransformFunction' info=' handling function'/>
<field name='inst' type='xmlNodePtr' info='* Pre computed values.
*'/>
<field name='stype' type='xmlChar *' info=' sort'/>
<field name='has_stype' type='int' info=' sort'/>
<field name='number' type='int' info=' sort'/>
<field name='order' type='xmlChar *' info=' sort'/>
<field name='has_order' type='int' info=' sort'/>
<field name='descending' type='int' info=' sort'/>
<field name='lang' type='xmlChar *' info=' sort'/>
<field name='has_lang' type='int' info=' sort'/>
<field name='case_order' type='xmlChar *' info=' sort'/>
<field name='lower_first' type='int' info=' sort'/>
<field name='use' type='xmlChar *' info=' copy, element'/>
<field name='has_use' type='int' info=' copy, element'/>
<field name='noescape' type='int' info=' text'/>
<field name='name' type='xmlChar *' info=' element, attribute, pi'/>
<field name='has_name' type='int' info=' element, attribute, pi'/>
<field name='ns' type='xmlChar *' info=' element'/>
<field name='has_ns' type='int' info=' element'/>
<field name='mode' type='xmlChar *' info=' apply-templates'/>
<field name='modeURI' type='xmlChar *' info=' apply-templates'/>
<field name='test' type='xmlChar *' info=' if'/>
<field name='templ' type='xsltTemplatePtr' info=' call-template'/>
<field name='select' type='xmlChar *' info=' sort, copy-of, value-of, apply-templates'/>
<field name='ver11' type='int' info=' document'/>
<field name='filename' type='xmlChar *' info=' document URL'/>
<field name='has_filename' type='int' info=' document'/>
<field name='numdata' type='xsltNumberData' info=' number'/>
<field name='comp' type='xmlXPathCompExprPtr' info=' a precompiled XPath expression'/>
<field name='nsList' type='xmlNsPtr *' info=' the namespaces in scope'/>
<field name='nsNr' type='int' info=' the number of namespaces in scope'/>
</struct>
<typedef name='xsltStylePreCompPtr' file='xsltInternals' type='xsltStylePreComp *'/>
<typedef name='xsltStyleType' file='xsltInternals' type='enum'/>
<struct name='xsltStylesheet' file='xsltInternals' type='struct _xsltStylesheet'>
<field name='parent' type='struct _xsltStylesheet *' info=''/>
<field name='next' type='struct _xsltStylesheet *' info=''/>
<field name='imports' type='struct _xsltStylesheet *' info=''/>
<field name='docList' type='xsltDocumentPtr' info='* General data on the style sheet document.
*'/>
<field name='doc' type='xmlDocPtr' info=' the parsed XML stylesheet'/>
<field name='stripSpaces' type='xmlHashTablePtr' info=' the hash table of the strip-space and
preserve space elements'/>
<field name='stripAll' type='int' info=' strip-space * (1) preserve-space * (-1)'/>
<field name='cdataSection' type='xmlHashTablePtr' info='* Global variable or parameters.
*'/>
<field name='variables' type='xsltStackElemPtr' info='* Template descriptions.
*'/>
<field name='templates' type='xsltTemplatePtr' info=' the ordered list of templates'/>
<field name='templatesHash' type='void *' info=' hash table or wherever compiled templates
informations are stored'/>
<field name='rootMatch' type='void *' info=' template based on /'/>
<field name='keyMatch' type='void *' info=' template based on key()'/>
<field name='elemMatch' type='void *' info=' template based on *'/>
<field name='attrMatch' type='void *' info=' template based on @*'/>
<field name='parentMatch' type='void *' info=' template based on ..'/>
<field name='textMatch' type='void *' info=' template based on text()'/>
<field name='piMatch' type='void *' info=' template based on processing-instruction()'/>
<field name='commentMatch' type='void *' info='* Namespace aliases.
*'/>
<field name='nsAliases' type='xmlHashTablePtr' info='* Attribute sets.
*'/>
<field name='attributeSets' type='xmlHashTablePtr' info='* Namespaces.
*'/>
<field name='nsHash' type='xmlHashTablePtr' info=' the set of namespaces in use'/>
<field name='nsDefs' type='void *' info='* Key definitions.
*'/>
<field name='keys' type='void *' info='* Output related stuff.
*'/>
<field name='method' type='xmlChar *' info=' the output method'/>
<field name='methodURI' type='xmlChar *' info=' associated namespace if any'/>
<field name='version' type='xmlChar *' info=' version string'/>
<field name='encoding' type='xmlChar *' info=' encoding string'/>
<field name='omitXmlDeclaration' type='int' info='* Number formatting.
*'/>
<field name='decimalFormat' type='xsltDecimalFormatPtr' info=''/>
<field name='standalone' type='int' info=' standalone = "yes" | "no"'/>
<field name='doctypePublic' type='xmlChar *' info=' doctype-public string'/>
<field name='doctypeSystem' type='xmlChar *' info=' doctype-system string'/>
<field name='indent' type='int' info=' should output being indented'/>
<field name='mediaType' type='xmlChar *' info='* Precomputed blocks.
*'/>
<field name='preComps' type='xsltElemPreCompPtr' info=' list of precomputed blocks'/>
<field name='warnings' type='int' info=' number of warnings found at compilation'/>
<field name='errors' type='int' info=' number of errors found at compilation'/>
<field name='exclPrefix' type='xmlChar *' info=' last excluded prefixes'/>
<field name='exclPrefixTab' type='xmlChar **' info=' array of excluded prefixes'/>
<field name='exclPrefixNr' type='int' info=' number of excluded prefixes in scope'/>
<field name='exclPrefixMax' type='int' info=' size of the array'/>
<field name='_private' type='void *' info='* Extensions.
*'/>
<field name='extInfos' type='xmlHashTablePtr' info=' the extension data'/>
<field name='extrasNr' type='int' info='* For keeping track of nested includes
*'/>
<field name='includes' type='xsltDocumentPtr' info=' points to last nested include'/>
</struct>
<typedef name='xsltStylesheetPtr' file='xsltInternals' type='xsltStylesheet *'/>
<struct name='xsltTemplate' file='xsltInternals' type='struct _xsltTemplate'>
<field name='next' type='struct _xsltTemplate *' info=' chained list sorted by priority'/>
<field name='style' type='struct _xsltStylesheet *' info=' the containing stylesheet'/>
<field name='match' type='xmlChar *' info=' the matching string'/>
<field name='priority' type='float' info=' as given from the stylesheet, not computed'/>
<field name='name' type='xmlChar *' info=' the local part of the name QName'/>
<field name='nameURI' type='xmlChar *' info=' the URI part of the name QName'/>
<field name='mode' type='xmlChar *' info=' the local part of the mode QName'/>
<field name='modeURI' type='xmlChar *' info=' the URI part of the mode QName'/>
<field name='content' type='xmlNodePtr' info=' the template replacement value'/>
<field name='elem' type='xmlNodePtr' info=' the source element'/>
<field name='inheritedNsNr' type='int' info=' number of inherited namespaces'/>
<field name='inheritedNs' type='xmlNsPtr *' info=' inherited non-excluded namespaces Profiling informations'/>
<field name='nbCalls' type='int' info=' the number of time the template was called'/>
<field name='time' type='unsigned long' info=' the time spent in this template'/>
</struct>
<typedef name='xsltTemplatePtr' file='xsltInternals' type='xsltTemplate *'/>
<struct name='xsltTransformContext' file='xsltInternals' type='struct _xsltTransformContext'>
<field name='style' type='xsltStylesheetPtr' info=' the stylesheet used'/>
<field name='type' type='xsltOutputType' info=' the type of output'/>
<field name='templ' type='xsltTemplatePtr' info=' the current template'/>
<field name='templNr' type='int' info=' Nb of templates in the stack'/>
<field name='templMax' type='int' info=' Size of the templtes stack'/>
<field name='templTab' type='xsltTemplatePtr *' info=' the template stack'/>
<field name='vars' type='xsltStackElemPtr' info=' the current variable list'/>
<field name='varsNr' type='int' info=' Nb of variable list in the stack'/>
<field name='varsMax' type='int' info=' Size of the variable list stack'/>
<field name='varsTab' type='xsltStackElemPtr *' info=' the variable list stack'/>
<field name='varsBase' type='int' info='* Extensions
*'/>
<field name='extFunctions' type='xmlHashTablePtr' info=' the extension functions'/>
<field name='extElements' type='xmlHashTablePtr' info=' the extension elements'/>
<field name='extInfos' type='xmlHashTablePtr' info=' the extension data'/>
<field name='mode' type='const xmlChar *' info=' the current mode'/>
<field name='modeURI' type='const xmlChar *' info=' the current mode URI'/>
<field name='docList' type='xsltDocumentPtr' info=' the document list'/>
<field name='document' type='xsltDocumentPtr' info=' the current document'/>
<field name='node' type='xmlNodePtr' info=' the current node being processed'/>
<field name='nodeList' type='xmlNodeSetPtr' info=' the current node list xmlNodePtr current; the node'/>
<field name='output' type='xmlDocPtr' info=' the resulting document'/>
<field name='insert' type='xmlNodePtr' info=' the insertion node'/>
<field name='xpathCtxt' type='xmlXPathContextPtr' info=' the XPath context'/>
<field name='state' type='xsltTransformState' info='* Global variables
*'/>
<field name='globalVars' type='xmlHashTablePtr' info=' the global variables and params'/>
<field name='inst' type='xmlNodePtr' info=' the instruction in the stylesheet'/>
<field name='xinclude' type='int' info=' should XInclude be processed'/>
<field name='outputFile' type='const char *' info=' the output URI if known'/>
<field name='profile' type='int' info=' is this run profiled'/>
<field name='prof' type='long' info=' the current profiled value'/>
<field name='profNr' type='int' info=' Nb of templates in the stack'/>
<field name='profMax' type='int' info=' Size of the templtaes stack'/>
<field name='profTab' type='long *' info=' the profile template stack'/>
<field name='_private' type='void *' info=' user defined data'/>
<field name='extrasNr' type='int' info=' the number of extras used'/>
<field name='extrasMax' type='int' info=' the number of extras allocated'/>
<field name='extras' type='xsltRuntimeExtraPtr' info=' extra per runtime informations'/>
<field name='styleList' type='xsltDocumentPtr' info=' the stylesheet docs list'/>
<field name='sec' type='void *' info=' the security preferences if any'/>
<field name='error' type='xmlGenericErrorFunc' info=' a specific error handler'/>
<field name='errctx' type='void *' info=' context for the error handler'/>
<field name='sortfunc' type='xsltSortFunc' info='* handling of temporary Result Value Tree
*'/>
<field name='tmpRVT' type='xmlDocPtr' info=' list of RVT without persistance'/>
<field name='persistRVT' type='xmlDocPtr' info=' list of persistant RVTs'/>
<field name='ctxtflags' type='int' info='* Speed optimization when coalescing text nodes
*'/>
<field name='lasttext' type='const xmlChar *' info=' last text node content'/>
<field name='lasttsize' type='unsigned int' info=' last text node size'/>
<field name='lasttuse' type='unsigned int' info='* Per Context Debugging
*'/>
<field name='debugStatus' type='int' info=' the context level debug status'/>
<field name='traceCode' type='unsigned long *' info=' pointer to the variable holding the mask'/>
</struct>
<typedef name='xsltTransformContextPtr' file='xsltInternals' type='xsltTransformContext *'/>
<typedef name='xsltTransformState' file='xsltInternals' type='enum'/>
<variable name='xslDebugStatus' file='xsltutils' type='int'/>
<variable name='xsltEngineVersion' file='xslt' type='const char *'/>
<variable name='xsltExtMarker' file='preproc' type='const xmlChar *'/>
<variable name='xsltGenericDebug' file='xsltutils' type='xmlGenericErrorFunc'/>
<variable name='xsltGenericDebugContext' file='xsltutils' type='void *'/>
<variable name='xsltGenericError' file='xsltutils' type='xmlGenericErrorFunc'/>
<variable name='xsltGenericErrorContext' file='xsltutils' type='void *'/>
<variable name='xsltLibxmlVersion' file='xslt' type='const int'/>
<variable name='xsltLibxsltVersion' file='xslt' type='const int'/>
<variable name='xsltMaxDepth' file='xslt' type='int'/>
<function name='xslAddCall' file='xsltutils'>
<info>Add template "call" to call stack</info>
<return type='int' info=': 1 on sucess 0 otherwise an error may be printed if WITH_XSLT_DEBUG_BREAKPOINTS is defined'/>
<arg name='templ' type='xsltTemplatePtr' info='current template being applied'/>
<arg name='source' type='xmlNodePtr' info='the source node being processed'/>
</function>
<function name='xslDropCall' file='xsltutils'>
<info>Drop the topmost item off the call stack</info>
<return type='void'/>
</function>
<function name='xslHandleDebugger' file='transform'>
<info>If either cur or node are a breakpoint, or xslDebugStatus in state where debugging must occcur at this time then transfer control to the xslDebugBreak function</info>
<return type='void'/>
<arg name='cur' type='xmlNodePtr' info='source node being executed'/>
<arg name='node' type='xmlNodePtr' info='data node being processed'/>
<arg name='templ' type='xsltTemplatePtr' info='temlate that applies to node'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the xslt transform context'/>
</function>
<functype name='xsltAddCallCallback' file='xsltutils'>
<info></info>
<return type='int' info=''/>
<arg name='templ' type='xsltTemplatePtr' info=''/>
<arg name='source' type='xmlNodePtr' info=''/>
</functype>
<function name='xsltAddKey' file='keys'>
<info>add a key definition to a stylesheet</info>
<return type='int' info='0 in case of success, and -1 in case of failure.'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
<arg name='name' type='const xmlChar *' info='the key name or NULL'/>
<arg name='nameURI' type='const xmlChar *' info='the name URI or NULL'/>
<arg name='match' type='const xmlChar *' info='the match value'/>
<arg name='use' type='const xmlChar *' info='the use value'/>
<arg name='inst' type='xmlNodePtr' info='the key instruction'/>
</function>
<function name='xsltAddStackElemList' file='variables'>
<info>add the new element list at this level of the stack.</info>
<return type='int' info='0 in case of success, -1 in case of failure.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='xn XSLT transformation context'/>
<arg name='elems' type='xsltStackElemPtr' info='a stack element list'/>
</function>
<function name='xsltAddTemplate' file='pattern'>
<info>Register the XSLT pattern associated to @cur</info>
<return type='int' info='-1 in case of error, 0 otherwise'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
<arg name='cur' type='xsltTemplatePtr' info='an XSLT template'/>
<arg name='mode' type='const xmlChar *' info='the mode name or NULL'/>
<arg name='modeURI' type='const xmlChar *' info='the mode URI or NULL'/>
</function>
<function name='xsltAllocateExtra' file='xsltInternals'>
<info>Allocate an extra runtime information slot statically while compiling the stylesheet and return its number</info>
<return type='int' info='the number of the slot'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltAllocateExtraCtxt' file='xsltInternals'>
<info>Allocate an extra runtime information slot at run-time and return its number This make sure there is a slot ready in the transformation context</info>
<return type='int' info='the number of the slot'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltApplyAttributeSet' file='attributes'>
<info>Apply the xsl:use-attribute-sets</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT stylesheet'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt attribute node'/>
<arg name='attributes' type='xmlChar *' info='the set list.'/>
</function>
<function name='xsltApplyImports' file='transform'>
<info>Process the xslt apply-imports node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt apply-imports node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltApplyOneTemplate' file='transform'>
<info>Process the apply-templates node on the source node, if params are passed they are pushed on the variable stack but not popped, it's left to the caller to handle them after return (they may be reused).</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='list' type='xmlNodePtr' info='the template replacement nodelist'/>
<arg name='templ' type='xsltTemplatePtr' info='if is this a real template processing, the template processed'/>
<arg name='params' type='xsltStackElemPtr' info='a set of parameters for the template or NULL'/>
</function>
<function name='xsltApplyStripSpaces' file='transform'>
<info>Strip the unwanted ignorable spaces from the input tree</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the root of the XML tree'/>
</function>
<function name='xsltApplyStylesheet' file='transform'>
<info>Apply the stylesheet to the document NOTE: This may lead to a non-wellformed output XML wise !</info>
<return type='xmlDocPtr' info='the result document or NULL in case of error'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
<arg name='params' type='const char **' info='a NULL terminated arry of parameters names/values tuples'/>
</function>
<function name='xsltApplyStylesheetUser' file='transform'>
<info>Apply the stylesheet to the document and allow the user to provide its own transformation context.</info>
<return type='xmlDocPtr' info='the result document or NULL in case of error'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
<arg name='params' type='const char **' info='a NULL terminated array of parameters names/values tuples'/>
<arg name='output' type='const char *' info='the targetted output'/>
<arg name='profile' type='FILE *' info='profile FILE * output or NULL'/>
<arg name='userCtxt' type='xsltTransformContextPtr' info='user provided transform context'/>
</function>
<function name='xsltApplyTemplates' file='transform'>
<info>Process the apply-templates node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the apply-templates node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltAttrListTemplateProcess' file='templates'>
<info>Do a copy of an attribute list with attribute template processing</info>
<return type='xmlAttrPtr' info='a new xmlAttrPtr, or NULL in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='target' type='xmlNodePtr' info='the element where the attributes will be grafted'/>
<arg name='cur' type='xmlAttrPtr' info='the first attribute'/>
</function>
<function name='xsltAttrTemplateProcess' file='templates'>
<info>Process the given attribute and return the new processed copy.</info>
<return type='xmlAttrPtr' info='the attribute replacement.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='target' type='xmlNodePtr' info='the result node'/>
<arg name='cur' type='xmlAttrPtr' info='the attribute template node'/>
</function>
<function name='xsltAttrTemplateValueProcess' file='templates'>
<info>Process the given node and return the new string value.</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='str' type='const xmlChar *' info='the attribute template node value'/>
</function>
<function name='xsltAttrTemplateValueProcessNode' file='templates'>
<info>Process the given string, allowing to pass a namespace mapping context and return the new string value.</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='str' type='const xmlChar *' info='the attribute template node value'/>
<arg name='node' type='xmlNodePtr' info='the node hosting the attribute'/>
</function>
<function name='xsltAttribute' file='transform'>
<info>Process the xslt attribute node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt attribute node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCalibrateAdjust' file='xsltutils'>
<info>Used for to correct the calibration for xsltTimestamp()</info>
<return type='void'/>
<arg name='delta' type='long' info='a negative dealy value found'/>
</function>
<function name='xsltCallTemplate' file='transform'>
<info>Process the xslt call-template node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt call-template node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCheckExtPrefix' file='extensions'>
<info>Check if the given prefix is one of the declared extensions</info>
<return type='int' info='1 if this is an extension, 0 otherwise'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='prefix' type='const xmlChar *' info='the namespace prefix (possibly NULL)'/>
</function>
<function name='xsltCheckRead' file='security'>
<info>Check if the resource is allowed to be read</info>
<return type='int' info='1 if read is allowed, 0 if not and -1 in case or error.'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security options'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URL' type='const xmlChar *' info='the resource to be read'/>
</function>
<function name='xsltCheckWrite' file='security'>
<info>Check if the resource is allowed to be written, if necessary makes some preliminary work like creating directories</info>
<return type='int' info='1 if write is allowed, 0 if not and -1 in case or error.'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security options'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URL' type='const xmlChar *' info='the resource to be written'/>
</function>
<function name='xsltChoose' file='transform'>
<info>Process the xslt choose node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt choose node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCleanupGlobals' file='xslt'>
<info>Unregister all global variables set up by the XSLT library</info>
<return type='void'/>
</function>
<function name='xsltCleanupTemplates' file='pattern'>
<info>Cleanup the state of the templates used by the stylesheet and the ones it imports.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltComment' file='transform'>
<info>Process the xslt comment node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt comment node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCompilePattern' file='pattern'>
<info>Compile the XSLT pattern and generates a list of precompiled form suitable for fast matching. [1] Pattern ::= LocationPathPattern | Pattern '|' LocationPathPattern</info>
<return type='xsltCompMatchPtr' info='the generated pattern list or NULL in case of failure'/>
<arg name='pattern' type='const xmlChar *' info='an XSLT pattern'/>
<arg name='doc' type='xmlDocPtr' info='the containing document'/>
<arg name='node' type='xmlNodePtr' info='the containing element'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='runtime' type='xsltTransformContextPtr' info='the transformation context, if done at run-time'/>
</function>
<function name='xsltComputeSortResult' file='xsltutils'>
<info>reorder the current node list accordingly to the set of sorting requirement provided by the array of nodes.</info>
<return type='xmlXPathObjectPtr *' info='a ordered XPath nodeset or NULL in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='sort' type='xmlNodePtr' info='node list'/>
</function>
<function name='xsltCopy' file='transform'>
<info>Process the xslt copy node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt copy node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCopyNamespace' file='namespaces'>
<info>Do a copy of an namespace node. If @node is non-NULL the new namespaces are added automatically. This handles namespaces aliases</info>
<return type='xmlNsPtr' info='a new xmlNsPtr, or NULL in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
<arg name='node' type='xmlNodePtr' info='the target node'/>
<arg name='cur' type='xmlNsPtr' info='the namespace node'/>
</function>
<function name='xsltCopyNamespaceList' file='namespaces'>
<info>Do a copy of an namespace list. If @node is non-NULL the new namespaces are added automatically. This handles namespaces aliases</info>
<return type='xmlNsPtr' info='a new xmlNsPtr, or NULL in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
<arg name='node' type='xmlNodePtr' info='the target node'/>
<arg name='cur' type='xmlNsPtr' info='the first namespace'/>
</function>
<function name='xsltCopyOf' file='transform'>
<info>Process the xslt copy-of node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt copy-of node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltCopyTextString' file='transform'>
<info>Create a text node</info>
<return type='xmlNodePtr' info='a new xmlNodePtr, or NULL in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='target' type='xmlNodePtr' info='the element where the text will be attached'/>
<arg name='string' type='const xmlChar *' info='the text string'/>
<arg name='noescape' type='int' info='should disable-escaping be activated for this text node.'/>
</function>
<function name='xsltCreateRVT' file='xsltInternals'>
<info>Create a result value tree</info>
<return type='xmlDocPtr' info='the result value tree or NULL in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltDebug' file='extra'>
<info>Process an debug node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT processing context'/>
<arg name='node' type='xmlNodePtr' info='The current node'/>
<arg name='inst' type='xmlNodePtr' info='the instruction in the stylesheet'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed informations'/>
</function>
<function name='xsltDebugDumpExtensions' file='extensions'>
<info>Dumps a list of the registered XSLT extension functions and elements</info>
<return type='void'/>
<arg name='output' type='FILE *' info='the FILE * for the output, if NULL stdout is used'/>
</function>
<function name='xsltDebugGetDefaultTrace' file='xsltutils'>
<info></info>
<return type='xsltDebugTraceCodes' info=''/>
</function>
<function name='xsltDebugSetDefaultTrace' file='xsltutils'>
<info></info>
<return type='void'/>
<arg name='val' type='xsltDebugTraceCodes' info=''/>
</function>
<function name='xsltDecimalFormatGetByName' file='xsltInternals'>
<info>Find decimal-format by name</info>
<return type='xsltDecimalFormatPtr' info='the xsltDecimalFormatPtr'/>
<arg name='sheet' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='name' type='xmlChar *' info='the decimal-format name to find'/>
</function>
<function name='xsltDefaultSortFunction' file='xsltutils'>
<info>reorder the current node list accordingly to the set of sorting requirement provided by the arry of nodes.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='sorts' type='xmlNodePtr *' info='array of sort nodes'/>
<arg name='nbsorts' type='int' info='the number of sorts in the array'/>
</function>
<function name='xsltDoSortFunction' file='xsltutils'>
<info>reorder the current node list accordingly to the set of sorting requirement provided by the arry of nodes. This is a wrapper function, the actual function used is specified using xsltSetCtxtSortFunc() to set the context specific sort function, or xsltSetSortFunc() to set the global sort function. If a sort function is set on the context, this will get called. Otherwise the global sort function is called.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='sorts' type='xmlNodePtr *' info='array of sort nodes'/>
<arg name='nbsorts' type='int' info='the number of sorts in the array'/>
</function>
<function name='xsltDocumentComp' file='preproc'>
<info>Pre process an XSLT-1.1 document element</info>
<return type='xsltElemPreCompPtr' info='a precompiled data structure for the element'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='inst' type='xmlNodePtr' info='the instruction in the stylesheet'/>
<arg name='function' type='xsltTransformFunction' info='unused'/>
</function>
<function name='xsltDocumentElem' file='transform'>
<info>Process an EXSLT/XSLT-1.1 document element</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT processing context'/>
<arg name='node' type='xmlNodePtr' info='The current node'/>
<arg name='inst' type='xmlNodePtr' info='the instruction in the stylesheet'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltDocumentFunction' file='functions'>
<info>Implement the document() XSLT function node-set document(object, node-set?)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltDocumentSortFunction' file='xsltutils'>
<info>reorder the current node list @list accordingly to the document order</info>
<return type='void'/>
<arg name='list' type='xmlNodeSetPtr' info='the node set'/>
</function>
<functype name='xsltDropCallCallback' file='xsltutils'>
<info></info>
<return type='void'/>
</functype>
<functype name='xsltElemPreCompDeallocator' file='xsltInternals'>
<info>Deallocates an #xsltElemPreComp structure.</info>
<return type='void'/>
<arg name='comp' type='xsltElemPreCompPtr' info='the #xsltElemPreComp to free up'/>
</functype>
<function name='xsltElement' file='transform'>
<info>Process the xslt element node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt element node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltElementAvailableFunction' file='functions'>
<info>Implement the element-available() XSLT function boolean element-available(string)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltEvalAttrValueTemplate' file='templates'>
<info>Evaluate a attribute value template, i.e. the attribute value can contain expressions contained in curly braces ({}) and those are substituted by they computed value.</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='node' type='xmlNodePtr' info='the stylesheet node'/>
<arg name='name' type='const xmlChar *' info='the attribute QName'/>
<arg name='ns' type='const xmlChar *' info='the attribute namespace URI'/>
</function>
<function name='xsltEvalGlobalVariables' file='variables'>
<info>Evaluate the global variables of a stylesheet. This need to be done on parsed stylesheets before starting to apply transformations</info>
<return type='int' info='0 in case of success, -1 in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
</function>
<function name='xsltEvalOneUserParam' file='variables'>
<info>This is normally called from xsltEvalUserParams to process a single parameter from a list of parameters. The @value is evaluated as an XPath expression and the result is stored in the context's global variable/parameter hash table. To have a parameter treated literally (not as an XPath expression) use xsltQuoteUserParams (or xsltQuoteOneUserParam). For more details see description of xsltProcessOneUserParamInternal.</info>
<return type='int' info='0 in case of success, -1 in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='a null terminated string giving the name of the parameter'/>
<arg name='value' type='const xmlChar *' info='a null terminated string giving the XPath expression to be evaluated'/>
</function>
<function name='xsltEvalStaticAttrValueTemplate' file='templates'>
<info>Check if an attribute value template has a static value, i.e. the attribute value does not contain expressions contained in curly braces ({})</info>
<return type='xmlChar *' info='the static string value or NULL, must be deallocated by the caller.'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='node' type='xmlNodePtr' info='the stylesheet node'/>
<arg name='name' type='const xmlChar *' info='the attribute Name'/>
<arg name='ns' type='const xmlChar *' info='the attribute namespace URI'/>
<arg name='found' type='int *' info='indicator whether the attribute is present'/>
</function>
<function name='xsltEvalTemplateString' file='templates'>
<info>Evaluate a template string value, i.e. the parent list is interpreter as template content and the resulting tree string value is returned This is needed for example by xsl:comment and xsl:processing-instruction</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='node' type='xmlNodePtr' info='the stylesheet node'/>
<arg name='parent' type='xmlNodePtr' info='the content parent'/>
</function>
<function name='xsltEvalUserParams' file='variables'>
<info>Evaluate the global variables of a stylesheet. This needs to be done on parsed stylesheets before starting to apply transformations. Each of the parameters is evaluated as an XPath expression and stored in the global variables/parameter hash table. If you want your parameter used literally, use xsltQuoteUserParams.</info>
<return type='int' info='0 in case of success, -1 in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='params' type='const char **' info='a NULL terminated array of parameters name/value tuples'/>
</function>
<function name='xsltEvalXPathPredicate' file='templates'>
<info>Process the expression using XPath and evaluate the result as an XPath predicate</info>
<return type='int' info='1 is the predicate was true, 0 otherwise'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='comp' type='xmlXPathCompExprPtr' info='the XPath compiled expression'/>
<arg name='nsList' type='xmlNsPtr *' info='the namespaces in scope'/>
<arg name='nsNr' type='int' info='the number of namespaces in scope'/>
</function>
<function name='xsltEvalXPathString' file='templates'>
<info>Process the expression using XPath and get a string</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='comp' type='xmlXPathCompExprPtr' info='the compiled XPath expression'/>
</function>
<function name='xsltEvalXPathStringNs' file='templates'>
<info>Process the expression using XPath, allowing to pass a namespace mapping context and get a string</info>
<return type='xmlChar *' info='the computed string value or NULL, must be deallocated by the caller.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='comp' type='xmlXPathCompExprPtr' info='the compiled XPath expression'/>
<arg name='nsNr' type='int' info='the number of namespaces in the list'/>
<arg name='nsList' type='xmlNsPtr *' info='the list of in-scope namespaces to use'/>
</function>
<function name='xsltExtElementLookup' file='extensions'>
<info>Looks up an extension element. @ctxt can be NULL to search only in module elements.</info>
<return type='xsltTransformFunction' info='the element callback or NULL if not found'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT process context'/>
<arg name='name' type='const xmlChar *' info='the element name'/>
<arg name='URI' type='const xmlChar *' info='the element namespace URI'/>
</function>
<function name='xsltExtFunctionLookup' file='extensions'>
<info></info>
<return type='xmlXPathFunction' info=''/>
<arg name='ctxt' type='xsltTransformContextPtr' info=''/>
<arg name='name' type='const xmlChar *' info=''/>
<arg name='URI' type='const xmlChar *' info=''/>
</function>
<functype name='xsltExtInitFunction' file='extensions'>
<info>A function called at initialization time of an XSLT extension module.</info>
<return type='void *' info='a pointer to the module specific data for this transformation.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URI' type='const xmlChar *' info='the namespace URI for the extension'/>
</functype>
<function name='xsltExtModuleElementLookup' file='extensions'>
<info>Looks up an extension module element</info>
<return type='xsltTransformFunction' info='the callback function if found, NULL otherwise.'/>
<arg name='name' type='const xmlChar *' info='the element name'/>
<arg name='URI' type='const xmlChar *' info='the element namespace URI'/>
</function>
<function name='xsltExtModuleElementPreComputeLookup' file='extensions'>
<info>Looks up an extension module element pre-computation function</info>
<return type='xsltPreComputeFunction' info='the callback function if found, NULL otherwise.'/>
<arg name='name' type='const xmlChar *' info='the element name'/>
<arg name='URI' type='const xmlChar *' info='the element namespace URI'/>
</function>
<function name='xsltExtModuleFunctionLookup' file='extensions'>
<info>Looks up an extension module function</info>
<return type='xmlXPathFunction' info='the function if found, NULL otherwise.'/>
<arg name='name' type='const xmlChar *' info='the function name'/>
<arg name='URI' type='const xmlChar *' info='the function namespace URI'/>
</function>
<function name='xsltExtModuleTopLevelLookup' file='extensions'>
<info>Looks up an extension module top-level element</info>
<return type='xsltTopLevelFunction' info='the callback function if found, NULL otherwise.'/>
<arg name='name' type='const xmlChar *' info='the top-level element name'/>
<arg name='URI' type='const xmlChar *' info='the top-level element namespace URI'/>
</function>
<functype name='xsltExtShutdownFunction' file='extensions'>
<info>A function called at shutdown time of an XSLT extension module.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URI' type='const xmlChar *' info='the namespace URI for the extension'/>
<arg name='data' type='void *' info='the data associated to this module'/>
</functype>
<function name='xsltFindDocument' file='documents'>
<info>Try to find a document within the XSLT transformation context</info>
<return type='xsltDocumentPtr' info='the desired xsltDocumentPtr or NULL in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
</function>
<function name='xsltFindElemSpaceHandling' file='imports'>
<info>Find strip-space or preserve-space informations for an element respect the import precedence or the wildcards</info>
<return type='int' info='1 if space should be stripped, 0 if not, and 2 if everything should be CDTATA wrapped.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='node' type='xmlNodePtr' info='an XML node'/>
</function>
<function name='xsltFindTemplate' file='imports'>
<info>Finds the named template, apply import precedence rule.</info>
<return type='xsltTemplatePtr' info='the xsltTemplatePtr or NULL if not found'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='the template name'/>
<arg name='nameURI' type='const xmlChar *' info='the template name URI'/>
</function>
<function name='xsltForEach' file='transform'>
<info>Process the xslt for-each node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt for-each node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltFormatNumberConversion' file='xsltInternals'>
<info>format-number() uses the JDK 1.1 DecimalFormat class: http://java.sun.com/products/jdk/1.1/docs/api/java.text.DecimalFormat.html Structure: pattern := subpattern{;subpattern} subpattern := {prefix}integer{.fraction}{suffix} prefix := '\\u0000'..'\\uFFFD' - specialCharacters suffix := '\\u0000'..'\\uFFFD' - specialCharacters integer := '#'* '0'* '0' fraction := '0'* '#'* Notation: X* 0 or more instances of X (X | Y) either X or Y. X..Y any character from X up to Y, inclusive. S - T characters in S, except those in T Special Characters: Symbol Meaning 0 a digit # a digit, zero shows as absent . placeholder for decimal separator , placeholder for grouping separator. ; separates formats. - default negative prefix. % multiply by 100 and show as percentage ? multiply by 1000 and show as per mille X any other characters can be used in the prefix or suffix ' used to quote special characters in a prefix or suffix.</info>
<return type='xmlXPathError' info='a possible XPath error'/>
<arg name='self' type='xsltDecimalFormatPtr' info='the decimal format'/>
<arg name='format' type='xmlChar *' info='the format requested'/>
<arg name='number' type='double' info='the value to format'/>
<arg name='result' type='xmlChar **' info='the place to ouput the result'/>
</function>
<function name='xsltFormatNumberFunction' file='functions'>
<info>Implement the format-number() XSLT function string format-number(number, string, string?)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltFreeAttributeSetsHashes' file='attributes'>
<info>Free up the memory used by attribute sets</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeCompMatchList' file='pattern'>
<info>Free up the memory allocated by all the elements of @comp</info>
<return type='void'/>
<arg name='comp' type='xsltCompMatchPtr' info='an XSLT comp list'/>
</function>
<function name='xsltFreeCtxtExts' file='extensions'>
<info>Free the XSLT extension data</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltFreeDocumentKeys' file='keys'>
<info>Free the keys associated to a document</info>
<return type='void'/>
<arg name='doc' type='xsltDocumentPtr' info='a XSLT document'/>
</function>
<function name='xsltFreeDocuments' file='documents'>
<info>Free up all the space used by the loaded documents</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltFreeExts' file='extensions'>
<info>Free up the memory used by XSLT extensions in a stylesheet</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeGlobalVariables' file='variables'>
<info>Free up the data associated to the global variables its value.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
</function>
<function name='xsltFreeKeys' file='keys'>
<info>Free up the memory used by XSLT keys in a stylesheet</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeNamespaceAliasHashes' file='namespaces'>
<info>Free up the memory used by namespaces aliases</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeRVTs' file='xsltInternals'>
<info>Free all the registered result value tree of the transformation</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltFreeSecurityPrefs' file='security'>
<info>Free up a security preference block</info>
<return type='void'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to free'/>
</function>
<function name='xsltFreeStackElemList' file='xsltInternals'>
<info>Free up the memory allocated by @elem</info>
<return type='void'/>
<arg name='elem' type='xsltStackElemPtr' info='an XSLT stack element'/>
</function>
<function name='xsltFreeStyleDocuments' file='documents'>
<info>Free up all the space used by the loaded documents</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT style sheet'/>
</function>
<function name='xsltFreeStylePreComps' file='preproc'>
<info>Free up the memory allocated by all precomputed blocks</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltFreeStylesheet' file='xsltInternals'>
<info>Free up the memory allocated by @sheet</info>
<return type='void'/>
<arg name='sheet' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeTemplateHashes' file='pattern'>
<info>Free up the memory used by xsltAddTemplate/xsltGetTemplate mechanism</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltFreeTransformContext' file='transform'>
<info>Free up the memory allocated by @ctxt</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT parser context'/>
</function>
<function name='xsltFunctionAvailableFunction' file='functions'>
<info>Implement the function-available() XSLT function boolean function-available(string)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltFunctionNodeSet' file='extra'>
<info>Implement the node-set() XSLT function node-set node-set(result-tree) This function is available in libxslt, saxon or xt namespace.</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltGenerateIdFunction' file='functions'>
<info>Implement the generate-id() XSLT function string generate-id(node-set?)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltGetDebuggerStatus' file='xsltutils'>
<info>Get xslDebugStatus.</info>
<return type='int' info='the value of xslDebugStatus.'/>
</function>
<function name='xsltGetDefaultSecurityPrefs' file='security'>
<info>Get the default security preference application-wide</info>
<return type='xsltSecurityPrefsPtr' info='the current xsltSecurityPrefsPtr in use or NULL if none'/>
</function>
<function name='xsltGetExtData' file='extensions'>
<info>Retrieve the data associated to the extension module in this given transformation.</info>
<return type='void *' info='the pointer or NULL if not present'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URI' type='const xmlChar *' info='the URI associated to the exension module'/>
</function>
<function name='xsltGetExtInfo' file='extensions'>
<info>looks up URI in extInfos of the stylesheet</info>
<return type='xmlHashTablePtr' info='a pointer to the hash table if found, else NULL'/>
<arg name='style' type='xsltStylesheetPtr' info='pointer to a stylesheet'/>
<arg name='URI' type='const xmlChar *' info='the namespace URI desired'/>
</function>
<function name='xsltGetKey' file='keys'>
<info>Lookup a key</info>
<return type='xmlNodeSetPtr' info='the nodeset resulting from the query or NULL'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='the key name or NULL'/>
<arg name='nameURI' type='const xmlChar *' info='the name URI or NULL'/>
<arg name='value' type='const xmlChar *' info='the key value to look for'/>
</function>
<function name='xsltGetNamespace' file='namespaces'>
<info>Find the right namespace value for this prefix, if needed create and add a new namespace decalaration on the node Handle namespace aliases</info>
<return type='xmlNsPtr' info='the namespace node to use or NULL'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
<arg name='cur' type='xmlNodePtr' info='the input node'/>
<arg name='ns' type='xmlNsPtr' info='the namespace'/>
<arg name='out' type='xmlNodePtr' info='the output node (or its parent)'/>
</function>
<function name='xsltGetNsProp' file='xsltutils'>
<info>Similar to xmlGetNsProp() but with a slightly different semantic Search and get the value of an attribute associated to a node This attribute has to be anchored in the namespace specified, or has no namespace and the element is in that namespace. This does the entity substitution. This function looks in DTD attribute declaration for #FIXED or default declaration values unless DTD use has been turned off.</info>
<return type='xmlChar *' info='the attribute value or NULL if not found. It's up to the caller to free the memory.'/>
<arg name='node' type='xmlNodePtr' info='the node'/>
<arg name='name' type='const xmlChar *' info='the attribute name'/>
<arg name='nameSpace' type='const xmlChar *' info='the URI of the namespace'/>
</function>
<function name='xsltGetProfileInformation' file='xsltutils'>
<info>This function should be called after the transformation completed to extract template processing profiling informations if availble. The informations are returned as an XML document tree like <?xml version="1.0"?> <profile> <template rank="1" match="*" name="" mode="" calls="6" time="48" average="8"/> <template rank="2" match="item2|item3" name="" mode="" calls="10" time="30" average="3"/> <template rank="3" match="item1" name="" mode="" calls="5" time="17" average="3"/> </profile> The caller will need to free up the returned tree with xmlFreeDoc()</info>
<return type='xmlDocPtr' info='the xmlDocPtr corresponding to the result or NULL if not available.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
</function>
<function name='xsltGetQNameURI' file='xsltutils'>
<info>This function analyzes @name, if the name contains a prefix, the function seaches the associated namespace in scope for it. It will also replace @name value with the NCName, the old value being freed. Errors in the prefix lookup are signalled by setting @name to NULL. NOTE: the namespace returned is a pointer to the place where it is defined and hence has the same lifespan as the document holding it.</info>
<return type='const xmlChar *' info='the namespace URI if there is a prefix, or NULL if @name is not prefixed.'/>
<arg name='node' type='xmlNodePtr' info='the node holding the QName'/>
<arg name='name' type='xmlChar **' info='pointer to the initial QName value'/>
</function>
<function name='xsltGetSecurityPrefs' file='security'>
<info>Lookup the security option to get the callback checking function</info>
<return type='xsltSecurityCheck' info='NULL if not found, the function otherwise'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to update'/>
<arg name='option' type='xsltSecurityOption' info='the option to lookup'/>
</function>
<function name='xsltGetSpecialNamespace' file='namespaces'>
<info>Find the right namespace value for this URI, if needed create and add a new namespace decalaration on the node</info>
<return type='xmlNsPtr' info='the namespace node to use or NULL'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
<arg name='cur' type='xmlNodePtr' info='the input node'/>
<arg name='URI' type='const xmlChar *' info='the namespace URI'/>
<arg name='prefix' type='const xmlChar *' info='the suggested prefix'/>
<arg name='out' type='xmlNodePtr' info='the output node (or its parent)'/>
</function>
<function name='xsltGetTemplate' file='pattern'>
<info>Finds the template applying to this node, if @style is non-NULL it means one needs to look for the next imported template in scope.</info>
<return type='xsltTemplatePtr' info='the xsltTemplatePtr or NULL if not found'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node being processed'/>
<arg name='style' type='xsltStylesheetPtr' info='the current style'/>
</function>
<function name='xsltGetUTF8Char' file='xsltutils'>
<info>Read one UTF8 Char from @utf Function copied from libxml2 xmlGetUTF8Char() ... to discard ultimately and use the original API</info>
<return type='int' info='the char value or -1 in case of error and update @len with the number of bytes used'/>
<arg name='utf' type='const unsigned char *' info='a sequence of UTF-8 encoded bytes'/>
<arg name='len' type='int *' info='a pointer to @bytes len'/>
</function>
<function name='xsltGetXIncludeDefault' file='transform'>
<info>Provides the default state for XInclude processing</info>
<return type='int' info='0 if there is no processing 1 otherwise'/>
</function>
<functype name='xsltHandleDebuggerCallback' file='xsltutils'>
<info></info>
<return type='void'/>
<arg name='cur' type='xmlNodePtr' info=''/>
<arg name='node' type='xmlNodePtr' info=''/>
<arg name='templ' type='xsltTemplatePtr' info=''/>
<arg name='ctxt' type='xsltTransformContextPtr' info=''/>
</functype>
<function name='xsltIf' file='transform'>
<info>Process the xslt if node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt if node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltInitCtxtExts' file='extensions'>
<info>Initialize the set of modules with registered stylesheet data</info>
<return type='int' info='the number of modules initialized or -1 in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltInitCtxtKeys' file='keys'>
<info>Computes all the keys tables for the current input document. Should be done before global varibales are initialized.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='doc' type='xsltDocumentPtr' info='an XSLT document'/>
</function>
<function name='xsltInitElemPreComp' file='extensions'>
<info>Initializes an existing #xsltElemPreComp structure. This is usefull when extending an #xsltElemPreComp to store precomputed data. This function MUST be called on any extension element precomputed data struct.</info>
<return type='void'/>
<arg name='comp' type='xsltElemPreCompPtr' info='an #xsltElemPreComp (or generally a derived structure)'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='inst' type='xmlNodePtr' info='the element node'/>
<arg name='function' type='xsltTransformFunction' info='the transform function'/>
<arg name='freeFunc' type='xsltElemPreCompDeallocator' info='the @comp deallocator'/>
</function>
<function name='xsltIsBlank' file='xsltInternals'>
<info>Check if a string is ignorable</info>
<return type='int' info='1 if the string is NULL or made of blanks chars, 0 otherwise'/>
<arg name='str' type='xmlChar *' info='a string'/>
</function>
<function name='xsltKeyFunction' file='functions'>
<info>Implement the key() XSLT function node-set key(string, object)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltLoadDocument' file='documents'>
<info>Try to load a document (not a stylesheet) within the XSLT transformation context</info>
<return type='xsltDocumentPtr' info='the new xsltDocumentPtr or NULL in case of error'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='URI' type='const xmlChar *' info='the computed URI of the document'/>
</function>
<function name='xsltLoadStyleDocument' file='documents'>
<info>Try to load a stylesheet document within the XSLT transformation context</info>
<return type='xsltDocumentPtr' info='the new xsltDocumentPtr or NULL in case of error'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT style sheet'/>
<arg name='URI' type='const xmlChar *' info='the computed URI of the document'/>
</function>
<function name='xsltLoadStylesheetPI' file='xsltInternals'>
<info>This function tries to locate the stylesheet PI in the given document If found, and if contained within the document, it will extract that subtree to build the stylesheet to process @doc (doc itself will be modified). If found but referencing an external document it will attempt to load it and generate a stylesheet from it. In both cases, the resulting stylesheet and the document need to be freed once the transformation is done.</info>
<return type='xsltStylesheetPtr' info='a new XSLT stylesheet structure or NULL if not found.'/>
<arg name='doc' type='xmlDocPtr' info='a document to process'/>
</function>
<function name='xsltMatchPattern' file='pattern'>
<info></info>
<return type='int' info=''/>
<arg name='ctxt' type='xsltTransformContextPtr' info=''/>
<arg name='node' type='xmlNodePtr' info=''/>
<arg name='pattern' type='const xmlChar *' info=''/>
<arg name='ctxtdoc' type='xmlDocPtr' info=''/>
<arg name='ctxtnode' type='xmlNodePtr' info=''/>
</function>
<function name='xsltMessage' file='xsltutils'>
<info>Process and xsl:message construct</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT processing context'/>
<arg name='node' type='xmlNodePtr' info='The current node'/>
<arg name='inst' type='xmlNodePtr' info='The node containing the message instruction'/>
</function>
<function name='xsltNamespaceAlias' file='namespaces'>
<info>Read the stylesheet-prefix and result-prefix attributes, register them as well as the corresponding namespace.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='node' type='xmlNodePtr' info='the xsl:namespace-alias node'/>
</function>
<function name='xsltNeedElemSpaceHandling' file='imports'>
<info>Checks whether that stylesheet requires white-space stripping</info>
<return type='int' info='1 if space should be stripped, 0 if not'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltNewDocument' file='documents'>
<info>Register a new document, apply key computations</info>
<return type='xsltDocumentPtr' info='a handler to the document'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context (or NULL)'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
</function>
<function name='xsltNewElemPreComp' file='extensions'>
<info>Creates and initializes an #xsltElemPreComp</info>
<return type='xsltElemPreCompPtr' info='the new and initialized #xsltElemPreComp'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='inst' type='xmlNodePtr' info='the element node'/>
<arg name='function' type='xsltTransformFunction' info='the transform function'/>
</function>
<function name='xsltNewSecurityPrefs' file='security'>
<info>Create a new security preference block</info>
<return type='xsltSecurityPrefsPtr' info='a pointer to the new block or NULL in case of error'/>
</function>
<function name='xsltNewStyleDocument' file='documents'>
<info>Register a new document, apply key computations</info>
<return type='xsltDocumentPtr' info='a handler to the document'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT style sheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
</function>
<function name='xsltNewStylesheet' file='xsltInternals'>
<info>Create a new XSLT Stylesheet</info>
<return type='xsltStylesheetPtr' info='the newly allocated xsltStylesheetPtr or NULL in case of error'/>
</function>
<function name='xsltNewTransformContext' file='transform'>
<info>Create a new XSLT TransformContext</info>
<return type='xsltTransformContextPtr' info='the newly allocated xsltTransformContextPtr or NULL in case of error'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='the input document'/>
</function>
<function name='xsltNextImport' file='imports'>
<info>Find the next stylesheet in import precedence.</info>
<return type='xsltStylesheetPtr' info='the next stylesheet or NULL if it was the last one'/>
<arg name='cur' type='xsltStylesheetPtr' info='the current XSLT stylesheet'/>
</function>
<function name='xsltNormalizeCompSteps' file='pattern'>
<info>This is a hashtable scanner function to normalize the compiled steps of an imported stylesheet.</info>
<return type='void'/>
<arg name='payload' type='void *' info='pointer to template hash table entry'/>
<arg name='data' type='void *' info='pointer to the stylesheet'/>
<arg name='name' type='const xmlChar *' info='template match name'/>
</function>
<function name='xsltNumber' file='transform'>
<info>Process the xslt number node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt number node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltNumberFormat' file='xsltInternals'>
<info>Convert one number.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='data' type='xsltNumberDataPtr' info='the formatting informations'/>
<arg name='node' type='xmlNodePtr' info='the data to format'/>
</function>
<function name='xsltParseGlobalParam' file='variables'>
<info>parse an XSLT transformation param declaration and record its value.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the "param" element'/>
</function>
<function name='xsltParseGlobalVariable' file='variables'>
<info>parse an XSLT transformation variable declaration and record its value.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the "variable" element'/>
</function>
<function name='xsltParseStylesheetAttributeSet' file='attributes'>
<info>parse an XSLT stylesheet attribute-set element</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the "attribute-set" element'/>
</function>
<function name='xsltParseStylesheetCallerParam' file='variables'>
<info>parse an XSLT transformation param declaration, compute its value but doesn't record it.</info>
<return type='xsltStackElemPtr' info='the new xsltStackElemPtr or NULL'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='cur' type='xmlNodePtr' info='the "param" element'/>
</function>
<function name='xsltParseStylesheetDoc' file='xsltInternals'>
<info>parse an XSLT stylesheet building the associated structures</info>
<return type='xsltStylesheetPtr' info='a new XSLT stylesheet structure.'/>
<arg name='doc' type='xmlDocPtr' info='and xmlDoc parsed XML'/>
</function>
<function name='xsltParseStylesheetFile' file='xsltInternals'>
<info>Load and parse an XSLT stylesheet</info>
<return type='xsltStylesheetPtr' info='a new XSLT stylesheet structure.'/>
<arg name='filename' type='const xmlChar *' info='the filename/URL to the stylesheet'/>
</function>
<function name='xsltParseStylesheetImport' file='imports'>
<info>parse an XSLT stylesheet import element</info>
<return type='int' info='0 in case of success -1 in case of failure.'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the import element'/>
</function>
<function name='xsltParseStylesheetImportedDoc' file='xsltInternals'>
<info>parse an XSLT stylesheet building the associated structures except the processing not needed for imported documents.</info>
<return type='xsltStylesheetPtr' info='a new XSLT stylesheet structure.'/>
<arg name='doc' type='xmlDocPtr' info='an xmlDoc parsed XML'/>
<arg name='style' type='xsltStylesheetPtr' info='pointer to parent stylesheet'/>
</function>
<function name='xsltParseStylesheetInclude' file='imports'>
<info>parse an XSLT stylesheet include element</info>
<return type='int' info='0 in case of success -1 in case of failure'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the include node'/>
</function>
<function name='xsltParseStylesheetOutput' file='xsltInternals'>
<info>parse an XSLT stylesheet output element and record information related to the stylesheet output</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='cur' type='xmlNodePtr' info='the "output" element'/>
</function>
<function name='xsltParseStylesheetParam' file='variables'>
<info>parse an XSLT transformation param declaration and record its value.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='cur' type='xmlNodePtr' info='the "param" element'/>
</function>
<function name='xsltParseStylesheetProcess' file='xsltInternals'>
<info>parse an XSLT stylesheet adding the associated structures</info>
<return type='xsltStylesheetPtr' info='the value of the 'ret' parameter if everything went right, NULL if something went amiss.'/>
<arg name='ret' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='and xmlDoc parsed XML'/>
</function>
<function name='xsltParseStylesheetVariable' file='variables'>
<info>parse an XSLT transformation variable declaration and record its value.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='cur' type='xmlNodePtr' info='the "variable" element'/>
</function>
<function name='xsltParseTemplateContent' file='xsltInternals'>
<info>parse a template content-model Clean-up the template content from unwanted ignorable blank nodes and process xslt:text</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='templ' type='xmlNodePtr' info='the container node (can be a document for literal results)'/>
</function>
<function name='xsltPreComputeExtModuleElement' file='extensions'>
<info>Precomputes an extension module element</info>
<return type='xsltElemPreCompPtr' info='the precomputed data'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='inst' type='xmlNodePtr' info='the element node'/>
</function>
<functype name='xsltPreComputeFunction' file='extensions'>
<info></info>
<return type='xsltElemPreCompPtr' info=''/>
<arg name='style' type='xsltStylesheetPtr' info=''/>
<arg name='inst' type='xmlNodePtr' info=''/>
<arg name='function' type='xsltTransformFunction' info=''/>
</functype>
<function name='xsltPrintErrorContext' file='xsltutils'>
<info>Display the context of an error.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the transformation context'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='node' type='xmlNodePtr' info='the current node being processed'/>
</function>
<function name='xsltProcessingInstruction' file='transform'>
<info>Process the xslt processing-instruction node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt processing-instruction node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltProfileStylesheet' file='transform'>
<info>Apply the stylesheet to the document and dump the profiling to the given output.</info>
<return type='xmlDocPtr' info='the result document or NULL in case of error'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
<arg name='params' type='const char **' info='a NULL terminated arry of parameters names/values tuples'/>
<arg name='output' type='FILE *' info='a FILE * for the profiling output'/>
</function>
<function name='xsltQuoteOneUserParam' file='variables'>
<info>This is normally called from xsltQuoteUserParams to process a single parameter from a list of parameters. The @value is stored in the context's global variable/parameter hash table.</info>
<return type='int' info='0 in case of success, -1 in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='a null terminated string giving the name of the parameter'/>
<arg name='value' type='const xmlChar *' info='a null terminated string giving the parameter value'/>
</function>
<function name='xsltQuoteUserParams' file='variables'>
<info>Similar to xsltEvalUserParams, but the values are treated literally and are * *not* evaluated as XPath expressions. This should be done on parsed stylesheets before starting to apply transformations.</info>
<return type='int' info='0 in case of success, -1 in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='params' type='const char **' info='a NULL terminated arry of parameters names/values tuples'/>
</function>
<function name='xsltRegisterAllElement' file='transform'>
<info>Registers all default XSLT elements in this context</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XPath context'/>
</function>
<function name='xsltRegisterAllExtras' file='extra'>
<info>Registers the built-in extensions</info>
<return type='void'/>
</function>
<function name='xsltRegisterAllFunctions' file='functions'>
<info>Registers all default XSLT functions in this context</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
</function>
<function name='xsltRegisterExtElement' file='extensions'>
<info>Registers an extension element</info>
<return type='int' info='0 in case of success, -1 in case of failure'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='the name of the element'/>
<arg name='URI' type='const xmlChar *' info='the URI associated to the element'/>
<arg name='function' type='xsltTransformFunction' info='the actual implementation which should be called'/>
</function>
<function name='xsltRegisterExtFunction' file='extensions'>
<info>Registers an extension function</info>
<return type='int' info='0 in case of success, -1 in case of failure'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='the name of the element'/>
<arg name='URI' type='const xmlChar *' info='the URI associated to the element'/>
<arg name='function' type='xmlXPathFunction' info='the actual implementation which should be called'/>
</function>
<function name='xsltRegisterExtModule' file='extensions'>
<info>Register an XSLT extension module to the library.</info>
<return type='int' info='0 if sucessful, -1 in case of error'/>
<arg name='URI' type='const xmlChar *' info='URI associated to this module'/>
<arg name='initFunc' type='xsltExtInitFunction' info='the module initialization function'/>
<arg name='shutdownFunc' type='xsltExtShutdownFunction' info='the module shutdown function'/>
</function>
<function name='xsltRegisterExtModuleElement' file='extensions'>
<info>Registers an extension module element.</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the element name'/>
<arg name='URI' type='const xmlChar *' info='the element namespace URI'/>
<arg name='precomp' type='xsltPreComputeFunction' info='the pre-computation callback'/>
<arg name='transform' type='xsltTransformFunction' info='the transformation callback'/>
</function>
<function name='xsltRegisterExtModuleFull' file='extensions'>
<info>Register an XSLT extension module to the library.</info>
<return type='int' info='0 if sucessful, -1 in case of error'/>
<arg name='URI' type='const xmlChar *' info='URI associated to this module'/>
<arg name='initFunc' type='xsltExtInitFunction' info='the module initialization function'/>
<arg name='shutdownFunc' type='xsltExtShutdownFunction' info='the module shutdown function'/>
<arg name='styleInitFunc' type='xsltStyleExtInitFunction' info='the module initialization function'/>
<arg name='styleShutdownFunc' type='xsltStyleExtShutdownFunction' info='the module shutdown function'/>
</function>
<function name='xsltRegisterExtModuleFunction' file='extensions'>
<info>Registers an extension module function.</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the function name'/>
<arg name='URI' type='const xmlChar *' info='the function namespace URI'/>
<arg name='function' type='xmlXPathFunction' info='the function callback'/>
</function>
<function name='xsltRegisterExtModuleTopLevel' file='extensions'>
<info>Registers an extension module top-level element.</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the top-level element name'/>
<arg name='URI' type='const xmlChar *' info='the top-level element namespace URI'/>
<arg name='function' type='xsltTopLevelFunction' info='the top-level element callback'/>
</function>
<function name='xsltRegisterExtPrefix' file='extensions'>
<info>Registers an extension namespace</info>
<return type='int' info='0 in case of success, -1 in case of failure'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
<arg name='prefix' type='const xmlChar *' info='the prefix used'/>
<arg name='URI' type='const xmlChar *' info='the URI associated to the extension'/>
</function>
<function name='xsltRegisterExtras' file='extra'>
<info>Registers the built-in extensions. This function is deprecated, use xsltRegisterAllExtras instead.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
</function>
<function name='xsltRegisterPersistRVT' file='xsltInternals'>
<info>Register the result value tree for destruction at the end of the processing</info>
<return type='int' info='0 in case of success and -1 in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='RVT' type='xmlDocPtr' info='a result value tree'/>
</function>
<function name='xsltRegisterTestModule' file='extensions'>
<info>Registers the test module</info>
<return type='void'/>
</function>
<function name='xsltRegisterTmpRVT' file='xsltInternals'>
<info>Register the result value tree for destruction at the end of the context</info>
<return type='int' info='0 in case of success and -1 in case of error.'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='RVT' type='xmlDocPtr' info='a result value tree'/>
</function>
<function name='xsltResolveStylesheetAttributeSet' file='attributes'>
<info>resolve the references between attribute sets.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
</function>
<function name='xsltRunStylesheet' file='transform'>
<info>Apply the stylesheet to the document and generate the output according to @output @SAX and @IObuf. It's an error to specify both @SAX and @IObuf. NOTE: This may lead to a non-wellformed output XML wise ! NOTE: This may also result in multiple files being generated NOTE: using IObuf, the result encoding used will be the one used for creating the output buffer, use the following macro to read it from the stylesheet XSLT_GET_IMPORT_PTR(encoding, style, encoding) NOTE: using SAX, any encoding specified in the stylesheet will be lost since the interface uses only UTF8</info>
<return type='int' info='the number of bytes written to the main resource or -1 in case of error.'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
<arg name='params' type='const char **' info='a NULL terminated array of parameters names/values tuples'/>
<arg name='output' type='const char *' info='the URL/filename ot the generated resource if available'/>
<arg name='SAX' type='xmlSAXHandlerPtr' info='a SAX handler for progressive callback output (not implemented yet)'/>
<arg name='IObuf' type='xmlOutputBufferPtr' info='an output buffer for progressive output (not implemented yet)'/>
</function>
<function name='xsltRunStylesheetUser' file='transform'>
<info>Apply the stylesheet to the document and generate the output according to @output @SAX and @IObuf. It's an error to specify both @SAX and @IObuf. NOTE: This may lead to a non-wellformed output XML wise ! NOTE: This may also result in multiple files being generated NOTE: using IObuf, the result encoding used will be the one used for creating the output buffer, use the following macro to read it from the stylesheet XSLT_GET_IMPORT_PTR(encoding, style, encoding) NOTE: using SAX, any encoding specified in the stylesheet will be lost since the interface uses only UTF8</info>
<return type='int' info='the number of by written to the main resource or -1 in case of error.'/>
<arg name='style' type='xsltStylesheetPtr' info='a parsed XSLT stylesheet'/>
<arg name='doc' type='xmlDocPtr' info='a parsed XML document'/>
<arg name='params' type='const char **' info='a NULL terminated array of parameters names/values tuples'/>
<arg name='output' type='const char *' info='the URL/filename ot the generated resource if available'/>
<arg name='SAX' type='xmlSAXHandlerPtr' info='a SAX handler for progressive callback output (not implemented yet)'/>
<arg name='IObuf' type='xmlOutputBufferPtr' info='an output buffer for progressive output (not implemented yet)'/>
<arg name='profile' type='FILE *' info='profile FILE * output or NULL'/>
<arg name='userCtxt' type='xsltTransformContextPtr' info='user provided transform context'/>
</function>
<function name='xsltSaveProfiling' file='xsltutils'>
<info>Save the profiling informations on @output</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT context'/>
<arg name='output' type='FILE *' info='a FILE * for saving the informations'/>
</function>
<function name='xsltSaveResultTo' file='xsltutils'>
<info>Save the result @result obtained by applying the @style stylesheet to an I/O output channel @buf</info>
<return type='int' info='the number of byte written or -1 in case of failure.'/>
<arg name='buf' type='xmlOutputBufferPtr' info='an output buffer'/>
<arg name='result' type='xmlDocPtr' info='the result xmlDocPtr'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltSaveResultToFd' file='xsltutils'>
<info>Save the result @result obtained by applying the @style stylesheet to an open file descriptor This does not close the descriptor.</info>
<return type='int' info='the number of bytes written or -1 in case of failure.'/>
<arg name='fd' type='int' info='a file descriptor'/>
<arg name='result' type='xmlDocPtr' info='the result xmlDocPtr'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltSaveResultToFile' file='xsltutils'>
<info>Save the result @result obtained by applying the @style stylesheet to an open FILE * I/O. This does not close the FILE @file</info>
<return type='int' info='the number of bytes written or -1 in case of failure.'/>
<arg name='file' type='FILE *' info='a FILE * I/O'/>
<arg name='result' type='xmlDocPtr' info='the result xmlDocPtr'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltSaveResultToFilename' file='xsltutils'>
<info>Save the result @result obtained by applying the @style stylesheet to a file or @URL</info>
<return type='int' info='the number of byte written or -1 in case of failure.'/>
<arg name='URL' type='const char *' info='a filename or URL'/>
<arg name='result' type='xmlDocPtr' info='the result xmlDocPtr'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='compression' type='int' info='the compression factor (0 - 9 included)'/>
</function>
<function name='xsltSaveResultToString' file='xsltutils'>
<info>Save the result @result obtained by applying the @style stylesheet to a file or @URL</info>
<return type='int' info='the number of byte written or -1 in case of failure.'/>
<arg name='doc_txt_ptr' type='xmlChar **' info='Memory pointer for allocated XML text'/>
<arg name='doc_txt_len' type='int *' info='Length of the generated XML text'/>
<arg name='result' type='xmlDocPtr' info='the result xmlDocPtr'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltSecurityAllow' file='security'>
<info>Function used to always allow an operation</info>
<return type='int' info='1 always'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to use'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='value' type='const char *' info='unused'/>
</function>
<functype name='xsltSecurityCheck' file='security'>
<info>User provided function to check the value of a string like a file path or an URL ...</info>
<return type='int' info=''/>
<arg name='sec' type='xsltSecurityPrefsPtr' info=''/>
<arg name='ctxt' type='xsltTransformContextPtr' info=''/>
<arg name='value' type='const char *' info=''/>
</functype>
<function name='xsltSecurityForbid' file='security'>
<info>Function used to always forbid an operation</info>
<return type='int' info='0 always'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to use'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='value' type='const char *' info='unused'/>
</function>
<function name='xsltSetCtxtSecurityPrefs' file='security'>
<info>Set the security preference for a specific transformation</info>
<return type='int' info='-1 in case of error, 0 otherwise'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to use'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltSetCtxtSortFunc' file='xsltutils'>
<info>Function to set the handler for XSLT sorting for the specified context. If the handler is NULL, then the global sort function will be called</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='handler' type='xsltSortFunc' info='the new handler function'/>
</function>
<function name='xsltSetDebuggerCallbacks' file='xsltutils'>
<info>This function allow to plug a debugger into the XSLT library @block points to a block of memory containing the address of @no callback routines.</info>
<return type='int' info='0 in case of success and -1 in case of error'/>
<arg name='no' type='int' info='number of callbacks'/>
<arg name='block' type='void *' info='the block of callbacks'/>
</function>
<function name='xsltSetDebuggerStatus' file='xsltutils'>
<info>This function sets the value of xslDebugStatus.</info>
<return type='void'/>
<arg name='value' type='int' info='the value to be set'/>
</function>
<function name='xsltSetDefaultSecurityPrefs' file='security'>
<info>Set the default security preference application-wide</info>
<return type='void'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to use'/>
</function>
<function name='xsltSetGenericDebugFunc' file='xsltutils'>
<info>Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing or validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL.</info>
<return type='void'/>
<arg name='ctx' type='void *' info='the new error handling context'/>
<arg name='handler' type='xmlGenericErrorFunc' info='the new handler function'/>
</function>
<function name='xsltSetGenericErrorFunc' file='xsltutils'>
<info>Function to reset the handler and the error context for out of context error messages. This simply means that @handler will be called for subsequent error messages while not parsing nor validating. And @ctx will be passed as first argument to @handler One can simply force messages to be emitted to another FILE * than stderr by setting @ctx to this file handle and @handler to NULL.</info>
<return type='void'/>
<arg name='ctx' type='void *' info='the new error handling context'/>
<arg name='handler' type='xmlGenericErrorFunc' info='the new handler function'/>
</function>
<function name='xsltSetSecurityPrefs' file='security'>
<info>Update the security option to use the new callback checking function</info>
<return type='int' info='-1 in case of error, 0 otherwise'/>
<arg name='sec' type='xsltSecurityPrefsPtr' info='the security block to update'/>
<arg name='option' type='xsltSecurityOption' info='the option to update'/>
<arg name='func' type='xsltSecurityCheck' info='the user callback to use for this option'/>
</function>
<function name='xsltSetSortFunc' file='xsltutils'>
<info>Function to reset the global handler for XSLT sorting. If the handler is NULL, the default sort function will be used.</info>
<return type='void'/>
<arg name='handler' type='xsltSortFunc' info='the new handler function'/>
</function>
<function name='xsltSetTransformErrorFunc' file='xsltutils'>
<info>Function to reset the handler and the error context for out of context error messages specific to a given XSLT transromation. This simply means that @handler will be called for subsequent error messages while running the transformation.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='ctx' type='void *' info='the new error handling context'/>
<arg name='handler' type='xmlGenericErrorFunc' info='the new handler function'/>
</function>
<function name='xsltSetXIncludeDefault' file='transform'>
<info>Set whether XInclude should be processed on document being loaded by default</info>
<return type='void'/>
<arg name='xinclude' type='int' info='whether to do XInclude processing'/>
</function>
<function name='xsltShutdownCtxtExts' file='extensions'>
<info>Shutdown the set of modules loaded</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
</function>
<function name='xsltShutdownExts' file='extensions'>
<info>Shutdown the set of modules loaded</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
</function>
<function name='xsltSort' file='transform'>
<info>function attached to xsl:sort nodes, but this should not be called directly</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt sort node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<functype name='xsltSortFunc' file='xsltInternals'>
<info>Signature of the function to use during sorting</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a transformation context'/>
<arg name='sorts' type='xmlNodePtr *' info='the node-set to sort'/>
<arg name='nbsorts' type='int' info='the number of sorts'/>
</functype>
<functype name='xsltStyleExtInitFunction' file='extensions'>
<info>A function called at initialization time of an XSLT extension module.</info>
<return type='void *' info='a pointer to the module specific data for this transformation.'/>
<arg name='style' type='xsltStylesheetPtr' info=''/>
<arg name='URI' type='const xmlChar *' info='the namespace URI for the extension'/>
</functype>
<functype name='xsltStyleExtShutdownFunction' file='extensions'>
<info>A function called at shutdown time of an XSLT extension module.</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info=''/>
<arg name='URI' type='const xmlChar *' info='the namespace URI for the extension'/>
<arg name='data' type='void *' info='the data associated to this module'/>
</functype>
<function name='xsltStyleGetExtData' file='extensions'>
<info>Retrieve the data associated to the extension module in this given stylesheet.</info>
<return type='void *' info='the pointer or NULL if not present'/>
<arg name='style' type='xsltStylesheetPtr' info='an XSLT stylesheet'/>
<arg name='URI' type='const xmlChar *' info='the URI associated to the exension module'/>
</function>
<function name='xsltStylePreCompute' file='preproc'>
<info>Precompute an XSLT stylesheet element</info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet'/>
<arg name='inst' type='xmlNodePtr' info='the instruction in the stylesheet'/>
</function>
<function name='xsltSystemPropertyFunction' file='functions'>
<info>Implement the system-property() XSLT function object system-property(string)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltTemplateProcess' file='templates'>
<info>Process the given node and return the new string value.</info>
<return type='xmlNodePtr *' info='the computed tree replacement'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='node' type='xmlNodePtr' info='the attribute template node'/>
</function>
<function name='xsltTestCompMatchList' file='pattern'>
<info>Test wether the node matches one of the patterns in the list</info>
<return type='int' info='1 if it matches, 0 if it doesn't and -1 in case of failure'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='a node'/>
<arg name='comp' type='xsltCompMatchPtr' info='the precompiled pattern list'/>
</function>
<function name='xsltText' file='transform'>
<info>Process the xslt text node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt text node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltTimestamp' file='xsltutils'>
<info>Used for gathering profiling data</info>
<return type='long' info='the number of tenth of milliseconds since the beginning of the profiling'/>
</function>
<functype name='xsltTopLevelFunction' file='extensions'>
<info></info>
<return type='void'/>
<arg name='style' type='xsltStylesheetPtr' info=''/>
<arg name='inst' type='xmlNodePtr' info=''/>
</functype>
<function name='xsltTransformError' file='xsltutils'>
<info>Display and format an error messages, gives file, line, position and extra parameters, will use the specific transformation context if available</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='an XSLT transformation context'/>
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet used'/>
<arg name='node' type='xmlNodePtr' info='the current node in the stylesheet'/>
<arg name='msg' type='const char *' info='the message to display/transmit'/>
<arg name='...' type='...' info='extra parameters for the message display'/>
</function>
<functype name='xsltTransformFunction' file='xsltInternals'>
<info>Signature of the function associated to elements part of the stylesheet language like xsl:if or xsl:apply-templates.</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='node' type='xmlNodePtr' info='the input node'/>
<arg name='inst' type='xmlNodePtr' info='the stylesheet node'/>
<arg name='comp' type='xsltElemPreCompPtr' info='the compiled information from the stylesheet'/>
</functype>
<function name='xsltUnparsedEntityURIFunction' file='functions'>
<info>Implement the unparsed-entity-uri() XSLT function string unparsed-entity-uri(string)</info>
<return type='void'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath Parser context'/>
<arg name='nargs' type='int' info='the number of arguments'/>
</function>
<function name='xsltUnregisterExtModule' file='extensions'>
<info>Unregister an XSLT extension module from the library.</info>
<return type='int' info='0 if sucessful, -1 in case of error'/>
<arg name='URI' type='const xmlChar *' info='URI associated to this module'/>
</function>
<function name='xsltUnregisterExtModuleElement' file='extensions'>
<info>Unregisters an extension module element</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the element name'/>
<arg name='URI' type='const xmlChar *' info='the element namespace URI'/>
</function>
<function name='xsltUnregisterExtModuleFunction' file='extensions'>
<info>Unregisters an extension module function</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the function name'/>
<arg name='URI' type='const xmlChar *' info='the function namespace URI'/>
</function>
<function name='xsltUnregisterExtModuleTopLevel' file='extensions'>
<info>Unregisters an extension module top-level element</info>
<return type='int' info='0 if successful, -1 in case of error.'/>
<arg name='name' type='const xmlChar *' info='the top-level element name'/>
<arg name='URI' type='const xmlChar *' info='the top-level element namespace URI'/>
</function>
<function name='xsltValueOf' file='transform'>
<info>Process the xslt value-of node on the source node</info>
<return type='void'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='a XSLT process context'/>
<arg name='node' type='xmlNodePtr' info='the node in the source tree.'/>
<arg name='inst' type='xmlNodePtr' info='the xslt value-of node'/>
<arg name='comp' type='xsltStylePreCompPtr' info='precomputed information'/>
</function>
<function name='xsltVariableLookup' file='variables'>
<info>Search in the Variable array of the context for the given variable value.</info>
<return type='xmlXPathObjectPtr' info='the value or NULL if not found'/>
<arg name='ctxt' type='xsltTransformContextPtr' info='the XSLT transformation context'/>
<arg name='name' type='const xmlChar *' info='the variable name'/>
<arg name='ns_uri' type='const xmlChar *' info='the variable namespace URI'/>
</function>
<function name='xsltXPathFunctionLookup' file='functions'>
<info>This is the entry point when a function is needed by the XPath interpretor.</info>
<return type='xmlXPathFunction' info='the callback function or NULL if not found'/>
<arg name='ctxt' type='xmlXPathContextPtr' info='a void * but the XSLT transformation context actually'/>
<arg name='name' type='const xmlChar *' info='the function name'/>
<arg name='ns_uri' type='const xmlChar *' info='the function namespace URI'/>
</function>
<function name='xsltXPathGetTransformContext' file='extensions'>
<info>Provides the XSLT transformation context from the XPath transformation context. This is useful when an XPath function in the extension module is called by the XPath interpreter and that the XSLT context is needed for example to retrieve the associated data pertaining to this XSLT transformation.</info>
<return type='xsltTransformContextPtr' info='the XSLT transformation context or NULL in case of error.'/>
<arg name='ctxt' type='xmlXPathParserContextPtr' info='an XPath transformation context'/>
</function>
<function name='xsltXPathVariableLookup' file='variables'>
<info>This is the entry point when a varibale is needed by the XPath interpretor.</info>
<return type='xmlXPathObjectPtr' info='the value or NULL if not found'/>
<arg name='ctxt' type='void *' info='a void * but the the XSLT transformation context actually'/>
<arg name='name' type='const xmlChar *' info='the variable name'/>
<arg name='ns_uri' type='const xmlChar *' info='the variable namespace URI'/>
</function>
</symbols>
</api>
|