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,957 @@
1
+ require 'stringio'
2
+ require 'nokogiri/xml/node/save_options'
3
+
4
+ module Nokogiri
5
+ module XML
6
+ ####
7
+ # Nokogiri::XML::Node is your window to the fun filled world of dealing
8
+ # with XML and HTML tags. A Nokogiri::XML::Node may be treated similarly
9
+ # to a hash with regard to attributes. For example (from irb):
10
+ #
11
+ # irb(main):004:0> node
12
+ # => <a href="#foo" id="link">link</a>
13
+ # irb(main):005:0> node['href']
14
+ # => "#foo"
15
+ # irb(main):006:0> node.keys
16
+ # => ["href", "id"]
17
+ # irb(main):007:0> node.values
18
+ # => ["#foo", "link"]
19
+ # irb(main):008:0> node['class'] = 'green'
20
+ # => "green"
21
+ # irb(main):009:0> node
22
+ # => <a href="#foo" id="link" class="green">link</a>
23
+ # irb(main):010:0>
24
+ #
25
+ # See Nokogiri::XML::Node#[] and Nokogiri::XML#[]= for more information.
26
+ #
27
+ # Nokogiri::XML::Node also has methods that let you move around your
28
+ # tree. For navigating your tree, see:
29
+ #
30
+ # * Nokogiri::XML::Node#parent
31
+ # * Nokogiri::XML::Node#children
32
+ # * Nokogiri::XML::Node#next
33
+ # * Nokogiri::XML::Node#previous
34
+ #
35
+ # You may search this node's subtree using Node#xpath and Node#css
36
+ class Node
37
+ include Nokogiri::XML::PP::Node
38
+ include Enumerable
39
+
40
+ # Element node type, see Nokogiri::XML::Node#element?
41
+ ELEMENT_NODE = 1
42
+ # Attribute node type
43
+ ATTRIBUTE_NODE = 2
44
+ # Text node type, see Nokogiri::XML::Node#text?
45
+ TEXT_NODE = 3
46
+ # CDATA node type, see Nokogiri::XML::Node#cdata?
47
+ CDATA_SECTION_NODE = 4
48
+ # Entity reference node type
49
+ ENTITY_REF_NODE = 5
50
+ # Entity node type
51
+ ENTITY_NODE = 6
52
+ # PI node type
53
+ PI_NODE = 7
54
+ # Comment node type, see Nokogiri::XML::Node#comment?
55
+ COMMENT_NODE = 8
56
+ # Document node type, see Nokogiri::XML::Node#xml?
57
+ DOCUMENT_NODE = 9
58
+ # Document type node type
59
+ DOCUMENT_TYPE_NODE = 10
60
+ # Document fragment node type
61
+ DOCUMENT_FRAG_NODE = 11
62
+ # Notation node type
63
+ NOTATION_NODE = 12
64
+ # HTML document node type, see Nokogiri::XML::Node#html?
65
+ HTML_DOCUMENT_NODE = 13
66
+ # DTD node type
67
+ DTD_NODE = 14
68
+ # Element declaration type
69
+ ELEMENT_DECL = 15
70
+ # Attribute declaration type
71
+ ATTRIBUTE_DECL = 16
72
+ # Entity declaration type
73
+ ENTITY_DECL = 17
74
+ # Namespace declaration type
75
+ NAMESPACE_DECL = 18
76
+ # XInclude start type
77
+ XINCLUDE_START = 19
78
+ # XInclude end type
79
+ XINCLUDE_END = 20
80
+ # DOCB document node type
81
+ DOCB_DOCUMENT_NODE = 21
82
+
83
+ def initialize name, document # :nodoc:
84
+ # ... Ya. This is empty on purpose.
85
+ end
86
+
87
+ ###
88
+ # Decorate this node with the decorators set up in this node's Document
89
+ def decorate!
90
+ document.decorate(self)
91
+ end
92
+
93
+ ###
94
+ # Search this node for +paths+. +paths+ can be XPath or CSS, and an
95
+ # optional hash of namespaces may be appended.
96
+ # See Node#xpath and Node#css.
97
+ def search *paths
98
+ # TODO use paths, handler, ns, binds = extract_params(paths)
99
+ ns = paths.last.is_a?(Hash) ? paths.pop :
100
+ (document.root ? document.root.namespaces : {})
101
+
102
+ prefix = "#{implied_xpath_context}/"
103
+
104
+ xpath(*(paths.map { |path|
105
+ path = path.to_s
106
+ path =~ /^(\.\/|\/|\.\.|\.$)/ ? path : CSS.xpath_for(
107
+ path,
108
+ :prefix => prefix,
109
+ :ns => ns
110
+ )
111
+ }.flatten.uniq) + [ns])
112
+ end
113
+ alias :/ :search
114
+
115
+ ###
116
+ # call-seq: xpath *paths, [namespace-bindings, variable-bindings, custom-handler-class]
117
+ #
118
+ # Search this node for XPath +paths+. +paths+ must be one or more XPath
119
+ # queries.
120
+ #
121
+ # node.xpath('.//title')
122
+ #
123
+ # A hash of namespace bindings may be appended. For example:
124
+ #
125
+ # node.xpath('.//foo:name', {'foo' => 'http://example.org/'})
126
+ # node.xpath('.//xmlns:name', node.root.namespaces)
127
+ #
128
+ # A hash of variable bindings may also be appended to the namespace bindings. For example:
129
+ #
130
+ # node.xpath('.//address[@domestic=$value]', nil, {:value => 'Yes'})
131
+ #
132
+ # Custom XPath functions may also be defined. To define custom
133
+ # functions create a class and implement the function you want
134
+ # to define. The first argument to the method will be the
135
+ # current matching NodeSet. Any other arguments are ones that
136
+ # you pass in. Note that this class may appear anywhere in the
137
+ # argument list. For example:
138
+ #
139
+ # node.xpath('.//title[regex(., "\w+")]', Class.new {
140
+ # def regex node_set, regex
141
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
142
+ # end
143
+ # }.new)
144
+ #
145
+ def xpath *paths
146
+ return NodeSet.new(document) unless document
147
+
148
+ paths, handler, ns, binds = extract_params(paths)
149
+
150
+ sets = paths.map { |path|
151
+ ctx = XPathContext.new(self)
152
+ ctx.register_namespaces(ns)
153
+ path = path.gsub(/xmlns:/, ' :') unless Nokogiri.uses_libxml?
154
+
155
+ binds.each do |key,value|
156
+ ctx.register_variable key.to_s, value
157
+ end if binds
158
+
159
+ ctx.evaluate(path, handler)
160
+ }
161
+ return sets.first if sets.length == 1
162
+
163
+ NodeSet.new(document) do |combined|
164
+ sets.each do |set|
165
+ set.each do |node|
166
+ combined << node
167
+ end
168
+ end
169
+ end
170
+ end
171
+
172
+ ###
173
+ # call-seq: css *rules, [namespace-bindings, custom-pseudo-class]
174
+ #
175
+ # Search this node for CSS +rules+. +rules+ must be one or more CSS
176
+ # selectors. For example:
177
+ #
178
+ # node.css('title')
179
+ # node.css('body h1.bold')
180
+ # node.css('div + p.green', 'div#one')
181
+ #
182
+ # A hash of namespace bindings may be appended. For example:
183
+ #
184
+ # node.css('bike|tire', {'bike' => 'http://schwinn.com/'})
185
+ #
186
+ # Custom CSS pseudo classes may also be defined. To define
187
+ # custom pseudo classes, create a class and implement the custom
188
+ # pseudo class you want defined. The first argument to the
189
+ # method will be the current matching NodeSet. Any other
190
+ # arguments are ones that you pass in. For example:
191
+ #
192
+ # node.css('title:regex("\w+")', Class.new {
193
+ # def regex node_set, regex
194
+ # node_set.find_all { |node| node['some_attribute'] =~ /#{regex}/ }
195
+ # end
196
+ # }.new)
197
+ #
198
+ # Note that the CSS query string is case-sensitive with regards
199
+ # to your document type. That is, if you're looking for "H1" in
200
+ # an HTML document, you'll never find anything, since HTML tags
201
+ # will match only lowercase CSS queries. However, "H1" might be
202
+ # found in an XML document, where tags names are case-sensitive
203
+ # (e.g., "H1" is distinct from "h1").
204
+ #
205
+ def css *rules
206
+ rules, handler, ns, binds = extract_params(rules)
207
+
208
+ prefix = "#{implied_xpath_context}/"
209
+
210
+ rules = rules.map { |rule|
211
+ CSS.xpath_for(rule, :prefix => prefix, :ns => ns)
212
+ }.flatten.uniq + [ns, handler, binds].compact
213
+
214
+ xpath(*rules)
215
+ end
216
+
217
+ ###
218
+ # Search this node's immediate children using CSS selector +selector+
219
+ def > selector
220
+ ns = document.root.namespaces
221
+ xpath CSS.xpath_for(selector, :prefix => "./", :ns => ns).first
222
+ end
223
+
224
+ ###
225
+ # Search for the first occurrence of +path+.
226
+ #
227
+ # Returns nil if nothing is found, otherwise a Node.
228
+ def at path, ns = document.root ? document.root.namespaces : {}
229
+ search(path, ns).first
230
+ end
231
+ alias :% :at
232
+
233
+ ##
234
+ # Search this node for the first occurrence of XPath +paths+.
235
+ # Equivalent to <tt>xpath(paths).first</tt>
236
+ # See Node#xpath for more information.
237
+ #
238
+ def at_xpath *paths
239
+ xpath(*paths).first
240
+ end
241
+
242
+ ##
243
+ # Search this node for the first occurrence of CSS +rules+.
244
+ # Equivalent to <tt>css(rules).first</tt>
245
+ # See Node#css for more information.
246
+ #
247
+ def at_css *rules
248
+ css(*rules).first
249
+ end
250
+
251
+ ###
252
+ # Get the attribute value for the attribute +name+
253
+ def [] name
254
+ get(name.to_s)
255
+ end
256
+
257
+ ###
258
+ # Set the attribute value for the attribute +name+ to +value+
259
+ def []= name, value
260
+ set name.to_s, value.to_s
261
+ end
262
+
263
+ ###
264
+ # Add +node_or_tags+ as a child of this Node.
265
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
266
+ #
267
+ # Returns the reparented node (if +node_or_tags+ is a Node), or NodeSet (if +node_or_tags+ is a DocumentFragment, NodeSet, or string).
268
+ #
269
+ # Also see related method +<<+.
270
+ def add_child node_or_tags
271
+ node_or_tags = coerce(node_or_tags)
272
+ if node_or_tags.is_a?(XML::NodeSet)
273
+ node_or_tags.each { |n| add_child_node_and_reparent_attrs n }
274
+ else
275
+ add_child_node_and_reparent_attrs node_or_tags
276
+ end
277
+ node_or_tags
278
+ end
279
+
280
+ ###
281
+ # Add +node_or_tags+ as a child of this Node.
282
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
283
+ #
284
+ # Returns self, to support chaining of calls (e.g., root << child1 << child2)
285
+ #
286
+ # Also see related method +add_child+.
287
+ def << node_or_tags
288
+ add_child node_or_tags
289
+ self
290
+ end
291
+ ###
292
+ # Insert +node_or_tags+ before this Node (as a sibling).
293
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
294
+ #
295
+ # Returns the reparented node (if +node_or_tags+ is a Node), or NodeSet (if +node_or_tags+ is a DocumentFragment, NodeSet, or string).
296
+ #
297
+ # Also see related method +before+.
298
+ def add_previous_sibling node_or_tags
299
+ raise ArgumentError.new("A document may not have multiple root nodes.") if parent.is_a?(XML::Document) && !node_or_tags.is_a?(XML::ProcessingInstruction)
300
+
301
+ add_sibling :previous, node_or_tags
302
+ end
303
+
304
+ ###
305
+ # Insert +node_or_tags+ after this Node (as a sibling).
306
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
307
+ #
308
+ # Returns the reparented node (if +node_or_tags+ is a Node), or NodeSet (if +node_or_tags+ is a DocumentFragment, NodeSet, or string).
309
+ #
310
+ # Also see related method +after+.
311
+ def add_next_sibling node_or_tags
312
+ raise ArgumentError.new("A document may not have multiple root nodes.") if parent.is_a?(XML::Document)
313
+
314
+ add_sibling :next, node_or_tags
315
+ end
316
+
317
+ ####
318
+ # Insert +node_or_tags+ before this node (as a sibling).
319
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
320
+ #
321
+ # Returns self, to support chaining of calls.
322
+ #
323
+ # Also see related method +add_previous_sibling+.
324
+ def before node_or_tags
325
+ add_previous_sibling node_or_tags
326
+ self
327
+ end
328
+
329
+ ####
330
+ # Insert +node_or_tags+ after this node (as a sibling).
331
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a Nokogiri::XML::DocumentFragment, or a string containing markup.
332
+ #
333
+ # Returns self, to support chaining of calls.
334
+ #
335
+ # Also see related method +add_next_sibling+.
336
+ def after node_or_tags
337
+ add_next_sibling node_or_tags
338
+ self
339
+ end
340
+
341
+ ####
342
+ # Set the inner html for this Node to +node_or_tags+
343
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a Nokogiri::XML::DocumentFragment, or a string containing markup.
344
+ #
345
+ # Returns self.
346
+ #
347
+ # Also see related method +children=+
348
+ def inner_html= node_or_tags
349
+ self.children = node_or_tags
350
+ self
351
+ end
352
+
353
+ ####
354
+ # Set the inner html for this Node +node_or_tags+
355
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a Nokogiri::XML::DocumentFragment, or a string containing markup.
356
+ #
357
+ # Returns the reparented node (if +node_or_tags+ is a Node), or NodeSet (if +node_or_tags+ is a DocumentFragment, NodeSet, or string).
358
+ #
359
+ # Also see related method +inner_html=+
360
+ def children= node_or_tags
361
+ node_or_tags = coerce(node_or_tags)
362
+ children.unlink
363
+ if node_or_tags.is_a?(XML::NodeSet)
364
+ node_or_tags.each { |n| add_child_node_and_reparent_attrs n }
365
+ else
366
+ add_child_node_and_reparent_attrs node_or_tags
367
+ end
368
+ node_or_tags
369
+ end
370
+
371
+ ####
372
+ # Replace this Node with +node_or_tags+.
373
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
374
+ #
375
+ # Returns the reparented node (if +node_or_tags+ is a Node), or NodeSet (if +node_or_tags+ is a DocumentFragment, NodeSet, or string).
376
+ #
377
+ # Also see related method +swap+.
378
+ def replace node_or_tags
379
+ # We cannot replace a text node directly, otherwise libxml will return
380
+ # an internal error at parser.c:13031, I don't know exactly why
381
+ # libxml is trying to find a parent node that is an element or document
382
+ # so I can't tell if this is bug in libxml or not. issue #775.
383
+ if text?
384
+ replacee = Nokogiri::XML::Node.new 'dummy', document
385
+ add_previous_sibling_node replacee
386
+ unlink
387
+ return replacee.replace node_or_tags
388
+ end
389
+
390
+ node_or_tags = coerce(node_or_tags)
391
+
392
+ if node_or_tags.is_a?(XML::NodeSet)
393
+ node_or_tags.each { |n| add_previous_sibling n }
394
+ unlink
395
+ else
396
+ replace_node node_or_tags
397
+ end
398
+ node_or_tags
399
+ end
400
+
401
+ ####
402
+ # Swap this Node for +node_or_tags+
403
+ # +node_or_tags+ can be a Nokogiri::XML::Node, a ::DocumentFragment, a ::NodeSet, or a string containing markup.
404
+ #
405
+ # Returns self, to support chaining of calls.
406
+ #
407
+ # Also see related method +replace+.
408
+ def swap node_or_tags
409
+ replace node_or_tags
410
+ self
411
+ end
412
+
413
+ alias :next :next_sibling
414
+ alias :previous :previous_sibling
415
+
416
+ # :stopdoc:
417
+ # HACK: This is to work around an RDoc bug
418
+ alias :next= :add_next_sibling
419
+ # :startdoc:
420
+
421
+ alias :previous= :add_previous_sibling
422
+ alias :remove :unlink
423
+ alias :get_attribute :[]
424
+ alias :attr :[]
425
+ alias :set_attribute :[]=
426
+ alias :text :content
427
+ alias :inner_text :content
428
+ alias :has_attribute? :key?
429
+ alias :name :node_name
430
+ alias :name= :node_name=
431
+ alias :type :node_type
432
+ alias :to_str :text
433
+ alias :clone :dup
434
+ alias :elements :element_children
435
+
436
+ ####
437
+ # Returns a hash containing the node's attributes. The key is
438
+ # the attribute name without any namespace, the value is a Nokogiri::XML::Attr
439
+ # representing the attribute.
440
+ # If you need to distinguish attributes with the same name, with different namespaces
441
+ # use #attribute_nodes instead.
442
+ def attributes
443
+ Hash[attribute_nodes.map { |node|
444
+ [node.node_name, node]
445
+ }]
446
+ end
447
+
448
+ ###
449
+ # Get the attribute values for this Node.
450
+ def values
451
+ attribute_nodes.map { |node| node.value }
452
+ end
453
+
454
+ ###
455
+ # Get the attribute names for this Node.
456
+ def keys
457
+ attribute_nodes.map { |node| node.node_name }
458
+ end
459
+
460
+ ###
461
+ # Iterate over each attribute name and value pair for this Node.
462
+ def each
463
+ attribute_nodes.each { |node|
464
+ yield [node.node_name, node.value]
465
+ }
466
+ end
467
+
468
+ ###
469
+ # Remove the attribute named +name+
470
+ def remove_attribute name
471
+ attributes[name].remove if key? name
472
+ end
473
+ alias :delete :remove_attribute
474
+
475
+ ###
476
+ # Returns true if this Node matches +selector+
477
+ def matches? selector
478
+ ancestors.last.search(selector).include?(self)
479
+ end
480
+
481
+ ###
482
+ # Create a DocumentFragment containing +tags+ that is relative to _this_
483
+ # context node.
484
+ def fragment tags
485
+ type = document.html? ? Nokogiri::HTML : Nokogiri::XML
486
+ type::DocumentFragment.new(document, tags, self)
487
+ end
488
+
489
+ ###
490
+ # Parse +string_or_io+ as a document fragment within the context of
491
+ # *this* node. Returns a XML::NodeSet containing the nodes parsed from
492
+ # +string_or_io+.
493
+ def parse string_or_io, options = nil
494
+ options ||= (document.html? ? ParseOptions::DEFAULT_HTML : ParseOptions::DEFAULT_XML)
495
+ if Fixnum === options
496
+ options = Nokogiri::XML::ParseOptions.new(options)
497
+ end
498
+ # Give the options to the user
499
+ yield options if block_given?
500
+
501
+ contents = string_or_io.respond_to?(:read) ?
502
+ string_or_io.read :
503
+ string_or_io
504
+
505
+ return Nokogiri::XML::NodeSet.new(document) if contents.empty?
506
+
507
+ ##
508
+ # This is a horrible hack, but I don't care. See #313 for background.
509
+ error_count = document.errors.length
510
+ node_set = in_context(contents, options.to_i)
511
+ if node_set.empty? and document.errors.length > error_count and options.recover?
512
+ fragment = Nokogiri::HTML::DocumentFragment.parse contents
513
+ node_set = fragment.children
514
+ end
515
+ node_set
516
+ end
517
+
518
+ ####
519
+ # Set the Node's content to a Text node containing +string+. The string gets XML escaped, not interpreted as markup.
520
+ def content= string
521
+ self.native_content = encode_special_chars(string.to_s)
522
+ end
523
+
524
+ ###
525
+ # Set the parent Node for this Node
526
+ def parent= parent_node
527
+ parent_node.add_child(self)
528
+ parent_node
529
+ end
530
+
531
+ ###
532
+ # Returns a Hash of {prefix => value} for all namespaces on this
533
+ # node and its ancestors.
534
+ #
535
+ # This method returns the same namespaces as #namespace_scopes.
536
+ #
537
+ # Returns namespaces in scope for self -- those defined on self
538
+ # element directly or any ancestor node -- as a Hash of
539
+ # attribute-name/value pairs. Note that the keys in this hash
540
+ # XML attributes that would be used to define this namespace,
541
+ # such as "xmlns:prefix", not just the prefix. Default namespace
542
+ # set on self will be included with key "xmlns". However,
543
+ # default namespaces set on ancestor will NOT be, even if self
544
+ # has no explicit default namespace.
545
+ def namespaces
546
+ Hash[namespace_scopes.map { |nd|
547
+ key = ['xmlns', nd.prefix].compact.join(':')
548
+ if RUBY_VERSION >= '1.9' && document.encoding
549
+ begin
550
+ key.force_encoding document.encoding
551
+ rescue ArgumentError
552
+ end
553
+ end
554
+ [key, nd.href]
555
+ }]
556
+ end
557
+
558
+ # Returns true if this is a Comment
559
+ def comment?
560
+ type == COMMENT_NODE
561
+ end
562
+
563
+ # Returns true if this is a CDATA
564
+ def cdata?
565
+ type == CDATA_SECTION_NODE
566
+ end
567
+
568
+ # Returns true if this is an XML::Document node
569
+ def xml?
570
+ type == DOCUMENT_NODE
571
+ end
572
+
573
+ # Returns true if this is an HTML::Document node
574
+ def html?
575
+ type == HTML_DOCUMENT_NODE
576
+ end
577
+
578
+ # Returns true if this is a Text node
579
+ def text?
580
+ type == TEXT_NODE
581
+ end
582
+
583
+ # Returns true if this is a DocumentFragment
584
+ def fragment?
585
+ type == DOCUMENT_FRAG_NODE
586
+ end
587
+
588
+ ###
589
+ # Fetch the Nokogiri::HTML::ElementDescription for this node. Returns
590
+ # nil on XML documents and on unknown tags.
591
+ def description
592
+ return nil if document.xml?
593
+ Nokogiri::HTML::ElementDescription[name]
594
+ end
595
+
596
+ ###
597
+ # Is this a read only node?
598
+ def read_only?
599
+ # According to gdome2, these are read-only node types
600
+ [NOTATION_NODE, ENTITY_NODE, ENTITY_DECL].include?(type)
601
+ end
602
+
603
+ # Returns true if this is an Element node
604
+ def element?
605
+ type == ELEMENT_NODE
606
+ end
607
+ alias :elem? :element?
608
+
609
+ ###
610
+ # Turn this node in to a string. If the document is HTML, this method
611
+ # returns html. If the document is XML, this method returns XML.
612
+ def to_s
613
+ document.xml? ? to_xml : to_html
614
+ end
615
+
616
+ # Get the inner_html for this node's Node#children
617
+ def inner_html *args
618
+ children.map { |x| x.to_html(*args) }.join
619
+ end
620
+
621
+ # Get the path to this node as a CSS expression
622
+ def css_path
623
+ path.split(/\//).map { |part|
624
+ part.length == 0 ? nil : part.gsub(/\[(\d+)\]/, ':nth-of-type(\1)')
625
+ }.compact.join(' > ')
626
+ end
627
+
628
+ ###
629
+ # Get a list of ancestor Node for this Node. If +selector+ is given,
630
+ # the ancestors must match +selector+
631
+ def ancestors selector = nil
632
+ return NodeSet.new(document) unless respond_to?(:parent)
633
+ return NodeSet.new(document) unless parent
634
+
635
+ parents = [parent]
636
+
637
+ while parents.last.respond_to?(:parent)
638
+ break unless ctx_parent = parents.last.parent
639
+ parents << ctx_parent
640
+ end
641
+
642
+ return NodeSet.new(document, parents) unless selector
643
+
644
+ root = parents.last
645
+
646
+ NodeSet.new(document, parents.find_all { |parent|
647
+ root.search(selector).include?(parent)
648
+ })
649
+ end
650
+
651
+ ###
652
+ # Adds a default namespace supplied as a string +url+ href, to self.
653
+ # The consequence is as an xmlns attribute with supplied argument were
654
+ # present in parsed XML. A default namespace set with this method will
655
+ # now show up in #attributes, but when this node is serialized to XML an
656
+ # "xmlns" attribute will appear. See also #namespace and #namespace=
657
+ def default_namespace= url
658
+ add_namespace_definition(nil, url)
659
+ end
660
+ alias :add_namespace :add_namespace_definition
661
+
662
+ ###
663
+ # Set the default namespace on this node (as would be defined with an
664
+ # "xmlns=" attribute in XML source), as a Namespace object +ns+. Note that
665
+ # a Namespace added this way will NOT be serialized as an xmlns attribute
666
+ # for this node. You probably want #default_namespace= instead, or perhaps
667
+ # #add_namespace_definition with a nil prefix argument.
668
+ def namespace= ns
669
+ return set_namespace(ns) unless ns
670
+
671
+ unless Nokogiri::XML::Namespace === ns
672
+ raise TypeError, "#{ns.class} can't be coerced into Nokogiri::XML::Namespace"
673
+ end
674
+ if ns.document != document
675
+ raise ArgumentError, 'namespace must be declared on the same document'
676
+ end
677
+
678
+ set_namespace ns
679
+ end
680
+
681
+ ####
682
+ # Yields self and all children to +block+ recursively.
683
+ def traverse &block
684
+ children.each{|j| j.traverse(&block) }
685
+ block.call(self)
686
+ end
687
+
688
+ ###
689
+ # Accept a visitor. This method calls "visit" on +visitor+ with self.
690
+ def accept visitor
691
+ visitor.visit(self)
692
+ end
693
+
694
+ ###
695
+ # Test to see if this Node is equal to +other+
696
+ def == other
697
+ return false unless other
698
+ return false unless other.respond_to?(:pointer_id)
699
+ pointer_id == other.pointer_id
700
+ end
701
+
702
+ ###
703
+ # Serialize Node using +options+. Save options can also be set using a
704
+ # block. See SaveOptions.
705
+ #
706
+ # These two statements are equivalent:
707
+ #
708
+ # node.serialize(:encoding => 'UTF-8', :save_with => FORMAT | AS_XML)
709
+ #
710
+ # or
711
+ #
712
+ # node.serialize(:encoding => 'UTF-8') do |config|
713
+ # config.format.as_xml
714
+ # end
715
+ #
716
+ def serialize *args, &block
717
+ options = args.first.is_a?(Hash) ? args.shift : {
718
+ :encoding => args[0],
719
+ :save_with => args[1]
720
+ }
721
+
722
+ encoding = options[:encoding] || document.encoding
723
+ options[:encoding] = encoding
724
+
725
+ outstring = ""
726
+ if encoding && outstring.respond_to?(:force_encoding)
727
+ outstring.force_encoding(Encoding.find(encoding))
728
+ end
729
+ io = StringIO.new(outstring)
730
+ write_to io, options, &block
731
+ io.string
732
+ end
733
+
734
+ ###
735
+ # Serialize this Node to HTML
736
+ #
737
+ # doc.to_html
738
+ #
739
+ # See Node#write_to for a list of +options+. For formatted output,
740
+ # use Node#to_xhtml instead.
741
+ def to_html options = {}
742
+ to_format SaveOptions::DEFAULT_HTML, options
743
+ end
744
+
745
+ ###
746
+ # Serialize this Node to XML using +options+
747
+ #
748
+ # doc.to_xml(:indent => 5, :encoding => 'UTF-8')
749
+ #
750
+ # See Node#write_to for a list of +options+
751
+ def to_xml options = {}
752
+ options[:save_with] ||= SaveOptions::DEFAULT_XML
753
+ serialize(options)
754
+ end
755
+
756
+ ###
757
+ # Serialize this Node to XHTML using +options+
758
+ #
759
+ # doc.to_xhtml(:indent => 5, :encoding => 'UTF-8')
760
+ #
761
+ # See Node#write_to for a list of +options+
762
+ def to_xhtml options = {}
763
+ to_format SaveOptions::DEFAULT_XHTML, options
764
+ end
765
+
766
+ ###
767
+ # Write Node to +io+ with +options+. +options+ modify the output of
768
+ # this method. Valid options are:
769
+ #
770
+ # * +:encoding+ for changing the encoding
771
+ # * +:indent_text+ the indentation text, defaults to one space
772
+ # * +:indent+ the number of +:indent_text+ to use, defaults to 2
773
+ # * +:save_with+ a combination of SaveOptions constants.
774
+ #
775
+ # To save with UTF-8 indented twice:
776
+ #
777
+ # node.write_to(io, :encoding => 'UTF-8', :indent => 2)
778
+ #
779
+ # To save indented with two dashes:
780
+ #
781
+ # node.write_to(io, :indent_text => '-', :indent => 2
782
+ #
783
+ def write_to io, *options
784
+ options = options.first.is_a?(Hash) ? options.shift : {}
785
+ encoding = options[:encoding] || options[0]
786
+ if Nokogiri.jruby?
787
+ save_options = options[:save_with] || options[1]
788
+ indent_times = options[:indent] || 0
789
+ else
790
+ save_options = options[:save_with] || options[1] || SaveOptions::FORMAT
791
+ indent_times = options[:indent] || 2
792
+ end
793
+ indent_text = options[:indent_text] || ' '
794
+
795
+ config = SaveOptions.new(save_options.to_i)
796
+ yield config if block_given?
797
+
798
+ native_write_to(io, encoding, indent_text * indent_times, config.options)
799
+ end
800
+
801
+ ###
802
+ # Write Node as HTML to +io+ with +options+
803
+ #
804
+ # See Node#write_to for a list of +options+
805
+ def write_html_to io, options = {}
806
+ write_format_to SaveOptions::DEFAULT_HTML, io, options
807
+ end
808
+
809
+ ###
810
+ # Write Node as XHTML to +io+ with +options+
811
+ #
812
+ # See Node#write_to for a list of +options+
813
+ def write_xhtml_to io, options = {}
814
+ write_format_to SaveOptions::DEFAULT_XHTML, io, options
815
+ end
816
+
817
+ ###
818
+ # Write Node as XML to +io+ with +options+
819
+ #
820
+ # doc.write_xml_to io, :encoding => 'UTF-8'
821
+ #
822
+ # See Node#write_to for a list of options
823
+ def write_xml_to io, options = {}
824
+ options[:save_with] ||= SaveOptions::DEFAULT_XML
825
+ write_to io, options
826
+ end
827
+
828
+ ###
829
+ # Compare two Node objects with respect to their Document. Nodes from
830
+ # different documents cannot be compared.
831
+ def <=> other
832
+ return nil unless other.is_a?(Nokogiri::XML::Node)
833
+ return nil unless document == other.document
834
+ compare other
835
+ end
836
+
837
+ ###
838
+ # Do xinclude substitution on the subtree below node. If given a block, a
839
+ # Nokogiri::XML::ParseOptions object initialized from +options+, will be
840
+ # passed to it, allowing more convenient modification of the parser options.
841
+ def do_xinclude options = XML::ParseOptions::DEFAULT_XML, &block
842
+ options = Nokogiri::XML::ParseOptions.new(options) if Fixnum === options
843
+
844
+ # give options to user
845
+ yield options if block_given?
846
+
847
+ # call c extension
848
+ process_xincludes(options.to_i)
849
+ end
850
+
851
+ def canonicalize(mode=XML::XML_C14N_1_0,inclusive_namespaces=nil,with_comments=false)
852
+ c14n_root = self
853
+ document.canonicalize(mode, inclusive_namespaces, with_comments) do |node, parent|
854
+ tn = node.is_a?(XML::Node) ? node : parent
855
+ tn == c14n_root || tn.ancestors.include?(c14n_root)
856
+ end
857
+ end
858
+
859
+ private
860
+
861
+ def add_sibling next_or_previous, node_or_tags
862
+ impl = (next_or_previous == :next) ? :add_next_sibling_node : :add_previous_sibling_node
863
+ iter = (next_or_previous == :next) ? :reverse_each : :each
864
+
865
+ node_or_tags = coerce node_or_tags
866
+ if node_or_tags.is_a?(XML::NodeSet)
867
+ if text?
868
+ pivot = Nokogiri::XML::Node.new 'dummy', document
869
+ send impl, pivot
870
+ else
871
+ pivot = self
872
+ end
873
+ node_or_tags.send(iter) { |n| pivot.send impl, n }
874
+ pivot.unlink if text?
875
+ else
876
+ send impl, node_or_tags
877
+ end
878
+ node_or_tags
879
+ end
880
+
881
+ def to_format save_option, options
882
+ # FIXME: this is a hack around broken libxml versions
883
+ return dump_html if Nokogiri.uses_libxml? && %w[2 6] === LIBXML_VERSION.split('.')[0..1]
884
+
885
+ options[:save_with] |= save_option if options[:save_with]
886
+ options[:save_with] = save_option unless options[:save_with]
887
+ serialize(options)
888
+ end
889
+
890
+ def write_format_to save_option, io, options
891
+ # FIXME: this is a hack around broken libxml versions
892
+ return (io << dump_html) if Nokogiri.uses_libxml? && %w[2 6] === LIBXML_VERSION.split('.')[0..1]
893
+
894
+ options[:save_with] ||= save_option
895
+ write_to io, options
896
+ end
897
+
898
+ def extract_params params # :nodoc:
899
+ # Pop off our custom function handler if it exists
900
+ handler = params.find { |param|
901
+ ![Hash, String, Symbol].include?(param.class)
902
+ }
903
+
904
+ params -= [handler] if handler
905
+
906
+ hashes = []
907
+ while Hash === params.last || params.last.nil?
908
+ hashes << params.pop
909
+ break if params.empty?
910
+ end
911
+
912
+ ns, binds = hashes.reverse
913
+
914
+ ns ||= document.root ? document.root.namespaces : {}
915
+
916
+ [params, handler, ns, binds]
917
+ end
918
+
919
+ def coerce data # :nodoc:
920
+ case data
921
+ when XML::NodeSet
922
+ return data
923
+ when XML::DocumentFragment
924
+ return data.children
925
+ when String
926
+ return fragment(data).children
927
+ when Document, XML::Attr
928
+ # unacceptable
929
+ when XML::Node
930
+ return data
931
+ end
932
+
933
+ raise ArgumentError, <<-EOERR
934
+ Requires a Node, NodeSet or String argument, and cannot accept a #{data.class}.
935
+ (You probably want to select a node from the Document with at() or search(), or create a new Node via Node.new().)
936
+ EOERR
937
+ end
938
+
939
+ def implied_xpath_context
940
+ "./"
941
+ end
942
+
943
+ def inspect_attributes
944
+ [:name, :namespace, :attribute_nodes, :children]
945
+ end
946
+
947
+ def add_child_node_and_reparent_attrs node
948
+ add_child_node node
949
+ node.attribute_nodes.find_all { |a| a.name =~ /:/ }.each do |attr_node|
950
+ attr_node.remove
951
+ node[attr_node.name] = attr_node.value
952
+ end
953
+ end
954
+
955
+ end
956
+ end
957
+ end