Home
last modified time | relevance | path

Searched refs:uri (Results 26 – 50 of 438) sorted by last modified time

12345678910>>...18

/plugin/combo/ComboStrap/
H A DPath.php24 * @param string $uri
27 public static function createFromUri(string $uri): Path; argument
89 * @return string the uri string representation of this path (with all information, scheme, drive, attributes)
H A DSnippet.php55 const JSON_URI_PROPERTY = "uri"; // internal uri
582 $uri = $array[self::JSON_URI_PROPERTY] ?? null;
583 if ($uri === null) {
584 throw new ExceptionCompile("The snippet uri property was not found in the json array");
587 $wikiPath = FileSystems::createPathFromUri($uri);
/plugin/bpmnio/vendor/bpmn-js/dist/
H A Dbpmn-modeler.production.min.js7uri]=t[e.prefix]=e,this.packages.push(e)},fi.prototype.registerType=function(e,t){var n=hi((e=L({}… property in AnonymousFunctionc4f831ab10100.o.ns
H A Dbpmn-navigated-viewer.production.min.js2uri]=t[e.prefix]=e,this.packages.push(e)},yi.prototype.registerType=function(e,t){var n=fi((e=w({}… property in AnonymousFunctionbb2fc3951c900.a.ns
H A Dbpmn-viewer.production.min.js2uri]=t[e.prefix]=e,this.packages.push(e)},fi.prototype.registerType=function(e,t){var n=hi((e=w({}… property in AnonymousFunction98f4c1951c900.a.ns
/plugin/bpmnio/vendor/dmn-js/dist/
H A Ddmn-modeler.production.min.js2uri]=t[e.prefix]=e,this.packages.push(e)},Oe.prototype.registerType=function(e,t){var n=Se((e=ye({… property in AnonymousFunction9d0550af3d00.o.ns
H A Ddmn-navigated-viewer.production.min.js2uri]=t[e.prefix]=e,this.packages.push(e)},fe.prototype.registerType=function(e,t){var n=ce((e=ne({… property in AnonymousFunction499a07193300.o.ns
H A Ddmn-viewer.production.min.js2uri]=t[e.prefix]=e,this.packages.push(e)},fe.prototype.registerType=function(e,t){var n=ce((e=ne({… property in AnonymousFunctionfc9810193300.o.ns
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Service/
H A DAbstractService.php52 $uri = $path;
54 $uri = new Uri($path);
62 $uri = clone $baseApiUri;
67 $uri->setQuery($query);
74 $uri->setPath($uri->getPath() . $path);
77 return $uri;
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/
H A DUri.php63 * @param string $uri
65 public function __construct($uri = null) argument
67 if (null !== $uri) {
68 $this->parseUri($uri);
73 * @param string $uri
77 protected function parseUri($uri) argument
79 if (false === ($uriParts = parse_url($uri))) {
82 throw new InvalidArgumentException("Invalid URI: $uri");
246 $uri = $this->scheme . '://' . $this->getRawAuthority();
249 $uri
[all...]
H A DUriFactory.php21 if ($uri = $this->attemptProxyStyleParse($_server)) {
22 return $uri;
59 $uri = new Uri();
60 $uri->setScheme($scheme);
61 $uri->setUserInfo($userInfo);
62 $uri->setHost($host);
63 $uri->setPort($port);
64 $uri->setPath($path);
65 $uri->setQuery($query);
66 $uri
[all...]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Signature/
H A DSignature.php51 * @param UriInterface $uri
57 public function getSignature(UriInterface $uri, array $params, $method = 'POST') argument
59 parse_str($uri->getQuery(), $queryStringData);
67 // determine base uri
68 $baseUri = $uri->getScheme() . '://' . $uri->getRawAuthority();
70 if ('/' === $uri->getPath()) {
71 $baseUri .= $uri->hasExplicitTrailingHostSlash() ? '/' : '';
73 $baseUri .= $uri->getPath();
H A DSignatureInterface.php21 * @param UriInterface $uri
27 public function getSignature(UriInterface $uri, array $params, $method = 'POST'); argument
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth2/Service/
H A DAbstractService.php140 $uri = $this->determineRequestUriFromPath($path, $this->baseApiUri);
160 $uri->addToQuery('access_token', $token->getAccessToken());
162 $uri->addToQuery('oauth2_access_token', $token->getAccessToken());
164 $uri->addToQuery('apikey', $token->getAccessToken());
166 $uri->addToQuery('auth', $token->getAccessToken());
175 return $this->httpClient->retrieveResponse($uri, $body, $extraHeaders, $method);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php131 $uri = $this->determineRequestUriFromPath($path, $this->baseApiUri);
137 'Authorization' => $this->buildAuthorizationHeaderForAPIRequest($method, $uri, $token, $body)
141 return $this->httpClient->retrieveResponse($uri, $body, $headers, $method);
196 * @param UriInterface $uri The uri the request is headed
204 UriInterface $uri, argument
217 $authParameters['oauth_signature'] = $this->signature->getSignature($uri, $signatureParams, $method);
H A DFlickr.php80 $uri = $this->determineRequestUriFromPath('/', $this->baseApiUri);
81 $uri->addToQuery('method', $path);
84 $uri->addToQuery('format', $this->format);
87 $uri->addToQuery('nojsoncallback', 1);
94 'Authorization' => $this->buildAuthorizationHeaderForAPIRequest($method, $uri, $token, $body)
98 return $this->httpClient->retrieveResponse($uri, $body, $headers, $method);
/plugin/upgrade/HTTP/
H A DHTTPClient.php183 $uri = parse_url($url);
184 $server = $uri['host'];
185 $path = !empty($uri['path']) ? $uri['path'] : '/';
186 $uriPort = !empty($uri['port']) ? $uri['port'] : null;
187 if(!empty($uri['query'])) $path .= '?'.$uri['query'];
188 if(isset($uri['user'])) $this->user = $uri['use
[all...]
/plugin/openid/Auth/OpenID/
H A DDiscover.php523 return [$uri, []];
532 return Auth_OpenID_discoverWithoutYadis($uri,
549 function Auth_OpenID_discoverURI($uri, $fetcher) argument
551 $uri = Auth_OpenID::normalizeUrl($uri);
556 * @param string $uri
562 $http_resp = @$fetcher->get($uri);
565 return [$uri, []];
603 * @param string $uri
607 function Auth_OpenID_discover($uri, $fetcher) argument
612 return [$uri, []];
[all …]
H A DURINorm.php149 function Auth_OpenID_urinorm($uri) argument
152 preg_match(Auth_OpenID_getURIPattern(), $uri, $uri_matches);
162 $uri, $illegal_matches);
/plugin/openid/Auth/Yadis/
H A DXML.php39 foreach ($namespace_map as $prefix => $uri) {
40 if (!$this->registerNamespace($prefix, $uri)) {
55 * @param string $uri The namespace URI to be used to identify the
61 function registerNamespace($prefix, $uri) argument
165 function registerNamespace($prefix, $uri) argument
167 return xpath_register_ns($this->xpath, $prefix, $uri);
274 function registerNamespace($prefix, $uri) argument
276 return $this->xpath->registerNamespace($prefix, $uri);
H A DYadis.php319 * @param string $uri The URI on which to perform Yadis discovery.
334 static function discover($uri, $fetcher, argument
337 $result = new Auth_Yadis_DiscoveryResult($uri);
348 $response = $fetcher->get($uri, $headers);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst92 * Do not clear statcache when a stream does not have a 'uri'
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php78 public function performRequest(string $method, string $uri, ?array $params = [], $body = null, array $options = [], Transport $transport = null); argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php193 $uri = [];
194 $uri[] = $this->getOptionalIndex();
195 $uri[] = $this->getOptionalType();
196 $uri[] = $endpoint;
197 $uri = array_filter($uri);
199 return '/' . implode('/', $uri);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dper-request-configuration.asciidoc83 > No handler found for uri [/test_missing/test/] and method [GET]

12345678910>>...18