Open GoogleCodeExporter opened 9 years ago
And in a highly related issue, when parsing rdf/xml, it fails when the string
value contains double quotes.
Original comment by azarot...@gmail.com
on 24 Jun 2011 at 11:31
And in a highly related fix, when parsing rdf/xml:
Replace this:
object = $.rdf.literal(literalOpts.lang ? o : '"' + o + '"', literalOpts);
With this:
object = $.rdf.literal(literalOpts.lang ? o : '"' + o.replace(/"/g, '\\"') +
'"', literalOpts);
Original comment by jman...@gmail.com
on 28 Jul 2011 at 12:50
Original issue reported on code.google.com by
james-no...@leighnet.ca
on 5 Jan 2011 at 6:41