Home
last modified time | relevance | path

Searched refs:scheme (Results 26 – 50 of 170) sorted by last modified time

1234567

/plugin/openid/Auth/OpenID/
H A DURINorm.php167 $scheme = $uri_matches[2];
168 if ($scheme === '') {
173 $scheme = strtolower($scheme);
174 if (!in_array($scheme, ['http', 'https'])) {
218 ($scheme == 'http' && $port == ':80') ||
219 ($scheme == 'https' && $port == ':443')) {
248 return $scheme . '://' . $authority . $path . $query . $fragment;
/plugin/openid/Auth/
H A DOpenID.php378 * @param string $scheme The scheme (e.g. 'http'). Defaults to 'http'.
387 static function urlunparse($scheme, $host, $port = null, $path = '/', argument
391 if (!$scheme) {
392 $scheme = 'http';
403 $result = $scheme . "://" . $host;
442 $scheme = strtolower($parsed['scheme']);
443 if (!in_array($scheme, ['http', 'https'])) {
/plugin/edittable/renderer/
H A Dinverse.php438 foreach ($schemes as $scheme) {
439 … $this->extlinkPatterns[] = '\b(?i)'.$scheme.'(?-i)://['.$any.']+?(?=['.$punc.']*[^'.$any.'])';
/plugin/advanced/lang/en/config/
H A Dinterwiki.txt25 | {SCHEME} | scheme part if an URL was given as wikiname …
H A Dscheme.txt5 === Example of scheme.conf ===
H A Dstyleini.txt17 … templates ''style.ini''. This is especially useful for defining a color scheme once and reuse the…
/plugin/advanced/lang/en/
H A Dconfig.txt20 | ''scheme.conf'' | ''scheme.local.conf'' | [[doku>urlscheme…
/plugin/advanced/lang/fr/config/
H A Dscheme.txt5 === Exemple du fichier scheme.conf ===
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc85 'scheme' => 'https',
102 the default port is `9200`. The default scheme is `http`
H A Dsearch-operations.asciidoc8 REST API, following the naming scheme as much as possible. Let's look at a few
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A DDsn.php19 private $scheme; variable in Nyholm\\Dsn\\Configuration\\Dsn
26 public function __construct(?string $scheme, array $parameters = []) argument
28 $this->scheme = $scheme;
34 return $this->scheme;
40 public function withScheme(?string $scheme) argument
43 $new->scheme = $scheme;
118 $scheme = $this->getScheme();
121 (empty($scheme)
[all...]
H A DPath.php29 public function __construct(string $scheme, string $path, array $parameters = [], array $authentication = []) argument
33 parent::__construct($scheme, $parameters);
44 public function withScheme(?string $scheme) argument
46 if (null === $scheme || '' === $scheme) {
50 return parent::withScheme($scheme);
H A DUrl.php39 public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null, array $parameters = [], array $authentication = []) argument
45 parent::__construct($scheme, $parameters);
102 $scheme = $this->getScheme();
105 (empty($scheme) ? '' : $scheme.'://').
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlFactory.php443 } elseif (isset($request['scheme'])) {
444 $scheme = $request['scheme'];
445 if (isset($value[$scheme])) {
446 $options[CURLOPT_PROXY] = $value[$scheme];
H A DStreamHandler.php261 $scheme = isset($request['scheme']) ? $request['scheme'] : 'http';
262 if (isset($value[$scheme])) {
263 $options['http']['proxy'] = $value[$scheme];
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md485 - Fix [#1456](https://github.com/ruflin/Elastica/issues/1456) set SSL as connection scheme if it is required
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md65 $dsn = DsnParser::parse('scheme://127.0.0.1/foo/bar?key=value');
159 $dsn = DsnParser::parse('scheme://127.0.0.1/foo/bar?key=value');
222 { scheme:[//]authority[path][?query] | scheme:[//][userinfo]path[?query] | host:port[path][?query] }
224 scheme:
259 - scheme://127.0.0.1/foo/bar?key=value
260 - scheme://user:pass@127.0.0.1/foo/bar?key=value
261 - scheme:///var/local/run/memcached.socket?weight=25
262 - scheme://user:pass@/var/local/run/memcached.socket?weight=25
263 - scheme
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php115 // Find the scheme if it exists and trim the double slash.
116 if (!preg_match('#^(?:(?<alt>['.self::UNRESERVED.self::SUB_DELIMS.'%]+:[0-9]+(?:[/?].*)?)|(?<scheme>[a-zA-Z0-9\+-\.]+):(?://)?(?<dsn>.*))$#', $dsn, $matches)) {
117 throw new SyntaxException($dsn, 'A DSN must contain a scheme [a-zA-Z0-9\+-\.]+ and a colon.');
119 $scheme = null;
121 if (!empty($matches['scheme'])) {
122 $scheme = $matches['scheme'];
127 return new Dsn($scheme);
143 return new Dsn($scheme, self::getQuery($parts));
149 return new Path($scheme,
[all...]
/plugin/ckgedit/ckeditor/
H A DCHANGES.md290 …keditor-dev/issues/1337): Updated the samples layout with the new CKEditor 4 logo and color scheme.
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/
H A DUri.php15 private $scheme = 'http'; variable in OAuth\\Common\\Http\\Uri\\Uri
89 $this->scheme = $uriParts['scheme'];
149 return $this->scheme;
246 $uri = $this->scheme . '://' . $this->getRawAuthority();
289 $uri = $this->scheme . '://' . $this->getAuthority();
353 * @param string $scheme
355 public function setScheme($scheme) argument
357 $this->scheme = $scheme;
378 …if (('https' === $this->scheme && $this->port === 443) || ('http' === $this->scheme && $this->port…
H A DUriFactory.php25 $scheme = $this->detectScheme($_server);
31 return $this->createFromParts($scheme, '', $host, $port, $path, $query);
47 * @param string $scheme
57 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
60 $uri->setScheme($scheme);
H A DUriFactoryInterface.php31 * @param string $scheme
41 …public function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragme… argument
H A DUriInterface.php13 * @param string $scheme
15 public function setScheme($scheme); argument
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DCubeHandler.php30 private $scheme; variable in Monolog\\Handler\\CubeHandler
60 $this->scheme = $urlInfo['scheme'];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceControl/
H A DRequest.php59 public $scheme; variable in Google\\Service\\ServiceControl\\Request
198 public function setScheme($scheme) argument
200 $this->scheme = $scheme;
207 return $this->scheme;

1234567