Mercurial > emacs
annotate lisp/gnus/nnspool.el @ 60638:338b5a42b1f4
(DARWIN): Don't define.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Wed, 16 Mar 2005 08:10:12 +0000 |
parents | 55829134ac17 |
children | 88db2adda4b7 e24e2e78deda |
rev | line source |
---|---|
17493 | 1 ;;; nnspool.el --- spool access for GNU Emacs |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
2 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; Copyright (C) 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998, |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
4 ;; 2000, 2002, 2003 |
42531
b55b6c75a803
* nnspool.el (nnspool-request-post): Ditto.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
5 ;; Free Software Foundation, Inc. |
17493 | 6 |
7 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
8 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 9 ;; Keywords: news |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
26 ;; Boston, MA 02111-1307, USA. | |
27 | |
28 ;;; Commentary: | |
29 | |
30 ;;; Code: | |
31 | |
32 (require 'nnheader) | |
33 (require 'nntp) | |
34 (require 'nnoo) | |
35 (eval-when-compile (require 'cl)) | |
36 | |
37 (nnoo-declare nnspool) | |
38 | |
39 (defvoo nnspool-inews-program news-inews-program | |
40 "Program to post news. | |
41 This is most commonly `inews' or `injnews'.") | |
42 | |
43 (defvoo nnspool-inews-switches '("-h" "-S") | |
44 "Switches for nnspool-request-post to pass to `inews' for posting news. | |
45 If you are using Cnews, you probably should set this variable to nil.") | |
46 | |
57784
55829134ac17
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650
Miles Bader <miles@gnu.org>
parents:
57551
diff
changeset
|
47 (defvoo nnspool-spool-directory |
55829134ac17
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650
Miles Bader <miles@gnu.org>
parents:
57551
diff
changeset
|
48 (file-name-as-directory (if (boundp 'news-directory) |
55829134ac17
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650
Miles Bader <miles@gnu.org>
parents:
57551
diff
changeset
|
49 (symbol-value 'news-directory) |
55829134ac17
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-650
Miles Bader <miles@gnu.org>
parents:
57551
diff
changeset
|
50 news-path)) |
17493 | 51 "Local news spool directory.") |
52 | |
53 (defvoo nnspool-nov-directory (concat nnspool-spool-directory "over.view/") | |
54 "Local news nov directory.") | |
55 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
56 (defvoo nnspool-lib-dir |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
57 (if (file-exists-p "/usr/lib/news/active") |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
58 "/usr/lib/news/" |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
59 "/var/lib/news/") |
17493 | 60 "Where the local news library files are stored.") |
61 | |
62 (defvoo nnspool-active-file (concat nnspool-lib-dir "active") | |
63 "Local news active file.") | |
64 | |
65 (defvoo nnspool-newsgroups-file (concat nnspool-lib-dir "newsgroups") | |
66 "Local news newsgroups file.") | |
67 | |
68 (defvoo nnspool-distributions-file (concat nnspool-lib-dir "distribs.pat") | |
69 "Local news distributions file.") | |
70 | |
71 (defvoo nnspool-history-file (concat nnspool-lib-dir "history") | |
72 "Local news history file.") | |
73 | |
74 (defvoo nnspool-active-times-file (concat nnspool-lib-dir "active.times") | |
75 "Local news active date file.") | |
76 | |
77 (defvoo nnspool-large-newsgroup 50 | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
78 "The number of articles which indicates a large newsgroup. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
79 If the number of articles is greater than the value, verbose |
17493 | 80 messages will be shown to indicate the current status.") |
81 | |
82 (defvoo nnspool-nov-is-evil nil | |
83 "Non-nil means that nnspool will never return NOV lines instead of headers.") | |
84 | |
85 (defconst nnspool-sift-nov-with-sed nil | |
86 "If non-nil, use sed to get the relevant portion from the overview file. | |
87 If nil, nnspool will load the entire file into a buffer and process it | |
88 there.") | |
89 | |
90 (defvoo nnspool-rejected-article-hook nil | |
91 "*A hook that will be run when an article has been rejected by the server.") | |
92 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
93 (defvoo nnspool-file-coding-system nnheader-file-coding-system |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
94 "Coding system for nnspool.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
95 |
17493 | 96 |
97 | |
98 (defconst nnspool-version "nnspool 2.0" | |
99 "Version numbers of this version of NNSPOOL.") | |
100 | |
101 (defvoo nnspool-current-directory nil | |
102 "Current news group directory.") | |
103 | |
104 (defvoo nnspool-current-group nil) | |
105 (defvoo nnspool-status-string "") | |
106 | |
107 | |
108 ;;; Interface functions. | |
109 | |
110 (nnoo-define-basics nnspool) | |
111 | |
112 (deffoo nnspool-retrieve-headers (articles &optional group server fetch-old) | |
113 "Retrieve the headers of ARTICLES." | |
114 (save-excursion | |
115 (set-buffer nntp-server-buffer) | |
116 (erase-buffer) | |
117 (when (nnspool-possibly-change-directory group) | |
118 (let* ((number (length articles)) | |
119 (count 0) | |
120 (default-directory nnspool-current-directory) | |
121 (do-message (and (numberp nnspool-large-newsgroup) | |
122 (> number nnspool-large-newsgroup))) | |
19599
8fa15d926b32
(nnspool-file-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17493
diff
changeset
|
123 (nnheader-file-coding-system nnspool-file-coding-system) |
17493 | 124 file beg article ag) |
125 (if (and (numberp (car articles)) | |
126 (nnspool-retrieve-headers-with-nov articles fetch-old)) | |
127 ;; We successfully retrieved the NOV headers. | |
128 'nov | |
129 ;; No NOV headers here, so we do it the hard way. | |
130 (while (setq article (pop articles)) | |
131 (if (stringp article) | |
132 ;; This is a Message-ID. | |
133 (setq ag (nnspool-find-id article) | |
134 file (and ag (nnspool-article-pathname | |
135 (car ag) (cdr ag))) | |
136 article (cdr ag)) | |
137 ;; This is an article in the current group. | |
138 (setq file (int-to-string article))) | |
139 ;; Insert the head of the article. | |
140 (when (and file | |
141 (file-exists-p file)) | |
142 (insert "221 ") | |
143 (princ article (current-buffer)) | |
144 (insert " Article retrieved.\n") | |
145 (setq beg (point)) | |
146 (inline (nnheader-insert-head file)) | |
147 (goto-char beg) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
148 (if (search-forward "\n\n" nil t) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
149 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
150 (forward-char -1) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
151 (insert ".\n")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
152 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
153 (if (bolp) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
154 (insert ".\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
155 (insert "\n.\n"))) |
17493 | 156 (delete-region (point) (point-max))) |
157 | |
158 (and do-message | |
159 (zerop (% (incf count) 20)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
160 (nnheader-message 5 "nnspool: Receiving headers... %d%%" |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
161 (/ (* count 100) number)))) |
17493 | 162 |
163 (when do-message | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
164 (nnheader-message 5 "nnspool: Receiving headers...done")) |
17493 | 165 |
166 ;; Fold continuation lines. | |
167 (nnheader-fold-continuation-lines) | |
168 'headers))))) | |
169 | |
170 (deffoo nnspool-open-server (server &optional defs) | |
171 (nnoo-change-server 'nnspool server defs) | |
172 (cond | |
173 ((not (file-exists-p nnspool-spool-directory)) | |
174 (nnspool-close-server) | |
175 (nnheader-report 'nnspool "Spool directory doesn't exist: %s" | |
176 nnspool-spool-directory)) | |
177 ((not (file-directory-p | |
178 (directory-file-name | |
179 (file-truename nnspool-spool-directory)))) | |
180 (nnspool-close-server) | |
181 (nnheader-report 'nnspool "Not a directory: %s" nnspool-spool-directory)) | |
182 ((not (file-exists-p nnspool-active-file)) | |
183 (nnheader-report 'nnspool "The active file doesn't exist: %s" | |
184 nnspool-active-file)) | |
185 (t | |
186 (nnheader-report 'nnspool "Opened server %s using directory %s" | |
187 server nnspool-spool-directory) | |
188 t))) | |
189 | |
190 (deffoo nnspool-request-article (id &optional group server buffer) | |
191 "Select article by message ID (or number)." | |
192 (nnspool-possibly-change-directory group) | |
193 (let ((nntp-server-buffer (or buffer nntp-server-buffer)) | |
194 file ag) | |
195 (if (stringp id) | |
196 ;; This is a Message-ID. | |
197 (when (setq ag (nnspool-find-id id)) | |
198 (setq file (nnspool-article-pathname (car ag) (cdr ag)))) | |
199 (setq file (nnspool-article-pathname nnspool-current-group id))) | |
200 (and file | |
201 (file-exists-p file) | |
202 (not (file-directory-p file)) | |
203 (save-excursion (nnspool-find-file file)) | |
204 ;; We return the article number and group name. | |
205 (if (numberp id) | |
206 (cons nnspool-current-group id) | |
207 ag)))) | |
208 | |
209 (deffoo nnspool-request-body (id &optional group server) | |
210 "Select article body by message ID (or number)." | |
211 (nnspool-possibly-change-directory group) | |
212 (let ((res (nnspool-request-article id))) | |
213 (when res | |
214 (save-excursion | |
215 (set-buffer nntp-server-buffer) | |
216 (goto-char (point-min)) | |
217 (when (search-forward "\n\n" nil t) | |
218 (delete-region (point-min) (point))) | |
219 res)))) | |
220 | |
221 (deffoo nnspool-request-head (id &optional group server) | |
222 "Select article head by message ID (or number)." | |
223 (nnspool-possibly-change-directory group) | |
224 (let ((res (nnspool-request-article id))) | |
225 (when res | |
226 (save-excursion | |
227 (set-buffer nntp-server-buffer) | |
228 (goto-char (point-min)) | |
229 (when (search-forward "\n\n" nil t) | |
230 (delete-region (1- (point)) (point-max))) | |
231 (nnheader-fold-continuation-lines))) | |
232 res)) | |
233 | |
234 (deffoo nnspool-request-group (group &optional server dont-check) | |
235 "Select news GROUP." | |
236 (let ((pathname (nnspool-article-pathname group)) | |
237 dir) | |
238 (if (not (file-directory-p pathname)) | |
239 (nnheader-report | |
240 'nnspool "Invalid group name (no such directory): %s" group) | |
241 (setq nnspool-current-directory pathname) | |
242 (nnheader-report 'nnspool "Selected group %s" group) | |
243 (if dont-check | |
244 (progn | |
245 (nnheader-report 'nnspool "Selected group %s" group) | |
246 t) | |
247 ;; Yes, completely empty spool directories *are* possible. | |
248 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu> | |
249 (when (setq dir (directory-files pathname nil "^[0-9]+$" t)) | |
250 (setq dir | |
251 (sort (mapcar (lambda (name) (string-to-int name)) dir) '<))) | |
252 (if dir | |
253 (nnheader-insert | |
254 "211 %d %d %d %s\n" (length dir) (car dir) | |
255 (progn (while (cdr dir) (setq dir (cdr dir))) (car dir)) | |
256 group) | |
257 (nnheader-report 'nnspool "Empty group %s" group) | |
258 (nnheader-insert "211 0 0 0 %s\n" group)))))) | |
259 | |
260 (deffoo nnspool-request-type (group &optional article) | |
261 'news) | |
262 | |
263 (deffoo nnspool-close-group (group &optional server) | |
264 t) | |
265 | |
266 (deffoo nnspool-request-list (&optional server) | |
267 "List active newsgroups." | |
268 (save-excursion | |
269 (or (nnspool-find-file nnspool-active-file) | |
270 (nnheader-report 'nnspool (nnheader-file-error nnspool-active-file))))) | |
271 | |
272 (deffoo nnspool-request-list-newsgroups (&optional server) | |
273 "List newsgroups (defined in NNTP2)." | |
274 (save-excursion | |
275 (or (nnspool-find-file nnspool-newsgroups-file) | |
276 (nnheader-report 'nnspool (nnheader-file-error | |
277 nnspool-newsgroups-file))))) | |
278 | |
279 (deffoo nnspool-request-list-distributions (&optional server) | |
280 "List distributions (defined in NNTP2)." | |
281 (save-excursion | |
282 (or (nnspool-find-file nnspool-distributions-file) | |
283 (nnheader-report 'nnspool (nnheader-file-error | |
284 nnspool-distributions-file))))) | |
285 | |
286 ;; Suggested by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>. | |
287 (deffoo nnspool-request-newgroups (date &optional server) | |
288 "List groups created after DATE." | |
289 (if (nnspool-find-file nnspool-active-times-file) | |
290 (save-excursion | |
291 ;; Find the last valid line. | |
292 (goto-char (point-max)) | |
293 (while (and (not (looking-at | |
294 "\\([^ ]+\\) +\\([0-9]+\\)[0-9][0-9][0-9] ")) | |
295 (zerop (forward-line -1)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
296 (let ((seconds (time-to-seconds (date-to-time date))) |
17493 | 297 groups) |
298 ;; Go through lines and add the latest groups to a list. | |
299 (while (and (looking-at "\\([^ ]+\\) +[0-9]+ ") | |
300 (progn | |
301 ;; We insert a .0 to make the list reader | |
302 ;; interpret the number as a float. It is far | |
303 ;; too big to be stored in a lisp integer. | |
304 (goto-char (1- (match-end 0))) | |
305 (insert ".0") | |
306 (> (progn | |
307 (goto-char (match-end 1)) | |
308 (read (current-buffer))) | |
309 seconds)) | |
310 (push (buffer-substring | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
311 (match-beginning 1) (match-end 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
312 groups) |
17493 | 313 (zerop (forward-line -1)))) |
314 (erase-buffer) | |
315 (while groups | |
316 (insert (car groups) " 0 0 y\n") | |
317 (setq groups (cdr groups)))) | |
318 t) | |
319 nil)) | |
320 | |
321 (deffoo nnspool-request-post (&optional server) | |
322 "Post a new news in current buffer." | |
323 (save-excursion | |
324 (let* ((process-connection-type nil) ; t bugs out on Solaris | |
325 (inews-buffer (generate-new-buffer " *nnspool post*")) | |
326 (proc | |
327 (condition-case err | |
328 (apply 'start-process "*nnspool inews*" inews-buffer | |
329 nnspool-inews-program nnspool-inews-switches) | |
330 (error | |
331 (nnheader-report 'nnspool "inews error: %S" err))))) | |
332 (if (not proc) | |
333 ;; The inews program failed. | |
334 () | |
335 (nnheader-report 'nnspool "") | |
336 (set-process-sentinel proc 'nnspool-inews-sentinel) | |
42531
b55b6c75a803
* nnspool.el (nnspool-request-post): Ditto.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
337 (mm-with-unibyte-current-buffer |
b55b6c75a803
* nnspool.el (nnspool-request-post): Ditto.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
31716
diff
changeset
|
338 (process-send-region proc (point-min) (point-max))) |
17493 | 339 ;; We slap a condition-case around this, because the process may |
340 ;; have exited already... | |
341 (ignore-errors | |
342 (process-send-eof proc)) | |
343 t)))) | |
344 | |
345 | |
346 | |
347 ;;; Internal functions. | |
348 | |
349 (defun nnspool-inews-sentinel (proc status) | |
350 (save-excursion | |
351 (set-buffer (process-buffer proc)) | |
352 (goto-char (point-min)) | |
353 (if (or (zerop (buffer-size)) | |
354 (search-forward "spooled" nil t)) | |
355 (kill-buffer (current-buffer)) | |
356 ;; Make status message by folding lines. | |
357 (while (re-search-forward "[ \t\n]+" nil t) | |
358 (replace-match " " t t)) | |
359 (nnheader-report 'nnspool "%s" (buffer-string)) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19599
diff
changeset
|
360 (nnheader-message 5 "nnspool: %s" nnspool-status-string) |
17493 | 361 (ding) |
362 (run-hooks 'nnspool-rejected-article-hook)))) | |
363 | |
364 (defun nnspool-retrieve-headers-with-nov (articles &optional fetch-old) | |
365 (if (or gnus-nov-is-evil nnspool-nov-is-evil) | |
366 nil | |
367 (let ((nov (nnheader-group-pathname | |
368 nnspool-current-group nnspool-nov-directory ".overview")) | |
369 (arts articles) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
370 (nnheader-file-coding-system nnspool-file-coding-system) |
17493 | 371 last) |
372 (if (not (file-exists-p nov)) | |
373 () | |
374 (save-excursion | |
375 (set-buffer nntp-server-buffer) | |
376 (erase-buffer) | |
377 (if nnspool-sift-nov-with-sed | |
378 (nnspool-sift-nov-with-sed articles nov) | |
379 (nnheader-insert-file-contents nov) | |
380 (if (and fetch-old | |
381 (not (numberp fetch-old))) | |
382 t ; We want all the headers. | |
383 (ignore-errors | |
384 ;; Delete unwanted NOV lines. | |
385 (nnheader-nov-delete-outside-range | |
386 (if fetch-old (max 1 (- (car articles) fetch-old)) | |
387 (car articles)) | |
388 (car (last articles))) | |
389 ;; If the buffer is empty, this wasn't very successful. | |
390 (unless (zerop (buffer-size)) | |
391 ;; We check what the last article number was. | |
392 ;; The NOV file may be out of sync with the articles | |
393 ;; in the group. | |
394 (forward-line -1) | |
395 (setq last (read (current-buffer))) | |
396 (if (= last (car articles)) | |
397 ;; Yup, it's all there. | |
398 t | |
399 ;; Perhaps not. We try to find the missing articles. | |
400 (while (and arts | |
401 (<= last (car arts))) | |
402 (pop arts)) | |
403 ;; The articles in `arts' are missing from the buffer. | |
404 (while arts | |
405 (nnspool-insert-nov-head (pop arts))) | |
406 t)))))))))) | |
407 | |
408 (defun nnspool-insert-nov-head (article) | |
409 "Read the head of ARTICLE, convert to NOV headers, and insert." | |
410 (save-excursion | |
411 (let ((cur (current-buffer)) | |
412 buf) | |
413 (setq buf (nnheader-set-temp-buffer " *nnspool head*")) | |
414 (when (nnheader-insert-head | |
415 (nnspool-article-pathname nnspool-current-group article)) | |
416 (nnheader-insert-article-line article) | |
417 (let ((headers (nnheader-parse-head))) | |
418 (set-buffer cur) | |
419 (goto-char (point-max)) | |
420 (nnheader-insert-nov headers))) | |
421 (kill-buffer buf)))) | |
422 | |
423 (defun nnspool-sift-nov-with-sed (articles file) | |
424 (let ((first (car articles)) | |
425 (last (progn (while (cdr articles) (setq articles (cdr articles))) | |
426 (car articles)))) | |
427 (call-process "awk" nil t nil | |
428 (format "BEGIN {firstmsg=%d; lastmsg=%d;}\n $1 >= firstmsg && $1 <= lastmsg {print;}" | |
429 (1- first) (1+ last)) | |
430 file))) | |
431 | |
432 ;; Fixed by fdc@cliwe.ping.de (Frank D. Cringle). | |
433 ;; Find out what group an article identified by a Message-ID is in. | |
434 (defun nnspool-find-id (id) | |
435 (save-excursion | |
436 (set-buffer (get-buffer-create " *nnspool work*")) | |
437 (erase-buffer) | |
438 (ignore-errors | |
439 (call-process "grep" nil t nil (regexp-quote id) nnspool-history-file)) | |
440 (goto-char (point-min)) | |
441 (prog1 | |
442 (when (looking-at "<[^>]+>[ \t]+[-0-9~]+[ \t]+\\([^ /\t\n]+\\)/\\([0-9]+\\)[ \t\n]") | |
443 (cons (match-string 1) (string-to-int (match-string 2)))) | |
444 (kill-buffer (current-buffer))))) | |
445 | |
446 (defun nnspool-find-file (file) | |
447 "Insert FILE in server buffer safely." | |
448 (set-buffer nntp-server-buffer) | |
449 (erase-buffer) | |
450 (condition-case () | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
451 (let ((coding-system-for-read nnspool-file-coding-system)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
452 (mm-insert-file-contents file) |
19599
8fa15d926b32
(nnspool-file-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
17493
diff
changeset
|
453 t) |
17493 | 454 (file-error nil))) |
455 | |
456 (defun nnspool-possibly-change-directory (group) | |
457 (if (not group) | |
458 t | |
459 (let ((pathname (nnspool-article-pathname group))) | |
460 (if (file-directory-p pathname) | |
461 (setq nnspool-current-directory pathname | |
462 nnspool-current-group group) | |
463 (nnheader-report 'nnspool "No such newsgroup: %s" group))))) | |
464 | |
465 (defun nnspool-article-pathname (group &optional article) | |
49274
eb2699620e9c
* gnus-agent.el: Don't use `path'.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
42531
diff
changeset
|
466 "Find the file name for GROUP." |
17493 | 467 (nnheader-group-pathname group nnspool-spool-directory article)) |
468 | |
469 (provide 'nnspool) | |
470 | |
52401 | 471 ;;; arch-tag: bdac8d27-2934-4eee-bad0-49e6b90c0d05 |
17493 | 472 ;;; nnspool.el ends here |