/hg/release/icedtea6-1.7: 3 new changesets
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Fri Jul 9 08:00:03 PDT 2010
changeset c71e17e97201 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=c71e17e97201
author: Omair Majid <omajid at redhat.com>
date: Thu Jul 08 14:25:02 2010 -0400
2010-07-08 Omair Majid <omajid at redhat.com>
PR icedtea/460
* plugin/icedteanp/java/netscape/security/ForbiddenTargetException.jav
a: New file. Some applets, for legacy support, expect this class
to be present.
changeset 07bbc0e2f5e0 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=07bbc0e2f5e0
author: Omair Majid <omajid at redhat.com>
date: Thu Jul 08 14:31:02 2010 -0400
2010-07-08 Omair Majid <omajid at redhat.com>
* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:
(reFrame): Pass the panel to the constructor, dont set it yourself.
(PluginAppletViewer): Set the panel to be the passed in object and
only then add it to the list of all panels.
changeset a8aeb44946cb in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=a8aeb44946cb
author: Deepak Bhole <dbhole at redhat.com>
date: Fri Jul 09 10:59:53 2010 -0400
Updated copyright dates in plugin sources
diffstat:
15 files changed, 96 insertions(+), 15 deletions(-)
ChangeLog | 29 +++++
plugin/icedteanp/IcedTeaJavaRequestProcessor.cc | 2
plugin/icedteanp/IcedTeaJavaRequestProcessor.h | 2
plugin/icedteanp/IcedTeaNPPlugin.cc | 2
plugin/icedteanp/IcedTeaNPPlugin.h | 2
plugin/icedteanp/IcedTeaPluginRequestProcessor.cc | 2
plugin/icedteanp/IcedTeaPluginRequestProcessor.h | 2
plugin/icedteanp/IcedTeaPluginUtils.cc | 2
plugin/icedteanp/IcedTeaPluginUtils.h | 2
plugin/icedteanp/IcedTeaRunnable.cc | 2
plugin/icedteanp/IcedTeaRunnable.h | 2
plugin/icedteanp/IcedTeaScriptablePluginObject.cc | 2
plugin/icedteanp/IcedTeaScriptablePluginObject.h | 2
plugin/icedteanp/java/netscape/security/ForbiddenTargetException.java | 52 ++++++++++
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java | 6 -
diffs (253 lines):
diff -r a14090fab523 -r a8aeb44946cb ChangeLog
--- a/ChangeLog Tue Jun 15 18:34:45 2010 +0100
+++ b/ChangeLog Fri Jul 09 10:59:53 2010 -0400
@@ -1,3 +1,32 @@ 2010-06-14 Andrew John Hughes <ahughes@
+2010-07-09 Deepak Bhole <dbhole at redhat.com>
+
+ * plugin/icedteanp/IcedTeaJavaRequestProcessor.cc: Updated copyright date.
+ * plugin/icedteanp/IcedTeaJavaRequestProcessor.h: Same.
+ * plugin/icedteanp/IcedTeaNPPlugin.cc: Same.
+ * plugin/icedteanp/IcedTeaNPPlugin.h: Same.
+ * plugin/icedteanp/IcedTeaPluginRequestProcessor.cc: Same.
+ * plugin/icedteanp/IcedTeaPluginRequestProcessor.h: Same.
+ * plugin/icedteanp/IcedTeaPluginUtils.cc: Same.
+ * plugin/icedteanp/IcedTeaPluginUtils.h: Same.
+ * plugin/icedteanp/IcedTeaRunnable.cc: Same.
+ * plugin/icedteanp/IcedTeaRunnable.h: Same.
+ * plugin/icedteanp/IcedTeaScriptablePluginObject.cc: Same.
+ * plugin/icedteanp/IcedTeaScriptablePluginObject.h: Same.
+
+2010-07-08 Omair Majid <omajid at redhat.com>
+
+ * plugin/icedteanp/java/sun/applet/PluginAppletViewer.java:
+ (reFrame): Pass the panel to the constructor, dont set it yourself.
+ (PluginAppletViewer): Set the panel to be the passed in object and only
+ then add it to the list of all panels.
+
+2010-07-08 Omair Majid <omajid at redhat.com>
+
+ PR icedtea/460
+ * plugin/icedteanp/java/netscape/security/ForbiddenTargetException.java:
+ New file. Some applets, for legacy support, expect this class to be
+ present.
+
2010-06-14 Andrew John Hughes <ahughes at redhat.com>
Don't print out the return value of pthread_self
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaJavaRequestProcessor.cc
--- a/plugin/icedteanp/IcedTeaJavaRequestProcessor.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaJavaRequestProcessor.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaJavaRequestProcessor.cc
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaJavaRequestProcessor.h
--- a/plugin/icedteanp/IcedTeaJavaRequestProcessor.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaJavaRequestProcessor.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaJavaRequestProcessor.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaNPPlugin.cc
--- a/plugin/icedteanp/IcedTeaNPPlugin.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaNPPlugin.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaNPPlugin.cc -- web browser plugin to execute Java applets
Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of GNU Classpath.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaNPPlugin.h
--- a/plugin/icedteanp/IcedTeaNPPlugin.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaNPPlugin.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaNPPlugin.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaPluginRequestProcessor.cc
--- a/plugin/icedteanp/IcedTeaPluginRequestProcessor.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaPluginRequestProcessor.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaPluginRequestProcessor.cc
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaPluginRequestProcessor.h
--- a/plugin/icedteanp/IcedTeaPluginRequestProcessor.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaPluginRequestProcessor.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaPluginRequestProcessor.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaPluginUtils.cc
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaPluginUtils.cc
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaPluginUtils.h
--- a/plugin/icedteanp/IcedTeaPluginUtils.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaPluginUtils.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaPluginUtils.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaRunnable.cc
--- a/plugin/icedteanp/IcedTeaRunnable.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaRunnable.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaRunnable.cc
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaRunnable.h
--- a/plugin/icedteanp/IcedTeaRunnable.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaRunnable.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaRunnable.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaScriptablePluginObject.cc
--- a/plugin/icedteanp/IcedTeaScriptablePluginObject.cc Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaScriptablePluginObject.cc Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaScriptablePluginObject.cc
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/IcedTeaScriptablePluginObject.h
--- a/plugin/icedteanp/IcedTeaScriptablePluginObject.h Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/IcedTeaScriptablePluginObject.h Fri Jul 09 10:59:53 2010 -0400
@@ -1,6 +1,6 @@
/* IcedTeaScriptablePluginObject.h
- Copyright (C) 2009 Red Hat
+ Copyright (C) 2009, 2010 Red Hat
This file is part of IcedTea.
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/java/netscape/security/ForbiddenTargetException.java
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/plugin/icedteanp/java/netscape/security/ForbiddenTargetException.java Fri Jul 09 10:59:53 2010 -0400
@@ -0,0 +1,52 @@
+/* ForbiddenTargetException.java
+ Copyright (C) 2010 Red Hat
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+IcedTea is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version. */
+
+package netscape.security;
+
+public class ForbiddenTargetException extends RuntimeException{
+
+ private static final long serialVersionUID = 1271219852541058396L;
+
+ public ForbiddenTargetException() {
+ super();
+ }
+
+ public ForbiddenTargetException(String s) {
+ super(s);
+ }
+
+}
diff -r a14090fab523 -r a8aeb44946cb plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java Tue Jun 15 18:34:45 2010 +0100
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java Fri Jul 09 10:59:53 2010 -0400
@@ -393,8 +393,7 @@ import com.sun.jndi.toolkit.url.UrlUtil;
if (oldFrame != null && handle == oldFrame.handle)
return;
- PluginAppletViewer newFrame = new PluginAppletViewer(handle, identifier, statusMsgStream, heightFactor, widthFactor);
- newFrame.panel = panel;
+ PluginAppletViewer newFrame = new PluginAppletViewer(handle, identifier, statusMsgStream, heightFactor, widthFactor, panel);
if (oldFrame != null) {
applets.remove(oldFrame.identifier);
@@ -425,13 +424,14 @@ import com.sun.jndi.toolkit.url.UrlUtil;
*/
private PluginAppletViewer(long handle, final int identifier,
PrintStream statusMsgStream, double heightFactor,
- double widthFactor) {
+ double widthFactor, AppletViewerPanel appletPanel) {
super(handle, true);
this.statusMsgStream = statusMsgStream;
this.identifier = identifier;
this.proposedHeightFactor = heightFactor;
this.proposedWidthFactor = widthFactor;
+ this.panel = appletPanel;
if (!appletPanels.contains(panel))
appletPanels.addElement(panel);
More information about the distro-pkg-dev
mailing list