|
Revision 4220, 2.1 kB
(checked in by miyoshi, 9 months ago)
|
Sync up with Emacs22.2.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
(require 'url-vars) |
|---|
| 27 |
(require 'url-parse) |
|---|
| 28 |
|
|---|
| 29 |
(require 'mm-decode) |
|---|
| 30 |
|
|---|
| 31 |
(defun url-cid-gnus (cid) |
|---|
| 32 |
(let ((content-type nil) |
|---|
| 33 |
(encoding nil) |
|---|
| 34 |
(part nil) |
|---|
| 35 |
(data nil)) |
|---|
| 36 |
(setq part (mm-get-content-id cid)) |
|---|
| 37 |
(if (not part) |
|---|
| 38 |
(message "Unknown CID encountered: %s" cid) |
|---|
| 39 |
(setq data (save-excursion |
|---|
| 40 |
(set-buffer (mm-handle-buffer part)) |
|---|
| 41 |
(buffer-string)) |
|---|
| 42 |
content-type (mm-handle-type part) |
|---|
| 43 |
encoding (symbol-name (mm-handle-encoding part))) |
|---|
| 44 |
(if (= 0 (length content-type)) (setq content-type "text/plain")) |
|---|
| 45 |
(if (= 0 (length encoding)) (setq encoding "8bit")) |
|---|
| 46 |
(if (listp content-type) |
|---|
| 47 |
(setq content-type (car content-type))) |
|---|
| 48 |
(insert (format "Content-type: %d\r\n" (length data)) |
|---|
| 49 |
"Content-type: " content-type "\r\n" |
|---|
| 50 |
"Content-transfer-encoding: " encoding "\r\n" |
|---|
| 51 |
"\r\n" |
|---|
| 52 |
(or data ""))))) |
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
(defun url-cid (url) |
|---|
| 56 |
(cond |
|---|
| 57 |
((fboundp 'mm-get-content-id) |
|---|
| 58 |
|
|---|
| 59 |
(save-excursion |
|---|
| 60 |
(set-buffer (generate-new-buffer " *url-cid*")) |
|---|
| 61 |
(url-cid-gnus (url-filename url)))) |
|---|
| 62 |
(t |
|---|
| 63 |
(message "Unable to handle CID URL: %s" url)))) |
|---|
| 64 |
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|