/hg/icedtea-web: Dont show error dialogs on exceptions with the ...

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Wed Apr 20 12:24:24 PDT 2011


changeset a3cbdab9bd7a in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=a3cbdab9bd7a
author: Omair Majid <omajid at redhat.com>
date: Wed Apr 20 15:23:49 2011 -0400

	Dont show error dialogs on exceptions with the plugin


diffstat:

 ChangeLog                                                         |  6 ++++++
 plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java |  2 ++
 2 files changed, 8 insertions(+), 0 deletions(-)

diffs (32 lines):

diff -r ad820e40fe56 -r a3cbdab9bd7a ChangeLog
--- a/ChangeLog	Wed Apr 20 15:02:56 2011 -0400
+++ b/ChangeLog	Wed Apr 20 15:23:49 2011 -0400
@@ -1,3 +1,9 @@
+2011-04-20  Omair Majid  <omajid at redhat.com>
+
+	* plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java
+	(PluginAppletSecurityContext): Set the launch handler to the stdout/stderr
+	based one.
+
 2011-04-20  Andrew Su  <asu at redhat.com>
 
 	* netx/net/sourceforge/jnlp/controlpanel/CachePane.java:
diff -r ad820e40fe56 -r a3cbdab9bd7a plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java	Wed Apr 20 15:02:56 2011 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletSecurityContext.java	Wed Apr 20 15:23:49 2011 -0400
@@ -58,6 +58,7 @@
 import java.util.Map;
 
 import net.sourceforge.jnlp.runtime.JNLPRuntime;
+import net.sourceforge.jnlp.DefaultLaunchHandler;
 import netscape.javascript.JSObjectCreatePermission;
 
 class Signature {
@@ -242,6 +243,7 @@
         // that JNLPRuntime will try to install
         if (System.getSecurityManager() == null) {
             JNLPRuntime.initialize(/* isApplication */false);
+            JNLPRuntime.setDefaultLaunchHandler(new DefaultLaunchHandler());
         }
 
         JNLPRuntime.disableExit();



More information about the distro-pkg-dev mailing list