Mercurial > emacs
annotate lisp/gnus/gnus-dup.el @ 31546:09bc2badb9e6
(quail-translation-docstring): New variable.
(quail-show-keyboard-layout): Docstring modified.
(quail-select-current): Likewise.
(quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
infinite recursive call.
(quail-help): Check quail-translation-docstring. Format of the
output changed.
(quail-help-insert-keymap-description): Adjusted for the above
change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 11 Sep 2000 23:38:47 +0000 |
parents | 15fc6acbae7a |
children | 9968f55ad26e |
rev | line source |
---|---|
17493 | 1 ;;; gnus-dup.el --- suppression of duplicate articles in 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 ;; This package tries to mark articles as read the second time the | |
27 ;; user reads a copy. This is useful if the server doesn't support | |
28 ;; Xref properly, or if the user reads the same group from several | |
29 ;; servers. | |
30 | |
31 ;;; Code: | |
32 | |
19493
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
33 (eval-when-compile (require 'cl)) |
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
34 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
35 (eval-when-compile (require 'cl)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
36 |
17493 | 37 (require 'gnus) |
38 (require 'gnus-art) | |
39 | |
40 (defgroup gnus-duplicate nil | |
41 "Suppression of duplicate articles." | |
42 :group 'gnus) | |
43 | |
44 (defcustom gnus-save-duplicate-list nil | |
45 "*If non-nil, save the duplicate list when shutting down Gnus. | |
46 If nil, duplicate suppression will only work on duplicates | |
47 seen in the same session." | |
48 :group 'gnus-duplicate | |
49 :type 'boolean) | |
50 | |
51 (defcustom gnus-duplicate-list-length 10000 | |
52 "*The number of Message-IDs to keep in the duplicate suppression list." | |
53 :group 'gnus-duplicate | |
54 :type 'integer) | |
55 | |
56 (defcustom gnus-duplicate-file (nnheader-concat gnus-directory "suppression") | |
57 "*The name of the file to store the duplicate suppression list." | |
58 :group 'gnus-duplicate | |
59 :type 'file) | |
60 | |
61 ;;; Internal variables | |
62 | |
63 (defvar gnus-dup-list nil) | |
64 (defvar gnus-dup-hashtb nil) | |
65 | |
66 (defvar gnus-dup-list-dirty nil) | |
67 | |
68 ;;; | |
69 ;;; Starting and stopping | |
70 ;;; | |
71 | |
72 (gnus-add-shutdown 'gnus-dup-close 'gnus) | |
73 | |
74 (defun gnus-dup-close () | |
75 "Possibly save the duplicate suppression list and shut down the subsystem." | |
76 (gnus-dup-save) | |
77 (setq gnus-dup-list nil | |
78 gnus-dup-hashtb nil | |
79 gnus-dup-list-dirty nil)) | |
80 | |
81 (defun gnus-dup-open () | |
82 "Possibly read the duplicate suppression list and start the subsystem." | |
83 (if gnus-save-duplicate-list | |
84 (gnus-dup-read) | |
85 (setq gnus-dup-list nil)) | |
86 (setq gnus-dup-hashtb (gnus-make-hashtable gnus-duplicate-list-length)) | |
87 ;; Enter all Message-IDs into the hash table. | |
88 (let ((list gnus-dup-list) | |
89 (obarray gnus-dup-hashtb)) | |
90 (while list | |
91 (intern (pop list))))) | |
92 | |
93 (defun gnus-dup-read () | |
94 "Read the duplicate suppression list." | |
95 (setq gnus-dup-list nil) | |
96 (when (file-exists-p gnus-duplicate-file) | |
97 (load gnus-duplicate-file t t t))) | |
98 | |
99 (defun gnus-dup-save () | |
100 "Save the duplicate suppression list." | |
101 (when (and gnus-save-duplicate-list | |
102 gnus-dup-list-dirty) | |
103 (nnheader-temp-write gnus-duplicate-file | |
104 (gnus-prin1 `(setq gnus-dup-list ',gnus-dup-list)))) | |
105 (setq gnus-dup-list-dirty nil)) | |
106 | |
107 ;;; | |
108 ;;; Interface functions | |
109 ;;; | |
110 | |
111 (defun gnus-dup-enter-articles () | |
112 "Enter articles from the current group for future duplicate suppression." | |
113 (unless gnus-dup-list | |
114 (gnus-dup-open)) | |
115 (setq gnus-dup-list-dirty t) ; mark list for saving | |
116 (let ((data gnus-newsgroup-data) | |
117 datum msgid) | |
118 ;; Enter the Message-IDs of all read articles into the list | |
119 ;; and hash table. | |
120 (while (setq datum (pop data)) | |
121 (when (and (not (gnus-data-pseudo-p datum)) | |
122 (> (gnus-data-number datum) 0) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
123 (not (memq (gnus-data-number datum) gnus-newsgroup-unreads)) |
17493 | 124 (not (= (gnus-data-mark datum) gnus-canceled-mark)) |
125 (setq msgid (mail-header-id (gnus-data-header datum))) | |
126 (not (nnheader-fake-message-id-p msgid)) | |
127 (not (intern-soft msgid gnus-dup-hashtb))) | |
128 (push msgid gnus-dup-list) | |
129 (intern msgid gnus-dup-hashtb)))) | |
130 ;; Chop off excess Message-IDs from the list. | |
131 (let ((end (nthcdr gnus-duplicate-list-length gnus-dup-list))) | |
132 (when end | |
133 (setcdr end nil)))) | |
134 | |
135 (defun gnus-dup-suppress-articles () | |
136 "Mark duplicate articles as read." | |
137 (unless gnus-dup-list | |
138 (gnus-dup-open)) | |
139 (gnus-message 6 "Suppressing duplicates...") | |
140 (let ((headers gnus-newsgroup-headers) | |
141 number header) | |
142 (while (setq header (pop headers)) | |
143 (when (and (intern-soft (mail-header-id header) gnus-dup-hashtb) | |
144 (gnus-summary-article-unread-p (mail-header-number header))) | |
145 (setq gnus-newsgroup-unreads | |
146 (delq (setq number (mail-header-number header)) | |
147 gnus-newsgroup-unreads)) | |
148 (push (cons number gnus-duplicate-mark) | |
149 gnus-newsgroup-reads)))) | |
150 (gnus-message 6 "Suppressing duplicates...done")) | |
151 | |
152 (defun gnus-dup-unsuppress-article (article) | |
153 "Stop suppression of ARTICLE." | |
154 (let ((id (mail-header-id (gnus-data-header (gnus-data-find article))))) | |
155 (when id | |
156 (setq gnus-dup-list-dirty t) | |
157 (setq gnus-dup-list (delete id gnus-dup-list)) | |
158 (unintern id gnus-dup-hashtb)))) | |
159 | |
160 (provide 'gnus-dup) | |
161 | |
162 ;;; gnus-dup.el ends here |