vtd_xml 0.0.3-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +23 -0
- data/LICENSE.txt +20 -0
- data/README.md +29 -0
- data/Rakefile +20 -0
- data/bundle/bundler/setup.rb +10 -0
- data/bundle/jruby/1.9/bin/convert_to_should_syntax +23 -0
- data/bundle/jruby/1.9/bin/nokogiri +23 -0
- data/bundle/jruby/1.9/bin/rake +23 -0
- data/bundle/jruby/1.9/build_info/mini_portile-0.5.2.info +1 -0
- data/bundle/jruby/1.9/build_info/nokogiri-1.6.1-java.info +1 -0
- data/bundle/jruby/1.9/build_info/rake-10.1.1.info +1 -0
- data/bundle/jruby/1.9/build_info/shoulda-context-1.1.6.info +1 -0
- data/bundle/jruby/1.9/cache/mini_portile-0.5.2.gem +0 -0
- data/bundle/jruby/1.9/cache/nokogiri-1.6.1-java.gem +0 -0
- data/bundle/jruby/1.9/cache/rake-10.1.1.gem +0 -0
- data/bundle/jruby/1.9/cache/shoulda-context-1.1.6.gem +0 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/History.txt +65 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/LICENSE.txt +20 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/README.rdoc +169 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/Rakefile +44 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/examples/Rakefile +55 -0
- data/bundle/jruby/1.9/gems/mini_portile-0.5.2/lib/mini_portile.rb +404 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/CHANGELOG.ja.rdoc +828 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/CHANGELOG.rdoc +835 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/C_CODING_STYLE.rdoc +33 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Gemfile +21 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Manifest.txt +315 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/README.ja.rdoc +106 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/README.rdoc +175 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ROADMAP.md +90 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Rakefile +248 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/STANDARD_RESPONSES.md +47 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Y_U_NO_GEMSPEC.md +155 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/bin/nokogiri +78 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/build_all +105 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/dependencies.yml +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/EncodingHandler.java +124 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlDocument.java +189 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlElementDescription.java +145 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlSaxParserContext.java +259 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/NokogiriService.java +605 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlAttr.java +190 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlCdata.java +84 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlComment.java +95 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDocument.java +598 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDocumentFragment.java +210 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDtd.java +480 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElement.java +88 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElementContent.java +382 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElementDecl.java +152 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlEntityDecl.java +162 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlEntityReference.java +101 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNamespace.java +216 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNode.java +1637 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNodeSet.java +270 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlProcessingInstruction.java +99 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlReader.java +532 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlRelaxng.java +144 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSaxParserContext.java +356 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSaxPushParser.java +232 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSchema.java +324 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSyntaxError.java +136 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlText.java +107 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlXpathContext.java +203 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XsltStylesheet.java +360 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ClosedStreamException.java +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/HtmlDomParserContext.java +243 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +151 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriDomParser.java +116 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriEncodingReaderWrapper.java +109 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriEntityResolver.java +123 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriErrorHandler.java +86 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriHandler.java +341 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriHelpers.java +826 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +180 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +130 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +98 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +79 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathFunction.java +141 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +73 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +67 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ParserContext.java +289 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ReaderNode.java +534 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/SaveContextVisitor.java +780 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/SchemaErrorHandler.java +76 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/UncloseableInputStream.java +102 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlDomParserContext.java +275 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XsltExtensionFunction.java +72 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/depend +358 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/extconf.rb +195 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_document.c +170 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_document.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_element_description.c +279 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_element_description.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_entity_lookup.c +32 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_entity_lookup.h +8 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_parser_context.c +116 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_parser_context.h +11 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_push_parser.c +87 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_push_parser.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/nokogiri.c +143 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/nokogiri.h +164 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attr.c +94 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attr.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attribute_decl.c +70 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attribute_decl.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_cdata.c +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_cdata.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_comment.c +54 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_comment.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document.c +576 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document.h +23 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document_fragment.c +48 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document_fragment.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_dtd.c +202 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_dtd.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_content.c +123 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_content.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_decl.c +69 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_decl.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_encoding_handler.c +79 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_encoding_handler.h +8 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_decl.c +110 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_decl.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_reference.c +52 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_reference.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_io.c +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_io.h +11 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_libxml2_hacks.c +112 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_libxml2_hacks.h +12 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_namespace.c +78 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_namespace.h +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node.c +1534 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node.h +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node_set.c +467 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node_set.h +14 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_processing_instruction.c +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_processing_instruction.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_reader.c +681 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_reader.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_relax_ng.c +161 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_relax_ng.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser.c +312 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser.h +39 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser_context.c +222 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser_context.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_push_parser.c +115 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_push_parser.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_schema.c +205 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_schema.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_syntax_error.c +58 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_syntax_error.h +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_text.c +52 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_text.h +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_xpath_context.c +319 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_xpath_context.h +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xslt_stylesheet.c +270 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xslt_stylesheet.h +14 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/isorelax.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/jing.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nekodtd.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nekohtml.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/node.rb +102 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser.rb +720 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser.y +258 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser_extras.rb +91 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/syntax_error.rb +7 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/tokenizer.rb +152 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/tokenizer.rex +55 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/xpath_visitor.rb +171 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css.rb +27 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/decorators/slop.rb +35 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/builder.rb +35 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/document.rb +254 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/document_fragment.rb +41 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/element_description.rb +23 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/element_description_defaults.rb +671 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/entity_lookup.rb +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/parser.rb +52 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/parser_context.rb +16 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/push_parser.rb +16 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html.rb +37 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/nokogiri.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/syntax_error.rb +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/version.rb +106 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/attr.rb +14 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/attribute_decl.rb +18 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/builder.rb +443 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/cdata.rb +11 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/character_data.rb +7 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/document.rb +279 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/document_fragment.rb +112 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/dtd.rb +22 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/element_content.rb +36 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/element_decl.rb +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/entity_decl.rb +19 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/namespace.rb +13 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node/save_options.rb +61 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node.rb +957 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node_set.rb +355 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/notation.rb +6 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/parse_options.rb +98 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp/character_data.rb +18 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp/node.rb +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp.rb +2 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/processing_instruction.rb +8 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/reader.rb +112 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/relax_ng.rb +32 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/document.rb +171 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/parser.rb +123 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/parser_context.rb +16 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/push_parser.rb +60 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax.rb +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/schema.rb +63 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/syntax_error.rb +47 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/text.rb +9 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath.rb +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath_context.rb +16 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml.rb +73 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xslt/stylesheet.rb +25 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xslt.rb +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri.rb +128 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/xercesImpl.jar +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/xsd/xmlparser/nokogiri.rb +102 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/cross_compile.rb +134 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/nokogiri.org.rb +24 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/test.rb +95 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_nthiness.rb +159 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_parser.rb +341 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_tokenizer.rb +198 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_xpath_visitor.rb +91 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/decorators/test_slop.rb +16 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/2ch.html +108 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/address_book.rlx +12 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/address_book.xml +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/bar/bar.xsd +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/bogus.xml +0 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/dont_hurt_em_why.xml +422 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/encoding.html +82 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/encoding.xhtml +84 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/exslt.xml +8 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/exslt.xslt +35 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/foo/foo.xsd +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/metacharset.html +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/noencoding.html +47 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/po.xml +32 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/po.xsd +66 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/saml20assertion_schema.xsd +283 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/saml20protocol_schema.xsd +302 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/xenc_schema.xsd +146 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/xmldsig_schema.xsd +318 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/shift_jis.html +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/shift_jis.xml +5 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/snuggles.xml +3 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.dtd +10 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.xml +59 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.xslt +32 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/bar.xml +2 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/document.dtd +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/document.xml +6 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/tlm.html +850 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/to_be_xincluded.xml +2 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/valid_bar.xml +2 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/xinclude.xml +4 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/helper.rb +154 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/sax/test_parser.rb +141 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/sax/test_parser_context.rb +46 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_builder.rb +164 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document.rb +552 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document_encoding.rb +138 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document_fragment.rb +261 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_element_description.rb +105 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_named_characters.rb +14 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_node.rb +196 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_node_encoding.rb +27 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_parsed_doc.rb +66 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_convert_xpath.rb +135 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_css_cache.rb +45 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_encoding_handler.rb +46 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_memory_leak.rb +156 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_nokogiri.rb +132 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_reader.rb +555 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_soap4r_sax.rb +52 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_xslt_transforms.rb +254 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/node/test_save_options.rb +28 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/node/test_subclass.rb +44 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_parser.rb +366 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_parser_context.rb +106 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_push_parser.rb +157 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_attr.rb +64 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_attribute_decl.rb +86 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_builder.rb +306 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_c14n.rb +151 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_cdata.rb +48 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_comment.rb +29 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document.rb +868 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document_encoding.rb +28 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document_fragment.rb +223 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_dtd.rb +103 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_dtd_encoding.rb +33 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_element_content.rb +56 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_element_decl.rb +73 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_entity_decl.rb +122 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_entity_reference.rb +245 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_namespace.rb +95 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node.rb +1137 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_attributes.rb +96 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_encoding.rb +107 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_inheritance.rb +32 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_reparenting.rb +374 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_set.rb +755 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_parse_options.rb +64 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_processing_instruction.rb +30 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_reader_encoding.rb +142 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_relax_ng.rb +60 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_schema.rb +103 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_syntax_error.rb +12 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_text.rb +45 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_unparented_node.rb +422 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_xinclude.rb +83 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_xpath.rb +295 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xslt/test_custom_functions.rb +133 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xslt/test_exception_handling.rb +37 -0
- data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test_all +81 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/CHANGES +530 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/MIT-LICENSE +21 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/README.rdoc +187 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/Rakefile +374 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/TODO +21 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/bin/rake +33 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/command_line_usage.rdoc +152 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/Rakefile1 +38 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/Rakefile2 +35 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/a.c +6 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/b.c +6 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/main.c +11 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/glossary.rdoc +51 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/jamis.rb +591 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/proto_rake.rdoc +127 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rake.1.gz +0 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rakefile.rdoc +617 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rational.rdoc +151 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.4.14.rdoc +23 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.4.15.rdoc +35 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.0.rdoc +53 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.3.rdoc +78 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.4.rdoc +46 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.6.0.rdoc +141 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.0.rdoc +119 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.1.rdoc +59 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.2.rdoc +121 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.3.rdoc +47 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.0.rdoc +114 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.2.rdoc +165 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.3.rdoc +112 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.4.rdoc +147 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.5.rdoc +53 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.6.rdoc +55 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.7.rdoc +55 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.0.rdoc +112 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.1.rdoc +52 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.2.rdoc +49 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.3.rdoc +102 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.4.rdoc +110 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.5.rdoc +114 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.6.rdoc +127 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.0.rdoc +178 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.1.rdoc +187 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.2.rdoc +191 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.3.rdoc +191 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.1.0.rdoc +61 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/install.rb +80 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/alt_system.rb +108 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/application.rb +728 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/backtrace.rb +20 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/clean.rb +55 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/cloneable.rb +16 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/compositepublisher.rb +21 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/ftptools.rb +139 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/publisher.rb +73 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/rubyforgepublisher.rb +16 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/sshpublisher.rb +50 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/sys.rb +2 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/default_loader.rb +10 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/dsl_definition.rb +157 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/early_time.rb +18 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/core.rb +28 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/module.rb +0 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/string.rb +166 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/time.rb +15 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_creation_task.rb +24 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_list.rb +416 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_task.rb +46 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_utils.rb +116 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_utils_ext.rb +144 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/gempackagetask.rb +2 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/invocation_chain.rb +57 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/invocation_exception_mixin.rb +16 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/linked_list.rb +103 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/loaders/makefile.rb +40 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/multi_task.rb +13 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/name_space.rb +25 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/packagetask.rb +190 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/pathmap.rb +1 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/phony.rb +15 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/private_reader.rb +20 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/promise.rb +99 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/pseudo_status.rb +29 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rake_module.rb +37 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rake_test_loader.rb +22 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rdoctask.rb +2 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ruby182_test_unit_fix.rb +27 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/runtest.rb +22 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/scope.rb +42 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task.rb +378 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_argument_error.rb +7 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_arguments.rb +89 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_manager.rb +297 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/tasklib.rb +22 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/testtask.rb +201 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/thread_history_display.rb +48 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/thread_pool.rb +161 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/trace_output.rb +22 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/version.rb +9 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/win32.rb +56 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake.rb +73 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/file_creation.rb +34 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/helper.rb +128 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/support/rakefile_definitions.rb +444 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/support/ruby_runner.rb +33 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_private_reader.rb +42 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake.rb +40 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_application.rb +517 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_application_options.rb +457 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_backtrace.rb +113 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_clean.rb +46 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_definitions.rb +79 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_directory_task.rb +57 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_dsl.rb +40 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_early_time.rb +31 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_extension.rb +59 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_creation_task.rb +56 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_list.rb +627 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_list_path_map.rb +8 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_task.rb +122 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_utils.rb +309 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_ftp_file.rb +74 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_functional.rb +466 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_invocation_chain.rb +64 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_linked_list.rb +84 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_makefile_loader.rb +46 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_multi_task.rb +58 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_name_space.rb +43 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_package_task.rb +79 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map.rb +168 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map_explode.rb +34 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map_partial.rb +18 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_pseudo_status.rb +21 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_rake_test_loader.rb +20 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_reduce_compat.rb +26 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_require.rb +40 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_rules.rb +362 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_scope.rb +44 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task.rb +376 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_argument_parsing.rb +103 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_arguments.rb +121 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_lib.rb +9 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_manager.rb +158 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_manager_argument_resolution.rb +19 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_with_arguments.rb +171 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_test_task.rb +119 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_thread_pool.rb +142 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_top_level_functions.rb +71 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_win32.rb +72 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_thread_history_display.rb +101 -0
- data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_trace_output.rb +52 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Appraisals +21 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/CONTRIBUTING.md +38 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Gemfile +3 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/MIT-LICENSE +22 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/README.md +54 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Rakefile +21 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/bin/convert_to_should_syntax +42 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.0.gemfile +7 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.0.gemfile.lock +91 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.1.gemfile +9 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.1.gemfile.lock +112 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.2.gemfile +9 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.2.gemfile.lock +111 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/4.0.gemfile +9 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/4.0.gemfile.lock +107 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/init.rb +1 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/assertions.rb +96 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/autoload_macros.rb +46 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/context.rb +481 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/proc_extensions.rb +14 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks/list_tests.rake +29 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks/yaml_to_shoulda.rake +28 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks.rb +3 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/version.rb +5 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context.rb +33 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda-context.rb +1 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/rails/init.rb +4 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/shoulda-context.gemspec +27 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/tasks/shoulda.rake +1 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/fake_rails_root/test/shoulda_macros/custom_macro.rb +6 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/autoload_macro_test.rb +18 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/context_test.rb +360 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/convert_to_should_syntax_test.rb +63 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/helpers_test.rb +190 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/should_test.rb +291 -0
- data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/test_helper.rb +11 -0
- data/bundle/jruby/1.9/specifications/mini_portile-0.5.2.gemspec +22 -0
- data/bundle/jruby/1.9/specifications/nokogiri-1.6.1-java.gemspec +69 -0
- data/bundle/jruby/1.9/specifications/rake-10.1.1.gemspec +35 -0
- data/bundle/jruby/1.9/specifications/shoulda-context-1.1.6.gemspec +44 -0
- data/lib/vtd-xml-2.11.jar +0 -0
- data/lib/vtd_xml/document.rb +124 -0
- data/lib/vtd_xml/extraction_error.rb +4 -0
- data/lib/vtd_xml/modify_error.rb +5 -0
- data/lib/vtd_xml/parse_error.rb +5 -0
- data/lib/vtd_xml/version.rb +4 -0
- data/lib/vtd_xml/xpath_error.rb +4 -0
- data/lib/vtd_xml.rb +8 -0
- data/pkg/vtd_xml-0.0.3-java.gem +0 -0
- data/test/test_load_paths.rb +18 -0
- data/test/unit/vtd_xml/document_test.rb +266 -0
- data/vtd_xml.gemspec +25 -0
- data/vtd_xml.iml +16 -0
- metadata +648 -0
@@ -0,0 +1,835 @@
|
|
1
|
+
=== 1.6.1 / 2013-12-14
|
2
|
+
|
3
|
+
* Bugfixes
|
4
|
+
|
5
|
+
* (JRuby) Fix out of memory bug when certain invalid documents are parsed.
|
6
|
+
* (JRuby) Fix regression of billion-laughs vulnerability. #586
|
7
|
+
|
8
|
+
|
9
|
+
=== 1.6.0 / 2013-06-08
|
10
|
+
|
11
|
+
This release was based on v1.5.10 and 1.6.0.rc1, and contains changes
|
12
|
+
mentioned in both.
|
13
|
+
|
14
|
+
* Deprecations
|
15
|
+
|
16
|
+
* Remove pre 1.9 monitoring from Travis.
|
17
|
+
|
18
|
+
|
19
|
+
=== 1.6.0.rc1 / 2013-04-14
|
20
|
+
|
21
|
+
This release was based on v1.5.9, and so does not contain any fixes
|
22
|
+
mentioned in the notes for v1.5.10.
|
23
|
+
|
24
|
+
* Notes
|
25
|
+
|
26
|
+
* mini_portile is now a runtime dependency
|
27
|
+
* Ruby 1.9.2 and higher now required
|
28
|
+
|
29
|
+
|
30
|
+
* Features
|
31
|
+
|
32
|
+
* (MRI) Source code for libxml 2.8.0 and libxslt 1.2.26 is packaged
|
33
|
+
with the gem. These libraries are compiled at gem install time
|
34
|
+
unless the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES is
|
35
|
+
set. VERSION_INFO (also `nokogiri -v`) exposes whether libxml was
|
36
|
+
compiled from packaged source, or the system library was used.
|
37
|
+
* (Windows) libxml upgraded to 2.8.0
|
38
|
+
|
39
|
+
|
40
|
+
* Deprecations
|
41
|
+
|
42
|
+
* Support for Ruby 1.8.7 and prior has been dropped
|
43
|
+
|
44
|
+
|
45
|
+
=== 1.5.11 / 2013-11-09
|
46
|
+
|
47
|
+
* Bugfixes
|
48
|
+
|
49
|
+
* (JRuby) Fix out of memory bug when certain invalid documents are parsed.
|
50
|
+
* (JRuby) Fix regression of billion-laughs vulnerability. #568
|
51
|
+
|
52
|
+
|
53
|
+
=== 1.5.10 / 2013-06-07
|
54
|
+
|
55
|
+
* Bugfixes
|
56
|
+
|
57
|
+
* (JRuby) Fix "null document" error when parsing an empty IO in jruby 1.7.3. #883
|
58
|
+
* (JRuby) Fix schema validation when XSD has DOCTYPE set to DTD. #861 (Thanks, Patrick Cheng!)
|
59
|
+
* (MRI) Fix segfault when there is no default subelement for an HTML node. #917
|
60
|
+
|
61
|
+
|
62
|
+
* Notes
|
63
|
+
|
64
|
+
* Use rb_ary_entry instead of RARRAY_PTR (you know, for Rubinius). #877 (Thanks, Dirkjan Bussink!)
|
65
|
+
* Fix TypeError when running tests. #900 (Thanks, Cédric Boutillier!)
|
66
|
+
|
67
|
+
|
68
|
+
=== 1.5.9 / 2013-03-21
|
69
|
+
|
70
|
+
* Bugfixes
|
71
|
+
|
72
|
+
* Ensure that prefixed attributes are properly namespaced when reparented. #869
|
73
|
+
* Fix for inconsistent namespaced attribute access for SVG nested in HTML. #861
|
74
|
+
* (MRI) Fixed a memory leak in fragment parsing if nodes are not all subsequently reparented. #856
|
75
|
+
|
76
|
+
|
77
|
+
=== 1.5.8 / 2013-03-19
|
78
|
+
|
79
|
+
* Bugfixes
|
80
|
+
|
81
|
+
* (JRuby) Fix EmptyStackException thrown by elements with xlink:href attributes and no base_uri #534, #805. (Thanks, Patrick Quinn and Brian Hoffman!)
|
82
|
+
* Fixes duplicate attributes issue introduced in 1.5.7. #865
|
83
|
+
* Allow use of a prefixed namespace on a root node using Nokogiri::XML::Builder #868
|
84
|
+
|
85
|
+
|
86
|
+
=== 1.5.7 / 2013-03-18
|
87
|
+
|
88
|
+
* Features
|
89
|
+
|
90
|
+
* Windows support for Ruby 2.0.
|
91
|
+
|
92
|
+
|
93
|
+
* Bugfixes
|
94
|
+
|
95
|
+
* SAX::Parser.parse_io throw an error when used with lower case encoding. #828
|
96
|
+
* (JRuby) Java Nokogiri is finally green (passes all tests) under 1.8 and 1.9 mode. High five everyone. #798, #705
|
97
|
+
* (JRuby) Nokogiri::XML::Reader broken (as a pull parser) on jruby - reads the whole XML document. #831
|
98
|
+
* (JRuby) JRuby hangs parsing "&". #837
|
99
|
+
* (JRuby) JRuby NPE parsing an invalid XML instruction. #838
|
100
|
+
* (JRuby) Node#content= incompatibility. #839
|
101
|
+
* (JRuby) to_xhtml doesn't print the last slash for self-closing tags in JRuby. #834
|
102
|
+
* (JRuby) Adding an EntityReference after a Text node mangles the entity in JRuby. #835
|
103
|
+
* (JRuby) JRuby version inconsistency: nil for empty attributes. #818
|
104
|
+
* CSS queries for classes (e.g., ".foo") now treat all whitespace identically. #854
|
105
|
+
* Namespace behavior cleaned up and made consistent between JRuby and MRI. #846, #801 (Thanks, Michael Klein!)
|
106
|
+
* (MRI) SAX parser handles empty processing instructions. #845
|
107
|
+
|
108
|
+
|
109
|
+
=== 1.5.6 / 2012-12-19
|
110
|
+
|
111
|
+
* Features
|
112
|
+
|
113
|
+
* Improved performance of XML::Document#collect_namespaces. #761 (Thanks, Juergen Mangler!)
|
114
|
+
* New callback SAX::Document#processing_instruction (Thanks, Kitaiti Makoto!)
|
115
|
+
* Node#native_content= allows setting unescaped node contant. #768
|
116
|
+
* XPath lookup with namespaces supports symbol keys. #729 (Thanks, Ben Langfeld.)
|
117
|
+
* XML::Node#[]= stringifies values. #729 (Thanks, Ben Langfeld.)
|
118
|
+
* bin/nokogiri will process a document from $stdin
|
119
|
+
* bin/nokogiri -e will execute a program from the command line
|
120
|
+
* (JRuby) bin/nokogiri --version will print the Xerces and NekoHTML versions.
|
121
|
+
|
122
|
+
|
123
|
+
* Bugfixes
|
124
|
+
|
125
|
+
* Nokogiri now detects XSLT transform errors. #731 (Thanks, Justin Fitzsimmons!)
|
126
|
+
* Don't throw an Error when trying to replace top-level text node in DocumentFragment. #775
|
127
|
+
* Raise an ArgumentError if an invalid encoding is passed to the SAX parser. #756 (Thanks, Bradley Schaefer!)
|
128
|
+
* Prefixed element inconsistency between CRuby and JRuby. #712
|
129
|
+
* (JRuby) space prior to xml preamble causes nokogiri to fail parsing. (fixed along with #748) #790
|
130
|
+
* (JRuby) Fixed the bug Nokogiri::XML::Node#content inconsistency between Java and C. #794, #797
|
131
|
+
* (JRuby) raises INVALID_CHARACTER_ERR exception when EntityReference name starts with '#'. #719
|
132
|
+
* (JRuby) doesn't coerce namespaces out of strings on a direct subclass of Node. #715
|
133
|
+
* (JRuby) Node#content now renders newlines properly. #737 (Thanks, Piotr Szmielew!)
|
134
|
+
* (JRuby) Unknown namespace are ignore when the recover option is used. #748
|
135
|
+
* (JRuby) XPath queries for namespaces should not throw exceptions when called twice in a row. #764
|
136
|
+
* (JRuby) More consistent (with libxml2) whitespace formatting when emitting XML. #771
|
137
|
+
* (JRuby) namespaced attributes broken when appending raw xml to builder. #770
|
138
|
+
* (JRuby) Nokogiri::XML::Document#wrap raises undefined method `length' for nil:NilClass when trying to << to a node. #781
|
139
|
+
* (JRuby) Fixed "bad file descriptor" bug when closing open file descriptors. #495
|
140
|
+
* (JRuby) JRuby/CRuby incompatibility for attribute decorators. #785
|
141
|
+
* (JRuby) Issues parsing valid XML with no internal subset in the DTD. #547, #811
|
142
|
+
* (JRuby) Issues parsing valid node content when it contains colons. #728
|
143
|
+
* (JRuby) Correctly parse the doc type of html documents. #733
|
144
|
+
* (JRuby) Include dtd in the xml output when a builder is used with create_internal_subset. #751
|
145
|
+
* (JRuby) builder requires textwrappers for valid utf8 in jruby, not in mri. #784
|
146
|
+
|
147
|
+
|
148
|
+
=== 1.5.5 / 2012-06-24
|
149
|
+
|
150
|
+
* Features
|
151
|
+
|
152
|
+
* Much-improved support for JRuby in 1.9 mode! Yay!
|
153
|
+
|
154
|
+
* Bugfixes
|
155
|
+
|
156
|
+
* Regression in JRuby Nokogiri add_previous_sibling (1.5.0 -> 1.5.1) #691 (Thanks, John Shahid!)
|
157
|
+
* JRuby unable to create HTML doc if URL arg provided #674 (Thanks, John Shahid!)
|
158
|
+
* JRuby raises NullPointerException when given HTML document is nil or empty string. #699
|
159
|
+
* JRuby 1.9 error, uncaught throw 'encoding_found', has been fixed. #673
|
160
|
+
* Invalid encoding returned in JRuby with US-ASCII. #583
|
161
|
+
* XmlSaxPushParser raises IndexOutOfBoundsException when over 512 characters are given. #567, #615
|
162
|
+
* When xpath evaluation returns empty NodeSet, decorating NodeSet's base document raises exception. #514
|
163
|
+
* JRuby raises exception when xpath with namespace is specified. pull request #681 (Thanks, Piotr Szmielew)
|
164
|
+
* JRuby renders nodes without their namespace when subclassing Node. #695
|
165
|
+
* JRuby raises NAMESPACE_ERR (org.w3c.dom.DOMException) while instantiating RDF::RDFXML::Writer. #683
|
166
|
+
* JRuby is not able to use namespaces in xpath. #493
|
167
|
+
* JRuby's Entity resolving should be consistent with C-Nokogiri #704, #647, #703
|
168
|
+
|
169
|
+
|
170
|
+
=== 1.5.4 / 2012-06-12
|
171
|
+
|
172
|
+
* Features
|
173
|
+
|
174
|
+
* The "nokogiri" script now has more verbose output when passed the `--rng` option. #675 (Thanks, Dan Radez!)
|
175
|
+
* Build support on hardened Debian systems that use `-Werror=format-security`. #680.
|
176
|
+
* Better build support for systems with pkg-config. #584
|
177
|
+
* Better build support for systems with multiple iconv installations.
|
178
|
+
|
179
|
+
* Bugfixes
|
180
|
+
|
181
|
+
* Segmentation fault when creating a comment node for a DocumentFragment. #677, #678.
|
182
|
+
* Treat '.' as xpath in at() and search(). #690
|
183
|
+
|
184
|
+
* (MRI, Security) Default parse options for XML documents were
|
185
|
+
changed to not make network connections during document parsing,
|
186
|
+
to avoid XXE vulnerability. #693
|
187
|
+
|
188
|
+
To re-enable this behavior, the configuration method `nononet` may
|
189
|
+
be called, like this:
|
190
|
+
|
191
|
+
Nokogiri::XML::Document.parse(xml) { |config| config.nononet }
|
192
|
+
|
193
|
+
Insert your own joke about double-negatives here.
|
194
|
+
|
195
|
+
|
196
|
+
=== 1.5.3 / 2012-06-01
|
197
|
+
|
198
|
+
* Features
|
199
|
+
|
200
|
+
* Support for "prefixless" CSS selectors ~, > and + like jQuery
|
201
|
+
supports. #621, #623. (Thanks, David Lee!)
|
202
|
+
* Attempting to improve installation on homebrew 0.9 (with regards
|
203
|
+
to iconv). Isn't package management convenient?
|
204
|
+
|
205
|
+
* Bugfixes
|
206
|
+
|
207
|
+
* Custom xpath functions with empty nodeset arguments cause a
|
208
|
+
segfault. #634.
|
209
|
+
* Nokogiri::XML::Node#css now works for XML documents with default
|
210
|
+
namespaces when the rule contains attribute selector without
|
211
|
+
namespace.
|
212
|
+
* Fixed marshalling bugs around how arguments are passed to (and
|
213
|
+
returned from) XSLT custom xpath functions. #640.
|
214
|
+
* Nokogiri::XML::Reader#outer_xml is broken in JRuby #617
|
215
|
+
* Nokogiri::XML::Attribute on JRuby returns a nil namespace #647
|
216
|
+
* Nokogiri::XML::Node#namespace= cannot set a namespace without a
|
217
|
+
prefix on JRuby #648
|
218
|
+
* (JRuby) 1.9 mode causes dead lock while running rake #571
|
219
|
+
* HTML::Document#meta_encoding does not raise exception on docs with
|
220
|
+
malformed content-type. #655
|
221
|
+
* Fixing segfault related to unsupported encodings in in-context
|
222
|
+
parsing on 1.8.7. #643
|
223
|
+
* (JRuby) Concurrency issue in XPath parsing. #682
|
224
|
+
|
225
|
+
|
226
|
+
=== 1.5.2 / 2012-03-09
|
227
|
+
|
228
|
+
Repackaging of 1.5.1 with a gemspec that is compatible with older Rubies. #631, #632.
|
229
|
+
|
230
|
+
|
231
|
+
=== 1.5.1 / 2012-03-09
|
232
|
+
|
233
|
+
* Features
|
234
|
+
|
235
|
+
* XML::Builder#comment allows creation of comment nodes.
|
236
|
+
* CSS searches now support namespaced attributes. #593
|
237
|
+
* Java integration feature is added. Now, XML::Document.wrap
|
238
|
+
and XML::Document#to_java methods are available.
|
239
|
+
* RelaxNG validator support in the `nokogiri` cli utility. #591 (thanks, Dan Radez!)
|
240
|
+
|
241
|
+
* Bugfixes
|
242
|
+
|
243
|
+
* Fix many memory leaks and segfault opportunities. Thanks, Tim Elliott!
|
244
|
+
* extconf searches homebrew paths if homebrew is installed.
|
245
|
+
* Inconsistent behavior of Nokogiri 1.5.0 Java #620
|
246
|
+
* Inheriting from Nokogiri::XML::Node on JRuby (1.6.4/5) fails #560
|
247
|
+
* XML::Attr nodes are not allowed to be added as node children, so an
|
248
|
+
exception is raised. #558
|
249
|
+
* No longer defensively "pickle" adjacent text nodes on
|
250
|
+
Node#add_next_sibling and Node#add_previous_sibling calls. #595.
|
251
|
+
* Java version inconsistency: it returns nil for empty attributes #589
|
252
|
+
* to_xhtml incorrectly generates <p /></p> when tag is empty #557
|
253
|
+
* Document#add_child now accepts a Node, NodeSet, DocumentFragment,
|
254
|
+
or String. #546.
|
255
|
+
* Document#create_element now recognizes namespaces containing
|
256
|
+
non-word characters (like "SOAP-ENV"). This is mostly relevant to
|
257
|
+
users of Builder, which calls Document#create_element for nearly
|
258
|
+
everything. #531.
|
259
|
+
* File encoding broken in 1.5.0 / jruby / windows #529
|
260
|
+
* Java version does not return namespace defs as attrs for ::HTML #542
|
261
|
+
* Bad file descriptor with Nokogiri 1.5.0 #495
|
262
|
+
* remove_namespace! doesn't work in pure java version #492
|
263
|
+
* The Nokogiri Java native build throws a null pointer exception
|
264
|
+
when ActiveSupport's .blank? method is called directly on a parsed
|
265
|
+
object. #489
|
266
|
+
* 1.5.0 Not using correct character encoding #488
|
267
|
+
* Raw XML string in XML Builder broken on JRuby #486
|
268
|
+
* Nokogiri 1.5.0 XML generation broken on JRuby #484
|
269
|
+
* Do not allow multiple root nodes. #550
|
270
|
+
* Fixes for custom XPath functions. #605, #606 (thanks, Juan Wajnerman!)
|
271
|
+
* Node#to_xml does not override :save_with if it is provided. #505
|
272
|
+
* Node#set is a private method (JRuby). #564 (thanks, Nick Sieger!)
|
273
|
+
* C14n cleanup and Node#canonicalize (thanks, Ivan Pirlik!) #563
|
274
|
+
|
275
|
+
|
276
|
+
=== 1.5.0 / 2011-07-01
|
277
|
+
|
278
|
+
* Notes
|
279
|
+
|
280
|
+
* See changelog from 1.4.7
|
281
|
+
|
282
|
+
* Features
|
283
|
+
|
284
|
+
* extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
|
285
|
+
|
286
|
+
* Bugfixes
|
287
|
+
|
288
|
+
* default output of XML on JRuby is no longer formatted due to
|
289
|
+
inconsistent whitespace handling. #415
|
290
|
+
* (JRuby) making empty NodeSets with null `nodes` member safe to operate on. #443
|
291
|
+
* Fix a bug in advanced encoding detection that leads to partially
|
292
|
+
duplicated document when parsing an HTML file with unknown
|
293
|
+
encoding.
|
294
|
+
* Add support for <meta charset="...">.
|
295
|
+
|
296
|
+
|
297
|
+
=== 1.5.0 beta3 / 2010/12/02
|
298
|
+
|
299
|
+
* Notes
|
300
|
+
|
301
|
+
* JRuby performance tuning
|
302
|
+
* See changelog from 1.4.4
|
303
|
+
|
304
|
+
* Bugfixes
|
305
|
+
|
306
|
+
* Node#inner_text no longer returns nil. (JRuby) #264
|
307
|
+
|
308
|
+
|
309
|
+
=== 1.5.0 beta2 / 2010/07/30
|
310
|
+
|
311
|
+
* Notes
|
312
|
+
|
313
|
+
* See changelog from 1.4.3
|
314
|
+
|
315
|
+
|
316
|
+
=== 1.5.0 beta1 / 2010/05/22
|
317
|
+
|
318
|
+
* Notes
|
319
|
+
|
320
|
+
* JRuby support is provided by a new pure-java backend.
|
321
|
+
|
322
|
+
* Deprecations
|
323
|
+
|
324
|
+
* Ruby 1.8.6 is deprecated. Nokogiri will install, but official support is ended.
|
325
|
+
* LibXML 2.6.16 and earlier are deprecated. Nokogiri will refuse to install.
|
326
|
+
* FFI support is removed.
|
327
|
+
|
328
|
+
|
329
|
+
=== 1.4.7 / 2011-07-01
|
330
|
+
|
331
|
+
* Bugfixes
|
332
|
+
|
333
|
+
* Fix a bug in advanced encoding detection that leads to partially
|
334
|
+
duplicated document when parsing an HTML file with unknown
|
335
|
+
encoding. Thanks, Timothy Elliott (@ender672)! #478
|
336
|
+
|
337
|
+
|
338
|
+
=== 1.4.6 / 2011-06-19
|
339
|
+
|
340
|
+
* Notes
|
341
|
+
|
342
|
+
* This version is functionally identical to 1.4.5.
|
343
|
+
* Ruby 1.8.6 support has been restored.
|
344
|
+
|
345
|
+
|
346
|
+
=== 1.4.5 / 2011-05-19
|
347
|
+
|
348
|
+
* New Features
|
349
|
+
|
350
|
+
* Nokogiri::HTML::Document#title accessor gets and sets the document title.
|
351
|
+
* extracted sets of Node::SaveOptions into Node::SaveOptions::DEFAULT_{X,H,XH}TML (refactor)
|
352
|
+
* Raise an exception if a string is passed to Nokogiri::XML::Schema#validate. #406
|
353
|
+
|
354
|
+
* Bugfixes
|
355
|
+
|
356
|
+
* Node#serialize-and-friends now accepts a SaveOption object as the, erm, save object.
|
357
|
+
* Nokogiri::CSS::Parser has-a Nokogiri::CSS::Tokenizer
|
358
|
+
* (JRUBY+FFI only) Weak references are now threadsafe. #355
|
359
|
+
* Make direct start_element() callback (currently used for
|
360
|
+
HTML::SAX::Parser) pass attributes in assoc array, just as
|
361
|
+
emulated start_element() callback does. rel. #356
|
362
|
+
* HTML::SAX::Parser should call back a block given to parse*() if any, just as XML::SAX::Parser does.
|
363
|
+
* Add further encoding detection to HTML parser that libxml2 does not do.
|
364
|
+
* Document#remove_namespaces! now handles attributes with namespaces. #396
|
365
|
+
* XSLT::Stylesheet#transform no longer segfaults when handed a non-XML::Document. #452
|
366
|
+
* XML::Reader no longer segfaults when under GC pressure. #439
|
367
|
+
|
368
|
+
|
369
|
+
=== 1.4.4 / 2010-11-15
|
370
|
+
|
371
|
+
* New Features
|
372
|
+
|
373
|
+
* XML::Node#children= sets the node's inner html (much like #inner_html=), but returns the reparent node(s).
|
374
|
+
* XSLT supports function extensions. #336
|
375
|
+
* XPath bind parameter substitution. #329
|
376
|
+
* XML::Reader node type constants. #369
|
377
|
+
* SAX Parser context provides line and column information
|
378
|
+
|
379
|
+
* Bugfixes
|
380
|
+
|
381
|
+
* XML::DTD#attributes returns an empty hash instead of nil when there are no attributes.
|
382
|
+
* XML::DTD#{keys,each} now work as expected. #324
|
383
|
+
* {XML,HTML}::DocumentFragment.{new,parse} no longer strip leading and trailing whitespace. #319
|
384
|
+
* XML::Node#{add_child,add_previous_sibling,add_next_sibling,replace} return a NodeSet when passed a string.
|
385
|
+
* Unclosed tags parsed more robustly in fragments. #315
|
386
|
+
* XML::Node#{replace,add_previous_sibling,add_next_sibling} edge cases fixed related to libxml's text node merging. #308
|
387
|
+
* Fixed a segfault when GC occurs during xpath handler argument marshalling. #345
|
388
|
+
* Added hack to Slop decorator to work with previously defined methods. #330
|
389
|
+
* Fix a memory leak when duplicating child nodes. #353
|
390
|
+
* Fixed off-by-one bug with nth-last-{child,of-type} CSS selectors when NOT using an+b notation. #354
|
391
|
+
* Fixed passing of non-namespace attributes to SAX::Document#start_element. #356
|
392
|
+
* Workaround for libxml2 in-context parsing bug. #362
|
393
|
+
* Fixed NodeSet#wrap on nodes within a fragment. #331
|
394
|
+
|
395
|
+
|
396
|
+
=== 1.4.3 / 2010/07/28
|
397
|
+
|
398
|
+
* New Features
|
399
|
+
|
400
|
+
* XML::Reader#empty_element? returns true for empty elements. #262
|
401
|
+
* Node#remove_namespaces! now removes namespace *declarations* as well. #294
|
402
|
+
* NodeSet#at_xpath, NodeSet#at_css and NodeSet#> do what the corresponding
|
403
|
+
methods of Node do.
|
404
|
+
|
405
|
+
* Bugfixes
|
406
|
+
|
407
|
+
* XML::NodeSet#{include?,delete,push} accept an XML::Namespace
|
408
|
+
* XML::Document#parse added for parsing in the context of a document
|
409
|
+
* XML::DocumentFragment#inner_html= works with contextual parsing! #298, #281
|
410
|
+
* lib/nokogiri/css/parser.y Combined CSS functions + pseudo selectors fixed
|
411
|
+
* Reparenting text nodes is safe, even when the operation frees adjacent merged nodes. #283
|
412
|
+
* Fixed libxml2 versionitis issue with xmlFirstElementChild et al. #303
|
413
|
+
* XML::Attr#add_namespace now works as expected. #252
|
414
|
+
* HTML::DocumentFragment uses the string's encoding. #305
|
415
|
+
* Fix the CSS3 selector translation rule for the general sibling combinator
|
416
|
+
(a.k.a. preceding selector) that incorrectly converted "E ~ F G" to
|
417
|
+
"//F//G[preceding-sibling::E]".
|
418
|
+
|
419
|
+
|
420
|
+
=== 1.4.2 / 2010/05/22
|
421
|
+
|
422
|
+
* New Features
|
423
|
+
|
424
|
+
* XML::Node#parse will parse XML or HTML fragments with respect to the
|
425
|
+
context node.
|
426
|
+
* XML::Node#namespaces returns all namespaces defined in the node and all
|
427
|
+
ancestor nodes
|
428
|
+
(previously did not return ancestors' namespace definitions).
|
429
|
+
* Added Enumerable to XML::Node
|
430
|
+
* Nokogiri::XML::Schema#validate now uses xmlSchemaValidateFile if a
|
431
|
+
filename is passed, which is faster and more memory-efficient. GH #219
|
432
|
+
* XML::Document#create_entity will create new EntityDecl objects. GH #174
|
433
|
+
* JRuby FFI implementation no longer uses ObjectSpace._id2ref,
|
434
|
+
instead using Charles Nutter's rocking Weakling gem.
|
435
|
+
* Nokogiri::XML::Node#first_element_child fetch the first child node that is
|
436
|
+
an ELEMENT node.
|
437
|
+
* Nokogiri::XML::Node#last_element_child fetch the last child node that is
|
438
|
+
an ELEMENT node.
|
439
|
+
* Nokogiri::XML::Node#elements fetch all children nodes that are ELEMENT
|
440
|
+
nodes.
|
441
|
+
* Nokogiri::XML::Node#add_child, #add_previous_sibling, #before,
|
442
|
+
#add_next_sibling, #after, #inner_html, #swap and #replace all now
|
443
|
+
accept a Node, DocumentFragment, NodeSet, or a string containing
|
444
|
+
markup.
|
445
|
+
* Node#fragment? indicates whether a node is a DocumentFragment.
|
446
|
+
|
447
|
+
* Bugfixes
|
448
|
+
|
449
|
+
* XML::NodeSet is now always decorated (if the document has decorators).
|
450
|
+
GH #198
|
451
|
+
* XML::NodeSet#slice gracefully handles offset+length larger than the set
|
452
|
+
length. GH #200
|
453
|
+
* XML::Node#content= safely unlinks previous content. GH #203
|
454
|
+
* XML::Node#namespace= takes nil as a parameter
|
455
|
+
* XML::Node#xpath returns things other than NodeSet objects. GH #208
|
456
|
+
* XSLT::StyleSheet#transform accepts hashes for parameters. GH #223
|
457
|
+
* Psuedo selectors inside not() work. GH #205
|
458
|
+
* XML::Builder doesn't break when nodes are unlinked.
|
459
|
+
Thanks to vihai! GH #228
|
460
|
+
* Encoding can be forced on the SAX parser. Thanks Eugene Pimenov! GH #204
|
461
|
+
* XML::DocumentFragment uses XML::Node#parse to determine children.
|
462
|
+
* Fixed a memory leak in xml reader. Thanks sdor! GH #244
|
463
|
+
* Node#replace returns the new child node as claimed in the
|
464
|
+
RDoc. Previously returned +self+.
|
465
|
+
|
466
|
+
* Notes
|
467
|
+
|
468
|
+
* The Windows gems now bundle DLLs for libxml 2.7.6 and libxslt
|
469
|
+
1.1.26. Prior to this release, libxml 2.7.3 and libxslt 1.1.24
|
470
|
+
were bundled.
|
471
|
+
|
472
|
+
|
473
|
+
=== 1.4.1 / 2009/12/10
|
474
|
+
|
475
|
+
* New Features
|
476
|
+
|
477
|
+
* Added Nokogiri::LIBXML_ICONV_ENABLED
|
478
|
+
* Alias Node#[] to Node#attr
|
479
|
+
* XML::Node#next_element added
|
480
|
+
* XML::Node#> added for searching a nodes immediate children
|
481
|
+
* XML::NodeSet#reverse added
|
482
|
+
* Added fragment support to Node#add_child, Node#add_next_sibling,
|
483
|
+
Node#add_previous_sibling, and Node#replace.
|
484
|
+
* XML::Node#previous_element implemented
|
485
|
+
* Rubinius support
|
486
|
+
* Ths CSS selector engine now supports :has()
|
487
|
+
* XML::NodeSet#filter() was added
|
488
|
+
* XML::Node.next= and .previous= are aliases for add_next_sibling and add_previous_sibling. GH #183
|
489
|
+
|
490
|
+
* Bugfixes
|
491
|
+
|
492
|
+
* XML fragments with namespaces do not raise an exception (regression in 1.4.0)
|
493
|
+
* Node#matches? works in nodes contained by a DocumentFragment. GH #158
|
494
|
+
* Document should not define add_namespace() method. GH #169
|
495
|
+
* XPath queries returning namespace declarations do not segfault.
|
496
|
+
* Node#replace works with nodes from different documents. GH #162
|
497
|
+
* Adding XML::Document#collect_namespaces
|
498
|
+
* Fixed bugs in the SOAP4R adapter
|
499
|
+
* Fixed bug in XML::Node#next_element for certain edge cases
|
500
|
+
* Fixed load path issue with JRuby under Windows. GH #160.
|
501
|
+
* XSLT#apply_to will honor the "output method". Thanks richardlehane!
|
502
|
+
* Fragments containing leading text nodes with newlines now parse properly. GH #178.
|
503
|
+
|
504
|
+
|
505
|
+
=== 1.4.0 / 2009/10/30
|
506
|
+
|
507
|
+
* Happy Birthday!
|
508
|
+
|
509
|
+
* New Features
|
510
|
+
|
511
|
+
* Node#at_xpath returns the first element of the NodeSet matching the XPath
|
512
|
+
expression.
|
513
|
+
* Node#at_css returns the first element of the NodeSet matching the CSS
|
514
|
+
selector.
|
515
|
+
* NodeSet#| for unions GH #119 (Thanks Serabe!)
|
516
|
+
* NodeSet#inspect makes prettier output
|
517
|
+
* Node#inspect implemented for more rubyish document inspecting
|
518
|
+
* Added XML::DTD#external_id
|
519
|
+
* Added XML::DTD#system_id
|
520
|
+
* Added XML::ElementContent for DTD Element content validity
|
521
|
+
* Better namespace declaration support in Nokogiri::XML::Builder
|
522
|
+
* Added XML::Node#external_subset
|
523
|
+
* Added XML::Node#create_external_subset
|
524
|
+
* Added XML::Node#create_internal_subset
|
525
|
+
* XML Builder can append raw strings (GH #141, patch from dudleyf)
|
526
|
+
* XML::SAX::ParserContext added
|
527
|
+
* XML::Document#remove_namespaces! for the namespace-impaired
|
528
|
+
|
529
|
+
* Bugfixes
|
530
|
+
|
531
|
+
* returns nil when HTML documents do not declare a meta encoding tag. GH #115
|
532
|
+
* Uses RbConfig::CONFIG['host_os'] to adjust ENV['PATH'] GH #113
|
533
|
+
* NodeSet#search is more efficient GH #119 (Thanks Serabe!)
|
534
|
+
* NodeSet#xpath handles custom xpath functions
|
535
|
+
* Fixing a SEGV when XML::Reader gets attributes for current node
|
536
|
+
* Node#inner_html takes the same arguments as Node#to_html GH #117
|
537
|
+
* DocumentFragment#css delegates to it's child nodes GH #123
|
538
|
+
* NodeSet#[] works with slices larger than NodeSet#length GH #131
|
539
|
+
* Reparented nodes maintain their namespace. GH #134
|
540
|
+
* Fixed SEGV when adding an XML::Document to NodeSet
|
541
|
+
* XML::SyntaxError can be duplicated. GH #148
|
542
|
+
|
543
|
+
* Deprecations
|
544
|
+
|
545
|
+
* Hpricot compatibility layer removed
|
546
|
+
|
547
|
+
|
548
|
+
=== 1.3.3 / 2009/07/26
|
549
|
+
|
550
|
+
* New Features
|
551
|
+
|
552
|
+
* NodeSet#children returns all children of all nodes
|
553
|
+
|
554
|
+
* Bugfixes
|
555
|
+
|
556
|
+
* Override libxml-ruby's global error handler
|
557
|
+
* ParseOption#strict fixed
|
558
|
+
* Fixed a segfault when sending an empty string to Node#inner_html= GH #88
|
559
|
+
* String encoding is now set to UTF-8 in Ruby 1.9
|
560
|
+
* Fixed a segfault when moving root nodes between documents. GH #91
|
561
|
+
* Fixed an O(n) penalty on node creation. GH #101
|
562
|
+
* Allowing XML documents to be output as HTML documents
|
563
|
+
|
564
|
+
* Deprecations
|
565
|
+
|
566
|
+
* Hpricot compatibility layer will be removed in 1.4.0
|
567
|
+
|
568
|
+
|
569
|
+
=== 1.3.2 / 2009-06-22
|
570
|
+
|
571
|
+
* New Features
|
572
|
+
|
573
|
+
* Nokogiri::XML::DTD#validate will validate your document
|
574
|
+
|
575
|
+
* Bugfixes
|
576
|
+
|
577
|
+
* Nokogiri::XML::NodeSet#search will search top level nodes. GH #73
|
578
|
+
* Removed namespace related methods from Nokogiri::XML::Document
|
579
|
+
* Fixed a segfault when a namespace was added twice
|
580
|
+
* Made nokogiri work with Snow Leopard GH #79
|
581
|
+
* Mailing list has moved to: http://groups.google.com/group/nokogiri-talk
|
582
|
+
* HTML fragments now correctly handle comments and CDATA blocks. GH #78
|
583
|
+
* Nokogiri::XML::Document#clone is now an alias of dup
|
584
|
+
|
585
|
+
* Deprecations
|
586
|
+
|
587
|
+
* Nokogiri::XML::SAX::Document#start_element_ns is deprecated, please switch
|
588
|
+
to Nokogiri::XML::SAX::Document#start_element_namespace
|
589
|
+
* Nokogiri::XML::SAX::Document#end_element_ns is deprecated, please switch
|
590
|
+
to Nokogiri::XML::SAX::Document#end_element_namespace
|
591
|
+
|
592
|
+
|
593
|
+
=== 1.3.1 / 2009-06-07
|
594
|
+
|
595
|
+
* Bugfixes
|
596
|
+
|
597
|
+
* extconf.rb checks for optional RelaxNG and Schema functions
|
598
|
+
* Namespace nodes are added to the Document node cache
|
599
|
+
|
600
|
+
|
601
|
+
=== 1.3.0 / 2009-05-30
|
602
|
+
|
603
|
+
* New Features
|
604
|
+
|
605
|
+
* Builder changes scope based on block arity
|
606
|
+
* Builder supports methods ending in underscore similar to tagz
|
607
|
+
* Nokogiri::XML::Node#<=> compares nodes based on Document position
|
608
|
+
* Nokogiri::XML::Node#matches? returns true if Node can be found with
|
609
|
+
given selector.
|
610
|
+
* Nokogiri::XML::Node#ancestors now returns an Nokogiri::XML::NodeSet
|
611
|
+
* Nokogiri::XML::Node#ancestors will match parents against optional selector
|
612
|
+
* Nokogiri::HTML::Document#meta_encoding for getting the meta encoding
|
613
|
+
* Nokogiri::HTML::Document#meta_encoding= for setting the meta encoding
|
614
|
+
* Nokogiri::XML::Document#encoding= to set the document encoding
|
615
|
+
* Nokogiri::XML::Schema for validating documents against XSD schema
|
616
|
+
* Nokogiri::XML::RelaxNG for validating documents against RelaxNG schema
|
617
|
+
* Nokogiri::HTML::ElementDescription for fetching HTML element descriptions
|
618
|
+
* Nokogiri::XML::Node#description to fetch the node description
|
619
|
+
* Nokogiri::XML::Node#accept implements Visitor pattern
|
620
|
+
* bin/nokogiri for easily examining documents (Thanks Yutaka HARA!)
|
621
|
+
* Nokogiri::XML::NodeSet now supports more Array and Enumerable operators:
|
622
|
+
index, delete, slice, - (difference), + (concatenation), & (intersection),
|
623
|
+
push, pop, shift, ==
|
624
|
+
* Nokogiri.XML, Nokogiri.HTML take blocks that receive
|
625
|
+
Nokogiri::XML::ParseOptions objects
|
626
|
+
* Nokogiri::XML::Node#namespace returns a Nokogiri::XML::Namespace
|
627
|
+
* Nokogiri::XML::Node#namespace= for setting a node's namespace
|
628
|
+
* Nokogiri::XML::DocumentFragment and Nokogiri::HTML::DocumentFragment
|
629
|
+
have a sensible API and a more robust implementation.
|
630
|
+
* JRuby 1.3.0 support via FFI.
|
631
|
+
|
632
|
+
* Bugfixes
|
633
|
+
|
634
|
+
* Fixed a problem with nil passed to CDATA constructor
|
635
|
+
* Fragment method deals with regular expression characters
|
636
|
+
(Thanks Joel!) LH #73
|
637
|
+
* Fixing builder scope issues LH #61, LH #74, LH #70
|
638
|
+
* Fixed a problem when adding a child could remove the child namespace LH#78
|
639
|
+
* Fixed bug with unlinking a node then reparenting it. (GH#22)
|
640
|
+
* Fixed failure to catch errors during XSLT parsing (GH#32)
|
641
|
+
* Fixed a bug with attribute conditions in CSS selectors (GH#36)
|
642
|
+
* Fixed intolerance of HTML attributes without values in Node#before/after/inner_html=. (GH#35)
|
643
|
+
|
644
|
+
|
645
|
+
=== 1.2.3 / 2009-03-22
|
646
|
+
|
647
|
+
* Bugfixes
|
648
|
+
|
649
|
+
* Fixing bug where a node is passed in to Node#new
|
650
|
+
* Namespace should be assigned on DocumentFragment creation. LH #66
|
651
|
+
* Nokogiri::XML::NodeSet#dup works GH #10
|
652
|
+
* Nokogiri::HTML returns an empty Document when given a blank string GH#11
|
653
|
+
* Adding a child will remove duplicate namespace declarations LH #67
|
654
|
+
* Builder methods take a hash as a second argument
|
655
|
+
|
656
|
+
|
657
|
+
=== 1.2.2 / 2009-03-14
|
658
|
+
|
659
|
+
* New features
|
660
|
+
|
661
|
+
* Nokogiri may be used with soap4r. See XSD::XMLParser::Nokogiri
|
662
|
+
* Nokogiri::XML::Node#inner_html= to set the inner html for a node
|
663
|
+
* Nokogiri builder interface improvements
|
664
|
+
* Nokogiri::XML::Node#swap swaps html for current node (LH #50)
|
665
|
+
|
666
|
+
* Bugfixes
|
667
|
+
|
668
|
+
* Fixed a tag nesting problem in the Builder API (LH #41)
|
669
|
+
* Nokogiri::HTML.fragment will properly handle text only nodes (LH #43)
|
670
|
+
* Nokogiri::XML::Node#before will prepend text nodes (LH #44)
|
671
|
+
* Nokogiri::XML::Node#after will append text nodes
|
672
|
+
* Nokogiri::XML::Node#search automatically registers root namespaces (LH #42)
|
673
|
+
* Nokogiri::XML::NodeSet#search automatically registers namespaces
|
674
|
+
* Nokogiri::HTML::NamedCharacters delegates to libxml2
|
675
|
+
* Nokogiri::XML::Node#[] can take a symbol (LH #48)
|
676
|
+
* vasprintf for windows updated. Thanks Geoffroy Couprie!
|
677
|
+
* Nokogiri::XML::Node#[]= should not encode entities (LH #55)
|
678
|
+
* Namespaces should be copied to reparented nodes (LH #56)
|
679
|
+
* Nokogiri uses encoding set on the string for default in Ruby 1.9
|
680
|
+
* Document#dup should create a new document of the same type (LH #59)
|
681
|
+
* Document should not have a parent method (LH #64)
|
682
|
+
|
683
|
+
|
684
|
+
=== 1.2.1 / 2009-02-23
|
685
|
+
|
686
|
+
* Bugfixes
|
687
|
+
|
688
|
+
* Fixed a CSS selector space bug
|
689
|
+
* Fixed Ruby 1.9 String Encoding (Thanks 角谷さん!)
|
690
|
+
|
691
|
+
|
692
|
+
=== 1.2.0 / 2009-02-22
|
693
|
+
|
694
|
+
* New features
|
695
|
+
|
696
|
+
* CSS search now supports CSS3 namespace queries
|
697
|
+
* Namespaces on the root node are automatically registered
|
698
|
+
* CSS queries use the default namespace
|
699
|
+
* Nokogiri::XML::Document#encoding get encoding used for this document
|
700
|
+
* Nokogiri::XML::Document#url get the document url
|
701
|
+
* Nokogiri::XML::Node#add_namespace add a namespace to the node LH#38
|
702
|
+
* Nokogiri::XML::Node#each iterate over attribute name, value pairs
|
703
|
+
* Nokogiri::XML::Node#keys get all attribute names
|
704
|
+
* Nokogiri::XML::Node#line get the line number for a node (Thanks Dirkjan Bussink!)
|
705
|
+
* Nokogiri::XML::Node#serialize now takes an optional encoding parameter
|
706
|
+
* Nokogiri::XML::Node#to_html, to_xml, and to_xhtml take an optional encoding
|
707
|
+
* Nokogiri::XML::Node#to_str
|
708
|
+
* Nokogiri::XML::Node#to_xhtml to produce XHTML documents
|
709
|
+
* Nokogiri::XML::Node#values get all attribute values
|
710
|
+
* Nokogiri::XML::Node#write_to writes the node to an IO object with optional encoding
|
711
|
+
* Nokogiri::XML::ProcessingInstrunction.new
|
712
|
+
* Nokogiri::XML::SAX::PushParser for all your push parsing needs.
|
713
|
+
|
714
|
+
* Bugfixes
|
715
|
+
|
716
|
+
* Fixed Nokogiri::XML::Document#dup
|
717
|
+
* Fixed header detection. Thanks rubikitch!
|
718
|
+
* Fixed a problem where invalid CSS would cause the parser to hang
|
719
|
+
|
720
|
+
* Deprecations
|
721
|
+
|
722
|
+
* Nokogiri::XML::Node.new_from_str will be deprecated in 1.3.0
|
723
|
+
|
724
|
+
* API Changes
|
725
|
+
|
726
|
+
* Nokogiri::HTML.fragment now returns an XML::DocumentFragment (LH #32)
|
727
|
+
|
728
|
+
|
729
|
+
=== 1.1.1
|
730
|
+
|
731
|
+
* New features
|
732
|
+
|
733
|
+
* Added XML::Node#elem?
|
734
|
+
* Added XML::Node#attribute_nodes
|
735
|
+
* Added XML::Attr
|
736
|
+
* XML::Node#delete added.
|
737
|
+
* XML::NodeSet#inner_html added.
|
738
|
+
|
739
|
+
* Bugfixes
|
740
|
+
|
741
|
+
* Not including an HTML entity for \r for HTML nodes.
|
742
|
+
* Removed CSS::SelectorHandler and XML::XPathHandler
|
743
|
+
* XML::Node#attributes returns an Attr node for the value.
|
744
|
+
* XML::NodeSet implements to_xml
|
745
|
+
|
746
|
+
|
747
|
+
=== 1.1.0
|
748
|
+
|
749
|
+
* New Features
|
750
|
+
|
751
|
+
* Custom XPath functions are now supported. See Nokogiri::XML::Node#xpath
|
752
|
+
* Custom CSS pseudo classes are now supported. See Nokogiri::XML::Node#css
|
753
|
+
* Nokogiri::XML::Node#<< will add a child to the current node
|
754
|
+
|
755
|
+
* Bugfixes
|
756
|
+
|
757
|
+
* Mutex lock on CSS cache access
|
758
|
+
* Fixed build problems with GCC 3.3.5
|
759
|
+
* XML::Node#to_xml now takes an indentation argument
|
760
|
+
* XML::Node#dup takes an optional depth argument
|
761
|
+
* XML::Node#add_previous_sibling returns new sibling node.
|
762
|
+
|
763
|
+
|
764
|
+
=== 1.0.7
|
765
|
+
|
766
|
+
* Bugfixes
|
767
|
+
|
768
|
+
* Fixed memory leak when using Dike
|
769
|
+
* SAX parser now parses IO streams
|
770
|
+
* Comment nodes have their own class
|
771
|
+
* Nokogiri() should delegate to Nokogiri.parse()
|
772
|
+
* Prepending rather than appending to ENV['PATH'] on windows
|
773
|
+
* Fixed a bug in complex CSS negation selectors
|
774
|
+
|
775
|
+
|
776
|
+
=== 1.0.6
|
777
|
+
|
778
|
+
* 5 Bugfixes
|
779
|
+
|
780
|
+
* XPath Parser raises a SyntaxError on parse failure
|
781
|
+
* CSS Parser raises a SyntaxError on parse failure
|
782
|
+
* filter() and not() hpricot compatibility added
|
783
|
+
* CSS searches via Node#search are now always relative
|
784
|
+
* CSS to XPath conversion is now cached
|
785
|
+
|
786
|
+
|
787
|
+
=== 1.0.5
|
788
|
+
|
789
|
+
* Bugfixes
|
790
|
+
|
791
|
+
* Added mailing list and ticket tracking information to the README.txt
|
792
|
+
* Sets ENV['PATH'] on windows if it doesn't exist
|
793
|
+
* Caching results of NodeSet#[] on Document
|
794
|
+
|
795
|
+
|
796
|
+
=== 1.0.4
|
797
|
+
|
798
|
+
* Bugfixes
|
799
|
+
|
800
|
+
* Changed memory management from weak refs to document refs
|
801
|
+
* Plugged some memory leaks
|
802
|
+
* Builder blocks can call methods from surrounding contexts
|
803
|
+
|
804
|
+
|
805
|
+
=== 1.0.3
|
806
|
+
|
807
|
+
* 5 Bugfixes
|
808
|
+
|
809
|
+
* NodeSet now implements to_ary
|
810
|
+
* XML::Document should not implement parent
|
811
|
+
* More GC Bugs fixed. (Mike is AWESOME!)
|
812
|
+
* Removed RARRAY_LEN for 1.8.5 compatibility. Thanks Shane Hanna.
|
813
|
+
* inner_html fixed. (Thanks Yehuda!)
|
814
|
+
|
815
|
+
|
816
|
+
=== 1.0.2
|
817
|
+
|
818
|
+
* 1 Bugfix
|
819
|
+
|
820
|
+
* extconf.rb should not check for frex and racc
|
821
|
+
|
822
|
+
|
823
|
+
=== 1.0.1
|
824
|
+
|
825
|
+
* 1 Bugfix
|
826
|
+
|
827
|
+
* Made sure extconf.rb searched libdir and prefix so that ports libxml/ruby
|
828
|
+
will link properly. Thanks lucsky!
|
829
|
+
|
830
|
+
|
831
|
+
=== 1.0.0 / 2008-07-13
|
832
|
+
|
833
|
+
* 1 major enhancement
|
834
|
+
|
835
|
+
* Birthday!
|