Home
last modified time | relevance | path

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

12345

/plugin/authgoogle/google/service/
H A DGoogle_BatchRequest.php45 foreach($this->requests as $key => $req) {
47 $body .= $req->toBatchString($key) . "\n";
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js20879 var req = this._binding.write(flushFlag,
20887 req.buffer = chunk;
20888 req.callback = callback;
H A Dpdfmake.min.js.map1req","init_done","write_in_progress","pending_close","bufferSet","msg","zstream","zlib_deflate","z…
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.min.js1 …n new XMLHttpRequest}];for(var i=factories.length;i--;){try{var req=factories[i]();if(req){return …
15req=reqHandler.request({hostname:oURL.hostname,port:oURL.port,path:oURL.path,method:"GET"},functio…
H A Dfabric.js2255 var req = factories[i]();
2256 if (req) {
23284 req = reqHandler.request({
23304 req.on('error', function(err) {
23313 req.end();
/plugin/freechat/phpfreechat/data/public/js/
H A Dxajax.js18 …f(xajaxConfig.debug)this.DebugMessage("Initializing Request Object..");var req=null;if(typeof XMLH…
19 req=new XMLHttpRequest();if(!req&&typeof ActiveXObject!="undefined"){try{req=new ActiveXObject("Msx…
20 catch(e){try{req=new ActiveXObject("Microsoft.XMLHTTP");}
21 catch(e2){try{req=new ActiveXObject("Msxml2.XMLHTTP.4.0");}
22 catch(e3){req=null;}
26 if(!req&&window.createRequest)
27 req=window.createRequest();if(!req)this.DebugMessage("Request Object Instantiation failed.");return…
/plugin/bugzillaint/
H A Dscript.js28 var req = jQuery.extend( {call:'plugin_bugzillaint_fetch'}, requests.shift() );
29 jQuery.post( DOKU_BASE + 'lib/exe/ajax.php', req )
/plugin/recaptcha/lib/
H A Drecaptchalib.php50 $req = "";
52 $req .= $key . '=' . urlencode( stripslashes($value) ) . '&';
55 $req=substr($req,0,strlen($req)-1);
56 return $req;
71 $req = _recaptcha_qsencode ($data);
76 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
79 $http_request .= $req;
/plugin/tfslink/scripts/
H A Daddworkitemlink_wiz.js97 {call: 'tfslink', req: 'projectcollections'},
/plugin/components/lib/
H A Dajax.php114 foreach ($params as $var => $req) {
132 } else if ($req) $this->error(400);
/plugin/mantis/lib/
H A Dclass.soap_transport_http.php702 $req = "$this->request_method $uri HTTP/$this->protocol_version";
703 $this->debug("HTTP request: $req");
704 $this->outgoing_payload = "$req\r\n";
H A Dnusoap.php2809 $req = "$this->request_method $uri HTTP/$this->protocol_version";
2810 $this->debug("HTTP request: $req");
2811 $this->outgoing_payload = "$req\r\n";
/plugin/sphinxsearch/
H A Dsphinxapi.php1030 $req .= pack ( "N", 0 );
1034 $req .= pack ( "N", 1 );
1067 $req .= sphPackU64 ( $id );
1084 $this->_reqs[] = $req;
1109 $len = 4+strlen($req);
1347 $len = strlen($req);
1417 $len = strlen($req);
1522 $req .= sphPackU64 ( $id );
1528 $req .= pack ( "N", $vv );
1536 $len = strlen($req);
[all …]
/plugin/jcapture/lib/
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/tindexmenu/
H A Dadmin.php19 var $req = 'fetch'; variable in admin_plugin_indexmenu
61 if (!isset($_REQUEST['req'])) return; // first time - nothing to do
62 $this->req=$_REQUEST['req'];
176 …ptln(' <a href="'.$this->repos['url'][$n]."$repo/lib/plugins/tindexmenu/ajax.php?req=send&amp…
H A Dajax.php34 $req=$_REQUEST['req'];
37 if ($req == 'send' and isset($_REQUEST['t'])) {
47 switch ($req) {
H A Dindexmenu-full.js670 var node, req, curns, selft = this;
674 req = 'req=index&idx=' + node.dokuid
703 req += '&nss=' + curns + '&max=1';
706 Ajax.runAJAX(encodeURI(req));
/plugin/contactmodern/
H A Drecaptchalib.php48 $req = "";
50 $req .= $key . '=' . urlencode( stripslashes($value) ) . '&';
53 $req=substr($req,0,strlen($req)-1);
54 return $req;
69 $req = _recaptcha_qsencode ($data);
74 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
77 $http_request .= $req;
/plugin/jdraw/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/actickets/
H A Dscript.js27 req = actickets.requests[r];
28 if (req.ticketId == ticket.ticketId && req.projectId == ticket.projectId) {
/plugin/remotescript/
H A Dscript.js63 var req = new RemoteScript();
64 req.caching = !nocache;
65 req.onreadystatechange = function() {
66 if (req.readyState == 4) {
67 onready(_from_utf8(req.responseJS), _from_utf8(req.responseText));
71 req.method = 'GET';
72 req.open(null, url, true);
73 req.send(content);
/plugin/remotescript/lib/JsHttpRequest/mini/
H A DJsHttpRequest-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);
368 req.status=null;
370 req.status=xr.status;
375 if(!req.status){
382 return req._error("js_invalid",req.responseText);
[all …]
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/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest-form.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);
442 JsHttpRequest.LOADERS.form = { loader: function(req) { argument
443 JsHttpRequest.extend(req._errors, {
[all …]

12345