summaryrefslogtreecommitdiff
path: root/lisp/url/ChangeLog
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2012-02-08 01:04:42 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2012-02-08 01:04:42 +0100
commitaacaa4191173ca6d1aea3fd4ebb01ea1d5e46e7b (patch)
tree6302d500e5ab761183c51859bd856edbf2da9e72 /lisp/url/ChangeLog
parent7c4bbb6992b443b0ce569d111fc167ad753e912c (diff)
downloademacs-aacaa4191173ca6d1aea3fd4ebb01ea1d5e46e7b.tar.gz
Allow specifying whether to inhibit cookies on a per-URL basis
* url-http.el (url-http-create-request): Don't send cookies unless requested. (url-http-parse-headers): Don't store cookies unless requested. * url.el (url-retrieve): Ditto * url-queue.el (url-queue-retrieve): Take an optional `inhibit-cookies' parameter. * url-parse.el (url): Add the `use-cookies' slot to the URL struct to be able to keep track of whether to do cookies or not on a per-URL basis.
Diffstat (limited to 'lisp/url/ChangeLog')
-rw-r--r--lisp/url/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index f4cca618b49..179148a089d 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,18 @@
+2012-02-08 Lars Ingebrigtsen <larsi@gnus.org>
+
+ * url-parse.el (url): Add the `use-cookies' slot to the URL struct
+ to be able to keep track of whether to do cookies or not on a
+ per-URL basis.
+
+ * url-queue.el (url-queue-retrieve): Take an optional
+ `inhibit-cookies' parameter.
+
+ * url.el (url-retrieve): Ditto
+
+ * url-http.el (url-http-create-request): Don't send cookies unless
+ requested.
+ (url-http-parse-headers): Don't store cookies unless requested.
+
2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
* url-cache.el (url-cache-prune-cache): New function.