1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00
emacs/lisp/url/url-cid.el

66 lines
2.0 KiB
EmacsLisp
Raw Normal View History

2004-04-04 01:21:46 +00:00
;;; url-cid.el --- Content-ID URL loader
2004-10-19 21:36:56 +00:00
2009-01-05 03:18:22 +00:00
;; Copyright (C) 1998, 1999, 2004, 2005, 2006, 2007, 2008, 2009
;; Free Software Foundation, Inc.
2004-10-19 21:36:56 +00:00
2004-04-04 01:21:46 +00:00
;; Keywords: comm, data, processes
2004-10-19 21:36:56 +00:00
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
2004-10-19 21:36:56 +00:00
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
2004-10-19 21:36:56 +00:00
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
2004-10-19 21:36:56 +00:00
;;; Code:
2004-04-04 01:21:46 +00:00
(require 'url-vars)
(require 'url-parse)
(require 'mm-decode)
(defun url-cid-gnus (cid)
(let ((content-type nil)
(encoding nil)
(part nil)
(data nil))
(setq part (mm-get-content-id cid))
(if (not part)
(message "Unknown CID encountered: %s" cid)
(setq data (save-excursion
(set-buffer (mm-handle-buffer part))
(buffer-string))
content-type (mm-handle-type part)
encoding (symbol-name (mm-handle-encoding part)))
(if (= 0 (length content-type)) (setq content-type "text/plain"))
(if (= 0 (length encoding)) (setq encoding "8bit"))
(if (listp content-type)
(setq content-type (car content-type)))
(insert (format "Content-length: %d\r\n" (length data))
2004-04-04 01:21:46 +00:00
"Content-type: " content-type "\r\n"
"Content-transfer-encoding: " encoding "\r\n"
"\r\n"
(or data "")))))
;;;###autoload
(defun url-cid (url)
(cond
((fboundp 'mm-get-content-id)
;; Using Pterodactyl Gnus or later
(save-excursion
(set-buffer (generate-new-buffer " *url-cid*"))
(url-cid-gnus (url-filename url))))
(t
(message "Unable to handle CID URL: %s" url))))
2004-04-04 04:44:10 +00:00
;; arch-tag: 23d9ab74-fad4-4dba-b1e7-292871e8bda5
2004-10-19 21:36:56 +00:00
;;; url-cid.el ends here