-
Bug
-
Resolution: Fixed
-
P4
-
None
-
b97
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8034294 | 7u65 | Dmitry Cherepanov | P4 | Resolved | Fixed | b01 |
JDK-8019354 | 7u60 | Dmitry Cherepanov | P4 | Resolved | Fixed | b01 |
JDK-8019888 | 7u45 | Dmitry Cherepanov | P4 | Closed | Fixed | b02 |
JDK-8019638 | 7u40 | Dmitry Cherepanov | P4 | Closed | Fixed | b32 |
deployJava.js
getJavaURL: 'http://java.com/dt-redirect',
If you look at how getJavaURL is used - we might append it with query-string/form values:
location.href = this.getJavaURL +
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ?
('&brand=' + this.brand) : '');
So for example, if returnPage is "http://www.google.com", it does not work now, because it will be:
http://java.com/dt-redirect&returnPage=http://www.google.com&locale=en-US
getJavaURL: 'http://java.com/dt-redirect',
If you look at how getJavaURL is used - we might append it with query-string/form values:
location.href = this.getJavaURL +
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ?
('&brand=' + this.brand) : '');
So for example, if returnPage is "http://www.google.com", it does not work now, because it will be:
http://java.com/dt-redirect&returnPage=http://www.google.com&locale=en-US
- backported by
-
JDK-8019354 Invalid URL to GetJava web page could be formed in deployJava.js in some cases
-
- Resolved
-
-
JDK-8034294 Invalid URL to GetJava web page could be formed in deployJava.js in some cases
-
- Resolved
-
-
JDK-8019638 Invalid URL to GetJava web page could be formed in deployJava.js in some cases
-
- Closed
-
-
JDK-8019888 Invalid URL to GetJava web page could be formed in deployJava.js in some cases
-
- Closed
-