/hg/icedtea6: 2 new changesets

dbhole at icedtea.classpath.org dbhole at icedtea.classpath.org
Wed Jan 6 14:48:02 PST 2010


changeset a249e1431ca3 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=a249e1431ca3
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Jan 05 16:08:59 2010 -0500

	- Removed dependence on libxul-unstable for NP plugin
	- Fixed some regressions caused by the way Firefox >= 3.5 supplies
	URLs


changeset 175b5c7ee4c7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=175b5c7ee4c7
author: Deepak Bhole <dbhole at redhat.com>
date: Wed Jan 06 16:40:43 2010 -0500

	2010-01-06 Deepak Bhole <dbhole at redhat.com>

	 * plugin/icedteanp/IcedTeaNPPlugin.h: Remove debug specific
	line from code.


diffstat:

5 files changed, 21 insertions(+), 8 deletions(-)
ChangeLog                                                |   15 ++++++++++++++
configure.ac                                             |    2 -
plugin/icedtea/sun/applet/PluginAppletViewer.java        |    8 +++----
plugin/icedteanp/IcedTeaNPPlugin.h                       |    2 -
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java |    2 -

diffs (97 lines):

diff -r c99b9280fdcf -r 175b5c7ee4c7 ChangeLog
--- a/ChangeLog	Tue Jan 05 10:09:26 2010 +0000
+++ b/ChangeLog	Wed Jan 06 16:40:43 2010 -0500
@@ -1,3 +1,18 @@ 2010-01-05  Gary Benson  <gbenson at redhat
+2010-01-06  Deepak Bhole <dbhole at redhat.com>
+
+	* plugin/icedteanp/IcedTeaNPPlugin.h: Remove debug specific line from 
+	code.
+
+2010-01-05  Deepak Bhole <dbhole at redhat.com>
+
+	* configure.ac: Use libxul instead of libxul-unstable for the new NP
+	plugin.
+	* plugin/icedtea/sun/applet/PluginAppletViewer.java
+	(handleMessage): Decode URL before setting documentbase.
+	(parse): Port over parser fixes from NP plugin tree.
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
+	(handleMessage): Decode URL before setting documentbase.
+
 2010-01-05  Gary Benson  <gbenson at redhat.com>
 
 	* patches/zero/6909153.patch: New file.
diff -r c99b9280fdcf -r 175b5c7ee4c7 configure.ac
--- a/configure.ac	Tue Jan 05 10:09:26 2010 +0000
+++ b/configure.ac	Wed Jan 06 16:40:43 2010 -0500
@@ -471,7 +471,7 @@ if test "x${enable_npplugin}" = "xyes"
 if test "x${enable_npplugin}" = "xyes"
   then
     PKG_CHECK_MODULES(MOZILLA, \
-      mozilla-plugin libxul-unstable)
+      mozilla-plugin libxul)
     PKG_CHECK_MODULES(GTK, gtk+-2.0)
     PKG_CHECK_MODULES(GLIB, glib-2.0)
 
diff -r c99b9280fdcf -r 175b5c7ee4c7 plugin/icedtea/sun/applet/PluginAppletViewer.java
--- a/plugin/icedtea/sun/applet/PluginAppletViewer.java	Tue Jan 05 10:09:26 2010 +0000
+++ b/plugin/icedtea/sun/applet/PluginAppletViewer.java	Wed Jan 06 16:40:43 2010 -0500
@@ -402,7 +402,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
         			 }
         			 int index = message.indexOf(' ', "tag".length() + 1);
         			 request.documentbase =
-        				 message.substring("tag".length() + 1, index);
+        				 UrlUtil.decode(message.substring("tag".length() + 1, index));
         			 request.tag = message.substring(index + 1);
         			 PluginDebug.debug ("REQUEST TAG: " + request.tag + " " +
         					 Thread.currentThread());
@@ -1788,7 +1788,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
     					 atts = scanTag(in);
 
                          // If there is a classid and no code tag present, transform it to code tag
-                         if (atts.get("code") == null && atts.get("classid") != null && ((String) atts.get("classid")).endsWith(".class")) {
+                         if (atts.get("code") == null && atts.get("classid") != null && !((String) atts.get("classid")).startsWith("clsid:")) {
                              atts.put("code", atts.get("classid"));
                          }
                          
@@ -1830,7 +1830,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
     				     }
 
     				     // If there is a classid and no code tag present, transform it to code tag
-    				     if (atts.get("code") == null && atts.get("classid") != null && ((String) atts.get("classid")).endsWith(".class")) {
+    				     if (atts.get("code") == null && atts.get("classid") != null && !((String) atts.get("classid")).startsWith("clsid:")) {
     				         atts.put("code", atts.get("classid"));
     				     }
                         
@@ -1888,7 +1888,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
     					 atts = scanTag(in);
 
                          // If there is a classid and no code tag present, transform it to code tag
-                         if (atts.get("code") == null && atts.get("classid") != null && ((String) atts.get("classid")).endsWith(".class")) {
+                         if (atts.get("code") == null && atts.get("classid") != null && !((String) atts.get("classid")).startsWith("clsid:")) {
                              atts.put("code", atts.get("classid"));
                          }
                          
diff -r c99b9280fdcf -r 175b5c7ee4c7 plugin/icedteanp/IcedTeaNPPlugin.h
--- a/plugin/icedteanp/IcedTeaNPPlugin.h	Tue Jan 05 10:09:26 2010 +0000
+++ b/plugin/icedteanp/IcedTeaNPPlugin.h	Wed Jan 06 16:40:43 2010 -0500
@@ -38,8 +38,6 @@ exception statement from your version. *
 
 #ifndef __ICEDTEANPPLUGIN_H__
 #define	__ICEDTEANPPLUGIN_H__
-
-#define MOZILLA_VERSION_COLLAPSED 1090105
 
 #if MOZILLA_VERSION_COLLAPSED < 1090100
 #include <nsThreadUtils.h>
diff -r c99b9280fdcf -r 175b5c7ee4c7 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Tue Jan 05 10:09:26 2010 +0000
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Wed Jan 06 16:40:43 2010 -0500
@@ -424,7 +424,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
         			 }
         			 int index = message.indexOf(' ', "tag".length() + 1);
         			 request.documentbase =
-        				 message.substring("tag".length() + 1, index);
+        				 UrlUtil.decode(message.substring("tag".length() + 1, index));
         			 request.tag = message.substring(index + 1);
         			 PluginDebug.debug ("REQUEST TAG: " + request.tag + " " +
         					 Thread.currentThread());



More information about the distro-pkg-dev mailing list