EVALUATION
This problem is caused by changes in autodl URL by web engineering in Mantis on the server side, and the changes have not been reflected into the HTMLConverter.
In src/plugin/src/share/converter/sun/plugin/converter/engine/PluginConverter.java, the default autodl URL is
"http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,0"
instead of
"http://java.sun.com/update/1.4.2/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,0"
This is too late to fix in Mantis now. I would recommend we manually modify the demo page with the correct download URL at java.sun.com, and document this on the web, and fix the problem in 1.4.2_01.
###@###.### 2003-06-25
###@###.### 2003-07-09
This will be fixed in JRE 1.4.2_01.
if ( majorVersion > 1 || minorVersion > 4 || (minorVersion >= 4 && microVersion >= 1)) {
urlString = "http://java.sun.com/update/" + version;
}
else {
urlString = "http://java.sun.com/products/plugin/autodl";
}
Dennis
|