From e66a34b2bfca3bb803500c4b9c39bed73d2e4001 Mon Sep 17 00:00:00 2001 From: wei <> Date: Wed, 3 Jan 2007 08:17:41 +0000 Subject: Update active controls to use http response body for application data. --- framework/Web/Javascripts/js/debug/ajax.js | 37 +++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 8 deletions(-) (limited to 'framework/Web/Javascripts/js/debug') diff --git a/framework/Web/Javascripts/js/debug/ajax.js b/framework/Web/Javascripts/js/debug/ajax.js index ed5694cf..452a9ef8 100644 --- a/framework/Web/Javascripts/js/debug/ajax.js +++ b/framework/Web/Javascripts/js/debug/ajax.js @@ -298,12 +298,13 @@ Object.extend(Ajax.Request.prototype, respondToReadyState : function(readyState) { var event = Ajax.Request.Events[readyState]; - var transport = this.transport, json = this.getHeaderData(Prado.CallbackRequest.DATA_HEADER); + var transport = this.transport, json = this.getBodyDataPart(Prado.CallbackRequest.DATA_HEADER); if (event == 'Complete') { - if(this.header('X-PRADO-REDIRECT')) - document.location.href = this.header('X-PRADO-REDIRECT'); + var redirectUrl = this.getBodyContentPart(Prado.CallbackRequest.REDIRECT_HEADER); + if(redirectUrl) + document.location.href = redirectUrl; if ((this.header('Content-type') || '').match(/^text\/javascript/i)) { @@ -321,7 +322,7 @@ Object.extend(Ajax.Request.prototype, { Prado.CallbackRequest.updatePageState(this,transport); Ajax.Responders.dispatch('on' + transport.status, this, transport, json); - Prado.CallbackRequest.dispatchActions(transport,this.getHeaderData(Prado.CallbackRequest.ACTION_HEADER)); + Prado.CallbackRequest.dispatchActions(transport,this.getBodyDataPart(Prado.CallbackRequest.ACTION_HEADER)); (this.options['on' + this.transport.status] || this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')] @@ -349,10 +350,20 @@ Object.extend(Ajax.Request.prototype, * @return object header data as javascript structures. */ getHeaderData : function(name) + { + return this.getJsonData(this.header(name)); + }, + + getBodyContentPart : function(name) + { + if(typeof(this.transport.responseText)=="string") + return Prado.Element.extractContent(this.transport.responseText, name); + }, + + getJsonData : function(json) { try { - var json = this.header(name); return eval('(' + json + ')'); } catch (e) @@ -360,6 +371,11 @@ Object.extend(Ajax.Request.prototype, if(typeof(json) == "string") return Prado.CallbackRequest.decode(json); } + }, + + getBodyDataPart : function(name) + { + return this.getJsonData(this.getBodyContentPart(name)); } }); @@ -411,6 +427,8 @@ Object.extend(Prado.CallbackRequest, */ PAGESTATE_HEADER : 'X-PRADO-PAGESTATE', + REDIRECT_HEADER : 'X-PRADO-REDIRECT', + requestQueue : [], /** @@ -483,10 +501,13 @@ Object.extend(Prado.CallbackRequest, { var msg = 'HTTP '+transport.status+" with response : \n"; if(transport.responseText.trim().length >0) - msg += transport.responseText + "\n"; + { + var f = RegExp('()([\\s\\S\\w\\W]*)()',"m"); + msg += transport.responseText.replace(f,'') + "\n"; + } if(typeof(data)!="undefined" && data != null) msg += "Data : \n"+inspect(data)+"\n"; - data = request.getHeaderData(Prado.CallbackRequest.ACTION_HEADER); + data = request.getBodyDataPart(Prado.CallbackRequest.ACTION_HEADER); if(data && data.length > 0) { msg += "Actions : \n"; @@ -591,7 +612,7 @@ Object.extend(Prado.CallbackRequest, var aborted = self.currentRequest == null; if(enabled && !aborted && pagestate) { - var data = request.header(self.PAGESTATE_HEADER); + var data = request.getBodyContentPart(self.PAGESTATE_HEADER); if(typeof(data) == "string" && data.length > 0) pagestate.value = data; else -- cgit v1.2.3