One thing I see is that your saveingPage function is not receiving
json, but an XMLHttpRequest object. You will need to do something like
var saveingPage = function(result){
var json = evalJSONReqest(result);
alert(json['saveingstatus']);
}
This has bitten me before, as 'loadJSONDoc' really spoils you.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---