Mercurial > emacs
annotate lisp/gnus/mail-parse.el @ 62864:a30c3081abf5
(jit-lock-function, jit-lock-after-change): Do nothing if memory is full.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 29 May 2005 08:40:37 +0000 |
parents | 55fd4f77387a |
children | 18a818a2ee7c cce1c0ee76ee |
rev | line source |
---|---|
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
1 ;;; mail-parse.el --- Interface functions for parsing mail |
31717 | 2 ;; Copyright (C) 1998, 1999, 2000 |
3 ;; Free Software Foundation, Inc. | |
4 | |
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | |
6 ;; This file is part of GNU Emacs. | |
7 | |
8 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
9 ;; it under the terms of the GNU General Public License as published by | |
10 ;; the Free Software Foundation; either version 2, or (at your option) | |
11 ;; any later version. | |
12 | |
13 ;; GNU Emacs is distributed in the hope that it will be useful, | |
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 ;; GNU General Public License for more details. | |
17 | |
18 ;; You should have received a copy of the GNU General Public License | |
19 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
20 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 ;; Boston, MA 02111-1307, USA. | |
22 | |
23 ;;; Commentary: | |
24 | |
25 ;; This file contains wrapper functions for a wide range of mail | |
26 ;; parsing functions. The idea is that there are low-level libraries | |
27 ;; that impement according to various specs (RFC2231, DRUMS, USEFOR), | |
28 ;; but that programmers that want to parse some header (say, | |
29 ;; Content-Type) will want to use the latest spec. | |
30 ;; | |
31 ;; So while each low-level library (rfc2231.el, for instance) decodes | |
32 ;; faithfully according to that (proposed) standard, this library is | |
33 ;; the interface library. If some later RFC supersedes RFC2231, one | |
34 ;; would just have to write a new low-level library, adjust the | |
35 ;; aliases in this library, and the users and programmers won't notice | |
36 ;; any changes. | |
37 | |
38 ;;; Code: | |
39 | |
40 (require 'mail-prsvr) | |
41 (require 'ietf-drums) | |
42 (require 'rfc2231) | |
43 (require 'rfc2047) | |
44 (require 'rfc2045) | |
45 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
46 (defalias 'mail-header-parse-content-type 'rfc2231-parse-qp-string) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
47 (defalias 'mail-header-parse-content-disposition 'rfc2231-parse-qp-string) |
31717 | 48 (defalias 'mail-content-type-get 'rfc2231-get-value) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
49 ;(defalias 'mail-header-encode-parameter 'rfc2045-encode-string) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
50 (defalias 'mail-header-encode-parameter 'rfc2231-encode-string) |
31717 | 51 |
52 (defalias 'mail-header-remove-comments 'ietf-drums-remove-comments) | |
53 (defalias 'mail-header-remove-whitespace 'ietf-drums-remove-whitespace) | |
54 (defalias 'mail-header-strip 'ietf-drums-strip) | |
55 (defalias 'mail-header-get-comment 'ietf-drums-get-comment) | |
56 (defalias 'mail-header-parse-address 'ietf-drums-parse-address) | |
57 (defalias 'mail-header-parse-addresses 'ietf-drums-parse-addresses) | |
58 (defalias 'mail-header-parse-date 'ietf-drums-parse-date) | |
59 (defalias 'mail-narrow-to-head 'ietf-drums-narrow-to-header) | |
60 (defalias 'mail-quote-string 'ietf-drums-quote-string) | |
61 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
62 (defalias 'mail-header-fold-field 'rfc2047-fold-field) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
63 (defalias 'mail-header-unfold-field 'rfc2047-unfold-field) |
31717 | 64 (defalias 'mail-header-narrow-to-field 'rfc2047-narrow-to-field) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
65 (defalias 'mail-header-field-value 'rfc2047-field-value) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
66 |
31717 | 67 (defalias 'mail-encode-encoded-word-region 'rfc2047-encode-region) |
68 (defalias 'mail-encode-encoded-word-buffer 'rfc2047-encode-message-header) | |
69 (defalias 'mail-encode-encoded-word-string 'rfc2047-encode-string) | |
70 (defalias 'mail-decode-encoded-word-region 'rfc2047-decode-region) | |
71 (defalias 'mail-decode-encoded-word-string 'rfc2047-decode-string) | |
72 | |
73 (provide 'mail-parse) | |
74 | |
52401 | 75 ;;; arch-tag: 3e63d75c-c962-4784-ab01-7ba07ca9d2d4 |
31717 | 76 ;;; mail-parse.el ends here |