Mercurial > emacs
annotate lisp/gnus/gnus-bcklg.el @ 30793:ea6025935730
(Authors): New node.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 15 Aug 2000 08:23:20 +0000 |
parents | 15fc6acbae7a |
children | 9968f55ad26e |
rev | line source |
---|---|
17493 | 1 ;;; gnus-bcklg.el --- backlog functions for Gnus |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
2 ;; Copyright (C) 1996,97,98 Free Software Foundation, Inc. |
17493 | 3 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 5 ;; Keywords: news |
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 | |
19493
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
28 (eval-when-compile (require 'cl)) |
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
29 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
30 (eval-when-compile (require 'cl)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
31 |
17493 | 32 (require 'gnus) |
33 | |
34 ;;; | |
35 ;;; Buffering of read articles. | |
36 ;;; | |
37 | |
38 (defvar gnus-backlog-buffer " *Gnus Backlog*") | |
39 (defvar gnus-backlog-articles nil) | |
40 (defvar gnus-backlog-hashtb nil) | |
41 | |
42 (defun gnus-backlog-buffer () | |
43 "Return the backlog buffer." | |
44 (or (get-buffer gnus-backlog-buffer) | |
45 (save-excursion | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
46 (set-buffer (gnus-get-buffer-create gnus-backlog-buffer)) |
17493 | 47 (buffer-disable-undo (current-buffer)) |
48 (setq buffer-read-only t) | |
49 (get-buffer gnus-backlog-buffer)))) | |
50 | |
51 (defun gnus-backlog-setup () | |
52 "Initialize backlog variables." | |
53 (unless gnus-backlog-hashtb | |
54 (setq gnus-backlog-hashtb (gnus-make-hashtable 1024)))) | |
55 | |
56 (gnus-add-shutdown 'gnus-backlog-shutdown 'gnus) | |
57 | |
58 (defun gnus-backlog-shutdown () | |
59 "Clear all backlog variables and buffers." | |
60 (when (get-buffer gnus-backlog-buffer) | |
61 (kill-buffer gnus-backlog-buffer)) | |
62 (setq gnus-backlog-hashtb nil | |
63 gnus-backlog-articles nil)) | |
64 | |
65 (defun gnus-backlog-enter-article (group number buffer) | |
66 (gnus-backlog-setup) | |
67 (let ((ident (intern (concat group ":" (int-to-string number)) | |
68 gnus-backlog-hashtb)) | |
69 b) | |
70 (if (memq ident gnus-backlog-articles) | |
71 () ; It's already kept. | |
72 ;; Remove the oldest article, if necessary. | |
73 (and (numberp gnus-keep-backlog) | |
74 (>= (length gnus-backlog-articles) gnus-keep-backlog) | |
75 (gnus-backlog-remove-oldest-article)) | |
76 (push ident gnus-backlog-articles) | |
77 ;; Insert the new article. | |
78 (save-excursion | |
79 (set-buffer (gnus-backlog-buffer)) | |
80 (let (buffer-read-only) | |
81 (goto-char (point-max)) | |
82 (unless (bolp) | |
83 (insert "\n")) | |
84 (setq b (point)) | |
85 (insert-buffer-substring buffer) | |
86 ;; Tag the beginning of the article with the ident. | |
87 (gnus-put-text-property b (1+ b) 'gnus-backlog ident)))))) | |
88 | |
89 (defun gnus-backlog-remove-oldest-article () | |
90 (save-excursion | |
91 (set-buffer (gnus-backlog-buffer)) | |
92 (goto-char (point-min)) | |
93 (if (zerop (buffer-size)) | |
94 () ; The buffer is empty. | |
95 (let ((ident (get-text-property (point) 'gnus-backlog)) | |
96 buffer-read-only) | |
97 ;; Remove the ident from the list of articles. | |
98 (when ident | |
99 (setq gnus-backlog-articles (delq ident gnus-backlog-articles))) | |
100 ;; Delete the article itself. | |
101 (delete-region | |
102 (point) (next-single-property-change | |
103 (1+ (point)) 'gnus-backlog nil (point-max))))))) | |
104 | |
105 (defun gnus-backlog-remove-article (group number) | |
106 "Remove article NUMBER in GROUP from the backlog." | |
107 (when (numberp number) | |
108 (gnus-backlog-setup) | |
109 (let ((ident (intern (concat group ":" (int-to-string number)) | |
110 gnus-backlog-hashtb)) | |
111 beg end) | |
112 (when (memq ident gnus-backlog-articles) | |
113 ;; It was in the backlog. | |
114 (save-excursion | |
115 (set-buffer (gnus-backlog-buffer)) | |
116 (let (buffer-read-only) | |
117 (when (setq beg (text-property-any | |
118 (point-min) (point-max) 'gnus-backlog | |
119 ident)) | |
120 ;; Find the end (i. e., the beginning of the next article). | |
121 (setq end | |
122 (next-single-property-change | |
123 (1+ beg) 'gnus-backlog (current-buffer) (point-max))) | |
124 (delete-region beg end) | |
125 ;; Return success. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
126 t)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
127 (setq gnus-backlog-articles (delq ident gnus-backlog-articles))))))) |
17493 | 128 |
129 (defun gnus-backlog-request-article (group number buffer) | |
130 (when (numberp number) | |
131 (gnus-backlog-setup) | |
132 (let ((ident (intern (concat group ":" (int-to-string number)) | |
133 gnus-backlog-hashtb)) | |
134 beg end) | |
135 (when (memq ident gnus-backlog-articles) | |
136 ;; It was in the backlog. | |
137 (save-excursion | |
138 (set-buffer (gnus-backlog-buffer)) | |
139 (if (not (setq beg (text-property-any | |
140 (point-min) (point-max) 'gnus-backlog | |
141 ident))) | |
142 ;; It wasn't in the backlog after all. | |
143 (ignore | |
144 (setq gnus-backlog-articles (delq ident gnus-backlog-articles))) | |
145 ;; Find the end (i. e., the beginning of the next article). | |
146 (setq end | |
147 (next-single-property-change | |
148 (1+ beg) 'gnus-backlog (current-buffer) (point-max))))) | |
149 (let ((buffer-read-only nil)) | |
150 (erase-buffer) | |
151 (insert-buffer-substring gnus-backlog-buffer beg end) | |
152 t))))) | |
153 | |
154 (provide 'gnus-bcklg) | |
155 | |
156 ;;; gnus-bcklg.el ends here |