Header was modified.
[elisp/semi.git] / mime-text.el
1 ;;; mime-text.el --- mime-view content filter for text
2
3 ;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version:
7 ;;      $Id: mime-text.el,v 0.4 1997-02-21 05:28:36 tmorioka Exp $
8 ;; Keywords: text, MIME, multimedia, mail, news
9
10 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
11
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
16
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 ;;; @ code conversion
30 ;;;
31
32 (defvar mime-text-decoder-alist
33   '((mime/show-message-mode      . mime-charset/decode-buffer)
34     (mime/temporary-message-mode . mime-charset/decode-buffer)
35     (t                           . mime-charset/maybe-decode-buffer)
36     ))
37
38 (defun mime-charset/decode-buffer (charset &optional encoding)
39   (decode-mime-charset-region (point-min)(point-max)
40                               (or charset default-mime-charset))
41   )
42
43 (defun mime-charset/maybe-decode-buffer (charset &optional encoding)
44   (or (member encoding '(nil "7bit" "8bit" "binary"))
45       (mime-charset/decode-buffer charset)
46       ))
47
48 (defun mime-preview/decode-text-buffer (charset encoding)
49   (mime-decode-region (point-min) (point-max) encoding)
50   (let* ((mode mime::preview/original-major-mode)
51          (m (or (save-excursion
52                   (set-buffer mime::preview/article-buffer)
53                   mime::article/code-converter)
54                 (cdr (or (assq mode mime-text-decoder-alist)
55                          (assq t mime-text-decoder-alist)))
56                 ))
57          )
58     (and (functionp m)
59          (funcall m charset encoding)
60          )))
61
62
63 ;;; @ content filters for mime-text
64 ;;;
65
66 (defun mime-preview/filter-for-text/plain (ctype params encoding)
67   (mime-preview/decode-text-buffer (cdr (assoc "charset" params)) encoding)
68   (goto-char (point-max))
69   (if (not (eq (char-after (1- (point))) ?\n))
70       (insert "\n")
71     )
72   (if browse-url-browser-function
73       (progn
74         (goto-char (point-min))
75         (while (re-search-forward tm:URL-regexp nil t)
76           (let ((beg (match-beginning 0))
77                 (end (match-end 0)))
78             (tm:add-button beg end
79                            (function tm:browse-url)
80                            (list (buffer-substring beg end))))
81           )))
82   (run-hooks 'mime-view-plain-text-preview-hook)
83   )
84
85 (defun mime-preview/filter-for-text/richtext (ctype params encoding)
86   (let* ((mode mime::preview/original-major-mode)
87          (m (assq mode mime-text-decoder-alist))
88          (charset (cdr (assoc "charset" params)))
89          (beg (point-min))
90          )
91     (remove-text-properties beg (point-max) '(face nil))
92     (mime-preview/decode-text-buffer charset encoding)
93     (richtext-decode beg (point-max))
94     ))
95
96 (defun mime-preview/filter-for-text/enriched (ctype params encoding)
97   (let* ((mode mime::preview/original-major-mode)
98          (m (assq mode mime-text-decoder-alist))
99          (charset (cdr (assoc "charset" params)))
100          (beg (point-min))
101          )
102     (remove-text-properties beg (point-max) '(face nil))
103     (mime-preview/decode-text-buffer charset encoding)
104     (enriched-decode beg (point-max))
105     ))
106
107
108 ;;; @ end
109 ;;;
110
111 (provide 'mime-text)
112
113 ;;; mime-text.el ends here