|
Posted by David Dorward on 08/12/05 00:47
Thomas Magma wrote:
> I have an application that generates a HTML document that contains an
> applet. It places raw data into the PARAM NAME tag. Well, once in a blue
> moon it places the numeric character reference &# into the data.
Which is invalid.
> One solution is to not let my original application generate the sequence
> &#
Fix it so it represents the sequence &# as &#.
> however, this does not fix the HTML documents that have already been
> generated in the past.
Get a text editor that can do a global search and replace, then run it only
on files from before you fixed the generator.
> It would be nice to just fix the Java applet so it can import this raw
> data without having to recognize &# as a numeric character reference.
I suspect you'll find that the browser interprets &# and feeds the result to
the applet, the applet doesn't decode the raw markup.
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Navigation:
[Reply to this message]
|