(mime-temp-directory): New variable (moved from mel.el).
[elisp/flim.git] / mime-def.el
1 ;;; mime-def.el --- definition module about MIME
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: definition, MIME, multimedia, mail, news
7
8 ;; This file is part of FLIM (Faithful Library about Internet Message).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (defconst mime-spadework-module-version-string
28   "FLIM 1.1.1 - \"J\e-Dþjò\" ")\e-A
29
30 (require 'custom)
31
32 (defgroup mime nil
33   "Emacs MIME Interfaces"
34   :group 'news
35   :group 'mail)
36
37 (custom-handle-keyword 'default-mime-charset :group 'mime
38                        'custom-variable)
39
40 (defvar mime-temp-directory (or (getenv "MIME_TMP_DIR")
41                                 (getenv "TM_TMP_DIR")
42                                 (getenv "TMPDIR")
43                                 (getenv "TMP")
44                                 (getenv "TEMP")
45                                 "/tmp/")
46   "*Directory for temporary files.")
47
48
49 (unless (fboundp 'butlast)
50   (defun butlast (x &optional n)
51     "Returns a copy of LIST with the last N elements removed."
52     (if (and n (<= n 0)) x
53       (nbutlast (copy-sequence x) n)))
54   
55   (defun nbutlast (x &optional n)
56     "Modifies LIST to remove the last N elements."
57     (let ((m (length x)))
58       (or n (setq n 1))
59       (and (< n m)
60            (progn
61              (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
62              x))))
63   )
64
65 (defsubst eliminate-top-spaces (string)
66   "Eliminate top sequence of space or tab in STRING."
67   (if (string-match "^[ \t]+" string)
68       (substring string (match-end 0))
69     string))
70
71
72 ;;; @ definitions about MIME
73 ;;;
74
75 (defconst mime-tspecials "][()<>@,\;:\\\"/?=")
76 (defconst mime-token-regexp (concat "[^" mime-tspecials "\000-\040]+"))
77 (defconst mime-charset-regexp mime-token-regexp)
78
79 (defconst mime-media-type/subtype-regexp
80   (concat mime-token-regexp "/" mime-token-regexp))
81
82
83 ;;; @@ Quoted-Printable
84 ;;;
85
86 (defconst quoted-printable-hex-chars "0123456789ABCDEF")
87
88 (defconst quoted-printable-octet-regexp
89   (concat "=[" quoted-printable-hex-chars
90           "][" quoted-printable-hex-chars "]"))
91
92
93 ;;; @ end
94 ;;;
95
96 (provide 'mime-def)
97
98 ;;; mime-def.el ends here