changeset in /hg/icedtea6: 2009-05-18 Lillian Angel <langel at re...
Lillian Angel
langel at redhat.com
Tue May 19 06:47:53 PDT 2009
changeset edaa3e573644 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=edaa3e573644
description:
2009-05-18 Lillian Angel <langel at redhat.com>
* NEWS: Fixed typo.
* README: Updated plugin info.
diffstat:
4 files changed, 40 insertions(+), 37 deletions(-)
ChangeLog | 5 ++++
NEWS | 4 +--
README | 40 ++++++++-------------------------------
generated/sun/misc/Version.java | 28 +++++++++++++++++++++++----
diffs (132 lines):
diff -r ea3bc7968a1c -r edaa3e573644 ChangeLog
--- a/ChangeLog Tue May 19 15:08:12 2009 +0200
+++ b/ChangeLog Tue May 19 09:48:55 2009 -0400
@@ -1,3 +1,8 @@ 2009-05-18 Robert Schuster <robertschu
+2009-05-18 Lillian Angel <langel at redhat.com>
+
+ * NEWS: Fixed typo.
+ * README: Updated plugin info.
+
2009-05-18 Robert Schuster <robertschuster at fsfe.org>
* Makefile.am: Corrected quoting of cross-compilation Makefile arguments.
diff -r ea3bc7968a1c -r edaa3e573644 NEWS
--- a/NEWS Tue May 19 15:08:12 2009 +0200
+++ b/NEWS Tue May 19 09:48:55 2009 -0400
@@ -1,4 +1,4 @@ New in release 1.5 (2009-05-15)
-New in release 1.5 (2009-05-15)
+New in release 1.5 (2009-05-20)
- Static trace support through systemtap.
When given the configure option --enable-systemtap IcedTea will build
@@ -13,7 +13,7 @@ New in release 1.5 (2009-05-15)
- Update to latest HotSpot minor build (hs14b10-->hs14b15) from the new
HotSpot Express repository.
- Updated to OpenJDK b16 build.
-- Visual VM updated to 1.1.1.
+- VisualVM updated to 1.1.1.
- Updated to support CACAO 0.99.4.
- Several web browser plugin and javaws support fixes:
- Fixed security handling to prevent access denials when there is a site
diff -r ea3bc7968a1c -r edaa3e573644 README
--- a/README Tue May 19 15:08:12 2009 +0200
+++ b/README Tue May 19 09:48:55 2009 -0400
@@ -87,39 +87,17 @@ license header. Instances are:
- We are assuming that these files are owned by Sun:
openjdk/jdk/src/share/classes/**/resources/*.properties
+Web Browser Plugin support
+===========================
-gcjwebplugin
-============
+The default web browser plugin has LiveConnect support. It will only build
+against a very recent version of XULRunner, such as that available in Fedora
+Rawhide as of 2008-05-16. The required development headers are provided by
+the xulrunner-devel package.
-gcjwebplugin provides basic support for running applets in
-Mozilla-based web browsers. It does not support applet/Javascript
-communication (LiveConnect) and support for signed applets needs
-further testing. The current applet security manager may be too
-strict and may require tuning to allow otherwise-legitimate calls by
-untrusted applets.
-
-gcjwebplugin itself is a shared object, gcjwebplugin.so, built from a
-single source file, gcjwebplugin.cc. The IcedTea adaptation of
-gcjwebplugin communicates through named pipes with a modified version
-of IcedTea's appletviewer. Two source files,
-openjdk/jdk/src/share/classes/sun/applet/PluginAppletViewer.java,
-openjdk/jdk/src/share/classes/sun/applet/PluginMain.java are added to
-rt.jar and tools.jar to provide gcjwebplugin with an interface into
-the appletviewer code. This support code is provided in
-patches/icedtea-plugin.patch.
-
-Experimental LiveConnect support
-================================
-
-The configure option --enable-liveconnect enables experimental
-LiveConnect support, implemented by IcedTeaPlugin.cc and
-patches/icedtea-liveconnect.patch. Currently IcedTeaPlugin.cc will
-only build against a very recent version of XULRunner, such as that
-available in Fedora Rawhide as of 2008-02-23. The required
-development headers are provided by the xulrunner-devel package.
-
-To run IcedTeaPlugin you'll need to add
-/usr/lib/xulrunner-sdk-1.9pre/sdk/lib/ to LD_LIBRARY_PATH.
+A new plugin is being developed to support the new Mozilla API changes. It can
+be enabled with the option --enable-npplugin, and it is based on gcjwebplugin.
+At the moment there is no liveconnect support for it.
NetX
====
diff -r ea3bc7968a1c -r edaa3e573644 generated/sun/awt/X11/generator/sizer.32
Binary file generated/sun/awt/X11/generator/sizer.32 has changed
diff -r ea3bc7968a1c -r edaa3e573644 generated/sun/misc/Version.java
--- a/generated/sun/misc/Version.java Tue May 19 15:08:12 2009 +0200
+++ b/generated/sun/misc/Version.java Tue May 19 09:48:55 2009 -0400
@@ -39,7 +39,13 @@ public class Version {
"OpenJDK Runtime Environment";
private static final String java_runtime_version =
- "1.6.0_0-b12";
+ "1.6.0_0-b16";
+
+ private static final String jdk_derivative_name =
+ "IcedTea6 1.5-r84a527d1a06c";
+
+ private static final String distro_package_version =
+ "";
static {
init();
@@ -81,12 +87,26 @@ public class Version {
/* First line: platform version. */
ps.println(launcher_name + " version \"" + java_version + "\"");
+ String java_vm_name = System.getProperty("java.vm.name");
+
/* Second line: runtime version (ie, libraries). */
- ps.println(java_runtime_name + " (build " +
- java_runtime_version + ")");
+ StringBuilder sb = new StringBuilder();
+ if (java_vm_name.toLowerCase().startsWith("cacao")) {
+ sb.append("IcedTea Runtime Environment");
+ } else {
+ sb.append(java_runtime_name);
+ }
+ if (jdk_derivative_name.length() > 0) {
+ sb.append(" (").append(jdk_derivative_name).append(")");
+ }
+ if (distro_package_version.length() > 0) {
+ sb.append(" (").append(distro_package_version).append(")");
+ } else {
+ sb.append(" (build ").append(java_runtime_version).append(")");
+ }
+ ps.println(sb.toString());
/* Third line: JVM information. */
- String java_vm_name = System.getProperty("java.vm.name");
String java_vm_version = System.getProperty("java.vm.version");
String java_vm_info = System.getProperty("java.vm.info");
ps.println(java_vm_name + " (build " + java_vm_version + ", " +
More information about the distro-pkg-dev
mailing list