mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00

http://www.germane-software.com/projects/rexml/ticket/# where '#' is the issue or ticket number. * Fixes ticket:3 (Issue38 in Roundup.) However, this needs further testing. * Fixed a couple of bugs in the SAX2 parser, plus a bunch of other changes I don't remember. * More XPath ordering testing added * Fixed the documentation WRT the raw mode of text nodes (ticket:4) * Fixes roundup issue 43: substring-after bug. See: http://www.germane-software.com/cgi-bin/roundup/rexml/issue43 * Fixed issue44, Element#xpath * Patch submitted by an anonymous doner to allow parsing of Tempfiles. I was hoping that, by now, that whole Source thing would have been changed to use duck typing and avoid this sort of issue... but in the meantime, the patch has been applied. * Fixes ticket:30, XPath default namespace bug. The fix was provided by Lucas Nussbaum. * Aliases #size to #length, as per zdennis's request. * Fixes typo from previous commit * Fixes ticket #32 (and adds a unit test) * Merges a user-contributed patch for issue #40 * Changes Date, Version, and Copyright to upper case, to avoid conflicts with the Date class. * Minor, yet incomplete, documentation changes. * Resolves issue #34 (SAX parser change makes it impossible to parse IO feeds.) * Moves parser.source.position() to parser.position() * Improves the build script (less work for me to package a distribution) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
26 lines
1.2 KiB
Ruby
26 lines
1.2 KiB
Ruby
# REXML is an XML toolkit for Ruby[http://www.ruby-lang.org], in Ruby.
|
|
#
|
|
# REXML is a _pure_ Ruby, XML 1.0 conforming,
|
|
# non-validating[http://www.w3.org/TR/2004/REC-xml-20040204/#sec-conformance]
|
|
# toolkit with an intuitive API. REXML passes 100% of the non-validating Oasis
|
|
# tests[http://www.oasis-open.org/committees/xml-conformance/xml-test-suite.shtml],
|
|
# and provides tree, stream, SAX2, pull, and lightweight APIs. REXML also
|
|
# includes a full XPath[http://www.w3c.org/tr/xpath] 1.0 implementation. Since
|
|
# Ruby 1.8, REXML is included in the standard Ruby distribution.
|
|
#
|
|
# Main page:: http://www.germane-software.com/software/rexml
|
|
# Author:: Sean Russell <serATgermaneHYPHENsoftwareDOTcom>
|
|
# Version:: 3.1.3.1
|
|
# Date:: 2005/364
|
|
#
|
|
# This API documentation can be downloaded from the REXML home page, or can
|
|
# be accessed online[http://www.germane-software.com/software/rexml_doc]
|
|
#
|
|
# A tutorial is available in the REXML distribution in docs/tutorial.html,
|
|
# or can be accessed
|
|
# online[http://www.germane-software.com/software/rexml/docs/tutorial.html]
|
|
module REXML
|
|
Copyright = "Copyright © 2001-2005 Sean Russell <ser@germane-software.com>"
|
|
Date = "2005/364"
|
|
Version = "3.1.3.1"
|
|
end
|