File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ v0.0.11 Monday Sept. 15
2+ - fixed problem in client/response dealing with libxml call that was missed during recent libxml .5+ support corrections.
3+ - Thank you to Bjorn Hjelle for pointing out the above oversight.
4+
5+ v0.0.10 Friday Sept. 12
6+ - Changed providers functionality to support proper date formatting
17v0.0.9 Tue Aug 12, 2008
28- change to xpath.rb file to add support to libxml-ruby 0.8+ branch.
39
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def to_s
2222
2323 # returns REXML::Element nodes for each description section
2424 # if the OAI::Client was configured to use libxml then you will
25- # instead get a XML::Node object.
25+ # instead get a LibXML:: XML::Node object.
2626 def descriptions
2727 return xpath_all ( doc , './/Identify/description' )
2828 end
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ def initialize(doc)
1515 when 'REXML::Element'
1616 message = error . text
1717 code = error . attributes [ 'code' ]
18- when 'XML::Node'
18+ when 'LibXML:: XML::Node'
1919 message = error . content
20- code = error . property ( 'code' )
20+ code = error . attributes ( 'code' )
2121 end
2222 raise OAI ::Exception . new ( message , code )
2323 end
You can’t perform that action at this time.
0 commit comments