/hg/icedtea6: netx: support JNLP spec version 1.6

omajid at icedtea.classpath.org omajid at icedtea.classpath.org
Mon Aug 9 08:40:45 PDT 2010


changeset b8fc04b080aa in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=b8fc04b080aa
author: Omair Majid <omajid at redhat.com>
date: Mon Aug 09 11:40:33 2010 -0400

	netx: support JNLP spec version 1.6

	2010-08-09 Omair Majid <omajid at redhat.com>

	 * NEWS: Update with support for 1.6 spec.
	    * netx/net/sourceforge/jnlp/Parser.java: Add 1.6 to supportedVersions.


diffstat:

3 files changed, 7 insertions(+), 1 deletion(-)
ChangeLog                             |    5 +++++
NEWS                                  |    1 +
netx/net/sourceforge/jnlp/Parser.java |    2 +-

diffs (35 lines):

diff -r a570f4fed326 -r b8fc04b080aa ChangeLog
--- a/ChangeLog	Fri Aug 06 20:08:18 2010 +0100
+++ b/ChangeLog	Mon Aug 09 11:40:33 2010 -0400
@@ -1,3 +1,8 @@ 2010-08-06  Andrew John Hughes  <ahughes
+2010-08-09  Omair Majid  <omajid at redhat.com>
+
+	* NEWS: Update with support for JNLP spec 1.6
+	* net/sourceforge/jnlp/Parser.java: Add 1.6 to supportedVersions.
+
 2010-08-06  Andrew John Hughes  <ahughes at redhat.com>
 
 	* configure.ac: Bump to 1.10.
diff -r a570f4fed326 -r b8fc04b080aa NEWS
--- a/NEWS	Fri Aug 06 20:08:18 2010 +0100
+++ b/NEWS	Mon Aug 09 11:40:33 2010 -0400
@@ -722,6 +722,7 @@ New in release 1.9 (2010-XX-XX):
   - Minor fixes to JNLPRandomAccessFile
   - Fix browser command in BasicService.showDocument(URL)
   - Run programs that inherit main(String[]) in their main-class
+  - Run JNLP file that use spec version 1.6
 
 New in release 1.8.1 (2010-07-28):
 
diff -r a570f4fed326 -r b8fc04b080aa netx/net/sourceforge/jnlp/Parser.java
--- a/netx/net/sourceforge/jnlp/Parser.java	Fri Aug 06 20:08:18 2010 +0100
+++ b/netx/net/sourceforge/jnlp/Parser.java	Mon Aug 09 11:40:33 2010 -0400
@@ -72,7 +72,7 @@ class Parser {
 
 
     /** the supported JNLP file versions */
-    private static Version supportedVersions = new Version("1.0 1.5 6.0");
+    private static Version supportedVersions = new Version("1.0 1.5 1.6 6.0");
 
     // fix: some descriptors need to use the jnlp file at a later
     // date and having file ref lets us pass it to their



More information about the distro-pkg-dev mailing list