Home
last modified time | relevance | path

Searched refs:cookies (Results 1 – 25 of 56) sorted by path

123

/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/aimg/
H A Dscript.js1164 var cookies = document.cookie.split(';');
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
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
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
/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/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/authsplit/
H A DREADME88 external backend, eg. use it to clear cookies or similar actions".
/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/chat/
H A Dreadme.txt127 * Fixed cookies handling to work with newest DokuWiki
/plugin/ckgdoku/ckeditor/
H A DCHANGES.md254 …)`](http://docs.ckeditor.com/#!/api/CKEDITOR.tools-method-setCookie) methods for accessing cookies.
/plugin/ckgedit/ckeditor/
H A DCHANGES.md674 ….com/docs/ckeditor4/latest/api/CKEDITOR_tools.html#method-setCookie) methods for accessing cookies.
/plugin/codemirror/dist/modes/
H A Dvbscript.min.js.map1 …status', //response\n 'clientcertificate', 'cookies', 'form', 'querys…
/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/diagramsnet/lib/WEB-INF/lib/
H A Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Djstl-1.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt javax ...
/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/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/etherpadlite/
H A DREADME.md32 …signed by the dokuwiki plugin. Further, the dokuwiki plugin sets browser cookies to authorize the …
/plugin/etherpadlite/action/
H A Detherpadlite.php359 …$cookies = $this->ep_instance->createSession($this->groupid, $authorid, time() + 7 * 24 * 60 * 60);
360 $sessionID = (string) $cookies->sessionID;
/plugin/externalembed/
H A DREADME.md6 preventing it from loading trackers and cookies to the user's browser without consent) - see DOMAIN…

123