1 ;;; gnus-cite.el --- parse citations in articles for Gnus -*- coding: iso-latin-1 -*-
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 ;; Free Software Foundation, Inc.
6 ;; Author: Per Abhiddenware
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
29 (eval-when-compile (require 'cl
))
37 (defgroup gnus-cite nil
40 :link
'(custom-manual "(gnus)Article Highlighting")
43 (defcustom gnus-cite-reply-regexp
44 "^\\(Subject: Re\\|In-Reply-To\\|References\\):"
45 "*If headers match this regexp it is reasonable to believe that
46 article has citations."
50 (defcustom gnus-cite-always-check nil
51 "Check article always for citations. Set it t to check all articles."
53 :type
'(choice (const :tag
"no" nil
)
54 (const :tag
"yes" t
)))
56 (defcustom gnus-cited-opened-text-button-line-format
"%(%{[-]%}%)\n"
57 "Format of opened cited text buttons."
61 (defcustom gnus-cited-closed-text-button-line-format
"%(%{[+]%}%)\n"
62 "Format of closed cited text buttons."
66 (defcustom gnus-cited-lines-visible nil
67 "The number of lines of hidden cited text to remain visible.
68 Or a pair (cons) of numbers which are the number of lines at the top
69 and bottom of the text, respectively, to remain visible."
71 :type
'(choice (const :tag
"none" nil
)
73 (cons :tag
"Top and Bottom" integer integer
)))
75 (defcustom gnus-cite-parse-max-size
25000
76 "Maximum article size (in bytes) where parsing citations is allowed.
77 Set it to nil to parse all articles."
79 :type
'(choice (const :tag
"all" nil
)
82 (defcustom gnus-cite-prefix-regexp
83 ;; The Latin-1 angle quote looks pretty dubious. -- fx
84 "^[]>»|:}+ ]*[]>»|:}+]\\(.*>»\\)?\\|^.*>"
85 "*Regexp matching the longest possible citation prefix on a line."
89 (defcustom gnus-cite-max-prefix
20
90 "Maximum possible length for a citation prefix."
94 (defcustom gnus-supercite-regexp
95 (concat "^\\(" gnus-cite-prefix-regexp
"\\)? *"
96 ">>>>> +\"\\([^\"\n]+\\)\" +==")
97 "*Regexp matching normal Supercite attribution lines.
98 The first grouping must match prefixes added by other packages."
102 (defcustom gnus-supercite-secondary-regexp
"^.*\"\\([^\"\n]+\\)\" +=="
103 "Regexp matching mangled Supercite attribution lines.
104 The first regexp group should match the Supercite attribution."
108 (defcustom gnus-cite-minimum-match-count
2
109 "Minimum number of identical prefixes before we believe it's a citation."
113 (defcustom gnus-cite-attribution-prefix
114 "In article\\|in <\\|On \\(Mon\\|Tue\\|Wed\\|Thu\\|Fri\\|Sat\\|Sun\\),\\|-----Original Message-----"
115 "*Regexp matching the beginning of an attribution line."
119 (defcustom gnus-cite-attribution-suffix
120 "\\(\\(wrote\\|writes\\|said\\|says\\|>\\)\\(:\\|\\.\\.\\.\\)\\|-----Original Message-----\\)[ \t]*$"
121 "*Regexp matching the end of an attribution line.
122 The text matching the first grouping will be used as a button."
126 (defface gnus-cite-attribution-face
'((t
128 "Face used for attribution lines.")
130 (defcustom gnus-cite-attribution-face
'gnus-cite-attribution-face
131 "Face used for attribution lines.
132 It is merged with the face for the cited text belonging to the attribution."
136 (defface gnus-cite-face-1
'((((class color
)
138 (:foreground
"light blue"))
141 (:foreground
"MidnightBlue"))
146 (defface gnus-cite-face-2
'((((class color
)
148 (:foreground
"light cyan"))
151 (:foreground
"firebrick"))
156 (defface gnus-cite-face-3
'((((class color
)
158 (:foreground
"light yellow"))
161 (:foreground
"dark green"))
166 (defface gnus-cite-face-4
'((((class color
)
168 (:foreground
"light pink"))
171 (:foreground
"OrangeRed"))
176 (defface gnus-cite-face-5
'((((class color
)
178 (:foreground
"pale green"))
181 (:foreground
"dark khaki"))
186 (defface gnus-cite-face-6
'((((class color
)
188 (:foreground
"beige"))
191 (:foreground
"dark violet"))
196 (defface gnus-cite-face-7
'((((class color
)
198 (:foreground
"orange"))
201 (:foreground
"SteelBlue4"))
206 (defface gnus-cite-face-8
'((((class color
)
208 (:foreground
"magenta"))
211 (:foreground
"magenta"))
216 (defface gnus-cite-face-9
'((((class color
)
218 (:foreground
"violet"))
221 (:foreground
"violet"))
226 (defface gnus-cite-face-10
'((((class color
)
228 (:foreground
"medium purple"))
231 (:foreground
"medium purple"))
236 (defface gnus-cite-face-11
'((((class color
)
238 (:foreground
"turquoise"))
241 (:foreground
"turquoise"))
246 (defcustom gnus-cite-face-list
247 '(gnus-cite-face-1 gnus-cite-face-2 gnus-cite-face-3 gnus-cite-face-4
248 gnus-cite-face-5 gnus-cite-face-6 gnus-cite-face-7 gnus-cite-face-8
249 gnus-cite-face-9 gnus-cite-face-10 gnus-cite-face-11
)
250 "*List of faces used for highlighting citations.
252 When there are citations from multiple articles in the same message,
253 Gnus will try to give each citation from each article its own face.
254 This should make it easier to see who wrote what."
256 :type
'(repeat face
))
258 (defcustom gnus-cite-hide-percentage
50
259 "Only hide excess citation if above this percentage of the body."
263 (defcustom gnus-cite-hide-absolute
10
264 "Only hide excess citation if above this number of lines in the body."
268 (defcustom gnus-cite-blank-line-after-header t
269 "If non-nil, put a blank line between the citation header and the button."
273 ;;; Internal Variables:
275 (defvar gnus-cite-article nil
)
276 (defvar gnus-cite-overlay-list nil
)
278 (defvar gnus-cite-prefix-alist nil
)
279 ;; Alist of citation prefixes.
280 ;; The cdr is a list of lines with that prefix.
282 (defvar gnus-cite-attribution-alist nil
)
283 ;; Alist of attribution lines.
284 ;; The car is a line number.
285 ;; The cdr is the prefix for the citation started by that line.
287 (defvar gnus-cite-loose-prefix-alist nil
)
288 ;; Alist of citation prefixes that have no matching attribution.
289 ;; The cdr is a list of lines with that prefix.
291 (defvar gnus-cite-loose-attribution-alist nil
)
292 ;; Alist of attribution lines that have no matching citation.
293 ;; Each member has the form (WROTE IN PREFIX TAG), where
294 ;; WROTE: is the attribution line number
295 ;; IN: is the line number of the previous line if part of the same attribution,
296 ;; PREFIX: Is the citation prefix of the attribution line(s), and
297 ;; TAG: Is a Supercite tag, if any.
299 (defvar gnus-cited-opened-text-button-line-format-alist
300 `((?b
(marker-position beg
) ?d
)
301 (?e
(marker-position end
) ?d
)
302 (?n
(count-lines beg end
) ?d
)
303 (?l
(- end beg
) ?d
)))
304 (defvar gnus-cited-opened-text-button-line-format-spec nil
)
305 (defvar gnus-cited-closed-text-button-line-format-alist
306 gnus-cited-opened-text-button-line-format-alist
)
307 (defvar gnus-cited-closed-text-button-line-format-spec nil
)
312 (defun gnus-article-highlight-citation (&optional force
)
313 "Highlight cited text.
314 Each citation in the article will be highlighted with a different face.
315 The faces are taken from `gnus-cite-face-list'.
316 Attribution lines are highlighted with the same face as the
317 corresponding citation merged with `gnus-cite-attribution-face'.
319 Text is considered cited if at least `gnus-cite-minimum-match-count'
320 lines matches `gnus-cite-prefix-regexp' with the same prefix.
322 Lines matching `gnus-cite-attribution-suffix' and perhaps
323 `gnus-cite-attribution-prefix' are considered attribution lines."
324 (interactive (list 'force
))
326 (set-buffer gnus-article-buffer
)
327 (gnus-cite-parse-maybe force
)
328 (let ((buffer-read-only nil
)
329 (alist gnus-cite-prefix-alist
)
330 (faces gnus-cite-face-list
)
331 (inhibit-point-motion-hooks t
)
332 face entry prefix skip numbers number face-alist
)
333 ;; Loop through citation prefixes.
335 (setq entry
(car alist
)
340 faces
(or (cdr faces
) gnus-cite-face-list
)
341 face-alist
(cons (cons prefix face
) face-alist
))
343 (setq number
(car numbers
)
344 numbers
(cdr numbers
))
345 (and (not (assq number gnus-cite-attribution-alist
))
346 (not (assq number gnus-cite-loose-attribution-alist
))
347 (gnus-cite-add-face number prefix face
))))
348 ;; Loop through attribution lines.
349 (setq alist gnus-cite-attribution-alist
)
351 (setq entry
(car alist
)
355 skip
(gnus-cite-find-prefix number
)
356 face
(cdr (assoc prefix face-alist
)))
357 ;; Add attribution button.
358 (goto-char (point-min))
359 (forward-line (1- number
))
360 (when (re-search-forward gnus-cite-attribution-suffix
361 (save-excursion (end-of-line 1) (point))
363 (gnus-article-add-button (match-beginning 1) (match-end 1)
364 'gnus-cite-toggle prefix
))
365 ;; Highlight attribution line.
366 (gnus-cite-add-face number skip face
)
367 (gnus-cite-add-face number skip gnus-cite-attribution-face
))
368 ;; Loop through attribution lines.
369 (setq alist gnus-cite-loose-attribution-alist
)
371 (setq entry
(car alist
)
374 skip
(gnus-cite-find-prefix number
))
375 (gnus-cite-add-face number skip gnus-cite-attribution-face
)))))
377 (defun gnus-dissect-cited-text ()
378 "Dissect the article buffer looking for cited text."
380 (set-buffer gnus-article-buffer
)
381 (gnus-cite-parse-maybe nil t
)
382 (let ((alist gnus-cite-prefix-alist
)
383 prefix numbers number marks m
)
384 ;; Loop through citation prefixes.
386 (setq numbers
(pop alist
)
387 prefix
(pop numbers
))
389 (setq number
(pop numbers
))
390 (goto-char (point-min))
391 (forward-line number
)
392 (push (cons (point-marker) "") marks
)
394 (= (1- number
) (car numbers
)))
395 (setq number
(pop numbers
)))
396 (goto-char (point-min))
397 (forward-line (1- number
))
398 (push (cons (point-marker) prefix
) marks
)))
399 ;; Skip to the beginning of the body.
401 (push (cons (point-marker) "") marks
)
402 ;; Find the end of the body.
403 (goto-char (point-max))
404 (gnus-article-search-signature)
405 (push (cons (point-marker) "") marks
)
407 (setq marks
(sort marks
'car-less-than-car
))
408 (let ((omarks marks
))
411 (if (= (caar omarks
) (caadr omarks
))
413 (unless (equal (cdar omarks
) "")
414 (push (car omarks
) marks
))
415 (unless (equal (cdadr omarks
) "")
416 (push (cadr omarks
) marks
))
417 (unless (and (equal (cdar omarks
) "")
418 (equal (cdadr omarks
) "")
420 (setq omarks
(cdr omarks
))))
421 (push (car omarks
) marks
))
422 (setq omarks
(cdr omarks
)))
424 (push (car omarks
) marks
))
425 (setq marks
(setq m
(nreverse marks
)))
427 (if (and (equal (cdadr m
) "")
428 (equal (cdar m
) (cdaddr m
))
429 (goto-char (caadr m
))
431 (= (point) (caaddr m
)))
436 (defun gnus-article-fill-cited-article (&optional force width
)
437 "Do word wrapping in the current article.
438 If WIDTH (the numerical prefix), use that text width when filling."
439 (interactive (list t current-prefix-arg
))
441 (set-buffer gnus-article-buffer
)
442 (let ((buffer-read-only nil
)
443 (inhibit-point-motion-hooks t
)
444 (marks (gnus-dissect-cited-text))
445 (adaptive-fill-mode nil
)
447 (fill-column (if width
(prefix-numeric-value width
) fill-column
)))
450 (narrow-to-region (caar marks
) (caadr marks
))
451 (let ((adaptive-fill-regexp
452 (concat "^" (regexp-quote (cdar marks
)) " *"))
453 (fill-prefix (cdar marks
)))
454 (fill-region (point-min) (point-max)))
455 (set-marker (caar marks
) nil
)
456 (setq marks
(cdr marks
)))
458 (set-marker (caar marks
) nil
))
459 ;; All this information is now incorrect.
460 (setq gnus-cite-prefix-alist nil
461 gnus-cite-attribution-alist nil
462 gnus-cite-loose-prefix-alist nil
463 gnus-cite-loose-attribution-alist nil
464 gnus-cite-article nil
)))))
466 (defun gnus-article-hide-citation (&optional arg force
)
467 "Toggle hiding of all cited text except attribution lines.
468 See the documentation for `gnus-article-highlight-citation'.
469 If given a negative prefix, always show; if given a positive prefix,
471 (interactive (append (gnus-article-hidden-arg) (list 'force
)))
472 (gnus-set-format 'cited-opened-text-button t
)
473 (gnus-set-format 'cited-closed-text-button t
)
475 (set-buffer gnus-article-buffer
)
476 (let ((buffer-read-only nil
)
478 (inhibit-point-motion-hooks t
)
479 (props (nconc (list 'article-type
'cite
)
480 gnus-hidden-properties
))
484 (text-property-any point
(point-max)
486 'gnus-article-toggle-cited-text
))
489 (gnus-article-toggle-cited-text
490 (get-text-property point
'gnus-data
) arg
)
492 (setq point
(point)))
494 (setq marks
(gnus-dissect-cited-text))
498 (while (and marks
(string= (cdar marks
) ""))
499 (setq marks
(cdr marks
)))
501 (setq beg
(caar marks
)))
502 (while (and marks
(not (string= (cdar marks
) "")))
503 (setq marks
(cdr marks
)))
505 (setq end
(caar marks
)))
506 ;; Skip past lines we want to leave visible.
507 (when (and beg end gnus-cited-lines-visible
)
509 (forward-line (if (consp gnus-cited-lines-visible
)
510 (car gnus-cited-lines-visible
)
511 gnus-cited-lines-visible
))
514 (setq beg
(point-marker))
515 (when (consp gnus-cited-lines-visible
)
517 (forward-line (- (cdr gnus-cited-lines-visible
)))
520 (setq end
(point-marker))))))
522 ;; We use markers for the end-points to facilitate later
523 ;; wrapping and mangling of text.
524 (setq beg
(set-marker (make-marker) beg
)
525 end
(set-marker (make-marker) end
))
526 (gnus-add-text-properties-when 'article-type nil beg end props
)
528 (when (and gnus-cite-blank-line-after-header
529 (not (save-excursion (search-backward "\n\n" nil t
))))
532 (setq start
(point-marker))
534 (gnus-article-add-button
536 (progn (eval gnus-cited-closed-text-button-line-format-spec
)
538 `gnus-article-toggle-cited-text
539 (list (cons beg end
) start
))
541 'article-type
'annotation
)
542 (set-marker beg
(point))))))))
544 (defun gnus-article-toggle-cited-text (args &optional arg
)
545 "Toggle hiding the text in REGION.
546 ARG can be nil or a number. Positive means hide, negative
547 means show, nil means toggle."
548 (let* ((region (car args
))
553 (text-property-any beg
(1- end
) 'article-type
'cite
))
554 (inhibit-point-motion-hooks t
)
558 (and (> arg
0) (not hidden
))
559 (and (< arg
0) hidden
))
561 (gnus-remove-text-properties-when
562 'article-type
'cite beg end
563 (cons 'article-type
(cons 'cite
564 gnus-hidden-properties
)))
565 (gnus-add-text-properties-when
566 'article-type nil beg end
567 (cons 'article-type
(cons 'cite
568 gnus-hidden-properties
))))
575 (gnus-article-add-button
579 gnus-cited-opened-text-button-line-format-spec
580 gnus-cited-closed-text-button-line-format-spec
))
582 `gnus-article-toggle-cited-text
585 'article-type
'annotation
)))))
587 (defun gnus-article-hide-citation-maybe (&optional arg force
)
588 "Toggle hiding of cited text that has an attribution line.
589 If given a negative prefix, always show; if given a positive prefix,
591 This will do nothing unless at least `gnus-cite-hide-percentage'
592 percent and at least `gnus-cite-hide-absolute' lines of the body is
593 cited text with attributions. When called interactively, these two
594 variables are ignored.
595 See also the documentation for `gnus-article-highlight-citation'."
596 (interactive (append (gnus-article-hidden-arg) '(force)))
597 (unless (gnus-article-check-hidden-text 'cite arg
)
599 (set-buffer gnus-article-buffer
)
600 (gnus-cite-parse-maybe force
)
602 (let ((start (point))
603 (atts gnus-cite-attribution-alist
)
604 (buffer-read-only nil
)
605 (inhibit-point-motion-hooks t
)
608 (goto-char (point-max))
609 (gnus-article-search-signature)
610 (setq total
(count-lines start
(point)))
612 (setq hidden
(+ hidden
(length (cdr (assoc (cdar atts
)
613 gnus-cite-prefix-alist
))))
616 (and (> (* 100 hidden
) (* gnus-cite-hide-percentage total
))
617 (> hidden gnus-cite-hide-absolute
)))
618 (setq atts gnus-cite-attribution-alist
)
620 (setq total
(cdr (assoc (cdar atts
) gnus-cite-prefix-alist
))
623 (setq hidden
(car total
)
625 (goto-char (point-min))
626 (forward-line (1- hidden
))
627 (unless (assq hidden gnus-cite-attribution-alist
)
628 (gnus-add-text-properties
629 (point) (progn (forward-line 1) (point))
630 (nconc (list 'article-type
'cite
)
631 gnus-hidden-properties
))))))))))
633 (defun gnus-article-hide-citation-in-followups ()
634 "Hide cited text in non-root articles."
637 (set-buffer gnus-article-buffer
)
638 (let ((article (cdr gnus-article-current
)))
639 (unless (save-excursion
640 (set-buffer gnus-summary-buffer
)
641 (gnus-article-displayed-root-p article
))
642 (gnus-article-hide-citation)))))
644 ;;; Internal functions:
646 (defun gnus-cite-parse-maybe (&optional force no-overlay
)
647 "Always parse the buffer."
649 ;;Reset parser information.
650 (setq gnus-cite-prefix-alist nil
651 gnus-cite-attribution-alist nil
652 gnus-cite-loose-prefix-alist nil
653 gnus-cite-loose-attribution-alist nil
)
655 (gnus-cite-delete-overlays))
656 ;; Parse if not too large.
657 (if (and gnus-cite-parse-max-size
658 (> (buffer-size) gnus-cite-parse-max-size
))
660 (setq gnus-cite-article
(cons (car gnus-article-current
)
661 (cdr gnus-article-current
)))
662 (gnus-cite-parse-wrapper)))
664 (defun gnus-cite-delete-overlays ()
665 (dolist (overlay gnus-cite-overlay-list
)
666 (when (or (not (gnus-overlay-end overlay
))
667 (and (>= (gnus-overlay-end overlay
) (point-min))
668 (<= (gnus-overlay-end overlay
) (point-max))))
669 (setq gnus-cite-overlay-list
(delete overlay gnus-cite-overlay-list
))
670 (gnus-delete-overlay overlay
))))
672 (defun gnus-cite-parse-wrapper ()
673 ;; Wrap chopped gnus-cite-parse.
675 (let ((inhibit-point-motion-hooks t
))
677 (gnus-cite-parse-attributions))
681 (gnus-cite-connect-attributions))))
683 (defun gnus-cite-parse ()
684 ;; Parse and connect citation prefixes and attribution lines.
686 ;; Parse current buffer searching for citation prefixes.
687 (let ((line (1+ (count-lines (point-min) (point))))
690 (goto-char (point-max))
691 (gnus-article-search-signature)
693 alist entry start begin end numbers prefix
)
694 ;; Get all potential prefixes in `alist'.
695 (while (< (point) max
)
698 end
(progn (beginning-of-line 2) (point))
701 ;; Ignore standard Supercite attribution prefix.
702 (when (looking-at gnus-supercite-regexp
)
704 (setq end
(1+ (match-end 1)))
705 (setq end
(1+ begin
))))
706 ;; Ignore very long prefixes.
707 (when (> end
(+ (point) gnus-cite-max-prefix
))
708 (setq end
(+ (point) gnus-cite-max-prefix
)))
709 (while (re-search-forward gnus-cite-prefix-regexp
(1- end
) t
)
711 (setq end
(match-end 0)
712 prefix
(buffer-substring begin end
))
713 (gnus-set-text-properties 0 (length prefix
) nil prefix
)
714 (setq entry
(assoc prefix alist
))
716 (setcdr entry
(cons line
(cdr entry
)))
717 (push (list prefix line
) alist
))
720 (setq line
(1+ line
)))
721 ;; We got all the potential prefixes. Now create
722 ;; `gnus-cite-prefix-alist' containing the oldest prefix for each
723 ;; line that appears at least gnus-cite-minimum-match-count
724 ;; times. First sort them by length. Longer is older.
725 (setq alist
(sort alist
(lambda (a b
)
726 (> (length (car a
)) (length (car b
))))))
728 (setq entry
(car alist
)
732 (cond ((null numbers
)
733 ;; No lines with this prefix that wasn't also part of
736 ((< (length numbers
) gnus-cite-minimum-match-count
)
737 ;; Too few lines with this prefix. We keep it a bit
738 ;; longer in case it is an exact match for an attribution
739 ;; line, but we don't remove the line from other
741 (push entry gnus-cite-prefix-alist
))
744 gnus-cite-prefix-alist
)
745 ;; Remove articles from other prefixes.
749 (setq current
(car loop
)
752 (gnus-set-difference (cdr current
) numbers
)))))))))
754 (defun gnus-cite-parse-attributions ()
756 ;; Parse attributions
757 (while (re-search-forward gnus-cite-attribution-suffix
(point-max) t
)
758 (let* ((start (match-beginning 0))
760 (wrote (count-lines (point-min) end
))
761 (prefix (gnus-cite-find-prefix wrote
))
762 ;; Check previous line for an attribution leader.
764 (beginning-of-line 1)
765 (when (looking-at gnus-supercite-secondary-regexp
)
766 (buffer-substring (match-beginning 1)
770 (and (re-search-backward gnus-cite-attribution-prefix
772 (beginning-of-line 0)
775 (not (re-search-forward gnus-cite-attribution-suffix
777 (count-lines (point-min) (1+ (point)))))))
781 ;; don't add duplicates
782 (let ((al (buffer-substring (save-excursion (beginning-of-line 0)
785 (if (not (assoc al al-alist
))
787 (push (list wrote in prefix tag
)
788 gnus-cite-loose-attribution-alist
)
789 (push (cons al t
) al-alist
))))))))
791 (defun gnus-cite-connect-attributions ()
792 ;; Connect attributions to citations
794 ;; No citations have been connected to attribution lines yet.
795 (setq gnus-cite-loose-prefix-alist
(append gnus-cite-prefix-alist nil
))
797 ;; Parse current buffer searching for attribution lines.
798 ;; Find exact supercite citations.
799 (gnus-cite-match-attributions 'small nil
803 (regexp-quote prefix
) "[ \t]*"
804 (regexp-quote tag
) ">"))))
805 ;; Find loose supercite citations after attributions.
806 (gnus-cite-match-attributions 'small t
812 ;; Find loose supercite citations anywhere.
813 (gnus-cite-match-attributions 'small nil
819 ;; Find nested citations after attributions.
820 (gnus-cite-match-attributions 'small-if-unique t
822 (concat "\\`" (regexp-quote prefix
) ".+")))
823 ;; Find nested citations anywhere.
824 (gnus-cite-match-attributions 'small nil
826 (concat "\\`" (regexp-quote prefix
) ".+")))
827 ;; Remove loose prefixes with too few lines.
828 (let ((alist gnus-cite-loose-prefix-alist
)
831 (setq entry
(car alist
)
833 (when (< (length (cdr entry
)) gnus-cite-minimum-match-count
)
834 (setq gnus-cite-prefix-alist
835 (delq entry gnus-cite-prefix-alist
)
836 gnus-cite-loose-prefix-alist
837 (delq entry gnus-cite-loose-prefix-alist
)))))
838 ;; Find flat attributions.
839 (gnus-cite-match-attributions 'first t nil
)
840 ;; Find any attributions (are we getting desperate yet?).
841 (gnus-cite-match-attributions 'first nil nil
))
843 (defun gnus-cite-match-attributions (sort after fun
)
844 ;; Match all loose attributions and citations (SORT AFTER FUN) .
846 ;; If SORT is `small', the citation with the shortest prefix will be
847 ;; used, if it is `first' the first prefix will be used, if it is
848 ;; `small-if-unique' the shortest prefix will be used if the
849 ;; attribution line does not share its own prefix with other
850 ;; loose attribution lines, otherwise the first prefix will be used.
852 ;; If AFTER is non-nil, only citations after the attribution line
853 ;; will be considered.
855 ;; If FUN is non-nil, it will be called with the arguments (WROTE
856 ;; PREFIX TAG) and expected to return a regular expression. Only
857 ;; citations whose prefix matches the regular expression will be
860 ;; WROTE is the attribution line number.
861 ;; PREFIX is the attribution line prefix.
862 ;; TAG is the Supercite tag on the attribution line.
863 (let ((atts gnus-cite-loose-attribution-alist
)
865 att wrote in prefix tag regexp limit smallest best size
)
873 regexp
(if fun
(funcall fun prefix tag
) "")
874 size
(cond ((eq sort
'small
) t
)
875 ((eq sort
'first
) nil
)
876 (t (< (length (gnus-cite-find-loose prefix
)) 2)))
877 limit
(if after wrote -
1)
880 (let ((cites gnus-cite-loose-prefix-alist
)
881 cite candidate numbers first compare
)
883 (setq cite
(car cites
)
887 first
(apply 'min numbers
)
888 compare
(if size
(length candidate
) first
))
891 (string-match regexp candidate
)
897 (setq gnus-cite-loose-attribution-alist
898 (delq att gnus-cite-loose-attribution-alist
))
899 (push (cons wrote
(car best
)) gnus-cite-attribution-alist
)
901 (push (cons in
(car best
)) gnus-cite-attribution-alist
))
902 (when (memq best gnus-cite-loose-prefix-alist
)
903 (let ((loop gnus-cite-prefix-alist
)
906 (setq gnus-cite-loose-prefix-alist
907 (delq best gnus-cite-loose-prefix-alist
))
909 (setq current
(car loop
)
911 (if (eq current best
)
913 (setcdr current
(gnus-set-difference (cdr current
) numbers
))
914 (when (null (cdr current
))
915 (setq gnus-cite-loose-prefix-alist
916 (delq current gnus-cite-loose-prefix-alist
)
917 atts
(delq current atts
)))))))))))
919 (defun gnus-cite-find-loose (prefix)
920 ;; Return a list of loose attribution lines prefixed by PREFIX.
921 (let* ((atts gnus-cite-loose-attribution-alist
)
927 (when (string-equal (gnus-cite-find-prefix line
) prefix
)
931 (defun gnus-cite-add-face (number prefix face
)
932 ;; At line NUMBER, ignore PREFIX and add FACE to the rest of the line.
934 (let ((inhibit-point-motion-hooks t
)
936 (goto-char (point-min))
937 (when (zerop (forward-line (1- number
)))
938 (forward-char (length prefix
))
939 (skip-chars-forward " \t")
942 (skip-chars-backward " \t")
945 (push (setq overlay
(gnus-make-overlay from to
))
946 gnus-cite-overlay-list
)
947 (gnus-overlay-put overlay
'face face
))))))
949 (defun gnus-cite-toggle (prefix)
951 (set-buffer gnus-article-buffer
)
952 (gnus-cite-parse-maybe nil t
)
953 (let ((buffer-read-only nil
)
954 (numbers (cdr (assoc prefix gnus-cite-prefix-alist
)))
955 (inhibit-point-motion-hooks t
)
958 (setq number
(car numbers
)
959 numbers
(cdr numbers
))
960 (goto-char (point-min))
961 (forward-line (1- number
))
962 (cond ((get-text-property (point) 'invisible
)
963 (remove-text-properties (point) (progn (forward-line 1) (point))
964 gnus-hidden-properties
))
965 ((assq number gnus-cite-attribution-alist
))
967 (gnus-add-text-properties
968 (point) (progn (forward-line 1) (point))
969 (nconc (list 'article-type
'cite
)
970 gnus-hidden-properties
))))))))
972 (defun gnus-cite-find-prefix (line)
973 ;; Return citation prefix for LINE.
974 (let ((alist gnus-cite-prefix-alist
)
978 (setq entry
(car alist
)
980 (when (memq line
(cdr entry
))
981 (setq prefix
(car entry
))))
984 (defun gnus-cite-localize ()
985 "Make the citation variables local to the article buffer."
986 (let ((vars '(gnus-cite-article
987 gnus-cite-overlay-list gnus-cite-prefix-alist
988 gnus-cite-attribution-alist gnus-cite-loose-prefix-alist
989 gnus-cite-loose-attribution-alist
)))
991 (make-local-variable (pop vars
)))))
998 ;; coding: iso-8859-1
1001 ;;; gnus-cite.el ends here