Mercurial > emacs
annotate lisp/gnus/gnus-logic.el @ 77726:f0732d60c635
(magic-mode-alist, magic-fallback-mode-alist):
Move the *ml, Postscript, and XmCD entries to the fallback part.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 16 May 2007 16:13:12 +0000 |
parents | e3694f1cb928 |
children | 24202b793a08 95d0cdf160ea |
rev | line source |
---|---|
17493 | 1 ;;; gnus-logic.el --- advanced scoring code for Gnus |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
2 |
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19521
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
17493 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
19521
6f6cf9184e93
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
30 (eval-when-compile (require 'cl)) |
6f6cf9184e93
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
31 |
17493 | 32 (require 'gnus) |
33 (require 'gnus-score) | |
34 (require 'gnus-util) | |
35 | |
36 ;;; Internal variables. | |
37 | |
38 (defvar gnus-advanced-headers nil) | |
39 | |
40 ;; To avoid having 8-bit characters in the source file. | |
41 (defvar gnus-advanced-not (intern (format "%c" 172))) | |
42 | |
43 (defconst gnus-advanced-index | |
44 ;; Name to index alist. | |
45 '(("number" 0 gnus-advanced-integer) | |
46 ("subject" 1 gnus-advanced-string) | |
47 ("from" 2 gnus-advanced-string) | |
48 ("date" 3 gnus-advanced-date) | |
49 ("message-id" 4 gnus-advanced-string) | |
50 ("references" 5 gnus-advanced-string) | |
51 ("chars" 6 gnus-advanced-integer) | |
52 ("lines" 7 gnus-advanced-integer) | |
53 ("xref" 8 gnus-advanced-string) | |
54 ("head" nil gnus-advanced-body) | |
55 ("body" nil gnus-advanced-body) | |
56 ("all" nil gnus-advanced-body))) | |
57 | |
58 (eval-and-compile | |
59 (autoload 'parse-time-string "parse-time")) | |
60 | |
61 (defun gnus-score-advanced (rule &optional trace) | |
62 "Apply advanced scoring RULE to all the articles in the current group." | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
63 (let (new-score score multiple) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
64 (dolist (gnus-advanced-headers gnus-newsgroup-headers) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
65 (when (setq multiple (gnus-advanced-score-rule (car rule))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
66 (setq new-score (or (nth 1 rule) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
67 gnus-score-interactive-default-score)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
68 (when (numberp multiple) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
69 (setq new-score (* multiple new-score))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
70 ;; This rule was successful, so we add the score to this |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
71 ;; article. |
17493 | 72 (if (setq score (assq (mail-header-number gnus-advanced-headers) |
73 gnus-newsgroup-scored)) | |
74 (setcdr score | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
75 (+ (cdr score) new-score)) |
17493 | 76 (push (cons (mail-header-number gnus-advanced-headers) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
77 new-score) |
17493 | 78 gnus-newsgroup-scored) |
79 (when trace | |
80 (push (cons "A file" rule) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
81 ;; Must be synced with `gnus-score-edit-file-at-point'. |
17493 | 82 gnus-score-trace))))))) |
83 | |
84 (defun gnus-advanced-score-rule (rule) | |
85 "Apply RULE to `gnus-advanced-headers'." | |
86 (let ((type (car rule))) | |
87 (cond | |
88 ;; "And" rule. | |
89 ((or (eq type '&) (eq type 'and)) | |
90 (pop rule) | |
91 (if (not rule) | |
92 t ; Empty rule is true. | |
93 (while (and rule | |
94 (gnus-advanced-score-rule (car rule))) | |
95 (pop rule)) | |
96 ;; If all the rules were true, then `rule' should be nil. | |
97 (not rule))) | |
98 ;; "Or" rule. | |
99 ((or (eq type '|) (eq type 'or)) | |
100 (pop rule) | |
101 (if (not rule) | |
102 nil | |
103 (while (and rule | |
104 (not (gnus-advanced-score-rule (car rule)))) | |
105 (pop rule)) | |
106 ;; If one of the rules returned true, then `rule' should be non-nil. | |
107 rule)) | |
108 ;; "Not" rule. | |
109 ((or (eq type '!) (eq type 'not) (eq type gnus-advanced-not)) | |
110 (not (gnus-advanced-score-rule (nth 1 rule)))) | |
111 ;; This is a `1-'-type redirection rule. | |
112 ((and (symbolp type) | |
113 (string-match "^[0-9]+-$\\|^\\^+$" (symbol-name type))) | |
114 (let ((gnus-advanced-headers | |
115 (gnus-parent-headers | |
116 gnus-advanced-headers | |
117 (if (string-match "^\\([0-9]+\\)-$" (symbol-name type)) | |
118 ;; 1- type redirection. | |
119 (string-to-number | |
120 (substring (symbol-name type) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
121 (match-beginning 1) (match-end 1))) |
17493 | 122 ;; ^^^ type redirection. |
123 (length (symbol-name type)))))) | |
124 (when gnus-advanced-headers | |
125 (gnus-advanced-score-rule (nth 1 rule))))) | |
126 ;; Plain scoring rule. | |
127 ((stringp type) | |
128 (gnus-advanced-score-article rule)) | |
129 ;; Bug-out time! | |
130 (t | |
131 (error "Unknown advanced score type: %s" rule))))) | |
132 | |
133 (defun gnus-advanced-score-article (rule) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
134 ;; `rule' is a semi-normal score rule, so we find out what function |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
135 ;; that's supposed to do the actual processing. |
17493 | 136 (let* ((header (car rule)) |
137 (func (assoc (downcase header) gnus-advanced-index))) | |
138 (if (not func) | |
139 (error "No such header: %s" rule) | |
140 ;; Call the score function. | |
141 (funcall (caddr func) (or (cadr func) header) | |
142 (cadr rule) (caddr rule))))) | |
143 | |
144 (defun gnus-advanced-string (index match type) | |
145 "See whether string MATCH of TYPE matches `gnus-advanced-headers' in INDEX." | |
146 (let* ((type (or type 's)) | |
147 (case-fold-search (not (eq (downcase (symbol-name type)) | |
148 (symbol-name type)))) | |
33268
88bece18cf0d
2000-10-07 15:42:59 ShengHuo ZHU <zsh@cs.rochester.edu>
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
149 (header (or (aref gnus-advanced-headers index) ""))) |
17493 | 150 (cond |
151 ((memq type '(r R regexp Regexp)) | |
152 (string-match match header)) | |
153 ((memq type '(s S string String)) | |
154 (string-match (regexp-quote match) header)) | |
155 ((memq type '(e E exact Exact)) | |
156 (string= match header)) | |
157 ((memq type '(f F fuzzy Fuzzy)) | |
158 (string-match (regexp-quote (gnus-simplify-subject-fuzzy match)) | |
159 header)) | |
160 (t | |
161 (error "No such string match type: %s" type))))) | |
162 | |
163 (defun gnus-advanced-integer (index match type) | |
164 (if (not (memq type '(< > <= >= =))) | |
165 (error "No such integer score type: %s" type) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
166 (funcall type (or (aref gnus-advanced-headers index) 0) match))) |
17493 | 167 |
168 (defun gnus-advanced-date (index match type) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19521
diff
changeset
|
169 (let ((date (apply 'encode-time (parse-time-string |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19521
diff
changeset
|
170 (aref gnus-advanced-headers index)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19521
diff
changeset
|
171 (match (apply 'encode-time (parse-time-string match)))) |
17493 | 172 (cond |
173 ((eq type 'at) | |
174 (equal date match)) | |
175 ((eq type 'before) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
176 (time-less-p match date)) |
17493 | 177 ((eq type 'after) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
178 (time-less-p date match)) |
17493 | 179 (t |
180 (error "No such date score type: %s" type))))) | |
181 | |
182 (defun gnus-advanced-body (header match type) | |
183 (when (string= header "all") | |
184 (setq header "article")) | |
185 (save-excursion | |
186 (set-buffer nntp-server-buffer) | |
187 (let* ((request-func (cond ((string= "head" header) | |
188 'gnus-request-head) | |
189 ((string= "body" header) | |
190 'gnus-request-body) | |
191 (t 'gnus-request-article))) | |
192 ofunc article) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
193 ;; Not all backends support partial fetching. In that case, we |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
194 ;; just fetch the entire article. |
17493 | 195 (unless (gnus-check-backend-function |
196 (intern (concat "request-" header)) | |
197 gnus-newsgroup-name) | |
198 (setq ofunc request-func) | |
199 (setq request-func 'gnus-request-article)) | |
200 (setq article (mail-header-number gnus-advanced-headers)) | |
201 (gnus-message 7 "Scoring article %s..." article) | |
202 (when (funcall request-func article gnus-newsgroup-name) | |
203 (goto-char (point-min)) | |
204 ;; If just parts of the article is to be searched and the | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
205 ;; backend didn't support partial fetching, we just narrow to |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
206 ;; the relevant parts. |
17493 | 207 (when ofunc |
208 (if (eq ofunc 'gnus-request-head) | |
209 (narrow-to-region | |
210 (point) | |
211 (or (search-forward "\n\n" nil t) (point-max))) | |
212 (narrow-to-region | |
213 (or (search-forward "\n\n" nil t) (point)) | |
214 (point-max)))) | |
215 (let* ((case-fold-search (not (eq (downcase (symbol-name type)) | |
216 (symbol-name type)))) | |
217 (search-func | |
218 (cond ((memq type '(r R regexp Regexp)) | |
219 're-search-forward) | |
220 ((memq type '(s S string String)) | |
221 'search-forward) | |
222 (t | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
223 (error "Invalid match type: %s" type))))) |
17493 | 224 (goto-char (point-min)) |
225 (prog1 | |
226 (funcall search-func match nil t) | |
227 (widen))))))) | |
228 | |
229 (provide 'gnus-logic) | |
230 | |
52401 | 231 ;;; arch-tag: 9651a100-4a59-4b69-a55b-e511e67c0f8d |
38413
a26d9b55abb6
Some fixes to follow coding conventions in files from Gnus.
Pavel Janík <Pavel@Janik.cz>
parents:
33342
diff
changeset
|
232 ;;; gnus-logic.el ends here |