[MacRuby] #239: NSXML classes cannot be modified properly
#239: NSXML classes cannot be modified properly ------------------------------+--------------------------------------------- Reporter: kourge@… | Owner: lsansonetti@… Type: defect | Status: new Priority: major | Milestone: MacRuby 0.4 Component: MacRuby | Keywords: ------------------------------+--------------------------------------------- It would appear that NSXML Cocoa classes (such as NSXMLDocument and NSXMLNode) can be opened properly, but modifications made to them fail silently. Example: {{{
doc = NSXMLDocument.alloc.initWithXMLString "<root></root>", options: 0, error: nil => #<NSXMLDocument:0x800634d60> doc.nodesForXPath("root", error: nil) => [#<NSXMLElement:0x800634de0>] doc.nodesForXPath("root", error: nil)[0].XMLString => "<root></root>" class NSXMLDocument def find(path); self.nodesForXPath(path, error: nil); end end => nil doc.find "root" NoMethodError: undefined method `find' for #<NSXMLDocument:0x800634d60> from (irb):7 from /usr/local/bin/macirb:12:in `<main>'
}}}
-- Ticket URL: <http://www.macruby.org/trac/ticket/239> MacRuby <http://macruby.org/>
#239: NSXML classes cannot be modified properly ------------------------------+--------------------------------------------- Reporter: kourge@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: major | Milestone: MacRuby 0.5 Component: MacRuby | Resolution: fixed Keywords: | ------------------------------+--------------------------------------------- Changes (by lsansonetti@…): * status: new => closed * resolution: => fixed * milestone: MacRuby 0.4 => MacRuby 0.5 Comment: Seems to be fixed in trunk. {{{ $ cat t.rb doc = NSXMLDocument.alloc.initWithXMLString "<root></root>", options: 0, error: nil doc.nodesForXPath("root", error: nil) doc.nodesForXPath("root", error: nil)[0].XMLString class NSXMLDocument def find(path); self.nodesForXPath(path, error: nil); end end p doc.find "root" $ ./miniruby t.rb [#<NSXMLElement:0x2000241a0>] }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/239#comment:2> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby