aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2014-11-23 15:05:18 +0100
committerLars Magne Ingebrigtsen2014-11-23 15:05:18 +0100
commita345ff6bf2af54db2ee03296965165127f7758ec (patch)
treede73d6a88dca950fca75e41bf0c7bcf120713cb0 /etc
parentc43b706ab3a699c107a91d1ab6f16014fff65b54 (diff)
downloademacs-a345ff6bf2af54db2ee03296965165127f7758ec.tar.gz
emacs-a345ff6bf2af54db2ee03296965165127f7758ec.zip
Implement a new url parameter `url-request-noninteractive'
* url-http.el (url-http): Respect `url-request-noninteractive'. * url-queue.el (url-queue-start-retrieve): Fetching through url-queue should always be noninteractive. * url-vars.el (url-request-noninteractive): New variable.
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS10
2 files changed, 12 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index d57190fce01..867e4f5f09c 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * NEWS: Mention `url-request-noninteractive'.
4
12014-11-19 Leo Liu <sdl.web@gmail.com> 52014-11-19 Leo Liu <sdl.web@gmail.com>
2 6
3 * NEWS: Mention new macro define-advice. 7 * NEWS: Mention new macro define-advice.
diff --git a/etc/NEWS b/etc/NEWS
index 769d2c6fd3b..a88902a675e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -262,14 +262,20 @@ plain text parts, if display of HTML email is possible; customize the
262** In sh-mode, you can now use `sh-shell' as a file-local variable to 262** In sh-mode, you can now use `sh-shell' as a file-local variable to
263specify the type of shell in use (bash, csh, etc). 263specify the type of shell in use (bash, csh, etc).
264 264
265** The URL package accepts now the protocols "ssh", "scp" and "rsync". 265** URL
266
267*** The URL package accepts now the protocols "ssh", "scp" and "rsync".
266When `url-handler-mode' is enabled, file operations for these 268When `url-handler-mode' is enabled, file operations for these
267protocols as well as for "telnet" and "ftp" are passed to Tramp. 269protocols as well as for "telnet" and "ftp" are passed to Tramp.
268 270
269** The URL package allows customizing the `url-user-agent' string. 271*** The URL package allows customizing the `url-user-agent' string.
270The new `url-user-agent' variable can be customized to be a string or 272The new `url-user-agent' variable can be customized to be a string or
271a function. 273a function.
272 274
275*** The new interface variable `url-request-noninteractive' can be used
276to specify that we're running in a noninteractive context, and that
277we should not be queried about things like TLS certificate validity.
278
273** Tramp 279** Tramp
274 280
275*** New connection method "nc", which allows to access dumb busyboxes. 281*** New connection method "nc", which allows to access dumb busyboxes.