Looking at the 2005-09-16 beta of jsolait.js, the pertinent part is in the getFile function around line 792
The problem with konqueror (3.5 rc1 ATM, but it happened also with older versions of safari) is that for this line:
if(xmlhttp.status == 200
xmlhttp.status == 0 )
xmlhttp.status is undefined if the desired file is already in the browser cache, so loading fails.
This is a browser bug. But enough browsers are around that have this behavior that it might be worthwhile to fix.
One possible solution is to force a refresh of the desired file by tacking a
?something=randomsomething
onto the url and trying to load the file one more time if the xmlhttp.status condition fails.
Change History
Download in other formats:
|