hot questions tagged rexml - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T21:07:23Zhttp://stackoverflow.com/feeds/tag?tagnames=rexml&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1558179/iterative-parsing-xml1Iterative Parsing XMLRubyNube2009-10-13T04:26:35Z2009-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><?xml version="1.0" ?>
<bars>
<bar>
<id>29</id>
<foo>Something</foo>
</bar>
<bar>
<id>46</id>
<foo>Something Else</foo>
</bar>
...
</bars>
</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-elements0How do I control REXML formatting on added elements?Charles Roper2009-09-13T14:52:11Z2009-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><dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#BAD6FD</string>
</dict>
</code></pre>
<p>I have captured this element in an object called <code>settings</code> and I am adding new <code><key></code> and <code><string></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><dict>
<key>background</key>
<string>#FFFFFF</string>
<key>caret</key>
<string>#000000</string>
<key>foreground</key>
<string>#000000</string>
<key>invisibles</key>
<string>#BFBFBF</string>
<key>lineHighlight</key>
<string>#00000012</string>
<key>selection</key>
<string>#BAD6FD</string>
<key>gutter</key><string>#282828</string></dict>
</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-ruby1Parsing an xml doc with <% %> tags in rubycloudhead2009-07-03T05:07:20Z2009-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><% %></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-part0Where does Rails use REXML lib and how to require that part?snitko2009-07-17T01:59:01Z2009-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 "<b>Hello,<i>world</b></i>":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-ruby0Add XML namespace to existing document in rubyJoseph Holsten2009-03-08T08:04:28Z2009-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><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
<p>and add:</p>
<pre><code><Service
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</code></pre>
<p>Yielding something equivalent to:</p>
<pre><code><xrds:XRDS
xmlns:xrds="xri://$xrds"
xmlns="xri://$xrd*($v*2.0)"
xmlns:openid="http://openid.net/xmlns/1.0">
<XRD>
<Service>
<Type>http://specs.openid.net/auth/2.0/signon</Type>
<URI>http://provider.openid.example/server/2.0</URI>
</Service>
<Service>
<Type>http://openid.net/signon/1.0</Type>
<URI>http://provider.openid.example/server/1.0</URI>
<openid:Delegate>http://example.openid.example</openid:Delegate>
</Service>
</XRD>
</xrds:XRDS>
</code></pre>
http://stackoverflow.com/questions/833942/rexml-formatting-issues0REXML Formatting issuesdagda12009-05-07T10:42:50Z2009-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(/"/, '&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>