
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
0.08h
|
Remaining Estimate:
|
0.08h
|
Time Spent:
|
Unknown
|
|
Environment:
|
Running through CubicTest, inside Eclipse Europa.
|
|
|
The algorithm in LaucherUtils.makeProxyPAC method generates invalid proxy.pac files when the -Dhttp.proxyHost property is setted. The generated file is as follows:
----
function FindProxyForURL(url, host) {
return 'PROXY localhost:1042; PROXY wwwproxy:80';
} else {
return 'PROXY wwwproxy:80';
}
----
The 'else' block is generated even if there is no preceding 'if' clause.
|
|
Description
|
The algorithm in LaucherUtils.makeProxyPAC method generates invalid proxy.pac files when the -Dhttp.proxyHost property is setted. The generated file is as follows:
----
function FindProxyForURL(url, host) {
return 'PROXY localhost:1042; PROXY wwwproxy:80';
} else {
return 'PROXY wwwproxy:80';
}
----
The 'else' block is generated even if there is no preceding 'if' clause. |
Show » |
| There are no comments yet on this issue.
|
|