Home
last modified time | relevance | path

Searched refs:url (Results 76 – 87 of 87) sorted by path

1234

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php409 'netscape-ca-policy-url' => '2.16.840.1.113730.1.8',
900 case 'netscape-ca-policy-url':
1028 * @param string $url
1031 public function validateURL($url)
1037 $components = parse_url($url);
1120 * @param string $url
1123 private static function fetchURL($url)
1129 $parts = parse_url($url);
1194 $url = $opt['accessLocation']['uniformResourceIdentifier'];
1200 if (!isset($url)) {
2055 validateURL($url) global() argument
2153 _fetchURL($url) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php130 * @param string $url
133 public static function parse_URL($url) argument
135 $params = parse_url($url);
H A DCopyright.php66 public $url; variable in SimplePie\\Copyright
82 public function __construct($url = null, $label = null) argument
84 $this->url = $url;
106 if ($this->url !== null) {
107 return $this->url;
H A DEnclosure.php465 $url = \SimplePie\Misc::parse_url($this->link);
466 if ($url['path'] !== '') {
467 return pathinfo($url['path'], PATHINFO_EXTENSION);
H A DFile.php61 public $url; variable in SimplePie\\File
72 public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = []) argument
76 $parsed = \SimplePie\Misc::parse_url($url);
77 $url = \SimplePie\Misc::compress_parse_url($parsed['scheme'], $idn->encode($parsed['authority']), $parsed['path'], $parsed['query'], null);
79 $this->url = $url;
80 $this->permanent_url = $url;
82 if (preg_match('/^http(s)?:\/\//i', $url)) {
100 curl_setopt($fp, CURLOPT_URL, $url);
106 curl_setopt($fp, CURLOPT_REFERER, \SimplePie\Misc::url_remove_credentials($url));
[all...]
H A DItem.php374 if (empty($thumbnail['url'])) {
377 $thumbnail['url'] = $this->sanitize($thumbnail['url'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($return[0]));
523 $url = null;
528 if (isset($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]['data'])) {
529 $url = $this->sanitize($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]));
534 if ($name !== null || $email !== null || $url !== null) {
535 $contributors[] = $this->registry->create(Author::class, [$name, $url,
[all...]
H A DLocator.php169 $this->http_base = $this->file->url;
262 $current = $this->registry->call(Misc::class, 'parse_url', [$this->file->url]);
H A DMisc.php183 public static function fix_protocol($url, $http = 1) argument
185 $url = Misc::normalize_url($url);
186 $parsed = Misc::parse_url($url);
191 if ($parsed['scheme'] === '' && $parsed['authority'] === '' && !file_exists($url)) {
196 return "feed:$url";
198 return substr_replace($url, 'podcast', 0, 4);
200 return substr_replace($url, 'itpc', 0, 4);
203 return $url;
222 public static function parse_url($url) argument
245 normalize_url($url) global() argument
2174 url_remove_credentials($url) global() argument
[all...]
H A DParser.php83 public function parse(&$data, $encoding, $url = '') argument
95 return $this->parse_microformats($data, $url);
388 if (isset($data['properties']['url'][0])) {
389 $link = $data['properties']['url'][0];
403 private function parse_microformats(&$data, $url) argument
410 $mf = \Mf2\parse($data, $url);
458 if (isset($entry['properties']['url'][0])) {
459 $link = $entry['properties']['url'][0];
481 // If it's plain text it can also be a url that should be followed to
496 // It must have a url propert
[all...]
H A DSanitize.php335 public function https_url($url) argument
337 return (strtolower(substr($url, 0, 7)) === 'http://') &&
338 $this->is_https_domain(parse_url($url, PHP_URL_HOST)) ?
339 substr_replace($url, 's', 4, 0) : //Add the 's' to HTTPS
340 $url;
H A DSimplePie.php775 * of a string for the $url. Remember that with each additional feed comes
780 * @param string|array $url This is the URL (or array of URLs) that you want to parse.
782 public function set_feed_url($url) argument
785 if (is_array($url)) {
786 foreach ($url as $value) {
790 $this->feed_url = $this->registry->call(Misc::class, 'fix_protocol', [$url, 1]);
804 $this->feed_url = $file->url;
950 * @param string $url The URL of the feed to be cached.
953 public function get_cache_filename($url) argument
956 $url
[all...]
H A DSource.php211 $url = null;
216 if (isset($author[0]['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]['data'])) {
217 $url = $this->sanitize($author[0]['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($author[0]['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]));
222 if ($name !== null || $email !== null || $url !== null) {
223 $authors[] = $this->registry->create(Author::class, [$name, $url, $email]);
275 $url = null;
280 if (isset($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['url'][0]['data'])) {
281 $url
[all...]

1234