Ray, I don't think emdashes are allowed inside XML. You emdash is in a node content or a tag? If it is in a node content and you encoded it like &emdash; then it will not work because the only escaping that xml knows by default is & so if you encode your emdash like &emdash; and you do a double decode when you want to use the content like first making the & into & and then the &emdash; back into a real emdash, it should work.
You can make your XML an UTF8 file and use emdashes directly as well. The above solution is to keep things under pure ascii charset. You might conside passing your xml first thru uniDecode before trying to pass it thru revcreatexmltree as well, this might help you keep your emdashes without any conversion to xml entities. Andre On Wed, Jul 28, 2010 at 5:57 PM, Ray Horsley <[email protected]> wrote: > Greetings, > > I'm getting errors when passing XML to this handler, usually because > there's something odd characters like an em dash in it. Anybody have any > experience with this library? I'm believe it's going to be a matter of > properly encoding/decoding the data, although I've tried the base64 encoding > and decoding which seems to be the only kind of encoding Rev offers. I am > compressing/decompresing the data to speed performance. > > Ideas? > > Thanks, > > Ray Horsley > LinkIt! Software > > _______________________________________________ > use-revolution mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-revolution > -- http://www.andregarzia.com All We Do Is Code. _______________________________________________ use-revolution mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
