If i load catwalk, firebug gives me the following output:
uncaught exception: Security Error: Content at
https://bcmail.dnsalias.net/edit/ may not load data from
http://bcmail.dnsalias.net/edit/browse/?object_name=NewsItem.
The problem seems to be that all the AJAX calls are requesting data
from the non-SSL domain, which firefox is reading as a different
domain. The function call for the ajax is
BEGIN CODE
--------------------------
javascript:catwalk.displayObject('Tag')
catwalk.displayObject = function(objectName)
{
switch(catwalk.currentPanel)
{
case 'structure':
catwalk.retrieveStructure(objectName);
break;
case 'browse':
catwalk.retrieveValues(objectName);
break;
case 'add':
catwalk.retrieveFormAdd(objectName);
break;
}
catwalk.hightlightObject(objectName);
}
catwalk.retrieveStructure = function(objectName)
{
catwalk.currentPanel='structure';
var d = loadJSONDoc('columns?objectName='+objectName);
d.addCallback(catwalk.renderStructure);
}
function loadJSONDoc(url) {
var d = doSimpleXMLHttpRequest(url);
var eval_req = function(req) {
return eval('(' + req.responseText + ')');
};
d.addCallback(eval_req);
return d;
}
--------------------------------
END CODE
The request doesn't get to apache, however if i put the requested page
in my address bar, the server sents the XML just fine, so i don't think
it's a server-site problem
It seems that the question is where catwalk is getting the request URI
from, and why that URI doesn't update to be "https://..."
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---