*** empty log message ***
[gnus] / lisp / gnus-kill.el
index 16219d1..0e02ca3 100644 (file)
@@ -26,8 +26,9 @@
 
 ;;; Code:
 
-(require 'gnus)
-(eval-when-compile (require 'cl))
+(require 'gnus-load)
+(require 'gnus-art)
+(require 'gnus-range)
 
 (defvar gnus-kill-file-mode-hook nil
   "*A hook for Gnus kill file mode.")
 
 (defvar gnus-winconf-kill-file nil)
 
+(defvar gnus-kill-killed t
+  "*If non-nil, Gnus will apply kill files to already killed articles.
+If it is nil, Gnus will never apply kill files to articles that have
+already been through the scoring process, which might very well save lots
+of time.")
+
 \f
 
 (defmacro gnus-raise (field expression level)
@@ -145,7 +152,7 @@ gnus-kill-file-mode-hook with no arguments, if that value is non-nil."
 If NEWSGROUP is nil, the global kill file is selected."
   (interactive "sNewsgroup: ")
   (let ((file (gnus-newsgroup-kill-file newsgroup)))
-    (gnus-make-directory (file-name-directory file))
+    (make-directory (file-name-directory file) t)
     ;; Save current window configuration if this is first invocation.
     (or (and (get-file-buffer file)
             (get-buffer-window (get-file-buffer file)))
@@ -174,7 +181,7 @@ If NEWSGROUP is nil, the global kill file is selected."
     (gnus-kill-file-mode)
     (bury-buffer buffer)))
 
-(defun gnus-kill-file-enter-kill (field regexp)
+(defun gnus-kill-file-enter-kill (field regexp &optional dont-move)
   ;; Enter kill file entry.
   ;; FIELD: String containing the name of the header field to kill.
   ;; REGEXP: The string to kill.
@@ -182,8 +189,8 @@ If NEWSGROUP is nil, the global kill file is selected."
     (let (string)
       (or (eq major-mode 'gnus-kill-file-mode)
          (gnus-kill-set-kill-buffer))
-      (current-buffer)
-      (goto-char (point-max))
+      (unless dont-move
+       (goto-char (point-max)))
       (insert (setq string (format "(gnus-kill %S %S)\n" field regexp)))
       (gnus-kill-file-apply-string string))))
     
@@ -195,7 +202,7 @@ If NEWSGROUP is nil, the global kill file is selected."
    (if (vectorp gnus-current-headers)
        (regexp-quote 
        (gnus-simplify-subject (mail-header-subject gnus-current-headers)))
-     "")))
+     "") t))
   
 (defun gnus-kill-file-kill-by-author ()
   "Kill by author."
@@ -204,7 +211,7 @@ If NEWSGROUP is nil, the global kill file is selected."
    "From" 
    (if (vectorp gnus-current-headers)
        (regexp-quote (mail-header-from gnus-current-headers))
-     "")))
+     "") t))
  
 (defun gnus-kill-file-kill-by-thread ()
   "Kill by author."
@@ -230,8 +237,8 @@ If NEWSGROUP is nil, the global kill file is selected."
                          (substring xref (match-beginning 1) (match-end 1)))
                    gnus-newsgroup-name))
              (gnus-kill-file-enter-kill 
-              "Xref" (concat " " (regexp-quote group) ":"))))
-      (gnus-kill-file-enter-kill "Xref" ""))))
+              "Xref" (concat " " (regexp-quote group) ":") t)))
+      (gnus-kill-file-enter-kill "Xref" "" t))))
 
 (defun gnus-kill-file-raise-followups-to-author (level)
   "Raise score for all followups to the current author."
@@ -312,18 +319,17 @@ If NEWSGROUP is nil, return the global kill file instead."
   (cond ((or (null newsgroup)
             (string-equal newsgroup ""))
         ;; The global kill file is placed at top of the directory.
-        (expand-file-name gnus-kill-file-name
-                          (or gnus-kill-files-directory "~/News")))
+        (expand-file-name gnus-kill-file-name gnus-kill-files-directory))
        (gnus-use-long-file-name
         ;; Append ".KILL" to capitalized newsgroup name.
         (expand-file-name (concat (gnus-capitalize-newsgroup newsgroup)
                                   "." gnus-kill-file-name)
-                          (or gnus-kill-files-directory "~/News")))
+                          gnus-kill-files-directory))
        (t
         ;; Place "KILL" under the hierarchical directory.
         (expand-file-name (concat (gnus-newsgroup-directory-form newsgroup)
                                   "/" gnus-kill-file-name)
-                          (or gnus-kill-files-directory "~/News")))))
+                          gnus-kill-files-directory))))
 
 (defun gnus-expunge (marks)
   "Remove lines marked with MARKS."
@@ -331,6 +337,20 @@ If NEWSGROUP is nil, return the global kill file instead."
     (set-buffer gnus-summary-buffer)
     (gnus-summary-limit-to-marks marks 'reverse)))
 
+(defun gnus-apply-kill-file-unless-scored ()
+  "Apply .KILL file, unless a .SCORE file for the same newsgroup exists."
+  (cond ((file-exists-p (gnus-score-file-name gnus-newsgroup-name))
+         ;; Ignores global KILL.
+         (if (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name))
+             (gnus-message 3 "Note: Ignoring %s.KILL; preferring .SCORE"
+                            gnus-newsgroup-name))
+         0)
+        ((or (file-exists-p (gnus-newsgroup-kill-file nil))
+             (file-exists-p (gnus-newsgroup-kill-file gnus-newsgroup-name)))
+         (gnus-apply-kill-file-internal))
+        (t
+         0)))
+
 (defun gnus-apply-kill-file-internal ()
   "Apply a kill file to the current newsgroup.
 Returns the number of articles marked as read."
@@ -401,7 +421,7 @@ Returns the number of articles marked as read."
     (erase-buffer)
     (insert string ":\n\n")
     (while alist
-      (insert (format " %c: %s\n" (car (car alist)) (nth idx (car alist))))
+      (insert (format " %c: %s\n" (caar alist) (nth idx (car alist))))
       (setq alist (cdr alist)))))
 
 (defun gnus-kill-parse-gnus-kill-file ()
@@ -531,18 +551,18 @@ COMMAND must be a lisp expression or a string representing a key sequence."
   (if (or (not (consp (nth 2 object)))
          (not (consp (cdr (nth 2 object))))
          (and (eq 'quote (car (nth 2 object)))
-              (not (consp (cdr (car (cdr (nth 2 object))))))))
-      (concat "\n" (prin1-to-string object))
+              (not (consp (cdadr (nth 2 object))))))
+      (concat "\n" (gnus-prin1-to-string object))
     (save-excursion
       (set-buffer (get-buffer-create "*Gnus PP*"))
       (buffer-disable-undo (current-buffer))
       (erase-buffer)
       (insert (format "\n(%S %S\n  '(" (nth 0 object) (nth 1 object)))
-      (let ((klist (car (cdr (nth 2 object))))
+      (let ((klist (cadr (nth 2 object)))
            (first t))
        (while klist
          (insert (if first (progn (setq first nil) "")  "\n    ")
-                 (prin1-to-string (car klist)))
+                 (gnus-prin1-to-string (car klist)))
          (setq klist (cdr klist))))
       (insert ")")
       (and (nth 3 object)
@@ -550,7 +570,7 @@ COMMAND must be a lisp expression or a string representing a key sequence."
                   (if (and (consp (nth 3 object))
                            (not (eq 'quote (car (nth 3 object))))) 
                       "'" "")
-                  (prin1-to-string (nth 3 object))))
+                  (gnus-prin1-to-string (nth 3 object))))
       (and (nth 4 object)
           (insert "\n  t"))
       (insert ")")
@@ -571,7 +591,7 @@ COMMAND must be a lisp expression or a string representing a key sequence."
                     (setq value (funcall function header))
                     ;; Number (Lines:) or symbol must be converted to string.
                     (or (stringp value)
-                        (setq value (prin1-to-string value)))
+                        (setq value (gnus-prin1-to-string value)))
                     (setq did-kill (string-match regexp value)))
                   (cond ((stringp form)        ;Keyboard macro.
                          (execute-kbd-macro form))
@@ -628,7 +648,7 @@ marked as read or ticked are ignored."
              ;; Find later articles.
              (setq article 
                    (gnus-summary-search-forward 
-                    (not ignore-marked) nil backward)))
+                    ignore-marked nil backward)))
        (and (or (null gnus-newsgroup-kill-headers)
                 (memq article gnus-newsgroup-kill-headers))
             (vectorp (setq header (gnus-summary-article-header article)))
@@ -637,6 +657,53 @@ marked as read or ticked are ignored."
       ;; Return the number of killed articles.
       killed-no)))
 
+;;;###autoload
+(defalias 'gnus-batch-kill 'gnus-batch-score)
+;;;###autoload
+(defun gnus-batch-score ()
+  "Run batched scoring.
+Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
+Newsgroups is a list of strings in Bnews format.  If you want to score
+the comp hierarchy, you'd say \"comp.all\".  If you would not like to
+score the alt hierarchy, you'd say \"!alt.all\"."
+  (interactive)
+  (let* ((yes-and-no
+         (gnus-newsrc-parse-options
+          (apply (function concat)
+                 (mapcar (lambda (g) (concat g " "))
+                         command-line-args-left))))
+        (gnus-expert-user t)
+        (nnmail-spool-file nil)
+        (gnus-use-dribble-file nil)
+        (yes (car yes-and-no))
+        (no (cdr yes-and-no))
+        group newsrc entry
+        ;; Disable verbose message.
+        gnus-novice-user gnus-large-newsgroup)
+    ;; Eat all arguments.
+    (setq command-line-args-left nil)
+    ;; Start Gnus.
+    (gnus)
+    ;; Apply kills to specified newsgroups in command line arguments.
+    (setq newsrc (cdr gnus-newsrc-alist))
+    (while newsrc
+      (setq group (caar newsrc))
+      (setq entry (gnus-gethash group gnus-newsrc-hashtb))
+      (if (and (<= (nth 1 (car newsrc)) gnus-level-subscribed)
+              (and (car entry)
+                   (or (eq (car entry) t)
+                       (not (zerop (car entry)))))
+              (if yes (string-match yes group) t)
+              (or (null no) (not (string-match no group))))
+         (progn
+           (gnus-summary-read-group group nil t nil t)
+           (and (eq (current-buffer) (get-buffer gnus-summary-buffer))
+                (gnus-summary-exit))))
+      (setq newsrc (cdr newsrc)))
+    ;; Exit Emacs.
+    (switch-to-buffer gnus-group-buffer)
+    (gnus-group-save-newsrc)))
+
 (provide 'gnus-kill)
 
 ;;; gnus-kill.el ends here