From 1f3bdce4f5d05c89f7f7a8ee53f0bbbc0098c963 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Wed, 10 Nov 2010 16:20:51 -0500 Subject: use browser path from configuration 2010-11-05 Omair Majid * netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java: Add KEY_BROWSER_PATH. (loadDefaultProperties): Use KEY_BROWSER_PATH. * netx/net/sourceforge/jnlp/services/XBasicService.java (initialize): Use the browser command from the configuration. Save updates to configuration as well. --- netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java') diff --git a/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java b/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java index ac171ef..b91ae8f 100644 --- a/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java +++ b/netx/net/sourceforge/jnlp/runtime/DeploymentConfiguration.java @@ -156,6 +156,8 @@ public final class DeploymentConfiguration { public static final String KEY_CREATE_DESKTOP_SHORTCUT = "deployment.javaws.shortcut"; + public static final String KEY_BROWSER_PATH = "deployment.browser.path"; + public enum ConfigType { System, User } @@ -383,7 +385,7 @@ public final class DeploymentConfiguration { /* jre management */ { "deployment.javaws.autodownload", null }, /* browser selection */ - { "deployment.browser.path", null }, + { KEY_BROWSER_PATH, null }, /* check for update timeout */ { "deployment.javaws.update.timeout", String.valueOf(500) } }; -- cgit v1.2.3