How interesting. Its actually symptomatic of another bug in ccTiddly.
Basically the forward slash is being stripped so the request goes to
http://wiki.osmosoft.com/alpha which would usually provide a 301 redirect to
http://wiki.osmosoft.com/alpha/.
Unfortunately the proxy code is unable to handle the 301 redirect.
As a temporary hack you could do change the following in the LoadRemoteFileThroughProxy tiddler :
loadRemoteFile = function(url,callback,params)
{
if ((document.location.toString().substr(0,4) == "http") && (url.substr(0,4) == "http")){
url = store.getTiddlerText("SiteProxy", "/proxy/") + url;
}
url = url+"/";
return bidix.core.loadRemoteFile(url,callback,params);
}
I have created a ticket :
http://trac.tiddlywiki.org/ticket/1037Thanks for letting me know.
Simon