/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | UriNormalizer.php | 124 $uri = self::capitalizePercentEncoding($uri); 128 $uri = self::decodeUnreservedCharacters($uri); 132 ($uri->getScheme() === 'http' || $uri->getScheme() === 'https') 134 $uri = $uri->withPath('/'); 138 $uri = $uri->withHost(''); 142 $uri = $uri->withPort(null); 146 $uri = $uri->withPath(UriResolver::removeDotSegments($uri->getPath())); 150 $uri = $uri->withPath(preg_replace('#//++#', '/', $uri->getPath())); 156 $uri = $uri->withQuery(implode('&', $queryKeyValues)); 159 return $uri; [all …]
|
H A D | Uri.php | 69 if ($uri != '') { 160 $uri = ''; 171 $uri .= $path; 181 return $uri; 197 …|| (isset(self::$defaultPorts[$uri->getScheme()]) && $uri->getPort() === self::$defaultPorts[$uri-… 237 return $uri->getScheme() === '' && $uri->getAuthority() !== ''; 274 && (!isset($uri->getPath()[0]) || $uri->getPath()[0] !== '/'); 294 $uri = UriResolver::resolve($base, $uri); 302 …return $uri->getScheme() === '' && $uri->getAuthority() === '' && $uri->getPath() === '' && $uri->… 416 $uri = new self(); [all …]
|
H A D | Request.php | 24 private $uri; variable in GuzzleHttp\\Psr7\\Request 35 $uri, argument 41 if (!($uri instanceof UriInterface)) { 42 $uri = new Uri($uri); 46 $this->uri = $uri; 65 $target = $this->uri->getPath(); 69 if ($this->uri->getQuery() != '') { 104 return $this->uri; 109 if ($uri === $this->uri) { 114 $new->uri = $uri; [all …]
|
/plugin/icalevents/vendor/sabre/uri/lib/ |
H A D | functions.php | 111 * @param string $uri 178 * @param string $uri 181 function parse($uri) { argument 193 $uri 223 $uri = ''; 257 return $uri; 299 * @param string $uri 314 $uri 331 $uri = substr($uri, strlen($result['scheme']) + 1); 337 list($uri, $result['fragment']) = explode('#', $uri, 2); [all …]
|
/plugin/webdav/vendor/sabre/uri/lib/ |
H A D | functions.php | 111 * @param string $uri 178 * @param string $uri 181 function parse($uri) { argument 193 $uri 223 $uri = ''; 257 return $uri; 299 * @param string $uri 314 $uri 331 $uri = substr($uri, strlen($result['scheme']) + 1); 337 list($uri, $result['fragment']) = explode('#', $uri, 2); [all …]
|
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
H A D | UriFactory.php | 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); 68 return $uri; 107 $uri = substr($uri, 0, $queryStr); [all …]
|
H A D | Uri.php | 63 * @param string $uri 67 if (null !== $uri) { 68 $this->parseUri($uri); 73 * @param string $uri 251 $uri .= $this->path; 262 return $uri; 270 $uri = ''; 275 $uri .= $this->path; 278 return $uri; 294 $uri .= $this->path; [all …]
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
H A D | UriFactory.php | 21 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...] |
H A D | Uri.php | 63 * @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...] |
/plugin/openid/Auth/OpenID/ |
H A D | Discover.php | 523 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 …]
|
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Locks/Backend/ |
H A D | Mock.php | 27 * @param string $uri 31 public function getLocks($uri, $returnChildLocks) { argument 39 if ($lock->uri === $uri || 41 ($lock->depth!=0 && strpos($uri, $lock->uri . '/')===0) || 44 ($returnChildLocks && (strpos($lock->uri, $uri . '/')===0)) ) { 63 * @param string $uri 67 public function lock($uri, LockInfo $lockInfo) { argument 72 $lockInfo->uri = $uri; 93 * @param string $uri 97 public function unlock($uri, LockInfo $lockInfo) { argument
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/Backend/ |
H A D | PDO.php | 53 * @param string $uri 63 $params = [time(),$uri]; 66 $uriParts = explode('/', $uri); 86 $params[] = $uri . '/%'; 105 $lockInfo->uri = $row['uri']; 117 * @param string $uri 121 function lock($uri, LockInfo $lockInfo) { argument 126 $lockInfo->uri = $uri; 141 $uri, 152 $uri, [all …]
|
H A D | File.php | 49 * @param string $uri 53 function getLocks($uri, $returnChildLocks) { argument 61 if ($lock->uri === $uri || 63 ($lock->depth != 0 && strpos($uri, $lock->uri . '/') === 0) || 66 ($returnChildLocks && (strpos($lock->uri, $uri . '/') === 0))) { 85 * @param string $uri 89 function lock($uri, LockInfo $lockInfo) { argument 94 $lockInfo->uri = $uri; 115 * @param string $uri 119 function unlock($uri, LockInfo $lockInfo) { argument
|
H A D | BackendInterface.php | 26 * @param string $uri 30 function getLocks($uri, $returnChildLocks); argument 35 * @param string $uri 39 function lock($uri, Locks\LockInfo $lockInfo); argument 44 * @param string $uri 48 function unlock($uri, Locks\LockInfo $lockInfo); argument
|
/plugin/socialshareprivacy2/SSP/scripts/ |
H A D | jquery.socialshareprivacy.tumblr.js | 13 function getQuote (options, uri, settings) { argument 30 function getClickthru (options, uri) { argument 31 return uri + options.referrer_track; 34 function get (self, options, uri, settings, name) { 37 return value.call(self, options, uri, settings); 76 'button' : function (options, uri, settings) { argument 81 url : uri + options.referrer_track, 82 name : get(this, options, uri, settings, 'name'), 88 source : uri + options.referrer_track, 89 quote : get(this, options, uri, settings, 'quote') [all …]
|
H A D | jquery.socialshareprivacy.mail.js | 13 function get (self, options, uri, settings, name) { 16 value = value.call(self, options, uri, settings); 23 function getBody (options, uri, settings) { argument 24 return getDescription.call(this, options, uri, settings) + '\n\n' + uri + options.referrer_track; 37 'button' : function (options, uri, settings) { argument 40 subject : get(this, options, uri, settings, 'subject'), 41 body : get(this, options, uri, settings, 'body')
|
/plugin/fedauth/Auth/OpenID/ |
H A D | Discover.php | 500 return array($uri, array()); 509 return Auth_OpenID_discoverWithoutYadis($uri, 526 function Auth_OpenID_discoverURI($uri, $fetcher) argument 528 $uri = Auth_OpenID::normalizeUrl($uri); 529 return Auth_OpenID_discoverWithYadis($uri, $fetcher); 532 function Auth_OpenID_discoverWithoutYadis($uri, $fetcher) argument 534 $http_resp = @$fetcher->get($uri); 537 return array($uri, array()); 574 function Auth_OpenID_discover($uri, $fetcher) argument 579 return array($uri, array()); [all …]
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/Backend/ |
H A D | PDO.php | 53 * @param string $uri 63 $params = [time(),$uri]; 66 $uriParts = explode('/', $uri); 86 $params[] = $uri . '/%'; 105 $lockInfo->uri = $row['uri']; 117 * @param string $uri 121 function lock($uri, LockInfo $lockInfo) { argument 126 $lockInfo->uri = $uri; 141 $uri, 152 $uri, [all …]
|
H A D | File.php | 49 * @param string $uri 53 function getLocks($uri, $returnChildLocks) { argument 61 if ($lock->uri === $uri || 63 ($lock->depth != 0 && strpos($uri, $lock->uri . '/') === 0) || 66 ($returnChildLocks && (strpos($lock->uri, $uri . '/') === 0))) { 85 * @param string $uri 89 function lock($uri, LockInfo $lockInfo) { argument 94 $lockInfo->uri = $uri; 115 * @param string $uri 119 function unlock($uri, LockInfo $lockInfo) { argument
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | Client.php | 90 $uri = $args[0]; 95 : $this->request($method, $uri, $opts); 141 * @param string|UriInterface $uri URI object or string. 154 $uri = $this->buildUri($uri, $options); 173 * @param string|UriInterface $uri URI object or string. 204 * @param string|null $uri 208 private function buildUri($uri, array $config) argument 211 $uri = Psr7\uri_for($uri === null ? '' : $uri); 214 $uri = Psr7\UriResolver::resolve(Psr7\uri_for($config['base_uri']), $uri); 219 $uri = Utils::idnUriConvert($uri, $idnOptions); [all …]
|
/plugin/webdav/vendor/sabre/dav/lib/DAV/Locks/ |
H A D | Plugin.php | 114 * @param string $uri 117 function getHTTPMethods($uri) { argument 146 * @param string $uri 173 $uri = $request->getPath(); 175 $existingLocks = $this->getLocks($uri); 190 $lockInfo->uri = $uri; 226 if ($uri != $lockInfo->uri) $uri = $lockInfo->uri; 252 $this->lockNode($uri, $lockInfo); 333 * @param string $uri 337 function lockNode($uri, LockInfo $lockInfo) { argument [all …]
|
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/ |
H A D | Plugin.php | 114 * @param string $uri 117 function getHTTPMethods($uri) { argument 146 * @param string $uri 173 $uri = $request->getPath(); 175 $existingLocks = $this->getLocks($uri); 190 $lockInfo->uri = $uri; 226 if ($uri != $lockInfo->uri) $uri = $lockInfo->uri; 252 $this->lockNode($uri, $lockInfo); 333 * @param string $uri 337 function lockNode($uri, LockInfo $lockInfo) { argument [all …]
|
/plugin/davcal/vendor/sabre/uri/lib/ |
H A D | functions.php | 103 * @param string $uri 106 function normalize($uri) { argument 108 $parts = parse($uri); 167 * @param string $uri 170 function parse($uri) { argument 173 parse_url($uri) + [ 194 $uri = ''; 209 $uri = $parts['scheme'] . ':'; 214 $uri .= '//' . $authority; 219 $uri .= $parts['path']; [all …]
|
/plugin/shorty/ |
H A D | helper.php | 91 $uri = $this->getConf('bitly_oauth_api'); 92 $uri .= "shorten?access_token=" . $this->getConf('bitly_oauth_access_token'); 93 $uri .= "&format=json"; 94 $uri .= "&domain=" . $domain; 95 $uri .= "&longUrl=" . $longUrl; 97 $output = json_decode($this->getCurl($uri)); 122 $uri = $this->getConf('yourls_url'); 123 $uri .= "/yourls-api.php?signature=" . $this->getConf('yourls_token'); 124 $uri .= "&action=shorturl&format=simple"; 125 $uri .= "&url=" . $longUrl; [all …]
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/ |
H A D | Url.php | 25 private $uri; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Reference\\Url 30 public function __construct($uri) argument 32 Assert::stringNotEmpty($uri); 33 $this->uri = $uri; 38 return $this->uri;
|