Home
last modified time | relevance | path

Searched refs:req (Results 101 – 110 of 110) sorted by last modified time

12345

/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest-script.js379 var req = new this();
380 req.caching = !nocache;
381 req.onreadystatechange = function() {
382 if (req.readyState == 4) {
383 onready(req.responseJS, req.responseText);
388 req.loader = RegExp.$2? RegExp.$2 : null;
392 req.open(method, url, true);
393 req.send(content);
441 JsHttpRequest.LOADERS.script = { loader: function(req) { argument
442 JsHttpRequest.extend(req._errors, {
[all …]
H A DJsHttpRequest.js380 var req = new this();
381 req.caching = !nocache;
383 if (req.readyState == 4) {
384 onready(req.responseJS, req.responseText);
393 req.open(method, url, true);
394 req.send(content);
444 JsHttpRequest.extend(req._errors, {
496 req.status = null;
503 if (!req.status) return;
509 return req._error('js_invalid', req.responseText)
[all …]
H A DJsHttpRequest-script-xml.js379 var req = new this();
380 req.caching = !nocache;
382 if (req.readyState == 4) {
383 onready(req.responseJS, req.responseText);
392 req.open(method, url, true);
393 req.send(content);
442 JsHttpRequest.extend(req._errors, {
553 req.status = null;
560 if (!req.status) return;
566 return req._error('js_invalid', req.responseText)
[all …]
H A DJsHttpRequest-xml.js379 var req = new this();
380 req.caching = !nocache;
382 if (req.readyState == 4) {
383 onready(req.responseJS, req.responseText);
392 req.open(method, url, true);
393 req.send(content);
443 JsHttpRequest.extend(req._errors, {
495 req.status = null;
502 if (!req.status) return;
508 return req._error('js_invalid', req.responseText)
[all …]
/plugin/remotescript/lib/JsHttpRequest/mini/
H A DJsHttpRequest-script.js273 var req=new this();
274 req.caching=!_37;
275 req.onreadystatechange=function(){
276 if(req.readyState==4){
277 _36(req.responseJS,req.responseText);
282 req.loader=RegExp.$2?RegExp.$2:null;
286 req.open(_39,url,true);
287 req.send(_35);
305 JsHttpRequest.LOADERS.script={loader:function(req){ argument
306 JsHttpRequest.extend(req._errors,{script_only_get:"Cannot use SCRIPT loader: it supports only GET m…
[all …]
H A DJsHttpRequest-script-xml.js273 var req=new this();
274 req.caching=!_37;
276 if(req.readyState==4){
277 _36(req.responseJS,req.responseText);
286 req.open(_39,url,true);
287 req.send(_35);
422 req.status=null;
424 req.status=xr.status;
429 if(!req.status){
436 return req._error("js_invalid",req.responseText);
[all …]
H A DJsHttpRequest-form.js273 var req=new this();
274 req.caching=!_37;
275 req.onreadystatechange=function(){
276 if(req.readyState==4){
277 _36(req.responseJS,req.responseText);
282 req.loader=RegExp.$2?RegExp.$2:null;
286 req.open(_39,url,true);
287 req.send(_35);
305 JsHttpRequest.LOADERS.form={loader:function(req){ argument
306 JsHttpRequest.extend(req._errors,{form_el_not_belong:"Element \"%\" does not belong to any form!",f…
[all …]
/plugin/remotescript/lib/JsHttpRequest/
H A DJsHttpRequest.js273 var req=new this();
274 req.caching=!_37;
276 if(req.readyState==4){
277 _36(req.responseJS,req.responseText);
286 req.open(_39,url,true);
287 req.send(_35);
368 req.status=null;
370 req.status=xr.status;
375 if(!req.status){
382 return req._error("js_invalid",req.responseText);
[all …]
/plugin/livepreview/
H A Dscript.js210 var req = new RemoteScript;
211 req.onreadystatechange = function() {
212 if (req.readyState == 4) {
213 if (req.responseJS) {
214 tooltipShow(href, req.responseJS);
216 tooltipShow(href, '<br />'+req.responseText);
220 req.loader = 'script';
221 req.cache = false;
222 req.open ("GET",['livepreview','getpreview']);
223 req.send ({'src' : href});
/plugin/googlesearch/
H A Dnusoap.php2479 $req = "$this->request_method $this->uri HTTP/$this->protocol_version";
2480 $this->debug("HTTP request: $req");
2481 $this->outgoing_payload = "$req\r\n";

12345