Home
last modified time | relevance | path

Searched refs:resp_headers (Results 1 – 15 of 15) sorted by relevance

/plugin/upgrade/HTTP/
DHTTPClient.php43 public $resp_headers; variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
169 $this->resp_headers = array();
341 $this->resp_headers = $this->parseHeaders($r_headers);
342 if(isset($this->resp_headers['set-cookie'])){
343 foreach ((array) $this->resp_headers['set-cookie'] as $cookie){
357 $this->debug('Object headers',$this->resp_headers);
361 if (empty($this->resp_headers['location'])){
374 if (!preg_match('/^http/i', $this->resp_headers['location'])){
375 if($this->resp_headers['location'][0] != '/'){
376 … $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uriPort.
[all …]
/plugin/elwikiupgrade/
DHTTPClient.php53 var $resp_headers; variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
180 $this->resp_headers = array();
349 $this->resp_headers = $this->_parseHeaders($r_headers);
350 if(isset($this->resp_headers['set-cookie'])){
351 foreach ((array) $this->resp_headers['set-cookie'] as $cookie){
365 $this->_debug('Object headers',$this->resp_headers);
369 if (empty($this->resp_headers['location'])){
382 if (!preg_match('/^http/i', $this->resp_headers['location'])){
383 if($this->resp_headers['location'][0] != '/'){
384 … $this->resp_headers['location'] = $uri['scheme'].'://'.$uri['host'].':'.$uri['port'].
[all …]
/plugin/linkback/
Dhttp.php167 $this->resp_headers = $this->parseHeaders($r_headers);
168 if (isset ($this->resp_headers['set-cookie'])) {
169 foreach ((array) $this->resp_headers['set-cookie'] as $cookie) {
175 $this->debug('Object headers', $this->resp_headers);
179 if (empty ($this->resp_headers['location'])) {
189 if (!preg_match('/^http/i', $this->resp_headers['location'])) {
190 $this->resp_headers['location'] = $uri['scheme'] . '://' . $uri['host'] .
191 $this->resp_headers['location'];
194 return $this->sendRequest($this->resp_headers['location'], array (), 'GET');
266 if ($this->resp_headers['content-encoding'] == 'gzip') {
Dtools.php55 'headers' => $http_client->resp_headers,
/plugin/letsencrypt/classes/
DClient.php62 if(isset($this->http->resp_headers['replay-nonce'])) {
63 return $this->http->resp_headers['replay-nonce'];
80 if(isset($this->http->resp_headers['location'])) {
81 return $this->http->resp_headers['location'];
102 if(preg_match('~<(.+)>;rel="up"~', $this->http->resp_headers['link'], $matches)) {
/plugin/issuelinks/services/
DGitHub.service.php104 $headers = $this->dokuHTTPClient->resp_headers;
147 if ($this->dokuHTTPClient->resp_headers['x-ratelimit-remaining'] < 500) {
150 dformat($this->dokuHTTPClient->resp_headers['x-ratelimit-reset'])
157 if (empty($this->dokuHTTPClient->resp_headers['link'])) {
160 $links = $utils->parseHTTPLinkHeaders($this->dokuHTTPClient->resp_headers['link']);
573 $headers = $this->dokuHTTPClient->resp_headers;
DGitLab.service.php470 $headers = $this->dokuHTTPClient->resp_headers;
/plugin/oiddelegate/
Dadmin.php72 if($http->resp_headers['x-xrds-location']){
73 $new[4] = $http->resp_headers['x-xrds-location'];
/plugin/ghissues/helper/
DapiCacheInterface.php120 $apiHead = $http->resp_headers;
247 $apiHead = $http->resp_headers;
/plugin/scrape/
Dsyntax.php99 [$mime, $charset] = sexplode(';', $http->resp_headers['content-type'], 2);
/plugin/imgpaste/
Daction.php98 [$type] = explode(';', $http->resp_headers['content-type']);
/plugin/linkback/action/
Dsend.php227 …if ($this->_ping_page_linkback(trim($type), $page, $http_client->resp_headers, $data, $linkback_in…
/plugin/oembed/
Dsyntax.php420 'headers' => $client->resp_headers,
/plugin/siteexport/action/
Dajax.php601 $this->functions->debug->message("Headers received", $http->resp_headers, 2);
627 $extension = explode(';', $http->resp_headers['content-type'], 2);
637 …y($tmpFile, preg_replace("/.*?filename=\"?(.*?)\"?;?$/", "$1", $http->resp_headers['content-dispos…
/plugin/webdavclient/
Dhelper.php586 array_unshift($urilist, $this->client->resp_headers['location']);