nokogiri 1.11.5-x86-linux → 1.11.6-x86-linux
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.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/ext/nokogiri/xml_node.c +16 -8
- 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/version/constant.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c844f9cc527b5b8cc38b7e22a061aa4bc036e5f0f7fefe4d4c0b9c4c009e8810
|
4
|
+
data.tar.gz: 7981bd3438a30e8ad576202d30f18acb6678d159f3207d28a82d838a18c53e60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ede9ebceeec95fde6f6443d3f0decbf3d1a61683cb94d0ca4ee2c567957d7b26bd9578f0cb9fe642cd3a3f18d8acb3ca1b0ab8d444a486485998bdc6663be6
|
7
|
+
data.tar.gz: 7251a765b430864d5f7d5fe10823896bc7e7a0c98cc355153e3ed6ac6d59fb753b18e93c3f11b0e4bc07f47cf376f8f70f39367281c9136c22ad84bd12caa8f5
|
data/ext/nokogiri/xml_node.c
CHANGED
@@ -1292,17 +1292,25 @@ get_name(VALUE self)
|
|
1292
1292
|
* Returns the path associated with this Node
|
1293
1293
|
*/
|
1294
1294
|
static VALUE
|
1295
|
-
|
1295
|
+
noko_xml_node_path(VALUE rb_node)
|
1296
1296
|
{
|
1297
|
-
xmlNodePtr
|
1298
|
-
xmlChar *
|
1297
|
+
xmlNodePtr c_node;
|
1298
|
+
xmlChar *c_path ;
|
1299
1299
|
VALUE rval;
|
1300
1300
|
|
1301
|
-
Data_Get_Struct(
|
1301
|
+
Data_Get_Struct(rb_node, xmlNode, c_node);
|
1302
|
+
|
1303
|
+
c_path = xmlGetNodePath(c_node);
|
1304
|
+
if (c_path == NULL) {
|
1305
|
+
// see https://github.com/sparklemotion/nokogiri/issues/2250
|
1306
|
+
// this behavior is clearly undesirable, but is what libxml <= 2.9.10 returned, and so we
|
1307
|
+
// do this for now to preserve the behavior across libxml2 versions.
|
1308
|
+
rval = NOKOGIRI_STR_NEW2("?");
|
1309
|
+
} else {
|
1310
|
+
rval = NOKOGIRI_STR_NEW2(c_path);
|
1311
|
+
xmlFree(c_path);
|
1312
|
+
}
|
1302
1313
|
|
1303
|
-
path = xmlGetNodePath(node);
|
1304
|
-
rval = NOKOGIRI_STR_NEW2(path);
|
1305
|
-
xmlFree(path);
|
1306
1314
|
return rval ;
|
1307
1315
|
}
|
1308
1316
|
|
@@ -1779,7 +1787,7 @@ noko_init_xml_node()
|
|
1779
1787
|
rb_define_method(cNokogiriXmlNode, "next_element", next_element, 0);
|
1780
1788
|
rb_define_method(cNokogiriXmlNode, "previous_element", previous_element, 0);
|
1781
1789
|
rb_define_method(cNokogiriXmlNode, "node_type", node_type, 0);
|
1782
|
-
rb_define_method(cNokogiriXmlNode, "path",
|
1790
|
+
rb_define_method(cNokogiriXmlNode, "path", noko_xml_node_path, 0);
|
1783
1791
|
rb_define_method(cNokogiriXmlNode, "key?", key_eh, 1);
|
1784
1792
|
rb_define_method(cNokogiriXmlNode, "namespaced_key?", namespaced_key_eh, 2);
|
1785
1793
|
rb_define_method(cNokogiriXmlNode, "blank?", blank_eh, 0);
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.
|
4
|
+
version: 1.11.6
|
5
5
|
platform: x86-linux
|
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-05-
|
20
|
+
date: 2021-05-26 00:00:00.000000000 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: racc
|