/hg/release/icedtea6-1.8: Undo changes from 98c88b32cdb4 to Pars...
dbhole at icedtea.classpath.org
dbhole at icedtea.classpath.org
Wed Jul 21 13:50:30 PDT 2010
changeset fcc6da6f0adb in /hg/release/icedtea6-1.8
details: http://icedtea.classpath.org/hg/release/icedtea6-1.8?cmd=changeset;node=fcc6da6f0adb
author: Deepak Bhole <dbhole at redhat.com>
date: Wed Jul 21 16:29:05 2010 -0400
Undo changes from 98c88b32cdb4 to Parser.java, since they could
cause potential regressions.
diffstat:
2 files changed, 19 insertions(+), 11 deletions(-)
ChangeLog | 5 +++++
netx/net/sourceforge/jnlp/Parser.java | 25 ++++++++++++++-----------
diffs (110 lines):
diff -r baf9e63a16aa -r fcc6da6f0adb ChangeLog
--- a/ChangeLog Wed Jul 21 13:02:49 2010 -0400
+++ b/ChangeLog Wed Jul 21 16:29:05 2010 -0400
@@ -1,3 +1,8 @@ 2010-07-20 Omair Majid <omajid at redhat.co
+2010-07-21 Deepak Bhole <dbhole at redhat.com>
+
+ * netx/net/sourceforge/jnlp/Parser.java: Undo changes from 98c88b32cdb4 to
+ Parser.java, since they could cause potential regressions.
+
2010-07-20 Omair Majid <omajid at redhat.com>
* netx/net/sourceforge/jnlp/resources/Messages.properties:
diff -r baf9e63a16aa -r fcc6da6f0adb netx/net/sourceforge/jnlp/Parser.java
--- a/netx/net/sourceforge/jnlp/Parser.java Wed Jul 21 13:02:49 2010 -0400
+++ b/netx/net/sourceforge/jnlp/Parser.java Wed Jul 21 16:29:05 2010 -0400
@@ -86,6 +86,9 @@ class Parser {
/** the specification version */
private Version spec;
+
+ /** the base URL that all hrefs are relative to */
+ private URL base;
/** the codebase URL */
private URL codebase;
@@ -129,8 +132,8 @@ class Parser {
// JNLP tag information
this.spec = getVersion(root, "spec", "1.0+");
this.codebase = addSlash(getURL(root, "codebase", base));
-
- fileLocation = getURL(root, "href", codebase);
+ this.base = (codebase!=null) ? codebase : base; // if codebase not specified use default codebase
+ fileLocation = getURL(root, "href", this.base);
// ensure version is supported
if (!supportedVersions.matchesAny(spec))
@@ -276,7 +279,7 @@ class Parser {
*/
public JREDesc getJRE(Node node) throws ParseException {
Version version = getVersion(node, "version", null);
- URL location = getURL(node, "href", codebase);
+ URL location = getURL(node, "href", base);
String vmArgs = getAttribute(node, "java-vm-args",null);
try {
checkVMArgs(vmArgs);
@@ -303,7 +306,7 @@ class Parser {
*/
public JARDesc getJAR(Node node) throws ParseException {
boolean nativeJar = "nativelib".equals(node.getNodeName());
- URL location = getRequiredURL(node, "href", codebase);
+ URL location = getRequiredURL(node, "href", base);
Version version = getVersion(node, "version", null);
String part = getAttribute(node, "part", null);
boolean main = "true".equals(getAttribute(node, "main", "false"));
@@ -327,7 +330,7 @@ class Parser {
public ExtensionDesc getExtension(Node node) throws ParseException {
String name = getAttribute(node, "name", null);
Version version = getVersion(node, "version", null);
- URL location = getRequiredURL(node, "href", codebase);
+ URL location = getRequiredURL(node, "href", base);
ExtensionDesc ext = new ExtensionDesc(name, version, location);
@@ -430,7 +433,7 @@ class Parser {
addInfo(info, child, kind, getSpanText(child));
}
if ("homepage".equals(name))
- addInfo(info, child, null, getRequiredURL(child, "href", codebase));
+ addInfo(info, child, null, getRequiredURL(child, "href", base));
if ("icon".equals(name))
addInfo(info, child, getAttribute(child, "kind", "default"), getIcon(child));
if ("offline-allowed".equals(name))
@@ -484,7 +487,7 @@ class Parser {
int height = Integer.parseInt(getAttribute(node, "height", "-1"));
int size = Integer.parseInt(getAttribute(node, "size", "-1"));
int depth = Integer.parseInt(getAttribute(node, "depth", "-1"));
- URL location = getRequiredURL(node, "href", codebase);
+ URL location = getRequiredURL(node, "href", base);
Object kind = getAttribute(node, "kind", "default");
return new IconDesc(location, kind, width, height, depth, size);
@@ -521,8 +524,8 @@ class Parser {
else if (strict)
throw new ParseException(R("PEmptySecurity"));
- if (codebase != null)
- return new SecurityDesc(file, type, codebase.getHost());
+ if (base != null)
+ return new SecurityDesc(file, type, base.getHost());
else
return new SecurityDesc(file, type, null);
}
@@ -589,7 +592,7 @@ class Parser {
public AppletDesc getApplet(Node node) throws ParseException {
String name = getRequiredAttribute(node, "name", R("PUnknownApplet"));
String main = getRequiredAttribute(node, "main-class", null);
- URL docbase = getURL(node, "documentbase", codebase);
+ URL docbase = getURL(node, "documentbase", base);
Map paramMap = new HashMap();
int width = 0;
int height = 0;
@@ -721,7 +724,7 @@ class Parser {
public RelatedContentDesc getRelatedContent(Node node) throws ParseException {
getRequiredAttribute(node, "href", null);
- URL location = getURL(node, "href", codebase);
+ URL location = getURL(node, "href", base);
String title = null;
String description = null;
More information about the distro-pkg-dev
mailing list