nokolexbor 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/ext/nokolexbor/config.h +186 -0
- data/ext/nokolexbor/extconf.rb +131 -0
- data/ext/nokolexbor/libxml/HTMLparser.h +320 -0
- data/ext/nokolexbor/libxml/SAX2.h +173 -0
- data/ext/nokolexbor/libxml/chvalid.h +230 -0
- data/ext/nokolexbor/libxml/debugXML.h +217 -0
- data/ext/nokolexbor/libxml/dict.h +81 -0
- data/ext/nokolexbor/libxml/encoding.h +232 -0
- data/ext/nokolexbor/libxml/entities.h +153 -0
- data/ext/nokolexbor/libxml/globals.h +529 -0
- data/ext/nokolexbor/libxml/hash.h +236 -0
- data/ext/nokolexbor/libxml/list.h +137 -0
- data/ext/nokolexbor/libxml/parser.h +1264 -0
- data/ext/nokolexbor/libxml/parserInternals.h +641 -0
- data/ext/nokolexbor/libxml/pattern.h +100 -0
- data/ext/nokolexbor/libxml/threads.h +94 -0
- data/ext/nokolexbor/libxml/tree.h +1315 -0
- data/ext/nokolexbor/libxml/uri.h +94 -0
- data/ext/nokolexbor/libxml/valid.h +448 -0
- data/ext/nokolexbor/libxml/xmlIO.h +369 -0
- data/ext/nokolexbor/libxml/xmlautomata.h +146 -0
- data/ext/nokolexbor/libxml/xmlerror.h +919 -0
- data/ext/nokolexbor/libxml/xmlexports.h +79 -0
- data/ext/nokolexbor/libxml/xmlmemory.h +226 -0
- data/ext/nokolexbor/libxml/xmlregexp.h +222 -0
- data/ext/nokolexbor/libxml/xmlstring.h +140 -0
- data/ext/nokolexbor/libxml/xmlversion.h +526 -0
- data/ext/nokolexbor/libxml/xpath.h +575 -0
- data/ext/nokolexbor/libxml/xpathInternals.h +632 -0
- data/ext/nokolexbor/libxml/xpointer.h +137 -0
- data/ext/nokolexbor/libxml.h +76 -0
- data/ext/nokolexbor/memory.c +39 -0
- data/ext/nokolexbor/nl_document.c +51 -0
- data/ext/nokolexbor/nl_node.c +790 -0
- data/ext/nokolexbor/nl_node_set.c +368 -0
- data/ext/nokolexbor/nl_xpath_context.c +200 -0
- data/ext/nokolexbor/nokolexbor.c +63 -0
- data/ext/nokolexbor/nokolexbor.h +37 -0
- data/ext/nokolexbor/private/buf.h +70 -0
- data/ext/nokolexbor/private/dict.h +11 -0
- data/ext/nokolexbor/private/enc.h +17 -0
- data/ext/nokolexbor/private/error.h +21 -0
- data/ext/nokolexbor/private/globals.h +9 -0
- data/ext/nokolexbor/private/memory.h +9 -0
- data/ext/nokolexbor/private/parser.h +27 -0
- data/ext/nokolexbor/private/string.h +9 -0
- data/ext/nokolexbor/private/threads.h +50 -0
- data/ext/nokolexbor/private/tree.h +18 -0
- data/ext/nokolexbor/private/xpath.h +7 -0
- data/ext/nokolexbor/timsort.h +601 -0
- data/ext/nokolexbor/xml_SAX2.c +80 -0
- data/ext/nokolexbor/xml_buf.c +363 -0
- data/ext/nokolexbor/xml_chvalid.c +334 -0
- data/ext/nokolexbor/xml_dict.c +1264 -0
- data/ext/nokolexbor/xml_encoding.c +124 -0
- data/ext/nokolexbor/xml_error.c +134 -0
- data/ext/nokolexbor/xml_globals.c +1085 -0
- data/ext/nokolexbor/xml_hash.c +1141 -0
- data/ext/nokolexbor/xml_memory.c +203 -0
- data/ext/nokolexbor/xml_parser.c +127 -0
- data/ext/nokolexbor/xml_parserInternals.c +338 -0
- data/ext/nokolexbor/xml_pattern.c +2375 -0
- data/ext/nokolexbor/xml_string.c +1051 -0
- data/ext/nokolexbor/xml_threads.c +881 -0
- data/ext/nokolexbor/xml_tree.c +148 -0
- data/ext/nokolexbor/xml_xpath.c +14743 -0
- data/lib/nokolexbor/attribute.rb +18 -0
- data/lib/nokolexbor/document.rb +6 -0
- data/lib/nokolexbor/node.rb +264 -0
- data/lib/nokolexbor/node_set.rb +124 -0
- data/lib/nokolexbor/version.rb +5 -0
- data/lib/nokolexbor/xpath_context.rb +14 -0
- data/lib/nokolexbor.rb +17 -0
- data/patches/0001-lexbor-support-text-pseudo-element.patch +137 -0
- data/patches/0002-lexbor-match-id-class-case-sensitive.patch +22 -0
- data/patches/0003-lexbor-attach-template-content-to-self.patch +13 -0
- data/vendor/lexbor/CMakeLists.txt +331 -0
- data/vendor/lexbor/config.cmake +890 -0
- data/vendor/lexbor/feature.cmake +134 -0
- data/vendor/lexbor/source/lexbor/core/array.c +208 -0
- data/vendor/lexbor/source/lexbor/core/array.h +100 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.c +216 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.h +134 -0
- data/vendor/lexbor/source/lexbor/core/avl.c +442 -0
- data/vendor/lexbor/source/lexbor/core/avl.h +82 -0
- data/vendor/lexbor/source/lexbor/core/base.h +86 -0
- data/vendor/lexbor/source/lexbor/core/bst.c +468 -0
- data/vendor/lexbor/source/lexbor/core/bst.h +108 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.c +238 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.h +87 -0
- data/vendor/lexbor/source/lexbor/core/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/core/conv.c +203 -0
- data/vendor/lexbor/source/lexbor/core/conv.h +53 -0
- data/vendor/lexbor/source/lexbor/core/core.h +35 -0
- data/vendor/lexbor/source/lexbor/core/def.h +57 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.c +153 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.h +258 -0
- data/vendor/lexbor/source/lexbor/core/dobject.c +187 -0
- data/vendor/lexbor/source/lexbor/core/dobject.h +92 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.c +404 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.h +28 -0
- data/vendor/lexbor/source/lexbor/core/fs.h +60 -0
- data/vendor/lexbor/source/lexbor/core/hash.c +476 -0
- data/vendor/lexbor/source/lexbor/core/hash.h +218 -0
- data/vendor/lexbor/source/lexbor/core/in.c +267 -0
- data/vendor/lexbor/source/lexbor/core/in.h +172 -0
- data/vendor/lexbor/source/lexbor/core/lexbor.h +35 -0
- data/vendor/lexbor/source/lexbor/core/mem.c +228 -0
- data/vendor/lexbor/source/lexbor/core/mem.h +141 -0
- data/vendor/lexbor/source/lexbor/core/mraw.c +428 -0
- data/vendor/lexbor/source/lexbor/core/mraw.h +114 -0
- data/vendor/lexbor/source/lexbor/core/perf.h +45 -0
- data/vendor/lexbor/source/lexbor/core/plog.c +73 -0
- data/vendor/lexbor/source/lexbor/core/plog.h +102 -0
- data/vendor/lexbor/source/lexbor/core/print.c +168 -0
- data/vendor/lexbor/source/lexbor/core/print.h +39 -0
- data/vendor/lexbor/source/lexbor/core/sbst.h +59 -0
- data/vendor/lexbor/source/lexbor/core/serialize.c +27 -0
- data/vendor/lexbor/source/lexbor/core/serialize.h +32 -0
- data/vendor/lexbor/source/lexbor/core/shs.c +118 -0
- data/vendor/lexbor/source/lexbor/core/shs.h +82 -0
- data/vendor/lexbor/source/lexbor/core/str.c +617 -0
- data/vendor/lexbor/source/lexbor/core/str.h +247 -0
- data/vendor/lexbor/source/lexbor/core/str_res.h +369 -0
- data/vendor/lexbor/source/lexbor/core/strtod.c +326 -0
- data/vendor/lexbor/source/lexbor/core/strtod.h +28 -0
- data/vendor/lexbor/source/lexbor/core/types.h +39 -0
- data/vendor/lexbor/source/lexbor/core/utils.c +43 -0
- data/vendor/lexbor/source/lexbor/core/utils.h +36 -0
- data/vendor/lexbor/source/lexbor/css/base.h +44 -0
- data/vendor/lexbor/source/lexbor/css/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/css/css.h +25 -0
- data/vendor/lexbor/source/lexbor/css/log.c +336 -0
- data/vendor/lexbor/source/lexbor/css/log.h +103 -0
- data/vendor/lexbor/source/lexbor/css/node.h +29 -0
- data/vendor/lexbor/source/lexbor/css/parser.c +473 -0
- data/vendor/lexbor/source/lexbor/css/parser.h +368 -0
- data/vendor/lexbor/source/lexbor/css/selectors/base.h +48 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.c +91 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.h +66 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_const.h +109 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_res.h +302 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.c +279 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.h +85 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.c +927 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.h +200 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.c +340 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.h +137 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.c +1718 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.h +79 -0
- data/vendor/lexbor/source/lexbor/css/stylesheet.h +37 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.c +443 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.h +45 -0
- data/vendor/lexbor/source/lexbor/css/syntax/base.h +33 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.c +9 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.h +25 -0
- data/vendor/lexbor/source/lexbor/css/syntax/res.h +48 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.c +2603 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.h +140 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state_res.h +273 -0
- data/vendor/lexbor/source/lexbor/css/syntax/syntax.c +67 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.c +618 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.h +298 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token_res.h +68 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.c +30 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.h +58 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.c +278 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.h +121 -0
- data/vendor/lexbor/source/lexbor/dom/base.h +32 -0
- data/vendor/lexbor/source/lexbor/dom/collection.c +97 -0
- data/vendor/lexbor/source/lexbor/dom/collection.h +112 -0
- data/vendor/lexbor/source/lexbor/dom/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/dom/dom.h +29 -0
- data/vendor/lexbor/source/lexbor/dom/exception.c +18 -0
- data/vendor/lexbor/source/lexbor/dom/exception.h +73 -0
- data/vendor/lexbor/source/lexbor/dom/interface.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interface.h +88 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.c +445 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.h +152 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_const.h +62 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_res.h +143 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.c +55 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.h +38 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.h +51 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.c +64 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.h +42 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.c +536 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.h +243 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.h +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.c +125 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.h +108 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.c +1411 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.h +319 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.c +32 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.h +34 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.c +661 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.h +192 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +87 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +66 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.h +44 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.c +63 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.h +42 -0
- data/vendor/lexbor/source/lexbor/encoding/base.h +218 -0
- data/vendor/lexbor/source/lexbor/encoding/big5.c +42839 -0
- data/vendor/lexbor/source/lexbor/encoding/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/encoding/const.h +65 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.c +3193 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.h +370 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.c +1931 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.h +377 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.c +252 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.h +475 -0
- data/vendor/lexbor/source/lexbor/encoding/euc_kr.c +53883 -0
- data/vendor/lexbor/source/lexbor/encoding/gb18030.c +47905 -0
- data/vendor/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +159 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0208.c +22477 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0212.c +15787 -0
- data/vendor/lexbor/source/lexbor/encoding/multi.h +53 -0
- data/vendor/lexbor/source/lexbor/encoding/range.c +71 -0
- data/vendor/lexbor/source/lexbor/encoding/range.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/res.c +222 -0
- data/vendor/lexbor/source/lexbor/encoding/res.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/single.c +13748 -0
- data/vendor/lexbor/source/lexbor/encoding/single.h +116 -0
- data/vendor/lexbor/source/lexbor/html/base.h +44 -0
- data/vendor/lexbor/source/lexbor/html/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/html/encoding.c +574 -0
- data/vendor/lexbor/source/lexbor/html/encoding.h +106 -0
- data/vendor/lexbor/source/lexbor/html/html.h +107 -0
- data/vendor/lexbor/source/lexbor/html/interface.c +165 -0
- data/vendor/lexbor/source/lexbor/html/interface.h +186 -0
- data/vendor/lexbor/source/lexbor/html/interface_res.h +4449 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.c +444 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.h +256 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.c +64 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.h +54 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.c +46 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.h +38 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.c +133 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.h +42 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.h +34 -0
- data/vendor/lexbor/source/lexbor/html/node.c +14 -0
- data/vendor/lexbor/source/lexbor/html/node.h +67 -0
- data/vendor/lexbor/source/lexbor/html/parser.c +469 -0
- data/vendor/lexbor/source/lexbor/html/parser.h +170 -0
- data/vendor/lexbor/source/lexbor/html/serialize.c +1510 -0
- data/vendor/lexbor/source/lexbor/html/serialize.h +93 -0
- data/vendor/lexbor/source/lexbor/html/tag.h +103 -0
- data/vendor/lexbor/source/lexbor/html/tag_res.h +2262 -0
- data/vendor/lexbor/source/lexbor/html/token.c +386 -0
- data/vendor/lexbor/source/lexbor/html/token.h +130 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.c +44 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.h +67 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.c +28 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.h +141 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/res.h +4956 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.c +2171 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.h +225 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.c +489 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.c +1654 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +303 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +311 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.c +1209 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.c +499 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.h +343 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.c +241 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.h +117 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.c +26 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.h +114 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +62 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +63 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +82 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +88 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +222 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +144 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +166 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +358 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +1974 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +158 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +187 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +194 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +149 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +374 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +121 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +211 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +341 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +115 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +451 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +208 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +127 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +189 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +411 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/text.c +61 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode.h +135 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.c +251 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.h +105 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.c +10 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.h +100 -0
- data/vendor/lexbor/source/lexbor/html/tree.c +1726 -0
- data/vendor/lexbor/source/lexbor/html/tree.h +431 -0
- data/vendor/lexbor/source/lexbor/html/tree_res.h +111 -0
- data/vendor/lexbor/source/lexbor/ns/base.h +32 -0
- data/vendor/lexbor/source/lexbor/ns/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/ns/const.h +37 -0
- data/vendor/lexbor/source/lexbor/ns/ns.c +154 -0
- data/vendor/lexbor/source/lexbor/ns/ns.h +66 -0
- data/vendor/lexbor/source/lexbor/ns/res.h +97 -0
- data/vendor/lexbor/source/lexbor/ports/posix/config.cmake +11 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +236 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +158 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/config.cmake +18 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +239 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +81 -0
- data/vendor/lexbor/source/lexbor/selectors/base.h +30 -0
- data/vendor/lexbor/source/lexbor/selectors/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.c +1591 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.h +71 -0
- data/vendor/lexbor/source/lexbor/tag/base.h +32 -0
- data/vendor/lexbor/source/lexbor/tag/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/tag/const.h +225 -0
- data/vendor/lexbor/source/lexbor/tag/res.h +562 -0
- data/vendor/lexbor/source/lexbor/tag/tag.c +144 -0
- data/vendor/lexbor/source/lexbor/tag/tag.h +123 -0
- data/vendor/lexbor/source/lexbor/utils/base.h +32 -0
- data/vendor/lexbor/source/lexbor/utils/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/utils/http.c +534 -0
- data/vendor/lexbor/source/lexbor/utils/http.h +90 -0
- data/vendor/lexbor/source/lexbor/utils/utils.h +15 -0
- data/vendor/lexbor/source/lexbor/utils/warc.c +817 -0
- data/vendor/lexbor/source/lexbor/utils/warc.h +126 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/pseudo.py +231 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/const.h +21 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/res.h +26 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/definitions.py +49 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/token_res.py +54 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/tokenizer_code_map.py +36 -0
- data/vendor/lexbor/version +1 -0
- metadata +542 -0
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: SAX2 parser interface used to build the DOM tree
|
|
3
|
+
* Description: those are the default SAX2 interfaces used by
|
|
4
|
+
* the library when building DOM tree.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
#ifndef __XML_SAX2_H__
|
|
13
|
+
#define __XML_SAX2_H__
|
|
14
|
+
|
|
15
|
+
#include <stdio.h>
|
|
16
|
+
#include <stdlib.h>
|
|
17
|
+
#include "xmlversion.h"
|
|
18
|
+
#include "parser.h"
|
|
19
|
+
|
|
20
|
+
#ifdef __cplusplus
|
|
21
|
+
extern "C" {
|
|
22
|
+
#endif
|
|
23
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
24
|
+
xmlSAX2GetPublicId (void *ctx);
|
|
25
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
26
|
+
xmlSAX2GetSystemId (void *ctx);
|
|
27
|
+
XMLPUBFUN void XMLCALL
|
|
28
|
+
xmlSAX2SetDocumentLocator (void *ctx,
|
|
29
|
+
xmlSAXLocatorPtr loc);
|
|
30
|
+
|
|
31
|
+
XMLPUBFUN int XMLCALL
|
|
32
|
+
xmlSAX2GetLineNumber (void *ctx);
|
|
33
|
+
XMLPUBFUN int XMLCALL
|
|
34
|
+
xmlSAX2GetColumnNumber (void *ctx);
|
|
35
|
+
|
|
36
|
+
XMLPUBFUN int XMLCALL
|
|
37
|
+
xmlSAX2IsStandalone (void *ctx);
|
|
38
|
+
XMLPUBFUN int XMLCALL
|
|
39
|
+
xmlSAX2HasInternalSubset (void *ctx);
|
|
40
|
+
XMLPUBFUN int XMLCALL
|
|
41
|
+
xmlSAX2HasExternalSubset (void *ctx);
|
|
42
|
+
|
|
43
|
+
XMLPUBFUN void XMLCALL
|
|
44
|
+
xmlSAX2InternalSubset (void *ctx,
|
|
45
|
+
const xmlChar *name,
|
|
46
|
+
const xmlChar *ExternalID,
|
|
47
|
+
const xmlChar *SystemID);
|
|
48
|
+
XMLPUBFUN void XMLCALL
|
|
49
|
+
xmlSAX2ExternalSubset (void *ctx,
|
|
50
|
+
const xmlChar *name,
|
|
51
|
+
const xmlChar *ExternalID,
|
|
52
|
+
const xmlChar *SystemID);
|
|
53
|
+
XMLPUBFUN xmlEntityPtr XMLCALL
|
|
54
|
+
xmlSAX2GetEntity (void *ctx,
|
|
55
|
+
const xmlChar *name);
|
|
56
|
+
XMLPUBFUN xmlEntityPtr XMLCALL
|
|
57
|
+
xmlSAX2GetParameterEntity (void *ctx,
|
|
58
|
+
const xmlChar *name);
|
|
59
|
+
XMLPUBFUN xmlParserInputPtr XMLCALL
|
|
60
|
+
xmlSAX2ResolveEntity (void *ctx,
|
|
61
|
+
const xmlChar *publicId,
|
|
62
|
+
const xmlChar *systemId);
|
|
63
|
+
|
|
64
|
+
XMLPUBFUN void XMLCALL
|
|
65
|
+
xmlSAX2EntityDecl (void *ctx,
|
|
66
|
+
const xmlChar *name,
|
|
67
|
+
int type,
|
|
68
|
+
const xmlChar *publicId,
|
|
69
|
+
const xmlChar *systemId,
|
|
70
|
+
xmlChar *content);
|
|
71
|
+
XMLPUBFUN void XMLCALL
|
|
72
|
+
xmlSAX2AttributeDecl (void *ctx,
|
|
73
|
+
const xmlChar *elem,
|
|
74
|
+
const xmlChar *fullname,
|
|
75
|
+
int type,
|
|
76
|
+
int def,
|
|
77
|
+
const xmlChar *defaultValue,
|
|
78
|
+
xmlEnumerationPtr tree);
|
|
79
|
+
XMLPUBFUN void XMLCALL
|
|
80
|
+
xmlSAX2ElementDecl (void *ctx,
|
|
81
|
+
const xmlChar *name,
|
|
82
|
+
int type,
|
|
83
|
+
xmlElementContentPtr content);
|
|
84
|
+
XMLPUBFUN void XMLCALL
|
|
85
|
+
xmlSAX2NotationDecl (void *ctx,
|
|
86
|
+
const xmlChar *name,
|
|
87
|
+
const xmlChar *publicId,
|
|
88
|
+
const xmlChar *systemId);
|
|
89
|
+
XMLPUBFUN void XMLCALL
|
|
90
|
+
xmlSAX2UnparsedEntityDecl (void *ctx,
|
|
91
|
+
const xmlChar *name,
|
|
92
|
+
const xmlChar *publicId,
|
|
93
|
+
const xmlChar *systemId,
|
|
94
|
+
const xmlChar *notationName);
|
|
95
|
+
|
|
96
|
+
XMLPUBFUN void XMLCALL
|
|
97
|
+
xmlSAX2StartDocument (void *ctx);
|
|
98
|
+
XMLPUBFUN void XMLCALL
|
|
99
|
+
xmlSAX2EndDocument (void *ctx);
|
|
100
|
+
#if defined(LIBXML_SAX1_ENABLED) || defined(LIBXML_HTML_ENABLED) || \
|
|
101
|
+
defined(LIBXML_WRITER_ENABLED) || defined(LIBXML_LEGACY_ENABLED)
|
|
102
|
+
XMLPUBFUN void XMLCALL
|
|
103
|
+
xmlSAX2StartElement (void *ctx,
|
|
104
|
+
const xmlChar *fullname,
|
|
105
|
+
const xmlChar **atts);
|
|
106
|
+
XMLPUBFUN void XMLCALL
|
|
107
|
+
xmlSAX2EndElement (void *ctx,
|
|
108
|
+
const xmlChar *name);
|
|
109
|
+
#endif /* LIBXML_SAX1_ENABLED or LIBXML_HTML_ENABLED or LIBXML_LEGACY_ENABLED */
|
|
110
|
+
XMLPUBFUN void XMLCALL
|
|
111
|
+
xmlSAX2StartElementNs (void *ctx,
|
|
112
|
+
const xmlChar *localname,
|
|
113
|
+
const xmlChar *prefix,
|
|
114
|
+
const xmlChar *URI,
|
|
115
|
+
int nb_namespaces,
|
|
116
|
+
const xmlChar **namespaces,
|
|
117
|
+
int nb_attributes,
|
|
118
|
+
int nb_defaulted,
|
|
119
|
+
const xmlChar **attributes);
|
|
120
|
+
XMLPUBFUN void XMLCALL
|
|
121
|
+
xmlSAX2EndElementNs (void *ctx,
|
|
122
|
+
const xmlChar *localname,
|
|
123
|
+
const xmlChar *prefix,
|
|
124
|
+
const xmlChar *URI);
|
|
125
|
+
XMLPUBFUN void XMLCALL
|
|
126
|
+
xmlSAX2Reference (void *ctx,
|
|
127
|
+
const xmlChar *name);
|
|
128
|
+
XMLPUBFUN void XMLCALL
|
|
129
|
+
xmlSAX2Characters (void *ctx,
|
|
130
|
+
const xmlChar *ch,
|
|
131
|
+
int len);
|
|
132
|
+
XMLPUBFUN void XMLCALL
|
|
133
|
+
xmlSAX2IgnorableWhitespace (void *ctx,
|
|
134
|
+
const xmlChar *ch,
|
|
135
|
+
int len);
|
|
136
|
+
XMLPUBFUN void XMLCALL
|
|
137
|
+
xmlSAX2ProcessingInstruction (void *ctx,
|
|
138
|
+
const xmlChar *target,
|
|
139
|
+
const xmlChar *data);
|
|
140
|
+
XMLPUBFUN void XMLCALL
|
|
141
|
+
xmlSAX2Comment (void *ctx,
|
|
142
|
+
const xmlChar *value);
|
|
143
|
+
XMLPUBFUN void XMLCALL
|
|
144
|
+
xmlSAX2CDataBlock (void *ctx,
|
|
145
|
+
const xmlChar *value,
|
|
146
|
+
int len);
|
|
147
|
+
|
|
148
|
+
#ifdef LIBXML_SAX1_ENABLED
|
|
149
|
+
XML_DEPRECATED
|
|
150
|
+
XMLPUBFUN int XMLCALL
|
|
151
|
+
xmlSAXDefaultVersion (int version);
|
|
152
|
+
#endif /* LIBXML_SAX1_ENABLED */
|
|
153
|
+
|
|
154
|
+
XMLPUBFUN int XMLCALL
|
|
155
|
+
xmlSAXVersion (xmlSAXHandler *hdlr,
|
|
156
|
+
int version);
|
|
157
|
+
XMLPUBFUN void XMLCALL
|
|
158
|
+
xmlSAX2InitDefaultSAXHandler (xmlSAXHandler *hdlr,
|
|
159
|
+
int warning);
|
|
160
|
+
#ifdef LIBXML_HTML_ENABLED
|
|
161
|
+
XMLPUBFUN void XMLCALL
|
|
162
|
+
xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr);
|
|
163
|
+
XML_DEPRECATED
|
|
164
|
+
XMLPUBFUN void XMLCALL
|
|
165
|
+
htmlDefaultSAXHandlerInit (void);
|
|
166
|
+
#endif
|
|
167
|
+
XML_DEPRECATED
|
|
168
|
+
XMLPUBFUN void XMLCALL
|
|
169
|
+
xmlDefaultSAXHandlerInit (void);
|
|
170
|
+
#ifdef __cplusplus
|
|
171
|
+
}
|
|
172
|
+
#endif
|
|
173
|
+
#endif /* __XML_SAX2_H__ */
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: Unicode character range checking
|
|
3
|
+
* Description: this module exports interfaces for the character
|
|
4
|
+
* range validation APIs
|
|
5
|
+
*
|
|
6
|
+
* This file is automatically generated from the cvs source
|
|
7
|
+
* definition files using the genChRanges.py Python script
|
|
8
|
+
*
|
|
9
|
+
* Generation date: Mon Mar 27 11:09:48 2006
|
|
10
|
+
* Sources: chvalid.def
|
|
11
|
+
* Author: William Brack <wbrack@mmm.com.hk>
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
#ifndef __XML_CHVALID_H__
|
|
15
|
+
#define __XML_CHVALID_H__
|
|
16
|
+
|
|
17
|
+
#include "xmlversion.h"
|
|
18
|
+
#include "xmlstring.h"
|
|
19
|
+
|
|
20
|
+
#ifdef __cplusplus
|
|
21
|
+
extern "C" {
|
|
22
|
+
#endif
|
|
23
|
+
|
|
24
|
+
/*
|
|
25
|
+
* Define our typedefs and structures
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
typedef struct _xmlChSRange xmlChSRange;
|
|
29
|
+
typedef xmlChSRange *xmlChSRangePtr;
|
|
30
|
+
struct _xmlChSRange {
|
|
31
|
+
unsigned short low;
|
|
32
|
+
unsigned short high;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
typedef struct _xmlChLRange xmlChLRange;
|
|
36
|
+
typedef xmlChLRange *xmlChLRangePtr;
|
|
37
|
+
struct _xmlChLRange {
|
|
38
|
+
unsigned int low;
|
|
39
|
+
unsigned int high;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
typedef struct _xmlChRangeGroup xmlChRangeGroup;
|
|
43
|
+
typedef xmlChRangeGroup *xmlChRangeGroupPtr;
|
|
44
|
+
struct _xmlChRangeGroup {
|
|
45
|
+
int nbShortRange;
|
|
46
|
+
int nbLongRange;
|
|
47
|
+
const xmlChSRange *shortRange; /* points to an array of ranges */
|
|
48
|
+
const xmlChLRange *longRange;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Range checking routine
|
|
53
|
+
*/
|
|
54
|
+
XMLPUBFUN int XMLCALL
|
|
55
|
+
xmlCharInRange(unsigned int val, const xmlChRangeGroup *group);
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* xmlIsBaseChar_ch:
|
|
60
|
+
* @c: char to validate
|
|
61
|
+
*
|
|
62
|
+
* Automatically generated by genChRanges.py
|
|
63
|
+
*/
|
|
64
|
+
#define xmlIsBaseChar_ch(c) (((0x41 <= (c)) && ((c) <= 0x5a)) || \
|
|
65
|
+
((0x61 <= (c)) && ((c) <= 0x7a)) || \
|
|
66
|
+
((0xc0 <= (c)) && ((c) <= 0xd6)) || \
|
|
67
|
+
((0xd8 <= (c)) && ((c) <= 0xf6)) || \
|
|
68
|
+
(0xf8 <= (c)))
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* xmlIsBaseCharQ:
|
|
72
|
+
* @c: char to validate
|
|
73
|
+
*
|
|
74
|
+
* Automatically generated by genChRanges.py
|
|
75
|
+
*/
|
|
76
|
+
#define xmlIsBaseCharQ(c) (((c) < 0x100) ? \
|
|
77
|
+
xmlIsBaseChar_ch((c)) : \
|
|
78
|
+
xmlCharInRange((c), &xmlIsBaseCharGroup))
|
|
79
|
+
|
|
80
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsBaseCharGroup;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* xmlIsBlank_ch:
|
|
84
|
+
* @c: char to validate
|
|
85
|
+
*
|
|
86
|
+
* Automatically generated by genChRanges.py
|
|
87
|
+
*/
|
|
88
|
+
#define xmlIsBlank_ch(c) (((c) == 0x20) || \
|
|
89
|
+
((0x9 <= (c)) && ((c) <= 0xa)) || \
|
|
90
|
+
((c) == 0xd))
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* xmlIsBlankQ:
|
|
94
|
+
* @c: char to validate
|
|
95
|
+
*
|
|
96
|
+
* Automatically generated by genChRanges.py
|
|
97
|
+
*/
|
|
98
|
+
#define xmlIsBlankQ(c) (((c) < 0x100) ? \
|
|
99
|
+
xmlIsBlank_ch((c)) : 0)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* xmlIsChar_ch:
|
|
104
|
+
* @c: char to validate
|
|
105
|
+
*
|
|
106
|
+
* Automatically generated by genChRanges.py
|
|
107
|
+
*/
|
|
108
|
+
#define xmlIsChar_ch(c) (((0x9 <= (c)) && ((c) <= 0xa)) || \
|
|
109
|
+
((c) == 0xd) || \
|
|
110
|
+
(0x20 <= (c)))
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* xmlIsCharQ:
|
|
114
|
+
* @c: char to validate
|
|
115
|
+
*
|
|
116
|
+
* Automatically generated by genChRanges.py
|
|
117
|
+
*/
|
|
118
|
+
#define xmlIsCharQ(c) (((c) < 0x100) ? \
|
|
119
|
+
xmlIsChar_ch((c)) :\
|
|
120
|
+
(((0x100 <= (c)) && ((c) <= 0xd7ff)) || \
|
|
121
|
+
((0xe000 <= (c)) && ((c) <= 0xfffd)) || \
|
|
122
|
+
((0x10000 <= (c)) && ((c) <= 0x10ffff))))
|
|
123
|
+
|
|
124
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsCharGroup;
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* xmlIsCombiningQ:
|
|
128
|
+
* @c: char to validate
|
|
129
|
+
*
|
|
130
|
+
* Automatically generated by genChRanges.py
|
|
131
|
+
*/
|
|
132
|
+
#define xmlIsCombiningQ(c) (((c) < 0x100) ? \
|
|
133
|
+
0 : \
|
|
134
|
+
xmlCharInRange((c), &xmlIsCombiningGroup))
|
|
135
|
+
|
|
136
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsCombiningGroup;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* xmlIsDigit_ch:
|
|
140
|
+
* @c: char to validate
|
|
141
|
+
*
|
|
142
|
+
* Automatically generated by genChRanges.py
|
|
143
|
+
*/
|
|
144
|
+
#define xmlIsDigit_ch(c) (((0x30 <= (c)) && ((c) <= 0x39)))
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* xmlIsDigitQ:
|
|
148
|
+
* @c: char to validate
|
|
149
|
+
*
|
|
150
|
+
* Automatically generated by genChRanges.py
|
|
151
|
+
*/
|
|
152
|
+
#define xmlIsDigitQ(c) (((c) < 0x100) ? \
|
|
153
|
+
xmlIsDigit_ch((c)) : \
|
|
154
|
+
xmlCharInRange((c), &xmlIsDigitGroup))
|
|
155
|
+
|
|
156
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsDigitGroup;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* xmlIsExtender_ch:
|
|
160
|
+
* @c: char to validate
|
|
161
|
+
*
|
|
162
|
+
* Automatically generated by genChRanges.py
|
|
163
|
+
*/
|
|
164
|
+
#define xmlIsExtender_ch(c) (((c) == 0xb7))
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* xmlIsExtenderQ:
|
|
168
|
+
* @c: char to validate
|
|
169
|
+
*
|
|
170
|
+
* Automatically generated by genChRanges.py
|
|
171
|
+
*/
|
|
172
|
+
#define xmlIsExtenderQ(c) (((c) < 0x100) ? \
|
|
173
|
+
xmlIsExtender_ch((c)) : \
|
|
174
|
+
xmlCharInRange((c), &xmlIsExtenderGroup))
|
|
175
|
+
|
|
176
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsExtenderGroup;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* xmlIsIdeographicQ:
|
|
180
|
+
* @c: char to validate
|
|
181
|
+
*
|
|
182
|
+
* Automatically generated by genChRanges.py
|
|
183
|
+
*/
|
|
184
|
+
#define xmlIsIdeographicQ(c) (((c) < 0x100) ? \
|
|
185
|
+
0 :\
|
|
186
|
+
(((0x4e00 <= (c)) && ((c) <= 0x9fa5)) || \
|
|
187
|
+
((c) == 0x3007) || \
|
|
188
|
+
((0x3021 <= (c)) && ((c) <= 0x3029))))
|
|
189
|
+
|
|
190
|
+
XMLPUBVAR const xmlChRangeGroup xmlIsIdeographicGroup;
|
|
191
|
+
XMLPUBVAR const unsigned char xmlIsPubidChar_tab[256];
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* xmlIsPubidChar_ch:
|
|
195
|
+
* @c: char to validate
|
|
196
|
+
*
|
|
197
|
+
* Automatically generated by genChRanges.py
|
|
198
|
+
*/
|
|
199
|
+
#define xmlIsPubidChar_ch(c) (xmlIsPubidChar_tab[(c)])
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* xmlIsPubidCharQ:
|
|
203
|
+
* @c: char to validate
|
|
204
|
+
*
|
|
205
|
+
* Automatically generated by genChRanges.py
|
|
206
|
+
*/
|
|
207
|
+
#define xmlIsPubidCharQ(c) (((c) < 0x100) ? \
|
|
208
|
+
xmlIsPubidChar_ch((c)) : 0)
|
|
209
|
+
|
|
210
|
+
XMLPUBFUN int XMLCALL
|
|
211
|
+
xmlIsBaseChar(unsigned int ch);
|
|
212
|
+
XMLPUBFUN int XMLCALL
|
|
213
|
+
xmlIsBlank(unsigned int ch);
|
|
214
|
+
XMLPUBFUN int XMLCALL
|
|
215
|
+
xmlIsChar(unsigned int ch);
|
|
216
|
+
XMLPUBFUN int XMLCALL
|
|
217
|
+
xmlIsCombining(unsigned int ch);
|
|
218
|
+
XMLPUBFUN int XMLCALL
|
|
219
|
+
xmlIsDigit(unsigned int ch);
|
|
220
|
+
XMLPUBFUN int XMLCALL
|
|
221
|
+
xmlIsExtender(unsigned int ch);
|
|
222
|
+
XMLPUBFUN int XMLCALL
|
|
223
|
+
xmlIsIdeographic(unsigned int ch);
|
|
224
|
+
XMLPUBFUN int XMLCALL
|
|
225
|
+
xmlIsPubidChar(unsigned int ch);
|
|
226
|
+
|
|
227
|
+
#ifdef __cplusplus
|
|
228
|
+
}
|
|
229
|
+
#endif
|
|
230
|
+
#endif /* __XML_CHVALID_H__ */
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: Tree debugging APIs
|
|
3
|
+
* Description: Interfaces to a set of routines used for debugging the tree
|
|
4
|
+
* produced by the XML parser.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#ifndef __DEBUG_XML__
|
|
12
|
+
#define __DEBUG_XML__
|
|
13
|
+
#include <stdio.h>
|
|
14
|
+
#include "xmlversion.h"
|
|
15
|
+
#include "tree.h"
|
|
16
|
+
|
|
17
|
+
#ifdef LIBXML_DEBUG_ENABLED
|
|
18
|
+
|
|
19
|
+
#include "xpath.h"
|
|
20
|
+
|
|
21
|
+
#ifdef __cplusplus
|
|
22
|
+
extern "C" {
|
|
23
|
+
#endif
|
|
24
|
+
|
|
25
|
+
/*
|
|
26
|
+
* The standard Dump routines.
|
|
27
|
+
*/
|
|
28
|
+
XMLPUBFUN void XMLCALL
|
|
29
|
+
xmlDebugDumpString (FILE *output,
|
|
30
|
+
const xmlChar *str);
|
|
31
|
+
XMLPUBFUN void XMLCALL
|
|
32
|
+
xmlDebugDumpAttr (FILE *output,
|
|
33
|
+
lxb_dom_attr_t_ptr attr,
|
|
34
|
+
int depth);
|
|
35
|
+
XMLPUBFUN void XMLCALL
|
|
36
|
+
xmlDebugDumpAttrList (FILE *output,
|
|
37
|
+
lxb_dom_attr_t_ptr attr,
|
|
38
|
+
int depth);
|
|
39
|
+
XMLPUBFUN void XMLCALL
|
|
40
|
+
xmlDebugDumpOneNode (FILE *output,
|
|
41
|
+
lxb_dom_node_t_ptr node,
|
|
42
|
+
int depth);
|
|
43
|
+
XMLPUBFUN void XMLCALL
|
|
44
|
+
xmlDebugDumpNode (FILE *output,
|
|
45
|
+
lxb_dom_node_t_ptr node,
|
|
46
|
+
int depth);
|
|
47
|
+
XMLPUBFUN void XMLCALL
|
|
48
|
+
xmlDebugDumpNodeList (FILE *output,
|
|
49
|
+
lxb_dom_node_t_ptr node,
|
|
50
|
+
int depth);
|
|
51
|
+
XMLPUBFUN void XMLCALL
|
|
52
|
+
xmlDebugDumpDocumentHead(FILE *output,
|
|
53
|
+
lxb_dom_document_t_ptr doc);
|
|
54
|
+
XMLPUBFUN void XMLCALL
|
|
55
|
+
xmlDebugDumpDocument (FILE *output,
|
|
56
|
+
lxb_dom_document_t_ptr doc);
|
|
57
|
+
XMLPUBFUN void XMLCALL
|
|
58
|
+
xmlDebugDumpDTD (FILE *output,
|
|
59
|
+
xmlDtdPtr dtd);
|
|
60
|
+
XMLPUBFUN void XMLCALL
|
|
61
|
+
xmlDebugDumpEntities (FILE *output,
|
|
62
|
+
lxb_dom_document_t_ptr doc);
|
|
63
|
+
|
|
64
|
+
/****************************************************************
|
|
65
|
+
* *
|
|
66
|
+
* Checking routines *
|
|
67
|
+
* *
|
|
68
|
+
****************************************************************/
|
|
69
|
+
|
|
70
|
+
XMLPUBFUN int XMLCALL
|
|
71
|
+
xmlDebugCheckDocument (FILE * output,
|
|
72
|
+
lxb_dom_document_t_ptr doc);
|
|
73
|
+
|
|
74
|
+
/****************************************************************
|
|
75
|
+
* *
|
|
76
|
+
* XML shell helpers *
|
|
77
|
+
* *
|
|
78
|
+
****************************************************************/
|
|
79
|
+
|
|
80
|
+
XMLPUBFUN void XMLCALL
|
|
81
|
+
xmlLsOneNode (FILE *output, lxb_dom_node_t_ptr node);
|
|
82
|
+
XMLPUBFUN int XMLCALL
|
|
83
|
+
xmlLsCountNode (lxb_dom_node_t_ptr node);
|
|
84
|
+
|
|
85
|
+
XMLPUBFUN const char * XMLCALL
|
|
86
|
+
xmlBoolToText (int boolval);
|
|
87
|
+
|
|
88
|
+
/****************************************************************
|
|
89
|
+
* *
|
|
90
|
+
* The XML shell related structures and functions *
|
|
91
|
+
* *
|
|
92
|
+
****************************************************************/
|
|
93
|
+
|
|
94
|
+
#ifdef LIBXML_XPATH_ENABLED
|
|
95
|
+
/**
|
|
96
|
+
* xmlShellReadlineFunc:
|
|
97
|
+
* @prompt: a string prompt
|
|
98
|
+
*
|
|
99
|
+
* This is a generic signature for the XML shell input function.
|
|
100
|
+
*
|
|
101
|
+
* Returns a string which will be freed by the Shell.
|
|
102
|
+
*/
|
|
103
|
+
typedef char * (* xmlShellReadlineFunc)(char *prompt);
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* xmlShellCtxt:
|
|
107
|
+
*
|
|
108
|
+
* A debugging shell context.
|
|
109
|
+
* TODO: add the defined function tables.
|
|
110
|
+
*/
|
|
111
|
+
typedef struct _xmlShellCtxt xmlShellCtxt;
|
|
112
|
+
typedef xmlShellCtxt *xmlShellCtxtPtr;
|
|
113
|
+
struct _xmlShellCtxt {
|
|
114
|
+
char *filename;
|
|
115
|
+
lxb_dom_document_t_ptr doc;
|
|
116
|
+
lxb_dom_node_t_ptr node;
|
|
117
|
+
xmlXPathContextPtr pctxt;
|
|
118
|
+
int loaded;
|
|
119
|
+
FILE *output;
|
|
120
|
+
xmlShellReadlineFunc input;
|
|
121
|
+
};
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* xmlShellCmd:
|
|
125
|
+
* @ctxt: a shell context
|
|
126
|
+
* @arg: a string argument
|
|
127
|
+
* @node: a first node
|
|
128
|
+
* @node2: a second node
|
|
129
|
+
*
|
|
130
|
+
* This is a generic signature for the XML shell functions.
|
|
131
|
+
*
|
|
132
|
+
* Returns an int, negative returns indicating errors.
|
|
133
|
+
*/
|
|
134
|
+
typedef int (* xmlShellCmd) (xmlShellCtxtPtr ctxt,
|
|
135
|
+
char *arg,
|
|
136
|
+
lxb_dom_node_t_ptr node,
|
|
137
|
+
lxb_dom_node_t_ptr node2);
|
|
138
|
+
|
|
139
|
+
XMLPUBFUN void XMLCALL
|
|
140
|
+
xmlShellPrintXPathError (int errorType,
|
|
141
|
+
const char *arg);
|
|
142
|
+
XMLPUBFUN void XMLCALL
|
|
143
|
+
xmlShellPrintXPathResult(xmlXPathObjectPtr list);
|
|
144
|
+
XMLPUBFUN int XMLCALL
|
|
145
|
+
xmlShellList (xmlShellCtxtPtr ctxt,
|
|
146
|
+
char *arg,
|
|
147
|
+
lxb_dom_node_t_ptr node,
|
|
148
|
+
lxb_dom_node_t_ptr node2);
|
|
149
|
+
XMLPUBFUN int XMLCALL
|
|
150
|
+
xmlShellBase (xmlShellCtxtPtr ctxt,
|
|
151
|
+
char *arg,
|
|
152
|
+
lxb_dom_node_t_ptr node,
|
|
153
|
+
lxb_dom_node_t_ptr node2);
|
|
154
|
+
XMLPUBFUN int XMLCALL
|
|
155
|
+
xmlShellDir (xmlShellCtxtPtr ctxt,
|
|
156
|
+
char *arg,
|
|
157
|
+
lxb_dom_node_t_ptr node,
|
|
158
|
+
lxb_dom_node_t_ptr node2);
|
|
159
|
+
XMLPUBFUN int XMLCALL
|
|
160
|
+
xmlShellLoad (xmlShellCtxtPtr ctxt,
|
|
161
|
+
char *filename,
|
|
162
|
+
lxb_dom_node_t_ptr node,
|
|
163
|
+
lxb_dom_node_t_ptr node2);
|
|
164
|
+
#ifdef LIBXML_OUTPUT_ENABLED
|
|
165
|
+
XMLPUBFUN void XMLCALL
|
|
166
|
+
xmlShellPrintNode (lxb_dom_node_t_ptr node);
|
|
167
|
+
XMLPUBFUN int XMLCALL
|
|
168
|
+
xmlShellCat (xmlShellCtxtPtr ctxt,
|
|
169
|
+
char *arg,
|
|
170
|
+
lxb_dom_node_t_ptr node,
|
|
171
|
+
lxb_dom_node_t_ptr node2);
|
|
172
|
+
XMLPUBFUN int XMLCALL
|
|
173
|
+
xmlShellWrite (xmlShellCtxtPtr ctxt,
|
|
174
|
+
char *filename,
|
|
175
|
+
lxb_dom_node_t_ptr node,
|
|
176
|
+
lxb_dom_node_t_ptr node2);
|
|
177
|
+
XMLPUBFUN int XMLCALL
|
|
178
|
+
xmlShellSave (xmlShellCtxtPtr ctxt,
|
|
179
|
+
char *filename,
|
|
180
|
+
lxb_dom_node_t_ptr node,
|
|
181
|
+
lxb_dom_node_t_ptr node2);
|
|
182
|
+
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
183
|
+
#ifdef LIBXML_VALID_ENABLED
|
|
184
|
+
XMLPUBFUN int XMLCALL
|
|
185
|
+
xmlShellValidate (xmlShellCtxtPtr ctxt,
|
|
186
|
+
char *dtd,
|
|
187
|
+
lxb_dom_node_t_ptr node,
|
|
188
|
+
lxb_dom_node_t_ptr node2);
|
|
189
|
+
#endif /* LIBXML_VALID_ENABLED */
|
|
190
|
+
XMLPUBFUN int XMLCALL
|
|
191
|
+
xmlShellDu (xmlShellCtxtPtr ctxt,
|
|
192
|
+
char *arg,
|
|
193
|
+
lxb_dom_node_t_ptr tree,
|
|
194
|
+
lxb_dom_node_t_ptr node2);
|
|
195
|
+
XMLPUBFUN int XMLCALL
|
|
196
|
+
xmlShellPwd (xmlShellCtxtPtr ctxt,
|
|
197
|
+
char *buffer,
|
|
198
|
+
lxb_dom_node_t_ptr node,
|
|
199
|
+
lxb_dom_node_t_ptr node2);
|
|
200
|
+
|
|
201
|
+
/*
|
|
202
|
+
* The Shell interface.
|
|
203
|
+
*/
|
|
204
|
+
XMLPUBFUN void XMLCALL
|
|
205
|
+
xmlShell (lxb_dom_document_t_ptr doc,
|
|
206
|
+
char *filename,
|
|
207
|
+
xmlShellReadlineFunc input,
|
|
208
|
+
FILE *output);
|
|
209
|
+
|
|
210
|
+
#endif /* LIBXML_XPATH_ENABLED */
|
|
211
|
+
|
|
212
|
+
#ifdef __cplusplus
|
|
213
|
+
}
|
|
214
|
+
#endif
|
|
215
|
+
|
|
216
|
+
#endif /* LIBXML_DEBUG_ENABLED */
|
|
217
|
+
#endif /* __DEBUG_XML__ */
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Summary: string dictionary
|
|
3
|
+
* Description: dictionary of reusable strings, just used to avoid allocation
|
|
4
|
+
* and freeing operations.
|
|
5
|
+
*
|
|
6
|
+
* Copy: See Copyright for the status of this software.
|
|
7
|
+
*
|
|
8
|
+
* Author: Daniel Veillard
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#ifndef __XML_DICT_H__
|
|
12
|
+
#define __XML_DICT_H__
|
|
13
|
+
|
|
14
|
+
#include <stddef.h>
|
|
15
|
+
#include "xmlversion.h"
|
|
16
|
+
|
|
17
|
+
#ifdef __cplusplus
|
|
18
|
+
extern "C" {
|
|
19
|
+
#endif
|
|
20
|
+
|
|
21
|
+
/*
|
|
22
|
+
* The dictionary.
|
|
23
|
+
*/
|
|
24
|
+
typedef struct _xmlDict xmlDict;
|
|
25
|
+
typedef xmlDict *xmlDictPtr;
|
|
26
|
+
|
|
27
|
+
/*
|
|
28
|
+
* Initializer
|
|
29
|
+
*/
|
|
30
|
+
XML_DEPRECATED
|
|
31
|
+
XMLPUBFUN int XMLCALL xmlInitializeDict(void);
|
|
32
|
+
|
|
33
|
+
/*
|
|
34
|
+
* Constructor and destructor.
|
|
35
|
+
*/
|
|
36
|
+
XMLPUBFUN xmlDictPtr XMLCALL
|
|
37
|
+
xmlDictCreate (void);
|
|
38
|
+
XMLPUBFUN size_t XMLCALL
|
|
39
|
+
xmlDictSetLimit (xmlDictPtr dict,
|
|
40
|
+
size_t limit);
|
|
41
|
+
XMLPUBFUN size_t XMLCALL
|
|
42
|
+
xmlDictGetUsage (xmlDictPtr dict);
|
|
43
|
+
XMLPUBFUN xmlDictPtr XMLCALL
|
|
44
|
+
xmlDictCreateSub(xmlDictPtr sub);
|
|
45
|
+
XMLPUBFUN int XMLCALL
|
|
46
|
+
xmlDictReference(xmlDictPtr dict);
|
|
47
|
+
XMLPUBFUN void XMLCALL
|
|
48
|
+
xmlDictFree (xmlDictPtr dict);
|
|
49
|
+
|
|
50
|
+
/*
|
|
51
|
+
* Lookup of entry in the dictionary.
|
|
52
|
+
*/
|
|
53
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
54
|
+
xmlDictLookup (xmlDictPtr dict,
|
|
55
|
+
const xmlChar *name,
|
|
56
|
+
int len);
|
|
57
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
58
|
+
xmlDictExists (xmlDictPtr dict,
|
|
59
|
+
const xmlChar *name,
|
|
60
|
+
int len);
|
|
61
|
+
XMLPUBFUN const xmlChar * XMLCALL
|
|
62
|
+
xmlDictQLookup (xmlDictPtr dict,
|
|
63
|
+
const xmlChar *prefix,
|
|
64
|
+
const xmlChar *name);
|
|
65
|
+
XMLPUBFUN int XMLCALL
|
|
66
|
+
xmlDictOwns (xmlDictPtr dict,
|
|
67
|
+
const xmlChar *str);
|
|
68
|
+
XMLPUBFUN int XMLCALL
|
|
69
|
+
xmlDictSize (xmlDictPtr dict);
|
|
70
|
+
|
|
71
|
+
/*
|
|
72
|
+
* Cleanup function
|
|
73
|
+
*/
|
|
74
|
+
XML_DEPRECATED
|
|
75
|
+
XMLPUBFUN void XMLCALL
|
|
76
|
+
xmlDictCleanup (void);
|
|
77
|
+
|
|
78
|
+
#ifdef __cplusplus
|
|
79
|
+
}
|
|
80
|
+
#endif
|
|
81
|
+
#endif /* ! __XML_DICT_H__ */
|