libxml-ruby 5.0.1-x64-mingw-ucrt → 5.0.2-x64-mingw-ucrt
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY +4 -0
- data/ext/libxml/ruby_xml_dtd.c +8 -5
- data/ext/libxml/ruby_xml_version.h +3 -3
- data/lib/3.2/libxml_ruby.so +0 -0
- data/lib/3.3/libxml_ruby.so +0 -0
- data/test/test_document.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: 79d7bc579d2e290cce414e539ee240f35b70c3a35fb9eaec8035aad4e7ed5c7f
|
4
|
+
data.tar.gz: c0ca3c3b26cc9f0dc0eddbf5b45808305f2676f9b1b440e09da74a65c77e9702
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 715379b82daad34826ee49bf5122c01fa46bd44a6f8e82e10f37eabedc99747ff44cc487c3851e698f164c258cf7c884efd291f727a447ab7103ba2b0cd4ed3b
|
7
|
+
data.tar.gz: 1a73a86c1245951d5fcd5fe156c6e3cae1e97023ca814ad3ffcb47c3ed3dcb3735d899bd090eacdb44e3cbe4e3f94cd41002089186f8d7dabf8c9e3741be3513
|
data/HISTORY
CHANGED
data/ext/libxml/ruby_xml_dtd.c
CHANGED
@@ -132,8 +132,8 @@ static VALUE rxml_dtd_type(VALUE self)
|
|
132
132
|
*
|
133
133
|
* * The first usage creates a DTD from a string and requires 1 parameter.
|
134
134
|
* * The second usage loads and parses an external DTD and requires 2 parameters.
|
135
|
-
* * The third usage creates a new internal or external DTD and requires
|
136
|
-
*
|
135
|
+
* * The third usage creates a new internal or external DTD and requires 2 parameters and 3 optional parameters.
|
136
|
+
* The DTD is then attached to the specified document if it is not nil.
|
137
137
|
*
|
138
138
|
* Parameters:
|
139
139
|
*
|
@@ -160,7 +160,7 @@ static VALUE rxml_dtd_initialize(int argc, VALUE *argv, VALUE self)
|
|
160
160
|
xmlDocPtr xdoc = NULL;
|
161
161
|
|
162
162
|
VALUE name, doc, internal;
|
163
|
-
rb_scan_args(argc, argv, "
|
163
|
+
rb_scan_args(argc, argv, "23", &external, &system, &name, &doc, &internal);
|
164
164
|
|
165
165
|
Check_Type(external, T_STRING);
|
166
166
|
xpublic = (const xmlChar*) StringValuePtr(external);
|
@@ -168,8 +168,11 @@ static VALUE rxml_dtd_initialize(int argc, VALUE *argv, VALUE self)
|
|
168
168
|
Check_Type(system, T_STRING);
|
169
169
|
xsystem = (const xmlChar*) StringValuePtr(system);
|
170
170
|
|
171
|
-
|
172
|
-
|
171
|
+
if (name != Qnil)
|
172
|
+
{
|
173
|
+
Check_Type(name, T_STRING);
|
174
|
+
xname = (const xmlChar*)StringValuePtr(name);
|
175
|
+
}
|
173
176
|
|
174
177
|
if (doc != Qnil)
|
175
178
|
{
|
@@ -1,9 +1,9 @@
|
|
1
1
|
/* Don't nuke this block! It is used for automatically updating the
|
2
2
|
* versions below. VERSION = string formatting, VERNUM = numbered
|
3
3
|
* version for inline testing: increment both or none at all.*/
|
4
|
-
#define RUBY_LIBXML_VERSION "5.0.
|
5
|
-
#define RUBY_LIBXML_VERNUM
|
4
|
+
#define RUBY_LIBXML_VERSION "5.0.2"
|
5
|
+
#define RUBY_LIBXML_VERNUM 502
|
6
6
|
#define RUBY_LIBXML_VER_MAJ 5
|
7
7
|
#define RUBY_LIBXML_VER_MIN 0
|
8
|
-
#define RUBY_LIBXML_VER_MIC
|
8
|
+
#define RUBY_LIBXML_VER_MIC 2
|
9
9
|
#define RUBY_LIBXML_VER_PATCH 0
|
data/lib/3.2/libxml_ruby.so
CHANGED
Binary file
|
data/lib/3.3/libxml_ruby.so
CHANGED
Binary file
|
data/test/test_document.rb
CHANGED
@@ -82,7 +82,7 @@ class TestDocument < Minitest::Test
|
|
82
82
|
def test_xhtml
|
83
83
|
doc = LibXML::XML::Document.new
|
84
84
|
assert(!doc.xhtml?)
|
85
|
-
LibXML::XML::Dtd.new
|
85
|
+
LibXML::XML::Dtd.new("-//W3C//DTD XHTML 1.0 Transitional//EN", "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd", nil, doc, true)
|
86
86
|
assert(doc.xhtml?)
|
87
87
|
end
|
88
88
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxml-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: x64-mingw-ucrt
|
6
6
|
authors:
|
7
7
|
- Ross Bamform
|
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
- !ruby/object:Gem::Version
|
277
277
|
version: '0'
|
278
278
|
requirements: []
|
279
|
-
rubygems_version: 3.
|
279
|
+
rubygems_version: 3.5.3
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
282
|
summary: Ruby Bindings for LibXML2
|