Home
last modified time | relevance | path

Searched refs:permanent_url (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DPsr7Response.php30 private $permanent_url; variable in SimplePie\\HTTP\\Psr7Response
37 …public function __construct(ResponseInterface $response, string $permanent_url, string $requested_… argument
40 $this->permanent_url = $permanent_url;
46 return $this->permanent_url;
74 …return new self($this->response->withHeader($name, $value), $this->permanent_url, $this->requested…
H A DRawTextResponse.php28 private $permanent_url; variable in SimplePie\\HTTP\\RawTextResponse
43 $this->permanent_url = $filepath;
49 return $this->permanent_url;
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php76 public $permanent_url; variable in SimplePie\\File
100 $this->permanent_url = $url;
312 return (string) $this->permanent_url;
438 $file->permanent_url = $response->get_permanent_uri();
H A DSimplePie.php432 public $permanent_url = null; variable in SimplePie\\SimplePie
775 $this->permanent_url = $this->feed_url;
792 $this->permanent_url = $this->feed_url;
1797 if ($parser->parse($utf8_data, 'UTF-8', $this->permanent_url ?? '')) {
2090 $this->permanent_url = $file->get_permanent_uri();
2292 if ($this->permanent_url !== null) {
2298 $this->permanent_url,
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md30 - Correct `SimplePie\File::$permanent_url` when multiple redirects are chained (by @jtojnar in [#81…
49 …- `SimplePie\File::$permanent_url` is deprecated, use `SimplePie\File::get_permanent_uri()` instead
220 * Fix permanent_url for HTTP 301 [#660](https://github.com/simplepie/simplepie/pull/660)