nokogiri 1.13.3-x86-linux → 1.13.4-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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f11373dc9139c68bce92a7cee2d08a7793285198d0ec0fec2df3fe08a0bd1f07
4
- data.tar.gz: 7263393ffaaceaf341998d8042ee32cd0c3463f41c9ca16a957c43268c411e9e
3
+ metadata.gz: f70bdd27bca7b5e44914511910a114b2c08851a88f536a66a595cfd1a168ea4e
4
+ data.tar.gz: d6090fba900f9bcef56b16636de270135f1f465f05d373accc562620273a2890
5
5
  SHA512:
6
- metadata.gz: c7a80d5f36140fa40533c5ed4e6c52438d27c317591317c42a55bcf532b8660db0942ba196489dac289dfc6334fa4f8e497b38bcf044ac4d13dd2c0050e65586
7
- data.tar.gz: 5719cbeacfd9c6beba77ed7344f1e5be2bc3f23c33b4301e8c62f73dcacb96bf7f911df7222ee5343cca9fd97fc7973625b61cf9c605394052957d0c0d4aaed3
6
+ metadata.gz: d028b824d9f4803cf3322663ab480fb8262b38fd73a69303c02a1434223e8a7f62db7d2afba73f4329a58062366da5a518f8696ced4683f98e5ca79444c23c72
7
+ data.tar.gz: 3385a5f116bbcc22b96a4651f88a23c06b654e86c0d0ec9104d401f130cd5d2e1635e22a77141f296a92d3192a195cf3819c544da547eb18345082bc23965d77
data/dependencies.yml CHANGED
@@ -9,8 +9,8 @@ libxslt:
9
9
  # sha-256 hash provided in https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.35.sha256sum
10
10
 
11
11
  zlib:
12
- version: "1.2.11"
13
- sha256: "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
12
+ version: "1.2.12"
13
+ sha256: "91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9"
14
14
  # SHA-256 hash provided on http://zlib.net/
15
15
 
16
16
  libiconv:
@@ -382,6 +382,7 @@ def iconv_configure_flags
382
382
  ["iconv", "opt"].each do |target|
383
383
  config = preserving_globals { dir_config(target) }
384
384
  next unless config.any? && try_link_iconv("--with-#{target}-* flags") { dir_config(target) }
385
+
385
386
  idirs, ldirs = config.map do |dirs|
386
387
  Array(dirs).flat_map do |dir|
387
388
  dir.split(File::PATH_SEPARATOR)
@@ -715,14 +716,6 @@ else
715
716
  execute("configure",
716
717
  ["env", "CHOST=#{host}", "CFLAGS=#{cflags}", "./configure", "--static", configure_prefix])
717
718
  end
718
-
719
- def compile
720
- if /darwin/.match?(host)
721
- execute("compile", "make AR=#{host}-libtool")
722
- else
723
- super
724
- end
725
- end
726
719
  end
727
720
  end
728
721
  end
Binary file
Binary file
Binary file
Binary file
@@ -24,12 +24,14 @@ module Nokogiri
24
24
  # Get the css selector in +string+ from the cache
25
25
  def [](string)
26
26
  return nil unless cache_on?
27
+
27
28
  @mutex.synchronize { @cache[string] }
28
29
  end
29
30
 
30
31
  # Set the css selector in +string+ in the cache to +value+
31
32
  def []=(string, value)
32
33
  return value unless cache_on?
34
+
33
35
  @mutex.synchronize { @cache[string] = value }
34
36
  end
35
37
 
@@ -125,8 +125,9 @@ module Nokogiri
125
125
  private :set_metadata_element
126
126
 
127
127
  ####
128
- # Serialize Node using +options+. Save options can also be set using a
129
- # block. See SaveOptions.
128
+ # Serialize Node using +options+. Save options can also be set using a block.
129
+ #
130
+ # See also Nokogiri::XML::Node::SaveOptions and Node@Serialization+and+Generating+Output.
130
131
  #
131
132
  # These two statements are equivalent:
132
133
  #
@@ -241,6 +242,7 @@ module Nokogiri
241
242
 
242
243
  def start_element(name, attrs = [])
243
244
  return unless name == "meta"
245
+
244
246
  attr = Hash[attrs]
245
247
  (charset = attr["charset"]) &&
246
248
  (@encoding = charset)
@@ -266,7 +268,7 @@ module Nokogiri
266
268
  end
267
269
 
268
270
  def self.detect_encoding(chunk)
269
- (m = chunk.match(/\A(<\?xml[ \t\r\n]+[^>]*>)/)) &&
271
+ (m = chunk.match(/\A(<\?xml[ \t\r\n][^>]*>)/)) &&
270
272
  (return Nokogiri.XML(m[1]).encoding)
271
273
 
272
274
  if Nokogiri.jruby?
@@ -30,6 +30,7 @@ module Nokogiri
30
30
  def parse_memory(data, encoding = "UTF-8")
31
31
  raise ArgumentError unless data
32
32
  return if data.empty?
33
+
33
34
  ctx = ParserContext.memory(data, encoding)
34
35
  yield ctx if block_given?
35
36
  ctx.parse_with(self)
@@ -51,6 +52,7 @@ module Nokogiri
51
52
  raise ArgumentError unless filename
52
53
  raise Errno::ENOENT unless File.exist?(filename)
53
54
  raise Errno::EISDIR if File.directory?(filename)
55
+
54
56
  ctx = ParserContext.file(filename, encoding)
55
57
  yield ctx if block_given?
56
58
  ctx.parse_with(self)
@@ -39,16 +39,19 @@ module Nokogiri
39
39
  unless string_or_io.respond_to?(:read) || string_or_io.respond_to?(:to_str)
40
40
  raise ArgumentError, "not a string or IO object"
41
41
  end
42
+
42
43
  do_parse(string_or_io, url, encoding, options)
43
44
  end
44
45
 
45
46
  def self.read_io(io, url = nil, encoding = nil, **options)
46
47
  raise ArgumentError, "io object doesn't respond to :read" unless io.respond_to?(:read)
48
+
47
49
  do_parse(io, url, encoding, options)
48
50
  end
49
51
 
50
52
  def self.read_memory(string, url = nil, encoding = nil, **options)
51
53
  raise ArgumentError, "string object doesn't respond to :to_str" unless string.respond_to?(:to_str)
54
+
52
55
  do_parse(string, url, encoding, options)
53
56
  end
54
57
 
@@ -27,6 +27,7 @@ module Nokogiri
27
27
  module Node
28
28
  def inner_html(options = {})
29
29
  return super(options) unless document.is_a?(HTML5::Document)
30
+
30
31
  result = options[:preserve_newline] && HTML5.prepend_newline?(self) ? +"\n" : +""
31
32
  result << children.map { |child| child.to_html(options) }.join
32
33
  result
@@ -34,6 +35,7 @@ module Nokogiri
34
35
 
35
36
  def write_to(io, *options)
36
37
  return super(io, *options) unless document.is_a?(HTML5::Document)
38
+
37
39
  options = options.first.is_a?(Hash) ? options.shift : {}
38
40
  encoding = options[:encoding] || options[0]
39
41
  if Nokogiri.jruby?
@@ -64,6 +66,7 @@ module Nokogiri
64
66
 
65
67
  def fragment(tags)
66
68
  return super(tags) unless document.is_a?(HTML5::Document)
69
+
67
70
  DocumentFragment.new(document, tags, self)
68
71
  end
69
72
 
@@ -76,6 +79,7 @@ module Nokogiri
76
79
  # actually create the xml namespace if it doesn't exist already.
77
80
  def add_child_node_and_reparent_attrs(node)
78
81
  return super(node) unless document.is_a?(HTML5::Document)
82
+
79
83
  # I'm not sure what this method is supposed to do. Reparenting
80
84
  # namespaces is handled by libxml2, including child namespaces which
81
85
  # this method wouldn't handle.
@@ -468,6 +468,7 @@ module Nokogiri
468
468
 
469
469
  def self.prepend_newline?(node)
470
470
  return false unless ["pre", "textarea", "listing"].include?(node.name) && !node.children.empty?
471
+
471
472
  first_child = node.children[0]
472
473
  first_child.text? && first_child.content.start_with?("\n")
473
474
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.13.3"
5
+ VERSION = "1.13.4"
6
6
  end
@@ -191,6 +191,7 @@ module Nokogiri
191
191
  def self.uses_libxml?(requirement = nil)
192
192
  return false unless VersionInfo.instance.libxml2?
193
193
  return true unless requirement
194
+
194
195
  Gem::Requirement.new(requirement).satisfied_by?(VersionInfo.instance.loaded_libxml_version)
195
196
  end
196
197
 
@@ -363,6 +363,7 @@ module Nokogiri
363
363
 
364
364
  @parent.ancestors.each do |a|
365
365
  next if a == doc
366
+
366
367
  @ns = a.namespace_definitions.find { |x| x.prefix == ns.to_s }
367
368
  return self if @ns
368
369
  end
@@ -407,6 +408,7 @@ module Nokogiri
407
408
  if node.namespace.nil?
408
409
  raise ArgumentError, "Namespace #{@ns[:pending]} has not been defined"
409
410
  end
411
+
410
412
  @ns = nil
411
413
  end
412
414
 
@@ -321,6 +321,7 @@ module Nokogiri
321
321
  # the document or +nil+ when there is no DTD.
322
322
  def validate
323
323
  return nil unless internal_subset
324
+
324
325
  internal_subset.validate(self)
325
326
  end
326
327
 
@@ -353,8 +354,10 @@ module Nokogiri
353
354
  # Apply any decorators to +node+
354
355
  def decorate(node)
355
356
  return unless @decorators
357
+
356
358
  @decorators.each do |klass, list|
357
359
  next unless node.is_a?(klass)
360
+
358
361
  list.each { |moodule| node.extend(moodule) }
359
362
  end
360
363
  end
@@ -380,9 +383,11 @@ module Nokogiri
380
383
 
381
384
  def add_child(node_or_tags)
382
385
  raise "A document may not have multiple root nodes." if (root && root.name != "nokogiri_text_wrapper") && !(node_or_tags.comment? || node_or_tags.processing_instruction?)
386
+
383
387
  node_or_tags = coerce(node_or_tags)
384
388
  if node_or_tags.is_a?(XML::NodeSet)
385
389
  raise "A document may not have multiple root nodes." if node_or_tags.size > 1
390
+
386
391
  super(node_or_tags.first)
387
392
  else
388
393
  super
@@ -4,7 +4,8 @@ module Nokogiri
4
4
  module XML
5
5
  class Node
6
6
  ###
7
- # Save options for serializing nodes
7
+ # Save options for serializing nodes.
8
+ # See the method group entitled Node@Serialization+and+Generating+Output for usage.
8
9
  class SaveOptions
9
10
  # Format serialized xml
10
11
  FORMAT = 1
@@ -123,7 +123,7 @@ module Nokogiri
123
123
  # [Yields] Nokogiri::XML::Node
124
124
  # [Returns] Nokogiri::XML::Node
125
125
  #
126
- def initialize(name, document)
126
+ def initialize(name, document) # rubocop:disable Style/RedundantInitialize
127
127
  # This is intentionally empty.
128
128
  end
129
129
 
@@ -163,6 +163,7 @@ module Nokogiri
163
163
  if (first = children.first)
164
164
  # Mimic the error add_child would raise.
165
165
  raise "Document already has a root node" if document? && !(node_or_tags.comment? || node_or_tags.processing_instruction?)
166
+
166
167
  first.__send__(:add_sibling, :previous, node_or_tags)
167
168
  else
168
169
  add_child(node_or_tags)
@@ -1072,6 +1073,7 @@ module Nokogiri
1072
1073
  # nil on XML documents and on unknown tags.
1073
1074
  def description
1074
1075
  return nil if document.xml?
1076
+
1075
1077
  Nokogiri::HTML4::ElementDescription[name]
1076
1078
  end
1077
1079
 
@@ -1119,6 +1121,7 @@ module Nokogiri
1119
1121
 
1120
1122
  while parents.last.respond_to?(:parent)
1121
1123
  break unless (ctx_parent = parents.last.parent)
1124
+
1122
1125
  parents << ctx_parent
1123
1126
  end
1124
1127
 
@@ -1150,6 +1153,7 @@ module Nokogiri
1150
1153
  def ==(other)
1151
1154
  return false unless other
1152
1155
  return false unless other.respond_to?(:pointer_id)
1156
+
1153
1157
  pointer_id == other.pointer_id
1154
1158
  end
1155
1159
 
@@ -1159,14 +1163,16 @@ module Nokogiri
1159
1163
  def <=>(other)
1160
1164
  return nil unless other.is_a?(Nokogiri::XML::Node)
1161
1165
  return nil unless document == other.document
1166
+
1162
1167
  compare(other)
1163
1168
  end
1164
1169
 
1165
1170
  # :section: Serialization and Generating Output
1166
1171
 
1167
1172
  ###
1168
- # Serialize Node using +options+. Save options can also be set using a
1169
- # block. See SaveOptions.
1173
+ # Serialize Node using +options+. Save options can also be set using a block.
1174
+ #
1175
+ # See also Nokogiri::XML::Node::SaveOptions and Node@Serialization+and+Generating+Output.
1170
1176
  #
1171
1177
  # These two statements are equivalent:
1172
1178
  #
@@ -27,6 +27,7 @@ module Nokogiri
27
27
  # Get the first element of the NodeSet.
28
28
  def first(n = nil)
29
29
  return self[0] unless n
30
+
30
31
  list = []
31
32
  [n, length].min.times { |i| list << self[i] }
32
33
  list
@@ -304,6 +305,7 @@ module Nokogiri
304
305
  # the set is empty
305
306
  def pop
306
307
  return nil if length == 0
308
+
307
309
  delete(last)
308
310
  end
309
311
 
@@ -312,6 +314,7 @@ module Nokogiri
312
314
  # +nil+ if the set is empty.
313
315
  def shift
314
316
  return nil if length == 0
317
+
315
318
  delete(first)
316
319
  end
317
320
 
@@ -322,6 +325,7 @@ module Nokogiri
322
325
  def ==(other)
323
326
  return false unless other.is_a?(Nokogiri::XML::NodeSet)
324
327
  return false unless length == other.length
328
+
325
329
  each_with_index do |node, i|
326
330
  return false unless node == other[i]
327
331
  end
@@ -89,6 +89,7 @@ module Nokogiri
89
89
 
90
90
  constants.each do |constant|
91
91
  next if constant.to_sym == :STRICT
92
+
92
93
  class_eval %{
93
94
  def #{constant.downcase}
94
95
  @options |= #{constant}
@@ -3,7 +3,7 @@
3
3
  module Nokogiri
4
4
  module XML
5
5
  class ProcessingInstruction < Node
6
- def initialize(document, name, content)
6
+ def initialize(document, name, content) # rubocop:disable Style/RedundantInitialize
7
7
  end
8
8
  end
9
9
  end
@@ -101,6 +101,7 @@ module Nokogiri
101
101
  raise ArgumentError unless filename
102
102
  raise Errno::ENOENT unless File.exist?(filename)
103
103
  raise Errno::EISDIR if File.directory?(filename)
104
+
104
105
  ctx = ParserContext.file(filename)
105
106
  yield ctx if block_given?
106
107
  ctx.parse_with(self)
@@ -64,6 +64,7 @@ module Nokogiri
64
64
 
65
65
  def location_to_s
66
66
  return nil if nil_or_zero?(line) && nil_or_zero?(column)
67
+
67
68
  "#{line}:#{column}"
68
69
  end
69
70
  end
data/lib/nokogiri/xml.rb CHANGED
@@ -27,6 +27,7 @@ module Nokogiri
27
27
  if string_or_io.respond_to?(:read)
28
28
  return Reader.from_io(string_or_io, url, encoding, options.to_i)
29
29
  end
30
+
30
31
  Reader.from_memory(string_or_io, url, encoding, options.to_i)
31
32
  end
32
33
 
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.13.3
4
+ version: 1.13.4
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Mike Dalessio
@@ -20,7 +20,7 @@ authors:
20
20
  autorequire:
21
21
  bindir: bin
22
22
  cert_chain: []
23
- date: 2022-02-22 00:00:00.000000000 Z
23
+ date: 2022-04-11 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc