Home
last modified time | relevance | path

Searched refs:uri (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/_test/core/
H A DTestRequest.php121 * @param string $uri end URL to simulate, needs to be one of the testable scripts
124 public function execute($uri = '/doku.php') { argument
136 $this->setUri($uri);
191 * @param string $uri end URL to simulate
194 protected function setUri($uri) { argument
195 if(!preg_match('#^(' . join('|', $this->valid_scripts) . ')#', $uri)) {
196 …throw new Exception("$uri \n--- only " . join(', ', $this->valid_scripts) . " are supported curren…
200 list($uri, $query) = sexplode('?', $uri, 2);
203 $this->script = substr($uri, 1);
212 $uri = $uri . $query;
[all …]
/dokuwiki/inc/lang/ro/
H A Dadminplugins.txt1 ===== Plugin-uri suplimentare =====
/dokuwiki/inc/
H A Dfarm.php73 $uri = explode('/', $_SERVER['SCRIPT_NAME'] ?: $_SERVER['SCRIPT_FILENAME']);
75 for ($i = count($uri) - 1; $i > 0; $i--) {
77 $dir = implode('.', array_slice($server, -$j)) . implode('.', array_slice($uri, 0, $i));
/dokuwiki/inc/HTTP/
H A DHTTPClient.php180 $uri = parse_url($url);
181 $server = $uri['host'];
182 $path = empty($uri['path']) ? '/' : $uri['path'];
183 $uriPort = empty($uri['port']) ? null : $uri['port'];
184 if (!empty($uri['query'])) $path .= '?' . $uri['query'];
185 if (isset($uri['user'])) $this->user = $uri['user'];
186 if (isset($uri['pass'])) $this->pass = $uri['pass'];
197 $port = $uriPort ?: ($uri['scheme'] == 'https' ? 443 : 80);
198 $use_tls = ($uri['scheme'] == 'https');
212 $headers['Host'] = $uri['host']
[all …]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSource.php200 $uri = null;
206 $uri = $author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0];
207 … $uri = $this->sanitize($uri['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($uri));
212 if ($name !== null || $email !== null || $uri !== null) {
213 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
273 $uri = null;
279 $uri = $contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0];
280 … $uri = $this->sanitize($uri['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($uri));
285 if ($name !== null || $email !== null || $uri !== null) {
286 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
H A DItem.php490 $uri = null;
496 $uri = $contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0];
497 … $uri = $this->sanitize($uri['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($uri));
502 if ($name !== null || $email !== null || $uri !== null) {
503 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
545 $uri = null;
551 $uri = $author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0];
552 … $uri = $this->sanitize($uri['data'], \SimplePie\SimplePie::CONSTRUCT_IRI, $this->get_base($uri));
557 if ($name !== null || $email !== null || $uri !== null) {
558 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
H A DSimplePie.php2644 $uri = null;
2650 $uri = $author['child'][self::NAMESPACE_ATOM_10]['uri'][0];
2651 $uri = $this->sanitize($uri['data'], self::CONSTRUCT_IRI, $this->get_base($uri));
2656 if ($name !== null || $email !== null || $uri !== null) {
2657 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
2725 $uri = null;
2731 $uri = $contributor['child'][self::NAMESPACE_ATOM_10]['uri'][0];
2732 $uri = $this->sanitize($uri['data'], self::CONSTRUCT_IRI, $this->get_base($uri));
2737 if ($name !== null || $email !== null || $uri !== null) {
2738 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
H A DMisc.php63 public static function is_remote_uri(string $uri): bool argument
65 return preg_match('/^https?:\/\//i', $uri) === 1;