FIX: XML Renderer doesn't generate 100% valid XML

2001-08-14 Thread Struan Judd
Specifically if you have any of ampersand, greater-than or less-than symbols in text they will not be escaped as per the XML spec. Correcting diff to org.apache.fop.render.xml.XMLRenderer between the ''s 321a322,331 else if (ch == '') sb = sb.append(amp;);

Re: FIX: XML Renderer doesn't generate 100% valid XML

2001-08-14 Thread Arved Sandstrom
Thank you, I'll get this up into CVS soonest. My fault in the first place. Regards, Arved Sandstrom At 09:27 AM 8/15/01 +1200, Struan Judd wrote: Specifically if you have any of ampersand, greater-than or less-than symbols in text they will not be escaped as per the XML spec. Correcting diff