hot questions tagged rexml - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T21:07:23Z http://stackoverflow.com/feeds/tag?tagnames=rexml&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1558179/iterative-parsing-xml 1 Iterative Parsing XML RubyNube 2009-10-13T04:26:35Z 2009-10-13T06:18:10Z <p>Just getting started with Ruby and have a newbie question re parsing XML. I'm trying REXML (yes, I know hpricot and others exist, but I am starting with REXML to learn.) The problem is how to iteratively proceed through a XML doc like this:</p> <pre><code>&lt;?xml version="1.0" ?&gt; &lt;bars&gt; &lt;bar&gt; &lt;id&gt;29&lt;/id&gt; &lt;foo&gt;Something&lt;/foo&gt; &lt;/bar&gt; &lt;bar&gt; &lt;id&gt;46&lt;/id&gt; &lt;foo&gt;Something Else&lt;/foo&gt; &lt;/bar&gt; ... &lt;/bars&gt; </code></pre> <p>I'd like to process both elements within each "bar" at the same time (dropping both fields into a database row in one operation, actually), rather than simply plucking out all the "ids" or "foos" at once across all "bars" as is often shown in tutorials. What is the best way to iterate over thru the "bar" elements? Should I .each within "bars" or should I convert the structure to arrays?</p> http://stackoverflow.com/questions/1417915/how-do-i-control-rexml-formatting-on-added-elements 0 How do I control REXML formatting on added elements? Charles Roper 2009-09-13T14:52:11Z 2009-09-16T19:00:16Z <p>I am a adding a couple of simple elements to a bunch of XML files (plists). The existing XML element I am working on looks like this:</p> <pre><code>&lt;dict&gt; &lt;key&gt;background&lt;/key&gt; &lt;string&gt;#FFFFFF&lt;/string&gt; &lt;key&gt;caret&lt;/key&gt; &lt;string&gt;#000000&lt;/string&gt; &lt;key&gt;foreground&lt;/key&gt; &lt;string&gt;#000000&lt;/string&gt; &lt;key&gt;invisibles&lt;/key&gt; &lt;string&gt;#BFBFBF&lt;/string&gt; &lt;key&gt;lineHighlight&lt;/key&gt; &lt;string&gt;#00000012&lt;/string&gt; &lt;key&gt;selection&lt;/key&gt; &lt;string&gt;#BAD6FD&lt;/string&gt; &lt;/dict&gt; </code></pre> <p>I have captured this element in an object called <code>settings</code> and I am adding new <code>&lt;key&gt;</code> and <code>&lt;string&gt;</code> elements, and adding some text to those elements. Simple enough so far:</p> <pre><code>settings.add_element('key').add_text('gutter') settings.add_element('string').add_text('#282828') </code></pre> <p>Trouble is, when I write this back out, the XML looks like this (note the last line):</p> <pre><code>&lt;dict&gt; &lt;key&gt;background&lt;/key&gt; &lt;string&gt;#FFFFFF&lt;/string&gt; &lt;key&gt;caret&lt;/key&gt; &lt;string&gt;#000000&lt;/string&gt; &lt;key&gt;foreground&lt;/key&gt; &lt;string&gt;#000000&lt;/string&gt; &lt;key&gt;invisibles&lt;/key&gt; &lt;string&gt;#BFBFBF&lt;/string&gt; &lt;key&gt;lineHighlight&lt;/key&gt; &lt;string&gt;#00000012&lt;/string&gt; &lt;key&gt;selection&lt;/key&gt; &lt;string&gt;#BAD6FD&lt;/string&gt; &lt;key&gt;gutter&lt;/key&gt;&lt;string&gt;#282828&lt;/string&gt;&lt;/dict&gt; </code></pre> <p>I am using the <a href="http://www.germane-software.com/software/XML/rexml/doc/classes/REXML/Document.html#M000502" rel="nofollow"><code>write (REXML::Document)</code></a> method to write out the XML (to $stdout at the moment):</p> <pre><code>tmtheme.write( $stdout ) </code></pre> <p>Also tried</p> <pre><code>tmtheme.write( $stdout, 2 ) </code></pre> <p>But these don't return the desired results. The following looked promising:</p> <pre><code>tmtheme.write( $stdout, 2, true ) </code></pre> <p>But this gives me a <a href="http://trac.germane-software.com/rexml/ticket/170" rel="nofollow">known error</a>. Update: just tried it on Ruby 1.9 and although I don't get the erro, it doesn't help - I still get the formatting as seen in the example above.</p> <p>Can anyone tell me how I can format the XML so that it conforms to the formatting style of the rest of the document? It doesn't necessarily need to be done with REXML.</p> http://stackoverflow.com/questions/1077844/parsing-an-xml-doc-with-tags-in-ruby 1 Parsing an xml doc with <% %> tags in ruby cloudhead 2009-07-03T05:07:20Z 2009-07-03T05:39:40Z <p>I'm looking for a way to parse an xml/html document in ruby, which contains ERB style tags <code>&lt;% %&gt;</code> with ruby code inside. REXML, the built in XML parser won't allow me to do this.</p> <p>I'm aware that I might be able to with a third party library like <code>hpricot</code>, but I'd like to avoid any external dependencies.</p> <p>Is there a way I could get REXML to be less strict about the tags? or to make it recognize this tag? Any other solution?</p> http://stackoverflow.com/questions/1141153/where-does-rails-use-rexml-lib-and-how-to-require-that-part 0 Where does Rails use REXML lib and how to require that part? snitko 2009-07-17T01:59:01Z 2009-07-17T07:10:05Z <p>I have a gem that uses some of the Rails libs, including <code>action_view</code> and <code>active_controller</code>. Though I require those libs, all tests fail when trying to call some <code>has_text?</code> method, which (as I found out) is part of<code>'rexml/element'</code> lib. Here's what I get:</p> <pre><code>undefined method `has_text?' for "&lt;b&gt;Hello,&lt;i&gt;world&lt;/b&gt;&lt;/i&gt;":String </code></pre> <p>Requiring 'rexml/element' does not solve the issue, got the same error. So, the question is - what should I require?</p> http://stackoverflow.com/questions/623255/add-xml-namespace-to-existing-document-in-ruby 0 Add XML namespace to existing document in ruby Joseph Holsten 2009-03-08T08:04:28Z 2009-08-09T14:00:03Z <p>I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this?</p> <p>Ideally I would like to use REXML for portability, but any common XML library would be okay. An ideal solution would be smart about namespace collisions.</p> <p>I have an xml document which looks like this:</p> <pre><code>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> <p>and add:</p> <pre><code>&lt;Service xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; </code></pre> <p>Yielding something equivalent to:</p> <pre><code>&lt;xrds:XRDS xmlns:xrds="xri://$xrds" xmlns="xri://$xrd*($v*2.0)" xmlns:openid="http://openid.net/xmlns/1.0"&gt; &lt;XRD&gt; &lt;Service&gt; &lt;Type&gt;http://specs.openid.net/auth/2.0/signon&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/2.0&lt;/URI&gt; &lt;/Service&gt; &lt;Service&gt; &lt;Type&gt;http://openid.net/signon/1.0&lt;/Type&gt; &lt;URI&gt;http://provider.openid.example/server/1.0&lt;/URI&gt; &lt;openid:Delegate&gt;http://example.openid.example&lt;/openid:Delegate&gt; &lt;/Service&gt; &lt;/XRD&gt; &lt;/xrds:XRDS&gt; </code></pre> http://stackoverflow.com/questions/833942/rexml-formatting-issues 0 REXML Formatting issues dagda1 2009-05-07T10:42:50Z 2009-08-14T10:26:38Z <p>Hi,</p> <p>I am using REXML to edit an xml file but have ran into difficulties with formatting.</p> <p>My original code looked like this:</p> <pre><code> file = File.new( destination) doc = REXML::Document.new file doc.elements.each("configuration/continuity2") do |element| element.attributes["islive"] = "true" element.attributes["pagetitle"] = "#{@client.page_title}" element.attributes["clientname"] = "#{@client.name}" end doc.elements.each("configuration/continuity2/plans") do |element| element.attributes["storebasedir"] = "#{@client.store_dir}" end </code></pre> <p>I first of all had to add the following code as REXML was adding single quotes instead of double quotes. I found the following via google:</p> <pre><code> REXML::Attribute.class_eval( %q^ def to_string %Q[#@expanded_name="#{to_s().gsub(/"/, '&amp;quot;')}"] end ^ ) </code></pre> <p>I also have a problem in that REXML is reformatting the document.</p> <p>are there ways to stop this?</p> <p>Cheers</p> <p>Paul</p>