Home
last modified time | relevance | path

Searched refs:cookiejar (Results 1 – 25 of 32) sorted by relevance

12

/third_party/python/Doc/library/
Dhttp.cookiejar.rst1 :mod:`http.cookiejar` --- Cookie handling for HTTP clients
4 .. module:: http.cookiejar
10 **Source code:** :source:`Lib/http/cookiejar.py`
14 The :mod:`http.cookiejar` module defines classes for automatic handling of HTTP
24 :mod:`http.cookiejar` attempts to follow the de-facto Netscape cookie protocol (which
110 expected that users of :mod:`http.cookiejar` construct their own :class:`Cookie`
122 :mod:`http.cookiejar` and :mod:`http.cookies` modules do not depend on each
128 the major browsers (and :mod:`http.cookiejar`) only bears a passing resemblance to
450 import http.cookiejar
451 class MyCookiePolicy(http.cookiejar.DefaultCookiePolicy):
[all …]
Dinternet.rst44 http.cookiejar.rst
Dhttp.cookies.rst64 Module :mod:`http.cookiejar`
65 HTTP cookie handling for web *clients*. The :mod:`http.cookiejar` and
Dhttp.rst22 * :mod:`http.cookiejar` provides persistence of cookies
Durllib.request.rst232 ``http.cookiejar.request_host(self)``. This is the host name or IP
294 .. class:: HTTPCookieProcessor(cookiejar=None)
889 .. attribute:: HTTPCookieProcessor.cookiejar
891 The :class:`http.cookiejar.CookieJar` in which cookies are stored.
/third_party/curl/docs/
DHTTP-COOKIES.md41 TAB. That file is called the cookiejar in curl terminology.
43 When libcurl saves a cookiejar, it creates a file header of its own in which
109 closed save all known cookies to the given cookiejar file. Write-only.
/third_party/curl/tests/data/
Dtest14088 cookiejar
Dtest737 cookiejar
Dtest11057 cookiejar
Dtest11368 cookiejar
Dtest32743 HTTP with cookiejar without cookies left
Dtest14158 cookiejar
Dtest617 cookiejar
Dtest467 cookiejar
Dtest317 cookiejar
121 HTTP with weirdly formatted cookies and cookiejar storage
Dtest15618 cookiejar
/third_party/python/Lib/test/
Dtest_http_cookiejar.py13 from http.cookiejar import (time2isoz, http2time, iso2time, time2netscape,
312 def interact_2965(cookiejar, url, *set_cookie_hdrs): argument
313 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie2")
315 def interact_netscape(cookiejar, url, *set_cookie_hdrs): argument
316 return _interact(cookiejar, url, set_cookie_hdrs, "Set-Cookie")
318 def _interact(cookiejar, url, set_cookie_hdrs, hdr_name): argument
321 cookiejar.add_cookie_header(req)
327 cookiejar.extract_cookies(res, req)
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md16 var cookiejar = new tough.CookieJar();
17 cookiejar.setCookie(cookie, 'http://currentdomain.example.com/path', cb);
19 cookiejar.getCookies('http://example.com/otherpath',function(err,cookies) {
30 Why the name? NPM modules `cookie`, `cookies` and `cookiejar` were already taken.
161 …kie got accessed. Will affect cookie cleaning once implemented. Using `cookiejar.getCookies(...)`…
325 Alias of .serializeSync() for the convenience of `JSON.stringify(cookiejar)`.
381 …he given domain and path. This is most often called in the context of `cookiejar.getCookies()` ab…
387 As of version 0.9.12, the `allPaths` option to `cookiejar.getCookies()` above will cause the path h…
/third_party/curl/src/
Dtool_cfgable.h57 char *cookiejar; /* write to this file */ member
Dtool_cfgable.c60 Curl_safefree(config->cookiejar); in free_config_fields()
Dtool_operate.c1707 if(config->cookiejar) in single_transfer()
1708 my_setopt_str(curl, CURLOPT_COOKIEJAR, config->cookiejar); in single_transfer()
/third_party/python/Lib/urllib/
Drequest.py1399 def __init__(self, cookiejar=None): argument
1400 import http.cookiejar
1401 if cookiejar is None:
1402 cookiejar = http.cookiejar.CookieJar()
1403 self.cookiejar = cookiejar
1406 self.cookiejar.add_cookie_header(request)
1410 self.cookiejar.extract_cookies(response, request)
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst627 The :mod:`http.cookiejar` module now supports the parsing of cookies in
628 CURL-style cookiejar files through MozillaCookieJar on all platforms.
630 cookiejar with such entries.
D3.8.0a3.rst19 domain A is a suffix match of domain B while using a cookiejar with
20 :class:`http.cookiejar.DefaultCookiePolicy` policy. Patch by Karthikeyan
D3.5.0a3.rst419 Fixed parsing cookies with absent keys or values in cookiejar. Patch by

12