tm 7.41.2.
[elisp/tm.git] / tm-def.el
1 ;;;
2 ;;; tm-def.el --- definition module for tm
3 ;;;
4 ;;; Copyright (C) 1995 Free Software Foundation, Inc.
5 ;;; Copyright (C) 1995,1996 MORIOKA Tomohiko
6 ;;;
7 ;;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;;; Version:
9 ;;;     $Id: tm-def.el,v 7.13 1996/01/25 02:31:19 morioka Exp $
10 ;;; Keywords: mail, news, MIME, multimedia, definition
11 ;;;
12 ;;; This file is part of tm (Tools for MIME).
13 ;;;
14 ;;; This program is free software; you can redistribute it and/or
15 ;;; modify it under the terms of the GNU General Public License as
16 ;;; published by the Free Software Foundation; either version 2, or
17 ;;; (at your option) any later version.
18 ;;;
19 ;;; This program is distributed in the hope that it will be useful,
20 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 ;;; General Public License for more details.
23 ;;;
24 ;;; You should have received a copy of the GNU General Public License
25 ;;; along with This program.  If not, write to the Free Software
26 ;;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 ;;;
28 ;;; Code:
29
30 (require 'emu)
31 (require 'tl-822)
32
33
34 ;;; @ variables
35 ;;;
36
37 (defvar mime/tmp-dir (or (getenv "TM_TMP_DIR") "/tmp/"))
38
39 (defvar mime/use-multi-frame
40   (and (>= emacs-major-version 19) window-system))
41
42 (defvar mime/find-file-function
43   (if mime/use-multi-frame
44       (function find-file-other-frame)
45     (function find-file)
46     ))
47
48
49 ;;; @ constants
50 ;;;
51
52 (defconst mime/output-buffer-name "*MIME-out*")
53 (defconst mime/temp-buffer-name " *MIME-temp*")
54
55
56 ;;; @ for various Emacs variants
57 ;;;
58
59 (cond ((boundp 'MULE)  (require 'tm-mule))
60       ((boundp 'NEMACS)(require 'tm-nemacs))
61       (t               (require 'tm-orig))
62       )
63
64
65 ;;; @ charset and encoding
66 ;;;
67
68 (defun mime/find-charset (lcl)
69   (if lcl
70       (or (cdr (some-element
71                 (function
72                  (lambda (elt)
73                    (subsetp lcl (car elt))
74                    ))
75                 mime/lc-charset-alist)
76                )
77           mime/unknown-charset)
78     ))
79
80 (defun mime/find-charset-region (beg end)
81   (mime/find-charset (cons lc-ascii (find-charset-region beg end)))
82   )
83
84 (defvar mime/charset-default-encoding-alist
85   '(("US-ASCII"       . nil)
86     ("ISO-8859-1"     . "quoted-printable")
87     ("ISO-8859-2"     . "quoted-printable")
88     ("ISO-8859-3"     . "quoted-printable")
89     ("ISO-8859-4"     . "quoted-printable")
90 ;;; ("ISO-8859-5"     . "quoted-printable")
91     ("KOI8-R"         . "quoted-printable")
92     ("ISO-8859-7"     . "quoted-printable")
93     ("ISO-8859-8"     . "quoted-printable")
94     ("ISO-8859-9"     . "quoted-printable")
95     ("ISO-2022-JP"    . nil)
96     ("ISO-2022-KR"    . nil)
97     ("EUC-KR"         . nil)
98     ("ISO-2022-JP-2"  . nil)
99     ("ISO-2022-INT-1" . nil)
100     ))
101
102
103 ;;; @ coding-system
104 ;;;
105
106 (defvar mime/default-coding-system *ctext*)
107
108
109 ;;; @ button
110 ;;;
111
112 (defun tm:set-face-region (b e face)
113   (let ((overlay (tl:make-overlay b e)))
114     (tl:overlay-put overlay 'face face)
115     ))
116
117 (setq tm:button-face 'bold)
118 (setq tm:mouse-face 'highlight)
119
120 (defun tm:add-button (from to func &optional data)
121   "Create a button between FROM and TO with callback FUNC and data DATA."
122   (and tm:button-face
123        (tl:overlay-put (tl:make-overlay from to) 'face tm:button-face))
124   (tl:add-text-properties from to
125                           (append (and tm:mouse-face
126                                        (list 'mouse-face tm:mouse-face))
127                                   (list 'tm-callback func)
128                                   (and data (list 'tm-data data))
129                                   ))
130   )
131
132 (defvar tm:mother-button-dispatcher nil)
133
134 (defun tm:button-dispatcher (event)
135   "Select the button under point."
136   (interactive "e")
137   (mouse-set-point event)
138   (let ((func (get-text-property (point) 'tm-callback))
139         (data (get-text-property (point) 'tm-data))
140         )
141     (if func
142         (apply func data)
143       (if (fboundp tm:mother-button-dispatcher)
144           (funcall tm:mother-button-dispatcher event)
145         )
146       )))
147
148
149 ;;; @ for URL
150 ;;;
151
152 (defvar tm:URL-regexp
153   "\\(http\\|ftp\\|file\\|gopher\\|news\\|telnet\\|wais\\|mailto\\):\\(//[-a-zA-Z0-9_.]+:[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
154
155 (defvar browse-url-browser-function nil)
156
157 (defun tm:browse-url (&optional url)
158   (if (fboundp browse-url-browser-function)
159       (call-interactively browse-url-browser-function)
160     (if (fboundp tm:mother-button-dispatcher)
161         (call-interactively tm:mother-button-dispatcher)
162       )
163     ))
164
165
166 ;;; @ definitions about MIME
167 ;;;
168
169 (defconst mime/tspecials "][\000-\040()<>@,\;:\\\"/?.=")
170 (defconst mime/token-regexp (concat "[^" mime/tspecials "]+"))
171 (defconst mime/charset-regexp mime/token-regexp)
172
173 (defconst mime/content-type-subtype-regexp
174   (concat mime/token-regexp "/" mime/token-regexp))
175 (defconst mime/content-parameter-value-regexp
176   (concat "\\("
177           rfc822/quoted-string-regexp
178           "\\|[^; \t\n]*\\)"))
179
180 (defconst mime/disposition-type-regexp mime/token-regexp)
181
182
183 ;;; @@ Base64
184 ;;;
185
186 (defconst base64-token-regexp "[A-Za-z0-9+/=]")
187
188 (defconst mime/B-encoded-text-regexp
189   (concat "\\("
190           base64-token-regexp
191           base64-token-regexp
192           base64-token-regexp
193           base64-token-regexp
194           "\\)+"))
195 (defconst mime/B-encoding-and-encoded-text-regexp
196   (concat "\\(B\\)\\?" mime/B-encoded-text-regexp))
197
198
199 ;;; @@ Quoted-Printable
200 ;;;
201
202 (defconst quoted-printable-hex-chars "0123456789ABCDEF")
203 (defconst quoted-printable-octet-regexp
204   (concat "=[" quoted-printable-hex-chars
205           "][" quoted-printable-hex-chars "]"))
206
207 (defconst mime/Q-encoded-text-regexp
208   (concat "\\([^=?]\\|" quoted-printable-octet-regexp "\\)+"))
209 (defconst mime/Q-encoding-and-encoded-text-regexp
210   (concat "\\(Q\\)\\?" mime/Q-encoded-text-regexp))
211
212
213 ;;; @ rot13-47
214 ;;;
215 ;; caesar-region written by phr@prep.ai.mit.edu  Nov 86
216 ;; modified by tower@prep Nov 86
217 ;; gnus-caesar-region
218 ;; Modified by umerin@flab.flab.Fujitsu.JUNET for ROT47.
219 (defun tm:caesar-region (&optional n)
220   "Caesar rotation of region by N, default 13, for decrypting netnews.
221 ROT47 will be performed for Japanese text in any case."
222   (interactive (if current-prefix-arg   ; Was there a prefix arg?
223                    (list (prefix-numeric-value current-prefix-arg))
224                  (list nil)))
225   (cond ((not (numberp n)) (setq n 13))
226         (t (setq n (mod n 26))))        ;canonicalize N
227   (if (not (zerop n))           ; no action needed for a rot of 0
228       (progn
229         (if (or (not (boundp 'caesar-translate-table))
230                 (/= (aref caesar-translate-table ?a) (+ ?a n)))
231             (let ((i 0) (lower "abcdefghijklmnopqrstuvwxyz") upper)
232               (message "Building caesar-translate-table...")
233               (setq caesar-translate-table (make-vector 256 0))
234               (while (< i 256)
235                 (aset caesar-translate-table i i)
236                 (setq i (1+ i)))
237               (setq lower (concat lower lower) upper (upcase lower) i 0)
238               (while (< i 26)
239                 (aset caesar-translate-table (+ ?a i) (aref lower (+ i n)))
240                 (aset caesar-translate-table (+ ?A i) (aref upper (+ i n)))
241                 (setq i (1+ i)))
242               ;; ROT47 for Japanese text.
243               ;; Thanks to ichikawa@flab.fujitsu.junet.
244               (setq i 161)
245               (let ((t1 (logior ?O 128))
246                     (t2 (logior ?! 128))
247                     (t3 (logior ?~ 128)))
248                 (while (< i 256)
249                   (aset caesar-translate-table i
250                         (let ((v (aref caesar-translate-table i)))
251                           (if (<= v t1) (if (< v t2) v (+ v 47))
252                             (if (<= v t3) (- v 47) v))))
253                   (setq i (1+ i))))
254               (message "Building caesar-translate-table...done")))
255         (let ((from (region-beginning))
256               (to (region-end))
257               (i 0) str len)
258           (setq str (buffer-substring from to))
259           (setq len (length str))
260           (while (< i len)
261             (aset str i (aref caesar-translate-table (aref str i)))
262             (setq i (1+ i)))
263           (goto-char from)
264           (delete-region from to)
265           (insert str)))))
266
267
268 ;;; @ field
269 ;;;
270
271 (defun tm:set-fields (sym field-list &optional regexp-sym)
272   (or regexp-sym
273       (setq regexp-sym
274             (let ((name (symbol-name sym)))
275               (intern
276                (concat (if (string-match "\\(.*\\)-list" name)
277                            (substring name 0 (match-end 1))
278                          name)
279                        "-regexp")
280                )))
281       )
282   (set sym field-list)
283   (set regexp-sym
284        (concat "^" (apply (function regexp-or) field-list) ":"))
285   )
286
287 (defun tm:add-fields (sym field-list &optional regexp-sym)
288   (or regexp-sym
289       (setq regexp-sym
290             (let ((name (symbol-name sym)))
291               (intern
292                (concat (if (string-match "\\(.*\\)-list" name)
293                            (substring name 0 (match-end 1))
294                          name)
295                        "-regexp")
296                )))
297       )
298   (let ((fields (eval sym)))
299     (mapcar (function
300              (lambda (field)
301                (or (member field fields)
302                    (setq fields (cons field fields))
303                    )
304                ))
305             (reverse field-list)
306             )
307     (set regexp-sym
308          (concat "^" (apply (function regexp-or) fields) ":"))
309     (set sym fields)
310     ))
311
312 (defun tm:delete-fields (sym field-list &optional regexp-sym)
313   (or regexp-sym
314       (setq regexp-sym
315             (let ((name (symbol-name sym)))
316               (intern
317                (concat (if (string-match "\\(.*\\)-list" name)
318                            (substring name 0 (match-end 1))
319                          name)
320                        "-regexp")
321                )))
322       )
323   (let ((fields (eval sym)))
324     (mapcar (function
325              (lambda (field)
326                (setq fields (delete field fields))
327                ))
328             field-list)
329     (set regexp-sym
330          (concat "^" (apply (function regexp-or) fields) ":"))
331     (set sym fields)
332     ))
333
334
335 ;;; @ end
336 ;;;
337
338 (provide 'tm-def)
339
340 ;;; tm-def.el ends here