diff options
| author | Lars Magne Ingebrigtsen | 2014-11-23 15:05:18 +0100 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2014-11-23 15:05:18 +0100 |
| commit | a345ff6bf2af54db2ee03296965165127f7758ec (patch) | |
| tree | de73d6a88dca950fca75e41bf0c7bcf120713cb0 /etc | |
| parent | c43b706ab3a699c107a91d1ab6f16014fff65b54 (diff) | |
| download | emacs-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/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 10 |
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 @@ | |||
| 1 | 2014-11-23 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * NEWS: Mention `url-request-noninteractive'. | ||
| 4 | |||
| 1 | 2014-11-19 Leo Liu <sdl.web@gmail.com> | 5 | 2014-11-19 Leo Liu <sdl.web@gmail.com> |
| 2 | 6 | ||
| 3 | * NEWS: Mention new macro define-advice. | 7 | * NEWS: Mention new macro define-advice. |
| @@ -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 |
| 263 | specify the type of shell in use (bash, csh, etc). | 263 | specify 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". | ||
| 266 | When `url-handler-mode' is enabled, file operations for these | 268 | When `url-handler-mode' is enabled, file operations for these |
| 267 | protocols as well as for "telnet" and "ftp" are passed to Tramp. | 269 | protocols 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. |
| 270 | The new `url-user-agent' variable can be customized to be a string or | 272 | The new `url-user-agent' variable can be customized to be a string or |
| 271 | a function. | 273 | a function. |
| 272 | 274 | ||
| 275 | *** The new interface variable `url-request-noninteractive' can be used | ||
| 276 | to specify that we're running in a noninteractive context, and that | ||
| 277 | we 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. |