Home
last modified time | relevance | path

Searched refs:cookies (Results 1 – 25 of 56) sorted by last modified time

123

/plugin/siteexport/inc/
H A Dhttpproxy.php72 $this->cookies = $this->settings->cookie;
129 $this->settings->cookie = $this->cookies;
H A Dsettings.php40 public $cookies = null; variable in settings_plugin_siteexport_settings
/plugin/linkback/
H A Dhttp.php166 // handle headers and cookies
171 $this->cookies[$key] = $value;
/plugin/batchedit/
H A Djs.cookie.js102 // in case there are no cookies at all. Also prevents odd result when
104 var cookies = document.cookie ? document.cookie.split('; ') : [];
108 for (; i < cookies.length; i++) {
109 var parts = cookies[i].split('=');
/plugin/aichat/vendor/vanderlee/php-sentence/doc/resources/
H A Dcombined.js71 var cookies = document.cookie.split('; '); variable
73 for (var i = 0, l = cookies.length; i < l; i++) {
74 var parts = cookies[i].split('=');
/plugin/combo/vendor/php-webdriver/webdriver/
H A DCHANGELOG.md109 - Improper behavior of Microsoft Edge when retrieving all cookies via `getCookies()` (it was causing fatal error when there were no cookies).
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverOptions.php55 * Delete all the cookies that are currently visible.
104 $cookies = $this->getCookies();
105 foreach ($cookies as $cookie) {
115 * Get all the cookies for the current domain.
117 * @return Cookie[] The array of cookies presented.
122 if (!is_array($cookieArrays)) { // Microsoft Edge returns null if there are no cookies...
126 $cookies = [];
128 $cookies[] = Cookie::createFromArray($cookieArray);
131 return $cookies;
/plugin/upgrade/HTTP/
H A DHTTPClient.php12 * handles cookies and referers. It is based upon the httpclient
25 public $cookies; variable in dokuwiki\\plugin\\upgrade\\HTTP\\HTTPClient
71 $this->cookies = array();
340 // handle headers and cookies
348 if(isset($this->cookies[$key])){
349 unset($this->cookies[$key]);
352 $this->cookies[$key] = $val;
810 * get cookies as http header string
818 foreach ($this->cookies as $key => $val){
/plugin/fastwiki/
H A Daction.php184 //$cookies = array();
186 // array_push($cookies, $name . '=' . addslashes($value));
187 //$cookies = join('; ', $cookies);
188 //echo "[{$_SERVER["REMOTE_USER"]}, $cookies]";
318 "Cookie: " . $cookies,
/plugin/ckgedit/ckeditor/
H A DCHANGES.md674 ….com/docs/ckeditor4/latest/api/CKEDITOR_tools.html#method-setCookie) methods for accessing cookies.
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DServerRequestInterface.php82 * @param array $cookies Array of key/value pairs representing cookies.
85 public function withCookieParams(array $cookies); argument
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DREADME.md12 uploads, streaming large downloads, using HTTP cookies, uploading JSON data,
H A DUPGRADING.md67 `GuzzleHttp\Middleware::cookies`
559 make it possible to plug in custom parsers for cookies, messages, URI
H A DCHANGELOG.md66 * Bug fix: Parsing 0 epoch expiry times in cookies [#2014](https://github.com/guzzle/guzzle/pull/20…
157 * Feature: Added the ability to persist session cookies in CookieJars.
180 * Bug fix: quotes are no longer stripped when parsing cookies.
1038 * Bug: Fixed a bug when adding multiple cookies to a request to use the correct glue value
1043 * Added the ability to enable strict cookie jars that throw exceptions when invalid cookies are add…
1108 * Bug: Fixed cookie bug on a request object by using CookieParser to parse cookies on requests
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Cookie/
H A DCookieJar.php13 private $cookies = []; variable in GuzzleHttp\\Cookie\\CookieJar
120 $this->cookies = [];
123 $this->cookies = array_filter(
124 $this->cookies,
130 $this->cookies = array_filter(
131 $this->cookies,
139 $this->cookies,
151 $this->cookies = array_filter(
152 $this->cookies,
215 $this->cookies[] = $cookie;
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DHandlerStack.php45 $stack->push(Middleware::cookies(), 'cookies');
H A DMiddleware.php24 public static function cookies() function in GuzzleHttp\\Middleware
/plugin/passpolicy/
H A D10k-common-passwords.txt1525 cookies
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Djstl-1.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt javax ...
H A Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/diagramsnet/lib/js/diagramly/
H A DApp.js399 var cookies = document.cookie.split(";");
401 for (var i = 0; i < cookies.length; i++)
404 var cookie = mxUtils.trim(cookies[i]);
H A DDrawioClient.js81 var cookies = document.cookie;
83 var start = cookies.indexOf(name);
88 var end = cookies.indexOf(';', start);
92 end = cookies.length;
96 postCookie = cookies.substring(end);
99 var value = cookies.substring(start, end);
/plugin/externalembed/
H A DREADME.md6 preventing it from loading trackers and cookies to the user's browser without consent) - see DOMAIN…
/plugin/elwikiupgrade/
H A DHTTPClient.php35 var $cookies; variable in dokuwiki\\plugin\\elwikiupgrade\\HTTPClient
81 $this->cookies = array();
356 if(isset($this->cookies[$key])){
357 unset($this->cookies[$key]);
360 $this->cookies[$key] = $val;
808 foreach ($this->cookies as $key => $val){
/plugin/twitter/
H A DREADME.md3 … on a page. It uses the media cache thereby bypassing twitter's tracking cookies and complying wit…

123