*** empty log message ***
[gnus] / lisp / mm-view.el
1 ;;; mm-view.el --- Functions for viewing MIME objects
2 ;; Copyright (C) 1998 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 ;;;
32 ;;; Functions for displaying various formats inline
33 ;;;
34
35 (defun mm-inline-image (handle)
36   (let ((annot (make-annotation (mm-get-image handle) nil 'text))
37         buffer-read-only)
38     (mm-insert-inline handle ".\n")
39     (set-extent-property annot 'mm t)
40     (set-extent-property annot 'duplicable t)))
41
42 (defvar mm-w3-setup nil)
43 (defun mm-setup-w3 ()
44   (unless mm-w3-setup
45     (w3-do-setup)
46     (require 'url)
47     (require 'w3-vars)
48     (require 'url-vars)
49     (setq mm-w3-setup t)))
50
51 (defun mm-inline-text (handle)
52   (let ((type (cadr (split-string (car (mm-handle-type handle)) "/")))
53         text buffer-read-only)
54     (cond
55      ((equal type "plain")
56       (setq text (mm-get-part handle))
57       (let ((b (point))
58             (charset (mail-content-type-get
59                       (mm-handle-type handle) 'charset)))
60         (insert (mm-decode-string text charset))
61         (save-restriction
62           (narrow-to-region b (point))
63           (mm-handle-set-undisplayer
64            handle
65            `(lambda ()
66               (let (buffer-read-only)
67                 (delete-region ,(point-min-marker) ,(point-max-marker))))))))
68      ((equal type "html")
69       (mm-setup-w3)
70       (setq text (mm-get-part handle))
71       (let ((b (point))
72             (url-standalone-mode t)
73             (width (window-width)))
74         (save-excursion
75           (insert text)
76           (save-restriction
77             (narrow-to-region b (point))
78             (save-window-excursion
79               (let ((w3-strict-width width))
80                 (w3-region (point-min) (point-max)))))
81           (mm-handle-set-undisplayer
82            handle
83            `(lambda ()
84               (let (buffer-read-only)
85               (mapc (lambda (prop)
86                       (remove-specifier
87                        (face-property 'default prop) (current-buffer)))
88                     '(background background-pixmap foreground))
89                 (delete-region ,(point-min-marker) ,(point-max-marker))))))))
90      ((or (equal type "enriched")
91           (equal type "richtext"))
92       (save-excursion
93         (mm-with-unibyte-buffer
94           (insert-buffer-substring (mm-handle-buffer handle))
95           (mm-decode-content-transfer-encoding
96            (mm-handle-encoding handle)
97            (car (mm-handle-type handle)))
98           (save-window-excursion
99             (enriched-decode (point-min) (point-max))
100             (setq text (buffer-string)))))
101       (mm-insert-inline handle text))
102      (t
103       (save-excursion
104         (mm-with-unibyte-buffer
105           (insert-buffer-substring (mm-handle-buffer handle))
106           (mm-decode-content-transfer-encoding
107            (mm-handle-encoding handle)
108            (car (mm-handle-type handle)))
109           (setq text (buffer-string))))
110       (mm-insert-inline handle text)))))
111
112 (defun mm-insert-inline (handle text)
113   "Insert TEXT inline from HANDLE."
114   (let ((b (point)))
115     (insert text)
116     (mm-handle-set-undisplayer
117      handle
118      `(lambda ()
119         (let (buffer-read-only)
120           (delete-region ,(set-marker (make-marker) b)
121                          ,(set-marker (make-marker) (point))))))))
122   
123 (defun mm-inline-audio (handle)
124   (message "Not implemented"))
125
126 (defun mm-view-sound-file ()
127   (message "Not implemented"))
128
129 (defun mm-w3-prepare-buffer ()
130   (require 'w3)
131   (w3-prepare-buffer))
132
133 (provide 'mm-view)
134
135 ;; mm-view.el ends here