nokogiri 1.11.1 → 1.11.2

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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +12 -12
  3. data/LICENSE.md +1 -1
  4. data/README.md +20 -15
  5. data/ext/nokogiri/depend +34 -474
  6. data/ext/nokogiri/extconf.rb +253 -183
  7. data/ext/nokogiri/html_document.c +10 -15
  8. data/ext/nokogiri/html_element_description.c +84 -71
  9. data/ext/nokogiri/html_entity_lookup.c +21 -16
  10. data/ext/nokogiri/html_sax_parser_context.c +66 -65
  11. data/ext/nokogiri/html_sax_push_parser.c +29 -27
  12. data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
  13. data/ext/nokogiri/nokogiri.c +171 -63
  14. data/ext/nokogiri/nokogiri.h +158 -75
  15. data/ext/nokogiri/test_global_handlers.c +3 -4
  16. data/ext/nokogiri/xml_attr.c +15 -15
  17. data/ext/nokogiri/xml_attribute_decl.c +18 -18
  18. data/ext/nokogiri/xml_cdata.c +13 -18
  19. data/ext/nokogiri/xml_comment.c +19 -26
  20. data/ext/nokogiri/xml_document.c +221 -164
  21. data/ext/nokogiri/xml_document_fragment.c +13 -15
  22. data/ext/nokogiri/xml_dtd.c +54 -48
  23. data/ext/nokogiri/xml_element_content.c +30 -27
  24. data/ext/nokogiri/xml_element_decl.c +22 -22
  25. data/ext/nokogiri/xml_encoding_handler.c +17 -11
  26. data/ext/nokogiri/xml_entity_decl.c +32 -30
  27. data/ext/nokogiri/xml_entity_reference.c +16 -18
  28. data/ext/nokogiri/xml_namespace.c +56 -49
  29. data/ext/nokogiri/xml_node.c +338 -286
  30. data/ext/nokogiri/xml_node_set.c +168 -156
  31. data/ext/nokogiri/xml_processing_instruction.c +17 -19
  32. data/ext/nokogiri/xml_reader.c +191 -157
  33. data/ext/nokogiri/xml_relax_ng.c +29 -23
  34. data/ext/nokogiri/xml_sax_parser.c +117 -112
  35. data/ext/nokogiri/xml_sax_parser_context.c +100 -85
  36. data/ext/nokogiri/xml_sax_push_parser.c +34 -27
  37. data/ext/nokogiri/xml_schema.c +48 -42
  38. data/ext/nokogiri/xml_syntax_error.c +21 -23
  39. data/ext/nokogiri/xml_text.c +13 -17
  40. data/ext/nokogiri/xml_xpath_context.c +134 -127
  41. data/ext/nokogiri/xslt_stylesheet.c +157 -157
  42. data/lib/nokogiri.rb +1 -22
  43. data/lib/nokogiri/css/parser.rb +1 -1
  44. data/lib/nokogiri/extension.rb +26 -0
  45. data/lib/nokogiri/html/document_fragment.rb +15 -15
  46. data/lib/nokogiri/version/constant.rb +1 -1
  47. data/lib/nokogiri/version/info.rb +31 -8
  48. data/lib/nokogiri/xml/document.rb +31 -11
  49. data/lib/nokogiri/xml/node.rb +38 -42
  50. data/lib/nokogiri/xml/reader.rb +2 -9
  51. data/lib/nokogiri/xml/xpath.rb +1 -3
  52. data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
  53. data/patches/libxml2/0010-parser.c-shrink-the-input-buffer-when-appropriate.patch +70 -0
  54. metadata +8 -41
  55. data/ext/nokogiri/html_document.h +0 -10
  56. data/ext/nokogiri/html_element_description.h +0 -10
  57. data/ext/nokogiri/html_entity_lookup.h +0 -8
  58. data/ext/nokogiri/html_sax_parser_context.h +0 -11
  59. data/ext/nokogiri/html_sax_push_parser.h +0 -9
  60. data/ext/nokogiri/xml_attr.h +0 -9
  61. data/ext/nokogiri/xml_attribute_decl.h +0 -9
  62. data/ext/nokogiri/xml_cdata.h +0 -9
  63. data/ext/nokogiri/xml_comment.h +0 -9
  64. data/ext/nokogiri/xml_document.h +0 -23
  65. data/ext/nokogiri/xml_document_fragment.h +0 -10
  66. data/ext/nokogiri/xml_dtd.h +0 -10
  67. data/ext/nokogiri/xml_element_content.h +0 -10
  68. data/ext/nokogiri/xml_element_decl.h +0 -9
  69. data/ext/nokogiri/xml_encoding_handler.h +0 -8
  70. data/ext/nokogiri/xml_entity_decl.h +0 -10
  71. data/ext/nokogiri/xml_entity_reference.h +0 -9
  72. data/ext/nokogiri/xml_io.c +0 -63
  73. data/ext/nokogiri/xml_io.h +0 -11
  74. data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
  75. data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
  76. data/ext/nokogiri/xml_namespace.h +0 -14
  77. data/ext/nokogiri/xml_node.h +0 -13
  78. data/ext/nokogiri/xml_node_set.h +0 -12
  79. data/ext/nokogiri/xml_processing_instruction.h +0 -9
  80. data/ext/nokogiri/xml_reader.h +0 -10
  81. data/ext/nokogiri/xml_relax_ng.h +0 -9
  82. data/ext/nokogiri/xml_sax_parser.h +0 -39
  83. data/ext/nokogiri/xml_sax_parser_context.h +0 -10
  84. data/ext/nokogiri/xml_sax_push_parser.h +0 -9
  85. data/ext/nokogiri/xml_schema.h +0 -9
  86. data/ext/nokogiri/xml_syntax_error.h +0 -25
  87. data/ext/nokogiri/xml_text.h +0 -9
  88. data/ext/nokogiri/xml_xpath_context.h +0 -10
  89. data/ext/nokogiri/xslt_stylesheet.h +0 -14
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.1
4
+ version: 1.11.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -17,7 +17,7 @@ authors:
17
17
  autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
- date: 2021-01-06 00:00:00.000000000 Z
20
+ date: 2021-03-11 00:00:00.000000000 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: racc
@@ -81,14 +81,14 @@ dependencies:
81
81
  requirements:
82
82
  - - "~>"
83
83
  - !ruby/object:Gem::Version
84
- version: '1.1'
84
+ version: '1.4'
85
85
  type: :development
86
86
  prerelease: false
87
87
  version_requirements: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - "~>"
90
90
  - !ruby/object:Gem::Version
91
- version: '1.1'
91
+ version: '1.4'
92
92
  - !ruby/object:Gem::Dependency
93
93
  name: minitest
94
94
  requirement: !ruby/object:Gem::Requirement
@@ -228,17 +228,16 @@ extra_rdoc_files:
228
228
  - ext/nokogiri/xml_dtd.c
229
229
  - ext/nokogiri/xml_xpath_context.c
230
230
  - ext/nokogiri/xml_attr.c
231
+ - ext/nokogiri/libxml2_backwards_compat.c
231
232
  - ext/nokogiri/xml_comment.c
232
233
  - ext/nokogiri/nokogiri.c
233
234
  - ext/nokogiri/xml_sax_parser_context.c
234
235
  - ext/nokogiri/xml_node_set.c
235
236
  - ext/nokogiri/xml_reader.c
236
- - ext/nokogiri/xml_libxml2_hacks.c
237
237
  - ext/nokogiri/xml_cdata.c
238
238
  - ext/nokogiri/xml_element_content.c
239
239
  - ext/nokogiri/html_entity_lookup.c
240
240
  - ext/nokogiri/xml_namespace.c
241
- - ext/nokogiri/xml_io.c
242
241
  - ext/nokogiri/xml_document.c
243
242
  - ext/nokogiri/xml_element_decl.c
244
243
  - ext/nokogiri/xml_schema.c
@@ -271,74 +270,40 @@ files:
271
270
  - ext/nokogiri/depend
272
271
  - ext/nokogiri/extconf.rb
273
272
  - ext/nokogiri/html_document.c
274
- - ext/nokogiri/html_document.h
275
273
  - ext/nokogiri/html_element_description.c
276
- - ext/nokogiri/html_element_description.h
277
274
  - ext/nokogiri/html_entity_lookup.c
278
- - ext/nokogiri/html_entity_lookup.h
279
275
  - ext/nokogiri/html_sax_parser_context.c
280
- - ext/nokogiri/html_sax_parser_context.h
281
276
  - ext/nokogiri/html_sax_push_parser.c
282
- - ext/nokogiri/html_sax_push_parser.h
277
+ - ext/nokogiri/libxml2_backwards_compat.c
283
278
  - ext/nokogiri/nokogiri.c
284
279
  - ext/nokogiri/nokogiri.h
285
280
  - ext/nokogiri/test_global_handlers.c
286
281
  - ext/nokogiri/xml_attr.c
287
- - ext/nokogiri/xml_attr.h
288
282
  - ext/nokogiri/xml_attribute_decl.c
289
- - ext/nokogiri/xml_attribute_decl.h
290
283
  - ext/nokogiri/xml_cdata.c
291
- - ext/nokogiri/xml_cdata.h
292
284
  - ext/nokogiri/xml_comment.c
293
- - ext/nokogiri/xml_comment.h
294
285
  - ext/nokogiri/xml_document.c
295
- - ext/nokogiri/xml_document.h
296
286
  - ext/nokogiri/xml_document_fragment.c
297
- - ext/nokogiri/xml_document_fragment.h
298
287
  - ext/nokogiri/xml_dtd.c
299
- - ext/nokogiri/xml_dtd.h
300
288
  - ext/nokogiri/xml_element_content.c
301
- - ext/nokogiri/xml_element_content.h
302
289
  - ext/nokogiri/xml_element_decl.c
303
- - ext/nokogiri/xml_element_decl.h
304
290
  - ext/nokogiri/xml_encoding_handler.c
305
- - ext/nokogiri/xml_encoding_handler.h
306
291
  - ext/nokogiri/xml_entity_decl.c
307
- - ext/nokogiri/xml_entity_decl.h
308
292
  - ext/nokogiri/xml_entity_reference.c
309
- - ext/nokogiri/xml_entity_reference.h
310
- - ext/nokogiri/xml_io.c
311
- - ext/nokogiri/xml_io.h
312
- - ext/nokogiri/xml_libxml2_hacks.c
313
- - ext/nokogiri/xml_libxml2_hacks.h
314
293
  - ext/nokogiri/xml_namespace.c
315
- - ext/nokogiri/xml_namespace.h
316
294
  - ext/nokogiri/xml_node.c
317
- - ext/nokogiri/xml_node.h
318
295
  - ext/nokogiri/xml_node_set.c
319
- - ext/nokogiri/xml_node_set.h
320
296
  - ext/nokogiri/xml_processing_instruction.c
321
- - ext/nokogiri/xml_processing_instruction.h
322
297
  - ext/nokogiri/xml_reader.c
323
- - ext/nokogiri/xml_reader.h
324
298
  - ext/nokogiri/xml_relax_ng.c
325
- - ext/nokogiri/xml_relax_ng.h
326
299
  - ext/nokogiri/xml_sax_parser.c
327
- - ext/nokogiri/xml_sax_parser.h
328
300
  - ext/nokogiri/xml_sax_parser_context.c
329
- - ext/nokogiri/xml_sax_parser_context.h
330
301
  - ext/nokogiri/xml_sax_push_parser.c
331
- - ext/nokogiri/xml_sax_push_parser.h
332
302
  - ext/nokogiri/xml_schema.c
333
- - ext/nokogiri/xml_schema.h
334
303
  - ext/nokogiri/xml_syntax_error.c
335
- - ext/nokogiri/xml_syntax_error.h
336
304
  - ext/nokogiri/xml_text.c
337
- - ext/nokogiri/xml_text.h
338
305
  - ext/nokogiri/xml_xpath_context.c
339
- - ext/nokogiri/xml_xpath_context.h
340
306
  - ext/nokogiri/xslt_stylesheet.c
341
- - ext/nokogiri/xslt_stylesheet.h
342
307
  - lib/nokogiri.rb
343
308
  - lib/nokogiri/css.rb
344
309
  - lib/nokogiri/css/node.rb
@@ -350,6 +315,7 @@ files:
350
315
  - lib/nokogiri/css/tokenizer.rex
351
316
  - lib/nokogiri/css/xpath_visitor.rb
352
317
  - lib/nokogiri/decorators/slop.rb
318
+ - lib/nokogiri/extension.rb
353
319
  - lib/nokogiri/html.rb
354
320
  - lib/nokogiri/html/builder.rb
355
321
  - lib/nokogiri/html/document.rb
@@ -414,6 +380,7 @@ files:
414
380
  - patches/libxml2/0007-use-new-htmlParseLookupCommentEnd-to-find-comment-en.patch
415
381
  - patches/libxml2/0008-use-glibc-strlen.patch
416
382
  - patches/libxml2/0009-avoid-isnan-isinf.patch
383
+ - patches/libxml2/0010-parser.c-shrink-the-input-buffer-when-appropriate.patch
417
384
  - ports/archives/libxml2-2.9.10.tar.gz
418
385
  - ports/archives/libxslt-1.1.34.tar.gz
419
386
  homepage: https://nokogiri.org
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_DOCUMENT
2
- #define NOKOGIRI_HTML_DOCUMENT
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_document();
7
-
8
- extern VALUE cNokogiriHtmlDocument ;
9
-
10
- #endif
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_ELEMENT_DESCRIPTION
2
- #define NOKOGIRI_HTML_ELEMENT_DESCRIPTION
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_element_description();
7
-
8
- extern VALUE cNokogiriHtmlElementDescription ;
9
-
10
- #endif
@@ -1,8 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_ENTITY_LOOKUP
2
- #define NOKOGIRI_HTML_ENTITY_LOOKUP
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_entity_lookup();
7
-
8
- #endif
@@ -1,11 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_SAX_PARSER_CONTEXT
2
- #define NOKOGIRI_HTML_SAX_PARSER_CONTEXT
3
-
4
- #include <nokogiri.h>
5
-
6
- extern VALUE cNokogiriHtmlSaxParserContext;
7
-
8
- void init_html_sax_parser_context();
9
-
10
- #endif
11
-
@@ -1,9 +0,0 @@
1
- #ifndef NOKOGIRI_HTML_SAX_PUSH_PARSER
2
- #define NOKOGIRI_HTML_SAX_PUSH_PARSER
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_html_sax_push_parser();
7
-
8
- extern VALUE cNokogiriHtmlSaxPushParser ;
9
- #endif
@@ -1,9 +0,0 @@
1
- #ifndef NOKOGIRI_XML_ATTR
2
- #define NOKOGIRI_XML_ATTR
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_xml_attr();
7
-
8
- extern VALUE cNokogiriXmlAttr;
9
- #endif
@@ -1,9 +0,0 @@
1
- #ifndef NOKOGIRI_XML_ATTRIBUTE_DECL
2
- #define NOKOGIRI_XML_ATTRIBUTE_DECL
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_xml_attribute_decl();
7
-
8
- extern VALUE cNokogiriXmlAttributeDecl;
9
- #endif
@@ -1,9 +0,0 @@
1
- #ifndef NOKOGIRI_XML_CDATA
2
- #define NOKOGIRI_XML_CDATA
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_xml_cdata();
7
-
8
- extern VALUE cNokogiriXmlCData;
9
- #endif
@@ -1,9 +0,0 @@
1
- #ifndef NOKOGIRI_XML_COMMENT
2
- #define NOKOGIRI_XML_COMMENT
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_xml_comment();
7
-
8
- extern VALUE cNokogiriXmlComment;
9
- #endif
@@ -1,23 +0,0 @@
1
- #ifndef NOKOGIRI_XML_DOCUMENT
2
- #define NOKOGIRI_XML_DOCUMENT
3
-
4
- #include <nokogiri.h>
5
-
6
- struct _nokogiriTuple {
7
- VALUE doc;
8
- st_table *unlinkedNodes;
9
- VALUE node_cache;
10
- };
11
- typedef struct _nokogiriTuple nokogiriTuple;
12
- typedef nokogiriTuple * nokogiriTuplePtr;
13
-
14
- void init_xml_document();
15
- VALUE Nokogiri_wrap_xml_document(VALUE klass, xmlDocPtr doc);
16
-
17
- #define DOC_RUBY_OBJECT_TEST(x) ((nokogiriTuplePtr)(x->_private))
18
- #define DOC_RUBY_OBJECT(x) (((nokogiriTuplePtr)(x->_private))->doc)
19
- #define DOC_UNLINKED_NODE_HASH(x) (((nokogiriTuplePtr)(x->_private))->unlinkedNodes)
20
- #define DOC_NODE_CACHE(x) (((nokogiriTuplePtr)(x->_private))->node_cache)
21
-
22
- extern VALUE cNokogiriXmlDocument ;
23
- #endif
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_XML_DOCUMENT_FRAGMENT
2
- #define NOKOGIRI_XML_DOCUMENT_FRAGMENT
3
-
4
- #include <nokogiri.h>
5
-
6
- void init_xml_document_fragment();
7
-
8
- extern VALUE cNokogiriXmlDocumentFragment;
9
- #endif
10
-
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_XML_DTD
2
- #define NOKOGIRI_XML_DTD
3
-
4
- #include <nokogiri.h>
5
-
6
- extern VALUE cNokogiriXmlDtd;
7
-
8
- void init_xml_dtd();
9
-
10
- #endif
@@ -1,10 +0,0 @@
1
- #ifndef NOKOGIRI_XML_ELEMENT_CONTENT
2
- #define NOKOGIRI_XML_ELEMENT_CONTENT
3
-
4
- #include <nokogiri.h>
5
-
6
-
7
- VALUE Nokogiri_wrap_element_content(VALUE doc, xmlElementContentPtr element);
8
- void init_xml_element_content();
9
-
10
- #endif
@@ -1,9 +0,0 @@
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
@@ -1,8 +0,0 @@
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
@@ -1,10 +0,0 @@
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
-
@@ -1,9 +0,0 @@
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
@@ -1,63 +0,0 @@
1
- #include <xml_io.h>
2
-
3
- static ID id_read, id_write;
4
-
5
- VALUE read_check(VALUE val) {
6
- VALUE *args = (VALUE *)val;
7
- return rb_funcall(args[0], id_read, 1, args[1]);
8
- }
9
-
10
- VALUE read_failed(VALUE arg, VALUE exc) {
11
- return Qundef;
12
- }
13
-
14
- int io_read_callback(void * ctx, char * buffer, int len) {
15
- VALUE string, args[2];
16
- size_t str_len, safe_len;
17
-
18
- args[0] = (VALUE)ctx;
19
- args[1] = INT2NUM(len);
20
-
21
- string = rb_rescue(read_check, (VALUE)args, read_failed, 0);
22
-
23
- if (NIL_P(string)) return 0;
24
- if (string == Qundef) return -1;
25
- if (TYPE(string) != T_STRING) return -1;
26
-
27
- str_len = (size_t)RSTRING_LEN(string);
28
- safe_len = str_len > (size_t)len ? (size_t)len : str_len;
29
- memcpy(buffer, StringValuePtr(string), safe_len);
30
-
31
- return (int)safe_len;
32
- }
33
-
34
- VALUE write_check(VALUE val) {
35
- VALUE *args = (VALUE *)val;
36
- return rb_funcall(args[0], id_write, 1, args[1]);
37
- }
38
-
39
- VALUE write_failed(VALUE arg, VALUE exc) {
40
- return Qundef;
41
- }
42
-
43
- int io_write_callback(void * ctx, char * buffer, int len) {
44
- VALUE args[2], size;
45
-
46
- args[0] = (VALUE)ctx;
47
- args[1] = rb_str_new(buffer, (long)len);
48
-
49
- size = rb_rescue(write_check, (VALUE)args, write_failed, 0);
50
-
51
- if (size == Qundef) return -1;
52
-
53
- return NUM2INT(size);
54
- }
55
-
56
- int io_close_callback(void * ctx) {
57
- return 0;
58
- }
59
-
60
- void init_nokogiri_io() {
61
- id_read = rb_intern("read");
62
- id_write = rb_intern("write");
63
- }
@@ -1,11 +0,0 @@
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
@@ -1,112 +0,0 @@
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