pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/textproc/ruby-libxml Update libxml-ruby to 1.1.3.
details: https://anonhg.NetBSD.org/pkgsrc/rev/9a656671415e
branches: trunk
changeset: 393002:9a656671415e
user: obache <obache%pkgsrc.org@localhost>
date: Fri May 15 09:31:03 2009 +0000
description:
Update libxml-ruby to 1.1.3.
== 1.1.3 / 2009-03-18 Charlie Savage
* Improve performance 10 to 20% by turning on libxml2's dictionary
feature that allows parsers to reuse previously parsed strings.
* Fix XML::Node#remove! to work correctly with libxml's dictionary feature.
* Correctly set up parser context options.
* Simplify DOM modification code (Node#next=, Node#prev=, Node#sibling=) and
update documenation.
* Deprecated Node#add_child and Node#child=, use Node#<< instead
* Fix documentation for Node#<<
* Added Document#import to enable moving nodes from one document
to another document.
== 1.1.2 / 2009-03-12 Charlie Savage
* Added XML::Node#inner_xml helper method.
* Fix segmentation that could occur when calling the mark function on a
previously freed node.
== 1.1.1 / 2009-03-10 Charlie Savage
* Fix - Only include extra html parser context methods for versions of libxml
older than 2.6.27.
== 1.1.0 / 2009-03-09 Charlie Savage
* Fix bug caused by the mark function being called on partially initialized
attributes.
* Revert back to libxml2's internal memory manager.
== 1.0.0 / 2009-03-05 Charlie Savage
* OS X (Charlie Savage). Update bindings to support the default installed
version of libxml2 (2.6.16) on OS X 10.5 and the latest version available
via MacPorts.
== 0.9.9 / 2009-03-05 Charlie Savage
* Ruby 1.9.1 support (Charlie Savage). libxml-ruby now compiles and runs on eith
er
1.8.6 and 1.9.1. With 1.8.6 all tests should pass while on 1.9.1 all but
for encoding tests pass. The port to Ruby 1.9.1 revealed two memory
allocation bugs (one with dtds, one with nodes) which are now fixed.
* Better OS X support (Joe Khoobyar). The default version of libxml2
on OS X 10.5 is fairly old, resulting in this link error:
NSLinkModule() error
dyld: Symbol not found: _htmlNewParserCtxt
This can be fixed by using MacPorts to get a newer version of libxml2.
To make use of MacPorts, the build script has been updated to use xml2-config.
This can be fine-tuned using the new --with-xml2-config / --without-xml2-confi
g
options to extconf.rb (default is --without-xml2-config to match existing beh
avior).
* Greatly reduced memory usage (Joe Khoobyar).
See http://rubyforge.org/pipermail/libxml-devel/2009-February/001375.html.
* Add Document#xhtml? and document#node_type methods (Joe Khoobyar)
* Add XPath::Object#last (Joe Khoobyar)
* Provide finer control over CDATA nodes on a parser by parser basis (Joe Khoob
yar).
* Bug fix - Namespaces were incorrectly merged with attributes in the new sax2
handler (Charlie Savage).
* Bug fix - Support iterating over nodes and attributes even with blocks
that call remove! (Charlie Savage)
* Bug fix - If reader.node is NULL, return nil instead of crashing (Charlie Sava
ge)
* Bug fix - Dtd's owned by documents were freed twice in some circumstances (Joe
Khoobyar).
* Bug fix - Fix output escaping on attributes nodes (Joe Khoobyar).
* Bug fix - Make sure IO objects are not garbage collected when used
as parser sources (Charlie Savage).
== 0.9.8 / 2009-1-24 Charlie Savage
* Refactored XML::Parser, XML::HTMLParser, XML::SaxParser and
XML::Reader to have consistent APIs. All the parsers
now take a context object in their constructors, allowing fine
grained control over the parsers for advanced use cases. These
API changes are backwards compatible except
for XML::Reader, which now takes an optional hash table as a
second parameter in its various constructors versus an optional
boolean value.
* Updated all APIs to use the encoding constants defined
in XML::Encoding versus string values. This API change
is not backwards compatible.
* Added support for attribute declarations in DTD's via the new
XML::AttrDecl class (Len Lattanzi)
* Support libxml's content escaping capabilities for text nodes by
wrapping libxml's "xmlStringText" and "xmlStringTextNoenc"
(Joe Khoobyar).
* Updated XML::Reader#read API to return true if a node was read,
false if node was not read and raises an exception on an error.
Previously #read returned 1 if a node was read, 0 if a node was
not read and -1 for an error. This change is not backwards
compatible, but provides a more natural interface for Ruby by
allowing code like this:
while reader.read
# do stuff
end
* Changed XML::Error exception objects to return copies of nodes that
cause parse errors instead of the original node. This prevents
segmentation faults when the error is reraised.
* Added XML::Reader#node method.
* Fixed compile errors on OS X which uses an older version of libxml.
* Fixed memory leak when performing XPath searches.
* Fixed rdocs.
* Don't override libxml's default settings for entity substitution and
loading external DTDs. This may break some code - you may need to
add in a call to XML.default_substitute_entities = true or
XML.default_load_external_dtd = true.
== 0.9.7 / 2008-12-08 Charlie Savage
* Added SAX2 support. SAX handlers now define two new callbacks,
on_start_element_ns and on_end_element_ns methods. These
new callbacks support namespaces, making them superior to the older
callbacks on_start_element and on_end_element methods. The old callbacks
are still supported, but may be deprecated in the future depending
on community feedback.
* Added SAX support for libxml's structured error handling.
That menas sax handlers now define a new callback, on_error,
which takes one parameter, an instance of XML::Error. The older
on_parser_error, on_parser_warning and on_parser_fatal_error
callbacks are no longer suported so you must port your code.
Note that the older callbacks took one string parameter, instead of
an XML::Error object.
* Experimental work-around for libxml error handling bug - see
http://mail.gnome.org/archives/xml/2008-December/msg00014.html
for more information.
* Fix compilation bugs on Solaris.
* Fix Rdoc compilation bug.
== 0.9.6 / 2008-12-08 Charlie Savage
* Refactored namespace handling. The existing, and inconsistent,
namespace methods defined on XML::Node have been deprecated.
They have been replaced by a the new XML::Namespaces class.
Use this class to inspect a node's namespace, its default
namespace, its namespace definitions and which namespaces
are in scope. It can be accessed via the the
XML::Node#namespaces method.
* Rationalized XML::Document#save, XML::Document#to_s and
XML::Node#to_s to take an optional hash table of parameters
that control how output is generated. Supported parameters
include setting indentation on or off, the indentation level
and the output encoding. This is an API change and may break
existing calls to XML::Document#save. However, the previous
API was broken - setting the encoding resulted in an error so
its unlikely anyone is using it.
* Rationalized XML::Document#debug, XML::Node#debug, XML::XPath::XPathObject#Deb
ug.
* Deprecated a number of duplicate dump* and debug_* methods in
XML::Document and XML::Node.
* Additional Ruby 1.9.1 compatability fixes.
* Cleaned up header file guards.
== 0.9.5 / 2008-11-29 Charlie Savage
* Ruby 1.9.1 preview release compatability (Felipe Contreras)
* Update Node#remove! to return the removed node and to set
its document to nil. This allows the node to be either
moved to another document, another part of the same document
or to be freed on the next garbage collection once its
references have gone out of scope.
* Fix bug where XPathExpression#compile mistakenly overwrote
RegExp#compile.
* Update Node to use standard ruby allocators and initializers.
* Update HTML parser to be more forgiving of invalid documents.
* Update include paths for Darwin Ports on OS X.
* Updated C code base to use BSD/Allman style
== 0.9.4 / 2008-11-24 Charlie Savage
* Update HTML parser so that it can read files, strings and io
streams.
* Update HTML parser to support user specified encodings.
* Additional C code cleanup.
== 0.9.3 / 2008-11-22 Charlie Savage
* Fixed segmentation fault caused by documents being freed
before xpath results that referenced the document (take 2).
* Allowed sax parser to use io stream
* Combined encoding and input classes
* Cleaned up C code - removed remaining legacy structures,
added static to most methods, changed C namespace from ruby_xml
to rxml
== 0.9.2 / 2008-11-19 Charlie Savage
* Add support for compiled XPath expressions (donated by Pavel Valodzka)
* Fixes for compiling on OS X 10.5.4 and 10.5.5
== 0.9.1 / 2008-11-18 Charlie Savage
* Expose LibXML's encoding support via a new Encoding object.
* Revamp error handling to be much easier to use. Errors are now
wrapped by the new XML::Error class and are thrown as exceptions
when it is appropriate.
* Fixed segmentation fault caused by documents being freed
before xpath results that referenced the document.
* Add Node#register_default_namespace to simplify default namespace handling.
* Significantly improve documentation
* A number of bug fixes and patches.
== 0.9.0 / 2008-11-18 Charlie Savage
* Version 0.9.0 was removed due to packaging errors.
diffstat:
textproc/ruby-libxml/Makefile | 5 +-
textproc/ruby-libxml/PLIST | 189 ++++++++++++++---------------------------
textproc/ruby-libxml/distinfo | 8 +-
3 files changed, 72 insertions(+), 130 deletions(-)
diffs (truncated from 326 to 300 lines):
diff -r dceeffc7d3a7 -r 9a656671415e textproc/ruby-libxml/Makefile
--- a/textproc/ruby-libxml/Makefile Fri May 15 09:03:53 2009 +0000
+++ b/textproc/ruby-libxml/Makefile Fri May 15 09:31:03 2009 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2008/07/29 09:58:39 seb Exp $
+# $NetBSD: Makefile,v 1.5 2009/05/15 09:31:03 obache Exp $
-DISTNAME= libxml-ruby-0.8.3
+DISTNAME= libxml-ruby-1.1.3
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/ruby-//}
-#PKGREVISION= 1
CATEGORIES= textproc
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
diff -r dceeffc7d3a7 -r 9a656671415e textproc/ruby-libxml/PLIST
--- a/textproc/ruby-libxml/PLIST Fri May 15 09:03:53 2009 +0000
+++ b/textproc/ruby-libxml/PLIST Fri May 15 09:31:03 2009 +0000
@@ -1,196 +1,151 @@
-@comment $NetBSD: PLIST,v 1.3 2008/07/29 09:58:39 seb Exp $
+@comment $NetBSD: PLIST,v 1.4 2009/05/15 09:31:03 obache Exp $
${GEM_HOME}/cache/libxml-ruby-${PKGVERSION}.gem
${GEM_LIBDIR}/.require_paths
${GEM_LIBDIR}/CHANGES
${GEM_LIBDIR}/LICENSE
-${GEM_LIBDIR}/RAKEFILE
${GEM_LIBDIR}/README
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Attr.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Attributes.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Document.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Dtd.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Error.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/HTMLParser.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/InputCallbacks.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/NS.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Node.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Node/FailedModify.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Node/Set.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Node/SetNamespace.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Node/UnknownType.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Parser.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Parser/Context.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Parser/ParseError.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Reader.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/RelaxNG.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/SaxParser.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Schema.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/State.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/Tree.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XInclude.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XInclude/Error.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XMLParserOptions.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPath.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPath/Context.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPath/InvalidPath.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPath/Object.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer/Context.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer/Context/InvalidPath.html
-${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer/InvalidExpression.html
-${GEM_LIBDIR}/doc/rdoc/classes/singleton.html
-${GEM_LIBDIR}/doc/rdoc/created.rid
-${GEM_LIBDIR}/doc/rdoc/files/CHANGES.html
-${GEM_LIBDIR}/doc/rdoc/files/LICENSE.html
-${GEM_LIBDIR}/doc/rdoc/files/README.html
-${GEM_LIBDIR}/doc/rdoc/files/VERSION.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/cbg_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/libxml_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_attr_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_attributes_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_document_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_dtd_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_html_parser_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_input_cbg_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_node_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_node_set_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_ns_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_parser_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_parser_context_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_reader_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_relaxng_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_sax_parser_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_schema_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_state_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xinclude_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xpath_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xpath_context_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xpath_object_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xpointer_c.html
-${GEM_LIBDIR}/doc/rdoc/files/ext/libxml/ruby_xml_xpointer_context_c.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/attr_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/attributes_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/document_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/node_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/node_set_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/parser_options_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/parser_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/properties_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml/tree_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/libxml_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/xml/libxml_rb.html
-${GEM_LIBDIR}/doc/rdoc/files/lib/xml_rb.html
-${GEM_LIBDIR}/doc/rdoc/fr_class_index.html
-${GEM_LIBDIR}/doc/rdoc/fr_file_index.html
-${GEM_LIBDIR}/doc/rdoc/fr_method_index.html
-${GEM_LIBDIR}/doc/rdoc/index.html
-${GEM_LIBDIR}/doc/rdoc/rdoc-style.css
-${GEM_LIBDIR}/ext/libxml/cbg.c
+${GEM_LIBDIR}/Rakefile
+${GEM_LIBDIR}/doc/css/normal.css
+${GEM_LIBDIR}/doc/img/raze-tiny.png
+${GEM_LIBDIR}/doc/img/red-cube.jpg
+${GEM_LIBDIR}/doc/img/xml-ruby.png
+${GEM_LIBDIR}/doc/index.xml
+${GEM_LIBDIR}/doc/install.xml
+${GEM_LIBDIR}/doc/layout.rhtml
+${GEM_LIBDIR}/doc/layout.xsl
+${GEM_LIBDIR}/doc/license.xml
+${GEM_LIBDIR}/doc/log/changelog.xml
+${GEM_LIBDIR}/doc/log/changelog.xsl
+${GEM_LIBDIR}/ext/libxml/build.log
${GEM_LIBDIR}/ext/libxml/extconf.rb
${GEM_LIBDIR}/ext/libxml/libxml.c
${GEM_LIBDIR}/ext/libxml/ruby_libxml.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_attr.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_attr.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_attr_decl.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_attr_decl.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_attributes.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_attributes.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_cbg.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_document.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_document.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_dtd.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_dtd.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_encoding.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_encoding.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_error.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_error.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser_context.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser_context.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser_options.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_html_parser_options.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_input_cbg.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_input_cbg.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_io.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_io.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_namespace.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_namespace.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_namespaces.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_namespaces.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_node.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_node.h
-${GEM_LIBDIR}/ext/libxml/ruby_xml_node_set.c
-${GEM_LIBDIR}/ext/libxml/ruby_xml_node_set.h
-${GEM_LIBDIR}/ext/libxml/ruby_xml_ns.c
-${GEM_LIBDIR}/ext/libxml/ruby_xml_ns.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_parser.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_parser.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_parser_context.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_parser_context.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_parser_options.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_parser_options.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_reader.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_reader.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_relaxng.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_relaxng.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_sax2_handler.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_sax2_handler.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_sax_parser.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_sax_parser.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_schema.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_schema.h
-${GEM_LIBDIR}/ext/libxml/ruby_xml_state.c
-${GEM_LIBDIR}/ext/libxml/ruby_xml_state.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_version.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_xinclude.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_xinclude.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_context.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_context.h
+${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_expression.c
+${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_expression.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_object.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpath_object.h
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpointer.c
${GEM_LIBDIR}/ext/libxml/ruby_xml_xpointer.h
-${GEM_LIBDIR}/ext/libxml/ruby_xml_xpointer_context.c
-${GEM_LIBDIR}/ext/libxml/ruby_xml_xpointer_context.h
-${GEM_LIBDIR}/ext/libxml/sax_parser_callbacks.inc
-${GEM_LIBDIR}/ext/libxml/version.h
${GEM_LIBDIR}/ext/mingw/Rakefile
+${GEM_LIBDIR}/ext/mingw/build.rake
${GEM_LIBDIR}/ext/vc/libxml_ruby.sln
-${GEM_LIBDIR}/ext/vc/libxml_ruby.vcproj
${GEM_LIBDIR}/lib/libxml.rb
${GEM_LIBDIR}/lib/libxml/attr.rb
+${GEM_LIBDIR}/lib/libxml/attr_decl.rb
${GEM_LIBDIR}/lib/libxml/attributes.rb
${GEM_LIBDIR}/lib/libxml/document.rb
+${GEM_LIBDIR}/lib/libxml/error.rb
+${GEM_LIBDIR}/lib/libxml/hpricot.rb
+${GEM_LIBDIR}/lib/libxml/html_parser.rb
+${GEM_LIBDIR}/lib/libxml/namespace.rb
+${GEM_LIBDIR}/lib/libxml/namespaces.rb
${GEM_LIBDIR}/lib/libxml/node.rb
-${GEM_LIBDIR}/lib/libxml/node_set.rb
+${GEM_LIBDIR}/lib/libxml/ns.rb
${GEM_LIBDIR}/lib/libxml/parser.rb
-${GEM_LIBDIR}/lib/libxml/parser_options.rb
${GEM_LIBDIR}/lib/libxml/properties.rb
+${GEM_LIBDIR}/lib/libxml/reader.rb
+${GEM_LIBDIR}/lib/libxml/sax_callbacks.rb
+${GEM_LIBDIR}/lib/libxml/sax_parser.rb
${GEM_LIBDIR}/lib/libxml/tree.rb
+${GEM_LIBDIR}/lib/libxml/xpath_object.rb
${GEM_LIBDIR}/lib/libxml_ruby.${RUBY_DLEXT}
${GEM_LIBDIR}/lib/xml.rb
${GEM_LIBDIR}/lib/xml/libxml.rb
${GEM_LIBDIR}/setup.rb
${GEM_LIBDIR}/test/etc_doc_to_s.rb
-${GEM_LIBDIR}/test/ets_copy_bug.rb
-${GEM_LIBDIR}/test/ets_copy_bug3.rb
${GEM_LIBDIR}/test/ets_doc_file.rb
${GEM_LIBDIR}/test/ets_doc_to_s.rb
${GEM_LIBDIR}/test/ets_gpx.rb
${GEM_LIBDIR}/test/ets_node_gc.rb
${GEM_LIBDIR}/test/ets_test.xml
${GEM_LIBDIR}/test/ets_tsr.rb
+${GEM_LIBDIR}/test/model/atom.xml
+${GEM_LIBDIR}/test/model/bands.xml
${GEM_LIBDIR}/test/model/books.xml
-${GEM_LIBDIR}/test/model/default_validation_bug.rb
${GEM_LIBDIR}/test/model/merge_bug_data.xml
+${GEM_LIBDIR}/test/model/ruby-lang.html
${GEM_LIBDIR}/test/model/rubynet.xml
${GEM_LIBDIR}/test/model/rubynet_project
-${GEM_LIBDIR}/test/model/saxtest.xml
${GEM_LIBDIR}/test/model/shiporder.rnc
${GEM_LIBDIR}/test/model/shiporder.rng
${GEM_LIBDIR}/test/model/shiporder.xml
${GEM_LIBDIR}/test/model/shiporder.xsd
-${GEM_LIBDIR}/test/model/simple.xml
${GEM_LIBDIR}/test/model/soap.xml
${GEM_LIBDIR}/test/model/xinclude.xml
+${GEM_LIBDIR}/test/tc_attr.rb
+${GEM_LIBDIR}/test/tc_attr_decl.rb
${GEM_LIBDIR}/test/tc_attributes.rb
${GEM_LIBDIR}/test/tc_deprecated_require.rb
${GEM_LIBDIR}/test/tc_document.rb
${GEM_LIBDIR}/test/tc_document_write.rb
${GEM_LIBDIR}/test/tc_dtd.rb
+${GEM_LIBDIR}/test/tc_error.rb
${GEM_LIBDIR}/test/tc_html_parser.rb
+${GEM_LIBDIR}/test/tc_namespace.rb
+${GEM_LIBDIR}/test/tc_namespaces.rb
${GEM_LIBDIR}/test/tc_node.rb
-${GEM_LIBDIR}/test/tc_node_attr.rb
${GEM_LIBDIR}/test/tc_node_cdata.rb
${GEM_LIBDIR}/test/tc_node_comment.rb
${GEM_LIBDIR}/test/tc_node_copy.rb
${GEM_LIBDIR}/test/tc_node_edit.rb
-${GEM_LIBDIR}/test/tc_node_set.rb
-${GEM_LIBDIR}/test/tc_node_set2.rb
${GEM_LIBDIR}/test/tc_node_text.rb
+${GEM_LIBDIR}/test/tc_node_write.rb
${GEM_LIBDIR}/test/tc_node_xlink.rb
${GEM_LIBDIR}/test/tc_parser.rb
${GEM_LIBDIR}/test/tc_parser_context.rb
@@ -200,10 +155,11 @@
${GEM_LIBDIR}/test/tc_sax_parser.rb
${GEM_LIBDIR}/test/tc_schema.rb
${GEM_LIBDIR}/test/tc_traversal.rb
-${GEM_LIBDIR}/test/tc_well_formed.rb
${GEM_LIBDIR}/test/tc_xinclude.rb
+${GEM_LIBDIR}/test/tc_xml.rb
${GEM_LIBDIR}/test/tc_xpath.rb
${GEM_LIBDIR}/test/tc_xpath_context.rb
+${GEM_LIBDIR}/test/tc_xpath_expression.rb
${GEM_LIBDIR}/test/tc_xpointer.rb
${GEM_LIBDIR}/test/test_suite.rb
${GEM_HOME}/specifications/libxml-ruby-${PKGVERSION}.gemspec
@@ -216,21 +172,8 @@
@dirrm ${GEM_LIBDIR}/ext/mingw
@dirrm ${GEM_LIBDIR}/ext/libxml
@dirrm ${GEM_LIBDIR}/ext
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files/lib/xml
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files/lib/libxml
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files/lib
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files/ext/libxml
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files/ext
-@dirrm ${GEM_LIBDIR}/doc/rdoc/files
-@dirrm ${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer/Context
-@dirrm ${GEM_LIBDIR}/doc/rdoc/classes/LibXML/XML/XPointer
Home |
Main Index |
Thread Index |
Old Index