/hg/release/icedtea6-1.7: 4 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Oct 18 06:18:47 PDT 2010


changeset cddb729bb087 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=cddb729bb087
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 18 14:13:29 2010 +0100

	Add missing javaws man page.


changeset 6282308dea74 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=6282308dea74
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 18 14:13:47 2010 +0100

	Removed tag icedtea6-1.7.5


changeset eb34904f4061 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=eb34904f4061
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 18 14:13:53 2010 +0100

	Added tag icedtea6-1.7.5 for changeset 6282308dea74


changeset 902c6f336008 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=902c6f336008
author: Andrew John Hughes <ahughes at redhat.com>
date: Mon Oct 18 14:18:22 2010 +0100

	Merge


diffstat:

5 files changed, 152 insertions(+), 2 deletions(-)
.hgtags                                             |    4 
ChangeLog                                           |    8 +
Makefile.am                                         |    3 
patches/openjdk/6853592-badwindow-warning-fix.patch |   16 ++
rt/javaws.1                                         |  123 +++++++++++++++++++

diffs (193 lines):

diff -r 11ee55e1c9b4 -r 902c6f336008 .hgtags
--- a/.hgtags	Wed Oct 13 01:27:29 2010 +0100
+++ b/.hgtags	Mon Oct 18 14:18:22 2010 +0100
@@ -23,3 +23,7 @@ cf5e5cb5f1cd9aa7f3237e918504be6fa732fa26
 cf5e5cb5f1cd9aa7f3237e918504be6fa732fa26 icedtea6-1.7.3
 30dc9370bebaf7d7bed1f49ff220bcb75f3b2140 icedtea6-1.7.4
 9f1417fbbb12374a1585da2c3265deb8c10d6ec6 icedtea6-1.7.5
+9f1417fbbb12374a1585da2c3265deb8c10d6ec6 icedtea6-1.7.5
+0000000000000000000000000000000000000000 icedtea6-1.7.5
+0000000000000000000000000000000000000000 icedtea6-1.7.5
+6282308dea7401c00bb779bd4ab2ff7f4d269114 icedtea6-1.7.5
diff -r 11ee55e1c9b4 -r 902c6f336008 ChangeLog
--- a/ChangeLog	Wed Oct 13 01:27:29 2010 +0100
+++ b/ChangeLog	Mon Oct 18 14:18:22 2010 +0100
@@ -1,3 +1,9 @@ 2010-10-13  Andrew John Hughes  <ahughes
+2010-10-15  Pavel Tisnovsky  <ptisnovs at redhat.com>
+
+	* patches/openjdk/6853592-BadWindow-warning-fix.patch:
+	Added patch which fixes bug #6853592 introduced by another patch
+	6678385-window_movement_crasher.patch
+
 2010-10-13  Andrew John Hughes  <ahughes at redhat.com>
 
 	* NEWS:
@@ -17,7 +23,7 @@ 2010-09-13  Omair Majid  <omajid at redhat.
 	* Makefile.am
 	(icedtea.stamp): Copy over the javaws man page into the build.
 	(icedtea-debug.stamp): Copy over the javaws man page.
-	* netx/javaws.1: New man page for netx's javaws.
+	* rt/javaws.1: New man page for netx's javaws.
 
 2010-10-11  Andrew John Hughes  <ahughes at redhat.com>
 
diff -r 11ee55e1c9b4 -r 902c6f336008 Makefile.am
--- a/Makefile.am	Wed Oct 13 01:27:29 2010 +0100
+++ b/Makefile.am	Mon Oct 18 14:18:22 2010 +0100
@@ -369,7 +369,8 @@ ICEDTEA_PATCHES = \
 	patches/fonts-rhel.patch \
 	patches/openjdk/6638712-wildcard_types.patch \
 	patches/openjdk/6650759-missing_inference.patch \
-	patches/numa_on_early_glibc.patch
+	patches/numa_on_early_glibc.patch \
+        patches/openjdk/6853592-badwindow-warning-fix.patch
 
 if WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += patches/hotspot/$(HSBUILD)/openjdk-6886353-ignore_deoptimizealot.patch \
diff -r 11ee55e1c9b4 -r 902c6f336008 patches/openjdk/6853592-badwindow-warning-fix.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/openjdk/6853592-badwindow-warning-fix.patch	Mon Oct 18 14:18:22 2010 +0100
@@ -0,0 +1,16 @@
+--- openjdk.orig/jdk/src/solaris/classes/sun/awt/X11/XToolkit.java	2010-07-15 10:28:21.896105637 -0400
++++ openjdk/jdk/src/solaris/classes/sun/awt/X11/XToolkit.java	2010-07-15 10:30:45.039232001 -0400
+@@ -298,13 +298,6 @@
+                 if (log.isLoggable(Level.FINE)) {
+                         dumpPeers();
+                 }
+-
+-                awtLock();
+-                try {
+-                        XlibWrapper.XSetErrorHandler(saved_error_handler);
+-                } finally {
+-                        awtUnlock();
+-                }
+             }
+         });
+     }
diff -r 11ee55e1c9b4 -r 902c6f336008 rt/javaws.1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rt/javaws.1	Mon Oct 18 14:18:22 2010 +0100
@@ -0,0 +1,123 @@
+.TH javaws 1 "9 Sep 2010"
+.SH NAME
+javaws - a Java Web Start client
+.SH SYNOPSYS
+.B javaws
+[-run-options] jnlp-file
+.br
+.B javaws
+[-control-option]
+.SH DESCRIPTION
+.B javaws
+is an implementation of a JNLP  client. It uses a JNLP (Java Network
+Launch Protocol) file to securely run a remote Java application or
+a Java applet.  This implementation of
+.B javaws
+is from the IcedTea project and is based on the NetX project.
+.PP
+A JNLP file is an xml file that describes how to securely run a
+remote Java application or a Java applet.
+
+.SH OPTIONS
+When specifying options, the name of the jnlp file must be the last
+argument to
+.B javaws
+- all the options must preceede it.
+.PP
+The jnlp-file can either be a url or a local path.
+.PP
+.B Control Options
+.PP
+By default
+.B javaws
+will launch the jnlp file specified on the command line. The control
+options can be used to change this behaviour.
+.TP 12
+\-about
+Shows a sample application that can be used to test the basic functionality
+of this implementation.
+.TP
+\-viewer
+Shows the trusted certificate viewer. This allows a user to list, examine, remove
+or export trusted certificates. Note that this only reflects the certificates
+trusted by
+.B javaws
+and not any other certificates or programs.
+
+.PP
+.B Run Options
+.PP
+In the default mode, the following run-options can be used:
+.TP 12
+\-basedir dir
+Directory where the cache and certificates to be used are stored.
+.TP
+\-arg arg
+Adds an application argument before launching.
+.TP
+\-param name=value
+Adds an applet parameter before launching.
+.TP
+\-property name=value
+Sets a system property before launching.
+.TP
+\-update seconds
+Update check if seconds since last checked.
+.TP
+\-license
+Display the GPL license and exit.
+.TP
+\-verbose
+Enable verbose output. Very useful in debugging.
+.TP
+\-nosecurity
+Disables the secure runtime environment.
+.TP
+\-noupdate
+Disables checking for updates.
+.TP
+\-headless
+Disables download window, other UIs.
+.TP
+\-strict
+Enables strict checking of JNLP file format. Any deviations from
+the JNLP DTD will cause
+.B javaws
+to abort.
+.TP
+\-umask=value
+Sets the umask for files created by an application.
+.TP
+\-Xnofork
+Do not create another JVM, even if the JNLP file asks for running in
+a separate JVM. This is useful for debugging.
+.TP
+\-Jjava-option
+This passes along java-option to the java binary that is running
+javaws. For example, to make javaws run with a max heap size
+of 80m, use -J-Xmx80m.
+.TP
+\-help
+Print a help message and exit.
+
+.SH FILES
+~/.netxrc specifies the location of the base directory
+
+.SH BUGS
+There arent any known bugs. If you come across one, please file it at
+    http://icedtea.classpath.org/bugzilla/
+.br
+Please run javaws in verbose mode and include that output along
+with the jnlp file when filing out the bug report.
+
+.SH AUTHOR
+Originally written by Jon. A. Maxwell.
+.br
+Currently maintained by the IcedTea contributors.
+
+.SH SEE ALSO
+.BR java (1)
+.br
+http://icedtea.classpath.org/
+.br
+http://jnlp.sourceforge.net/netx/



More information about the distro-pkg-dev mailing list