nokogiri 1.5.3.rc5-x86-mswin32-60 → 1.5.3.rc6-x86-mswin32-60
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.
- data/CHANGELOG.ja.rdoc +2 -1
- data/CHANGELOG.rdoc +2 -1
- data/README.rdoc +1 -1
- data/ROADMAP.md +10 -0
- data/lib/nokogiri/1.8/nokogiri.so +0 -0
- data/lib/nokogiri/1.9/nokogiri.so +0 -0
- data/lib/nokogiri/version.rb +1 -1
- data/lib/nokogiri/xml/sax/document.rb +1 -1
- data/lib/nokogiri/xml/sax/parser.rb +1 -1
- data/test/xml/test_document_encoding.rb +3 -1
- metadata +4 -4
data/CHANGELOG.ja.rdoc
CHANGED
@@ -20,11 +20,12 @@
|
|
20
20
|
* Nokogiri::XML::Attribute が JRuby 上で nil namespace を返す #647
|
21
21
|
* Nokogiri::XML::Node#namespace= メソッドが JRuby 上で prefix
|
22
22
|
が無い namespace を設定できない #648
|
23
|
-
* JRuby 1.9 モードで rake を実行するとデッドロックを引き起こす #571
|
23
|
+
* [JRuby] 1.9 モードで rake を実行するとデッドロックを引き起こす #571
|
24
24
|
* HTML::Document#meta_encoding does not raise exception on docs with
|
25
25
|
malformed content-type. #655
|
26
26
|
* Fixing segfault related to unsupported encodings in in-context
|
27
27
|
parsing on 1.8.7. #643
|
28
|
+
* [JRuby] Concurrency issue in XPath parsing. #682
|
28
29
|
|
29
30
|
|
30
31
|
== 1.5.2 / 2012-03-09
|
data/CHANGELOG.rdoc
CHANGED
@@ -20,11 +20,12 @@
|
|
20
20
|
* Nokogiri::XML::Attribute on JRuby returns a nil namespace #647
|
21
21
|
* Nokogiri::XML::Node#namespace= cannot set a namespace without a
|
22
22
|
prefix on JRuby #648
|
23
|
-
* JRuby 1.9 mode causes dead lock while running rake #571
|
23
|
+
* [JRuby] 1.9 mode causes dead lock while running rake #571
|
24
24
|
* HTML::Document#meta_encoding does not raise exception on docs with
|
25
25
|
malformed content-type. #655
|
26
26
|
* Fixing segfault related to unsupported encodings in in-context
|
27
27
|
parsing on 1.8.7. #643
|
28
|
+
* [JRuby] Concurrency issue in XPath parsing. #682
|
28
29
|
|
29
30
|
|
30
31
|
== 1.5.2 / 2012-03-09
|
data/README.rdoc
CHANGED
@@ -91,7 +91,7 @@ encoded like the source document.
|
|
91
91
|
Some documents declare one particular encoding, but use a different
|
92
92
|
one. So, which encoding should the parser choose?
|
93
93
|
|
94
|
-
Remember that data is just a stream of bytes. Only
|
94
|
+
Remember that data is just a stream of bytes. Only we humans add
|
95
95
|
meaning to that stream. Any particular set of bytes could be valid
|
96
96
|
characters in multiple encodings, so detecting encoding with 100%
|
97
97
|
accuracy is not possible. libxml2 does its best, but it can't be right
|
data/ROADMAP.md
CHANGED
@@ -14,6 +14,15 @@
|
|
14
14
|
* see fairy wing throwdown - SAX parsing is wicked slow.
|
15
15
|
|
16
16
|
|
17
|
+
## Node should not be Enumerable; and should have a better attributes API
|
18
|
+
|
19
|
+
* https://github.com/tenderlove/nokogiri/issues/679
|
20
|
+
Mixing in Enumerable has some unintended consequences; plus we want to improve the attributes API
|
21
|
+
|
22
|
+
* (closed) https://github.com/tenderlove/nokogiri/issues/666
|
23
|
+
Some ideas for a better attributes API?
|
24
|
+
|
25
|
+
|
17
26
|
## improve CSS query parsing
|
18
27
|
|
19
28
|
* https://github.com/tenderlove/nokogiri/issues/528
|
@@ -27,6 +36,7 @@
|
|
27
36
|
* https://github.com/tenderlove/nokogiri/issues/342
|
28
37
|
* https://github.com/tenderlove/nokogiri/issues/628
|
29
38
|
* https://github.com/tenderlove/nokogiri/issues/652
|
39
|
+
* https://github.com/tenderlove/nokogiri/issues/688
|
30
40
|
|
31
41
|
* https://github.com/tenderlove/nokogiri/issues/394
|
32
42
|
nth-of-type is wrong, and possibly other selectors as well
|
Binary file
|
Binary file
|
data/lib/nokogiri/version.rb
CHANGED
@@ -33,7 +33,7 @@ module Nokogiri
|
|
33
33
|
# parser = Nokogiri::XML::SAX::Parser.new(MyDocument.new)
|
34
34
|
#
|
35
35
|
# # Feed the parser some XML
|
36
|
-
# parser.parse(File.
|
36
|
+
# parser.parse(File.open(ARGV[0]))
|
37
37
|
#
|
38
38
|
# Now my document handler will be called when each node starts, and when
|
39
39
|
# then document ends. To see what kinds of events are available, take
|
@@ -25,7 +25,7 @@ module Nokogiri
|
|
25
25
|
# parser = Nokogiri::XML::SAX::Parser.new(MyDoc.new)
|
26
26
|
#
|
27
27
|
# # Send some XML to the parser
|
28
|
-
# parser.parse(File.
|
28
|
+
# parser.parse(File.open(ARGV[0]))
|
29
29
|
#
|
30
30
|
# For more information about SAX parsers, see Nokogiri::XML::SAX. Also
|
31
31
|
# see Nokogiri::XML::SAX::Document for the available events.
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: -
|
4
|
+
hash: -1697014844
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 5
|
9
9
|
- 3
|
10
10
|
- rc
|
11
|
-
-
|
12
|
-
version: 1.5.3.
|
11
|
+
- 6
|
12
|
+
version: 1.5.3.rc6
|
13
13
|
platform: x86-mswin32-60
|
14
14
|
authors:
|
15
15
|
- Aaron Patterson
|
@@ -19,7 +19,7 @@ autorequire:
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2012-
|
22
|
+
date: 2012-05-30 00:00:00 Z
|
23
23
|
dependencies:
|
24
24
|
- !ruby/object:Gem::Dependency
|
25
25
|
name: hoe-bundler
|