Mercurial > emacs
annotate lisp/gnus/gnus-mule.el @ 17800:ebc3066cd381
Restored code lost in merge.
author | Per Abrahamsen <abraham@dina.kvl.dk> |
---|---|
date | Wed, 14 May 1997 17:38:51 +0000 |
parents | f008897b73f0 |
children | b4a81f70d905 |
rev | line source |
---|---|
17315
a3ca5e15c82a
Fix the format of the first line.
Kenichi Handa <handa@m17n.org>
parents:
17081
diff
changeset
|
1 ;;; gnus-mule.el --- Provide multilingual environment to GNUS |
17052 | 2 |
3 ;; Copyright (C) 1995 Free Software Foundation, Inc. | |
4 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
5 | |
6 ;; Keywords: gnus, mule | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
17071 | 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. | |
17052 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; This package enables GNUS to code convert automatically | |
28 ;; accoding to a coding system specified for each news group. | |
29 ;; Please put the following line in your .emacs: | |
30 ;; (add-hook 'gnus-startup-hook 'gnus-mule-initialize) | |
31 ;; If you want to specify some coding system for a specific news | |
32 ;; group, add the fllowing line in your .emacs: | |
33 ;; (gnus-mule-add-group "xxx.yyy.zzz" 'some-coding-system) | |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
34 |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
35 ;; By default, only few news groups are registered as the target of |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
36 ;; code conversion. So, each regional users had better set an |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
37 ;; appropriate coding system for as below: |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
38 ;; (gnus-mule-add-group "" 'iso-2022-jp) ;; the case for Japanese |
17052 | 39 |
40 (require 'gnus) | |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
41 (require 'message) |
17052 | 42 |
43 (defvar gnus-newsgroup-coding-systems nil | |
44 "Assoc list of news groups vs corresponding coding systems. | |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
45 Each element is has the form (PATTERN CODING-FOR-READ . CODING-FOR-POST), |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
46 where, |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
47 PATTERN is a regular expression matching news group names, |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
48 CODING-FOR-READ is a coding system of articles of the news groups, and |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
49 CODING-FOR-POST is a coding system to be encoded for posting articles |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
50 to the news groups.") |
17052 | 51 |
52 ;;;###autoload | |
53 (defun gnus-mule-add-group (name coding-system) | |
54 "Specify that articles of news group NAME are encoded in CODING-SYSTEM. | |
55 All news groups deeper than NAME are also the target. | |
56 If CODING-SYSTEM is a cons, the car and cdr part are regarded as | |
57 coding-system for reading and writing respectively." | |
58 (if (not (consp coding-system)) | |
59 (setq coding-system (cons coding-system coding-system))) | |
60 (setq name (concat "^" (regexp-quote name))) | |
61 (let ((group (assoc name gnus-newsgroup-coding-systems))) | |
62 (if group | |
63 (setcdr group coding-system) | |
64 (setq gnus-newsgroup-coding-systems | |
65 (cons (cons name coding-system) gnus-newsgroup-coding-systems))))) | |
66 | |
67 (defun gnus-mule-get-coding-system (group) | |
68 "Return the coding system for news group GROUP." | |
69 (let ((groups gnus-newsgroup-coding-systems) | |
70 (len -1) | |
71 coding-system) | |
72 ;; Find an entry which matches GROUP the best (i.e. longest). | |
73 (while groups | |
74 (if (and (string-match (car (car groups)) group) | |
75 (> (match-end 0) len)) | |
76 (setq len (match-end 0) | |
77 coding-system (cdr (car groups)))) | |
78 (setq groups (cdr groups))) | |
79 coding-system)) | |
80 | |
81 ;; Flag to indicate if article buffer is already decoded or not.") | |
82 (defvar gnus-mule-article-decoded nil) | |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
83 ;; Coding system for reading articles of the current news group. |
17052 | 84 (defvar gnus-mule-coding-system nil) |
85 (defvar gnus-mule-subject nil) | |
86 (defvar gnus-mule-decoded-subject nil) | |
87 (defvar gnus-mule-original-subject nil) | |
88 | |
89 ;; Encode (if ENCODING is t) or decode (if ENCODING is nil) the | |
90 ;; region from START to END by CODING-SYSTEM. | |
91 (defun gnus-mule-code-convert1 (start end coding-system encoding) | |
92 (if (< start end) | |
93 (save-excursion | |
94 (if encoding | |
95 (encode-coding-region start end coding-system) | |
96 (decode-coding-region start end coding-system))))) | |
97 | |
98 ;; Encode (if ENCODING is t) or decode (if ENCODING is nil) the | |
99 ;; current buffer by CODING-SYSTEM. Try not to move positions of | |
100 ;; (window-start) and (point). | |
101 (defun gnus-mule-code-convert (coding-system encoding) | |
102 (if coding-system | |
103 (let ((win (get-buffer-window (current-buffer)))) | |
104 (if win | |
105 ;; We should keep (point) and (window-start). | |
106 (save-window-excursion | |
107 (select-window win) | |
108 (if encoding | |
109 ;; Simple way to assure point is on valid character boundary. | |
110 (beginning-of-line)) | |
111 (gnus-mule-code-convert1 (point-min) (window-start) | |
112 coding-system encoding) | |
113 (gnus-mule-code-convert1 (window-start) (point) | |
114 coding-system encoding) | |
115 (gnus-mule-code-convert1 (point) (point-max) | |
116 coding-system encoding) | |
117 (if (not (pos-visible-in-window-p)) | |
118 ;; point went out of window, move to the bottom of window. | |
119 (move-to-window-line -1))) | |
120 ;; No window for the buffer, no need to worry about (point) | |
121 ;; and (windos-start). | |
122 (gnus-mule-code-convert1 (point-min) (point-max) | |
123 coding-system encoding)) | |
124 ))) | |
125 | |
126 ;; Set `gnus-mule-coding-system' to the coding system articles of the | |
127 ;; current news group is encoded. This function is set in | |
128 ;; `gnus-select-group-hook'. | |
129 (defun gnus-mule-select-coding-system () | |
130 (let ((coding-system (gnus-mule-get-coding-system gnus-newsgroup-name))) | |
131 (setq gnus-mule-coding-system | |
132 (if (and coding-system (coding-system-p (car coding-system))) | |
133 (car coding-system))))) | |
134 | |
135 ;; Decode the current article. This function is set in | |
136 ;; `gnus-article-prepare-hook'. | |
137 (defun gnus-mule-decode-article () | |
138 (gnus-mule-code-convert gnus-mule-coding-system nil) | |
139 (setq gnus-mule-article-decoded t)) | |
140 | |
141 ;; Decode the current summary buffer. This function is set in | |
17081
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
142 ;; `gnus-summary-generate-hook'. |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
143 ;; Made by <sangil@hugsvr.kaist.ac.kr>, |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
144 ;; coded by <crisp@hugsvr.kaist.ac.kr>. |
17052 | 145 (defun gnus-mule-decode-summary () |
17081
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
146 (if gnus-mule-coding-system |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
147 (mapcar |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
148 (lambda (headers) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
149 (let ((subject (aref headers 1)) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
150 (author (aref headers 2))) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
151 (aset headers 1 |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
152 (decode-coding-string subject gnus-mule-coding-system)) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
153 (aset headers 2 |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
154 (decode-coding-string author gnus-mule-coding-system)))) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
155 gnus-newsgroup-headers))) |
17052 | 156 |
157 (defun gnus-mule-toggle-article-format () | |
158 "Toggle decoding/encoding of the current article buffer." | |
159 (interactive) | |
160 (let ((buf (get-buffer gnus-article-buffer))) | |
161 (if (and gnus-mule-coding-system buf) | |
162 (save-excursion | |
163 (set-buffer buf) | |
164 (let ((modif (buffer-modified-p)) | |
165 buffer-read-only) | |
166 (gnus-mule-code-convert gnus-mule-coding-system | |
167 gnus-mule-article-decoded) | |
168 (setq gnus-mule-article-decoded (not gnus-mule-article-decoded)) | |
169 (set-buffer-modified-p modif)))))) | |
170 | |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
171 ;; Encode a news article before sending it. |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
172 (defun gnus-mule-message-send-news-function () |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
173 (let ((groups (message-fetch-field "newsgroups")) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
174 (idx 0) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
175 coding-system coding-system-list group-list) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
176 (if (not groups) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
177 ;; We are not sending the current buffer via news. |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
178 nil |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
179 (while (string-match "[^ ,]+" groups idx) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
180 (setq idx (match-end 0)) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
181 (setq coding-system |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
182 (cdr (gnus-mule-get-coding-system |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
183 (substring groups (match-beginning 0) idx)))) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
184 (if (not (memq coding-system coding-system-list)) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
185 (setq coding-system-list (cons coding-system coding-system-list)))) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
186 (if (> (length coding-system-list) 1) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
187 (setq coding-system (read-coding-system "Coding system: "))) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
188 (if coding-system |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
189 (encode-coding-region (point-min) (point-max) coding-system))))) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
190 |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
191 ;; Encode a mail message before sending it. |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
192 (defun gnus-mule-message-send-mail-function () |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
193 (if sendmail-coding-system |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
194 (encode-coding-region (point-min) (point-max) sendmail-coding-system))) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
195 |
17052 | 196 ;;;###autoload |
197 (defun gnus-mule-initialize () | |
198 "Do several settings for GNUS to enable automatic code conversion." | |
199 ;; Convenient key definitions | |
200 (define-key gnus-article-mode-map "z" 'gnus-mule-toggle-article-format) | |
201 (define-key gnus-summary-mode-map "z" 'gnus-mule-toggle-article-format) | |
202 ;; Hook definition | |
203 (add-hook 'gnus-select-group-hook 'gnus-mule-select-coding-system) | |
17081
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
204 (add-hook 'gnus-summary-generate-hook 'gnus-mule-decode-summary) |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
205 (add-hook 'gnus-article-prepare-hook 'gnus-mule-decode-article) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
206 (add-hook 'message-send-news-hook |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
207 'gnus-mule-message-send-news-function) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
208 (add-hook 'message-send-mail-hook |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
209 'gnus-mule-message-send-mail-function)) |
17052 | 210 |
17757
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
211 (gnus-mule-add-group "" 'automatic-conversion) |
f008897b73f0
(gnus-mule-message-send-news-function): New
Kenichi Handa <handa@m17n.org>
parents:
17315
diff
changeset
|
212 (gnus-mule-add-group "fj" 'iso-2022-7) |
17081
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
213 (gnus-mule-add-group "alt.chinese.text" 'hz-gb-2312) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
214 (gnus-mule-add-group "alt.hk" 'hz-gb-2312) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
215 (gnus-mule-add-group "alt.chinese.text.big5" 'cn-big5) |
5810f3bb79d9
(gnus-mule-decode-summary): The function implemented correctly.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
216 (gnus-mule-add-group "soc.culture.vietnamese" '(nil . viqr)) |
17052 | 217 |
218 (add-hook 'gnus-startup-hook 'gnus-mule-initialize) | |
219 | |
220 ;; gnus-mule.el ends here |