Tagged Questions
5
votes
2answers
510 views
Ruby convert single quotes to double quotes in XML
Despite the fact that XML attributs can be defined using single or double quotes, my user is trying to integrate my software with another one that will not accept single quoted attribut values.
I ...
2
votes
2answers
247 views
REXML is wrapping long lines. How do I switch that off?
I am creating an XML document using REXML
File.open(xmlFilename,'w') do |xmlFile|
xmlDoc = Document.new
# add stuff to the document...
xmlDoc.write(xmlFile,4)
end
Some of the elements ...
1
vote
1answer
34 views
Ruby XML syntax error
I am trying to evaluate 4 XML files that I create from a mysql database, I want to output the text of those XML field as a pairs of data so I can create a hash. (Ex: "Total Builds, 359") I am pretty ...
1
vote
1answer
80 views
Ruby REXML confusion
Hi I am trying to parse data out of an XML file I exported from mysql command line tool. I am following a tutorial located here: http://www.germane-software.com/software/rexml/docs/tutorial.html to ...
1
vote
1answer
123 views
Injecting an XML fragment into the current document from an external file
I'm currently parsing an XML file using REXML and trying to come up with a way of inserting an XML fragment from an internal file.
Currently, I'm using some logic like the following:
...
1
vote
1answer
208 views
How do I properly insert an XML document into another using rexml?
I have managed to figure out the primary part of my question, "how do I insert one XML document into another?" The result I get will work but the printed XML is missing a linefeed.
s = <<EOF
...
1
vote
1answer
192 views
Iterative Parsing XML
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 ...
1
vote
1answer
345 views
Parsing an xml doc with <% %> tags in ruby
I'm looking for a way to parse an xml/html document in ruby, which contains ERB style tags <% %> with ruby code inside. REXML, the built in XML parser won't allow me to do this.
I'm aware that ...
1
vote
1answer
674 views
Add XML namespace to existing document in ruby
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?
Ideally I would like to use REXML for portability, but any common XML ...
0
votes
2answers
136 views
Ruby REXML: Get Value Of An XML Element
I am trying to put the values of some xml elements into an array using rexml. Here is an example of what I am doing:
doc = Document.new("<data><title>This is one ...
0
votes
1answer
15 views
I want to reprint the modified xml after deleting entire child node
<product>
<book>
<id>111</id>
<name>xxx</name>
</book>
<pen>
<id>222</id>
<name>yyy</name>
</pen>
...
0
votes
1answer
107 views
Parse XML POST data with Rails
I'm using REXML to parse through some XML data sent via POST. The XML is sent correctly formatted with "&" sent as "&". However, when I try to parse it, I had problems like the & ...
0
votes
1answer
97 views
ruby rexml get element child
I need to parse a xml document in ruby, using rexml, that has the following structure:
<events>
<event>
<title>Best NYC New Year's Party</title>
...
0
votes
1answer
42 views
REXML: Equivalent of javascript-DOM's .innerHTML=
Is there a way to pass a string to an REXML::Element in such a way that the string will be parsed as XML, and the elements so found inserted into the target?
0
votes
2answers
68 views
How do I replace one node in an XML file with a node from another XML file?
I have two XML files. The first is:
<a>
<b>
<c1>1</c1>
</b>
<b>
<c1>2</c1>
</b>
<b "id" = "true">
...
0
votes
1answer
124 views
How to prevent REXML from changing encoding
I'm trying to edit a xml file with Ruby and REXML but after writing the file back to disk the encoding is changed. But i need to keep the original encoding of the file!
This is what my xml looks ...
0
votes
4answers
654 views
How to get the absolute node path in XML using XPath and Ruby?
Basically I want to extract the absolute path from a node to root and report it to the console or a file. Below is the current solution:
require "rexml/document"
include REXML
def get_path(xml_doc, ...
0
votes
1answer
371 views
How do I validate specific attributes in XML using Ruby's REXML?
I'm trying to read some XML I've retrieved from a web service, and validate a specific attribute within the XML.
This is the XML up to the tag that I need to validate:
<s:Envelope ...
0
votes
1answer
71 views
Renaming XML elements in Ruby?
How does one go about renaming an XML element using REXML or another Ruby library?
Thanks for any advice.
0
votes
1answer
408 views
Rexml - Parsing Data
I have a XML File in the following format:
<?xml version='1.0' encoding='UTF-8'?>
<entry xmlns='http://www.w3.org/2005/Atom' ...
0
votes
1answer
244 views
Deleting all child nodes and text of an element
With reXml using Ruby, I have a particular element and I want to completely clear out all its child nodes and text.
I just cannot work out how to do this.
Given this :
<ug>
<oog>
...
0
votes
2answers
574 views
Ruby Unit Test : Is this a Valid (well-formed) XML Doc?
I'm creating an XML document: I want to unit test at least to make sure it's well-formed.
So far, I have only been able to approximate this , by using the 'hasElements' in the REXML library.
Is there ...
0
votes
1answer
712 views
How do I control REXML formatting on added elements?
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:
<dict>
<key>background</key>
...