changeset in /hg/icedtea6: - Re-encode <, > and & characters in ...

Deepak Bhole dbhole at redhat.com
Fri Oct 17 14:08:50 PDT 2008


changeset c259572f3e31 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=c259572f3e31
description:
	- Re-encode <, > and & characters in applet params

diffstat:

2 files changed, 10 insertions(+)
ChangeLog                                         |    5 +++++
plugin/icedtea/sun/applet/PluginAppletViewer.java |    5 +++++

diffs (27 lines):

diff -r 776f84548857 -r c259572f3e31 ChangeLog
--- a/ChangeLog	Fri Oct 17 13:45:31 2008 -0400
+++ b/ChangeLog	Fri Oct 17 17:08:45 2008 -0400
@@ -1,3 +1,8 @@ 2008-10-17  Deepak Bhole  <dbhole at redhat
+2008-10-17  Deepak Bhole  <dbhole at redhat.com>
+
+	* plugin/icedtea/sun/applet/PluginAppletViewer.java: Re-encode <, > and &
+	characters in applet params.
+
 2008-10-17  Deepak Bhole  <dbhole at redhat.com>
 
 	* plugin/icedtea/netscape/javascript/JSObject.java: Handle null args to
diff -r 776f84548857 -r c259572f3e31 plugin/icedtea/sun/applet/PluginAppletViewer.java
--- a/plugin/icedtea/sun/applet/PluginAppletViewer.java	Fri Oct 17 13:45:31 2008 -0400
+++ b/plugin/icedtea/sun/applet/PluginAppletViewer.java	Fri Oct 17 17:08:45 2008 -0400
@@ -1390,6 +1390,11 @@ import sun.misc.Ref;
     						 if (val == null) {
     							 statusMsgStream.println(requiresNameWarning);
     						 } else if (atts != null) {
+    							 // to prevent headaches, c++ side encodes &, < and >
+    							 // decode them back
+    							 val = val.replace("&gt;", ">");
+    							 val = val.replace("&lt;", "<");
+    							 val = val.replace("&amp;", "&");
     							 atts.put(att.toLowerCase(), val);
     						 } else {
     							 statusMsgStream.println(paramOutsideWarning);



More information about the distro-pkg-dev mailing list