[RFC][IcedTea-Web]: Fix for PR464

Andrew Su asu at redhat.com
Wed Jun 8 10:34:45 PDT 2011



----- Original Message -----
> From: "Dr Andrew John Hughes" <ahughes at redhat.com>
> To: "Andrew Su" <asu at redhat.com>
> Cc: "distro-pkg-dev" <distro-pkg-dev at openjdk.java.net>
> Sent: Wednesday, June 8, 2011 12:21:28 PM
> Subject: Re: [RFC][IcedTea-Web]: Fix for PR464
> On 10:17 Wed 08 Jun , Andrew Su wrote:
> >
> >
-- snip --
> >
> > The reason for the change is the following snippet:
> >
> > - JNLPFile jnlpFile = new JNLPFile(jnlp);
> > + JNLPFile jnlpFile = new JNLPFile(jnlp, null, false,
> > JNLPRuntime.getDefaultUpdatePolicy(), this.codeBase);
> >                  Map<String, String> jnlpParams =
> >                  jnlpFile.getApplet().getParameters();
> >
> >                  // Change the parameter name to lowercase to follow
> >                  conventions.
> >                  for (Map.Entry<String, String> entry :
> >                  jnlpParams.entrySet()) {
> > - atts.put(entry.getKey().toLowerCase(), entry.getValue());
> > + this.atts.put(entry.getKey().toLowerCase(), entry.getValue());
> >                  }
> > + JARDesc[] jarDescs = jnlpFile.getResources().getJARs();
> > + for (JARDesc jarDesc : jarDescs) {
> > + String fileName = jarDesc.getLocation().toExternalForm();
> > + this.jars.add(fileName);
> > + }
> >              } catch (MalformedURLException e) {
> >
> > Here we are adding the names to 'jars' as well. Which means that
> > 'jars' if left as String[] will mean we will have to extend the size
> > if there are any items in the snippet you posted. Also we would need
> > to go through the items, to avoid having same items added more than
> > once. (since the site dev, may choose to specify it in both the JNLP
> > file and as a parameter.).
> >
> > Cheers,
> >  Andrew
> 
> Ok, so let's do the HashSet change in one patch, and then apply the
> new support on top of it.
> It makes the changes clearer.

Sure thing, here's the changes split in two.

Is this ok for HEAD now?

Cheers,
  Andrew

-------------- next part --------------
A non-text attachment was scrubbed...
Name: pr464_1.patch
Type: text/x-patch
Size: 3002 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110608/1fb730c3/pr464_1.patch 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pr464_2.patch
Type: text/x-patch
Size: 8336 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20110608/1fb730c3/pr464_2.patch 


More information about the distro-pkg-dev mailing list