Home
last modified time | relevance | path

Searched refs:headers (Results 126 – 150 of 443) sorted by last modified time

12345678910>>...18

/plugin/davcal/vendor/sabre/http/lib/
H A DMessageInterface.php121 * @param array $headers
124 function setHeaders(array $headers); argument
144 * @param array $headers
147 function addHeaders(array $headers); argument
H A DRequest.php39 * @param array $headers
42 function __construct($method = null, $url = null, array $headers = null, $body = null) { argument
49 if (!is_null($headers)) $this->setHeaders($headers);
H A DResponse.php101 * @param array $headers
105 function __construct($status = null, array $headers = null, $body = null) { argument
108 if (!is_null($headers)) $this->setHeaders($headers);
H A DSapi.php101 $headers = [];
127 $headers['Content-Type'] = $value;
130 $headers['Content-Length'] = $value;
137 … $headers['Authorization'] = 'Basic ' . base64_encode($value . ':' . $serverArray['PHP_AUTH_PW']);
143 $headers['Authorization'] = 'Digest ' . $value;
149 $headers['Authorization'] = $value;
154 $headers['Host'] = $value;
176 $headers[$header] = $value;
186 $r = new Request($method, $url, $headers);
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DMessageTest.php87 $headers = [
92 $message->setHeaders($headers);
93 $this->assertEquals($headers, $message->getHeaders());
113 $headers = [
118 $message->addHeaders($headers);
119 $this->assertEquals($headers, $message->getHeaders());
H A DSapiTest.php103 $headers = xdebug_get_headers();
113 $headers
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DServer.php301 $headers = $e->getHTTPHeaders($this);
306 $headers = [];
309 $headers['Content-Type'] = 'application/xml; charset=utf-8';
312 $this->httpResponse->setHeaders($headers);
818 $headers = [];
823 $headers[$header] = $properties[$property];
827 $headers[$header] = HTTP\Util::toHTTPDate($properties[$property]->getTime());
832 return $headers;
H A DClient.php333 * @param array $headers
337 function request($method, $url = '', $body = null, array $headers = []) { argument
341 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DJCalTransformTest.php30 $headers = [
33 $request = new Request('GET', '/calendars/user1/foo/bar.ics', $headers);
73 $headers = [];
74 $request = new Request('REPORT', '/calendars/user1/foo', $headers, $xml);
124 $headers = [
127 $request = new Request('REPORT', '/calendars/user1/foo', $headers, $xml);
177 $headers = [
180 $request = new Request('REPORT', '/calendars/user1/foo/bar.ics', $headers, $xml);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/IMip/
H A DMockPlugin.php29 * @param array $headers List of headers
32 protected function mail($to, $subject, $body, array $headers) { argument
38 'headers' => $headers,
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DIMipPluginTest.php122 'headers' => [
164 'headers' => [
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DCreateSubscriptionTest.php42 $headers = [
45 $request = new Request('MKCOL', '/calendars/user1/subscription1', $headers, $body);
86 $headers = [
89 $request = new Request('MKCALENDAR', '/calendars/user1/subscription1', $headers, $body);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PartialUpdate/
H A DSpecificationTest.php45 $headers = [
51 $headers['Content-Length'] = (string)$contentLength;
54 $request = new HTTP\Request('PATCH', '/foobar.txt', $headers, '----');
/plugin/davcal/vendor/sabre/http/
H A DREADME.md335 * @param array $headers
540 * Resets HTTP headers
544 * @param array $headers
547 function setHeaders(array $headers);
550 * Adds a new set of HTTP headers.
555 * @param array $headers
558 function addHeaders(array $headers);
685 * Resets HTTP headers
689 * @param array $headers
695 * Adds a new set of HTTP headers.
[all …]
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.less897 /* column headers can't have as much v space */ }
/plugin/davcal/vendor/sabre/dav/bin/
H A Dgooglecode_upload.py92 headers = {
99 server.request('POST', upload_uri, body, headers)
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAWS.php192 $headers = $this->request->getHeaders();
193 foreach ($headers as $headerName => $headerValue) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php131 $headers = [
137 $headers[] = 'X-Sabre-Version: ' . DAV\Version::VERSION;
143 $headers
158 * @param array $headers List of headers
161 protected function mail($to, $subject, $body, array $headers) { argument
163 mail($to, $subject, $body, implode("\r\n", $headers));
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerPropsTest.php35 private function sendRequest($body, $path = '/', $headers = ['Depth' => '0']) { argument
37 $request = new HTTP\Request('PROPFIND', $path, $headers, $body);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DLogglyHandler.php144 $headers = ['Content-Type: application/json'];
147 $headers[] = 'X-LOGGLY-TAG: '.implode(',', $this->tag);
151 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DCheckResponse.php25 public $headers; variable in Google\\Service\\ServiceControl\\CheckResponse
32 public function setHeaders($headers) argument
34 $this->headers = $headers;
41 return $this->headers;
H A DRequest.php27 public $headers; variable in Google\\Service\\ServiceControl\\Request
86 public function setHeaders($headers) argument
88 $this->headers = $headers;
95 return $this->headers;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/
H A DHttpCheck.php35 public $headers; variable in Google\\Service\\Monitoring\\HttpCheck
106 public function setHeaders($headers) argument
108 $this->headers = $headers;
115 return $this->headers;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DUrlMapTest.php95 public function setHeaders($headers) argument
97 $this->headers = $headers;
104 return $this->headers;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md202 ## headers event has been removed
204 Removed the "headers" event. This event was only useful for changing the
208 first byte is written, you could check if the response headers match your
417 addition of arbitrary headers.
419 of the custom headers are now handled separately in specific
421 been updated to properly handle headers that contain parameters (like the
520 `headers` is a new event that is emitted after the response headers of a
707 'command.headers' => array('Test' => '123'),
715 'headers' => array('Test' => '123'),
742 `$client->setDefaultOption('headers/{header_name}', 'value')`. or
[all …]

12345678910>>...18