Mercurial > emacs
annotate lisp/url/url.el @ 67287:0c604484909d
(view-mode): Doc fix.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 03 Dec 2005 14:35:04 +0000 |
parents | 7a5248410af9 |
children | 3a3904075d3d 37d0562504bf |
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, |
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
4 ;; 2005 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? |
54695 | 50 ;;;###autoload |
51 (defvar url-configuration-directory "~/.url") | |
52 | |
53 (defun url-do-setup () | |
54 "Setup the url package. | |
55 This is to avoid conflict with user settings if URL is dumped with | |
56 Emacs." | |
57 (unless url-setup-done | |
58 | |
59 ;; Make OS/2 happy | |
60 ;;(push '("http" "80") tcp-binary-process-input-services) | |
61 | |
62 (mailcap-parse-mailcaps) | |
63 (mailcap-parse-mimetypes) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
64 |
54695 | 65 ;; Register all the authentication schemes we can handle |
66 (url-register-auth-scheme "basic" nil 4) | |
67 (url-register-auth-scheme "digest" nil 7) | |
68 | |
69 (setq url-cookie-file | |
70 (or url-cookie-file | |
71 (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
|
72 |
54695 | 73 (setq url-history-file |
74 (or url-history-file | |
75 (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
|
76 |
54695 | 77 ;; Parse the global history file if it exists, so that it can be used |
78 ;; for URL completion, etc. | |
79 (url-history-parse-history) | |
80 (url-history-setup-save-timer) | |
81 | |
82 ;; Ditto for cookies | |
83 (url-cookie-setup-save-timer) | |
84 (url-cookie-parse-file url-cookie-file) | |
85 | |
86 ;; Read in proxy gateways | |
87 (let ((noproxy (and (not (assoc "no_proxy" url-proxy-services)) | |
88 (or (getenv "NO_PROXY") | |
89 (getenv "no_PROXY") | |
90 (getenv "no_proxy"))))) | |
91 (if noproxy | |
92 (setq url-proxy-services | |
93 (cons (cons "no_proxy" | |
94 (concat "\\(" | |
95 (mapconcat | |
96 (lambda (x) | |
97 (cond | |
98 ((= x ?,) "\\|") | |
99 ((= x ? ) "") | |
100 ((= x ?.) (regexp-quote ".")) | |
101 ((= x ?*) ".*") | |
102 ((= x ??) ".") | |
103 (t (char-to-string x)))) | |
104 noproxy "") "\\)")) | |
105 url-proxy-services)))) | |
106 | |
107 (url-setup-privacy-info) | |
108 (run-hooks 'url-load-hook) | |
109 (setq url-setup-done t))) | |
110 | |
111 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
112 ;;; Retrieval functions | |
113 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
114 (defun url-retrieve (url callback &optional cbargs) | |
115 "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
|
116 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
|
117 |
ba29905c8f52
(url-retrieve): The callback function can get an additional keyword arg pair.
Richard M. Stallman <rms@gnu.org>
parents:
64084
diff
changeset
|
118 CALLBACK is called when the object has been completely retrieved, with |
54695 | 119 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
|
120 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
|
121 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
|
122 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
|
123 followed by CBARGS. |
54695 | 124 |
125 Return the buffer URL will load into, or nil if the process has | |
126 already completed." | |
127 (url-do-setup) | |
128 (url-gc-dead-buffers) | |
129 (if (stringp url) | |
130 (set-text-properties 0 (length url) nil url)) | |
131 (if (not (vectorp url)) | |
132 (setq url (url-generic-parse-url url))) | |
133 (if (not (functionp callback)) | |
134 (error "Must provide a callback function to url-retrieve")) | |
135 (unless (url-type url) | |
136 (error "Bad url: %s" (url-recreate-url url))) | |
137 (let ((loader (url-scheme-get-property (url-type url) 'loader)) | |
138 (url-using-proxy (if (url-host url) | |
139 (url-find-proxy-for-url url (url-host url)))) | |
140 (buffer nil) | |
141 (asynch (url-scheme-get-property (url-type url) 'asynchronous-p))) | |
142 (if url-using-proxy | |
143 (setq asynch t | |
144 loader 'url-proxy)) | |
145 (if asynch | |
146 (setq buffer (funcall loader url callback cbargs)) | |
147 (setq buffer (funcall loader url)) | |
148 (if buffer | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
149 (with-current-buffer buffer |
54695 | 150 (apply callback cbargs)))) |
67236
7a5248410af9
(url-retrieve): Test url-history-track.
Richard M. Stallman <rms@gnu.org>
parents:
66118
diff
changeset
|
151 (if url-history-track |
7a5248410af9
(url-retrieve): Test url-history-track.
Richard M. Stallman <rms@gnu.org>
parents:
66118
diff
changeset
|
152 (url-history-update-url url (current-time))) |
54695 | 153 buffer)) |
154 | |
155 (defun url-retrieve-synchronously (url) | |
156 "Retrieve URL synchronously. | |
157 Return the buffer containing the data, or nil if there are no data | |
158 associated with it (the case for dired, info, or mailto URLs that need | |
159 no further processing). URL is either a string or a parsed URL." | |
160 (url-do-setup) | |
161 | |
162 (lexical-let ((retrieval-done nil) | |
163 (asynch-buffer nil)) | |
164 (setq asynch-buffer | |
165 (url-retrieve url (lambda (&rest ignored) | |
166 (url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer)) | |
167 (setq retrieval-done t | |
168 asynch-buffer (current-buffer))))) | |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
169 (if (null asynch-buffer) |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
170 ;; 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
|
171 ;; 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
|
172 ;; package. |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
173 nil |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
174 (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
|
175 ;; 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
|
176 ;; 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
|
177 ;; 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
|
178 ;; 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
|
179 ;; 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
|
180 ;; 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
|
181 ;; 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
|
182 ;; 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
|
183 (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
|
184 (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
|
185 "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
|
186 retrieval-done asynch-buffer) |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
187 (if (and proc (memq (process-status proc) |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
188 '(closed exit signal failed))) |
61630
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
189 ;; 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
|
190 ;; 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
|
191 ;; decides sometimes consciously not to call it, so it's not |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
192 ;; clear that it's a bug, but even if we need to decide how |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
193 ;; 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
|
194 ;; 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
|
195 (setq retrieval-done t) |
68114d546e48
(url-retrieve-synchronously): Work around the fact that
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59518
diff
changeset
|
196 ;; 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
|
197 ;; 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
|
198 ;; 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
|
199 ;; `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
|
200 ;; hanging. --Stef |
63288
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
201 (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
|
202 ;; 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
|
203 ;; 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
|
204 (setq proc (get-buffer-process asynch-buffer)))))) |
54695 | 205 asynch-buffer))) |
206 | |
207 (defun url-mm-callback (&rest ignored) | |
208 (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
|
209 (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
|
210 (with-current-buffer |
5439e59a340c
(url-retrieve-synchronously): Don't exit precipitously when
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61630
diff
changeset
|
211 (generate-new-buffer (url-recreate-url url-current-object)) |
54695 | 212 (if (eq (mm-display-part handle) 'external) |
213 (progn | |
214 (set-process-sentinel | |
215 ;; Fixme: this shouldn't have to know the form of the | |
216 ;; undisplayer produced by `mm-display-part'. | |
217 (get-buffer-process (cdr (mm-handle-undisplayer handle))) | |
218 `(lambda (proc event) | |
219 (mm-destroy-parts (quote ,handle)))) | |
220 (message "Viewing externally") | |
221 (kill-buffer (current-buffer))) | |
222 (display-buffer (current-buffer)) | |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64330
diff
changeset
|
223 (add-hook 'kill-buffer-hook |
58343
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
224 `(lambda () (mm-destroy-parts ',handle)) |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
225 nil |
d9b4c5625386
(url-mm-callback): Delay the invocation
Masatake YAMATO <jet@gyve.org>
parents:
57515
diff
changeset
|
226 t))))) |
54695 | 227 |
228 (defun url-mm-url (url) | |
229 "Retrieve URL and pass to the appropriate viewing application." | |
66118
c0fac24c378a
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66100
diff
changeset
|
230 ;; 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
|
231 ;; 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
|
232 ;; 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
|
233 ;; result in some undesirable carner cases. |
54695 | 234 (require 'mm-decode) |
235 (require 'mm-view) | |
236 (url-retrieve url 'url-mm-callback nil)) | |
237 | |
238 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
239 ;;; Miscellaneous | |
240 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
241 (defvar url-dead-buffer-list nil) | |
242 | |
243 (defun url-mark-buffer-as-dead (buff) | |
244 (push buff url-dead-buffer-list)) | |
245 | |
246 (defun url-gc-dead-buffers () | |
247 (let ((buff)) | |
248 (while (setq buff (pop url-dead-buffer-list)) | |
249 (if (buffer-live-p buff) | |
250 (kill-buffer buff))))) | |
251 | |
252 (cond | |
253 ((fboundp 'display-warning) | |
254 (defalias 'url-warn 'display-warning)) | |
255 ((fboundp 'warn) | |
256 (defun url-warn (class message &optional level) | |
257 (warn "(%s/%s) %s" class (or level 'warning) message))) | |
258 (t | |
259 (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
|
260 (with-current-buffer (get-buffer-create "*URL-WARNINGS*") |
54695 | 261 (goto-char (point-max)) |
262 (save-excursion | |
263 (insert (format "(%s/%s) %s\n" class (or level 'warning) message))) | |
264 (display-buffer (current-buffer)))))) | |
265 | |
266 (provide 'url) | |
267 | |
54832
8a894d554fb1
(url-retrieve): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
268 ;; arch-tag: bc182f1f-d187-4f10-b961-47af2066579a |
54695 | 269 ;;; url.el ends here |