Mercurial > emacs
annotate lisp/url/url.el @ 68179:83ac404539a7
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 13 Jan 2006 19:50:10 +0000 |
parents | ba5077259cc1 |
children | 8edc29039fd2 8438f5473d99 |
rev | line source |
---|---|
54695 | 1 ;;; url.el --- Uniform Resource Locator retrieval tool |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, |
67975
ea32c9f0c8e7
(url-retrieve, url-retrieve-synchronously): Autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67850
diff
changeset
|
4 ;; 2005, 2006 Free Software Foundation, Inc. |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Author: Bill Perry <wmperry@gnu.org> |
7 ;; Keywords: comm, data, processes, hypermedia | |
8 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; any later version. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; GNU General Public License for more details. |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 ;;; Commentary: |
54695 | 27 |
28 ;; Registered URI schemes: http://www.iana.org/assignments/uri-schemes | |
29 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
30 ;;; Code: |
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
31 |
54695 | 32 (eval-when-compile (require 'cl)) |
33 | |
34 (eval-when-compile | |
35 (require 'mm-decode) | |
36 (require 'mm-view)) | |
37 | |
38 (require 'mailcap) | |
39 (require 'url-vars) | |
40 (require 'url-cookie) | |
41 (require 'url-history) | |
42 (require 'url-expand) | |
43 (require 'url-privacy) | |
44 (require 'url-methods) | |
45 (require 'url-proxy) | |
46 (require 'url-parse) | |
47 (require 'url-util) | |
48 | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
49 ;; Fixme: customize? convert-standard-filename? |
67722
3a3904075d3d
(url-configuration-directory): Use ~/.emacs.d if possible.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67236
diff
changeset
|
50 (defvar url-configuration-directory |
3a3904075d3d
(url-configuration-directory): Use ~/.emacs.d if possible.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67236
diff
changeset
|
51 (cond |
3a3904075d3d
(url-configuration-directory): Use ~/.emacs.d if possible.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67236
diff
changeset
|
52 ((file-directory-p "~/.url") "~/.url") |
3a3904075d3d
(url-configuration-directory): Use ~/.emacs.d if possible.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67236
diff
changeset
|
53 ((file-directory-p "~/.emacs.d") "~/.emacs.d/url") |
3a3904075d3d
(url-configuration-directory): Use ~/.emacs.d if possible.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67236
diff
changeset
|
54 (t "~/.url"))) |
54695 | 55 |
56 (defun url-do-setup () | |
57 "Setup the url package. | |
58 This is to avoid conflict with user settings if URL is dumped with | |
59 Emacs." | |
60 (unless url-setup-done | |
61 | |
62 ;; Make OS/2 happy | |
63 ;;(push '("http" "80") tcp-binary-process-input-services) | |
64 | |
65 (mailcap-parse-mailcaps) | |
66 (mailcap-parse-mimetypes) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
67 |
54695 | 68 ;; Register all the authentication schemes we can handle |
69 (url-register-auth-scheme "basic" nil 4) | |
70 (url-register-auth-scheme "digest" nil 7) | |
71 | |
72 (setq url-cookie-file | |
73 (or url-cookie-file | |
74 (expand-file-name "cookies" url-configuration-directory))) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
75 |
54695 | 76 (setq url-history-file |
77 (or url-history-file | |
78 (expand-file-name "history" url-configuration-directory))) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
79 |
54695 | 80 ;; Parse the global history file if it exists, so that it can be used |
81 ;; for URL completion, etc. | |
82 (url-history-parse-history) | |
83 (url-history-setup-save-timer) | |
84 | |
85 ;; Ditto for cookies | |
86 (url-cookie-setup-save-timer) | |
87 (url-cookie-parse-file url-cookie-file) | |
88 | |
89 ;; Read in proxy gateways | |
90 (let ((noproxy (and (not (assoc "no_proxy" url-proxy-services)) | |
91 (or (getenv "NO_PROXY") | |
92 (getenv "no_PROXY") | |
93 (getenv "no_proxy"))))) | |
94 (if noproxy | |
95 (setq url-proxy-services | |
96 (cons (cons "no_proxy" | |
97 (concat "\\(" | |
98 (mapconcat | |
99 (lambda (x) | |
100 (cond | |
101 ((= x ?,) "\\|") | |
102 ((= x ? ) "") | |
103 ((= x ?.) (regexp-quote ".")) | |
104 ((= x ?*) ".*") | |
105 ((= x ??) ".") | |
106 (t (char-to-string x)))) | |
107 noproxy "") "\\)")) | |
108 url-proxy-services)))) | |
109 | |
110 (url-setup-privacy-info) | |
111 (run-hooks 'url-load-hook) | |
112 (setq url-setup-done t))) | |
113 | |
114 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
115 ;;; Retrieval functions | |
116 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
67975
ea32c9f0c8e7
(url-retrieve, url-retrieve-synchronously): Autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67850
diff
changeset
|
117 ;;;###autoload |
54695 | 118 (defun url-retrieve (url callback &optional cbargs) |
119 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. | |
64330
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
120 URL is either a string or a parsed URL. |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
121 |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
122 CALLBACK is called when the object has been completely retrieved, with |
54695 | 123 the current buffer containing the object, and any MIME headers associated |
64330
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
124 with it. Normally it gets the arguments in the list CBARGS. |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
125 However, if what we find is a redirect, CALLBACK is given |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
126 two additional args, `:redirect' and the redirected URL, |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
127 followed by CBARGS. |
54695 | 128 |
129 Return the buffer URL will load into, or nil if the process has | |
130 already completed." | |
131 (url-do-setup) | |
132 (url-gc-dead-buffers) | |
133 (if (stringp url) | |
134 (set-text-properties 0 (length url) nil url)) | |
135 (if (not (vectorp url)) | |
136 (setq url (url-generic-parse-url url))) | |
137 (if (not (functionp callback)) | |
138 (error "Must provide a callback function to url-retrieve")) | |
139 (unless (url-type url) | |
140 (error "Bad url: %s" (url-recreate-url url))) | |
141 (let ((loader (url-scheme-get-property (url-type url) 'loader)) | |
142 (url-using-proxy (if (url-host url) | |
143 (url-find-proxy-for-url url (url-host url)))) | |
144 (buffer nil) | |
145 (asynch (url-scheme-get-property (url-type url) 'asynchronous-p))) | |
146 (if url-using-proxy | |
147 (setq asynch t | |
148 loader 'url-proxy)) | |
149 (if asynch | |
150 (setq buffer (funcall loader url callback cbargs)) | |
151 (setq buffer (funcall loader url)) | |
152 (if buffer | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
153 (with-current-buffer buffer |
54695 | 154 (apply callback cbargs)))) |
67236
7a5248410af9
(url-retrieve): Test url-history-track.
Richard M. Stallman <rms@gnu.org>
parents:
66118
diff
changeset
|
155 (if url-history-track |
7a5248410af9
(url-retrieve): Test url-history-track.
Richard M. Stallman <rms@gnu.org>
parents:
66118
diff
changeset
|
156 (url-history-update-url url (current-time))) |
54695 | 157 buffer)) |
158 | |
67975
ea32c9f0c8e7
(url-retrieve, url-retrieve-synchronously): Autoload.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67850
diff
changeset
|
159 ;;;###autoload |
54695 | 160 (defun url-retrieve-synchronously (url) |
161 "Retrieve URL synchronously. | |
162 Return the buffer containing the data, or nil if there are no data | |
163 associated with it (the case for dired, info, or mailto URLs that need | |
164 no further processing). URL is either a string or a parsed URL." | |
165 (url-do-setup) | |
166 | |
167 (lexical-let ((retrieval-done nil) | |
168 (asynch-buffer nil)) | |
169 (setq asynch-buffer | |
170 (url-retrieve url (lambda (&rest ignored) | |
171 (url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer)) | |
172 (setq retrieval-done t | |
173 asynch-buffer (current-buffer))))) | |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
174 (if (null asynch-buffer) |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
175 ;; We do not need to do anything, it was a mailto or something |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
176 ;; similar that takes processing completely outside of the URL |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
177 ;; package. |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
178 nil |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
179 (let ((proc (get-buffer-process asynch-buffer))) |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
180 ;; If the access method was synchronous, `retrieval-done' should |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
181 ;; hopefully already be set to t. If it is nil, and `proc' is also |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
182 ;; nil, it implies that the async process is not running in |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
183 ;; asynch-buffer. This happens e.g. for FTP files. In such a case |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
184 ;; url-file.el should probably set something like a `url-process' |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
185 ;; buffer-local variable so we can find the exact process that we |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
186 ;; should be waiting for. In the mean time, we'll just wait for any |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
187 ;; process output. |
59518
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
188 (while (not retrieval-done) |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
189 (url-debug 'retrieval |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
190 "Spinning in url-retrieve-synchronously: %S (%S)" |
d91d1f84814f
(url-retrieve-synchronously): Use accept-process-output rather than sit-for.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58343
diff
changeset
|
191 retrieval-done asynch-buffer) |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
192 (if (and proc (memq (process-status proc) |
68123
ba5077259cc1
(url-retrieve-synchronously): Adjust the workaround so as not
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67975
diff
changeset
|
193 '(closed exit signal failed)) |
ba5077259cc1
(url-retrieve-synchronously): Adjust the workaround so as not
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67975
diff
changeset
|
194 ;; Make sure another process hasn't been started, as can |
ba5077259cc1
(url-retrieve-synchronously): Adjust the workaround so as not
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67975
diff
changeset
|
195 ;; happen with http redirections. |
ba5077259cc1
(url-retrieve-synchronously): Adjust the workaround so as not
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67975
diff
changeset
|
196 (eq proc (or (get-buffer-process asynch-buffer) proc))) |
61630
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
197 ;; FIXME: It's not clear whether url-retrieve's callback is |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
198 ;; guaranteed to be called or not. It seems that url-http |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
199 ;; decides sometimes consciously not to call it, so it's not |
68123
ba5077259cc1
(url-retrieve-synchronously): Adjust the workaround so as not
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67975
diff
changeset
|
200 ;; clear that it's a bug, but even then we need to decide how |
61630
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
201 ;; url-http can then warn us that the download has completed. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
202 ;; In the mean time, we use this here workaround. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
203 (setq retrieval-done t) |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
204 ;; We used to use `sit-for' here, but in some cases it wouldn't |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
205 ;; work because apparently pending keyboard input would always |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
206 ;; interrupt it before it got a chance to handle process input. |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
207 ;; `sleep-for' was tried but it lead to other forms of |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
208 ;; hanging. --Stef |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
209 (unless (or (accept-process-output proc) (null proc)) |
61630
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
210 ;; accept-process-output returned nil, maybe because the process |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
211 ;; exited (and may have been replaced with another). |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
212 (setq proc (get-buffer-process asynch-buffer)))))) |
54695 | 213 asynch-buffer))) |
214 | |
215 (defun url-mm-callback (&rest ignored) | |
216 (let ((handle (mm-dissect-buffer t))) | |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
217 (url-mark-buffer-as-dead (current-buffer)) |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
218 (with-current-buffer |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
219 (generate-new-buffer (url-recreate-url url-current-object)) |
54695 | 220 (if (eq (mm-display-part handle) 'external) |
221 (progn | |
222 (set-process-sentinel | |
223 ;; Fixme: this shouldn't have to know the form of the | |
224 ;; undisplayer produced by `mm-display-part'. | |
225 (get-buffer-process (cdr (mm-handle-undisplayer handle))) | |
226 `(lambda (proc event) | |
227 (mm-destroy-parts (quote ,handle)))) | |
228 (message "Viewing externally") | |
229 (kill-buffer (current-buffer))) | |
230 (display-buffer (current-buffer)) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
231 (add-hook 'kill-buffer-hook |
58343
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
232 `(lambda () (mm-destroy-parts ',handle)) |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
233 nil |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
234 t))))) |
54695 | 235 |
236 (defun url-mm-url (url) | |
237 "Retrieve URL and pass to the appropriate viewing application." | |
66118
c0fac24c378a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66100
diff
changeset
|
238 ;; These requires could advantageously be moved to url-mm-callback or |
c0fac24c378a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66100
diff
changeset
|
239 ;; turned into autoloads, but I suspect that it would introduce some bugs |
c0fac24c378a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66100
diff
changeset
|
240 ;; because loading those files from a process sentinel or filter may |
c0fac24c378a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66100
diff
changeset
|
241 ;; result in some undesirable carner cases. |
54695 | 242 (require 'mm-decode) |
243 (require 'mm-view) | |
244 (url-retrieve url 'url-mm-callback nil)) | |
245 | |
246 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
247 ;;; Miscellaneous | |
248 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
249 (defvar url-dead-buffer-list nil) | |
250 | |
251 (defun url-mark-buffer-as-dead (buff) | |
252 (push buff url-dead-buffer-list)) | |
253 | |
254 (defun url-gc-dead-buffers () | |
255 (let ((buff)) | |
256 (while (setq buff (pop url-dead-buffer-list)) | |
257 (if (buffer-live-p buff) | |
258 (kill-buffer buff))))) | |
259 | |
260 (cond | |
261 ((fboundp 'display-warning) | |
262 (defalias 'url-warn 'display-warning)) | |
263 ((fboundp 'warn) | |
264 (defun url-warn (class message &optional level) | |
265 (warn "(%s/%s) %s" class (or level 'warning) message))) | |
266 (t | |
267 (defun url-warn (class message &optional level) | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
268 (with-current-buffer (get-buffer-create "*URL-WARNINGS*") |
54695 | 269 (goto-char (point-max)) |
270 (save-excursion | |
271 (insert (format "(%s/%s) %s\n" class (or level 'warning) message))) | |
272 (display-buffer (current-buffer)))))) | |
273 | |
274 (provide 'url) | |
275 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
276 ;; arch-tag: bc182f1f-d187-4f10-b961-47af2066579a |
54695 | 277 ;;; url.el ends here |