nokogiri 1.11.0.rc1-x86-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (145) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-DEPENDENCIES.md +1614 -0
  3. data/LICENSE.md +9 -0
  4. data/README.md +200 -0
  5. data/bin/nokogiri +118 -0
  6. data/dependencies.yml +74 -0
  7. data/ext/nokogiri/depend +358 -0
  8. data/ext/nokogiri/extconf.rb +695 -0
  9. data/ext/nokogiri/html_document.c +170 -0
  10. data/ext/nokogiri/html_document.h +10 -0
  11. data/ext/nokogiri/html_element_description.c +279 -0
  12. data/ext/nokogiri/html_element_description.h +10 -0
  13. data/ext/nokogiri/html_entity_lookup.c +32 -0
  14. data/ext/nokogiri/html_entity_lookup.h +8 -0
  15. data/ext/nokogiri/html_sax_parser_context.c +116 -0
  16. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  17. data/ext/nokogiri/html_sax_push_parser.c +87 -0
  18. data/ext/nokogiri/html_sax_push_parser.h +9 -0
  19. data/ext/nokogiri/nokogiri.c +147 -0
  20. data/ext/nokogiri/nokogiri.h +122 -0
  21. data/ext/nokogiri/xml_attr.c +103 -0
  22. data/ext/nokogiri/xml_attr.h +9 -0
  23. data/ext/nokogiri/xml_attribute_decl.c +70 -0
  24. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  25. data/ext/nokogiri/xml_cdata.c +62 -0
  26. data/ext/nokogiri/xml_cdata.h +9 -0
  27. data/ext/nokogiri/xml_comment.c +69 -0
  28. data/ext/nokogiri/xml_comment.h +9 -0
  29. data/ext/nokogiri/xml_document.c +617 -0
  30. data/ext/nokogiri/xml_document.h +23 -0
  31. data/ext/nokogiri/xml_document_fragment.c +48 -0
  32. data/ext/nokogiri/xml_document_fragment.h +10 -0
  33. data/ext/nokogiri/xml_dtd.c +202 -0
  34. data/ext/nokogiri/xml_dtd.h +10 -0
  35. data/ext/nokogiri/xml_element_content.c +123 -0
  36. data/ext/nokogiri/xml_element_content.h +10 -0
  37. data/ext/nokogiri/xml_element_decl.c +69 -0
  38. data/ext/nokogiri/xml_element_decl.h +9 -0
  39. data/ext/nokogiri/xml_encoding_handler.c +79 -0
  40. data/ext/nokogiri/xml_encoding_handler.h +8 -0
  41. data/ext/nokogiri/xml_entity_decl.c +110 -0
  42. data/ext/nokogiri/xml_entity_decl.h +10 -0
  43. data/ext/nokogiri/xml_entity_reference.c +52 -0
  44. data/ext/nokogiri/xml_entity_reference.h +9 -0
  45. data/ext/nokogiri/xml_io.c +61 -0
  46. data/ext/nokogiri/xml_io.h +11 -0
  47. data/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  48. data/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  49. data/ext/nokogiri/xml_namespace.c +111 -0
  50. data/ext/nokogiri/xml_namespace.h +14 -0
  51. data/ext/nokogiri/xml_node.c +1773 -0
  52. data/ext/nokogiri/xml_node.h +13 -0
  53. data/ext/nokogiri/xml_node_set.c +486 -0
  54. data/ext/nokogiri/xml_node_set.h +12 -0
  55. data/ext/nokogiri/xml_processing_instruction.c +56 -0
  56. data/ext/nokogiri/xml_processing_instruction.h +9 -0
  57. data/ext/nokogiri/xml_reader.c +668 -0
  58. data/ext/nokogiri/xml_reader.h +10 -0
  59. data/ext/nokogiri/xml_relax_ng.c +161 -0
  60. data/ext/nokogiri/xml_relax_ng.h +9 -0
  61. data/ext/nokogiri/xml_sax_parser.c +310 -0
  62. data/ext/nokogiri/xml_sax_parser.h +39 -0
  63. data/ext/nokogiri/xml_sax_parser_context.c +262 -0
  64. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  65. data/ext/nokogiri/xml_sax_push_parser.c +159 -0
  66. data/ext/nokogiri/xml_sax_push_parser.h +9 -0
  67. data/ext/nokogiri/xml_schema.c +205 -0
  68. data/ext/nokogiri/xml_schema.h +9 -0
  69. data/ext/nokogiri/xml_syntax_error.c +64 -0
  70. data/ext/nokogiri/xml_syntax_error.h +13 -0
  71. data/ext/nokogiri/xml_text.c +52 -0
  72. data/ext/nokogiri/xml_text.h +9 -0
  73. data/ext/nokogiri/xml_xpath_context.c +298 -0
  74. data/ext/nokogiri/xml_xpath_context.h +10 -0
  75. data/ext/nokogiri/xslt_stylesheet.c +266 -0
  76. data/ext/nokogiri/xslt_stylesheet.h +14 -0
  77. data/lib/nokogiri.rb +127 -0
  78. data/lib/nokogiri/2.4/nokogiri.so +0 -0
  79. data/lib/nokogiri/2.5/nokogiri.so +0 -0
  80. data/lib/nokogiri/2.6/nokogiri.so +0 -0
  81. data/lib/nokogiri/2.7/nokogiri.so +0 -0
  82. data/lib/nokogiri/css.rb +28 -0
  83. data/lib/nokogiri/css/node.rb +53 -0
  84. data/lib/nokogiri/css/parser.rb +751 -0
  85. data/lib/nokogiri/css/parser.y +272 -0
  86. data/lib/nokogiri/css/parser_extras.rb +92 -0
  87. data/lib/nokogiri/css/syntax_error.rb +8 -0
  88. data/lib/nokogiri/css/tokenizer.rb +154 -0
  89. data/lib/nokogiri/css/tokenizer.rex +55 -0
  90. data/lib/nokogiri/css/xpath_visitor.rb +232 -0
  91. data/lib/nokogiri/decorators/slop.rb +43 -0
  92. data/lib/nokogiri/html.rb +38 -0
  93. data/lib/nokogiri/html/builder.rb +36 -0
  94. data/lib/nokogiri/html/document.rb +336 -0
  95. data/lib/nokogiri/html/document_fragment.rb +50 -0
  96. data/lib/nokogiri/html/element_description.rb +24 -0
  97. data/lib/nokogiri/html/element_description_defaults.rb +672 -0
  98. data/lib/nokogiri/html/entity_lookup.rb +14 -0
  99. data/lib/nokogiri/html/sax/parser.rb +63 -0
  100. data/lib/nokogiri/html/sax/parser_context.rb +17 -0
  101. data/lib/nokogiri/html/sax/push_parser.rb +37 -0
  102. data/lib/nokogiri/jruby/dependencies.rb +20 -0
  103. data/lib/nokogiri/syntax_error.rb +5 -0
  104. data/lib/nokogiri/version.rb +149 -0
  105. data/lib/nokogiri/xml.rb +76 -0
  106. data/lib/nokogiri/xml/attr.rb +15 -0
  107. data/lib/nokogiri/xml/attribute_decl.rb +19 -0
  108. data/lib/nokogiri/xml/builder.rb +447 -0
  109. data/lib/nokogiri/xml/cdata.rb +12 -0
  110. data/lib/nokogiri/xml/character_data.rb +8 -0
  111. data/lib/nokogiri/xml/document.rb +280 -0
  112. data/lib/nokogiri/xml/document_fragment.rb +161 -0
  113. data/lib/nokogiri/xml/dtd.rb +33 -0
  114. data/lib/nokogiri/xml/element_content.rb +37 -0
  115. data/lib/nokogiri/xml/element_decl.rb +14 -0
  116. data/lib/nokogiri/xml/entity_decl.rb +20 -0
  117. data/lib/nokogiri/xml/entity_reference.rb +19 -0
  118. data/lib/nokogiri/xml/namespace.rb +14 -0
  119. data/lib/nokogiri/xml/node.rb +916 -0
  120. data/lib/nokogiri/xml/node/save_options.rb +62 -0
  121. data/lib/nokogiri/xml/node_set.rb +372 -0
  122. data/lib/nokogiri/xml/notation.rb +7 -0
  123. data/lib/nokogiri/xml/parse_options.rb +121 -0
  124. data/lib/nokogiri/xml/pp.rb +3 -0
  125. data/lib/nokogiri/xml/pp/character_data.rb +19 -0
  126. data/lib/nokogiri/xml/pp/node.rb +57 -0
  127. data/lib/nokogiri/xml/processing_instruction.rb +9 -0
  128. data/lib/nokogiri/xml/reader.rb +116 -0
  129. data/lib/nokogiri/xml/relax_ng.rb +33 -0
  130. data/lib/nokogiri/xml/sax.rb +5 -0
  131. data/lib/nokogiri/xml/sax/document.rb +172 -0
  132. data/lib/nokogiri/xml/sax/parser.rb +123 -0
  133. data/lib/nokogiri/xml/sax/parser_context.rb +17 -0
  134. data/lib/nokogiri/xml/sax/push_parser.rb +61 -0
  135. data/lib/nokogiri/xml/schema.rb +64 -0
  136. data/lib/nokogiri/xml/searchable.rb +231 -0
  137. data/lib/nokogiri/xml/syntax_error.rb +71 -0
  138. data/lib/nokogiri/xml/text.rb +10 -0
  139. data/lib/nokogiri/xml/xpath.rb +11 -0
  140. data/lib/nokogiri/xml/xpath/syntax_error.rb +12 -0
  141. data/lib/nokogiri/xml/xpath_context.rb +17 -0
  142. data/lib/nokogiri/xslt.rb +57 -0
  143. data/lib/nokogiri/xslt/stylesheet.rb +26 -0
  144. data/lib/xsd/xmlparser/nokogiri.rb +103 -0
  145. metadata +482 -0
@@ -0,0 +1,9 @@
1
+ #ifndef NOKOGIRI_XML_ELEMENT_DECL
2
+ #define NOKOGIRI_XML_ELEMENT_DECL
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_element_decl();
7
+
8
+ extern VALUE cNokogiriXmlElementDecl;
9
+ #endif
@@ -0,0 +1,79 @@
1
+ #include <xml_encoding_handler.h>
2
+
3
+ /*
4
+ * call-seq: Nokogiri::EncodingHandler.[](name)
5
+ *
6
+ * Get the encoding handler for +name+
7
+ */
8
+ static VALUE get(VALUE klass, VALUE key)
9
+ {
10
+ xmlCharEncodingHandlerPtr handler;
11
+
12
+ handler = xmlFindCharEncodingHandler(StringValueCStr(key));
13
+ if(handler)
14
+ return Data_Wrap_Struct(klass, NULL, NULL, handler);
15
+
16
+ return Qnil;
17
+ }
18
+
19
+ /*
20
+ * call-seq: Nokogiri::EncodingHandler.delete(name)
21
+ *
22
+ * Delete the encoding alias named +name+
23
+ */
24
+ static VALUE delete(VALUE klass, VALUE name)
25
+ {
26
+ if(xmlDelEncodingAlias(StringValueCStr(name))) return Qnil;
27
+
28
+ return Qtrue;
29
+ }
30
+
31
+ /*
32
+ * call-seq: Nokogiri::EncodingHandler.alias(from, to)
33
+ *
34
+ * Alias encoding handler with name +from+ to name +to+
35
+ */
36
+ static VALUE alias(VALUE klass, VALUE from, VALUE to)
37
+ {
38
+ xmlAddEncodingAlias(StringValueCStr(from), StringValueCStr(to));
39
+
40
+ return to;
41
+ }
42
+
43
+ /*
44
+ * call-seq: Nokogiri::EncodingHandler.clear_aliases!
45
+ *
46
+ * Remove all encoding aliases.
47
+ */
48
+ static VALUE clear_aliases(VALUE klass)
49
+ {
50
+ xmlCleanupEncodingAliases();
51
+
52
+ return klass;
53
+ }
54
+
55
+ /*
56
+ * call-seq: name
57
+ *
58
+ * Get the name of this EncodingHandler
59
+ */
60
+ static VALUE name(VALUE self)
61
+ {
62
+ xmlCharEncodingHandlerPtr handler;
63
+
64
+ Data_Get_Struct(self, xmlCharEncodingHandler, handler);
65
+
66
+ return NOKOGIRI_STR_NEW2(handler->name);
67
+ }
68
+
69
+ void init_xml_encoding_handler()
70
+ {
71
+ VALUE nokogiri = rb_define_module("Nokogiri");
72
+ VALUE klass = rb_define_class_under(nokogiri, "EncodingHandler", rb_cObject);
73
+
74
+ rb_define_singleton_method(klass, "[]", get, 1);
75
+ rb_define_singleton_method(klass, "delete", delete, 1);
76
+ rb_define_singleton_method(klass, "alias", alias, 2);
77
+ rb_define_singleton_method(klass, "clear_aliases!", clear_aliases, 0);
78
+ rb_define_method(klass, "name", name, 0);
79
+ }
@@ -0,0 +1,8 @@
1
+ #ifndef NOKOGIRI_XML_ENCODING_HANDLER
2
+ #define NOKOGIRI_XML_ENCODING_HANDLER
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_encoding_handler();
7
+
8
+ #endif
@@ -0,0 +1,110 @@
1
+ #include <xml_entity_decl.h>
2
+
3
+ /*
4
+ * call-seq:
5
+ * original_content
6
+ *
7
+ * Get the original_content before ref substitution
8
+ */
9
+ static VALUE original_content(VALUE self)
10
+ {
11
+ xmlEntityPtr node;
12
+ Data_Get_Struct(self, xmlEntity, node);
13
+
14
+ if(!node->orig) return Qnil;
15
+
16
+ return NOKOGIRI_STR_NEW2(node->orig);
17
+ }
18
+
19
+ /*
20
+ * call-seq:
21
+ * content
22
+ *
23
+ * Get the content
24
+ */
25
+ static VALUE get_content(VALUE self)
26
+ {
27
+ xmlEntityPtr node;
28
+ Data_Get_Struct(self, xmlEntity, node);
29
+
30
+ if(!node->content) return Qnil;
31
+
32
+ return NOKOGIRI_STR_NEW(node->content, node->length);
33
+ }
34
+
35
+ /*
36
+ * call-seq:
37
+ * entity_type
38
+ *
39
+ * Get the entity type
40
+ */
41
+ static VALUE entity_type(VALUE self)
42
+ {
43
+ xmlEntityPtr node;
44
+ Data_Get_Struct(self, xmlEntity, node);
45
+
46
+ return INT2NUM((int)node->etype);
47
+ }
48
+
49
+ /*
50
+ * call-seq:
51
+ * external_id
52
+ *
53
+ * Get the external identifier for PUBLIC
54
+ */
55
+ static VALUE external_id(VALUE self)
56
+ {
57
+ xmlEntityPtr node;
58
+ Data_Get_Struct(self, xmlEntity, node);
59
+
60
+ if(!node->ExternalID) return Qnil;
61
+
62
+ return NOKOGIRI_STR_NEW2(node->ExternalID);
63
+ }
64
+
65
+ /*
66
+ * call-seq:
67
+ * system_id
68
+ *
69
+ * Get the URI for a SYSTEM or PUBLIC Entity
70
+ */
71
+ static VALUE system_id(VALUE self)
72
+ {
73
+ xmlEntityPtr node;
74
+ Data_Get_Struct(self, xmlEntity, node);
75
+
76
+ if(!node->SystemID) return Qnil;
77
+
78
+ return NOKOGIRI_STR_NEW2(node->SystemID);
79
+ }
80
+
81
+ VALUE cNokogiriXmlEntityDecl;
82
+
83
+ void init_xml_entity_decl()
84
+ {
85
+ VALUE nokogiri = rb_define_module("Nokogiri");
86
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
87
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
88
+ VALUE klass = rb_define_class_under(xml, "EntityDecl", node);
89
+
90
+ cNokogiriXmlEntityDecl = klass;
91
+
92
+ rb_define_method(klass, "original_content", original_content, 0);
93
+ rb_define_method(klass, "content", get_content, 0);
94
+ rb_define_method(klass, "entity_type", entity_type, 0);
95
+ rb_define_method(klass, "external_id", external_id, 0);
96
+ rb_define_method(klass, "system_id", system_id, 0);
97
+
98
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_GENERAL"),
99
+ INT2NUM(XML_INTERNAL_GENERAL_ENTITY));
100
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_GENERAL_PARSED"),
101
+ INT2NUM(XML_EXTERNAL_GENERAL_PARSED_ENTITY));
102
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_GENERAL_UNPARSED"),
103
+ INT2NUM(XML_EXTERNAL_GENERAL_UNPARSED_ENTITY));
104
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_PARAMETER"),
105
+ INT2NUM(XML_INTERNAL_PARAMETER_ENTITY));
106
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("EXTERNAL_PARAMETER"),
107
+ INT2NUM(XML_EXTERNAL_PARAMETER_ENTITY));
108
+ rb_const_set(cNokogiriXmlEntityDecl, rb_intern("INTERNAL_PREDEFINED"),
109
+ INT2NUM(XML_INTERNAL_PREDEFINED_ENTITY));
110
+ }
@@ -0,0 +1,10 @@
1
+ #ifndef NOKOGIRI_XML_ENTITY_DECL
2
+ #define NOKOGIRI_XML_ENTITY_DECL
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_entity_decl();
7
+
8
+ extern VALUE cNokogiriXmlEntityDecl;
9
+ #endif
10
+
@@ -0,0 +1,52 @@
1
+ #include <xml_entity_reference.h>
2
+
3
+ /*
4
+ * call-seq:
5
+ * new(document, content)
6
+ *
7
+ * Create a new EntityReference element on the +document+ with +name+
8
+ */
9
+ static VALUE new(int argc, VALUE *argv, VALUE klass)
10
+ {
11
+ xmlDocPtr xml_doc;
12
+ xmlNodePtr node;
13
+ VALUE document;
14
+ VALUE name;
15
+ VALUE rest;
16
+ VALUE rb_node;
17
+
18
+ rb_scan_args(argc, argv, "2*", &document, &name, &rest);
19
+
20
+ Data_Get_Struct(document, xmlDoc, xml_doc);
21
+
22
+ node = xmlNewReference(
23
+ xml_doc,
24
+ (const xmlChar *)StringValueCStr(name)
25
+ );
26
+
27
+ nokogiri_root_node(node);
28
+
29
+ rb_node = Nokogiri_wrap_xml_node(klass, node);
30
+ rb_obj_call_init(rb_node, argc, argv);
31
+
32
+ if(rb_block_given_p()) rb_yield(rb_node);
33
+
34
+ return rb_node;
35
+ }
36
+
37
+ VALUE cNokogiriXmlEntityReference;
38
+ void init_xml_entity_reference()
39
+ {
40
+ VALUE nokogiri = rb_define_module("Nokogiri");
41
+ VALUE xml = rb_define_module_under(nokogiri, "XML");
42
+ VALUE node = rb_define_class_under(xml, "Node", rb_cObject);
43
+
44
+ /*
45
+ * EntityReference represents an EntityReference node in an xml document.
46
+ */
47
+ VALUE klass = rb_define_class_under(xml, "EntityReference", node);
48
+
49
+ cNokogiriXmlEntityReference = klass;
50
+
51
+ rb_define_singleton_method(klass, "new", new, -1);
52
+ }
@@ -0,0 +1,9 @@
1
+ #ifndef NOKOGIRI_XML_ENTITY_REFERENCE
2
+ #define NOKOGIRI_XML_ENTITY_REFERENCE
3
+
4
+ #include <nokogiri.h>
5
+
6
+ void init_xml_entity_reference();
7
+
8
+ extern VALUE cNokogiriXmlEntityReference;
9
+ #endif
@@ -0,0 +1,61 @@
1
+ #include <xml_io.h>
2
+
3
+ static ID id_read, id_write;
4
+
5
+ VALUE read_check(VALUE *args) {
6
+ return rb_funcall(args[0], id_read, 1, args[1]);
7
+ }
8
+
9
+ VALUE read_failed(void) {
10
+ return Qundef;
11
+ }
12
+
13
+ int io_read_callback(void * ctx, char * buffer, int len) {
14
+ VALUE string, args[2];
15
+ size_t str_len, safe_len;
16
+
17
+ args[0] = (VALUE)ctx;
18
+ args[1] = INT2NUM(len);
19
+
20
+ string = rb_rescue(read_check, (VALUE)args, read_failed, 0);
21
+
22
+ if (NIL_P(string)) return 0;
23
+ if (string == Qundef) return -1;
24
+ if (TYPE(string) != T_STRING) return -1;
25
+
26
+ str_len = (size_t)RSTRING_LEN(string);
27
+ safe_len = str_len > (size_t)len ? (size_t)len : str_len;
28
+ memcpy(buffer, StringValuePtr(string), safe_len);
29
+
30
+ return (int)safe_len;
31
+ }
32
+
33
+ VALUE write_check(VALUE *args) {
34
+ return rb_funcall(args[0], id_write, 1, args[1]);
35
+ }
36
+
37
+ VALUE write_failed(void) {
38
+ return Qundef;
39
+ }
40
+
41
+ int io_write_callback(void * ctx, char * buffer, int len) {
42
+ VALUE args[2], size;
43
+
44
+ args[0] = (VALUE)ctx;
45
+ args[1] = rb_str_new(buffer, (long)len);
46
+
47
+ size = rb_rescue(write_check, (VALUE)args, write_failed, 0);
48
+
49
+ if (size == Qundef) return -1;
50
+
51
+ return NUM2INT(size);
52
+ }
53
+
54
+ int io_close_callback(void * ctx) {
55
+ return 0;
56
+ }
57
+
58
+ void init_nokogiri_io() {
59
+ id_read = rb_intern("read");
60
+ id_write = rb_intern("write");
61
+ }
@@ -0,0 +1,11 @@
1
+ #ifndef NOKOGIRI_XML_IO
2
+ #define NOKOGIRI_XML_IO
3
+
4
+ #include <nokogiri.h>
5
+
6
+ int io_read_callback(void * ctx, char * buffer, int len);
7
+ int io_write_callback(void * ctx, char * buffer, int len);
8
+ int io_close_callback(void * ctx);
9
+ void init_nokogiri_io();
10
+
11
+ #endif
@@ -0,0 +1,112 @@
1
+ #ifndef HAVE_XMLFIRSTELEMENTCHILD
2
+ #include <libxml/tree.h>
3
+ /**
4
+ * xmlFirstElementChild:
5
+ * @parent: the parent node
6
+ *
7
+ * Finds the first child node of that element which is a Element node
8
+ * Note the handling of entities references is different than in
9
+ * the W3C DOM element traversal spec since we don't have back reference
10
+ * from entities content to entities references.
11
+ *
12
+ * Returns the first element child or NULL if not available
13
+ */
14
+ xmlNodePtr
15
+ xmlFirstElementChild(xmlNodePtr parent) {
16
+ xmlNodePtr cur = NULL;
17
+
18
+ if (parent == NULL)
19
+ return(NULL);
20
+ switch (parent->type) {
21
+ case XML_ELEMENT_NODE:
22
+ case XML_ENTITY_NODE:
23
+ case XML_DOCUMENT_NODE:
24
+ case XML_HTML_DOCUMENT_NODE:
25
+ cur = parent->children;
26
+ break;
27
+ default:
28
+ return(NULL);
29
+ }
30
+ while (cur != NULL) {
31
+ if (cur->type == XML_ELEMENT_NODE)
32
+ return(cur);
33
+ cur = cur->next;
34
+ }
35
+ return(NULL);
36
+ }
37
+
38
+ /**
39
+ * xmlNextElementSibling:
40
+ * @node: the current node
41
+ *
42
+ * Finds the first closest next sibling of the node which is an
43
+ * element node.
44
+ * Note the handling of entities references is different than in
45
+ * the W3C DOM element traversal spec since we don't have back reference
46
+ * from entities content to entities references.
47
+ *
48
+ * Returns the next element sibling or NULL if not available
49
+ */
50
+ xmlNodePtr
51
+ xmlNextElementSibling(xmlNodePtr node) {
52
+ if (node == NULL)
53
+ return(NULL);
54
+ switch (node->type) {
55
+ case XML_ELEMENT_NODE:
56
+ case XML_TEXT_NODE:
57
+ case XML_CDATA_SECTION_NODE:
58
+ case XML_ENTITY_REF_NODE:
59
+ case XML_ENTITY_NODE:
60
+ case XML_PI_NODE:
61
+ case XML_COMMENT_NODE:
62
+ case XML_DTD_NODE:
63
+ case XML_XINCLUDE_START:
64
+ case XML_XINCLUDE_END:
65
+ node = node->next;
66
+ break;
67
+ default:
68
+ return(NULL);
69
+ }
70
+ while (node != NULL) {
71
+ if (node->type == XML_ELEMENT_NODE)
72
+ return(node);
73
+ node = node->next;
74
+ }
75
+ return(NULL);
76
+ }
77
+
78
+ /**
79
+ * xmlLastElementChild:
80
+ * @parent: the parent node
81
+ *
82
+ * Finds the last child node of that element which is a Element node
83
+ * Note the handling of entities references is different than in
84
+ * the W3C DOM element traversal spec since we don't have back reference
85
+ * from entities content to entities references.
86
+ *
87
+ * Returns the last element child or NULL if not available
88
+ */
89
+ xmlNodePtr
90
+ xmlLastElementChild(xmlNodePtr parent) {
91
+ xmlNodePtr cur = NULL;
92
+
93
+ if (parent == NULL)
94
+ return(NULL);
95
+ switch (parent->type) {
96
+ case XML_ELEMENT_NODE:
97
+ case XML_ENTITY_NODE:
98
+ case XML_DOCUMENT_NODE:
99
+ case XML_HTML_DOCUMENT_NODE:
100
+ cur = parent->last;
101
+ break;
102
+ default:
103
+ return(NULL);
104
+ }
105
+ while (cur != NULL) {
106
+ if (cur->type == XML_ELEMENT_NODE)
107
+ return(cur);
108
+ cur = cur->prev;
109
+ }
110
+ return(NULL);
111
+ }
112
+ #endif