nokogiri 1.11.1-x64-mingw32 → 1.11.2-x64-mingw32
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.
- checksums.yaml +4 -4
- data/LICENSE-DEPENDENCIES.md +12 -12
- data/LICENSE.md +1 -1
- data/README.md +20 -15
- data/ext/nokogiri/depend +34 -474
- data/ext/nokogiri/extconf.rb +253 -183
- data/ext/nokogiri/html_document.c +10 -15
- data/ext/nokogiri/html_element_description.c +84 -71
- data/ext/nokogiri/html_entity_lookup.c +21 -16
- data/ext/nokogiri/html_sax_parser_context.c +66 -65
- data/ext/nokogiri/html_sax_push_parser.c +29 -27
- data/ext/nokogiri/libxml2_backwards_compat.c +121 -0
- data/ext/nokogiri/nokogiri.c +171 -63
- data/ext/nokogiri/nokogiri.h +158 -75
- data/ext/nokogiri/test_global_handlers.c +3 -4
- data/ext/nokogiri/xml_attr.c +15 -15
- data/ext/nokogiri/xml_attribute_decl.c +18 -18
- data/ext/nokogiri/xml_cdata.c +13 -18
- data/ext/nokogiri/xml_comment.c +19 -26
- data/ext/nokogiri/xml_document.c +221 -164
- data/ext/nokogiri/xml_document_fragment.c +13 -15
- data/ext/nokogiri/xml_dtd.c +54 -48
- data/ext/nokogiri/xml_element_content.c +30 -27
- data/ext/nokogiri/xml_element_decl.c +22 -22
- data/ext/nokogiri/xml_encoding_handler.c +17 -11
- data/ext/nokogiri/xml_entity_decl.c +32 -30
- data/ext/nokogiri/xml_entity_reference.c +16 -18
- data/ext/nokogiri/xml_namespace.c +56 -49
- data/ext/nokogiri/xml_node.c +338 -286
- data/ext/nokogiri/xml_node_set.c +168 -156
- data/ext/nokogiri/xml_processing_instruction.c +17 -19
- data/ext/nokogiri/xml_reader.c +191 -157
- data/ext/nokogiri/xml_relax_ng.c +29 -23
- data/ext/nokogiri/xml_sax_parser.c +117 -112
- data/ext/nokogiri/xml_sax_parser_context.c +100 -85
- data/ext/nokogiri/xml_sax_push_parser.c +34 -27
- data/ext/nokogiri/xml_schema.c +48 -42
- data/ext/nokogiri/xml_syntax_error.c +21 -23
- data/ext/nokogiri/xml_text.c +13 -17
- data/ext/nokogiri/xml_xpath_context.c +134 -127
- data/ext/nokogiri/xslt_stylesheet.c +157 -157
- data/lib/nokogiri.rb +1 -22
- data/lib/nokogiri/2.5/nokogiri.so +0 -0
- data/lib/nokogiri/2.6/nokogiri.so +0 -0
- data/lib/nokogiri/2.7/nokogiri.so +0 -0
- data/lib/nokogiri/3.0/nokogiri.so +0 -0
- data/lib/nokogiri/css/parser.rb +1 -1
- data/lib/nokogiri/extension.rb +26 -0
- data/lib/nokogiri/html/document_fragment.rb +15 -15
- data/lib/nokogiri/version/constant.rb +1 -1
- data/lib/nokogiri/version/info.rb +31 -8
- data/lib/nokogiri/xml/document.rb +31 -11
- data/lib/nokogiri/xml/node.rb +38 -42
- data/lib/nokogiri/xml/reader.rb +2 -9
- data/lib/nokogiri/xml/xpath.rb +1 -3
- data/lib/nokogiri/xml/xpath/syntax_error.rb +1 -1
- metadata +7 -41
- data/ext/nokogiri/html_document.h +0 -10
- data/ext/nokogiri/html_element_description.h +0 -10
- data/ext/nokogiri/html_entity_lookup.h +0 -8
- data/ext/nokogiri/html_sax_parser_context.h +0 -11
- data/ext/nokogiri/html_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_attr.h +0 -9
- data/ext/nokogiri/xml_attribute_decl.h +0 -9
- data/ext/nokogiri/xml_cdata.h +0 -9
- data/ext/nokogiri/xml_comment.h +0 -9
- data/ext/nokogiri/xml_document.h +0 -23
- data/ext/nokogiri/xml_document_fragment.h +0 -10
- data/ext/nokogiri/xml_dtd.h +0 -10
- data/ext/nokogiri/xml_element_content.h +0 -10
- data/ext/nokogiri/xml_element_decl.h +0 -9
- data/ext/nokogiri/xml_encoding_handler.h +0 -8
- data/ext/nokogiri/xml_entity_decl.h +0 -10
- data/ext/nokogiri/xml_entity_reference.h +0 -9
- data/ext/nokogiri/xml_io.c +0 -63
- data/ext/nokogiri/xml_io.h +0 -11
- data/ext/nokogiri/xml_libxml2_hacks.c +0 -112
- data/ext/nokogiri/xml_libxml2_hacks.h +0 -12
- data/ext/nokogiri/xml_namespace.h +0 -14
- data/ext/nokogiri/xml_node.h +0 -13
- data/ext/nokogiri/xml_node_set.h +0 -12
- data/ext/nokogiri/xml_processing_instruction.h +0 -9
- data/ext/nokogiri/xml_reader.h +0 -10
- data/ext/nokogiri/xml_relax_ng.h +0 -9
- data/ext/nokogiri/xml_sax_parser.h +0 -39
- data/ext/nokogiri/xml_sax_parser_context.h +0 -10
- data/ext/nokogiri/xml_sax_push_parser.h +0 -9
- data/ext/nokogiri/xml_schema.h +0 -9
- data/ext/nokogiri/xml_syntax_error.h +0 -25
- data/ext/nokogiri/xml_text.h +0 -9
- data/ext/nokogiri/xml_xpath_context.h +0 -10
- data/ext/nokogiri/xslt_stylesheet.h +0 -14
data/ext/nokogiri/xml_attr.h
DELETED
data/ext/nokogiri/xml_cdata.h
DELETED
data/ext/nokogiri/xml_comment.h
DELETED
data/ext/nokogiri/xml_document.h
DELETED
@@ -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
|
data/ext/nokogiri/xml_dtd.h
DELETED
data/ext/nokogiri/xml_io.c
DELETED
@@ -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
|
-
}
|
data/ext/nokogiri/xml_io.h
DELETED
@@ -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
|
@@ -1,12 +0,0 @@
|
|
1
|
-
#ifndef HAVE_XMLFIRSTELEMENTCHILD
|
2
|
-
|
3
|
-
#ifndef XML_LIBXML2_HACKS
|
4
|
-
#define XML_LIBXML2_HACKS
|
5
|
-
|
6
|
-
xmlNodePtr xmlFirstElementChild(xmlNodePtr parent);
|
7
|
-
xmlNodePtr xmlNextElementSibling(xmlNodePtr node);
|
8
|
-
xmlNodePtr xmlLastElementChild(xmlNodePtr parent);
|
9
|
-
|
10
|
-
#endif
|
11
|
-
|
12
|
-
#endif
|
@@ -1,14 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_XML_NAMESPACE
|
2
|
-
#define NOKOGIRI_XML_NAMESPACE
|
3
|
-
|
4
|
-
#include <nokogiri.h>
|
5
|
-
|
6
|
-
void init_xml_namespace();
|
7
|
-
|
8
|
-
extern VALUE cNokogiriXmlNamespace ;
|
9
|
-
|
10
|
-
VALUE Nokogiri_wrap_xml_namespace(xmlDocPtr doc, xmlNsPtr node);
|
11
|
-
|
12
|
-
#define NOKOGIRI_NAMESPACE_EH(node) ((node)->type == XML_NAMESPACE_DECL)
|
13
|
-
|
14
|
-
#endif
|
data/ext/nokogiri/xml_node.h
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_XML_NODE
|
2
|
-
#define NOKOGIRI_XML_NODE
|
3
|
-
|
4
|
-
#include <nokogiri.h>
|
5
|
-
|
6
|
-
void init_xml_node();
|
7
|
-
|
8
|
-
extern VALUE cNokogiriXmlNode ;
|
9
|
-
extern VALUE cNokogiriXmlElement ;
|
10
|
-
|
11
|
-
VALUE Nokogiri_wrap_xml_node(VALUE klass, xmlNodePtr node) ;
|
12
|
-
void Nokogiri_xml_node_properties(xmlNodePtr node, VALUE attr_hash) ;
|
13
|
-
#endif
|
data/ext/nokogiri/xml_node_set.h
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
#ifndef NOKOGIRI_XML_NODE_SET
|
2
|
-
#define NOKOGIRI_XML_NODE_SET
|
3
|
-
|
4
|
-
#include <nokogiri.h>
|
5
|
-
void init_xml_node_set();
|
6
|
-
|
7
|
-
extern VALUE cNokogiriXmlNodeSet ;
|
8
|
-
VALUE Nokogiri_wrap_xml_node_set(xmlNodeSetPtr node_set, VALUE document) ;
|
9
|
-
VALUE Nokogiri_wrap_xml_node_set_node(xmlNodePtr node, VALUE node_set) ;
|
10
|
-
VALUE Nokogiri_wrap_xml_node_set_namespace(xmlNsPtr node, VALUE node_set) ;
|
11
|
-
|
12
|
-
#endif
|