changeset in /hg/icedtea6: Netx: disable destkop shortcuts

Omair Majid omajid at redhat.com
Tue Aug 4 08:33:04 PDT 2009


changeset f5ed1489ddcf in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=f5ed1489ddcf
description:
	Netx: disable destkop shortcuts

	2009-08-04  Omair Majid  <omajid at redhat.com>

	    * rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java
	    (initialize): Disable creation of desktop shortcuts.

diffstat:

2 files changed, 23 insertions(+), 1 deletion(-)
ChangeLog                                                |    5 +++
rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java |   19 +++++++++++++-

diffs (41 lines):

diff -r 18f23e1e3c37 -r f5ed1489ddcf ChangeLog
--- a/ChangeLog	Mon Aug 03 13:18:16 2009 +0100
+++ b/ChangeLog	Tue Aug 04 11:34:49 2009 -0400
@@ -1,3 +1,8 @@ 2009-08-03  Andrew John Hughes  <ahughes
+2009-08-04  Omair Majid  <omajid at redhat.com>
+
+	* rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java
+	(initialize): Disable creation of desktop shortcuts.
+
 2009-08-03  Andrew John Hughes  <ahughes at redhat.com>
 
 	* hotspot.map:
diff -r 18f23e1e3c37 -r f5ed1489ddcf rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java
--- a/rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java	Mon Aug 03 13:18:16 2009 +0100
+++ b/rt/net/sourceforge/jnlp/runtime/ApplicationInstance.java	Tue Aug 04 11:34:49 2009 -0400
@@ -109,7 +109,24 @@ public class ApplicationInstance {
      */
     public void initialize() {
         installEnvironment();
-        addMenuAndDesktopEntries();
+        
+        /*
+         * FIXME: Disable creating desktop entries for now
+         * 
+         * there are some major issues we need to work out before we can enable them
+         * 1. Playing nice with the altnatives system
+         *   - use the system preferred jdk (/usr/bin/javaws)
+         *   - dont assume what jdk javaws corresponds to
+         *   - make sure our shortcuts work with the sun jdk and vice versa 
+         *     (may not be possible since sun's javaws creates a launcher that
+         *     links to /usr/java/${ver}/bin/javaws)
+         *   - we should use the same options and arguments as sun's javaws
+         * 2. Make shortcuts work offline 
+         *   - make the cache updates and replacements work properly
+         *   - shortcuts should use the cache
+         *   
+         *  addMenuAndDesktopEntries();
+         */
     }
 
     /**



More information about the distro-pkg-dev mailing list