Mercurial > hg > xemacs-beta
comparison lisp/tm/tm-partial.el @ 98:0d2f883870bc r20-1b1
Import from CVS: tag r20-1b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:13:56 +0200 |
parents | c0c698873ce1 |
children |
comparison
equal
deleted
inserted
replaced
97:498bf5da1c90 | 98:0d2f883870bc |
---|---|
1 ;;; tm-partial.el --- Grabbing all MIME "message/partial"s. | 1 ;;; tm-partial.el --- Grabbing all MIME "message/partial"s. |
2 | 2 |
3 ;; Copyright (C) 1995,1996 Free Software Foundation, Inc. | 3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. |
4 | 4 |
5 ;; Author: OKABE Yasuo @ Kyoto University | 5 ;; Author: OKABE Yasuo @ Kyoto University |
6 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp> | 6 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp> |
7 ;; Version: | 7 ;; Version: |
8 ;; $Id: tm-partial.el,v 1.2 1996/12/28 21:03:15 steve Exp $ | 8 ;; $Id: tm-partial.el,v 1.3 1997/02/15 22:21:29 steve Exp $ |
9 ;; Keywords: mail, news, MIME, multimedia, message/partial | 9 ;; Keywords: mail, news, MIME, multimedia, message/partial |
10 | 10 |
11 ;; This file is a part of tm (Tools for MIME). | 11 ;; This file is a part of tm (Tools for MIME). |
12 | 12 |
13 ;; This program is free software; you can redistribute it and/or | 13 ;; This program is free software; you can redistribute it and/or |
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | 19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
21 ;; General Public License for more details. | 21 ;; General Public License for more details. |
22 | 22 |
23 ;; You should have received a copy of the GNU General Public License | 23 ;; You should have received a copy of the GNU General Public License |
24 ;; along with this program; see the file COPYING. If not, write to | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
25 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
26 ;; Boston, MA 02111-1307, USA. | 26 ;; Boston, MA 02111-1307, USA. |
27 | 27 |
28 ;;; Code: | 28 ;;; Code: |
29 | 29 |
30 (require 'tm-view) | 30 (require 'tm-view) |
32 | 32 |
33 (defvar tm-partial/preview-article-method-alist nil) | 33 (defvar tm-partial/preview-article-method-alist nil) |
34 | 34 |
35 ;; display Article at the cursor in Subject buffer. | 35 ;; display Article at the cursor in Subject buffer. |
36 (defun tm-partial/preview-article (target) | 36 (defun tm-partial/preview-article (target) |
37 (let ((f (assq target tm-partial/preview-article-method-alist))) | 37 (save-window-excursion |
38 (if f | 38 (let ((f (assq target tm-partial/preview-article-method-alist))) |
39 (funcall (cdr f)) | 39 (if f |
40 (error "Fatal. Unsupported mode") | 40 (funcall (cdr f)) |
41 ))) | 41 (error "Fatal. Unsupported mode") |
42 )))) | |
42 | 43 |
43 (defun mime-article/grab-message/partials (beg end cal) | 44 (defun mime-article/grab-message/partials (beg end cal) |
44 (interactive) | 45 (interactive) |
45 (let* ((id (cdr (assoc "id" cal))) | 46 (let* ((id (cdr (assoc "id" cal))) |
46 (buffer (generate-new-buffer id)) | |
47 (mother mime::article/preview-buffer) | 47 (mother mime::article/preview-buffer) |
48 (target (cdr (assq 'major-mode cal))) | 48 (target (cdr (assq 'major-mode cal))) |
49 (article-buffer (buffer-name (current-buffer))) | 49 (article-buffer (buffer-name (current-buffer))) |
50 (subject-buf (eval (cdr (assq 'summary-buffer-exp cal)))) | 50 (subject-buf (eval (cdr (assq 'summary-buffer-exp cal)))) |
51 subject-id | 51 subject-id |
61 | 61 |
62 ;; if you can't parse the subject line, try simple decoding method | 62 ;; if you can't parse the subject line, try simple decoding method |
63 (if (or (file-exists-p full-file) | 63 (if (or (file-exists-p full-file) |
64 (not (y-or-n-p "Merge partials?")) | 64 (not (y-or-n-p "Merge partials?")) |
65 ) | 65 ) |
66 (progn | 66 (mime-article/decode-message/partial beg end cal) |
67 (kill-buffer buffer) | |
68 (mime-article/decode-message/partial beg end cal) | |
69 ) | |
70 (let (cinfo the-id parameters) | 67 (let (cinfo the-id parameters) |
71 (setq subject-id (std11-field-body "Subject")) | 68 (setq subject-id (std11-field-body "Subject")) |
72 (if (string-match "[0-9\n]+" subject-id) | 69 (if (string-match "[0-9\n]+" subject-id) |
73 (setq subject-id (substring subject-id 0 (match-beginning 0))) | 70 (setq subject-id (substring subject-id 0 (match-beginning 0))) |
74 ) | 71 ) |
75 (pop-to-buffer subject-buf) | 72 (save-excursion |
76 (while (search-backward subject-id nil t) | 73 (set-buffer subject-buf) |
77 ) | 74 (while (search-backward subject-id nil t)) |
78 (catch 'tag | 75 (catch 'tag |
79 (while t | 76 (while t |
80 (tm-partial/preview-article target) | 77 (tm-partial/preview-article target) |
81 (pop-to-buffer article-buffer) | 78 (set-buffer article-buffer) |
82 (switch-to-buffer mime::article/preview-buffer) | 79 (set-buffer mime::article/preview-buffer) |
83 (setq cinfo | 80 (setq cinfo |
84 (mime::preview-content-info/content-info | 81 (mime::preview-content-info/content-info |
85 (car mime::preview/content-list))) | 82 (car mime::preview/content-list))) |
86 (setq parameters (mime::content-info/parameters cinfo)) | 83 (setq parameters (mime::content-info/parameters cinfo)) |
87 (setq the-id (assoc-value "id" parameters)) | 84 (setq the-id (assoc-value "id" parameters)) |
88 (if (equal the-id id) | 85 (if (equal the-id id) |
89 (progn | 86 (progn |
90 (switch-to-buffer article-buffer) | 87 (set-buffer article-buffer) |
91 (mime-article/decode-message/partial | 88 (mime-article/decode-message/partial |
92 (point-min)(point-max) parameters) | 89 (point-min)(point-max) parameters) |
93 (if (file-exists-p full-file) | 90 (if (file-exists-p full-file) |
94 (throw 'tag nil) | 91 (throw 'tag nil) |
95 ) | 92 ) |
96 )) | 93 )) |
97 (if (not (progn | 94 (if (not (progn |
98 (pop-to-buffer subject-buf) | 95 (set-buffer subject-buf) |
99 (end-of-line) | 96 (end-of-line) |
100 (search-forward subject-id nil t) | 97 (search-forward subject-id nil t) |
101 )) | 98 )) |
102 (error "not found") | 99 (error "not found") |
100 ) | |
103 ) | 101 ) |
104 )))))) | 102 )))))) |
105 | 103 |
106 | 104 |
107 ;;; @ end | 105 ;;; @ end |