/hg/release/icedtea6-1.7: netx: fix browser command in BasicServ...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Thu Jul 29 14:28:07 PDT 2010
changeset 08baa34da100 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=08baa34da100
author: Omair Majid <omajid at redhat.com>
date: Thu Jul 29 17:26:39 2010 -0400
netx: fix browser command in BasicService.showDocument(URL)
2010-07-29 Omair Majid <omajid at redhat.com>
* NEWS: Add this fix.
* rt/net/sourceforge/jnlp/services/XBasicService.java
(showDocument): Fix missing space in browser command.
diffstat:
3 files changed, 12 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
NEWS | 5 +++++
rt/net/sourceforge/jnlp/services/XBasicService.java | 2 +-
diffs (37 lines):
diff -r 8e46ad398f83 -r 08baa34da100 ChangeLog
--- a/ChangeLog Wed Jul 28 13:09:43 2010 +0100
+++ b/ChangeLog Thu Jul 29 17:26:39 2010 -0400
@@ -1,3 +1,9 @@ 2010-07-27 Andrew John Hughes <ahughes
+2010-07-29 Omair Majid <omajid at redhat.com>
+
+ * NEWS: Add this fix.
+ * rt/net/sourceforge/jnlp/services/XBasicService.java
+ (showDocument): Fix missing space in browser command.
+
2010-07-27 Andrew John Hughes <ahughes at redhat.com>
* acinclude.m4:
diff -r 8e46ad398f83 -r 08baa34da100 NEWS
--- a/NEWS Wed Jul 28 13:09:43 2010 +0100
+++ b/NEWS Thu Jul 29 17:26:39 2010 -0400
@@ -1,3 +1,8 @@ New in release 1.7.4 (2010-07-28):
+New in release 1.7.5 (XXXX-XX-XX):
+
+* NetX
+ - Fix browser command in BasicService.showDocument(URL)
+
New in release 1.7.4 (2010-07-28):
* NetX security issues:
diff -r 8e46ad398f83 -r 08baa34da100 rt/net/sourceforge/jnlp/services/XBasicService.java
--- a/rt/net/sourceforge/jnlp/services/XBasicService.java Wed Jul 28 13:09:43 2010 +0100
+++ b/rt/net/sourceforge/jnlp/services/XBasicService.java Thu Jul 29 17:26:39 2010 -0400
@@ -176,7 +176,7 @@ class XBasicService implements BasicServ
// this is bogus because the command may require options;
// should use a StreamTokenizer or similar to get tokens
// outside of quotes.
- Runtime.getRuntime().exec(command + url.toString());
+ Runtime.getRuntime().exec(command + " " + url.toString());
//Runtime.getRuntime().exec(new String[]{command,url.toString()});
return true;
More information about the distro-pkg-dev
mailing list