Tag
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
* Summary: interfaces for tree manipulation
* Description: this module describes the structures found in an tree
* resulting from an XML or HTML parsing, as well as the API
* provided for various processing on that tree
*
* Copy: See Copyright for the status of this software.
*
* Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
/if not defined(XML_TREE_H__)
/define XML_TREE_H__
/include "libxmlrpg/xmlversion"
/include "libxmlrpg/xmlTypesC"
/include "libxmlrpg/xmlstring"
* Some of the basic types pointer to structures:
* xmlIO.h
d xmlParserInputBufferPtr...
d s * based(######typedef######)
d xmlOutputBufferPtr...
d s * based(######typedef######)
* parser.h
d xmlParserInputPtr...
d s * based(######typedef######)
d xmlParserCtxtPtr...
d s * based(######typedef######)
d xmlSAXLocatorPtr...
d s * based(######typedef######)
d xmlSAXHandlerPtr...
d s * based(######typedef######)
* entities.h
d xmlEntityPtr s * based(######typedef######)
* BASE_BUFFER_SIZE:
*
* default buffer size 4000.
d BASE_BUFFER_SIZE...
d c 4096
* LIBXML_NAMESPACE_DICT:
*
* Defines experimental behaviour:
* 1) xmlNs gets an additional field @context (a xmlDoc)
* 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
/if defined(DO_NOT_COMPILE)
/define LIBXML_NAMESPACE_DICT
/endif
* xmlBufferAllocationScheme:
*
* A buffer allocation scheme can be defined to either match exactly the
* need or double it's allocated size each time it is found too small.
d xmlBufferAllocationScheme...
d s based(######typedef######)
d like(xmlCenum)
d XML_BUFFER_ALLOC_DOUBLEIT...
d c 0
d XML_BUFFER_ALLOC_EXACT...
d c 1
d XML_BUFFER_ALLOC_IMMUTABLE...
d c 2
d XML_BUFFER_ALLOC_IO...
d c 3
d XML_BUFFER_ALLOC_HYBRID...
d c 4
* xmlBuffer:
*
* A buffer structure, this old construct is limited to 2GB and
* is being deprecated, use API with xmlBuf instead
d xmlBufferPtr s * based(######typedef######)
d xmlBuffer ds based(xmlBufferPtr)
d align qualified
d content * xmlChar *
d use like(xmlCuint)
d size like(xmlCuint)
d alloc like(xmlBufferAllocationScheme) The realloc method
d contentIO * xmlChar *
* xmlBufPtr:
*
* A pointer to a buffer structure, the actual structure internals are not
* public
d xmlBufPtr s * based(######typedef######)
* A few public routines for xmlBuf. As those are expected to be used
* mostly internally the bulk of the routines are internal in buf.h
d xmlBufContent pr * extproc('xmlBufContent') xmlChar *
d buf value like(xmlBufPtr) const
d xmlBufEnd pr * extproc('xmlBufEnd') xmlChar *
d buf value like(xmlBufPtr) const
d xmlBufUse pr extproc('xmlBufUse')
d like(xmlCsize_t)
d buf value like(xmlBufPtr) const
d xmlBufShrink pr extproc('xmlBufShrink')
d like(xmlCsize_t)
d buf value like(xmlBufPtr)
d len value like(xmlCsize_t)
* LIBXML2_NEW_BUFFER:
*
* Macro used to express that the API use the new buffers for
* xmlParserInputBuffer and xmlOutputBuffer. The change was
* introduced in 2.9.0.
/define LIBXML2_NEW_BUFFER
* XML_XML_NAMESPACE:
*
* This is the namespace for the special xml: prefix predefined in the
* XML Namespace specification.
d XML_XML_NAMESPACE...
d c 'http://www.w3.org/XML/1998/+
d namespace'
* XML_XML_ID:
*
* This is the name for the special xml:id attribute
d XML_XML_ID c 'xml:id'
* The different element types carried by an XML tree.
*
* NOTE: This is synchronized with DOM Level1 values
* See http://www.w3.org/TR/REC-DOM-Level-1/
*
* Actually this had diverged a bit, and now XML_DOCUMENT_TYPE_NODE should
* be deprecated to use an XML_DTD_NODE.
d xmlElementType s based(######typedef######)
d like(xmlCenum)
d XML_ELEMENT_NODE...
d c 1
d XML_ATTRIBUTE_NODE...
d c 2
d XML_TEXT_NODE c 3
d XML_CDATA_SECTION_NODE...
d c 4
d XML_ENTITY_REF_NODE...
d c 5
d XML_ENTITY_NODE...
d c 6
d XML_PI_NODE c 7
d XML_COMMENT_NODE...
d c 8
d XML_DOCUMENT_NODE...
d c 9
d XML_DOCUMENT_TYPE_NODE...
d c 10
d XML_DOCUMENT_FRAG_NODE...
d c 11
d XML_NOTATION_NODE...
d c 12
d XML_HTML_DOCUMENT_NODE...
d c 13
d XML_DTD_NODE c 14
d XML_ELEMENT_DECL...
d c 15
d XML_ATTRIBUTE_DECL...
d c 16
d XML_ENTITY_DECL...
d c 17
d XML_NAMESPACE_DECL...
d c 18
d XML_LOCAL_NAMESPACE...
d c 18 Alias
d XML_XINCLUDE_START...
d c 19
d XML_XINCLUDE_END...
d c 20
/if defined(LIBXML_DOCB_ENABLED)
d XML_DOCB_DOCUMENT_NODE...
d c 21
/endif
* xmlNotation:
*
* A DTD Notation definition.
d xmlNotationPtr s * based(######typedef######)
d xmlNotation ds based(xmlNotationPtr)
d align qualified
d name * const xmlChar *
d PublicID * const xmlChar *
d SystemID * const xmlChar *
* xmlAttributeType:
*
* A DTD Attribute type definition.
d xmlAttributeType...
d s based(######typedef######)
d like(xmlCenum)
d XML_ATTRIBUTE_CDATA...
d c 1
d XML_ATTRIBUTE_ID...
d c 2
d XML_ATTRIBUTE_IDREF...
d c 3
d XML_ATTRIBUTE_IDREFS...
d c 4
d XML_ATTRIBUTE_ENTITY...
d c 5
d XML_ATTRIBUTE_ENTITIES...
d c 6
d XML_ATTRIBUTE_NMTOKEN...
d c 7
d XML_ATTRIBUTE_NMTOKENS...
d c 8
d XML_ATTRIBUTE_ENUMERATION...
d c 9
d XML_ATTRIBUTE_NOTATION...
d c 10
* xmlAttributeDefault:
*
* A DTD Attribute default definition.
d xmlAttributeDefault...
d s based(######typedef######)
d like(xmlCenum)
d XML_ATTRIBUTE_NONE...
d c 1
d XML_ATTRIBUTE_REQUIRED...
d c 2
d XML_ATTRIBUTE_IMPLIED...
d c 3
d XML_ATTRIBUTE_FIXED...
d c 4
* xmlEnumeration:
*
* List structure used when there is an enumeration in DTDs.
d xmlEnumerationPtr...
d s * based(######typedef######)
d xmlEnumeration ds based(xmlEnumerationPtr)
d align qualified
d next like(xmlEnumerationPtr) Next one
d name * const xmlChar *
* Forward pointer declarations.
d xmlNodePtr s * based(######typedef######)
d xmlDocPtr s * based(######typedef######)
d xmlDtdPtr s * based(######typedef######)
* xmlAttribute:
*
* An Attribute declaration in a DTD.
d xmlAttributePtr...
d s * based(######typedef######)
d xmlAttribute ds based(xmlAttributePtr)
d align qualified
d #private * Application data
d type like(xmlElementType) XML_ATTRIBUTE_DECL
d name * const xmlChar *
d children like(xmlNodePtr) NULL
d last like(xmlNodePtr) NULL
d parent like(xmlDtdPtr) -> DTD
d next like(xmlNodePtr) next sibling link
d prev like(xmlNodePtr) previous sibling lnk
d doc like(xmlDocPtr) The containing doc
d nexth like(xmlAttributePtr) Next in hash table
d atype like(xmlAttributeType) The attribute type
d def like(xmlAttributeDefault) The default
d defaultValue * or const xmlChar *
d tree like(xmlEnumerationPtr) or enum tree
d prefix * const xmlChar *
d elem * const xmlChar *
* xmlElementContentType:
*
* Possible definitions of element content types.
d xmlElementContentType...
d s based(######typedef######)
d like(xmlCenum)
d XML_ELEMENT_CONTENT_PCDATA...
d c 1
d XML_ELEMENT_CONTENT_ELEMENT...
d c 2
d XML_ELEMENT_CONTENT_SEQ...
d c 3
d XML_ELEMENT_CONTENT_OR...
d c 4
* xmlElementContentOccur:
*
* Possible definitions of element content occurrences.
d xmlElementContentOccur...
d s based(######typedef######)
d like(xmlCenum)
d XML_ELEMENT_CONTENT_ONCE...
d c 1
d XML_ELEMENT_CONTENT_OPT...
d c 2
d XML_ELEMENT_CONTENT_MULT...
d c 3
d XML_ELEMENT_CONTENT_PLUS...
d c 4
* xmlElementContent:
*
* An XML Element content as stored after parsing an element definition
* in a DTD.
d xmlElementContentPtr...
d s * based(######typedef######)
d xmlElementContent...
d ds based(xmlElementContentPtr)
d align qualified
d type like(xmlElementContentType)
d ocur like(xmlElementContentOccur)
d name * const xmlChar *
d c1 like(xmlElementContentPtr) First child
d c2 like(xmlElementContentPtr) Second child
d parent like(xmlElementContentPtr) Parent
d prefix * const xmlChar *
* xmlElementTypeVal:
*
* The different possibilities for an element content type.
d xmlElementTypeVal...
d s based(######typedef######)
d like(xmlCenum)
d XML_ELEMENT_TYPE_UNDEFINED...
d c 0
d XML_ELEMENT_TYPE_EMPTY...
d c 1
d XML_ELEMENT_TYPE_ANY...
d c 2
d XML_ELEMENT_TYPE_MIXED...
d c 3
d XML_ELEMENT_TYPE_ELEMENT...
d c 4
/include "libxmlrpg/xmlregexp"
* xmlElement:
*
* An XML Element declaration from a DTD.
d xmlElementPtr s * based(######typedef######)
d xmlElement ds based(xmlElementPtr)
d align qualified
d #private * Application data
d type like(xmlElementType) XML_ELEMENT_DECL
d name * const xmlChar *
d children like(xmlNodePtr) NULL
d last like(xmlNodePtr) NULL
d parent like(xmlDtdPtr) -> DTD
d next like(xmlNodePtr) next sibling link
d prev like(xmlNodePtr) previous sibling lnk
d doc like(xmlDocPtr) The containing doc
d etype like(xmlElementTypeVal) The type
d content like(xmlElementContentPtr) Allowed elem content
d attributes like(xmlAttributePtr) Declared attributes
d prefix * const xmlChar *
/if defined(LIBXML_REGEXP_ENABLED)
d contModel like(xmlRegexpPtr) Validating regexp
/else
d contModel *
/endif
* XML_LOCAL_NAMESPACE:
*
* A namespace declaration node.
* xmlNs:
*
* An XML namespace.
* Note that prefix == NULL is valid, it defines the default namespace
* within the subtree (until overridden).
*
* xmlNsType is unified with xmlElementType.
d xmlNsType s based(######typedef######) enum
d like(xmlElementType)
d xmlNsPtr s * based(######typedef######)
d xmlNs ds based(xmlNsPtr)
d align qualified
d next like(xmlNsPtr) next Ns link
d type like(xmlNsType) Global or local
d href * const xmlChar *
d prefix * const xmlChar *
d #private * Application data
d context like(xmlDocPtr) normally an xmlDoc
* xmlDtd:
*
* An XML DTD, as defined by <!DOCTYPE ... There is actually one for
* the internal subset and for the external subset.
d xmlDtd ds based(xmlDtdPtr)
d align qualified
d #private * Application data
d type like(xmlElementType) XML_DTD_NODE
d name * const xmlChar *
d children like(xmlNodePtr) Property link value
d last like(xmlNodePtr) Last child link
d parent like(xmlDocPtr) Child->parent link
d next like(xmlNodePtr) next sibling link
d prev like(xmlNodePtr) previous sibling lnk
d doc like(xmlDocPtr) The containing doc
d notations * notations hash table
d elements * elements hash table
d entities * entities hash table
d ExternalID * const xmlChar *
d SystemID * const xmlChar *
d pentities * param. ent. h table
* xmlAttr:
*
* An attribute on an XML node.
d xmlAttrPtr s * based(######typedef######)
d xmlAttr ds based(xmlAttrPtr)
d align qualified
d #private * Application data
d type like(xmlElementType) XML_ATTRIBUTE_NODE
d name * const xmlChar *
d children like(xmlNodePtr) Property link value
d last like(xmlNodePtr) NULL
d parent like(xmlNodePtr) Child->parent link
d next like(xmlAttrPtr) next sibling link
d prev like(xmlAttrPtr) previous sibling lnk
d doc like(xmlDocPtr) The containing doc
d ns like(xmlNsPtr) Associated namespace
d atype like(xmlAttributeType) For validation
d psvi * Type/PSVI info
* xmlID:
*
* An XML ID instance.
d xmlIdPtr s * based(######typedef######)
d xmlID ds based(xmlIdPtr)
d align qualified
d next like(xmlIdPtr) Next ID
d attr like(xmlAttrPtr) Attribute holding it
d name * const xmlChar *
d lineno like(xmlCint) Line # if not avail
d doc like(xmlDocPtr) Doc holding ID
* xmlRef:
*
* An XML IDREF instance.
d xmlRefPtr s * based(######typedef######)
d xmlRef ds based(xmlRefPtr)
d align qualified
d next like(xmlRefPtr) Next Ref
d value * const xmlChar *
d attr like(xmlAttrPtr) Attribute holding it
d name * const xmlChar *
d lineno like(xmlCint) Line # if not avail
* xmlNode:
*
* A node in an XML tree.
d xmlNode ds based(xmlNodePtr)
d align qualified
d #private * Application data
d type like(xmlElementType)
d name * const xmlChar *
d children like(xmlNodePtr) Parent->children lnk
d last like(xmlNodePtr) Last child link
d parent like(xmlNodePtr) Child->parent link
d next like(xmlNodePtr) next sibling link
d prev like(xmlNodePtr) previous sibling lnk
d doc like(xmlDocPtr) The containing doc
d ns like(xmlNsPtr) Associated namespace
d content * xmlChar *
d properties like(xmlAttrPtr) Properties list
d nsDef like(xmlNsPtr) Node ns definitions
d psvi * Type/PSVI info
d line like(xmlCushort)
d extra like(xmlCushort) Data for XPath/XSLT
* xmlDocProperty
*
* Set of properties of the document as found by the parser
* Some of them are linked to similary named xmlParserOption
d xmlDocProperties...
d s based(######typedef######)
d like(xmlCenum)
d XML_DOC_WELLFORMED...
d c X'00000001'
d XML_DOC_NSVALID...
d c X'00000002'
d XML_DOC_OLD10 c X'00000004'
d XML_DOC_DTDVALID...
d c X'00000008'
d XML_DOC_XINCLUDE...
d c X'00000010'
d XML_DOC_USERBUILT...
d c X'00000020'
d XML_DOC_INTERNAL...
d c X'00000030'
d XML_DOC_HTML c X'00000080'
* xmlDoc:
*
* An XML document.
d xmlDoc ds based(xmlDocPtr)
d align qualified
d #private * Application data
d type like(xmlElementType) XML_DOCUMENT_NODE
d name * const xmlChar *
d children like(xmlNodePtr) The document tree
d last like(xmlNodePtr) Last child link
d parent like(xmlNodePtr) Child->parent link
d next like(xmlNodePtr) next sibling link
d prev like(xmlNodePtr) previous sibling lnk
d doc like(xmlDocPtr) Reference to itself
d compression like(xmlCint) zlib compression lev
d standalone like(xmlCint)
d intSubset like(xmlDtdPtr) Internal subset
d extSubset like(xmlDtdPtr) External subset
d oldns like(xmlNsPtr) Global namespace
d version * const xmlChar *
d encoding * const xmlChar *
d ids * IDs hash table
d refs * IDREFs hash table
d URL * const xmlChar *
d charset like(xmlCint) In-memory encoding
d dict * xmlDictPtr for names
d psvi * Type/PSVI ino
d parseFlags like(xmlCint) xmlParserOption's
d properties like(xmlCint) xmlDocProperties
* xmlDOMWrapAcquireNsFunction:
* @ctxt: a DOM wrapper context
* @node: the context node (element or attribute)
* @nsName: the requested namespace name
* @nsPrefix: the requested namespace prefix
*
* A function called to acquire namespaces (xmlNs) from the wrapper.
*
* Returns an xmlNsPtr or NULL in case of an error.
d xmlDOMWrapAcquireNsFunction...
d s * based(######typedef######)
d procptr
* xmlDOMWrapCtxt:
*
* Context for DOM wrapper-operations.
d xmlDOMWrapCtxtPtr...
d s * based(######typedef######)
d xmlDOMWrapCtxt...
d ds based(xmlDOMWrapCtxtPtr)
d align qualified
d #private * void *
d type like(xmlCint)
d namespaceMap * void *
d getNsForNodeFunc...
d like(xmlDOMWrapAcquireNsFunction)
* Variables.
* Some helper functions
/undefine XML_TESTVAL
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_XPATH_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_DEBUG_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_HTML_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SAX1_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_HTML_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_WRITER_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_DOCB_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlValidateNCName...
d pr extproc('xmlValidateNCName')
d like(xmlCint)
d value * value options(*string) const xmlChar *
d space value like(xmlCint)
/undefine XML_TESTVAL
/endif
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlValidateQName...
d pr extproc('xmlValidateQName')
d like(xmlCint)
d value * value options(*string) const xmlChar *
d space value like(xmlCint)
d xmlValidateName...
d pr extproc('xmlValidateName')
d like(xmlCint)
d value * value options(*string) const xmlChar *
d space value like(xmlCint)
d xmlValidateNMToken...
d pr extproc('xmlValidateNMToken')
d like(xmlCint)
d value * value options(*string) const xmlChar *
d space value like(xmlCint)
/undefine XML_TESTVAL
/endif
d xmlBuildQName pr * extproc('xmlBuildQName') xmlChar *
d ncname * value options(*string) const xmlChar *
d prefix * value options(*string) const xmlChar *
d memory 65535 options(*varsize: *omit) xmlChar[]
d len value like(xmlCint) memory length
d xmlSplitQName2 pr * extproc('xmlSplitQName2') xmlChar *
d name * value options(*string) const xmlChar *
d prefix * xmlChar *
d xmlSplitQName3 pr * extproc('xmlSplitQName3') const xmlChar *
d name * value options(*string) const xmlChar *
d len like(xmlCint)
* Handling Buffers, the old ones see @xmlBuf for the new ones.
d xmlSetBufferAllocationScheme...
d pr extproc(
d 'xmlSetBufferAllocationScheme')
d scheme value
d like(xmlBufferAllocationScheme)
d xmlGetBufferAllocationScheme...
d pr extproc(
d 'xmlGetBufferAllocationScheme')
d like(xmlBufferAllocationScheme)
d xmlBufferCreate...
d pr extproc('xmlBufferCreate')
d like(xmlBufferPtr)
d xmlBufferCreateSize...
d pr extproc('xmlBufferCreateSize')
d like(xmlBufferPtr)
d size value like(xmlCsize_t)
d xmlBufferCreateStatic...
d pr extproc('xmlBufferCreateStatic')
d like(xmlBufferPtr)
d mem * value
d size value like(xmlCsize_t)
d xmlBufferResize...
d pr extproc('xmlBufferResize')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d size value like(xmlCsize_t)
d xmlBufferFree pr extproc('xmlBufferFree')
d buf value like(xmlBufferPtr)
d xmlBufferDump pr extproc('xmlBufferDump')
d like(xmlCint)
d file * value FILE *
d buf value like(xmlBufferPtr)
d xmlBufferAdd pr extproc('xmlBufferAdd')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d str * value options(*string) const xmlChar *
d len value like(xmlCint) str length
d xmlBufferAddHead...
d pr extproc('xmlBufferAddHead')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d str * value options(*string) const xmlChar *
d len value like(xmlCint) str length
d xmlBufferCat pr extproc('xmlBufferCat')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d str * value options(*string) const xmlChar *
d xmlBufferCCat pr extproc('xmlBufferCCat')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d str * value options(*string) const char *
d xmlBufferShrink...
d pr extproc('xmlBufferShrink')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d len value like(xmlCuint)
d xmlBufferGrow pr extproc('xmlBufferGrow')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d len value like(xmlCuint)
d xmlBufferEmpty pr extproc('xmlBufferEmpty')
d buf value like(xmlBufferPtr)
d xmlBufferContent...
d pr * extproc('xmlBufferContent') const xmlChar *
d buf value like(xmlBufferPtr)
d xmlBufferDetach...
d pr * extproc('xmlBufferDetach') xmlChar *
d buf value like(xmlBufferPtr)
d xmlBufferSetAllocationScheme...
d pr extproc(
d 'xmlBufferSetAllocationScheme')
d buf value like(xmlBufferPtr)
d scheme value
d like(xmlBufferAllocationScheme)
d xmlBufferLength...
d pr extproc('xmlBufferLength')
d like(xmlCint)
d buf value like(xmlBufferPtr)
* Creating/freeing new structures.
d xmlCreateIntSubset...
d pr extproc('xmlCreateIntSubset')
d like(xmlDtdPtr)
d doc value like(xmlDocPtr)
d name * value options(*string) const xmlChar *
d ExternalID * value options(*string) const xmlChar *
d SystemlID * value options(*string) const xmlChar *
d xmlNewDtd pr extproc('xmlNewDtd')
d like(xmlDtdPtr)
d doc value like(xmlDocPtr)
d name * value options(*string) const xmlChar *
d ExternalID * value options(*string) const xmlChar *
d SystemlID * value options(*string) const xmlChar *
d xmlGetIntSubset...
d pr extproc('xmlGetIntSubset')
d like(xmlDtdPtr)
d doc value like(xmlDocPtr)
d xmlFreeDtd pr extproc('xmlFreeDtd')
d cur value like(xmlDtdPtr)
/if defined(LIBXML_LEGACY_ENABLED)
d xmlNewGlobalNs pr extproc('xmlNewGlobalNs')
d like(xmlNsPtr)
d doc value like(xmlDocPtr)
d href * value options(*string) const xmlChar *
d prefix * value options(*string) const xmlChar *
/endif LIBXML_LEGACY_ENABLD
d xmlNewNs pr extproc('xmlNewNs')
d like(xmlNsPtr)
d node value like(xmlNodePtr)
d href * value options(*string) const xmlChar *
d prefix * value options(*string) const xmlChar *
d xmlFreeNs pr extproc('xmlFreeNs')
d cur value like(xmlNsPtr)
d xmlFreeNsList pr extproc('xmlFreeNsList')
d cur value like(xmlNsPtr)
d xmlNewDoc pr extproc('xmlNewDoc')
d like(xmlDocPtr)
d version * value options(*string) const xmlChar *
d xmlFreeDoc pr extproc('xmlFreeDoc')
d cur value like(xmlDocPtr)
d xmlNewDocProp pr extproc('xmlNewDocProp')
d like(xmlAttrPtr)
d name * value options(*string) const xmlChar *
d value * value options(*string) const xmlChar *
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_HTML_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlNewProp pr extproc('xmlNewProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d value * value options(*string) const xmlChar *
/undefine XML_TESTVAL
/endif
d xmlNewNsProp pr extproc('xmlNewNsProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d value * value options(*string) const xmlChar *
d xmlNewNsPropEatName...
d pr extproc('xmlNewNsPropEatName')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value xmlChar *
d value * value options(*string) const xmlChar *
d xmlFreePropList...
d pr extproc('xmlFreePropList')
d cur value like(xmlAttrPtr)
d xmlFreeProp pr extproc('xmlFreeProp')
d cur value like(xmlAttrPtr)
d xmlCopyProp pr extproc('xmlCopyProp')
d like(xmlAttrPtr)
d target value like(xmlNodePtr)
d cur value like(xmlAttrPtr)
d xmlCopyPropList...
d pr extproc('xmlCopyPropList')
d like(xmlAttrPtr)
d target value like(xmlNodePtr)
d cur value like(xmlAttrPtr)
/if defined(LIBXML_TREE_ENABLED)
d xmlCopyDtd pr extproc('xmlCopyDtd')
d like(xmlDtdPtr)
d dtd value like(xmlDtdPtr)
/endif LIBXML_TREE_ENABLED
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlCopyDoc pr extproc('xmlCopyDoc')
d like(xmlDocPtr)
d doc value like(xmlDocPtr)
d recursive value like(xmlCint)
/undefine XML_TESTVAL
/endif
* Creating new nodes.
d xmlNewDocNode pr extproc('xmlNewDocNode')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewDocNodeEatName...
d pr extproc('xmlNewDocNodeEatName')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d ns value like(xmlNsPtr)
d name * value xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewNode pr extproc('xmlNewNode')
d like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d xmlNewNodeEatName...
d pr extproc('xmlNewNodeEatName')
d like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value xmlChar *
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlNewChild pr extproc('xmlNewChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
/undefine XML_TESTVAL
/endif
d xmlNewDocText pr extproc('xmlNewDocText')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d content * value options(*string) const xmlChar *
d xmlNewText pr extproc('xmlNewText')
d like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d xmlNewDocPI pr extproc('xmlNewDocPI')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewPI pr extproc('xmlNewPI')
d like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewDocTextLen...
d pr extproc('xmlNewDocTextLen')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlNewTextLen pr extproc('xmlNewTextLen')
d like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlNewDocComment...
d pr extproc('xmlNewDocComment')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d content * value options(*string) const xmlChar *
d xmlNewComment pr extproc('xmlNewComment')
d like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d xmlNewCDataBlock...
d pr extproc('xmlNewCDataBlock')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlNewCharRef pr extproc('xmlNewCharRef')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d name * value options(*string) const xmlChar *
d xmlNewReference...
d pr extproc('xmlNewReference')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d name * value options(*string) const xmlChar *
d xmlCopyNode pr extproc('xmlCopyNode')
d like(xmlNodePtr)
d node value like(xmlNodePtr)
d recursive value like(xmlCint)
d xmlDocCopyNode pr extproc('xmlDocCopyNode')
d like(xmlNodePtr)
d node value like(xmlNodePtr)
d doc value like(xmlDocPtr)
d recursive value like(xmlCint)
d xmlDocCopyNodeList...
d pr extproc('xmlDocCopyNodeList')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d xmlCopyNodeList...
d pr extproc('xmlCopyNodeList')
d like(xmlNodePtr)
d node value like(xmlNodePtr)
/if defined(LIBXML_TREE_ENABLED)
d xmlNewTextChild...
d pr extproc('xmlNewTextChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewDocRawNode...
d pr extproc('xmlNewDocRawNode')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d content * value options(*string) const xmlChar *
d xmlNewDocFragment...
d pr extproc('xmlNewDocFragment')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
/endif LIBXML_TREE_ENABLED
* Navigating.
d xmlNewDocFragment...
d xmlGetLineNo pr extproc('xmlGetLineNo')
d like(xmlClong)
d node value like(xmlNodePtr)
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_DEBUG_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlGetNodePath pr * extproc('xmlGetNodePath') xmlChar *
d node value like(xmlNodePtr)
/undefine XML_TESTVAL
/endif
d xmlDocGetRootElement...
d pr extproc('xmlDocGetRootElement')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d xmlGetLastChild...
d pr extproc('xmlGetLastChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d xmlNodeIsText pr extproc('xmlNodeIsText')
d like(xmlCint)
d node value like(xmlNodePtr)
d xmlIsBlankNode pr extproc('xmlIsBlankNode')
d like(xmlCint)
d node value like(xmlNodePtr)
* Changing the structure.
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_WRITER_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlDocSetRootElement...
d pr extproc('xmlDocSetRootElement')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d root value like(xmlNodePtr)
/undefine XML_TESTVAL
/endif
/if defined(LIBXML_TREE_ENABLED)
d xmlNodeSetName pr extproc('xmlNodeSetName')
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
/endif LIBXML_TREE_ENABLED
d xmlAddChild pr extproc('xmlAddChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d cur value like(xmlNodePtr)
d xmlAddChildList...
d pr extproc('xmlAddChildList')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d cur value like(xmlNodePtr)
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_WRITER_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlReplaceNode pr extproc('xmlReplaceNode')
d like(xmlNodePtr)
d old value like(xmlNodePtr)
d cur value like(xmlNodePtr)
/undefine XML_TESTVAL
/endif
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_HTML_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlAddPrevSibling...
d pr extproc('xmlAddPrevSibling')
d like(xmlNodePtr)
d cur value like(xmlNodePtr)
d elem value like(xmlNodePtr)
/undefine XML_TESTVAL
/endif
d xmlAddSibling pr extproc('xmlAddSibling')
d like(xmlNodePtr)
d cur value like(xmlNodePtr)
d elem value like(xmlNodePtr)
d xmlAddNextSibling...
d pr extproc('xmlAddNextSibling')
d like(xmlNodePtr)
d cur value like(xmlNodePtr)
d elem value like(xmlNodePtr)
d xmlUnlinkNode pr extproc('xmlUnlinkNode')
d cur value like(xmlNodePtr)
d xmlTextMerge pr extproc('xmlTextMerge')
d like(xmlNodePtr)
d first value like(xmlNodePtr)
d second value like(xmlNodePtr)
d xmlTextConcat pr extproc('xmlTextConcat')
d like(xmlCint)
d node value like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlFreeNodeList...
d pr extproc('xmlFreeNodeList')
d cur value like(xmlNodePtr)
d xmlFreeNode pr extproc('xmlFreeNode')
d cur value like(xmlNodePtr)
d xmlSetTreeDoc pr extproc('xmlSetTreeDoc')
d tree value like(xmlNodePtr)
d doc value like(xmlDocPtr)
d xmlSetListDoc pr extproc('xmlSetListDoc')
d list value like(xmlNodePtr)
d doc value like(xmlDocPtr)
* Namespaces.
d xmlSearchNs pr extproc('xmlSearchNs')
d like(xmlNsPtr)
d doc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d nameSpace * value options(*string) const xmlChar *
d xmlSearchNsByHref...
d pr extproc('xmlSearchNsByHref')
d like(xmlNsPtr)
d doc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d href * value options(*string) const xmlChar *
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_XPATH_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlGetNsList pr * extproc('xmlGetNsList') xmlNsPtr *
d doc value like(xmlDocPtr)
d node value like(xmlNodePtr)
/undefine XML_TESTVAL
/endif
d xmlSetNs pr extproc('xmlSetNs')
d node value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d xmlCopyNamespace...
d pr extproc('xmlCopyNamespace')
d like(xmlNsPtr)
d cur value like(xmlNsPtr)
d xmlCopyNamespaceList...
d pr extproc('xmlCopyNamespaceList')
d like(xmlNsPtr)
d cur value like(xmlNsPtr)
* Changing the content.
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_XINCLUDE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_HTML_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlSetProp pr extproc('xmlSetProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d value * value options(*string) const xmlChar *
d xmlSetNsProp pr extproc('xmlSetNsProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d value * value options(*string) const xmlChar *
/undefine XML_TESTVAL
/endif
d xmlGetNoNsProp pr * extproc('xmlGetNoNsProp') xmlChar *
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d xmlGetProp pr * extproc('xmlGetProp') xmlChar *
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d xmlHasProp pr extproc('xmlHasProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d xmlHasNsProp pr extproc('xmlHasNsProp')
d like(xmlAttrPtr)
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d nameSpace * value options(*string) const xmlChar *
d xmlGetNsProp pr * extproc('xmlGetNsProp') xmlChar *
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
d nameSpace * value options(*string) const xmlChar *
d xmlStringGetNodeList...
d pr extproc('xmlStringGetNodeList')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d value * value options(*string) const xmlChar *
d xmlStringLenGetNodeList...
d pr extproc('xmlStringLenGetNodeList')
d like(xmlNodePtr)
d doc value like(xmlDocPtr)
d value * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlNodeListGetString...
d pr * extproc('xmlNodeListGetString') xmlChar *
d doc value like(xmlDocPtr)
d list value like(xmlNodePtr)
d inLine value like(xmlCint)
/if defined(LIBXML_TREE_ENABLED)
d xmlNodeListGetRawString...
d pr * extproc('xmlNodeListGetRawString') xmlChar *
d doc value like(xmlDocPtr)
d list value like(xmlNodePtr)
d inLine value like(xmlCint)
/endif LIBXML_TREE_ENABLED
d xmlNodeSetContent...
d pr extproc('xmlNodeSetContent')
d cur value like(xmlNodePtr)
d content * value options(*string) const xmlChar *
/if defined(LIBXML_TREE_ENABLED)
d xmlNodeSetContentLen...
d pr extproc('xmlNodeSetContentLen')
d cur value like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
/endif LIBXML_TREE_ENABLED
d xmlNodeAddContent...
d pr extproc('xmlNodeAddContent')
d cur value like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d xmlNodeAddContentLen...
d pr extproc('xmlNodeAddContentLen')
d cur value like(xmlNodePtr)
d content * value options(*string) const xmlChar *
d len value like(xmlCint)
d xmlNodeGetContent...
d pr * extproc('xmlNodeGetContent') xmlChar *
d cur value like(xmlNodePtr)
d xmlNodeBufGetContent...
d pr extproc('xmlNodeBufGetContent')
d like(xmlCint)
d buffer value like(xmlBufferPtr)
d cur value like(xmlNodePtr)
d xmlBufGetNodeContent...
d pr extproc('xmlBufGetNodeContent')
d like(xmlCint)
d buf value like(xmlBufPtr)
d cur value like(xmlNodePtr)
d xmlNodeGetLang pr * extproc('xmlNodeGetLang') xmlChar *
d cur value like(xmlNodePtr)
d xmlNodeGetSpacePreserve...
d pr extproc('xmlNodeGetSpacePreserve')
d like(xmlCint)
d cur value like(xmlNodePtr)
/if defined(LIBXML_TREE_ENABLED)
d xmlNodeSetLang pr extproc('xmlNodeSetLang')
d cur value like(xmlNodePtr)
d lang * value options(*string) const xmlChar *
d xmlNodeSetSpacePreserve...
d pr extproc('xmlNodeSetSpacePreserve')
d cur value like(xmlNodePtr)
d val value like(xmlCint)
/endif LIBXML_TREE_ENABLED
d xmlNodeGetBase pr * extproc('xmlNodeGetBase') xmlChar *
d doc value like(xmlDocPtr)
d cur value like(xmlNodePtr)
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_XINCLUDE_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlNodeSetBase pr extproc('xmlNodeSetBase')
d node value like(xmlNodePtr)
d uri * value options(*string) const xmlChar *
/undefine XML_TESTVAL
/endif
* Removing content.
d xmlRemoveProp pr extproc('xmlRemoveProp')
d like(xmlCint)
d cur value like(xmlAttrPtr)
/if defined(LIBXML_TREE_ENABLED)
/define XML_TESTVAL
/elseif defined(LIBXML_SCHEMAS_ENABLED)
/define XML_TESTVAL
/endif
/if defined(XML_TESTVAL)
d xmlUnsetNsProp pr extproc('xmlUnsetNsProp')
d like(xmlCint)
d node value like(xmlNodePtr)
d ns value like(xmlNsPtr)
d name * value options(*string) const xmlChar *
d xmlUnsetProp pr extproc('xmlUnsetProp')
d like(xmlCint)
d node value like(xmlNodePtr)
d name * value options(*string) const xmlChar *
/undefine XML_TESTVAL
/endif
* Internal, don't use.
d xmlBufferWriteCharacter... Warning: renamed
d pr extproc('xmlBufferWriteCHAR')
d buf value like(xmlBufferPtr)
d string * value options(*string) const xmlChar *
d xmlBufferWriteChar...
d pr extproc('xmlBufferWriteChar')
d buf value like(xmlBufferPtr)
d string * value options(*string) const xmlChar *
d xmlBufferWriteQuotedString...
d pr extproc('xmlBufferWriteQuotedString')
d buf value like(xmlBufferPtr)
d string * value options(*string) const xmlChar *
/if defined(LIBXML_OUTPUT_ENABLED)
d xmlAttrSerializeTxtContent...
d pr extproc('xmlAttrSerializeTxtContent')
d buf value like(xmlBufferPtr)
d attr value like(xmlAttrPtr)
d string * value options(*string) const xmlChar *
/endif LIBXML_OUTPUT_ENABLD
/if defined(LIBXML_TREE_ENABLED)
* Namespace handling.
d xmlReconciliateNs...
d pr extproc('xmlReconciliateNs')
d like(xmlCint)
d doc value like(xmlDocPtr)
d tree value like(xmlNodePtr)
/endif
/if defined(LIBXML_OUTPUT_ENABLED)
* Saving.
d xmlDocDumpFormatMemory...
d pr extproc('xmlDocDumpFormatMemory')
d cur value like(xmlDocPtr)
d mem * xmlChar * (*)
d size like(xmlCint)
d format value like(xmlCint)
d xmlDocDumpMemory...
d pr extproc('xmlDocDumpMemory')
d cur value like(xmlDocPtr)
d mem * xmlChar * (*)
d size like(xmlCint)
d xmlDocDumpMemoryEnc...
d pr extproc('xmlDocDumpMemoryEnc')
d out_doc value like(xmlDocPtr)
d doc_txt_ptr * xmlChar * (*)
d doc_txt_len like(xmlCint)
d txt_encoding * value options(*string) const char *
d xmlDocDumpFormatMemoryEnc...
d pr extproc('xmlDocDumpFormatMemoryEnc')
d out_doc value like(xmlDocPtr)
d doc_txt_ptr * xmlChar * (*)
d doc_txt_len like(xmlCint)
d txt_encoding * value options(*string) const char *
d format value like(xmlCint)
d xmlDocFormatDump...
d pr extproc('xmlDocFormatDump')
d like(xmlCint)
d f * value FILE *
d cur value like(xmlDocPtr)
d format value like(xmlCint)
d xmlDocDump pr extproc('xmlDocDump')
d like(xmlCint)
d f * value FILE *
d cur value like(xmlDocPtr)
d xmlElemDump pr extproc('xmlElemDump')
d f * value FILE *
d doc value like(xmlDocPtr)
d cur value like(xmlNodePtr)
d xmlSaveFile pr extproc('xmlSaveFile')
d like(xmlCint)
d filename * value options(*string) const char *
d cur value like(xmlDocPtr)
d xmlSaveFormatFile...
d pr extproc('xmlSaveFormatFile')
d like(xmlCint)
d filename * value options(*string) const char *
d cur value like(xmlDocPtr)
d format value like(xmlCint)
d xmlBufNodeDump pr extproc('xmlBufNodeDump')
d like(xmlCsize_t)
d buf value like(xmlBufPtr)
d doc value like(xmlDocPtr)
d cur value like(xmlNodePtr)
d level value like(xmlCint)
d format value like(xmlCint)
d xmlNodeDump pr extproc('xmlNodeDump')
d like(xmlCint)
d buf value like(xmlBufferPtr)
d doc value like(xmlDocPtr)
d cur value like(xmlNodePtr)
d level value like(xmlCint)
d format value like(xmlCint)
d xmlSaveFileTo pr extproc('xmlSaveFileTo')
d like(xmlCint)
d buf value like(xmlOutputBufferPtr)
d cur value like(xmlDocPtr)
d encoding * value options(*string) const char *
d xmlSaveFormatFileTo...
d pr extproc('xmlSaveFormatFileTo')
d like(xmlCint)
d buf value like(xmlOutputBufferPtr)
d cur value like(xmlDocPtr)
d encoding * value options(*string) const char *
d format value like(xmlCint)
d xmlNodeDumpOutput...
d pr extproc('xmlNodeDumpOutput')
d buf value like(xmlOutputBufferPtr)
d doc value like(xmlDocPtr)
d cur value like(xmlNodePtr)
d level value like(xmlCint)
d format value like(xmlCint)
d encoding * value options(*string) const char *
d xmlSaveFormatFileEnc...
d pr extproc('xmlSaveFormatFileEnc')
d like(xmlCint)
d filename * value options(*string) const char *
d cur value like(xmlDocPtr)
d encoding * value options(*string) const char *
d format value like(xmlCint)
d xmlSaveFileEnc pr extproc('xmlSaveFileEnc')
d like(xmlCint)
d filename * value options(*string) const char *
d cur value like(xmlDocPtr)
d encoding * value options(*string) const char *
/endif LIBXML_OUTPUT_ENABLD
* XHTML
d xmlIsXHTML pr extproc('xmlIsXHTML')
d like(xmlCint)
d systemID * value options(*string) const xmlChar *
d publicID * value options(*string) const xmlChar *
* Compression.
d xmlGetDocCompressMode...
d pr extproc('xmlGetDocCompressMode')
d like(xmlCint)
d doc value like(xmlDocPtr)
d xmlSetDocCompressMode...
d pr extproc('xmlSetDocCompressMode')
d doc value like(xmlDocPtr)
d mode value like(xmlCint)
d xmlGetCompressMode...
d pr extproc('xmlGetCompressMode')
d like(xmlCint)
d xmlSetCompressMode...
d pr extproc('xmlSetCompressMode')
d mode value like(xmlCint)
* DOM-wrapper helper functions.
d xmlDOMWrapNewCtxt...
d pr extproc('xmlDOMWrapNewCtxt')
d like(xmlDOMWrapCtxtPtr)
d xmlDOMWrapFreeCtxt...
d pr extproc('xmlDOMWrapFreeCtxt')
d ctxt value like(xmlDOMWrapCtxtPtr)
d xmlDOMWrapReconcileNamespaces...
d pr extproc(
d 'xmlDOMWrapReconcileNamespaces')
d like(xmlCint)
d ctxt value like(xmlDOMWrapCtxtPtr)
d elem value like(xmlNodePtr)
d options value like(xmlCint)
d xmlDOMWrapAdoptNode...
d pr extproc('xmlDOMWrapAdoptNode')
d like(xmlCint)
d ctxt value like(xmlDOMWrapCtxtPtr)
d sourceDoc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d destDoc value like(xmlDocPtr)
d destParent value like(xmlNodePtr)
d options value like(xmlCint)
d xmlDOMWrapRemoveNode...
d pr extproc('xmlDOMWrapRemoveNode')
d like(xmlCint)
d ctxt value like(xmlDOMWrapCtxtPtr)
d doc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d options value like(xmlCint)
d xmlDOMWrapCloneNode...
d pr extproc('xmlDOMWrapCloneNode')
d like(xmlCint)
d ctxt value like(xmlDOMWrapCtxtPtr)
d sourceDoc value like(xmlDocPtr)
d node value like(xmlNodePtr)
d clonedNode like(xmlNodePtr)
d destDoc value like(xmlDocPtr)
d destParent value like(xmlNodePtr)
d options value like(xmlCint)
/if defined(LIBXML_TREE_ENABLED)
* 5 interfaces from DOM ElementTraversal, but different in entities
* traversal.
d xmlChildElementCount...
d pr extproc('xmlChildElementCount')
d like(xmlClong)
d parent value like(xmlNodePtr)
d xmlNextElementSibling...
d pr extproc('xmlNextElementSibling')
d like(xmlNodePtr)
d node value like(xmlNodePtr)
d xmlFirstElementChild...
d pr extproc('xmlFirstElementChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d xmlLastElementChild...
d pr extproc('xmlLastElementChild')
d like(xmlNodePtr)
d parent value like(xmlNodePtr)
d xmlPreviousElementSibling...
d pr extproc('xmlPreviousElementSibling')
d like(xmlNodePtr)
d node value like(xmlNodePtr)
/endif
/if not defined(XML_PARSER_H__)
/include "libxmlrpg/xmlmemory"
/endif
/endif XML_TREE_H__