/hg/icedtea6: Adds javawebstart.version property and give user p...
mwong at icedtea.classpath.org
mwong at icedtea.classpath.org
Tue Jul 20 13:32:42 PDT 2010
changeset 4bcc2702e0ec in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=4bcc2702e0ec
author: Man Lung Wong <mwong at redhat.com>
date: Tue Jul 20 16:31:28 2010 -0400
Adds javawebstart.version property and give user permission to read
that proerty during sandbox permission.
diffstat:
3 files changed, 16 insertions(+)
ChangeLog | 10 ++++++++++
netx/net/sourceforge/jnlp/SecurityDesc.java | 1 +
netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java | 5 +++++
diffs (43 lines):
diff -r 38a53f071801 -r 4bcc2702e0ec ChangeLog
--- a/ChangeLog Tue Jul 20 20:26:03 2010 +0200
+++ b/ChangeLog Tue Jul 20 16:31:28 2010 -0400
@@ -1,3 +1,13 @@ 2010-07-20 Mark Wielaard <mjw at redhat.c
+2010-07-20 Man Lung Wong mwong at redhat.com>
+
+ * netx/net/sourceforge/jnlp/SecurityDesc.java:
+ Add permission to read javawebstart.version
+ property as part of sandbox permission.
+
+ * netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java (initialize):
+ Set the javawebstart.version property as part of System property
+ whenever a jnlp file is being launched.
+
2010-07-20 Mark Wielaard <mjw at redhat.com>
* configure.ac (OPENJDK_BUILD_DIR): New AC_SUBST variable.
diff -r 38a53f071801 -r 4bcc2702e0ec netx/net/sourceforge/jnlp/SecurityDesc.java
--- a/netx/net/sourceforge/jnlp/SecurityDesc.java Tue Jul 20 20:26:03 2010 +0200
+++ b/netx/net/sourceforge/jnlp/SecurityDesc.java Tue Jul 20 16:31:28 2010 -0400
@@ -94,6 +94,7 @@ public class SecurityDesc {
new PropertyPermission("java.vm.version", "read"),
new PropertyPermission("java.vm.vendor", "read"),
new PropertyPermission("java.vm.name", "read"),
+ new PropertyPermission("javawebstart.version", "read"),
new RuntimePermission("exitVM"),
new RuntimePermission("stopThread"),
new AWTPermission("showWindowWithoutWarningBanner"),
diff -r 38a53f071801 -r 4bcc2702e0ec netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java
--- a/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java Tue Jul 20 20:26:03 2010 +0200
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPRuntime.java Tue Jul 20 16:31:28 2010 -0400
@@ -167,6 +167,11 @@ public class JNLPRuntime {
checkInitialized();
isWebstartApplication = isApplication;
+
+ //Setting the system property for javawebstart's version.
+ //The version stored will be the same as java's version.
+ System.setProperty("javawebstart.version", "javaws-" +
+ System.getProperty("java.version"));
if (headless == false)
checkHeadless();
More information about the distro-pkg-dev
mailing list