Home
last modified time | relevance | path

Searched refs:uri (Results 1 – 7 of 7) 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.php193 $uri = null;
199 …$uri = $this->sanitize($author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0]['data']…
204 if ($name !== null || $email !== null || $uri !== null) {
205 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
257 $uri = null;
263 …$uri = $this->sanitize($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0]['d…
268 if ($name !== null || $email !== null || $uri !== null) {
269 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
H A DItem.php505 $uri = null;
511 …$uri = $this->sanitize($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0]['d…
516 if ($name !== null || $email !== null || $uri !== null) {
517 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
558 $uri = null;
564 …$uri = $this->sanitize($author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['uri'][0]['data']…
569 if ($name !== null || $email !== null || $uri !== null) {
570 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
H A DSimplePie.php2445 $uri = null;
2451 …$uri = $this->sanitize($author['child'][self::NAMESPACE_ATOM_10]['uri'][0]['data'], self::CONSTRUC…
2456 if ($name !== null || $email !== null || $uri !== null) {
2457 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
2524 $uri = null;
2530 …$uri = $this->sanitize($contributor['child'][self::NAMESPACE_ATOM_10]['uri'][0]['data'], self::CON…
2535 if ($name !== null || $email !== null || $uri !== null) {
2536 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);