Home
last modified time | relevance | path

Searched refs:req (Results 76 – 100 of 110) sorted by path

12345

/plugin/jplayer/components/
H A Drequire.js1218 nextTick: req.nextTick,
1710 return req(config);
1727 require = req;
1730 req.version = version;
1734 req.isBrowser = isBrowser;
1735 s = req.s = {
1741 req({});
1753 req[prop] = function () { function
1775 req.onError = function (err) {
2012 req.exec = function (text) {
[all …]
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Dogg.js2req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}req.onupgrad…
H A Dopus.js2req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}req.onupgrad…
H A Dvorbis.js2req;try{req=IDBFS.indexedDB().open(name,IDBFS.DB_VERSION)}catch(e){return callback(e)}req.onupgrad…
/plugin/jplayer/vendor/robloach/component-installer/src/ComponentInstaller/Resources/
H A Drequire.js1218 nextTick: req.nextTick,
1710 return req(config);
1727 require = req;
1730 req.version = version;
1734 req.isBrowser = isBrowser;
1735 s = req.s = {
1741 req({});
1753 req[prop] = function () { function
1775 req.onError = function (err) {
2012 req.exec = function (text) {
[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/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/pubmed2020/
H A Dsyntax.php366 list($base, $req) = $query;
367 list($cmd, $id) = explode(':', $req, 2);
/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/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/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 …]
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-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-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 …]
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 …]
/plugin/remotescript/lib/JsHttpRequest/mini/
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 …]
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-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-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/
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/revealjs/plugin/multiplex/
H A Dindex.js32 app.get("/", function(req, res) { argument
45 app.get("/token", function(req,res) { argument
/plugin/revealjs/plugin/notes-server/
H A Dindex.js40 app.get('/', function( req, res ) { argument
47 app.get( '/notes/:socketId', function( req, res ) { argument
51 socketId : req.params.socketId
/plugin/sequencediagram/bower_components/lodash/test/
H A Dsaucelabs.js881 http.createServer(function(req, res) { argument
883 if (compatMode && path.extname(url.parse(req.url).pathname) == '.html') {
886 mount(req, res);

12345