Home
last modified time | relevance | path

Searched refs:response (Results 901 – 925 of 925) sorted by path

1...<<31323334353637

/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DServer.php457 * @param ResponseInterface $response
474 if (!$this->checkPreconditions($request, $response)) {
475 $this->sapi->sendResponse($response);
480 if ($this->emit('method', [$request, $response])) {
494 if ($response->getStatus() === null) {
498 $this->sapi->sendResponse($response);
1291 * @param ResponseInterface $response
1380 $response->setStatus(304);
1408 $response->setStatus(304);
1673 $response = new Xml\Element\Response(
[all …]
H A DTemporaryFileFilterPlugin.php107 * @param ResponseInterface $response
110 function beforeMethod(RequestInterface $request, ResponseInterface $response) { argument
117 return $this->httpGet($request, $response, $tempLocation);
119 return $this->httpPut($request, $response, $tempLocation);
121 return $this->httpPropfind($request, $response, $tempLocation);
123 return $this->httpDelete($request, $response, $tempLocation);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Sharing/
H A DPlugin.php181 * @param ResponseInterface $response
184 function httpPost(RequestInterface $request, ResponseInterface $response) { argument
205 $response->setStatus(200);
208 $response->setHeader('X-Sabre-Status', 'everything-went-well');
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Response/
H A DMultiStatus.php90 foreach ($this->getResponses() as $response) {
91 $writer->writeElement('{DAV:}response', $response);
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php870 * @param ResponseInterface $response
873 function beforeMethod(RequestInterface $request, ResponseInterface $response) { argument
1163 * @param ResponseInterface $response
1166 function httpAcl(RequestInterface $request, ResponseInterface $response) { argument
1237 $response->setStatus(200);
/plugin/webdav/vendor/sabre/http/
H A DCHANGELOG.md198 * Changed: Response::send() is now Sapi::sendResponse($response).
H A DREADME.md96 A response object you can just create as such:
103 $response = new HTTP\Response();
104 $response->setStatus(201); // created !
105 $response->setHeader('X-Foo', 'bar');
106 $response->setBody(
115 HTTP\Sapi::sendResponse($response);
197 $response = $client->send($request);
199 echo $response->getBodyAsString();
217 // do some rewriting in the response.
317 $response = $client->send($subRequest);
[all …]
/plugin/webdav/vendor/sabre/http/lib/Auth/
H A DAWS.php144 $this->response->addHeader('WWW-Authenticate', 'AWS');
145 $this->response->setStatus(401);
H A DAbstractAuth.php38 protected $response; variable in Sabre\\HTTP\\Auth\\AbstractAuth
46 …nction __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) { argument
50 $this->response = $response;
H A DBasic.php58 …$this->response->addHeader('WWW-Authenticate', 'Basic realm="' . $this->realm . '", charset="UTF-8…
59 $this->response->setStatus(401);
H A DBearer.php51 $this->response->addHeader('WWW-Authenticate', 'Bearer realm="' . $this->realm . '"');
52 $this->response->setStatus(401);
H A DDigest.php47 …nction __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) { argument
51 parent::__construct($realm, $request, $response);
184 …$this->response->addHeader('WWW-Authenticate', 'Digest realm="' . $this->realm . '",qop="' . $qop …
185 $this->response->setStatus(401);
/plugin/webdav/vendor/sabre/http/lib/
H A DClient.php160 throw new ClientHttpException($response);
163 return $response;
353 $response = $this->parseCurlResult($response, $this->curlHandle);
356 throw new ClientException($response['curl_errmsg'], $response['curl_errno']);
359 return $response['response'];
474 * @param string $response
500 unset($response);
513 $response = new Response();
523 $response->setBody($responseBody);
525 $httpCode = intval($response->getStatus());
[all …]
H A DClientHttpException.php22 protected $response; variable in Sabre\\HTTP\\ClientHttpException
27 * @param ResponseInterface $response
29 function __construct(ResponseInterface $response) { argument
31 $this->response = $response;
32 parent::__construct($response->getStatusText(), $response->getStatus());
43 return $this->response->getStatus();
54 return $this->response;
H A DSapi.php53 * @param ResponseInterface $response
56 static function sendResponse(ResponseInterface $response) { argument
58 …header('HTTP/' . $response->getHttpVersion() . ' ' . $response->getStatus() . ' ' . $response->get…
59 foreach ($response->getHeaders() as $key => $value) {
71 $body = $response->getBody();
74 $contentLength = $response->getHeader('Content-Length');
/plugin/webdavclient/
H A Dhelper.php679 $response = $this->parseResponse();
698 foreach($response as $href => $data)
728 foreach($response as $href => $data)
1073 $response = $this->parseResponse();
1074 return $response;
1238 if(!empty($xml->response))
1240 foreach($xml->response as $response)
1242 $href = (string)$response->href;
1467 $response = preg_replace('/(<\/*)[^>:]+:/', '$1', $response);
1468 dbglog($response);
[all …]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/
H A Dbasexml.asp26 ' Cleans the response buffer.
32 ' Set the response format.
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf5_connector.cfm29 * encoded response - code points under 127 in UTF-8 are stored using a
H A Dcf5_upload.cfm29 * encoded response - code points under 127 in UTF-8 are stored using a
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/lasso/
H A Dconnector.lasso71 Build the appropriate response per the 'Command' parameter. Wrap the
143 This is the only command that returns an HTML response.
187 Set the error code for the response. Note whether
201 Set the HTML response.
247 Wrap the response as XML and output.
H A Dupload.lasso61 Custom tag sets the HTML response.
76 -description='Sets the HTML response for the FCKEditor Quick Upload feature.'
135 Set the error code for the response.
/plugin/wysiwyg/
H A Dscript.js60 success = ajax.response;
189 success = ajax.response;
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js55532 self.resolve(value).then(function (response) {
55535 handlers.resolve(promise, response);
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js4568 self.resolve(value).then(function (response) { argument
4571 handlers.resolve(promise, response);
/plugin/yuriigantt/3rd/dhtmlxgantt/
H A Ddhtmlxgantt.js.map1response content for action\n\t * @type: private\n\t */\n\tdefineAction(name: string, handler: any…

1...<<31323334353637