*** empty log message ***
[gnus] / lisp / mm-view.el
1 ;;; mm-view.el --- Functions for viewing MIME objects
2 ;; Copyright (C) 1998,99 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; This file is part of GNU Emacs.
6
7 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;; any later version.
11
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;; GNU General Public License for more details.
16
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
19 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;; Boston, MA 02111-1307, USA.
21
22 ;;; Commentary:
23
24 ;;; Code:
25
26 (require 'mail-parse)
27 (require 'mailcap)
28 (require 'mm-bodies)
29 (require 'mm-decode)
30
31 (eval-and-compile
32   (autoload 'gnus-article-prepare-display "gnus-art")
33   (autoload 'vcard-parse-string "vcard")
34   (autoload 'vcard-format-string "vcard"))
35
36 ;;;
37 ;;; Functions for displaying various formats inline
38 ;;;
39
40 (defun mm-inline-image (handle)
41   (let ((annot (make-annotation (mm-get-image handle) nil 'text))
42         buffer-read-only)
43     (mm-insert-inline handle "\n")
44     (set-extent-property annot 'mm t)
45     (set-extent-property annot 'duplicable t)))
46
47 (defvar mm-w3-setup nil)
48 (defun mm-setup-w3 ()
49   (unless mm-w3-setup
50     (require 'w3)
51     (w3-do-setup)
52     (require 'url)
53     (require 'w3-vars)
54     (require 'url-vars)
55     (setq mm-w3-setup t)))
56
57 (defun mm-inline-text (handle)
58   (let ((type (cadr (split-string (car (mm-handle-type handle)) "/")))
59         text buffer-read-only)
60     (cond
61      ((equal type "html")
62       (mm-setup-w3)
63       (setq text (mm-get-part handle))
64       (let ((b (point))
65             (url-standalone-mode t)
66             (url-current-object
67              (url-generic-parse-url (format "cid:%s" (mm-handle-id handle))))
68             (width (window-width)))
69         (save-excursion
70           (insert text)
71           (save-restriction
72             (narrow-to-region b (point))
73             (save-window-excursion
74               (let ((w3-strict-width width))
75                 (w3-region (point-min) (point-max)))))
76           (mm-handle-set-undisplayer
77            handle
78            `(lambda ()
79               (let (buffer-read-only)
80               (mapc (lambda (prop)
81                       (remove-specifier
82                        (face-property 'default prop) (current-buffer)))
83                     '(background background-pixmap foreground))
84                 (delete-region ,(point-min-marker) ,(point-max-marker))))))))
85      ((or (equal type "enriched")
86           (equal type "richtext"))
87       (save-excursion
88         (mm-with-unibyte-buffer
89           (mm-insert-part handle)
90           (save-window-excursion
91             (enriched-decode (point-min) (point-max))
92             (setq text (buffer-string)))))
93       (mm-insert-inline handle text))
94      ((equal type "x-vcard")
95       (mm-insert-inline
96        handle
97        (concat "\n-- \n"
98                (vcard-format-string
99                 (vcard-parse-string (mm-get-part handle)
100                                     'vcard-standard-filter)))))
101      (t
102       (setq text (mm-get-part handle))
103       (let ((b (point))
104             (charset (mail-content-type-get
105                       (mm-handle-type handle) 'charset)))
106         (insert (mm-decode-string text charset))
107         (save-restriction
108           (narrow-to-region b (point))
109           (set-text-properties (point-min) (point-max) nil)
110           (mm-handle-set-undisplayer
111            handle
112            `(lambda ()
113               (let (buffer-read-only)
114                 (delete-region ,(point-min-marker)
115                                ,(point-max-marker)))))))))))
116
117 (defun mm-insert-inline (handle text)
118   "Insert TEXT inline from HANDLE."
119   (let ((b (point)))
120     (insert text)
121     (mm-handle-set-undisplayer
122      handle
123      `(lambda ()
124         (let (buffer-read-only)
125           (delete-region ,(set-marker (make-marker) b)
126                          ,(set-marker (make-marker) (point))))))))
127
128 (defun mm-inline-audio (handle)
129   (message "Not implemented"))
130
131 (defun mm-view-sound-file ()
132   (message "Not implemented"))
133
134 (defun mm-w3-prepare-buffer ()
135   (require 'w3)
136   (w3-prepare-buffer))
137
138 (defun mm-view-message ()
139   (gnus-article-prepare-display)
140   (run-hooks 'gnus-article-decode-hook)
141   (fundamental-mode)
142   (goto-char (point-min)))
143
144 (provide 'mm-view)
145
146 ;; mm-view.el ends here