nokogiri 1.4.3-java → 1.4.3.1-java
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.
- data/Manifest.txt +2 -0
- data/ext/nokogiri/depend +32 -0
- data/lib/nokogiri/version.rb +1 -1
- data/lib/nokogiri/version_warning.rb +14 -0
- metadata +6 -3
data/Manifest.txt
CHANGED
|
@@ -7,6 +7,7 @@ README.rdoc
|
|
|
7
7
|
Rakefile
|
|
8
8
|
bin/nokogiri
|
|
9
9
|
deps.rip
|
|
10
|
+
ext/nokogiri/depend
|
|
10
11
|
ext/nokogiri/extconf.rb
|
|
11
12
|
ext/nokogiri/html_document.c
|
|
12
13
|
ext/nokogiri/html_document.h
|
|
@@ -159,6 +160,7 @@ lib/nokogiri/html/sax/parser.rb
|
|
|
159
160
|
lib/nokogiri/html/sax/parser_context.rb
|
|
160
161
|
lib/nokogiri/syntax_error.rb
|
|
161
162
|
lib/nokogiri/version.rb
|
|
163
|
+
lib/nokogiri/version_warning.rb
|
|
162
164
|
lib/nokogiri/xml.rb
|
|
163
165
|
lib/nokogiri/xml/attr.rb
|
|
164
166
|
lib/nokogiri/xml/attribute_decl.rb
|
data/ext/nokogiri/depend
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
html_document.o: html_document.c
|
|
2
|
+
html_element_description.o: html_element_description.c
|
|
3
|
+
html_entity_lookup.o: html_entity_lookup.c
|
|
4
|
+
html_sax_parser_context.o: html_sax_parser_context.c
|
|
5
|
+
nokogiri.o: nokogiri.c
|
|
6
|
+
xml_attr.o: xml_attr.c
|
|
7
|
+
xml_attribute_decl.o: xml_attribute_decl.c
|
|
8
|
+
xml_cdata.o: xml_cdata.c
|
|
9
|
+
xml_comment.o: xml_comment.c
|
|
10
|
+
xml_document.o: xml_document.c
|
|
11
|
+
xml_document_fragment.o: xml_document_fragment.c
|
|
12
|
+
xml_dtd.o: xml_dtd.c
|
|
13
|
+
xml_element_content.o: xml_element_content.c
|
|
14
|
+
xml_element_decl.o: xml_element_decl.c
|
|
15
|
+
xml_encoding_handler.o: xml_encoding_handler.c
|
|
16
|
+
xml_entity_decl.o: xml_entity_decl.c
|
|
17
|
+
xml_entity_reference.o: xml_entity_reference.c
|
|
18
|
+
xml_io.o: xml_io.c
|
|
19
|
+
xml_namespace.o: xml_namespace.c
|
|
20
|
+
xml_node.o: xml_node.c
|
|
21
|
+
xml_node_set.o: xml_node_set.c
|
|
22
|
+
xml_processing_instruction.o: xml_processing_instruction.c
|
|
23
|
+
xml_reader.o: xml_reader.c
|
|
24
|
+
xml_relax_ng.o: xml_relax_ng.c
|
|
25
|
+
xml_sax_parser.o: xml_sax_parser.c
|
|
26
|
+
xml_sax_parser_context.o: xml_sax_parser_context.c
|
|
27
|
+
xml_sax_push_parser.o: xml_sax_push_parser.c
|
|
28
|
+
xml_schema.o: xml_schema.c
|
|
29
|
+
xml_syntax_error.o: xml_syntax_error.c
|
|
30
|
+
xml_text.o: xml_text.c
|
|
31
|
+
xml_xpath_context.o: xml_xpath_context.c
|
|
32
|
+
xslt_stylesheet.o: xslt_stylesheet.c
|
data/lib/nokogiri/version.rb
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
module Nokogiri
|
|
2
|
+
if self.is_2_6_16?
|
|
3
|
+
VERSION_INFO['warnings'] << "libxml 2.6.16 is old and buggy."
|
|
4
|
+
if !defined?(I_KNOW_I_AM_USING_AN_OLD_AND_BUGGY_VERSION_OF_LIBXML2)
|
|
5
|
+
warn <<-eom
|
|
6
|
+
HI. You're using libxml2 version 2.6.16 which is over 4 years old and has
|
|
7
|
+
plenty of bugs. We suggest that for maximum HTML/XML parsing pleasure, you
|
|
8
|
+
upgrade your version of libxml2 and re-install nokogiri. If you like using
|
|
9
|
+
libxml2 version 2.6.16, but don't like this warning, please define the constant
|
|
10
|
+
I_KNOW_I_AM_USING_AN_OLD_AND_BUGGY_VERSION_OF_LIBXML2 before requring nokogiri.
|
|
11
|
+
eom
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nokogiri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 113
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 4
|
|
9
9
|
- 3
|
|
10
|
-
|
|
10
|
+
- 1
|
|
11
|
+
version: 1.4.3.1
|
|
11
12
|
platform: java
|
|
12
13
|
authors:
|
|
13
14
|
- Aaron Patterson
|
|
@@ -16,7 +17,7 @@ autorequire:
|
|
|
16
17
|
bindir: bin
|
|
17
18
|
cert_chain: []
|
|
18
19
|
|
|
19
|
-
date: 2010-07-
|
|
20
|
+
date: 2010-07-29 00:00:00 -07:00
|
|
20
21
|
default_executable: nokogiri
|
|
21
22
|
dependencies:
|
|
22
23
|
- !ruby/object:Gem::Dependency
|
|
@@ -185,6 +186,7 @@ files:
|
|
|
185
186
|
- Rakefile
|
|
186
187
|
- bin/nokogiri
|
|
187
188
|
- deps.rip
|
|
189
|
+
- ext/nokogiri/depend
|
|
188
190
|
- ext/nokogiri/extconf.rb
|
|
189
191
|
- ext/nokogiri/html_document.c
|
|
190
192
|
- ext/nokogiri/html_document.h
|
|
@@ -337,6 +339,7 @@ files:
|
|
|
337
339
|
- lib/nokogiri/html/sax/parser_context.rb
|
|
338
340
|
- lib/nokogiri/syntax_error.rb
|
|
339
341
|
- lib/nokogiri/version.rb
|
|
342
|
+
- lib/nokogiri/version_warning.rb
|
|
340
343
|
- lib/nokogiri/xml.rb
|
|
341
344
|
- lib/nokogiri/xml/attr.rb
|
|
342
345
|
- lib/nokogiri/xml/attribute_decl.rb
|