Tagged Questions
5
votes
2answers
509 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 ...
2
votes
4answers
330 views
Getting elements in order with REXML XPath
I'd like to iterate through all the <HeadA> and <HeadB> elements in an XML file, and add a unique id to each. The approach I've tried so far is:
@xml.each_element('//HeadA | //HeadB') do ...
1
vote
1answer
34 views
REXML - Having trouble asserting a value is present in XML response
I got help here this morning using REXML and the answer helped me understand more about it. However I've encountered another problem and can't seem to figure it out.
My response is like this:
...
1
vote
1answer
76 views
REXML - How to extract a single element
I am writing some acceptance tests in ruby which involve asserting the presence of values in response XML.
My XML is like this:
<?xml version="1.0"?>
<file xmlns:dvi=xxxxx>
...
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
79 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
66 views
Ruby RSS — Private method send called for RSS:REXMLListener
I am trying to integrate a RSS parser into my IRC bot, and i've found some simple code to do so online, however, if i put this code in the bot, I get this:
Error: private method `send' called for ...
1
vote
4answers
212 views
REXML fails to select from attribute. Bug or incorrect XPath?
I try to select an element from an SVG document by a special attribute.
I set up a simple example.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg ...
1
vote
0answers
282 views
XSLT transformations in Ruby and JRuby
Simple question: are there any solid XSLT libraries that work in both Ruby and JRuby?
REXML works in both, but does not have XSLT support.
ruby-xslt doesn't work in JRuby.
The latest Nokogiri betas ...
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
191 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
2answers
342 views
REXML Formatting issues
I am using REXML to edit an xml file but have ran into difficulties with formatting.
My original code looked like this:
file = File.new( destination)
doc = REXML::Document.new file ...
1
vote
1answer
673 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
3answers
65 views
XML parsing in Ruby
I am using a REXML Ruby parser to parse an XML file. But on a 64 bit AIX box with 64 bit Ruby, I am getting the following error:
REXML::ParseException: #<REXML::ParseException: #<RegexpError: ...
0
votes
2answers
135 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
48 views
Preserving DOCTYPE declaration with REXML
I'm trying to parse a log4j.xml file, edit some attributes, and write it back.
The log4j.xml has the <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> declaration, but when I write it back, the ...
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
104 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
0answers
34 views
REXML element tree
I know it's probably a silly question, but how can I construct an XML elements path with REXML?
For example I have the following XML:
<root>
<container name="base">
<container ...
0
votes
1answer
94 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
0answers
20 views
Ruby ReXML formatting
I want ask if there is some possibility in Rexml format output of element from
<adapter name="aaa" type="bbb" entity="ccc"/>
to
<adapter name="aaa"
type="bbb"
...
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
1answer
79 views
Get immediate parent node in REXML
How do I get the immediate parent of a node with REXML? root_node() gets me the parent node of the document, but I just want the parent of the current node.
0
votes
1answer
58 views
Can I write an XML reader that can cope with unclosed tags?
I'm parsing the wikipedia XML dump using a REXML StreamListener. After a few million articles, it complains that it can't find a matching close tag, and skips the rest of the file.
Is there any way ...
0
votes
1answer
110 views
Unable to iterate over elements in REXML
I'm using Ruby to inject new elements around selected XML nodes. Like this:
require 'rexml/document'
include REXML
xml = <<EOF
<fmxmlsnippet type="FMObjectList">
<Step ...
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
166 views
How to update a Ruby nested hash inside a loop?
I'm creating a nested hash in ruby rexml and want to update the hash when i enter a loop.
My code is like:
hash = {}
doc.elements.each(//address) do |n|
a = # ...
b = # ...
hash = { "NAME" ...
0
votes
0answers
59 views
How to indicate a random XPath when using Ruby's REXML
i'm using ruby's rexml to read from an xml file and access its attributes.
In the xml file i'm searching for a particular element and then iterating inside that.
The problem is,I specify a path for ...
0
votes
0answers
251 views
Parse REXML Document, ignoring whitespace
Should REXML ignore identation or whitespacing?
I am debugging an issue with a simple HTML to Markdown convertor. For some reason it fails on
...
0
votes
1answer
600 views
Rexml - pretty print with text inline and child tags indented
I'm building an xml doc with REXML, and want to output to text in a particular way. The doc is a list of CuePoint tags, and the ones that i've generated with Element.new and add_element are all ...
0
votes
2answers
321 views
ruby malformed XML: missing tag start
I have a very weird problem: I run the same code on the two xml files, the second of which is the copy of the first one (I copied the contents, maybe that's a problem).
The code uses REXML to parse ...
0
votes
4answers
649 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
62 views
REXML thinks file is a directory and won't create a REXML::Document
I must be missing something obvious here, but I can't seem to get the following code to work:
xml_files_dir.each do | xml_file |
file = File.new ( xml_files_dir + "/" + xml_file )
puts File.file? ...
0
votes
1answer
370 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
304 views
Get node name with REXML
I have an XML, which can be like
<?xml version="1.0" encoding="utf-8"?>
<testnode type="1">123</testnode>
or like
<?xml version="1.0" encoding="utf-8"?>
<othernode ...
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
3answers
89 views
removing the xml tags in ruby on rails
I am reading data from an xml doc and placing it on a web page using rails and REMXL. I use
@description1=XPath.match( xmldoc, "////description" )
to get the info into an array and just loop ...
0
votes
1answer
286 views
Rendering a string as a color hex value in Ruby on Rails
I have a hex value that I am getting from an XML file and I am trying to use that hex value as the background color for a data table. However, in IE8 it keeps rendering as a string.
When I have used
...
0
votes
1answer
91 views
Ruby Load multiple xml from a directory in a program to parse them
I want to load a set of xml from a directory and use REXML to parse all the xml in a loop.
I cant seem to create File Object after i start reading from a directory
i=1
filearray=Array.new
...
0
votes
1answer
406 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
243 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
573 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
565 views
Ruby REXML throws ParseException, but PHP xml parser works
I'm trying to call a web service from a PHP page via a Ruby script. The PHP script returns a string and itself calls another web service; I've tested the PHP script alone and it returns a single ...
0
votes
1answer
711 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>
...