Mercurial > emacs
annotate lisp/gnus/nngateway.el @ 23894:f96c37cbdeef
New file. Mule related code extracted from
ps-print.el. Require ps-print, provide ps-mule.
(ps-multibyte-buffer): Add autoload cookie.
(ps-mule-prepare-ascii-font): New fun.
(ps-mule-set-ascii-font): New fun.
(ps-mule-skip-same-charset): Fun deleted.
(ps-mule-plot-string): Set ps-mule-current-charset.
(ps-mule-initialize): Add autload cookie. Don't set
ps-mule-font-info-database here.
(ps-mule-begin-job): Renamed from ps-mule-begin. Update
ps-mule-font-info-database and ps-control-or-escape-regexp.
(ps-mule-begin-page): New fun.
Doc fix. Require ps-print only when compiled.
(ps-mule-prologue-generated): New fun.
(ps-mule-plot-string): Add autoload cookie.
(ps-mule-begin-job): Call ps-mule-prologue-generated.
Programming uniformization and little code improvement.
(ps-mule-prepare-font): Programming uniformization.
(ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
(ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
Always require ps-print. Move some function
definitions for Emacs 20.2 and the earlier to ps-print.el.
(ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
(ps-mule-begin-job): Delete nil and unknown from a
list of character sets found by find-charset-region.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 15 Dec 1998 06:38:12 +0000 |
parents | 5108cfb51c51 |
children | 15fc6acbae7a |
rev | line source |
---|---|
17493 | 1 ;;; nngateway.el --- posting news via mail gateways |
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc. | |
3 | |
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no> | |
5 ;; Keywords: news, mail | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
12 ;; any later version. | |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
23 | |
24 ;;; Commentary: | |
25 | |
26 ;;; Code: | |
27 | |
23712 | 28 (eval-when-compile (require 'cl)) |
17493 | 29 (require 'nnoo) |
30 (require 'message) | |
31 | |
32 (nnoo-declare nngateway) | |
33 | |
34 (defvoo nngateway-address nil | |
35 "Address of the mail-to-news gateway.") | |
36 | |
37 (defvoo nngateway-header-transformation 'nngateway-simple-header-transformation | |
38 "Function to be called to rewrite the news headers into mail headers. | |
39 It is called narrowed to the headers to be transformed with one | |
40 parameter -- the gateway address.") | |
41 | |
42 ;;; Interface functions | |
43 | |
44 (nnoo-define-basics nngateway) | |
45 | |
46 (deffoo nngateway-open-server (server &optional defs) | |
47 (if (nngateway-server-opened server) | |
48 t | |
49 (unless (assq 'nngateway-address defs) | |
50 (setq defs (append defs (list (list 'nngateway-address server))))) | |
51 (nnoo-change-server 'nngateway server defs))) | |
52 | |
53 (deffoo nngateway-request-post (&optional server) | |
54 (when (or (nngateway-server-opened server) | |
55 (nngateway-open-server server)) | |
56 ;; Rewrite the header. | |
57 (let ((buf (current-buffer))) | |
58 (nnheader-temp-write nil | |
59 (insert-buffer-substring buf) | |
60 (message-narrow-to-head) | |
61 (funcall nngateway-header-transformation nngateway-address) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
62 (goto-char (point-max)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
63 (insert mail-header-separator "\n") |
17493 | 64 (widen) |
65 (let (message-required-mail-headers) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
66 (funcall message-send-mail-function)))))) |
17493 | 67 |
68 ;;; Internal functions | |
69 | |
70 (defun nngateway-simple-header-transformation (gateway) | |
71 "Transform the headers to use GATEWAY." | |
72 (let ((newsgroups (mail-fetch-field "newsgroups"))) | |
73 (message-remove-header "to") | |
74 (message-remove-header "cc") | |
75 (goto-char (point-min)) | |
76 (insert "To: " (nnheader-replace-chars-in-string newsgroups ?. ?-) | |
77 "@" gateway "\n"))) | |
78 | |
79 (nnoo-define-skeleton nngateway) | |
80 | |
81 (provide 'nngateway) | |
82 | |
83 ;;; nngateway.el ends here |