Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / mail / supercite.el
blob71933023664a468a3f9d4af6c8548719a820ca90
1 ;;; supercite.el --- minor mode for citing mail and news replies
3 ;; Copyright (C) 1993, 1997, 2001-2014 Free Software Foundation, Inc.
5 ;; Author: 1993 Barry A. Warsaw <bwarsaw@python.org>
6 ;; Maintainer: Glenn Morris <rgm@gnu.org>
7 ;; Created: February 1993
8 ;; Keywords: mail, news
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; LCD Archive Entry
26 ;; supercite|Barry A. Warsaw|supercite-help@python.org
27 ;; |Mail and news reply citation package
28 ;; |1993/09/22 18:58:46|3.1|
30 ;;; Commentary:
32 ;;; Code:
35 (require 'regi)
37 ;; start user configuration variables
38 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
40 (defgroup supercite nil
41 "Supercite package."
42 :prefix "sc-"
43 :group 'mail
44 :group 'news)
46 (defgroup supercite-frames nil
47 "Supercite (regi) frames."
48 :prefix "sc-"
49 :group 'supercite)
51 (defgroup supercite-attr nil
52 "Supercite attributions."
53 :prefix "sc-"
54 :group 'supercite)
56 (defgroup supercite-cite nil
57 "Supercite citings."
58 :prefix "sc-"
59 :group 'supercite)
61 (defgroup supercite-hooks nil
62 "Hooking into supercite."
63 :prefix "sc-"
64 :group 'supercite)
66 (defcustom sc-auto-fill-region-p t
67 "If non-nil, automatically fill each paragraph after it has been cited."
68 :type 'boolean
69 :group 'supercite)
71 (defcustom sc-blank-lines-after-headers 1
72 "Number of blank lines to leave after mail headers have been nuked.
73 Set to nil, to use whatever blank lines happen to occur naturally."
74 :type '(choice (const :tag "leave" nil)
75 integer)
76 :group 'supercite)
78 (defcustom sc-citation-leader " "
79 "String comprising first part of a citation."
80 :type 'string
81 :group 'supercite-cite)
83 (defcustom sc-citation-delimiter ">"
84 "String comprising third part of a citation.
85 This string is used in both nested and non-nested citations."
86 :type 'string
87 :group 'supercite-cite)
89 (defcustom sc-citation-separator " "
90 "String comprising fourth and last part of a citation."
91 :type 'string
92 :group 'supercite-cite)
94 (defcustom sc-citation-leader-regexp "[ \t]*"
95 "Regexp describing citation leader for a cited line.
96 This should NOT have a leading `^' character."
97 :type 'regexp
98 :group 'supercite-cite)
100 ;; Nemacs and Mule users note: please see the texinfo manual for
101 ;; suggestions on setting these variables.
102 (defcustom sc-citation-root-regexp "[-._[:alnum:]]*"
103 "Regexp describing variable root part of a citation for a cited line.
104 This should NOT have a leading `^' character. See also
105 `sc-citation-nonnested-root-regexp'."
106 :type 'regexp
107 :group 'supercite-cite)
109 (defcustom sc-citation-nonnested-root-regexp "[-._[:alnum:]]+"
110 "Regexp describing the variable root part of a nested citation.
111 This should NOT have a leading `^' character. This variable is
112 related to `sc-citation-root-regexp' but whereas that variable
113 describes both nested and non-nested citation roots, this variable
114 describes only nested citation roots."
115 :type 'regexp
116 :group 'supercite-cite)
118 (defcustom sc-citation-delimiter-regexp "[>]+"
119 "Regexp describing citation delimiter for a cited line.
120 This should NOT have a leading `^' character."
121 :type 'regexp
122 :group 'supercite-cite)
124 (defcustom sc-citation-separator-regexp "[ \t]*"
125 "Regexp describing citation separator for a cited line.
126 This should NOT have a leading `^' character."
127 :type 'regexp
128 :group 'supercite-cite)
130 (defcustom sc-cite-blank-lines-p nil
131 "If non-nil, put a citation on blank lines."
132 :type 'boolean
133 :group 'supercite-cite)
135 (defcustom sc-cite-frame-alist '()
136 "Alist for frame selection during citing.
137 Each element of this list has the following form:
138 (INFOKEY ((REGEXP . FRAME)
139 (REGEXP . FRAME)
140 (...)))
142 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
143 expression to match against the INFOKEY's value. FRAME is
144 a citation frame, or a symbol that represents the name of
145 a variable whose value is a citation frame."
146 :type '(repeat (list symbol (repeat (cons regexp
147 (choice (repeat (repeat sexp))
148 symbol)))))
149 :group 'supercite-frames)
150 (put 'sc-cite-frame-alist 'risky-local-variable t)
152 (defcustom sc-uncite-frame-alist '()
153 "Alist for frame selection during unciting.
154 See the variable `sc-cite-frame-alist' for details."
155 :type '(repeat (list symbol (repeat (cons regexp
156 (choice (repeat (repeat sexp))
157 symbol)))))
158 :group 'supercite-frames)
159 (put 'sc-uncite-frame-alist 'risky-local-variable t)
161 (defcustom sc-recite-frame-alist '()
162 "Alist for frame selection during reciting.
163 See the variable `sc-cite-frame-alist' for details."
164 :type '(repeat (list symbol (repeat (cons regexp
165 (choice (repeat (repeat sexp))
166 symbol)))))
167 :group 'supercite-frames)
168 (put 'sc-recite-frame-alist 'risky-local-variable t)
170 (defcustom sc-default-cite-frame
171 '(;; initialize fill state and temporary variables when entering
172 ;; frame. this makes things run much faster
173 (begin (progn
174 (sc-fill-if-different)
175 (setq sc-tmp-nested-regexp (sc-cite-regexp "")
176 sc-tmp-nonnested-regexp (sc-cite-regexp)
177 sc-tmp-dumb-regexp
178 (concat "\\("
179 (sc-cite-regexp "")
180 "\\)"
181 (sc-cite-regexp
182 sc-citation-nonnested-root-regexp)))))
183 ;; blank lines mean paragraph separators, so fill the last cited
184 ;; paragraph, unless sc-cite-blank-lines-p is non-nil, in which
185 ;; case we treat blank lines just like any other line.
186 ("^[ \t]*$" (if sc-cite-blank-lines-p
187 (if sc-nested-citation-p
188 (sc-add-citation-level)
189 (sc-cite-line))
190 (sc-fill-if-different "")))
191 ;; do nothing if looking at a reference tag. make sure that the
192 ;; tag string isn't the empty string since this will match every
193 ;; line. it cannot be nil.
194 (sc-reference-tag-string (if (string= sc-reference-tag-string "")
195 (list 'continue)
196 nil))
197 ;; this regexp catches nested citations in which the author cited
198 ;; a non-nested citation with a dumb citer.
199 (sc-tmp-dumb-regexp (sc-cite-coerce-dumb-citer))
200 ;; if we are looking at a nested citation then add a citation level
201 (sc-tmp-nested-regexp (sc-add-citation-level))
202 ;; if we're looking at a non-nested citation, coerce it to our style
203 (sc-tmp-nonnested-regexp (sc-cite-coerce-cited-line))
204 ;; we must be looking at an uncited line. if we are in nested
205 ;; citations, just add a citation level
206 (sc-nested-citation-p (sc-add-citation-level))
207 ;; we're looking at an uncited line and we are in non-nested
208 ;; citations, so cite it with a non-nested citation
209 (t (sc-cite-line))
210 ;; be sure when we're done that we fill the last cited paragraph.
211 (end (sc-fill-if-different "")))
212 "Default REGI frame for citing a region."
213 :type '(repeat (repeat sexp))
214 :group 'supercite-frames)
215 (put 'sc-default-cite-frame 'risky-local-variable t)
217 (defcustom sc-default-uncite-frame
218 '(;; do nothing on a blank line
219 ("^[ \t]*$" nil)
220 ;; if the line is cited, uncite it
221 ((sc-cite-regexp) (sc-uncite-line)))
222 "Default REGI frame for unciting a region."
223 :type '(repeat (repeat sexp))
224 :group 'supercite-frames)
225 (put 'sc-default-uncite-frame 'risky-local-variable t)
227 (defcustom sc-default-recite-frame
228 '(;; initialize fill state when entering frame
229 (begin (sc-fill-if-different))
230 ;; do nothing on a blank line
231 ("^[ \t]*$" nil)
232 ;; if we're looking at a cited line, recite it
233 ((sc-cite-regexp) (sc-recite-line (sc-cite-regexp)))
234 ;; otherwise, the line is uncited, so just cite it
235 (t (sc-cite-line))
236 ;; be sure when we're done that we fill the last cited paragraph.
237 (end (sc-fill-if-different "")))
238 "Default REGI frame for reciting a region."
239 :type '(repeat (repeat sexp))
240 :group 'supercite-frames)
241 (put 'sc-default-recite-frame 'risky-local-variable t)
243 (defcustom sc-cite-region-limit t
244 "This variable controls automatic citation of yanked text.
245 Valid values are:
247 non-nil -- cite the entire region, regardless of its size
248 nil -- do not cite the region at all
249 <integer> -- a number indicating the threshold for citation. When
250 the number of lines in the region is greater than this
251 value, a warning message will be printed and the region
252 will not be cited. Lines in region are counted with
253 `count-lines'.
255 The gathering of attribution information is not affected by the value
256 of this variable. The number of lines in the region is calculated
257 *after* all mail headers are removed. This variable is only consulted
258 during the initial citing via `sc-cite-original'."
259 :type '(choice (const :tag "do not cite" nil)
260 (integer :tag "citation threshold")
261 (other :tag "always cite" t))
262 :group 'supercite-cite)
264 (defcustom sc-confirm-always-p t
265 "If non-nil, always confirm attribution string before citing text body."
266 :type 'boolean
267 :group 'supercite-attr)
269 (defcustom sc-default-attribution "Anon"
270 "String used when author's attribution cannot be determined."
271 :type 'string
272 :group 'supercite-attr)
273 (defcustom sc-default-author-name "Anonymous"
274 "String used when author's name cannot be determined."
275 :type 'string
276 :group 'supercite-attr)
277 (defcustom sc-downcase-p nil
278 "Non-nil means downcase the attribution and citation strings."
279 :type 'boolean
280 :group 'supercite-attr
281 :group 'supercite-cite)
282 (defcustom sc-electric-circular-p t
283 "If non-nil, treat electric references as circular."
284 :type 'boolean
285 :group 'supercite-attr)
287 (defcustom sc-electric-mode-hook nil
288 "Hook for `sc-electric-mode' electric references mode."
289 :type 'hook
290 :group 'supercite-hooks)
291 (defcustom sc-electric-references-p nil
292 "Use electric references if non-nil."
293 :type 'boolean
294 :group 'supercite)
296 (defcustom sc-fixup-whitespace-p nil
297 "If non-nil, delete all leading white space before citing."
298 :type 'boolean
299 :group 'supercite)
301 (defcustom sc-load-hook nil
302 "Hook which gets run once after Supercite loads."
303 :type 'hook
304 :group 'supercite-hooks)
305 (defcustom sc-pre-hook nil
306 "Hook which gets run before each invocation of `sc-cite-original'."
307 :type 'hook
308 :group 'supercite-hooks)
309 (defcustom sc-post-hook nil
310 "Hook which gets run after each invocation of `sc-cite-original'."
311 :type 'hook
312 :group 'supercite-hooks)
314 (defcustom sc-mail-warn-if-non-rfc822-p t
315 "Warn if mail headers don't conform to RFC822."
316 :type 'boolean
317 :group 'supercite-attr)
318 (defcustom sc-mumble ""
319 "Value returned by `sc-mail-field' if field isn't in mail headers."
320 :type 'string
321 :group 'supercite-attr)
323 (defcustom sc-name-filter-alist
324 '(("^\\(Mr\\|Mrs\\|Ms\\|Dr\\)[.]?$" . 0)
325 ("^\\(Jr\\|Sr\\)[.]?$" . last)
326 ("^ASTS$" . 0)
327 ("^[I]+$" . last))
328 "Name list components which are filtered out as noise.
329 This variable contains an association list where each element is of
330 the form: (REGEXP . POSITION).
332 REGEXP is a regular expression which matches the name list component.
333 Match is performed using `string-match'. POSITION is the position in
334 the name list which can match the regular expression, starting at zero
335 for the first element. Use `last' to match the last element in the
336 list and `any' to match all elements."
337 :type '(repeat (cons regexp (choice (const last) (const any)
338 (integer :tag "position"))))
339 :group 'supercite-attr)
341 (defcustom sc-nested-citation-p nil
342 "Controls whether to use nested or non-nested citation style.
343 Non-nil uses nested citations, nil uses non-nested citations."
344 :type 'boolean
345 :group 'supercite)
347 (defcustom sc-nuke-mail-headers 'all
348 "Controls mail header nuking.
349 Used in conjunction with `sc-nuke-mail-header-list'. Valid values are:
351 `all' -- nuke all mail headers
352 `none' -- don't nuke any mail headers
353 `specified' -- nuke headers specified in `sc-nuke-mail-header-list'
354 `keep' -- keep headers specified in `sc-nuke-mail-header-list'"
355 :type '(choice (const all) (const none)
356 (const specified) (const keep))
357 :group 'supercite)
359 (defcustom sc-nuke-mail-header-list nil
360 "List of mail header regexps to remove or keep in body of reply.
361 This list contains regular expressions describing the mail headers to
362 keep or nuke, depending on the value of `sc-nuke-mail-headers'."
363 :type '(repeat regexp)
364 :group 'supercite)
366 (defcustom sc-preferred-attribution-list
367 '("sc-lastchoice" "x-attribution" "firstname" "initials" "lastname")
368 "Specifies what to use as the attribution string.
369 Supercite creates a list of possible attributions when it scans the
370 mail headers from the original message. Each attribution choice is
371 associated with a key in an attribution alist. Supercite tries to
372 pick a \"preferred\" attribution by matching the attribution alist
373 keys against the elements in `sc-preferred-attribution-list' in order.
374 The first non-empty string value found is used as the preferred
375 attribution.
377 Note that Supercite now honors the X-Attribution: mail field. If
378 present in the original message, the value of this field should always
379 be used to select the most preferred attribution since it reflects how
380 the original author would like to be distinguished. It should be
381 considered bad taste to put any attribution preference key before
382 \"x-attribution\" in this list, except perhaps for \"sc-lastchoice\"
383 \(see below).
385 Supercite remembers the last attribution used when reciting an already
386 cited paragraph. This attribution will always be saved with the
387 \"sc-lastchoice\" key, which can be used in this list. Note that the
388 last choice is always reset after every call of `sc-cite-original'.
390 Barring error conditions, the following preferences are always present
391 in the attribution alist:
393 \"emailname\" -- email terminus name
394 \"initials\" -- initials of author
395 \"firstname\" -- first name of author
396 \"lastname\" -- last name of author
397 \"middlename-1\" -- first middle name of author
398 \"middlename-2\" -- second middle name of author
401 Middle name indexes can be any positive integer greater than 0,
402 although it is unlikely that many authors will supply more than one
403 middle name, if that many. The string of all middle names is
404 associated with the key \"middlenames\"."
405 :type '(repeat string)
406 :group 'supercite-attr)
408 (defcustom sc-attrib-selection-list nil
409 "An alist for selecting preferred attribution based on mail headers.
410 Each element of this list has the following form:
412 (INFOKEY ((REGEXP . ATTRIBUTION)
413 (REGEXP . ATTRIBUTION)
414 (...)))
416 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
417 expression to match against the INFOKEY's value. ATTRIBUTION can be a
418 string or a list. If it's a string, then it is the attribution that is
419 selected by `sc-select-attribution'. If it is a list, it is `eval'd
420 and the return value must be a string, which is used as the selected
421 attribution. Note that the variable `sc-preferred-attribution-list'
422 must contain an element of the string \"sc-consult\" for this variable
423 to be consulted during attribution selection."
424 :type '(repeat (list string
425 (repeat (cons regexp
426 (choice (sexp :tag "List to eval")
427 string)))))
428 :group 'supercite-attr)
429 (put 'sc-attrib-selection-list 'risky-local-variable t)
431 (defcustom sc-attribs-preselect-hook nil
432 "Hook to run before selecting an attribution."
433 :type 'hook
434 :group 'supercite-attr
435 :group 'supercite-hooks)
436 (defcustom sc-attribs-postselect-hook nil
437 "Hook to run after selecting an attribution, but before confirmation."
438 :type 'hook
439 :group 'supercite-attr
440 :group 'supercite-hooks)
442 (defcustom sc-pre-cite-hook nil
443 "Hook to run before citing a region of text."
444 :type 'hook
445 :group 'supercite-cite
446 :group 'supercite-hooks)
447 (defcustom sc-pre-uncite-hook nil
448 "Hook to run before unciting a region of text."
449 :type 'hook
450 :group 'supercite-cite
451 :group 'supercite-hooks)
452 (defcustom sc-pre-recite-hook nil
453 "Hook to run before reciting a region of text."
454 :type 'hook
455 :group 'supercite-cite
456 :group 'supercite-hooks)
458 (defcustom sc-preferred-header-style 4
459 "Index into `sc-rewrite-header-list' specifying preferred header style.
460 Index zero accesses the first function in the list."
461 :type 'integer
462 :group 'supercite)
464 (defcustom sc-reference-tag-string ">>>>> "
465 "String used at the beginning of built-in reference headers."
466 :type 'string
467 :group 'supercite)
469 (defcustom sc-rewrite-header-list
470 '((sc-no-header)
471 (sc-header-on-said)
472 (sc-header-inarticle-writes)
473 (sc-header-regarding-adds)
474 (sc-header-attributed-writes)
475 (sc-header-author-writes)
476 (sc-header-verbose)
477 (sc-no-blank-line-or-header))
478 "List of reference header rewrite functions.
479 The variable `sc-preferred-header-style' controls which function in
480 this list is chosen for automatic reference header insertions.
481 Electric reference mode will cycle through this list of functions."
482 :type '(repeat sexp)
483 :group 'supercite)
484 (put 'sc-rewrite-header-list 'risky-local-variable t)
486 (defcustom sc-titlecue-regexp "\\s +-+\\s +"
487 "Regular expression describing the separator between names and titles.
488 Set to nil to treat entire field as a name."
489 :type '(choice (const :tag "entire field as name" nil)
490 regexp)
491 :group 'supercite-attr)
493 (defcustom sc-use-only-preference-p nil
494 "Controls what happens when the preferred attribution cannot be found.
495 If non-nil, then `sc-default-attribution' will be used. If nil, then
496 some secondary scheme will be employed to find a suitable attribution
497 string."
498 :type 'boolean
499 :group 'supercite-attr)
501 (defcustom sc-mode-map-prefix "\C-c\C-p"
502 "Key binding to install Supercite keymap."
503 :type 'string
504 :group 'supercite)
506 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
507 ;; end user configuration variables
509 (defvar sc-mail-info nil
510 "Alist of mail header information gleaned from reply buffer.")
511 (defvar sc-attributions nil
512 "Alist of attributions for use when citing.")
514 (defvar sc-tmp-nested-regexp nil
515 "Temporary regexp describing nested citations.")
516 (defvar sc-tmp-nonnested-regexp nil
517 "Temporary regexp describing non-nested citations.")
518 (defvar sc-tmp-dumb-regexp nil
519 "Temp regexp describing non-nested citation cited with a nesting citer.")
521 (make-variable-buffer-local 'sc-mail-info)
522 (make-variable-buffer-local 'sc-attributions)
525 ;; ======================================================================
526 ;; supercite keymaps
528 (defvar sc-T-keymap
529 (let ((map (make-sparse-keymap)))
530 (define-key map "a" 'sc-S-preferred-attribution-list)
531 (define-key map "b" 'sc-T-mail-nuke-blank-lines)
532 (define-key map "c" 'sc-T-confirm-always)
533 (define-key map "d" 'sc-T-downcase)
534 (define-key map "e" 'sc-T-electric-references)
535 (define-key map "f" 'sc-T-auto-fill-region)
536 (define-key map "h" 'sc-T-describe)
537 (define-key map "l" 'sc-S-cite-region-limit)
538 (define-key map "n" 'sc-S-mail-nuke-mail-headers)
539 (define-key map "N" 'sc-S-mail-header-nuke-list)
540 (define-key map "o" 'sc-T-electric-circular)
541 (define-key map "p" 'sc-S-preferred-header-style)
542 (define-key map "s" 'sc-T-nested-citation)
543 (define-key map "u" 'sc-T-use-only-preferences)
544 (define-key map "w" 'sc-T-fixup-whitespace)
545 (define-key map "?" 'sc-T-describe)
546 map)
547 "Keymap for sub-keymap of setting and toggling functions.")
549 (defvar sc-mode-map
550 (let ((map (make-sparse-keymap)))
551 (define-key map "c" 'sc-cite-region)
552 (define-key map "f" 'sc-mail-field-query)
553 (define-key map "g" 'sc-mail-process-headers)
554 (define-key map "h" 'sc-describe)
555 (define-key map "i" 'sc-insert-citation)
556 (define-key map "o" 'sc-open-line)
557 (define-key map "r" 'sc-recite-region)
558 (define-key map "\C-p" 'sc-raw-mode-toggle)
559 (define-key map "u" 'sc-uncite-region)
560 (define-key map "w" 'sc-insert-reference)
561 (define-key map "\C-t" sc-T-keymap)
562 (define-key map "?" 'sc-describe)
563 map)
564 "Keymap for Supercite quasi-mode.")
566 (defvar sc-electric-mode-map
567 (let ((map (make-sparse-keymap)))
568 (define-key map "p" 'sc-eref-prev)
569 (define-key map "n" 'sc-eref-next)
570 (define-key map "s" 'sc-eref-setn)
571 (define-key map "j" 'sc-eref-jump)
572 (define-key map "x" 'sc-eref-abort)
573 (define-key map "q" 'sc-eref-abort)
574 (define-key map "\r" 'sc-eref-exit)
575 (define-key map "\n" 'sc-eref-exit)
576 (define-key map "g" 'sc-eref-goto)
577 (define-key map "?" 'describe-mode)
578 (define-key map "\C-h" 'describe-mode)
579 (define-key map [f1] 'describe-mode)
580 (define-key map [help] 'describe-mode)
581 map)
582 "Keymap for `sc-electric-mode' electric references mode.")
585 (defvar sc-minibuffer-local-completion-map
586 (let ((map (copy-keymap minibuffer-local-completion-map)))
587 (define-key map "\C-t" 'sc-toggle-fn)
588 (define-key map " " 'self-insert-command)
589 map)
590 "Keymap for minibuffer confirmation of attribution strings.")
592 (defvar sc-minibuffer-local-map
593 (let ((map (copy-keymap minibuffer-local-map)))
594 (define-key map "\C-t" 'sc-toggle-fn)
595 map)
596 "Keymap for minibuffer confirmation of attribution strings.")
599 ;; ======================================================================
600 ;; utility functions
602 (defun sc-ask (alist)
603 "Ask a question in the minibuffer requiring a single character answer.
604 This function is kind of an extension of `y-or-n-p' where a single
605 letter is used to answer a question. Question is formed from ALIST
606 which has members of the form: (WORD . LETTER). WORD is the long
607 word form, while LETTER is the letter for selecting that answer. The
608 selected letter is returned, or nil if the question was not answered.
609 Note that WORD is a string and LETTER is a character. All LETTERs in
610 the list should be unique."
611 (let* ((prompt (concat
612 (mapconcat (lambda (elt) (car elt)) alist ", ")
613 "? ("
614 (mapconcat
615 (lambda (elt) (char-to-string (cdr elt))) alist "/")
616 ") "))
617 (p prompt)
618 (event
619 (if (fboundp 'allocate-event)
620 (allocate-event)
621 nil)))
622 (while (stringp p)
623 (if (let ((cursor-in-echo-area t)
624 (inhibit-quit t))
625 (message "%s" p)
626 (setq event (read-event))
627 (prog1 quit-flag (setq quit-flag nil)))
628 (progn
629 (message "%s%s" p (single-key-description event))
630 (if (fboundp 'deallocate-event)
631 (deallocate-event event))
632 (setq quit-flag nil)
633 (signal 'quit '())))
634 (let ((char
635 (if (featurep 'xemacs)
636 (let* ((key (and (key-press-event-p event) (event-key event)))
637 (char (and key (event-to-character event))))
638 char)
639 event))
640 elt)
641 (if char (setq char (downcase char)))
642 (cond
643 ((setq elt (rassq char alist))
644 (message "%s%s" p (car elt))
645 (setq p (cdr elt)))
646 ((if (fboundp 'button-release-event-p)
647 (button-release-event-p event)) ; ignore them
648 nil)
650 (message "%s%s" p (single-key-description event))
651 (if (featurep 'xemacs)
652 (ding nil 'y-or-n-p)
653 (ding))
654 (discard-input)
655 (if (eq p prompt)
656 (setq p (concat "Try again. " prompt)))))))
657 (if (fboundp 'deallocate-event)
658 (deallocate-event event))
661 (defun sc-scan-info-alist (alist)
662 "Find a match in the info alist that matches a regexp in ALIST."
663 (let ((sc-mumble "")
664 rtnvalue)
665 (while alist
666 (let* ((elem (car alist))
667 (infokey (car elem))
668 (infoval (sc-mail-field infokey))
669 (mlist (cadr elem)))
670 (while mlist
671 (let* ((ml-elem (car mlist))
672 (regexp (car ml-elem))
673 (thing (cdr ml-elem)))
674 (if (string-match regexp infoval)
675 ;; we found a match, time to return
676 (setq rtnvalue thing
677 mlist nil
678 alist nil)
679 ;; else we didn't find a match
680 (setq mlist (cdr mlist))))) ;end of mlist loop
681 (setq alist (cdr alist)))) ;end of alist loop
682 rtnvalue))
685 ;; ======================================================================
686 ;; extract mail field information from headers in reply buffer
688 ;; holder variables for bc happiness
689 (defvar sc-mail-headers-start nil
690 "Start of header fields.")
691 (defvar sc-mail-headers-end nil
692 "End of header fields.")
693 (defvar sc-mail-field-history nil
694 "For minibuffer completion on mail field queries.")
695 (defvar sc-mail-field-modification-history nil
696 "For minibuffer completion on mail field modifications.")
697 (defvar sc-mail-glom-frame
698 '((begin (setq sc-mail-headers-start (point)))
699 ("^From " (sc-mail-check-from) nil nil)
700 ("^x-attribution:[ \t]+.*$" (sc-mail-fetch-field t) nil t)
701 ("^\\S +:.*$" (sc-mail-fetch-field) nil t)
702 ("^$" (list 'abort '(step . 0)))
703 ("^[ \t]+" (sc-mail-append-field))
704 (sc-mail-warn-if-non-rfc822-p (sc-mail-error-in-mail-field))
705 (end (setq sc-mail-headers-end (point))))
706 "Regi frame for glomming mail header information.")
707 (put 'sc-mail-glom-frame 'risky-local-variable t)
709 (defvar curline) ; dynamic bondage
711 ;; regi functions
713 ;; http://lists.gnu.org/archive/html/emacs-devel/2009-02/msg00691.html
714 ;; When rmail replies to a message with full headers visible, the "From "
715 ;; line can be included.
716 (defun sc-mail-check-from ()
717 "Deal with a \"From \" line in the header.
718 Such a line should only occur at the very start of the headers."
719 (and sc-mail-warn-if-non-rfc822-p
720 (/= (point) sc-mail-headers-start)
721 (sc-mail-error-in-mail-field)))
723 (defun sc-mail-fetch-field (&optional attribs-p)
724 "Insert a key and value into `sc-mail-info' alist.
725 If optional ATTRIBS-P is non-nil, the key/value pair is placed in
726 `sc-attributions' too."
727 (if (string-match "^\\(\\S *\\)\\s *:\\s +\\(.*\\)$" curline)
728 (let* ((key (downcase (match-string-no-properties 1 curline)))
729 (val (match-string-no-properties 2 curline))
730 (keyval (cons key val)))
731 (push keyval sc-mail-info)
732 (if attribs-p
733 (push keyval sc-attributions))))
734 nil)
736 (defun sc-mail-append-field ()
737 "Append a continuation line onto the last fetched mail field's info."
738 (let ((keyval (car sc-mail-info)))
739 (if (and keyval (string-match "^\\s *\\(.*\\)$" curline))
740 (setcdr keyval (concat (cdr keyval) " "
741 (match-string-no-properties 1 curline)))))
742 nil)
744 (defun sc-mail-error-in-mail-field ()
745 "Issue warning that mail headers don't conform to RFC 822."
746 (let* ((len (min (length curline) 10))
747 (ellipsis (if (< len (length curline)) "..." ""))
748 (msg "Mail header \"%s%s\" doesn't conform to RFC 822. skipping..."))
749 (message msg (substring curline 0 len) ellipsis))
750 (beep)
751 (sit-for 2)
752 nil)
754 ;; mail header nuking
755 (defvar sc-mail-last-header-nuked-p nil
756 "True if the last header was nuked.")
758 (defun sc-mail-nuke-line ()
759 "Nuke the current mail header line."
760 (delete-region (line-beginning-position) (line-beginning-position 2))
761 '((step . -1)))
763 (defun sc-mail-nuke-header-line ()
764 "Delete current-line and set up for possible continuation."
765 (setq sc-mail-last-header-nuked-p t)
766 (sc-mail-nuke-line))
768 (defun sc-mail-nuke-continuation-line ()
769 "Delete a continuation line if the last header line was deleted."
770 (if sc-mail-last-header-nuked-p
771 (sc-mail-nuke-line)))
773 (defun sc-mail-cleanup-blank-lines ()
774 "Leave some blank lines after original mail headers are nuked.
775 The number of lines left is specified by `sc-blank-lines-after-headers'."
776 (if sc-blank-lines-after-headers
777 (save-restriction
778 (widen)
779 (skip-chars-backward " \t\n")
780 (forward-line 1)
781 (delete-blank-lines)
782 (beginning-of-line)
783 (if (looking-at "[ \t]*$")
784 (delete-region (line-beginning-position)
785 (line-beginning-position 2)))
786 (insert-char ?\n sc-blank-lines-after-headers)))
787 nil)
789 (defun sc-mail-build-nuke-frame ()
790 "Build the regiframe for nuking mail headers."
791 (let (every-func entry-func nonentry-func)
792 (cond
793 ((eq sc-nuke-mail-headers 'all)
794 (setq every-func '(progn (forward-line -1) (sc-mail-nuke-line))))
795 ((eq sc-nuke-mail-headers 'specified)
796 (setq entry-func '(sc-mail-nuke-header-line)
797 nonentry-func '(setq sc-mail-last-header-nuked-p nil)))
798 ((eq sc-nuke-mail-headers 'keep)
799 (setq entry-func '(setq sc-mail-last-header-nuked-p nil)
800 nonentry-func '(sc-mail-nuke-header-line)))
801 ;; we never get far enough to interpret a frame if s-n-m-h == 'none
802 ((eq sc-nuke-mail-headers 'none))
803 (t (error "Invalid value for sc-nuke-mail-headers: %s"
804 sc-nuke-mail-headers))) ; end-cond
805 (append
806 (and entry-func
807 (regi-mapcar sc-nuke-mail-header-list entry-func nil t))
808 (and nonentry-func (list (list "^\\S +:.*$" nonentry-func)))
809 (and (not every-func)
810 '(("^[ \t]+" (sc-mail-nuke-continuation-line))))
811 '((begin (setq sc-mail-last-header-zapped-p nil)))
812 '((end (sc-mail-cleanup-blank-lines)))
813 (and every-func (list (list 'every every-func))))))
815 ;; mail processing and zapping. this is the top level entry defun to
816 ;; all header processing.
817 (defun sc-mail-process-headers (start end)
818 "Process original mail message's mail headers.
819 After processing, mail headers may be nuked. Header information is
820 stored in `sc-mail-info', and any old information is lost unless an
821 error occurs."
822 (interactive "r")
823 (let ((info (copy-alist sc-mail-info))
824 (attribs (copy-alist sc-attributions)))
825 (setq sc-mail-info nil
826 sc-attributions nil)
827 (regi-interpret sc-mail-glom-frame start end)
828 (if (null sc-mail-info)
829 (progn
830 (message "No mail headers found! Restoring old information.")
831 (setq sc-mail-info info
832 sc-attributions attribs))
833 (regi-interpret (sc-mail-build-nuke-frame)
834 sc-mail-headers-start sc-mail-headers-end))))
837 ;; let the user change mail field information
838 (defun sc-mail-field (field)
839 "Return the mail header field value associated with FIELD.
840 If there was no mail header with FIELD as its key, return the value of
841 `sc-mumble'. FIELD is case insensitive."
842 (or (cdr (assoc-string field sc-mail-info 'case-fold)) sc-mumble))
844 (defun sc-mail-field-query (arg)
845 "View the value of a mail field.
846 With `\\[universal-argument]', prompts for action on mail field.
847 Action can be one of: View, Modify, Add, or Delete."
848 (interactive "P")
849 (let* ((alist '(("view" . ?v) ("modify" . ?m) ("add" . ?a) ("delete" . ?d)))
850 (action (if (not arg) ?v (sc-ask alist)))
851 key)
852 (if (not action)
854 (setq key (completing-read
855 (concat (car (rassq action alist))
856 " information key: ")
857 sc-mail-info nil
858 (if (eq action ?a) nil 'noexit)
859 nil 'sc-mail-field-history))
860 (cond
861 ((eq action ?v)
862 (message "%s: %s" key (cdr (assoc key sc-mail-info))))
863 ((eq action ?d)
864 (setq sc-mail-info (delq (assoc key sc-mail-info) sc-mail-info)))
865 ((eq action ?m)
866 (let ((keyval (assoc key sc-mail-info)))
867 ;; first put initial value onto list if not already there
868 (if (not (member (cdr keyval)
869 sc-mail-field-modification-history))
870 (setq sc-mail-field-modification-history
871 (cons (cdr keyval) sc-mail-field-modification-history)))
872 (setcdr keyval (read-string
873 (concat key ": ") (cdr keyval)
874 'sc-mail-field-modification-history))))
875 ((eq action ?a)
876 (push (cons key (read-string (concat key ": "))) sc-mail-info))))))
879 ;; ======================================================================
880 ;; attributions
882 (defvar sc-attribution-confirmation-history nil
883 "History for confirmation of attribution strings.")
884 (defvar sc-citation-confirmation-history nil
885 "History for confirmation of attribution prefixes.")
887 (defun sc-attribs-%@-addresses (from &optional delim)
888 "Extract the author's email terminus from email address FROM.
889 Match addresses of the style ``name%[stuff].'' when called with DELIM
890 of \"%\" and addresses of the style ``[stuff]name@[stuff]'' when
891 called with DELIM \"@\". If DELIM is nil or not provided, matches
892 addresses of the style ``name''."
893 (and (string-match (concat "[-[:alnum:]_.]+" delim) from 0)
894 (substring from
895 (match-beginning 0)
896 (- (match-end 0) (if (null delim) 0 1)))))
898 (defun sc-attribs-!-addresses (from)
899 "Extract the author's email terminus from email address FROM.
900 Match addresses of the style ``[stuff]![stuff]...!name[stuff].''"
901 (let ((eos (length from))
902 (mstart (string-match "![-[:alnum:]_.]+\\([^-![:alnum:]_.]\\|$\\)"
903 from 0))
904 (mend (match-end 0)))
905 (and mstart
906 (substring from (1+ mstart) (- mend (if (= mend eos) 0 1))))))
908 (defun sc-attribs-<>-addresses (from)
909 "Extract the author's email terminus from email address FROM.
910 Match addresses of the style ``<name[stuff]>.''"
911 (and (string-match "<\\(.*\\)>" from)
912 (match-string 1 from)))
914 (defun sc-get-address (from author)
915 "Get the full email address path from FROM.
916 AUTHOR is the author's name (which is removed from the address)."
917 (let ((eos (length from)))
918 (if (string-match (concat "\\`\"?" (regexp-quote author)
919 "\"?\\s +") from 0)
920 (let ((address (substring from (match-end 0) eos)))
921 (if (and (= (aref address 0) ?<)
922 (= (aref address (1- (length address))) ?>))
923 (substring address 1 (1- (length address)))
924 address))
925 (if (string-match "[-[:alnum:]!@%._]+" from 0)
926 (match-string 0 from)
927 ""))))
929 (defun sc-attribs-emailname (from)
930 "Get the email terminus name from FROM."
932 (sc-attribs-%@-addresses from "%")
933 (sc-attribs-%@-addresses from "@")
934 (sc-attribs-!-addresses from)
935 (sc-attribs-<>-addresses from)
936 (sc-attribs-%@-addresses from)
937 (substring from 0 10)))
939 (defun sc-name-substring (string start end extend)
940 "Extract the specified substring of STRING from START to END.
941 EXTEND is the number of characters on each side to extend the
942 substring."
943 (and start
944 (let ((sos (+ start extend))
945 (eos (- end extend)))
946 (substring string sos
947 (or (string-match sc-titlecue-regexp string sos) eos)))))
949 (defun sc-attribs-extract-namestring (from)
950 "Extract the name string from FROM.
951 This should be the author's full name minus an optional title."
952 ;; FIXME: we probably should use mail-extract-address-components.
953 (let ((namestring
955 ;; If there is a <...> in the name,
956 ;; treat everything before that as the full name.
957 ;; Even if it contains parens, use the whole thing.
958 ;; On the other hand, we do look for quotes in the usual way.
959 (and (string-match " *<.*>" from 0)
960 (let ((before-angles
961 (sc-name-substring from 0 (match-beginning 0) 0)))
962 (if (string-match "\".*\"" before-angles 0)
963 (sc-name-substring
964 before-angles (match-beginning 0) (match-end 0) 1)
965 before-angles)))
966 (sc-name-substring
967 from (string-match "(.*)" from 0) (match-end 0) 1)
968 (sc-name-substring
969 from (string-match "\".*\"" from 0) (match-end 0) 1)
970 (sc-name-substring
971 from (string-match "\\([-.[:alnum:]_]+\\s +\\)+<" from 0)
972 (match-end 1) 0)
973 (sc-attribs-emailname from))))
974 ;; strip off any leading or trailing whitespace
975 (if namestring
976 (let ((bos 0)
977 (eos (1- (length namestring))))
978 (while (and (<= bos eos)
979 (memq (aref namestring bos) '(32 ?\t)))
980 (setq bos (1+ bos)))
981 (while (and (> eos bos)
982 (memq (aref namestring eos) '(32 ?\t)))
983 (setq eos (1- eos)))
984 (substring namestring bos (1+ eos))))))
986 (defun sc-attribs-chop-namestring (namestring)
987 "Convert NAMESTRING to a list of names.
988 example: (sc-attribs-chop-namestring \"John Xavier Doe\")
989 => (\"John\" \"Xavier\" \"Doe\")"
990 (if (string-match "\\([ \t]*\\)\\([^ \t._]+\\)\\([ \t]*\\)" namestring)
991 (cons (match-string 2 namestring)
992 (sc-attribs-chop-namestring (substring namestring (match-end 3))))))
994 (defun sc-attribs-strip-initials (namelist)
995 "Extract the author's initials from the NAMELIST."
996 (mapconcat
997 (lambda (name)
998 (if (< 0 (length name))
999 (substring name 0 1)))
1000 namelist ""))
1002 (defun sc-guess-attribution (&optional string)
1003 "Guess attribution string on current line.
1004 If attribution cannot be guessed, nil is returned. Optional STRING if
1005 supplied, is used instead of the line point is on in the current buffer."
1006 (let ((start 0)
1007 (string (or string (buffer-substring (line-beginning-position)
1008 (line-end-position))))
1009 attribution)
1010 (and
1011 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1012 (setq start (match-end 0))
1013 (= start (or (string-match sc-citation-root-regexp string start) 1))
1014 (setq attribution (match-string 0 string)
1015 start (match-end 0))
1016 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1017 (setq start (match-end 0))
1018 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1019 attribution)))
1021 (defun sc-attribs-filter-namelist (namelist)
1022 "Filter out noise in NAMELIST according to `sc-name-filter-alist'."
1023 (let ((elements (length namelist))
1024 (position -1)
1025 keepers filtered-list)
1026 (mapc
1027 (lambda (name)
1028 (setq position (1+ position))
1029 (let ((keep-p t))
1030 (mapc
1031 (function
1032 (lambda (filter)
1033 (let ((regexp (car filter))
1034 (pos (cdr filter)))
1035 (if (and (string-match regexp name)
1036 (or (and (numberp pos)
1037 (= pos position))
1038 (and (eq pos 'last)
1039 (= position (1- elements)))
1040 (eq pos 'any)))
1041 (setq keep-p nil)))))
1042 sc-name-filter-alist)
1043 (if keep-p
1044 (setq keepers (cons position keepers)))))
1045 namelist)
1046 (mapc
1047 (lambda (position)
1048 (setq filtered-list (cons (nth position namelist) filtered-list)))
1049 keepers)
1050 filtered-list))
1052 (defun sc-attribs-chop-address (from)
1053 "Extract attribution information from FROM.
1054 This populates the `sc-attributions' with the list of possible attributions."
1055 (if (and (stringp from)
1056 (< 0 (length from)))
1057 (let* ((sc-mumble "")
1058 (namestring (sc-attribs-extract-namestring from))
1059 (namelist (sc-attribs-filter-namelist
1060 (sc-attribs-chop-namestring namestring)))
1061 (revnames (reverse (cdr namelist)))
1062 (firstname (car namelist))
1063 (midnames (reverse (cdr revnames)))
1064 (lastname (car revnames))
1065 (initials (sc-attribs-strip-initials namelist))
1066 (emailname (sc-attribs-emailname from))
1067 (n 1)
1068 author middlenames)
1070 ;; put basic information
1071 (setq
1072 ;; put middle names and build sc-author entry
1073 middlenames (mapconcat
1074 (lambda (midname)
1075 (let ((key-attribs (format "middlename-%d" n))
1076 (key-mail (format "sc-middlename-%d" n)))
1077 (push (cons key-attribs midname) sc-attributions)
1078 (push (cons key-mail midname) sc-mail-info)
1079 (setq n (1+ n))
1080 midname))
1081 midnames " ")
1083 author (concat firstname " " middlenames (and midnames " ") lastname)
1085 sc-attributions (append
1086 (list
1087 (cons "firstname" firstname)
1088 (cons "lastname" lastname)
1089 (cons "emailname" emailname)
1090 (cons "initials" initials))
1091 sc-attributions)
1092 sc-mail-info (append
1093 (list
1094 (cons "sc-firstname" firstname)
1095 (cons "sc-middlenames" middlenames)
1096 (cons "sc-lastname" lastname)
1097 (cons "sc-emailname" emailname)
1098 (cons "sc-initials" initials)
1099 (cons "sc-author" author)
1100 (cons "sc-from-address" (sc-get-address
1101 (sc-mail-field "from")
1102 namestring))
1103 (cons "sc-reply-address" (sc-get-address
1104 (sc-mail-field "reply-to")
1105 namestring))
1106 (cons "sc-sender-address" (sc-get-address
1107 (sc-mail-field "sender")
1108 namestring)))
1109 sc-mail-info)))
1110 ;; from string is empty
1111 (push (cons "sc-author" sc-default-author-name) sc-mail-info)))
1113 (defvar sc-attrib-or-cite nil
1114 "Used to toggle between attribution input or citation input.")
1116 (defun sc-toggle-fn ()
1117 "Toggle between attribution selection and citation selection.
1118 Only used during confirmation."
1119 (interactive)
1120 (setq sc-attrib-or-cite (not sc-attrib-or-cite))
1121 (throw 'sc-reconfirm t))
1123 (defun sc-select-attribution ()
1124 "Select an attribution from `sc-attributions'.
1126 Variables involved in selection process include:
1127 `sc-preferred-attribution-list'
1128 `sc-use-only-preference-p'
1129 `sc-confirm-always-p'
1130 `sc-default-attribution'
1131 `sc-attrib-selection-list'.
1133 Runs the hook `sc-attribs-preselect-hook' before selecting an
1134 attribution and the hook `sc-attribs-postselect-hook' after making the
1135 selection but before querying is performed. During
1136 `sc-attribs-postselect-hook' the variable `citation' is bound to the
1137 auto-selected citation string and the variable `attribution' is bound
1138 to the auto-selected attribution string."
1139 (run-hooks 'sc-attribs-preselect-hook)
1140 (let ((query-p sc-confirm-always-p)
1141 attribution citation
1142 (attriblist sc-preferred-attribution-list))
1144 ;; first cruise through sc-preferred-attribution-list looking for
1145 ;; a match in either sc-attributions or sc-mail-info. if the
1146 ;; element is "sc-consult", then we have to do the alist
1147 ;; consultation phase
1148 (while attriblist
1149 (let* ((preferred (car attriblist)))
1150 (cond
1151 ((string= preferred "sc-consult")
1152 ;; we've been told to consult the attribution vs. mail
1153 ;; header key alist. we do this until we find a match in
1154 ;; the sc-attrib-selection-list. if we do not find a match,
1155 ;; we continue scanning attriblist
1156 (let ((attrib (sc-scan-info-alist sc-attrib-selection-list)))
1157 (cond
1158 ((not attrib)
1159 (setq attriblist (cdr attriblist)))
1160 ((stringp attrib)
1161 (setq attribution attrib
1162 attriblist nil))
1163 ((listp attrib)
1164 (setq attribution (eval attrib))
1165 (if (stringp attribution)
1166 (setq attriblist nil)
1167 (setq attribution nil
1168 attriblist (cdr attriblist))))
1169 (t (error "%s did not evaluate to a string or list!"
1170 "sc-attrib-selection-list")))))
1171 ((setq attribution (cdr (assoc preferred sc-attributions)))
1172 (setq attriblist nil))
1174 (setq attriblist (cdr attriblist))))))
1176 ;; if preference was not found, we may use a secondary method to
1177 ;; find a valid attribution
1178 (if (and (not attribution)
1179 (not sc-use-only-preference-p))
1180 ;; secondary method tries to find a preference in this order
1181 ;; 1. sc-lastchoice
1182 ;; 2. x-attribution
1183 ;; 3. firstname
1184 ;; 4. lastname
1185 ;; 5. initials
1186 ;; 6. first non-empty attribution in alist
1187 (setq attribution
1188 (or (cdr (assoc "sc-lastchoice" sc-attributions))
1189 (cdr (assoc "x-attribution" sc-attributions))
1190 (cdr (assoc "firstname" sc-attributions))
1191 (cdr (assoc "lastname" sc-attributions))
1192 (cdr (assoc "initials" sc-attributions))
1193 (cdr (car sc-attributions)))))
1195 ;; still couldn't find an attribution. we're now limited to using
1196 ;; the default attribution, but we'll force a query when this happens
1197 (if (not attribution)
1198 (setq attribution sc-default-attribution
1199 query-p t))
1201 ;; create the attribution prefix
1202 (setq citation (sc-make-citation attribution))
1204 ;; run the post selection hook before querying the user
1205 (run-hooks 'sc-attribs-postselect-hook)
1207 ;; query for confirmation
1208 (if query-p
1209 (let* ((query-alist (mapcar (lambda (entry) (list (cdr entry)))
1210 sc-attributions))
1211 (minibuffer-local-completion-map
1212 sc-minibuffer-local-completion-map)
1213 (minibuffer-local-map sc-minibuffer-local-map)
1214 (initial attribution)
1215 (completer-disable t) ; in case completer.el is used
1216 choice)
1217 (setq sc-attrib-or-cite nil) ; nil==attribution, t==citation
1218 (while
1219 (catch 'sc-reconfirm
1220 (progn
1221 (setq choice
1222 (if sc-attrib-or-cite
1223 (read-string
1224 "Enter citation prefix: "
1225 citation
1226 'sc-citation-confirmation-history)
1227 (completing-read
1228 "Complete attribution name: "
1229 query-alist nil nil
1230 (cons initial 0)
1231 'sc-attribution-confirmation-history)))
1232 nil)))
1233 (if sc-attrib-or-cite
1234 ;; since the citation was chosen, we have to guess at
1235 ;; the attribution
1236 (setq citation choice
1237 attribution (or (sc-guess-attribution citation)
1238 citation))
1240 (setq citation (sc-make-citation choice)
1241 attribution choice))))
1243 ;; its possible that the user wants to downcase the citation and
1244 ;; attribution
1245 (if sc-downcase-p
1246 (setq citation (downcase citation)
1247 attribution (downcase attribution)))
1249 ;; set up mail info alist
1250 (let* ((ckey "sc-citation")
1251 (akey "sc-attribution")
1252 (ckeyval (assoc ckey sc-mail-info))
1253 (akeyval (assoc akey sc-mail-info)))
1254 (if ckeyval
1255 (setcdr ckeyval citation)
1256 (push (cons ckey citation) sc-mail-info))
1257 (if akeyval
1258 (setcdr akeyval attribution)
1259 (push (cons akey attribution) sc-mail-info)))
1261 ;; set the sc-lastchoice attribution
1262 (let* ((lkey "sc-lastchoice")
1263 (lastchoice (assoc lkey sc-attributions)))
1264 (if lastchoice
1265 (setcdr lastchoice attribution)
1266 (push (cons lkey attribution) sc-attributions)))))
1269 ;; ======================================================================
1270 ;; filladapt hooks for supercite 3.1. you shouldn't need anything
1271 ;; extra to make gin-mode understand supercited lines. Even this
1272 ;; stuff might not be entirely necessary...
1274 (defun sc-cite-regexp (&optional root-regexp)
1275 "Return a regexp describing a Supercited line.
1276 The regexp is the concatenation of `sc-citation-leader-regexp',
1277 `sc-citation-root-regexp', `sc-citation-delimiter-regexp', and
1278 `sc-citation-separator-regexp'. If optional ROOT-REGEXP is supplied,
1279 use it instead of `sc-citation-root-regexp'."
1280 (concat sc-citation-leader-regexp
1281 (or root-regexp sc-citation-root-regexp)
1282 sc-citation-delimiter-regexp
1283 sc-citation-separator-regexp))
1285 (defun sc-make-citation (attribution)
1286 "Make a non-nested citation from ATTRIBUTION."
1287 (concat sc-citation-leader
1288 attribution
1289 sc-citation-delimiter
1290 sc-citation-separator))
1292 (defvar filladapt-prefix-table)
1294 (defun sc-setup-filladapt ()
1295 "Setup `filladapt-prefix-table' to handle Supercited paragraphs."
1296 (let* ((fa-sc-elt 'filladapt-supercite-included-text)
1297 (elt (rassq fa-sc-elt filladapt-prefix-table)))
1298 (if elt (setcar elt (sc-cite-regexp))
1299 (message "Filladapt doesn't seem to know about Supercite.")
1300 (beep))))
1303 ;; ======================================================================
1304 ;; citing and unciting regions of text
1306 (defvar sc-fill-begin 1
1307 "Buffer position to begin filling.")
1308 (defvar sc-fill-line-prefix ""
1309 "Fill prefix of previous line")
1311 ;; filling
1312 (defun sc-fill-if-different (&optional prefix)
1313 "Fill the region bounded by `sc-fill-begin' and point.
1314 Only fill if optional PREFIX is different than `sc-fill-line-prefix'.
1315 If `sc-auto-fill-region-p' is nil, do not fill region. If PREFIX is
1316 not supplied, initialize fill variables. This is useful for a regi
1317 `begin' frame-entry."
1318 (if (not prefix)
1319 (setq sc-fill-line-prefix ""
1320 sc-fill-begin (line-beginning-position))
1321 (if (and sc-auto-fill-region-p
1322 (not (string= prefix sc-fill-line-prefix)))
1323 (let ((fill-prefix sc-fill-line-prefix))
1324 (if (not (string= fill-prefix ""))
1325 (fill-region sc-fill-begin (line-beginning-position)))
1326 (setq sc-fill-line-prefix prefix
1327 sc-fill-begin (line-beginning-position)))))
1328 nil)
1330 (defun sc-cite-coerce-cited-line ()
1331 "Coerce a Supercited line to look like our style."
1332 (let* ((attribution (sc-guess-attribution))
1333 (regexp (sc-cite-regexp attribution))
1334 (prefix (sc-make-citation attribution)))
1335 (if (and attribution
1336 (looking-at regexp))
1337 (progn
1338 (delete-region
1339 (match-beginning 0)
1340 (save-excursion
1341 (goto-char (match-end 0))
1342 (if (bolp) (forward-char -1))
1343 (point)))
1344 (insert prefix)
1345 (sc-fill-if-different prefix)))
1346 nil))
1348 (defun sc-cite-coerce-dumb-citer ()
1349 "Coerce a non-nested citation that's been cited with a dumb nesting citer."
1350 (delete-region (match-beginning 1) (match-end 1))
1351 (beginning-of-line)
1352 (sc-cite-coerce-cited-line))
1354 (defun sc-guess-nesting (&optional string)
1355 "Guess the citation nesting on the current line.
1356 If nesting cannot be guessed, nil is returned. Optional STRING if
1357 supplied, is used instead of the line point is on in the current
1358 buffer."
1359 (let ((start 0)
1360 (string (or string (buffer-substring (line-beginning-position)
1361 (line-end-position))))
1362 nesting)
1363 (and
1364 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1365 (setq start (match-end 0))
1366 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1367 (setq nesting (match-string 0 string)
1368 start (match-end 0))
1369 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1370 nesting)))
1372 (defun sc-add-citation-level ()
1373 "Add a citation level for nested citation style w/ coercion."
1374 (let* ((nesting (sc-guess-nesting))
1375 (citation (make-string (1+ (length nesting))
1376 (string-to-char sc-citation-delimiter)))
1377 (prefix (concat sc-citation-leader citation sc-citation-separator)))
1378 (if (looking-at (sc-cite-regexp ""))
1379 (delete-region (match-beginning 0) (match-end 0)))
1380 (insert prefix)
1381 (sc-fill-if-different prefix)))
1383 (defun sc-cite-line (&optional citation)
1384 "Cite a single line of uncited text.
1385 Optional CITATION overrides any citation automatically selected."
1386 (if sc-fixup-whitespace-p
1387 (fixup-whitespace))
1388 (let ((prefix (or citation
1389 (cdr (assoc "sc-citation" sc-mail-info))
1390 sc-default-attribution)))
1391 (insert prefix)
1392 (sc-fill-if-different prefix))
1393 nil)
1395 (defun sc-uncite-line ()
1396 "Remove citation from current line."
1397 (let ((cited (looking-at (sc-cite-regexp))))
1398 (if cited
1399 (delete-region (match-beginning 0) (match-end 0))))
1400 nil)
1402 (defun sc-recite-line (regexp)
1403 "Remove citation matching REGEXP from current line and recite line."
1404 (let ((cited (looking-at (concat "^" regexp)))
1405 (prefix (cdr (assoc "sc-citation" sc-mail-info))))
1406 (if cited
1407 (delete-region (match-beginning 0) (match-end 0)))
1408 (insert (or prefix sc-default-attribution))
1409 (sc-fill-if-different prefix))
1410 nil)
1412 ;; interactive functions
1413 (defun sc-cite-region (start end &optional confirm-p interactive)
1414 "Cite a region delineated by START and END.
1415 If optional CONFIRM-P is non-nil, the attribution is confirmed before
1416 its use in the citation string. This function first runs
1417 `sc-pre-cite-hook'.
1419 When called interactively, the optional arg INTERACTIVE is non-nil,
1420 and that means call `sc-select-attribution' too."
1421 (interactive "r\nP\np")
1422 (undo-boundary)
1423 (let ((frame (sc-scan-info-alist sc-cite-frame-alist))
1424 (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
1425 (if (and frame (symbolp frame))
1426 (setq frame (symbol-value frame)))
1427 (or frame (setq frame sc-default-cite-frame))
1428 (run-hooks 'sc-pre-cite-hook)
1429 (if interactive
1430 (sc-select-attribution))
1431 (regi-interpret frame start end)))
1433 (defun sc-uncite-region (start end)
1434 "Uncite a region delineated by START and END.
1435 First runs `sc-pre-uncite-hook'."
1436 (interactive "r")
1437 (undo-boundary)
1438 (let ((frame (sc-scan-info-alist sc-uncite-frame-alist)))
1439 (if (and frame (symbolp frame))
1440 (setq frame (symbol-value frame)))
1441 (or frame (setq frame sc-default-uncite-frame))
1442 (run-hooks 'sc-pre-uncite-hook)
1443 (regi-interpret frame start end)))
1445 (defun sc-recite-region (start end)
1446 "Recite a region delineated by START and END.
1447 First runs `sc-pre-recite-hook'."
1448 (interactive "r")
1449 (let ((sc-confirm-always-p t))
1450 (sc-select-attribution))
1451 (undo-boundary)
1452 (let ((frame (sc-scan-info-alist sc-recite-frame-alist)))
1453 (if (and frame (symbolp frame))
1454 (setq frame (symbol-value frame)))
1455 (or frame (setq frame sc-default-recite-frame))
1456 (run-hooks 'sc-pre-recite-hook)
1457 (regi-interpret frame start end)))
1460 ;; ======================================================================
1461 ;; building headers
1463 (defun sc-hdr (prefix field &optional sep return-nil-p)
1464 "Returns a concatenation of PREFIX and FIELD.
1465 If FIELD is not a string or is the empty string, the empty string will
1466 be returned. Optional third argument SEP is concatenated on the end if
1467 it is a string. Returns empty string, unless optional RETURN-NIL-P is
1468 non-nil."
1469 (if (and (stringp field)
1470 (not (string= field "")))
1471 (concat prefix field (or sep ""))
1472 (and (not return-nil-p) "")))
1474 (defun sc-whofrom ()
1475 "Return the value of (sc-mail-field \"from\") or nil."
1476 (let ((sc-mumble nil))
1477 (sc-mail-field "from")))
1479 (defun sc-no-header ()
1480 "Does nothing. Use this instead of nil to get a blank header."
1483 (declare-function mh-in-header-p "mh-utils" ())
1485 (defun sc-no-blank-line-or-header ()
1486 "Similar to `sc-no-header' except it removes the preceding blank line."
1487 (and (not (bobp))
1488 (eolp)
1489 (progn (forward-line -1)
1490 (or (= (point)
1491 (save-excursion
1492 (rfc822-goto-eoh)
1493 (line-beginning-position 2)))
1494 (and (eq major-mode 'mh-letter-mode)
1495 (mh-in-header-p))))
1496 (progn
1497 (forward-line)
1498 (kill-line))))
1500 (defun sc-header-on-said ()
1501 "\"On <date>, <from> said:\" unless:
1502 1. the \"from\" field cannot be found, in which case nothing is inserted;
1503 2. the \"date\" field is missing in which case only the from part is printed."
1504 (let ((sc-mumble "")
1505 (whofrom (sc-whofrom)))
1506 (if whofrom
1507 (insert sc-reference-tag-string
1508 (sc-hdr "On " (sc-mail-field "date") ", ")
1509 whofrom " said:\n"))))
1511 (defun sc-header-inarticle-writes ()
1512 "\"In article <message-id>, <from> writes:\"
1513 Treats \"message-id\" and \"from\" fields similar to `sc-header-on-said'."
1514 (let ((sc-mumble "")
1515 (whofrom (sc-mail-field "from")))
1516 (if whofrom
1517 (insert sc-reference-tag-string
1518 (sc-hdr "In article " (sc-mail-field "message-id") ", ")
1519 whofrom " writes:\n"))))
1521 (defun sc-header-regarding-adds ()
1522 "\"Regarding <subject>; <from> adds:\"
1523 Treats \"subject\" and \"from\" fields similar to `sc-header-on-said'."
1524 (let ((sc-mumble "")
1525 (whofrom (sc-whofrom)))
1526 (if whofrom
1527 (insert sc-reference-tag-string
1528 (sc-hdr "Regarding " (sc-mail-field "subject") "; ")
1529 whofrom " adds:\n"))))
1531 (defun sc-header-attributed-writes ()
1532 "\"<sc-attribution>\" == <sc-author> <address> writes:
1533 Treats these fields in a similar manner to `sc-header-on-said'."
1534 (let ((sc-mumble "")
1535 (whofrom (sc-whofrom)))
1536 (if whofrom
1537 (insert sc-reference-tag-string
1538 (sc-hdr "\"" (sc-mail-field "sc-attribution") "\" == ")
1539 (sc-hdr "" (sc-mail-field "sc-author") " ")
1540 (or (sc-hdr "<" (sc-mail-field "sc-from-address") ">" t)
1541 (sc-hdr "<" (sc-mail-field "sc-reply-address") ">" t)
1543 " writes:\n"))))
1545 (defun sc-header-author-writes ()
1546 "<sc-author> writes:"
1547 (let ((sc-mumble "")
1548 (whofrom (sc-whofrom)))
1549 (if whofrom
1550 (insert sc-reference-tag-string
1551 (sc-hdr "" (sc-mail-field "sc-author"))
1552 " writes:\n"))))
1554 (defun sc-header-verbose ()
1555 "Very verbose, some say gross."
1556 (let ((sc-mumble "")
1557 (whofrom (sc-whofrom))
1558 (tag sc-reference-tag-string))
1559 (if whofrom
1560 (insert (sc-hdr (concat tag "On ") (sc-mail-field "date") ",\n")
1561 (or (sc-hdr tag (sc-mail-field "sc-author") "\n" t)
1562 (concat tag whofrom "\n"))
1563 (sc-hdr (concat tag "from the organization of ")
1564 (sc-mail-field "organization") "\n")
1565 (let ((rtag (concat tag "who can be reached at: ")))
1566 (or (sc-hdr rtag (sc-mail-field "sc-from-address") "\n" t)
1567 (sc-hdr rtag (sc-mail-field "sc-reply-address") "\n" t)
1568 ""))
1569 (sc-hdr
1570 (concat tag "(whose comments are cited below with \"")
1571 (sc-mail-field "sc-citation") "\"),\n")
1572 (sc-hdr (concat tag "had this to say in article ")
1573 (sc-mail-field "message-id") "\n")
1574 (sc-hdr (concat tag "in newsgroups ")
1575 (sc-mail-field "newsgroups") "\n")
1576 (sc-hdr (concat tag "concerning the subject of ")
1577 (sc-mail-field "subject") "\n")
1578 (sc-hdr (concat tag "(see ")
1579 (sc-mail-field "references")
1580 " for more details)\n")))))
1583 ;; ======================================================================
1584 ;; header rewrites
1586 (defconst sc-electric-bufname " *sc-erefs* "
1587 "Supercite electric reference mode's buffer name.")
1588 (defvar sc-eref-style 0
1589 "Current electric reference style.")
1591 (defun sc-valid-index-p (index)
1592 "Returns INDEX if it is a valid index into `sc-rewrite-header-list'.
1593 Otherwise returns nil."
1594 ;; a number, and greater than or equal to zero
1595 ;; less than or equal to the last index
1596 (and (natnump index)
1597 (< index (length sc-rewrite-header-list))
1598 index))
1600 (defun sc-eref-insert-selected (&optional nomsg)
1601 "Insert the selected reference header in the current buffer.
1602 Optional NOMSG, if non-nil, inhibits printing messages, unless an
1603 error occurs."
1604 (let ((ref (nth sc-eref-style sc-rewrite-header-list)))
1605 (condition-case err
1606 (progn
1607 (eval ref)
1608 (let ((lines (count-lines (point-min) (point-max))))
1609 (or nomsg (message "Ref header %d [%d line%s]: %s"
1610 sc-eref-style lines
1611 (if (= lines 1) "" "s")
1612 ref))))
1613 (void-function
1614 (progn (message
1615 "Symbol's function definition is void: %s (Header %d)"
1616 (cadr err) sc-eref-style)
1617 (beep))))))
1619 (defun sc-electric-mode (&optional style)
1620 "Mode for viewing Supercite reference headers. Commands are:
1621 \n\\{sc-electric-mode-map}
1623 `sc-electric-mode' is not intended to be run interactively, but rather
1624 accessed through Supercite's electric reference feature. See
1625 `sc-insert-reference' for more details. Optional STYLE is the initial
1626 header style to use, unless not supplied or invalid, in which case
1627 `sc-preferred-header-style' is used."
1629 (let ((info sc-mail-info))
1631 (setq sc-eref-style
1632 (or (sc-valid-index-p style)
1633 (sc-valid-index-p sc-preferred-header-style)
1636 (get-buffer-create sc-electric-bufname)
1637 ;; set up buffer and enter command loop
1638 (save-excursion
1639 (save-window-excursion
1640 (pop-to-buffer sc-electric-bufname)
1641 (kill-all-local-variables)
1642 (let ((sc-mail-info info)
1643 (buffer-read-only t)
1644 (mode-name "SC Electric Refs")
1645 (major-mode 'sc-electric-mode))
1646 (use-local-map sc-electric-mode-map)
1647 (sc-eref-show sc-eref-style)
1648 (run-mode-hooks 'sc-electric-mode-hook)
1649 (recursive-edit))))
1651 (and sc-eref-style
1652 (sc-eref-insert-selected))
1653 (kill-buffer sc-electric-bufname)))
1655 ;; functions for electric reference mode
1656 (defun sc-eref-show (index)
1657 "Show reference INDEX in `sc-rewrite-header-list'."
1658 (let ((msg "No %ing reference headers in list.")
1659 (last (length sc-rewrite-header-list)))
1660 (setq sc-eref-style
1661 (cond
1662 ((sc-valid-index-p index) index)
1663 ((< index 0)
1664 (if sc-electric-circular-p
1665 (1- last)
1666 (progn (error msg "preced") 0)))
1667 ((>= index last)
1668 (if sc-electric-circular-p
1670 (progn (error msg "follow") (1- last))))))
1671 (with-current-buffer sc-electric-bufname
1672 (let ((inhibit-read-only t))
1673 (erase-buffer)
1674 (goto-char (point-min))
1675 (sc-eref-insert-selected)
1676 ;; now shrink the window to just contain the electric reference
1677 ;; header.
1678 (let ((hdrlines (count-lines (point-min) (point-max)))
1679 (winlines (1- (window-height))))
1680 (if (/= hdrlines winlines)
1681 (if (> hdrlines winlines)
1682 ;; we have to enlarge the window
1683 (enlarge-window (- hdrlines winlines))
1684 ;; we have to shrink the window
1685 (shrink-window (- winlines (max hdrlines
1686 window-min-height))))))))))
1688 (defun sc-eref-next ()
1689 "Display next reference in other buffer."
1690 (interactive)
1691 (sc-eref-show (1+ sc-eref-style)))
1693 (defun sc-eref-prev ()
1694 "Display previous reference in other buffer."
1695 (interactive)
1696 (sc-eref-show (1- sc-eref-style)))
1698 (defun sc-eref-setn ()
1699 "Set reference header selected as preferred."
1700 (interactive)
1701 (setq sc-preferred-header-style sc-eref-style)
1702 (message "Preferred reference style set to header %d." sc-eref-style))
1704 (defun sc-eref-goto (refnum)
1705 "Show reference style indexed by REFNUM.
1706 If REFNUM is an invalid index, don't go to that reference and return
1707 nil."
1708 (interactive "NGoto Reference: ")
1709 (if (sc-valid-index-p refnum)
1710 (sc-eref-show refnum)
1711 (error "Invalid reference: %d. (Range: [%d .. %d])"
1712 refnum 0 (1- (length sc-rewrite-header-list)))))
1714 (defun sc-eref-jump ()
1715 "Set reference header to preferred header."
1716 (interactive)
1717 (sc-eref-show sc-preferred-header-style))
1719 (defun sc-eref-abort ()
1720 "Exit from electric reference mode without inserting reference."
1721 (interactive)
1722 (setq sc-eref-style nil)
1723 (exit-recursive-edit))
1725 (defun sc-eref-exit ()
1726 "Exit from electric reference mode and insert selected reference."
1727 (interactive)
1728 (exit-recursive-edit))
1730 (defun sc-insert-reference (arg)
1731 "Insert, at point, a reference header in the body of the reply.
1732 Numeric ARG indicates which header style from `sc-rewrite-header-list'
1733 to use when rewriting the header. No supplied ARG indicates use of
1734 `sc-preferred-header-style'.
1736 With just `\\[universal-argument]', electric reference insert mode is
1737 entered, regardless of the value of `sc-electric-references-p'. See
1738 `sc-electric-mode' for more information."
1739 (interactive "P")
1740 (if (consp arg)
1741 (sc-electric-mode)
1742 (let ((preference (or (sc-valid-index-p arg)
1743 (sc-valid-index-p sc-preferred-header-style)
1744 sc-preferred-header-style
1745 0)))
1746 (if sc-electric-references-p
1747 (sc-electric-mode preference)
1748 (sc-eref-insert-selected t)))))
1751 ;; ======================================================================
1752 ;; variable toggling
1754 (defun sc-raw-mode-toggle ()
1755 "Toggle, in one fell swoop, two important SC variables:
1756 `sc-fixup-whitespace-p' and `sc-auto-fill-region-p'"
1757 (interactive)
1758 (setq sc-fixup-whitespace-p (not sc-fixup-whitespace-p)
1759 sc-auto-fill-region-p (not sc-auto-fill-region-p))
1760 (force-mode-line-update))
1762 (defun sc-toggle-var (variable)
1763 "Boolean toggle VARIABLE's value.
1764 VARIABLE must be a bound symbol. nil values change to t, non-nil
1765 values are changed to nil."
1766 (message "%s changed from %s to %s"
1767 variable (symbol-value variable)
1768 (set variable (not (symbol-value variable)))))
1770 (defun sc-set-variable (var)
1771 "Set the Supercite VARIABLE.
1772 This function mimics `set-variable', except that the variable to set
1773 is determined non-interactively. The value is queried for in the
1774 minibuffer exactly the same way that `set-variable' does it.
1776 You can see the current value of the variable when the minibuffer is
1777 querying you by typing `C-h'. Note that the format is changed
1778 slightly from that used by `set-variable' -- the current value is
1779 printed just after the variable's name instead of at the bottom of the
1780 help window."
1781 (let* ((minibuffer-help-form '(funcall myhelp))
1782 (myhelp
1783 (lambda ()
1784 (with-output-to-temp-buffer "*Help*"
1785 (prin1 var)
1786 (if (boundp var)
1787 (let ((print-length 20))
1788 (princ "\t(Current value: ")
1789 (prin1 (symbol-value var))
1790 (princ ")")))
1791 (princ "\n\nDocumentation:\n")
1792 (princ (substring (documentation-property
1794 'variable-documentation)
1796 (with-current-buffer standard-output
1797 (help-mode))
1798 nil))))
1799 (set var (eval-minibuffer (format "Set %s to value: " var)))))
1801 (defmacro sc-toggle-symbol (rootname)
1802 `(defun ,(intern (concat "sc-T-" rootname)) ()
1803 (interactive)
1804 (sc-toggle-var ',(intern (concat "sc-" rootname "-p")))))
1806 (defmacro sc-setvar-symbol (rootname)
1807 `(defun ,(intern (concat "sc-S-" rootname)) ()
1808 (interactive)
1809 (sc-set-variable ',(intern (concat "sc-" rootname)))))
1811 (sc-toggle-symbol "confirm-always")
1812 (sc-toggle-symbol "downcase")
1813 (sc-toggle-symbol "electric-references")
1814 (sc-toggle-symbol "auto-fill-region")
1815 (sc-toggle-symbol "mail-nuke-blank-lines")
1816 (sc-toggle-symbol "nested-citation")
1817 (sc-toggle-symbol "electric-circular")
1818 (sc-toggle-symbol "use-only-preferences")
1819 (sc-toggle-symbol "fixup-whitespace")
1821 (sc-setvar-symbol "preferred-attribution-list")
1822 (sc-setvar-symbol "preferred-header-style")
1823 (sc-setvar-symbol "mail-nuke-mail-headers")
1824 (sc-setvar-symbol "mail-header-nuke-list")
1825 (sc-setvar-symbol "cite-region-limit")
1827 (defun sc-T-describe ()
1830 Supercite provides a number of key bindings which simplify the process
1831 of setting or toggling certain variables controlling its operation.
1833 Note on function names in this list: all functions of the form
1834 `sc-S-<name>' actually call `sc-set-variable' on the corresponding
1835 `sc-<name>' variable. All functions of the form `sc-T-<name>' call
1836 `sc-toggle-var' on the corresponding `sc-<name>-p' variable.
1838 \\{sc-T-keymap}"
1839 (interactive)
1840 (describe-function 'sc-T-describe))
1843 ;; ======================================================================
1844 ;; published interface to mail and news readers
1846 (define-minor-mode sc-minor-mode nil
1847 :group 'supercite
1848 :lighter (" SC" (sc-auto-fill-region-p
1849 (":f" (sc-fixup-whitespace-p "w"))
1850 (sc-fixup-whitespace-p ":w")))
1851 :keymap `((,sc-mode-map-prefix . ,sc-mode-map)))
1853 ;;;###autoload
1854 (defun sc-cite-original ()
1855 "Workhorse citing function which performs the initial citation.
1856 This is callable from the various mail and news readers' reply
1857 function according to the agreed upon standard. See the associated
1858 info node `(SC)Top' for more details.
1859 `sc-cite-original' does not do any yanking of the
1860 original message but it does require a few things:
1862 1) The reply buffer is the current buffer.
1864 2) The original message has been yanked and inserted into the
1865 reply buffer.
1867 3) Verbose mail headers from the original message have been
1868 inserted into the reply buffer directly before the text of the
1869 original message.
1871 4) Point is at the beginning of the verbose headers.
1873 5) Mark is at the end of the body of text to be cited.
1875 The region need not be active (and typically isn't when this
1876 function is called). Also, the hook `sc-pre-hook' is run before,
1877 and `sc-post-hook' is run after the guts of this function."
1878 (run-hooks 'sc-pre-hook)
1880 (sc-minor-mode 1)
1882 (undo-boundary)
1884 ;; grab point and mark since the region is probably not active when
1885 ;; this function gets automatically called. we want point to be a
1886 ;; mark so any deleting before point works properly
1887 (let* ((zmacs-regions nil) ; for XEemacs
1888 (mark-active t) ; for Emacs
1889 (point (point-marker))
1890 (mark (copy-marker (mark-marker))))
1892 ;; make sure point comes before mark, not all functions are
1893 ;; interactive "r"
1894 (if (< mark point)
1895 (let ((tmp point))
1896 (setq point mark
1897 mark tmp)))
1899 ;; first process mail headers, and populate sc-mail-info
1900 (sc-mail-process-headers point mark)
1902 ;; now get possible attributions
1903 (sc-attribs-chop-address (or (sc-mail-field "from")
1904 (sc-mail-field "reply")
1905 (sc-mail-field "reply-to")
1906 (sc-mail-field "sender")))
1907 ;; select the attribution
1908 (sc-select-attribution)
1910 ;; cite the region, but first check the value of sc-cite-region-limit
1911 (let ((linecnt (count-lines point mark)))
1912 (and sc-cite-region-limit
1913 (if (or (not (numberp sc-cite-region-limit))
1914 (<= linecnt sc-cite-region-limit))
1915 (progn
1916 ;; cite the region and insert the header rewrite
1917 (sc-cite-region point mark)
1918 (goto-char point)
1919 (let ((sc-eref-style (or sc-preferred-header-style 0)))
1920 (if sc-electric-references-p
1921 (sc-electric-mode sc-eref-style)
1922 (sc-eref-insert-selected t))))
1923 (beep)
1924 (message
1925 "Region not cited. %d lines exceeds sc-cite-region-limit: %d"
1926 linecnt sc-cite-region-limit))))
1928 ;; finally, free the point-marker
1929 (set-marker point nil)
1930 (set-marker mark nil))
1931 (run-hooks 'sc-post-hook))
1934 ;; ======================================================================
1935 ;; bug reporting and miscellaneous commands
1937 (defun sc-open-line (arg)
1938 "Like `open-line', but insert the citation prefix at the front of the line.
1939 With numeric ARG, inserts that many new lines."
1940 (interactive "p")
1941 (save-excursion
1942 (let ((start (point))
1943 (prefix (or (progn (beginning-of-line)
1944 (if (looking-at (sc-cite-regexp))
1945 (match-string 0)))
1946 "")))
1947 (goto-char start)
1948 (open-line arg)
1949 (forward-line 1)
1950 (while (< 0 arg)
1951 (insert prefix)
1952 (forward-line 1)
1953 (setq arg (1- arg))))))
1955 (defun sc-insert-citation (arg)
1956 "Insert citation string at beginning of current line if not already cited.
1957 With `\\[universal-argument]' insert citation even if line is already
1958 cited."
1959 (interactive "P")
1960 (save-excursion
1961 (beginning-of-line)
1962 (if (or (not (looking-at (sc-cite-regexp)))
1963 (looking-at "^[ \t]*$")
1964 (consp arg))
1965 (insert (sc-mail-field "sc-citation"))
1966 (error "Line is already cited"))))
1968 (defun sc-describe ()
1969 "Read the Supercite info node."
1970 (interactive)
1971 (info "(SC)top"))
1974 ;; useful stuff
1975 (provide 'supercite)
1976 (run-hooks 'sc-load-hook)
1978 ;;; supercite.el ends here