vtd_xml 0.0.3-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (545) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -0
  3. data/Gemfile.lock +23 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.md +29 -0
  6. data/Rakefile +20 -0
  7. data/bundle/bundler/setup.rb +10 -0
  8. data/bundle/jruby/1.9/bin/convert_to_should_syntax +23 -0
  9. data/bundle/jruby/1.9/bin/nokogiri +23 -0
  10. data/bundle/jruby/1.9/bin/rake +23 -0
  11. data/bundle/jruby/1.9/build_info/mini_portile-0.5.2.info +1 -0
  12. data/bundle/jruby/1.9/build_info/nokogiri-1.6.1-java.info +1 -0
  13. data/bundle/jruby/1.9/build_info/rake-10.1.1.info +1 -0
  14. data/bundle/jruby/1.9/build_info/shoulda-context-1.1.6.info +1 -0
  15. data/bundle/jruby/1.9/cache/mini_portile-0.5.2.gem +0 -0
  16. data/bundle/jruby/1.9/cache/nokogiri-1.6.1-java.gem +0 -0
  17. data/bundle/jruby/1.9/cache/rake-10.1.1.gem +0 -0
  18. data/bundle/jruby/1.9/cache/shoulda-context-1.1.6.gem +0 -0
  19. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/History.txt +65 -0
  20. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/LICENSE.txt +20 -0
  21. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/README.rdoc +169 -0
  22. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/Rakefile +44 -0
  23. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/examples/Rakefile +55 -0
  24. data/bundle/jruby/1.9/gems/mini_portile-0.5.2/lib/mini_portile.rb +404 -0
  25. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/CHANGELOG.ja.rdoc +828 -0
  26. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/CHANGELOG.rdoc +835 -0
  27. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/C_CODING_STYLE.rdoc +33 -0
  28. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Gemfile +21 -0
  29. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Manifest.txt +315 -0
  30. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/README.ja.rdoc +106 -0
  31. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/README.rdoc +175 -0
  32. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ROADMAP.md +90 -0
  33. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Rakefile +248 -0
  34. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/STANDARD_RESPONSES.md +47 -0
  35. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/Y_U_NO_GEMSPEC.md +155 -0
  36. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/bin/nokogiri +78 -0
  37. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/build_all +105 -0
  38. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/dependencies.yml +4 -0
  39. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/EncodingHandler.java +124 -0
  40. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlDocument.java +189 -0
  41. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlElementDescription.java +145 -0
  42. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlEntityLookup.java +79 -0
  43. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/HtmlSaxParserContext.java +259 -0
  44. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/NokogiriService.java +605 -0
  45. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlAttr.java +190 -0
  46. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlAttributeDecl.java +130 -0
  47. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlCdata.java +84 -0
  48. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlComment.java +95 -0
  49. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDocument.java +598 -0
  50. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDocumentFragment.java +210 -0
  51. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlDtd.java +480 -0
  52. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElement.java +88 -0
  53. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElementContent.java +382 -0
  54. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlElementDecl.java +152 -0
  55. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlEntityDecl.java +162 -0
  56. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlEntityReference.java +101 -0
  57. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNamespace.java +216 -0
  58. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNode.java +1637 -0
  59. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlNodeSet.java +270 -0
  60. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlProcessingInstruction.java +99 -0
  61. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlReader.java +532 -0
  62. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlRelaxng.java +144 -0
  63. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSaxParserContext.java +356 -0
  64. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSaxPushParser.java +232 -0
  65. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSchema.java +324 -0
  66. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlSyntaxError.java +136 -0
  67. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlText.java +107 -0
  68. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XmlXpathContext.java +203 -0
  69. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/XsltStylesheet.java +360 -0
  70. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ClosedStreamException.java +10 -0
  71. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/HtmlDomParserContext.java +243 -0
  72. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriBlockingQueueInputStream.java +151 -0
  73. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriDocumentCache.java +73 -0
  74. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriDomParser.java +116 -0
  75. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriEncodingReaderWrapper.java +109 -0
  76. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriEntityResolver.java +123 -0
  77. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriErrorHandler.java +86 -0
  78. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriHandler.java +341 -0
  79. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriHelpers.java +826 -0
  80. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNamespaceCache.java +180 -0
  81. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNamespaceContext.java +130 -0
  82. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler.java +98 -0
  83. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriNonStrictErrorHandler4NekoHtml.java +121 -0
  84. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriStrictErrorHandler.java +79 -0
  85. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathFunction.java +141 -0
  86. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathFunctionResolver.java +73 -0
  87. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXPathVariableResolver.java +67 -0
  88. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/NokogiriXsltErrorListener.java +87 -0
  89. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ParserContext.java +289 -0
  90. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/ReaderNode.java +534 -0
  91. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/SaveContextVisitor.java +780 -0
  92. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/SchemaErrorHandler.java +76 -0
  93. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/UncloseableInputStream.java +102 -0
  94. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlDeclHandler.java +42 -0
  95. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlDomParserContext.java +275 -0
  96. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XmlSaxParser.java +65 -0
  97. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/java/nokogiri/internals/XsltExtensionFunction.java +72 -0
  98. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/depend +358 -0
  99. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/extconf.rb +195 -0
  100. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_document.c +170 -0
  101. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_document.h +10 -0
  102. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_element_description.c +279 -0
  103. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_element_description.h +10 -0
  104. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_entity_lookup.c +32 -0
  105. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_entity_lookup.h +8 -0
  106. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_parser_context.c +116 -0
  107. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_parser_context.h +11 -0
  108. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_push_parser.c +87 -0
  109. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/html_sax_push_parser.h +9 -0
  110. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/nokogiri.c +143 -0
  111. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/nokogiri.h +164 -0
  112. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attr.c +94 -0
  113. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attr.h +9 -0
  114. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attribute_decl.c +70 -0
  115. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_attribute_decl.h +9 -0
  116. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_cdata.c +56 -0
  117. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_cdata.h +9 -0
  118. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_comment.c +54 -0
  119. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_comment.h +9 -0
  120. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document.c +576 -0
  121. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document.h +23 -0
  122. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document_fragment.c +48 -0
  123. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_document_fragment.h +10 -0
  124. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_dtd.c +202 -0
  125. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_dtd.h +10 -0
  126. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_content.c +123 -0
  127. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_content.h +10 -0
  128. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_decl.c +69 -0
  129. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_element_decl.h +9 -0
  130. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_encoding_handler.c +79 -0
  131. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_encoding_handler.h +8 -0
  132. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_decl.c +110 -0
  133. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_decl.h +10 -0
  134. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_reference.c +52 -0
  135. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_entity_reference.h +9 -0
  136. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_io.c +56 -0
  137. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_io.h +11 -0
  138. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  139. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  140. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_namespace.c +78 -0
  141. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_namespace.h +13 -0
  142. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node.c +1534 -0
  143. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node.h +13 -0
  144. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node_set.c +467 -0
  145. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_node_set.h +14 -0
  146. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_processing_instruction.c +56 -0
  147. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_processing_instruction.h +9 -0
  148. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_reader.c +681 -0
  149. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_reader.h +10 -0
  150. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_relax_ng.c +161 -0
  151. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_relax_ng.h +9 -0
  152. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser.c +312 -0
  153. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser.h +39 -0
  154. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser_context.c +222 -0
  155. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_parser_context.h +10 -0
  156. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_push_parser.c +115 -0
  157. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_sax_push_parser.h +9 -0
  158. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_schema.c +205 -0
  159. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_schema.h +9 -0
  160. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_syntax_error.c +58 -0
  161. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_syntax_error.h +13 -0
  162. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_text.c +52 -0
  163. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_text.h +9 -0
  164. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_xpath_context.c +319 -0
  165. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xml_xpath_context.h +10 -0
  166. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xslt_stylesheet.c +270 -0
  167. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/ext/nokogiri/xslt_stylesheet.h +14 -0
  168. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/isorelax.jar +0 -0
  169. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/jing.jar +0 -0
  170. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nekodtd.jar +0 -0
  171. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nekohtml.jar +0 -0
  172. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/node.rb +102 -0
  173. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser.rb +720 -0
  174. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser.y +258 -0
  175. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/parser_extras.rb +91 -0
  176. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/syntax_error.rb +7 -0
  177. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/tokenizer.rb +152 -0
  178. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/tokenizer.rex +55 -0
  179. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css/xpath_visitor.rb +171 -0
  180. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/css.rb +27 -0
  181. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/decorators/slop.rb +35 -0
  182. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/builder.rb +35 -0
  183. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/document.rb +254 -0
  184. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/document_fragment.rb +41 -0
  185. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/element_description.rb +23 -0
  186. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/element_description_defaults.rb +671 -0
  187. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/entity_lookup.rb +13 -0
  188. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/parser.rb +52 -0
  189. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/parser_context.rb +16 -0
  190. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html/sax/push_parser.rb +16 -0
  191. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/html.rb +37 -0
  192. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/nokogiri.jar +0 -0
  193. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/syntax_error.rb +4 -0
  194. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/version.rb +106 -0
  195. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/attr.rb +14 -0
  196. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/attribute_decl.rb +18 -0
  197. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/builder.rb +443 -0
  198. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/cdata.rb +11 -0
  199. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/character_data.rb +7 -0
  200. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/document.rb +279 -0
  201. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/document_fragment.rb +112 -0
  202. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/dtd.rb +22 -0
  203. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/element_content.rb +36 -0
  204. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/element_decl.rb +13 -0
  205. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/entity_decl.rb +19 -0
  206. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/namespace.rb +13 -0
  207. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node/save_options.rb +61 -0
  208. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node.rb +957 -0
  209. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/node_set.rb +355 -0
  210. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/notation.rb +6 -0
  211. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/parse_options.rb +98 -0
  212. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp/character_data.rb +18 -0
  213. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp/node.rb +56 -0
  214. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/pp.rb +2 -0
  215. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/processing_instruction.rb +8 -0
  216. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/reader.rb +112 -0
  217. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/relax_ng.rb +32 -0
  218. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/document.rb +171 -0
  219. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/parser.rb +123 -0
  220. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  221. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  222. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/sax.rb +4 -0
  223. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/schema.rb +63 -0
  224. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/syntax_error.rb +47 -0
  225. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/text.rb +9 -0
  226. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  227. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath.rb +10 -0
  228. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml/xpath_context.rb +16 -0
  229. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xml.rb +73 -0
  230. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xslt/stylesheet.rb +25 -0
  231. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri/xslt.rb +56 -0
  232. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/nokogiri.rb +128 -0
  233. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/xercesImpl.jar +0 -0
  234. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/lib/xsd/xmlparser/nokogiri.rb +102 -0
  235. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/cross_compile.rb +134 -0
  236. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/nokogiri.org.rb +24 -0
  237. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/tasks/test.rb +95 -0
  238. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_nthiness.rb +159 -0
  239. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_parser.rb +341 -0
  240. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_tokenizer.rb +198 -0
  241. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/css/test_xpath_visitor.rb +91 -0
  242. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/decorators/test_slop.rb +16 -0
  243. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/2ch.html +108 -0
  244. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/address_book.rlx +12 -0
  245. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/address_book.xml +10 -0
  246. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/bar/bar.xsd +4 -0
  247. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/bogus.xml +0 -0
  248. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/dont_hurt_em_why.xml +422 -0
  249. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/encoding.html +82 -0
  250. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/encoding.xhtml +84 -0
  251. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/exslt.xml +8 -0
  252. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/exslt.xslt +35 -0
  253. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/foo/foo.xsd +4 -0
  254. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/metacharset.html +10 -0
  255. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/noencoding.html +47 -0
  256. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/po.xml +32 -0
  257. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/po.xsd +66 -0
  258. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/saml20assertion_schema.xsd +283 -0
  259. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/saml20protocol_schema.xsd +302 -0
  260. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/xenc_schema.xsd +146 -0
  261. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/saml/xmldsig_schema.xsd +318 -0
  262. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/shift_jis.html +10 -0
  263. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/shift_jis.xml +5 -0
  264. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/snuggles.xml +3 -0
  265. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.dtd +10 -0
  266. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.xml +59 -0
  267. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/staff.xslt +32 -0
  268. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/bar.xml +2 -0
  269. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/document.dtd +4 -0
  270. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/test_document_url/document.xml +6 -0
  271. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/tlm.html +850 -0
  272. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/to_be_xincluded.xml +2 -0
  273. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/valid_bar.xml +2 -0
  274. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/files/xinclude.xml +4 -0
  275. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/helper.rb +154 -0
  276. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/sax/test_parser.rb +141 -0
  277. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/sax/test_parser_context.rb +46 -0
  278. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_builder.rb +164 -0
  279. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document.rb +552 -0
  280. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document_encoding.rb +138 -0
  281. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_document_fragment.rb +261 -0
  282. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_element_description.rb +105 -0
  283. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_named_characters.rb +14 -0
  284. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_node.rb +196 -0
  285. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/html/test_node_encoding.rb +27 -0
  286. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_additional_namespaces_in_builder_doc.rb +14 -0
  287. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_builder_doc.rb +75 -0
  288. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_created_doc.rb +75 -0
  289. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/namespaces/test_namespaces_in_parsed_doc.rb +66 -0
  290. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_convert_xpath.rb +135 -0
  291. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_css_cache.rb +45 -0
  292. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_encoding_handler.rb +46 -0
  293. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_memory_leak.rb +156 -0
  294. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_nokogiri.rb +132 -0
  295. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_reader.rb +555 -0
  296. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_soap4r_sax.rb +52 -0
  297. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/test_xslt_transforms.rb +254 -0
  298. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/node/test_save_options.rb +28 -0
  299. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/node/test_subclass.rb +44 -0
  300. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_parser.rb +366 -0
  301. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_parser_context.rb +106 -0
  302. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/sax/test_push_parser.rb +157 -0
  303. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_attr.rb +64 -0
  304. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_attribute_decl.rb +86 -0
  305. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_builder.rb +306 -0
  306. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_c14n.rb +151 -0
  307. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_cdata.rb +48 -0
  308. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_comment.rb +29 -0
  309. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document.rb +868 -0
  310. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document_encoding.rb +28 -0
  311. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_document_fragment.rb +223 -0
  312. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_dtd.rb +103 -0
  313. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_dtd_encoding.rb +33 -0
  314. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_element_content.rb +56 -0
  315. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_element_decl.rb +73 -0
  316. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_entity_decl.rb +122 -0
  317. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_entity_reference.rb +245 -0
  318. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_namespace.rb +95 -0
  319. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node.rb +1137 -0
  320. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_attributes.rb +96 -0
  321. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_encoding.rb +107 -0
  322. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_inheritance.rb +32 -0
  323. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_reparenting.rb +374 -0
  324. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_node_set.rb +755 -0
  325. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_parse_options.rb +64 -0
  326. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_processing_instruction.rb +30 -0
  327. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_reader_encoding.rb +142 -0
  328. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_relax_ng.rb +60 -0
  329. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_schema.rb +103 -0
  330. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_syntax_error.rb +12 -0
  331. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_text.rb +45 -0
  332. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_unparented_node.rb +422 -0
  333. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_xinclude.rb +83 -0
  334. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xml/test_xpath.rb +295 -0
  335. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xslt/test_custom_functions.rb +133 -0
  336. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test/xslt/test_exception_handling.rb +37 -0
  337. data/bundle/jruby/1.9/gems/nokogiri-1.6.1-java/test_all +81 -0
  338. data/bundle/jruby/1.9/gems/rake-10.1.1/CHANGES +530 -0
  339. data/bundle/jruby/1.9/gems/rake-10.1.1/MIT-LICENSE +21 -0
  340. data/bundle/jruby/1.9/gems/rake-10.1.1/README.rdoc +187 -0
  341. data/bundle/jruby/1.9/gems/rake-10.1.1/Rakefile +374 -0
  342. data/bundle/jruby/1.9/gems/rake-10.1.1/TODO +21 -0
  343. data/bundle/jruby/1.9/gems/rake-10.1.1/bin/rake +33 -0
  344. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/command_line_usage.rdoc +152 -0
  345. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/Rakefile1 +38 -0
  346. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/Rakefile2 +35 -0
  347. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/a.c +6 -0
  348. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/b.c +6 -0
  349. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/example/main.c +11 -0
  350. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/glossary.rdoc +51 -0
  351. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/jamis.rb +591 -0
  352. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/proto_rake.rdoc +127 -0
  353. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rake.1.gz +0 -0
  354. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rakefile.rdoc +617 -0
  355. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/rational.rdoc +151 -0
  356. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.4.14.rdoc +23 -0
  357. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.4.15.rdoc +35 -0
  358. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.0.rdoc +53 -0
  359. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.3.rdoc +78 -0
  360. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.5.4.rdoc +46 -0
  361. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.6.0.rdoc +141 -0
  362. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.0.rdoc +119 -0
  363. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.1.rdoc +59 -0
  364. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.2.rdoc +121 -0
  365. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.7.3.rdoc +47 -0
  366. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.0.rdoc +114 -0
  367. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.2.rdoc +165 -0
  368. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.3.rdoc +112 -0
  369. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.4.rdoc +147 -0
  370. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.5.rdoc +53 -0
  371. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.6.rdoc +55 -0
  372. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.8.7.rdoc +55 -0
  373. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.0.rdoc +112 -0
  374. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.1.rdoc +52 -0
  375. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.2.2.rdoc +55 -0
  376. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.2.rdoc +49 -0
  377. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.3.rdoc +102 -0
  378. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.4.rdoc +110 -0
  379. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.5.rdoc +114 -0
  380. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-0.9.6.rdoc +127 -0
  381. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.0.rdoc +178 -0
  382. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.1.rdoc +187 -0
  383. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.2.rdoc +191 -0
  384. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.0.3.rdoc +191 -0
  385. data/bundle/jruby/1.9/gems/rake-10.1.1/doc/release_notes/rake-10.1.0.rdoc +61 -0
  386. data/bundle/jruby/1.9/gems/rake-10.1.1/install.rb +80 -0
  387. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/alt_system.rb +108 -0
  388. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/application.rb +728 -0
  389. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/backtrace.rb +20 -0
  390. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/clean.rb +55 -0
  391. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/cloneable.rb +16 -0
  392. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/compositepublisher.rb +21 -0
  393. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/ftptools.rb +139 -0
  394. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/publisher.rb +73 -0
  395. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/rubyforgepublisher.rb +16 -0
  396. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/sshpublisher.rb +50 -0
  397. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/contrib/sys.rb +2 -0
  398. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/default_loader.rb +10 -0
  399. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/dsl_definition.rb +157 -0
  400. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/early_time.rb +18 -0
  401. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/core.rb +28 -0
  402. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/module.rb +0 -0
  403. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/string.rb +166 -0
  404. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ext/time.rb +15 -0
  405. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_creation_task.rb +24 -0
  406. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_list.rb +416 -0
  407. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_task.rb +46 -0
  408. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_utils.rb +116 -0
  409. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/file_utils_ext.rb +144 -0
  410. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/gempackagetask.rb +2 -0
  411. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/invocation_chain.rb +57 -0
  412. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/invocation_exception_mixin.rb +16 -0
  413. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/linked_list.rb +103 -0
  414. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/loaders/makefile.rb +40 -0
  415. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/multi_task.rb +13 -0
  416. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/name_space.rb +25 -0
  417. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/packagetask.rb +190 -0
  418. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/pathmap.rb +1 -0
  419. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/phony.rb +15 -0
  420. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/private_reader.rb +20 -0
  421. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/promise.rb +99 -0
  422. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/pseudo_status.rb +29 -0
  423. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rake_module.rb +37 -0
  424. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rake_test_loader.rb +22 -0
  425. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rdoctask.rb +2 -0
  426. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/ruby182_test_unit_fix.rb +27 -0
  427. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/rule_recursion_overflow_error.rb +20 -0
  428. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/runtest.rb +22 -0
  429. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/scope.rb +42 -0
  430. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task.rb +378 -0
  431. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_argument_error.rb +7 -0
  432. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_arguments.rb +89 -0
  433. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/task_manager.rb +297 -0
  434. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/tasklib.rb +22 -0
  435. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/testtask.rb +201 -0
  436. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/thread_history_display.rb +48 -0
  437. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/thread_pool.rb +161 -0
  438. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/trace_output.rb +22 -0
  439. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/version.rb +9 -0
  440. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake/win32.rb +56 -0
  441. data/bundle/jruby/1.9/gems/rake-10.1.1/lib/rake.rb +73 -0
  442. data/bundle/jruby/1.9/gems/rake-10.1.1/test/file_creation.rb +34 -0
  443. data/bundle/jruby/1.9/gems/rake-10.1.1/test/helper.rb +128 -0
  444. data/bundle/jruby/1.9/gems/rake-10.1.1/test/support/rakefile_definitions.rb +444 -0
  445. data/bundle/jruby/1.9/gems/rake-10.1.1/test/support/ruby_runner.rb +33 -0
  446. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_private_reader.rb +42 -0
  447. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake.rb +40 -0
  448. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_application.rb +517 -0
  449. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_application_options.rb +457 -0
  450. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_backtrace.rb +113 -0
  451. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_clean.rb +46 -0
  452. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_definitions.rb +79 -0
  453. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_directory_task.rb +57 -0
  454. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_dsl.rb +40 -0
  455. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_early_time.rb +31 -0
  456. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_extension.rb +59 -0
  457. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_creation_task.rb +56 -0
  458. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_list.rb +627 -0
  459. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_list_path_map.rb +8 -0
  460. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_task.rb +122 -0
  461. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_file_utils.rb +309 -0
  462. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_ftp_file.rb +74 -0
  463. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_functional.rb +466 -0
  464. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_invocation_chain.rb +64 -0
  465. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_linked_list.rb +84 -0
  466. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_makefile_loader.rb +46 -0
  467. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_multi_task.rb +58 -0
  468. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_name_space.rb +43 -0
  469. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_package_task.rb +79 -0
  470. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map.rb +168 -0
  471. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map_explode.rb +34 -0
  472. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_path_map_partial.rb +18 -0
  473. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_pseudo_status.rb +21 -0
  474. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_rake_test_loader.rb +20 -0
  475. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_reduce_compat.rb +26 -0
  476. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_require.rb +40 -0
  477. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_rules.rb +362 -0
  478. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_scope.rb +44 -0
  479. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task.rb +376 -0
  480. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_argument_parsing.rb +103 -0
  481. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_arguments.rb +121 -0
  482. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_lib.rb +9 -0
  483. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_manager.rb +158 -0
  484. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_manager_argument_resolution.rb +19 -0
  485. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_task_with_arguments.rb +171 -0
  486. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_test_task.rb +119 -0
  487. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_thread_pool.rb +142 -0
  488. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_top_level_functions.rb +71 -0
  489. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_rake_win32.rb +72 -0
  490. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_thread_history_display.rb +101 -0
  491. data/bundle/jruby/1.9/gems/rake-10.1.1/test/test_trace_output.rb +52 -0
  492. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Appraisals +21 -0
  493. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/CONTRIBUTING.md +38 -0
  494. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Gemfile +3 -0
  495. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/MIT-LICENSE +22 -0
  496. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/README.md +54 -0
  497. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/Rakefile +21 -0
  498. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/bin/convert_to_should_syntax +42 -0
  499. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.0.gemfile +7 -0
  500. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.0.gemfile.lock +91 -0
  501. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.1.gemfile +9 -0
  502. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.1.gemfile.lock +112 -0
  503. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.2.gemfile +9 -0
  504. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/3.2.gemfile.lock +111 -0
  505. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/4.0.gemfile +9 -0
  506. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/gemfiles/4.0.gemfile.lock +107 -0
  507. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/init.rb +1 -0
  508. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/assertions.rb +96 -0
  509. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/autoload_macros.rb +46 -0
  510. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/context.rb +481 -0
  511. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/proc_extensions.rb +14 -0
  512. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks/list_tests.rake +29 -0
  513. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks/yaml_to_shoulda.rake +28 -0
  514. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/tasks.rb +3 -0
  515. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context/version.rb +5 -0
  516. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda/context.rb +33 -0
  517. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/lib/shoulda-context.rb +1 -0
  518. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/rails/init.rb +4 -0
  519. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/shoulda-context.gemspec +27 -0
  520. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/tasks/shoulda.rake +1 -0
  521. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/fake_rails_root/test/shoulda_macros/custom_macro.rb +6 -0
  522. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/autoload_macro_test.rb +18 -0
  523. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/context_test.rb +360 -0
  524. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/convert_to_should_syntax_test.rb +63 -0
  525. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/helpers_test.rb +190 -0
  526. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/shoulda/should_test.rb +291 -0
  527. data/bundle/jruby/1.9/gems/shoulda-context-1.1.6/test/test_helper.rb +11 -0
  528. data/bundle/jruby/1.9/specifications/mini_portile-0.5.2.gemspec +22 -0
  529. data/bundle/jruby/1.9/specifications/nokogiri-1.6.1-java.gemspec +69 -0
  530. data/bundle/jruby/1.9/specifications/rake-10.1.1.gemspec +35 -0
  531. data/bundle/jruby/1.9/specifications/shoulda-context-1.1.6.gemspec +44 -0
  532. data/lib/vtd-xml-2.11.jar +0 -0
  533. data/lib/vtd_xml/document.rb +124 -0
  534. data/lib/vtd_xml/extraction_error.rb +4 -0
  535. data/lib/vtd_xml/modify_error.rb +5 -0
  536. data/lib/vtd_xml/parse_error.rb +5 -0
  537. data/lib/vtd_xml/version.rb +4 -0
  538. data/lib/vtd_xml/xpath_error.rb +4 -0
  539. data/lib/vtd_xml.rb +8 -0
  540. data/pkg/vtd_xml-0.0.3-java.gem +0 -0
  541. data/test/test_load_paths.rb +18 -0
  542. data/test/unit/vtd_xml/document_test.rb +266 -0
  543. data/vtd_xml.gemspec +25 -0
  544. data/vtd_xml.iml +16 -0
  545. 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!