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 ...
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 ...
0
votes
3answers
66 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
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
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
3answers
90 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
287 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
...