1 ;;; mm-partial.el --- showing message/partial
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Shenghuo Zhu <zsh@cs.rochester.edu>
7 ;; Keywords: message partial
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published
13 ;; by the Free Software Foundation; either version 3, or (at your
14 ;; option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
30 (eval-when-compile (require 'cl
))
36 (defun mm-partial-find-parts (id &optional art
)
37 (let ((headers (with-current-buffer gnus-summary-buffer
38 gnus-newsgroup-headers
))
40 (while (setq header
(pop headers
))
41 (unless (eq (aref header
0) art
)
42 (mm-with-unibyte-buffer
43 (gnus-request-article-this-buffer (aref header
0)
45 (when (search-forward id nil t
)
46 (let ((nhandles (mm-dissect-buffer
47 nil gnus-article-loose-mime
)) nid
)
48 (if (consp (car nhandles
))
49 (mm-destroy-parts nhandles
)
50 (setq nid
(cdr (assq 'id
51 (cdr (mm-handle-type nhandles
)))))
52 (if (not (equal id nid
))
53 (mm-destroy-parts nhandles
)
54 (push nhandles phandles
))))))))
58 (defun mm-inline-partial (handle &optional no-display
)
59 "Show the partial part of HANDLE.
60 This function replaces the buffer of HANDLE with a buffer contains
62 If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing."
63 (let ((id (cdr (assq 'id
(cdr (mm-handle-type handle
)))))
65 (b (point)) (n 1) total
67 gnus-displaying-mime handles buffer
)
68 (unless (mm-handle-cache handle
)
70 (error "Can not find message/partial id"))
73 (mm-partial-find-parts
76 (set-buffer gnus-summary-buffer
)
77 (gnus-summary-article-number))))
79 (let ((anumber (string-to-number
81 (cdr (mm-handle-type a
))))))
82 (bnumber (string-to-number
84 (cdr (mm-handle-type b
)))))))
85 (< anumber bnumber
)))))
86 (setq gnus-article-mime-handles
87 (mm-merge-handles gnus-article-mime-handles phandles
))
89 (set-buffer (generate-new-buffer " *mm*"))
90 (while (setq phandle
(pop phandles
))
91 (setq nn
(string-to-number
93 (cdr (mm-handle-type phandle
))))))
94 (setq ntotal
(string-to-number
96 (cdr (mm-handle-type phandle
))))))
99 (unless (eq total ntotal
)
100 (error "The numbers of total are different"))
101 (setq total ntotal
)))
104 (error "Missing part %d" n
))
105 (mm-insert-part phandle
)
106 (goto-char (point-max))
107 (when (not (eq 0 (skip-chars-backward "\r\n")))
108 ;; remove tail blank spaces except one
109 (if (looking-at "\r?\n")
110 (goto-char (match-end 0)))
111 (delete-region (point) (point-max)))
114 (error "Don't known the total number of"))
116 (error "Missing part %d" n
))
117 (kill-buffer (mm-handle-buffer handle
))
118 (goto-char (point-min))
119 (let ((point (if (search-forward "\n\n" nil t
)
122 (goto-char (point-min))
123 (unless (re-search-forward "^mime-version:" point t
)
124 (insert "MIME-Version: 1.0\n")))
125 (setcar handle
(current-buffer))
126 (mm-handle-set-cache handle t
)))
130 (narrow-to-region b b
)
131 (mm-insert-part handle
)
132 (let (gnus-article-mime-handles)
133 (run-hooks 'gnus-article-decode-hook
)
134 (gnus-article-prepare-display)
135 (setq handles gnus-article-mime-handles
))
137 ;; It is in article buffer.
138 (setq gnus-article-mime-handles
139 (mm-merge-handles gnus-article-mime-handles handles
)))
140 (mm-handle-set-undisplayer
143 (let (buffer-read-only)
145 ;; This is only valid on XEmacs.
146 (mapcar (lambda (prop)
148 (face-property 'default prop
) (current-buffer)))
149 '(background background-pixmap foreground
))
151 (delete-region ,(point-min-marker) ,(point-max-marker))))))))))
153 (provide 'mm-partial
)
155 ;;; arch-tag: 460e7424-05f2-4a1d-a0f2-70ec081eff7d
156 ;;; mm-partial.el ends here