(mail-mode): Doc fix. From Simon Josefsson <jas@extundo.com>.
[bpt/emacs.git] / lisp / mail / supercite.el
1 ;;; supercite.el --- minor mode for citing mail and news replies
2
3 ;; Copyright (C) 1993, 1997 Free Software Foundation, Inc.
4
5 ;; Author: 1993 Barry A. Warsaw, Century Computing, Inc. <bwarsaw@cen.com>
6 ;; Maintainer: Mark Senn <mds@ecn.purdue.edu>
7 ;; Created: February 1993
8 ;; Last Modified: 1993/09/22 18:58:46
9 ;; Keywords: mail, news
10
11 ;; supercite.el revision: 3.54
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
29
30 ;; LCD Archive Entry
31 ;; supercite|Barry A. Warsaw|supercite-help@python.org
32 ;; |Mail and news reply citation package
33 ;; |1993/09/22 18:58:46|3.1|
34
35 ;;; Commentary:
36
37 ;;; Code:
38
39 \f
40 (require 'regi)
41 (require 'sendmail) ;; For mail-header-end.
42
43 ;; start user configuration variables
44 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
45
46 (defgroup supercite nil
47 "Supercite package"
48 :prefix "sc-"
49 :group 'mail
50 :group 'news)
51
52 (defgroup supercite-frames nil
53 "Supercite (regi) frames"
54 :prefix "sc-"
55 :group 'supercite)
56
57 (defgroup supercite-attr nil
58 "Supercite attributions"
59 :prefix "sc-"
60 :group 'supercite)
61
62 (defgroup supercite-cite nil
63 "Supercite citings"
64 :prefix "sc-"
65 :group 'supercite)
66
67 (defgroup supercite-hooks nil
68 "Hooking into supercite"
69 :prefix "sc-"
70 :group 'supercite)
71
72 (defcustom sc-auto-fill-region-p t
73 "*If non-nil, automatically fill each paragraph after it has been cited."
74 :type 'boolean
75 :group 'supercite)
76
77 (defcustom sc-blank-lines-after-headers 1
78 "*Number of blank lines to leave after mail headers have been nuked.
79 Set to nil, to use whatever blank lines happen to occur naturally."
80 :type '(choice (const :tag "leave" nil)
81 integer)
82 :group 'supercite)
83
84 (defcustom sc-citation-leader " "
85 "*String comprising first part of a citation."
86 :type 'string
87 :group 'supercite-cite)
88
89 (defcustom sc-citation-delimiter ">"
90 "*String comprising third part of a citation.
91 This string is used in both nested and non-nested citations."
92 :type 'string
93 :group 'supercite-cite)
94
95 (defcustom sc-citation-separator " "
96 "*String comprising fourth and last part of a citation."
97 :type 'string
98 :group 'supercite-cite)
99
100 (defcustom sc-citation-leader-regexp "[ \t]*"
101 "*Regexp describing citation leader for a cited line.
102 This should NOT have a leading `^' character."
103 :type 'regexp
104 :group 'supercite-cite)
105
106 ;; Nemacs and Mule users note: please see the texinfo manual for
107 ;; suggestions on setting these variables.
108 (defcustom sc-citation-root-regexp "[-._[:alnum:]]*"
109 "*Regexp describing variable root part of a citation for a cited line.
110 This should NOT have a leading `^' character. See also
111 `sc-citation-nonnested-root-regexp'."
112 :type 'regexp
113 :group 'supercite-cite)
114
115 (defcustom sc-citation-nonnested-root-regexp "[-._[:alnum:]]+"
116 "*Regexp describing the variable root part of a nested citation.
117 This should NOT have a leading `^' character. This variable is
118 related to `sc-citation-root-regexp' but whereas that variable
119 describes both nested and non-nested citation roots, this variable
120 describes only nested citation roots."
121 :type 'regexp
122 :group 'supercite-cite)
123
124 (defcustom sc-citation-delimiter-regexp "[>]+"
125 "*Regexp describing citation delimiter for a cited line.
126 This should NOT have a leading `^' character."
127 :type 'regexp
128 :group 'supercite-cite)
129
130 (defcustom sc-citation-separator-regexp "[ \t]*"
131 "*Regexp describing citation separator for a cited line.
132 This should NOT have a leading `^' character."
133 :type 'regexp
134 :group 'supercite-cite)
135
136 (defcustom sc-cite-blank-lines-p nil
137 "*If non-nil, put a citation on blank lines."
138 :type 'boolean
139 :group 'supercite-cite)
140
141 (defcustom sc-cite-frame-alist '()
142 "*Alist for frame selection during citing.
143 Each element of this list has the following form:
144 (INFOKEY ((REGEXP . FRAME)
145 (REGEXP . FRAME)
146 (...)))
147
148 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
149 expression to match against the INFOKEY's value. FRAME is a citation
150 frame, or a variable containing a citation frame."
151 :type '(repeat (list symbol (repeat (cons regexp
152 (choice (repeat (repeat sexp))
153 symbol)))))
154 :group 'supercite-frames)
155
156 (defcustom sc-uncite-frame-alist '()
157 "*Alist for frame selection during unciting.
158 See the variable `sc-cite-frame-alist' for details."
159 :type '(repeat (list symbol (repeat (cons regexp
160 (choice (repeat (repeat sexp))
161 symbol)))))
162 :group 'supercite-frames)
163
164 (defcustom sc-recite-frame-alist '()
165 "*Alist for frame selection during reciting.
166 See the variable `sc-cite-frame-alist' for details."
167 :type '(repeat (list symbol (repeat (cons regexp
168 (choice (repeat (repeat sexp))
169 symbol)))))
170 :group 'supercite-frames)
171
172 (defcustom sc-default-cite-frame
173 '(;; initialize fill state and temporary variables when entering
174 ;; frame. this makes things run much faster
175 (begin (progn
176 (sc-fill-if-different)
177 (setq sc-tmp-nested-regexp (sc-cite-regexp "")
178 sc-tmp-nonnested-regexp (sc-cite-regexp)
179 sc-tmp-dumb-regexp
180 (concat "\\("
181 (sc-cite-regexp "")
182 "\\)"
183 (sc-cite-regexp sc-citation-nonnested-root-regexp))
184 )))
185 ;; blank lines mean paragraph separators, so fill the last cited
186 ;; paragraph, unless sc-cite-blank-lines-p is non-nil, in which
187 ;; case we treat blank lines just like any other line.
188 ("^[ \t]*$" (if sc-cite-blank-lines-p
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 )
213 "*Default REGI frame for citing a region."
214 :type '(repeat (repeat sexp))
215 :group 'supercite-frames)
216
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 )
223 "*Default REGI frame for unciting a region."
224 :type '(repeat (repeat sexp))
225 :group 'supercite-frames)
226
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 )
239 "*Default REGI frame for reciting a region."
240 :type '(repeat (repeat sexp))
241 :group 'supercite-frames)
242
243 (defcustom sc-cite-region-limit t
244 "*This variable controls automatic citation of yanked text.
245 Legal values are:
246
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'.
254
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)
263
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)
268
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)
286
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)
295
296 (defcustom sc-fixup-whitespace-p nil
297 "*If non-nil, delete all leading white space before citing."
298 :type 'boolean
299 :group 'supercite)
300
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)
313
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)
322
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).
331
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)
340
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)
346
347 (defcustom sc-nuke-mail-headers 'all
348 "*Controls mail header nuking.
349 Used in conjunction with `sc-nuke-mail-header-list'. Legal values are:
350
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)
358
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)
365
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.
376
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).
384
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'.
389
390 Barring error conditions, the following preferences are always present
391 in the attribution alist:
392
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
399 ...
400
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)
407
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:
411
412 (INFOKEY ((REGEXP . ATTRIBUTION)
413 (REGEXP . ATTRIBUTION)
414 (...)))
415
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 its 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
430 (defcustom sc-attribs-preselect-hook nil
431 "*Hook to run before selecting an attribution."
432 :type 'hook
433 :group 'supercite-attr
434 :group 'supercite-hooks)
435 (defcustom sc-attribs-postselect-hook nil
436 "*Hook to run after selecting an attribution, but before confirmation."
437 :type 'hook
438 :group 'supercite-attr
439 :group 'supercite-hooks)
440
441 (defcustom sc-pre-cite-hook nil
442 "*Hook to run before citing a region of text."
443 :type 'hook
444 :group 'supercite-cite
445 :group 'supercite-hooks)
446 (defcustom sc-pre-uncite-hook nil
447 "*Hook to run before unciting a region of text."
448 :type 'hook
449 :group 'supercite-cite
450 :group 'supercite-hooks)
451 (defcustom sc-pre-recite-hook nil
452 "*Hook to run before reciting a region of text."
453 :type 'hook
454 :group 'supercite-cite
455 :group 'supercite-hooks)
456
457 (defcustom sc-preferred-header-style 4
458 "*Index into `sc-rewrite-header-list' specifying preferred header style.
459 Index zero accesses the first function in the list."
460 :type 'integer
461 :group 'supercite)
462
463 (defcustom sc-reference-tag-string ">>>>> "
464 "*String used at the beginning of built-in reference headers."
465 :type 'string
466 :group 'supercite)
467
468 (defcustom sc-rewrite-header-list
469 '((sc-no-header)
470 (sc-header-on-said)
471 (sc-header-inarticle-writes)
472 (sc-header-regarding-adds)
473 (sc-header-attributed-writes)
474 (sc-header-author-writes)
475 (sc-header-verbose)
476 (sc-no-blank-line-or-header)
477 )
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
485 (defcustom sc-titlecue-regexp "\\s +-+\\s +"
486 "*Regular expression describing the separator between names and titles.
487 Set to nil to treat entire field as a name."
488 :type '(choice (const :tag "entire field as name" nil)
489 regexp)
490 :group 'supercite-attr)
491
492 (defcustom sc-use-only-preference-p nil
493 "*Controls what happens when the preferred attribution cannot be found.
494 If non-nil, then `sc-default-attribution' will be used. If nil, then
495 some secondary scheme will be employed to find a suitable attribution
496 string."
497 :type 'boolean
498 :group 'supercite-attr)
499
500 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
501 ;; end user configuration variables
502 \f
503 (defconst sc-version "3.1"
504 "Supercite version number.")
505 (defconst sc-help-address "bug-supercite@gnu.org"
506 "Address accepting submissions of bug reports.")
507
508 (defvar sc-mail-info nil
509 "Alist of mail header information gleaned from reply buffer.")
510 (defvar sc-attributions nil
511 "Alist of attributions for use when citing.")
512
513 (defconst sc-emacs-features
514 (let ((version 'v18)
515 (flavor 'GNU))
516 (if (or
517 (string= (substring emacs-version 0 2) "19")
518 (string= (substring emacs-version 0 2) "20"))
519 (setq version 'v19))
520 (if (string-match "Lucid" emacs-version)
521 (setq flavor 'Lucid))
522 ;; cobble up list
523 (list version flavor))
524 "A list describing what version of Emacs we're running on.
525 Known flavors are:
526
527 Emacs 18 : (v18 GNU)
528 Emacs 19 or 20 : (v19 GNU)
529 Lucid 19 or 20 : (v19 Lucid)")
530
531
532 (defvar sc-tmp-nested-regexp nil
533 "Temporary regepx describing nested citations.")
534 (defvar sc-tmp-nonnested-regexp nil
535 "Temporary regexp describing non-nested citations.")
536 (defvar sc-tmp-dumb-regexp nil
537 "Temp regexp describing non-nested citation cited with a nesting citer.")
538
539 (defvar sc-minor-mode nil
540 "Supercite minor mode on flag.")
541 (defvar sc-mode-string " SC"
542 "Supercite minor mode string.")
543
544 (make-variable-buffer-local 'sc-mail-info)
545 (make-variable-buffer-local 'sc-attributions)
546 (make-variable-buffer-local 'sc-minor-mode)
547
548 \f
549 ;; ======================================================================
550 ;; supercite keymaps
551
552 (defvar sc-mode-map-prefix "\C-c\C-p"
553 "*Key binding to install Supercite keymap.
554 If this is nil, Supercite keymap is not installed.")
555
556 (defvar sc-T-keymap ()
557 "Keymap for sub-keymap of setting and toggling functions.")
558 (if sc-T-keymap
559 ()
560 (setq sc-T-keymap (make-sparse-keymap))
561 (define-key sc-T-keymap "a" 'sc-S-preferred-attribution-list)
562 (define-key sc-T-keymap "b" 'sc-T-mail-nuke-blank-lines)
563 (define-key sc-T-keymap "c" 'sc-T-confirm-always)
564 (define-key sc-T-keymap "d" 'sc-T-downcase)
565 (define-key sc-T-keymap "e" 'sc-T-electric-references)
566 (define-key sc-T-keymap "f" 'sc-T-auto-fill-region)
567 (define-key sc-T-keymap "h" 'sc-T-describe)
568 (define-key sc-T-keymap "l" 'sc-S-cite-region-limit)
569 (define-key sc-T-keymap "n" 'sc-S-mail-nuke-mail-headers)
570 (define-key sc-T-keymap "N" 'sc-S-mail-header-nuke-list)
571 (define-key sc-T-keymap "o" 'sc-T-electric-circular)
572 (define-key sc-T-keymap "p" 'sc-S-preferred-header-style)
573 (define-key sc-T-keymap "s" 'sc-T-nested-citation)
574 (define-key sc-T-keymap "u" 'sc-T-use-only-preferences)
575 (define-key sc-T-keymap "w" 'sc-T-fixup-whitespace)
576 (define-key sc-T-keymap "?" 'sc-T-describe)
577 )
578
579 (defvar sc-mode-map ()
580 "Keymap for Supercite quasi-mode.")
581 (if sc-mode-map
582 ()
583 (setq sc-mode-map (make-sparse-keymap))
584 (define-key sc-mode-map "c" 'sc-cite-region)
585 (define-key sc-mode-map "f" 'sc-mail-field-query)
586 (define-key sc-mode-map "g" 'sc-mail-process-headers)
587 (define-key sc-mode-map "h" 'sc-describe)
588 (define-key sc-mode-map "i" 'sc-insert-citation)
589 (define-key sc-mode-map "o" 'sc-open-line)
590 (define-key sc-mode-map "r" 'sc-recite-region)
591 (define-key sc-mode-map "\C-p" 'sc-raw-mode-toggle)
592 (define-key sc-mode-map "u" 'sc-uncite-region)
593 (define-key sc-mode-map "v" 'sc-version)
594 (define-key sc-mode-map "w" 'sc-insert-reference)
595 (define-key sc-mode-map "\C-t" sc-T-keymap)
596 (define-key sc-mode-map "\C-b" 'sc-submit-bug-report)
597 (define-key sc-mode-map "?" 'sc-describe)
598 )
599
600 (defvar sc-electric-mode-map ()
601 "Keymap for `sc-electric-mode' electric references mode.")
602 (if sc-electric-mode-map
603 nil
604 (setq sc-electric-mode-map (make-sparse-keymap))
605 (define-key sc-electric-mode-map "p" 'sc-eref-prev)
606 (define-key sc-electric-mode-map "n" 'sc-eref-next)
607 (define-key sc-electric-mode-map "s" 'sc-eref-setn)
608 (define-key sc-electric-mode-map "j" 'sc-eref-jump)
609 (define-key sc-electric-mode-map "x" 'sc-eref-abort)
610 (define-key sc-electric-mode-map "q" 'sc-eref-abort)
611 (define-key sc-electric-mode-map "\r" 'sc-eref-exit)
612 (define-key sc-electric-mode-map "\n" 'sc-eref-exit)
613 (define-key sc-electric-mode-map "g" 'sc-eref-goto)
614 (define-key sc-electric-mode-map "?" 'describe-mode)
615 (define-key sc-electric-mode-map "\C-h" 'describe-mode)
616 (define-key sc-electric-mode-map [f1] 'describe-mode)
617 (define-key sc-electric-mode-map [help] 'describe-mode)
618 )
619
620 (defvar sc-minibuffer-local-completion-map nil
621 "Keymap for minibuffer confirmation of attribution strings.")
622 (if sc-minibuffer-local-completion-map
623 ()
624 (setq sc-minibuffer-local-completion-map
625 (copy-keymap minibuffer-local-completion-map))
626 (define-key sc-minibuffer-local-completion-map "\C-t" 'sc-toggle-fn)
627 (define-key sc-minibuffer-local-completion-map " " 'self-insert-command))
628
629 (defvar sc-minibuffer-local-map nil
630 "Keymap for minibuffer confirmation of attribution strings.")
631 (if sc-minibuffer-local-map
632 ()
633 (setq sc-minibuffer-local-map (copy-keymap minibuffer-local-map))
634 (define-key sc-minibuffer-local-map "\C-t" 'sc-toggle-fn))
635
636 \f
637 ;; ======================================================================
638 ;; utility functions
639
640 (defun sc-completing-read (prompt table &optional predicate require-match
641 initial-contents history)
642 "Compatibility between Emacs 18 and 19 `completing-read'.
643 In version 18, the HISTORY argument is ignored."
644 (if (memq 'v19 sc-emacs-features)
645 (funcall 'completing-read prompt table predicate require-match
646 initial-contents history)
647 (funcall 'completing-read prompt table predicate require-match
648 (or (car-safe initial-contents)
649 initial-contents))))
650
651 (defun sc-read-string (prompt &optional initial-contents history)
652 "Compatibility between Emacs 18 and 19 `read-string'.
653 In version 18, the HISTORY argument is ignored."
654 (if (memq 'v19 sc-emacs-features)
655 (read-string prompt initial-contents history)
656 (read-string prompt initial-contents)))
657
658 (if (fboundp 'match-string)
659 (defalias 'sc-submatch 'match-string)
660 (defun sc-submatch (matchnum &optional string)
661 "Returns `match-beginning' and `match-end' sub-expression for MATCHNUM.
662 If optional STRING is provided, take sub-expression using `substring'
663 of argument, otherwise use `buffer-substring' on current buffer. Note
664 that `match-data' must have already been generated and no error
665 checking is performed by this function."
666 (if string
667 (substring string (match-beginning matchnum) (match-end matchnum))
668 (buffer-substring (match-beginning matchnum) (match-end matchnum)))))
669
670 (if (fboundp 'member)
671 (defalias 'sc-member 'member)
672 (defun sc-member (elt list)
673 "Like `memq', but uses `equal' instead of `eq'.
674 Emacs19 has a builtin function `member' which does exactly this."
675 (catch 'elt-is-member
676 (while list
677 (if (equal elt (car list))
678 (throw 'elt-is-member list))
679 (setq list (cdr list))))))
680
681 ;; One day maybe Emacs will have this...
682 (if (fboundp 'string-text)
683 (defalias 'sc-string-text 'string-text)
684 (defun sc-string-text (string)
685 "Return STRING with all text properties removed."
686 (let ((string (copy-sequence string)))
687 (set-text-properties 0 (length string) nil string)
688 string)))
689
690 (defun sc-ask (alist)
691 "Ask a question in the minibuffer requiring a single character answer.
692 This function is kind of an extension of `y-or-n-p' where a single
693 letter is used to answer a question. Question is formed from ALIST
694 which has members of the form: (WORD . LETTER). WORD is the long
695 word form, while LETTER is the letter for selecting that answer. The
696 selected letter is returned, or nil if the question was not answered.
697 Note that WORD is a string and LETTER is a character. All LETTERs in
698 the list should be unique."
699 (let* ((prompt (concat
700 (mapconcat (function (lambda (elt) (car elt))) alist ", ")
701 "? ("
702 (mapconcat
703 (function
704 (lambda (elt) (char-to-string (cdr elt)))) alist "/")
705 ") "))
706 (p prompt)
707 (event
708 (if (memq 'Lucid sc-emacs-features)
709 (allocate-event)
710 nil)))
711 (while (stringp p)
712 (if (let ((cursor-in-echo-area t)
713 (inhibit-quit t))
714 (message "%s" p)
715 ;; lets be good neighbors and be compatible with all emacsen
716 (cond
717 ((memq 'v18 sc-emacs-features)
718 (setq event (read-char)))
719 ((memq 'Lucid sc-emacs-features)
720 (next-command-event event))
721 (t ; must be Emacs 19
722 (setq event (read-event))))
723 (prog1 quit-flag (setq quit-flag nil)))
724 (progn
725 (message "%s%s" p (single-key-description event))
726 (and (memq 'Lucid sc-emacs-features)
727 (deallocate-event event))
728 (setq quit-flag nil)
729 (signal 'quit '())))
730 (let ((char
731 (if (memq 'Lucid sc-emacs-features)
732 (let* ((key (and (key-press-event-p event) (event-key event)))
733 (char (and key (event-to-character event))))
734 char)
735 event))
736 elt)
737 (if char (setq char (downcase char)))
738 (cond
739 ((setq elt (rassq char alist))
740 (message "%s%s" p (car elt))
741 (setq p (cdr elt)))
742 ((and (memq 'Lucid sc-emacs-features)
743 (button-release-event-p event)) ; ignore them
744 nil)
745 (t
746 (message "%s%s" p (single-key-description event))
747 (if (memq 'Lucid sc-emacs-features)
748 (ding nil 'y-or-n-p)
749 (ding))
750 (discard-input)
751 (if (eq p prompt)
752 (setq p (concat "Try again. " prompt)))))))
753 (and (memq 'Lucid sc-emacs-features)
754 (deallocate-event event))
755 p))
756
757 (defun sc-scan-info-alist (alist)
758 "Find a match in the info alist that matches a regexp in ALIST."
759 (let ((sc-mumble "")
760 rtnvalue)
761 (while alist
762 (let* ((elem (car alist))
763 (infokey (car elem))
764 (infoval (sc-mail-field infokey))
765 (mlist (car (cdr elem))))
766 (while mlist
767 (let* ((ml-elem (car mlist))
768 (regexp (car ml-elem))
769 (thing (cdr ml-elem)))
770 (if (string-match regexp infoval)
771 ;; we found a match, time to return
772 (setq rtnvalue thing
773 mlist nil
774 alist nil)
775 ;; else we didn't find a match
776 (setq mlist (cdr mlist))
777 ))) ;end of mlist loop
778 (setq alist (cdr alist))
779 )) ;end of alist loop
780 rtnvalue))
781
782 \f
783 ;; ======================================================================
784 ;; extract mail field information from headers in reply buffer
785
786 ;; holder variables for bc happiness
787 (defvar sc-mail-headers-start nil
788 "Start of header fields.")
789 (defvar sc-mail-headers-end nil
790 "End of header fields.")
791 (defvar sc-mail-field-history nil
792 "For minibuffer completion on mail field queries.")
793 (defvar sc-mail-field-modification-history nil
794 "For minibuffer completion on mail field modifications.")
795 (defvar sc-mail-glom-frame
796 '((begin (setq sc-mail-headers-start (point)))
797 ("^x-attribution:[ \t]+.*$" (sc-mail-fetch-field t) nil t)
798 ("^\\S +:.*$" (sc-mail-fetch-field) nil t)
799 ("^$" (list 'abort '(step . 0)))
800 ("^[ \t]+" (sc-mail-append-field))
801 (sc-mail-warn-if-non-rfc822-p (sc-mail-error-in-mail-field))
802 (end (setq sc-mail-headers-end (point))))
803 "Regi frame for glomming mail header information.")
804
805 (eval-when-compile (defvar curline)) ; dynamic bondage
806
807 ;; regi functions
808 (defun sc-mail-fetch-field (&optional attribs-p)
809 "Insert a key and value into `sc-mail-info' alist.
810 If optional ATTRIBS-P is non-nil, the key/value pair is placed in
811 `sc-attributions' too."
812 (if (string-match "^\\(\\S *\\)\\s *:\\s +\\(.*\\)$" curline)
813 (let* ((key (downcase (sc-string-text (sc-submatch 1 curline))))
814 (val (sc-string-text (sc-submatch 2 curline)))
815 (keyval (cons key val)))
816 (setq sc-mail-info (cons keyval sc-mail-info))
817 (if attribs-p
818 (setq sc-attributions (cons keyval sc-attributions)))
819 ))
820 nil)
821
822 (defun sc-mail-append-field ()
823 "Append a continuation line onto the last fetched mail field's info."
824 (let ((keyval (car sc-mail-info)))
825 (if (and keyval (string-match "^\\s *\\(.*\\)$" curline))
826 (setcdr keyval (concat (cdr keyval) " "
827 (sc-string-text (sc-submatch 1 curline))))))
828 nil)
829
830 (defun sc-mail-error-in-mail-field ()
831 "Issue warning that mail headers don't conform to RFC 822."
832 (let* ((len (min (length curline) 10))
833 (ellipsis (if (< len (length curline)) "..." ""))
834 (msg "Mail header \"%s%s\" doesn't conform to RFC 822. skipping..."))
835 (message msg (substring curline 0 len) ellipsis))
836 (beep)
837 (sit-for 2)
838 nil)
839
840 ;; mail header nuking
841 (defvar sc-mail-last-header-nuked-p nil
842 "True if the last header was nuked.")
843
844 (defun sc-mail-nuke-line ()
845 "Nuke the current mail header line."
846 (delete-region (regi-pos 'bol) (regi-pos 'bonl))
847 '((step . -1)))
848
849 (defun sc-mail-nuke-header-line ()
850 "Delete current-line and set up for possible continuation."
851 (setq sc-mail-last-header-nuked-p t)
852 (sc-mail-nuke-line))
853
854 (defun sc-mail-nuke-continuation-line ()
855 "Delete a continuation line if the last header line was deleted."
856 (if sc-mail-last-header-nuked-p
857 (sc-mail-nuke-line)))
858
859 (defun sc-mail-cleanup-blank-lines ()
860 "Leave some blank lines after original mail headers are nuked.
861 The number of lines left is specified by `sc-blank-lines-after-headers'."
862 (if sc-blank-lines-after-headers
863 (save-restriction
864 (widen)
865 (skip-chars-backward " \t\n")
866 (forward-line 1)
867 (delete-blank-lines)
868 (beginning-of-line)
869 (if (looking-at "[ \t]*$")
870 (delete-region (regi-pos 'bol) (regi-pos 'bonl)))
871 (insert-char ?\n sc-blank-lines-after-headers)))
872 nil)
873
874 (defun sc-mail-build-nuke-frame ()
875 "Build the regiframe for nuking mail headers."
876 (let (every-func entry-func nonentry-func)
877 (cond
878 ((eq sc-nuke-mail-headers 'all)
879 (setq every-func '(progn (forward-line -1) (sc-mail-nuke-line))))
880 ((eq sc-nuke-mail-headers 'specified)
881 (setq entry-func '(sc-mail-nuke-header-line)
882 nonentry-func '(setq sc-mail-last-header-nuked-p nil)))
883 ((eq sc-nuke-mail-headers 'keep)
884 (setq entry-func '(setq sc-mail-last-header-nuked-p nil)
885 nonentry-func '(sc-mail-nuke-header-line)))
886 ;; we never get far enough to interpret a frame if s-n-m-h == 'none
887 ((eq sc-nuke-mail-headers 'none))
888 (t (error "Illegal value for sc-nuke-mail-headers: %s"
889 sc-nuke-mail-headers))
890 ) ; end-cond
891 (append
892 (and entry-func
893 (regi-mapcar sc-nuke-mail-header-list entry-func nil t))
894 (and nonentry-func (list (list "^\\S +:.*$" nonentry-func)))
895 (and (not every-func)
896 '(("^[ \t]+" (sc-mail-nuke-continuation-line))))
897 '((begin (setq sc-mail-last-header-zapped-p nil)))
898 '((end (sc-mail-cleanup-blank-lines)))
899 (and every-func (list (list 'every every-func)))
900 )))
901
902 ;; mail processing and zapping. this is the top level entry defun to
903 ;; all header processing.
904 (defun sc-mail-process-headers (start end)
905 "Process original mail message's mail headers.
906 After processing, mail headers may be nuked. Header information is
907 stored in `sc-mail-info', and any old information is lost unless an
908 error occurs."
909 (interactive "r")
910 (let ((info (copy-alist sc-mail-info))
911 (attribs (copy-alist sc-attributions)))
912 (setq sc-mail-info nil
913 sc-attributions nil)
914 (regi-interpret sc-mail-glom-frame start end)
915 (if (null sc-mail-info)
916 (progn
917 (message "No mail headers found! Restoring old information.")
918 (setq sc-mail-info info
919 sc-attributions attribs))
920 (regi-interpret (sc-mail-build-nuke-frame)
921 sc-mail-headers-start sc-mail-headers-end)
922 )))
923
924 \f
925 ;; let the user change mail field information
926 (defun sc-mail-field (field)
927 "Return the mail header field value associated with FIELD.
928 If there was no mail header with FIELD as its key, return the value of
929 `sc-mumble'. FIELD is case insensitive."
930 (or (cdr (assoc (downcase field) sc-mail-info)) sc-mumble))
931
932 (defun sc-mail-field-query (arg)
933 "View the value of a mail field.
934 With `\\[universal-argument]', prompts for action on mail field.
935 Action can be one of: View, Modify, Add, or Delete."
936 (interactive "P")
937 (let* ((alist '(("view" . ?v) ("modify" . ?m) ("add" . ?a) ("delete" . ?d)))
938 (action (if (not arg) ?v (sc-ask alist)))
939 key)
940 (if (not action)
941 ()
942 (setq key (sc-completing-read
943 (concat (car (rassq action alist))
944 " information key: ")
945 sc-mail-info nil
946 (if (eq action ?a) nil 'noexit)
947 nil 'sc-mail-field-history))
948 (cond
949 ((eq action ?v)
950 (message "%s: %s" key (cdr (assoc key sc-mail-info))))
951 ((eq action ?d)
952 (setq sc-mail-info (delq (assoc key sc-mail-info) sc-mail-info)))
953 ((eq action ?m)
954 (let ((keyval (assoc key sc-mail-info)))
955 ;; first put initial value onto list if not already there
956 (if (not (sc-member (cdr keyval)
957 sc-mail-field-modification-history))
958 (setq sc-mail-field-modification-history
959 (cons (cdr keyval) sc-mail-field-modification-history)))
960 (setcdr keyval (sc-read-string
961 (concat key ": ") (cdr keyval)
962 'sc-mail-field-modification-history))))
963 ((eq action ?a)
964 (setq sc-mail-info
965 (cons (cons key
966 (sc-read-string (concat key ": "))) sc-mail-info)))
967 ))))
968
969 \f
970 ;; ======================================================================
971 ;; attributions
972
973 (defvar sc-attribution-confirmation-history nil
974 "History for confirmation of attribution strings.")
975 (defvar sc-citation-confirmation-history nil
976 "History for confirmation of attribution prefixes.")
977
978 (defun sc-attribs-%@-addresses (from &optional delim)
979 "Extract the author's email terminus from email address FROM.
980 Match addresses of the style ``name%[stuff].'' when called with DELIM
981 of \"%\" and addresses of the style ``[stuff]name@[stuff]'' when
982 called with DELIM \"@\". If DELIM is nil or not provided, matches
983 addresses of the style ``name''."
984 (and (string-match (concat "[-a-zA-Z0-9_.]+" delim) from 0)
985 (substring from
986 (match-beginning 0)
987 (- (match-end 0) (if (null delim) 0 1)))))
988
989 (defun sc-attribs-!-addresses (from)
990 "Extract the author's email terminus from email address FROM.
991 Match addresses of the style ``[stuff]![stuff]...!name[stuff].''"
992 (let ((eos (length from))
993 (mstart (string-match "![-a-zA-Z0-9_.]+\\([^-!a-zA-Z0-9_.]\\|$\\)"
994 from 0))
995 (mend (match-end 0)))
996 (and mstart
997 (substring from (1+ mstart) (- mend (if (= mend eos) 0 1)))
998 )))
999
1000 (defun sc-attribs-<>-addresses (from)
1001 "Extract the author's email terminus from email address FROM.
1002 Match addresses of the style ``<name[stuff]>.''"
1003 (and (string-match "<\\(.*\\)>" from)
1004 (sc-submatch 1 from)))
1005
1006 (defun sc-get-address (from author)
1007 "Get the full email address path from FROM.
1008 AUTHOR is the author's name (which is removed from the address)."
1009 (let ((eos (length from)))
1010 (if (string-match (concat "\\(^\\|^\"\\)" author
1011 "\\(\\s +\\|\"\\s +\\)") from 0)
1012 (let ((address (substring from (match-end 0) eos)))
1013 (if (and (= (aref address 0) ?<)
1014 (= (aref address (1- (length address))) ?>))
1015 (substring address 1 (1- (length address)))
1016 address))
1017 (if (string-match "[-[:alnum:]!@%._]+" from 0)
1018 (sc-submatch 0 from)
1019 "")
1020 )))
1021
1022 (defun sc-attribs-emailname (from)
1023 "Get the email terminus name from FROM."
1024 (or
1025 (sc-attribs-%@-addresses from "%")
1026 (sc-attribs-%@-addresses from "@")
1027 (sc-attribs-!-addresses from)
1028 (sc-attribs-<>-addresses from)
1029 (sc-attribs-%@-addresses from)
1030 (substring from 0 10)))
1031
1032 (defun sc-name-substring (string start end extend)
1033 "Extract the specified substring of STRING from START to END.
1034 EXTEND is the number of characters on each side to extend the
1035 substring."
1036 (and start
1037 (let ((sos (+ start extend))
1038 (eos (- end extend)))
1039 (substring string sos
1040 (or (string-match sc-titlecue-regexp string sos) eos)
1041 ))))
1042
1043 (defun sc-attribs-extract-namestring (from)
1044 "Extract the name string from FROM.
1045 This should be the author's full name minus an optional title."
1046 (let ((namestring
1047 (or
1048 ;; If there is a <...> in the name,
1049 ;; treat everything before that as the full name.
1050 ;; Even if it contains parens, use the whole thing.
1051 ;; On the other hand, we do look for quotes in the usual way.
1052 (and (string-match " *<.*>" from 0)
1053 (let ((before-angles
1054 (sc-name-substring from 0 (match-beginning 0) 0)))
1055 (if (string-match "\".*\"" before-angles 0)
1056 (sc-name-substring
1057 before-angles (match-beginning 0) (match-end 0) 1)
1058 before-angles)))
1059 (sc-name-substring
1060 from (string-match "(.*)" from 0) (match-end 0) 1)
1061 (sc-name-substring
1062 from (string-match "\".*\"" from 0) (match-end 0) 1)
1063 (sc-name-substring
1064 from (string-match "\\([-.[:alnum:]_]+\\s +\\)+<" from 0)
1065 (match-end 1) 0)
1066 (sc-attribs-emailname from))))
1067 ;; strip off any leading or trailing whitespace
1068 (if namestring
1069 (let ((bos 0)
1070 (eos (1- (length namestring))))
1071 (while (and (<= bos eos)
1072 (memq (aref namestring bos) '(32 ?\t)))
1073 (setq bos (1+ bos)))
1074 (while (and (> eos bos)
1075 (memq (aref namestring eos) '(32 ?\t)))
1076 (setq eos (1- eos)))
1077 (substring namestring bos (1+ eos))))))
1078
1079 (defun sc-attribs-chop-namestring (namestring)
1080 "Convert NAMESTRING to a list of names.
1081 example: (sc-namestring-to-list \"John Xavier Doe\")
1082 => (\"John\" \"Xavier\" \"Doe\")"
1083 (if (string-match "\\([ \t]*\\)\\([^ \t._]+\\)\\([ \t]*\\)" namestring)
1084 (cons (sc-submatch 2 namestring)
1085 (sc-attribs-chop-namestring (substring namestring (match-end 3)))
1086 )))
1087
1088 (defun sc-attribs-strip-initials (namelist)
1089 "Extract the author's initials from the NAMELIST."
1090 (mapconcat
1091 (function
1092 (lambda (name)
1093 (if (< 0 (length name))
1094 (substring name 0 1))))
1095 namelist ""))
1096
1097 (defun sc-guess-attribution (&optional string)
1098 "Guess attribution string on current line.
1099 If attribution cannot be guessed, nil is returned. Optional STRING if
1100 supplied, is used instead of the line point is on in the current buffer."
1101 (let ((start 0)
1102 (string (or string (buffer-substring (regi-pos 'bol) (regi-pos 'eol))))
1103 attribution)
1104 (and
1105 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1106 (setq start (match-end 0))
1107 (= start (or (string-match sc-citation-root-regexp string start) 1))
1108 (setq attribution (sc-submatch 0 string)
1109 start (match-end 0))
1110 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1111 (setq start (match-end 0))
1112 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1113 attribution)))
1114
1115 (defun sc-attribs-filter-namelist (namelist)
1116 "Filter out noise in NAMELIST according to `sc-name-filter-alist'."
1117 (let ((elements (length namelist))
1118 (position -1)
1119 keepers filtered-list)
1120 (mapcar
1121 (function
1122 (lambda (name)
1123 (setq position (1+ position))
1124 (let ((keep-p t))
1125 (mapcar
1126 (function
1127 (lambda (filter)
1128 (let ((regexp (car filter))
1129 (pos (cdr filter)))
1130 (if (and (string-match regexp name)
1131 (or (and (numberp pos)
1132 (= pos position))
1133 (and (eq pos 'last)
1134 (= position (1- elements)))
1135 (eq pos 'any)))
1136 (setq keep-p nil))
1137 )))
1138 sc-name-filter-alist)
1139 (if keep-p
1140 (setq keepers (cons position keepers)))
1141 )))
1142 namelist)
1143 (mapcar
1144 (function
1145 (lambda (position)
1146 (setq filtered-list (cons (nth position namelist) filtered-list))
1147 ))
1148 keepers)
1149 filtered-list))
1150
1151 (defun sc-attribs-chop-address (from)
1152 "Extract attribution information from FROM.
1153 This populates the `sc-attributions' with the list of possible attributions."
1154 (if (and (stringp from)
1155 (< 0 (length from)))
1156 (let* ((sc-mumble "")
1157 (namestring (sc-attribs-extract-namestring from))
1158 (namelist (sc-attribs-filter-namelist
1159 (sc-attribs-chop-namestring namestring)))
1160 (revnames (reverse (cdr namelist)))
1161 (firstname (car namelist))
1162 (midnames (reverse (cdr revnames)))
1163 (lastname (car revnames))
1164 (initials (sc-attribs-strip-initials namelist))
1165 (emailname (sc-attribs-emailname from))
1166 (n 1)
1167 author middlenames)
1168
1169 ;; put basic information
1170 (setq
1171 ;; put middle names and build sc-author entry
1172 middlenames (mapconcat
1173 (function
1174 (lambda (midname)
1175 (let ((key-attribs (format "middlename-%d" n))
1176 (key-mail (format "sc-middlename-%d" n)))
1177 (setq
1178 sc-attributions (cons (cons key-attribs midname)
1179 sc-attributions)
1180 sc-mail-info (cons (cons key-mail midname)
1181 sc-mail-info)
1182 n (1+ n))
1183 midname)))
1184 midnames " ")
1185
1186 author (concat firstname " " middlenames (and midnames " ") lastname)
1187
1188 sc-attributions (append
1189 (list
1190 (cons "firstname" firstname)
1191 (cons "lastname" lastname)
1192 (cons "emailname" emailname)
1193 (cons "initials" initials))
1194 sc-attributions)
1195 sc-mail-info (append
1196 (list
1197 (cons "sc-firstname" firstname)
1198 (cons "sc-middlenames" middlenames)
1199 (cons "sc-lastname" lastname)
1200 (cons "sc-emailname" emailname)
1201 (cons "sc-initials" initials)
1202 (cons "sc-author" author)
1203 (cons "sc-from-address" (sc-get-address
1204 (sc-mail-field "from")
1205 namestring))
1206 (cons "sc-reply-address" (sc-get-address
1207 (sc-mail-field "reply-to")
1208 namestring))
1209 (cons "sc-sender-address" (sc-get-address
1210 (sc-mail-field "sender")
1211 namestring))
1212 )
1213 sc-mail-info)
1214 ))
1215 ;; from string is empty
1216 (setq sc-mail-info (cons (cons "sc-author" sc-default-author-name)
1217 sc-mail-info))))
1218
1219 (defvar sc-attrib-or-cite nil
1220 "Used to toggle between attribution input or citation input.")
1221
1222 (defun sc-toggle-fn ()
1223 "Toggle between attribution selection and citation selection.
1224 Only used during confirmation."
1225 (interactive)
1226 (setq sc-attrib-or-cite (not sc-attrib-or-cite))
1227 (throw 'sc-reconfirm t))
1228
1229 (defun sc-select-attribution ()
1230 "Select an attribution from `sc-attributions'.
1231
1232 Variables involved in selection process include:
1233 `sc-preferred-attribution-list'
1234 `sc-use-only-preference-p'
1235 `sc-confirm-always-p'
1236 `sc-default-attribution'
1237 `sc-attrib-selection-list'.
1238
1239 Runs the hook `sc-attribs-preselect-hook' before selecting an
1240 attribution and the hook `sc-attribs-postselect-hook' after making the
1241 selection but before querying is performed. During
1242 `sc-attribs-postselect-hook' the variable `citation' is bound to the
1243 auto-selected citation string and the variable `attribution' is bound
1244 to the auto-selected attribution string."
1245 (run-hooks 'sc-attribs-preselect-hook)
1246 (let ((query-p sc-confirm-always-p)
1247 attribution citation
1248 (attriblist sc-preferred-attribution-list))
1249
1250 ;; first cruise through sc-preferred-attribution-list looking for
1251 ;; a match in either sc-attributions or sc-mail-info. if the
1252 ;; element is "sc-consult", then we have to do the alist
1253 ;; consultation phase
1254 (while attriblist
1255 (let* ((preferred (car attriblist)))
1256 (cond
1257 ((string= preferred "sc-consult")
1258 ;; we've been told to consult the attribution vs. mail
1259 ;; header key alist. we do this until we find a match in
1260 ;; the sc-attrib-selection-list. if we do not find a match,
1261 ;; we continue scanning attriblist
1262 (let ((attrib (sc-scan-info-alist sc-attrib-selection-list)))
1263 (cond
1264 ((not attrib)
1265 (setq attriblist (cdr attriblist)))
1266 ((stringp attrib)
1267 (setq attribution attrib
1268 attriblist nil))
1269 ((listp attrib)
1270 (setq attribution (eval attrib)
1271 attriblist nil))
1272 (t (error "%s did not evaluate to a string or list!"
1273 "sc-attrib-selection-list"))
1274 )))
1275 ((setq attribution (cdr (assoc preferred sc-attributions)))
1276 (setq attriblist nil))
1277 (t
1278 (setq attriblist (cdr attriblist)))
1279 )))
1280
1281 ;; if preference was not found, we may use a secondary method to
1282 ;; find a valid attribution
1283 (if (and (not attribution)
1284 (not sc-use-only-preference-p))
1285 ;; secondary method tries to find a preference in this order
1286 ;; 1. sc-lastchoice
1287 ;; 2. x-attribution
1288 ;; 3. firstname
1289 ;; 4. lastname
1290 ;; 5. initials
1291 ;; 6. first non-empty attribution in alist
1292 (setq attribution
1293 (or (cdr (assoc "sc-lastchoice" sc-attributions))
1294 (cdr (assoc "x-attribution" sc-attributions))
1295 (cdr (assoc "firstname" sc-attributions))
1296 (cdr (assoc "lastname" sc-attributions))
1297 (cdr (assoc "initials" sc-attributions))
1298 (cdr (car sc-attributions)))))
1299
1300 ;; still couldn't find an attribution. we're now limited to using
1301 ;; the default attribution, but we'll force a query when this happens
1302 (if (not attribution)
1303 (setq attribution sc-default-attribution
1304 query-p t))
1305
1306 ;; create the attribution prefix
1307 (setq citation (sc-make-citation attribution))
1308
1309 ;; run the post selection hook before querying the user
1310 (run-hooks 'sc-attribs-postselect-hook)
1311
1312 ;; query for confirmation
1313 (if query-p
1314 (let* ((query-alist (mapcar (function (lambda (entry)
1315 (list (cdr entry))))
1316 sc-attributions))
1317 (minibuffer-local-completion-map
1318 sc-minibuffer-local-completion-map)
1319 (minibuffer-local-map sc-minibuffer-local-map)
1320 (initial attribution)
1321 (completer-disable t) ; in case completer.el is used
1322 choice)
1323 (setq sc-attrib-or-cite nil) ; nil==attribution, t==citation
1324 (while
1325 (catch 'sc-reconfirm
1326 (string= "" (setq choice
1327 (if sc-attrib-or-cite
1328 (sc-read-string
1329 "Enter citation prefix: "
1330 citation
1331 'sc-citation-confirmation-history)
1332 (sc-completing-read
1333 "Complete attribution name: "
1334 query-alist nil nil
1335 (cons initial 0)
1336 'sc-attribution-confirmation-history)
1337 )))))
1338 (if sc-attrib-or-cite
1339 ;; since the citation was chosen, we have to guess at
1340 ;; the attribution
1341 (setq citation choice
1342 attribution (or (sc-guess-attribution citation)
1343 citation))
1344
1345 (setq citation (sc-make-citation choice)
1346 attribution choice))
1347 ))
1348
1349 ;; its possible that the user wants to downcase the citation and
1350 ;; attribution
1351 (if sc-downcase-p
1352 (setq citation (downcase citation)
1353 attribution (downcase attribution)))
1354
1355 ;; set up mail info alist
1356 (let* ((ckey "sc-citation")
1357 (akey "sc-attribution")
1358 (ckeyval (assoc ckey sc-mail-info))
1359 (akeyval (assoc akey sc-mail-info)))
1360 (if ckeyval
1361 (setcdr ckeyval citation)
1362 (setq sc-mail-info
1363 (append (list (cons ckey citation)) sc-mail-info)))
1364 (if akeyval
1365 (setcdr akeyval attribution)
1366 (setq sc-mail-info
1367 (append (list (cons akey attribution)) sc-mail-info))))
1368
1369 ;; set the sc-lastchoice attribution
1370 (let* ((lkey "sc-lastchoice")
1371 (lastchoice (assoc lkey sc-attributions)))
1372 (if lastchoice
1373 (setcdr lastchoice attribution)
1374 (setq sc-attributions
1375 (cons (cons lkey attribution) sc-attributions))))
1376 ))
1377
1378 \f
1379 ;; ======================================================================
1380 ;; filladapt hooks for supercite 3.1. you shouldn't need anything
1381 ;; extra to make gin-mode understand supercited lines. Even this
1382 ;; stuff might not be entirely necessary...
1383
1384 (defun sc-cite-regexp (&optional root-regexp)
1385 "Return a regexp describing a Supercited line.
1386 The regexp is the concatenation of `sc-citation-leader-regexp',
1387 `sc-citation-root-regexp', `sc-citation-delimiter-regexp', and
1388 `sc-citation-separator-regexp'. If optional ROOT-REGEXP is supplied,
1389 use it instead of `sc-citation-root-regexp'."
1390 (concat sc-citation-leader-regexp
1391 (or root-regexp sc-citation-root-regexp)
1392 sc-citation-delimiter-regexp
1393 sc-citation-separator-regexp))
1394
1395 (defun sc-make-citation (attribution)
1396 "Make a non-nested citation from ATTRIBUTION."
1397 (concat sc-citation-leader
1398 attribution
1399 sc-citation-delimiter
1400 sc-citation-separator))
1401
1402 (defun sc-setup-filladapt ()
1403 "Setup `filladapt-prefix-table' to handle Supercited paragraphs."
1404 (let* ((fa-sc-elt 'filladapt-supercite-included-text)
1405 (elt (rassq fa-sc-elt filladapt-prefix-table)))
1406 (if elt (setcar elt (sc-cite-regexp))
1407 (message "Filladapt doesn't seem to know about Supercite.")
1408 (beep))))
1409
1410 \f
1411 ;; ======================================================================
1412 ;; citing and unciting regions of text
1413
1414 (defvar sc-fill-begin 1
1415 "Buffer position to begin filling.")
1416 (defvar sc-fill-line-prefix ""
1417 "Fill prefix of previous line")
1418
1419 ;; filling
1420 (defun sc-fill-if-different (&optional prefix)
1421 "Fill the region bounded by `sc-fill-begin' and point.
1422 Only fill if optional PREFIX is different than `sc-fill-line-prefix'.
1423 If `sc-auto-fill-region-p' is nil, do not fill region. If PREFIX is
1424 not supplied, initialize fill variables. This is useful for a regi
1425 `begin' frame-entry."
1426 (if (not prefix)
1427 (setq sc-fill-line-prefix ""
1428 sc-fill-begin (regi-pos 'bol))
1429 (if (and sc-auto-fill-region-p
1430 (not (string= prefix sc-fill-line-prefix)))
1431 (let ((fill-prefix sc-fill-line-prefix))
1432 (if (not (string= fill-prefix ""))
1433 (fill-region sc-fill-begin (regi-pos 'bol)))
1434 (setq sc-fill-line-prefix prefix
1435 sc-fill-begin (regi-pos 'bol))))
1436 )
1437 nil)
1438
1439 (defun sc-cite-coerce-cited-line ()
1440 "Coerce a Supercited line to look like our style."
1441 (let* ((attribution (sc-guess-attribution))
1442 (regexp (sc-cite-regexp attribution))
1443 (prefix (sc-make-citation attribution)))
1444 (if (and attribution
1445 (looking-at regexp))
1446 (progn
1447 (delete-region
1448 (match-beginning 0)
1449 (save-excursion
1450 (goto-char (match-end 0))
1451 (if (bolp) (forward-char -1))
1452 (point)))
1453 (insert prefix)
1454 (sc-fill-if-different prefix)))
1455 nil))
1456
1457 (defun sc-cite-coerce-dumb-citer ()
1458 "Coerce a non-nested citation that's been cited with a dumb nesting citer."
1459 (delete-region (match-beginning 1) (match-end 1))
1460 (beginning-of-line)
1461 (sc-cite-coerce-cited-line))
1462
1463 (defun sc-guess-nesting (&optional string)
1464 "Guess the citation nesting on the current line.
1465 If nesting cannot be guessed, nil is returned. Optional STRING if
1466 supplied, is used instead of the line point is on in the current
1467 buffer."
1468 (let ((start 0)
1469 (string (or string (buffer-substring (regi-pos 'bol) (regi-pos 'eol))))
1470 nesting)
1471 (and
1472 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1473 (setq start (match-end 0))
1474 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1475 (setq nesting (sc-submatch 0 string)
1476 start (match-end 0))
1477 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1478 nesting)))
1479
1480 (defun sc-add-citation-level ()
1481 "Add a citation level for nested citation style w/ coercion."
1482 (let* ((nesting (sc-guess-nesting))
1483 (citation (make-string (1+ (length nesting))
1484 (string-to-char sc-citation-delimiter)))
1485 (prefix (concat sc-citation-leader citation sc-citation-separator)))
1486 (if (looking-at (sc-cite-regexp ""))
1487 (delete-region (match-beginning 0) (match-end 0)))
1488 (insert prefix)
1489 (sc-fill-if-different prefix)))
1490
1491 (defun sc-cite-line (&optional citation)
1492 "Cite a single line of uncited text.
1493 Optional CITATION overrides any citation automatically selected."
1494 (if sc-fixup-whitespace-p
1495 (fixup-whitespace))
1496 (let ((prefix (or citation
1497 (cdr (assoc "sc-citation" sc-mail-info))
1498 sc-default-attribution)))
1499 (insert prefix)
1500 (sc-fill-if-different prefix))
1501 nil)
1502
1503 (defun sc-uncite-line ()
1504 "Remove citation from current line."
1505 (let ((cited (looking-at (sc-cite-regexp))))
1506 (if cited
1507 (delete-region (match-beginning 0) (match-end 0))))
1508 nil)
1509
1510 (defun sc-recite-line (regexp)
1511 "Remove citation matching REGEXP from current line and recite line."
1512 (let ((cited (looking-at (concat "^" regexp)))
1513 (prefix (cdr (assoc "sc-citation" sc-mail-info))))
1514 (if cited
1515 (delete-region (match-beginning 0) (match-end 0)))
1516 (insert (or prefix sc-default-attribution))
1517 (sc-fill-if-different prefix))
1518 nil)
1519
1520 ;; interactive functions
1521 (defun sc-cite-region (start end &optional confirm-p)
1522 "Cite a region delineated by START and END.
1523 If optional CONFIRM-P is non-nil, the attribution is confirmed before
1524 its use in the citation string. This function first runs
1525 `sc-pre-cite-hook'."
1526 (interactive "r\nP")
1527 (undo-boundary)
1528 (let ((frame (or (sc-scan-info-alist sc-cite-frame-alist)
1529 sc-default-cite-frame))
1530 (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
1531 (run-hooks 'sc-pre-cite-hook)
1532 (if (interactive-p)
1533 (sc-select-attribution))
1534 (regi-interpret frame start end)))
1535
1536 (defun sc-uncite-region (start end)
1537 "Uncite a region delineated by START and END.
1538 First runs `sc-pre-uncite-hook'."
1539 (interactive "r")
1540 (undo-boundary)
1541 (let ((frame (or (sc-scan-info-alist sc-uncite-frame-alist)
1542 sc-default-uncite-frame)))
1543 (run-hooks 'sc-pre-uncite-hook)
1544 (regi-interpret frame start end)))
1545
1546 (defun sc-recite-region (start end)
1547 "Recite a region delineated by START and END.
1548 First runs `sc-pre-recite-hook'."
1549 (interactive "r")
1550 (let ((sc-confirm-always-p t))
1551 (sc-select-attribution))
1552 (undo-boundary)
1553 (let ((frame (or (sc-scan-info-alist sc-recite-frame-alist)
1554 sc-default-recite-frame)))
1555 (run-hooks 'sc-pre-recite-hook)
1556 (regi-interpret frame start end)))
1557
1558 \f
1559 ;; ======================================================================
1560 ;; building headers
1561
1562 (defun sc-hdr (prefix field &optional sep return-nil-p)
1563 "Returns a concatenation of PREFIX and FIELD.
1564 If FIELD is not a string or is the empty string, the empty string will
1565 be returned. Optional third argument SEP is concatenated on the end if
1566 it is a string. Returns empty string, unless optional RETURN-NIL-P is
1567 non-nil."
1568 (if (and (stringp field)
1569 (not (string= field "")))
1570 (concat prefix field (or sep ""))
1571 (and (not return-nil-p) "")))
1572
1573 (defun sc-whofrom ()
1574 "Return the value of (sc-mail-field \"from\") or nil."
1575 (let ((sc-mumble nil))
1576 (sc-mail-field "from")))
1577
1578 (defun sc-no-header ()
1579 "Does nothing. Use this instead of nil to get a blank header."
1580 ())
1581
1582 (defun sc-no-blank-line-or-header()
1583 "Similar to `sc-no-header' except it removes the preceding blank line."
1584 (if (not (bobp))
1585 (if (and (eolp)
1586 (progn (forward-line -1)
1587 (or (= (point) (mail-header-end))
1588 (and (eq major-mode 'mh-letter-mode)
1589 (mh-in-header-p)))))
1590 (progn (forward-line)
1591 (let ((kill-lines-magic t))
1592 (kill-line))))))
1593
1594 (defun sc-header-on-said ()
1595 "\"On <date>, <from> said:\" unless:
1596 1. the \"from\" field cannot be found, in which case nothing is inserted;
1597 2. the \"date\" field is missing in which case only the from part is printed."
1598 (let ((sc-mumble "")
1599 (whofrom (sc-whofrom)))
1600 (if whofrom
1601 (insert sc-reference-tag-string
1602 (sc-hdr "On " (sc-mail-field "date") ", ")
1603 whofrom " said:\n"))))
1604
1605 (defun sc-header-inarticle-writes ()
1606 "\"In article <message-id>, <from> writes:\"
1607 Treats \"message-id\" and \"from\" fields similar to `sc-header-on-said'."
1608 (let ((sc-mumble "")
1609 (whofrom (sc-mail-field "from")))
1610 (if whofrom
1611 (insert sc-reference-tag-string
1612 (sc-hdr "In article " (sc-mail-field "message-id") ", ")
1613 whofrom " writes:\n"))))
1614
1615 (defun sc-header-regarding-adds ()
1616 "\"Regarding <subject>; <from> adds:\"
1617 Treats \"subject\" and \"from\" fields similar to `sc-header-on-said'."
1618 (let ((sc-mumble "")
1619 (whofrom (sc-whofrom)))
1620 (if whofrom
1621 (insert sc-reference-tag-string
1622 (sc-hdr "Regarding " (sc-mail-field "subject") "; ")
1623 whofrom " adds:\n"))))
1624
1625 (defun sc-header-attributed-writes ()
1626 "\"<sc-attribution>\" == <sc-author> <address> writes:
1627 Treats these fields in a similar manner to `sc-header-on-said'."
1628 (let ((sc-mumble "")
1629 (whofrom (sc-whofrom)))
1630 (if whofrom
1631 (insert sc-reference-tag-string
1632 (sc-hdr "\"" (sc-mail-field "sc-attribution") "\" == ")
1633 (sc-hdr "" (sc-mail-field "sc-author") " ")
1634 (or (sc-hdr "<" (sc-mail-field "sc-from-address") ">" t)
1635 (sc-hdr "<" (sc-mail-field "sc-reply-address") ">" t)
1636 "")
1637 " writes:\n"))))
1638
1639 (defun sc-header-author-writes ()
1640 "<sc-author> writes:"
1641 (let ((sc-mumble "")
1642 (whofrom (sc-whofrom)))
1643 (if whofrom
1644 (insert sc-reference-tag-string
1645 (sc-hdr "" (sc-mail-field "sc-author"))
1646 " writes:\n"))))
1647
1648 (defun sc-header-verbose ()
1649 "Very verbose, some say gross."
1650 (let ((sc-mumble "")
1651 (whofrom (sc-whofrom))
1652 (tag sc-reference-tag-string))
1653 (if whofrom
1654 (insert (sc-hdr (concat tag "On ") (sc-mail-field "date") ",\n")
1655 (or (sc-hdr tag (sc-mail-field "sc-author") "\n" t)
1656 (concat tag whofrom "\n"))
1657 (sc-hdr (concat tag "from the organization of ")
1658 (sc-mail-field "organization") "\n")
1659 (let ((rtag (concat tag "who can be reached at: ")))
1660 (or (sc-hdr rtag (sc-mail-field "sc-from-address") "\n" t)
1661 (sc-hdr rtag (sc-mail-field "sc-reply-address") "\n" t)
1662 ""))
1663 (sc-hdr
1664 (concat tag "(whose comments are cited below with \"")
1665 (sc-mail-field "sc-citation") "\"),\n")
1666 (sc-hdr (concat tag "had this to say in article ")
1667 (sc-mail-field "message-id") "\n")
1668 (sc-hdr (concat tag "in newsgroups ")
1669 (sc-mail-field "newsgroups") "\n")
1670 (sc-hdr (concat tag "concerning the subject of ")
1671 (sc-mail-field "subject") "\n")
1672 (sc-hdr (concat tag "(see ")
1673 (sc-mail-field "references")
1674 " for more details)\n")
1675 ))))
1676
1677 \f
1678 ;; ======================================================================
1679 ;; header rewrites
1680
1681 (defconst sc-electric-bufname " *sc-erefs* "
1682 "Supercite electric reference mode's buffer name.")
1683 (defvar sc-eref-style 0
1684 "Current electric reference style.")
1685
1686 (defun sc-valid-index-p (index)
1687 "Returns INDEX if it is a valid index into `sc-rewrite-header-list'.
1688 Otherwise returns nil."
1689 ;; a number, and greater than or equal to zero
1690 ;; less than or equal to the last index
1691 (and (natnump index)
1692 (< index (length sc-rewrite-header-list))
1693 index))
1694
1695 (defun sc-eref-insert-selected (&optional nomsg)
1696 "Insert the selected reference header in the current buffer.
1697 Optional NOMSG, if non-nil, inhibits printing messages, unless an
1698 error occurs."
1699 (let ((ref (nth sc-eref-style sc-rewrite-header-list)))
1700 (condition-case err
1701 (progn
1702 (eval ref)
1703 (let ((lines (count-lines (point-min) (point-max))))
1704 (or nomsg (message "Ref header %d [%d line%s]: %s"
1705 sc-eref-style lines
1706 (if (= lines 1) "" "s")
1707 ref))))
1708 (void-function
1709 (progn (message
1710 "Symbol's function definition is void: %s (Header %d)"
1711 (car (cdr err)) sc-eref-style)
1712 (beep)
1713 ))
1714 )))
1715
1716 (defun sc-electric-mode (&optional arg)
1717 "
1718 Mode for viewing Supercite reference headers. Commands are:
1719 \n\\{sc-electric-mode-map}
1720
1721 `sc-electric-mode' is not intended to be run interactively, but rather
1722 accessed through Supercite's electric reference feature. See
1723 `sc-insert-reference' for more details. Optional ARG is the initial
1724 header style to use, unless not supplied or invalid, in which case
1725 `sc-preferred-header-style' is used."
1726
1727 (let ((info sc-mail-info))
1728
1729 (setq sc-eref-style
1730 (or (sc-valid-index-p arg)
1731 (sc-valid-index-p sc-preferred-header-style)
1732 0))
1733
1734 (get-buffer-create sc-electric-bufname)
1735 ;; set up buffer and enter command loop
1736 (save-excursion
1737 (save-window-excursion
1738 (pop-to-buffer sc-electric-bufname)
1739 (kill-all-local-variables)
1740 (let ((sc-mail-info info)
1741 (buffer-read-only t)
1742 (mode-name "SC Electric Refs")
1743 (major-mode 'sc-electric-mode))
1744 (use-local-map sc-electric-mode-map)
1745 (sc-eref-show sc-eref-style)
1746 (run-hooks 'sc-electric-mode-hook)
1747 (recursive-edit)
1748 )))
1749
1750 (and sc-eref-style
1751 (sc-eref-insert-selected))
1752 (kill-buffer sc-electric-bufname)
1753 ))
1754
1755 ;; functions for electric reference mode
1756 (defun sc-eref-show (index)
1757 "Show reference INDEX in `sc-rewrite-header-list'."
1758 (let ((msg "No %ing reference headers in list.")
1759 (last (length sc-rewrite-header-list)))
1760 (setq sc-eref-style
1761 (cond
1762 ((sc-valid-index-p index) index)
1763 ((< index 0)
1764 (if sc-electric-circular-p
1765 (1- last)
1766 (progn (error msg "preced") 0)))
1767 ((>= index last)
1768 (if sc-electric-circular-p
1769 0
1770 (progn (error msg "follow") (1- last))))
1771 ))
1772 (save-excursion
1773 (set-buffer sc-electric-bufname)
1774 (let ((buffer-read-only nil))
1775 (erase-buffer)
1776 (goto-char (point-min))
1777 (sc-eref-insert-selected)
1778 ;; now shrink the window to just contain the electric reference
1779 ;; header.
1780 (let ((hdrlines (count-lines (point-min) (point-max)))
1781 (winlines (1- (window-height))))
1782 (if (/= hdrlines winlines)
1783 (if (> hdrlines winlines)
1784 ;; we have to enlarge the window
1785 (enlarge-window (- hdrlines winlines))
1786 ;; we have to shrink the window
1787 (shrink-window (- winlines (max hdrlines window-min-height)))
1788 )))
1789 ))))
1790
1791 (defun sc-eref-next ()
1792 "Display next reference in other buffer."
1793 (interactive)
1794 (sc-eref-show (1+ sc-eref-style)))
1795
1796 (defun sc-eref-prev ()
1797 "Display previous reference in other buffer."
1798 (interactive)
1799 (sc-eref-show (1- sc-eref-style)))
1800
1801 (defun sc-eref-setn ()
1802 "Set reference header selected as preferred."
1803 (interactive)
1804 (setq sc-preferred-header-style sc-eref-style)
1805 (message "Preferred reference style set to header %d." sc-eref-style))
1806
1807 (defun sc-eref-goto (refnum)
1808 "Show reference style indexed by REFNUM.
1809 If REFNUM is an invalid index, don't go to that reference and return
1810 nil."
1811 (interactive "NGoto Reference: ")
1812 (if (sc-valid-index-p refnum)
1813 (sc-eref-show refnum)
1814 (error "Invalid reference: %d. (Range: [%d .. %d])"
1815 refnum 0 (1- (length sc-rewrite-header-list)))
1816 ))
1817
1818 (defun sc-eref-jump ()
1819 "Set reference header to preferred header."
1820 (interactive)
1821 (sc-eref-show sc-preferred-header-style))
1822
1823 (defun sc-eref-abort ()
1824 "Exit from electric reference mode without inserting reference."
1825 (interactive)
1826 (setq sc-eref-style nil)
1827 (exit-recursive-edit))
1828
1829 (defun sc-eref-exit ()
1830 "Exit from electric reference mode and insert selected reference."
1831 (interactive)
1832 (exit-recursive-edit))
1833
1834 (defun sc-insert-reference (arg)
1835 "Insert, at point, a reference header in the body of the reply.
1836 Numeric ARG indicates which header style from `sc-rewrite-header-list'
1837 to use when rewriting the header. No supplied ARG indicates use of
1838 `sc-preferred-header-style'.
1839
1840 With just `\\[universal-argument]', electric reference insert mode is
1841 entered, regardless of the value of `sc-electric-references-p'. See
1842 `sc-electric-mode' for more information."
1843 (interactive "P")
1844 (if (consp arg)
1845 (sc-electric-mode)
1846 (let ((preference (or (sc-valid-index-p arg)
1847 (sc-valid-index-p sc-preferred-header-style)
1848 sc-preferred-header-style
1849 0)))
1850 (if sc-electric-references-p
1851 (sc-electric-mode preference)
1852 (sc-eref-insert-selected t)
1853 ))))
1854
1855 \f
1856 ;; ======================================================================
1857 ;; variable toggling
1858
1859 (defun sc-raw-mode-toggle ()
1860 "Toggle, in one fell swoop, two important SC variables:
1861 `sc-fixup-whitespace-p' and `sc-auto-fill-region-p'"
1862 (interactive)
1863 (setq sc-fixup-whitespace-p (not sc-fixup-whitespace-p)
1864 sc-auto-fill-region-p (not sc-auto-fill-region-p))
1865 (sc-set-mode-string)
1866 (force-mode-line-update))
1867
1868 (defun sc-toggle-var (variable)
1869 "Boolean toggle VARIABLE's value.
1870 VARIABLE must be a bound symbol. Nil values change to t, non-nil
1871 values are changed to nil."
1872 (message "%s changed from %s to %s"
1873 variable (symbol-value variable)
1874 (set-variable variable (not (eval-expression variable))))
1875 (sc-set-mode-string))
1876
1877 (defun sc-set-variable (var)
1878 "Set the Supercite VARIABLE.
1879 This function mimics `set-variable', except that the variable to set
1880 is determined non-interactively. The value is queried for in the
1881 minibuffer exactly the same way that `set-variable' does it.
1882
1883 You can see the current value of the variable when the minibuffer is
1884 querying you by typing `C-h'. Note that the format is changed
1885 slightly from that used by `set-variable' -- the current value is
1886 printed just after the variable's name instead of at the bottom of the
1887 help window."
1888 (let* ((minibuffer-help-form
1889 '(funcall myhelp))
1890 (myhelp
1891 (function
1892 (lambda ()
1893 (with-output-to-temp-buffer "*Help*"
1894 (prin1 var)
1895 (if (boundp var)
1896 (let ((print-length 20))
1897 (princ "\t(Current value: ")
1898 (prin1 (symbol-value var))
1899 (princ ")")))
1900 (princ "\n\nDocumentation:\n")
1901 (princ (substring (documentation-property
1902 var
1903 'variable-documentation)
1904 1))
1905 (save-excursion
1906 (set-buffer standard-output)
1907 (help-mode))
1908 nil)))))
1909 (set var (eval-minibuffer (format "Set %s to value: " var))))
1910 (sc-set-mode-string))
1911
1912 (defmacro sc-toggle-symbol (rootname)
1913 (list 'defun (intern (concat "sc-T-" rootname)) '()
1914 (list 'interactive)
1915 (list 'sc-toggle-var
1916 (list 'quote (intern (concat "sc-" rootname "-p"))))))
1917
1918 (defmacro sc-setvar-symbol (rootname)
1919 (list 'defun (intern (concat "sc-S-" rootname)) '()
1920 (list 'interactive)
1921 (list 'sc-set-variable
1922 (list 'quote (intern (concat "sc-" rootname))))))
1923
1924 (sc-toggle-symbol "confirm-always")
1925 (sc-toggle-symbol "downcase")
1926 (sc-toggle-symbol "electric-references")
1927 (sc-toggle-symbol "auto-fill-region")
1928 (sc-toggle-symbol "mail-nuke-blank-lines")
1929 (sc-toggle-symbol "nested-citation")
1930 (sc-toggle-symbol "electric-circular")
1931 (sc-toggle-symbol "use-only-preferences")
1932 (sc-toggle-symbol "fixup-whitespace")
1933
1934 (sc-setvar-symbol "preferred-attribution-list")
1935 (sc-setvar-symbol "preferred-header-style")
1936 (sc-setvar-symbol "mail-nuke-mail-headers")
1937 (sc-setvar-symbol "mail-header-nuke-list")
1938 (sc-setvar-symbol "cite-region-limit")
1939
1940 (defun sc-T-describe ()
1941 "
1942
1943 Supercite provides a number of key bindings which simplify the process
1944 of setting or toggling certain variables controlling its operation.
1945
1946 Note on function names in this list: all functions of the form
1947 `sc-S-<name>' actually call `sc-set-variable' on the corresponding
1948 `sc-<name>' variable. All functions of the form `sc-T-<name>' call
1949 `sc-toggle-var' on the corresponding `sc-<name>-p' variable.
1950
1951 \\{sc-T-keymap}"
1952 (interactive)
1953 (describe-function 'sc-T-describe))
1954
1955 (defun sc-set-mode-string ()
1956 "Update the minor mode string to show state of Supercite."
1957 (setq sc-mode-string
1958 (concat " SC"
1959 (if (or sc-auto-fill-region-p
1960 sc-fixup-whitespace-p)
1961 ":" "")
1962 (if sc-auto-fill-region-p "f" "")
1963 (if sc-fixup-whitespace-p "w" "")
1964 )))
1965
1966 \f
1967 ;; ======================================================================
1968 ;; published interface to mail and news readers
1969
1970 ;;;###autoload
1971 (defun sc-cite-original ()
1972 "Workhorse citing function which performs the initial citation.
1973 This is callable from the various mail and news readers' reply
1974 function according to the agreed upon standard. See `\\[sc-describe]'
1975 for more details. `sc-cite-original' does not do any yanking of the
1976 original message but it does require a few things:
1977
1978 1) The reply buffer is the current buffer.
1979
1980 2) The original message has been yanked and inserted into the
1981 reply buffer.
1982
1983 3) Verbose mail headers from the original message have been
1984 inserted into the reply buffer directly before the text of the
1985 original message.
1986
1987 4) Point is at the beginning of the verbose headers.
1988
1989 5) Mark is at the end of the body of text to be cited.
1990
1991 For Emacs 19's, the region need not be active (and typically isn't
1992 when this function is called. Also, the hook `sc-pre-hook' is run
1993 before, and `sc-post-hook' is run after the guts of this function."
1994 (run-hooks 'sc-pre-hook)
1995
1996 ;; before we do anything, we want to insert the supercite keymap so
1997 ;; we can proceed from here
1998 (and sc-mode-map-prefix
1999 (local-set-key sc-mode-map-prefix sc-mode-map))
2000
2001 ;; hack onto the minor mode alist, if it hasn't been done before,
2002 ;; then turn on the minor mode. also, set the minor mode string with
2003 ;; the values of fill and fixup whitespace variables
2004 (if (not (get 'minor-mode-alist 'sc-minor-mode))
2005 (progn
2006 (put 'minor-mode-alist 'sc-minor-mode 'sc-minor-mode)
2007 (setq minor-mode-alist
2008 (cons '(sc-minor-mode sc-mode-string) minor-mode-alist))
2009 ))
2010 (setq sc-minor-mode t)
2011 (sc-set-mode-string)
2012
2013 (undo-boundary)
2014
2015 ;; grab point and mark since the region is probably not active when
2016 ;; this function gets automatically called. we want point to be a
2017 ;; mark so any deleting before point works properly
2018 (let* ((zmacs-regions nil) ; for Lemacs
2019 (mark-active t) ; for Emacs
2020 (point (point-marker))
2021 (mark (copy-marker (mark-marker))))
2022
2023 ;; make sure point comes before mark, not all functions are
2024 ;; interactive "r"
2025 (if (< mark point)
2026 (let ((tmp point))
2027 (setq point mark
2028 mark tmp)))
2029
2030 ;; first process mail headers, and populate sc-mail-info
2031 (sc-mail-process-headers point mark)
2032
2033 ;; now get possible attributions
2034 (sc-attribs-chop-address (or (sc-mail-field "from")
2035 (sc-mail-field "reply")
2036 (sc-mail-field "reply-to")
2037 (sc-mail-field "sender")))
2038 ;; select the attribution
2039 (sc-select-attribution)
2040
2041 ;; cite the region, but first check the value of sc-cite-region-limit
2042 (let ((linecnt (count-lines point mark)))
2043 (and sc-cite-region-limit
2044 (if (or (not (numberp sc-cite-region-limit))
2045 (<= linecnt sc-cite-region-limit))
2046 (progn
2047 ;; cite the region and insert the header rewrite
2048 (sc-cite-region point mark)
2049 (goto-char point)
2050 (let ((sc-eref-style (or sc-preferred-header-style 0)))
2051 (if sc-electric-references-p
2052 (sc-electric-mode sc-eref-style)
2053 (sc-eref-insert-selected t))))
2054 (beep)
2055 (message
2056 "Region not cited. %d lines exceeds sc-cite-region-limit: %d"
2057 linecnt sc-cite-region-limit))))
2058
2059 ;; finally, free the point-marker
2060 (set-marker point nil)
2061 (set-marker mark nil)
2062 )
2063 (run-hooks 'sc-post-hook)
2064 ;; post hook could have changed the variables
2065 (sc-set-mode-string))
2066
2067 \f
2068 ;; ======================================================================
2069 ;; bug reporting and miscellaneous commands
2070
2071 (defun sc-open-line (arg)
2072 "Like `open-line', but insert the citation prefix at the front of the line.
2073 With numeric ARG, inserts that many new lines."
2074 (interactive "p")
2075 (save-excursion
2076 (let ((start (point))
2077 (prefix (or (progn (beginning-of-line)
2078 (if (looking-at (sc-cite-regexp))
2079 (sc-submatch 0)))
2080 "")))
2081 (goto-char start)
2082 (open-line arg)
2083 (forward-line 1)
2084 (while (< 0 arg)
2085 (insert prefix)
2086 (forward-line 1)
2087 (setq arg (1- arg))
2088 ))))
2089
2090 (defun sc-insert-citation (arg)
2091 "Insert citation string at beginning of current line if not already cited.
2092 With `\\[universal-argument]' insert citation even if line is already
2093 cited."
2094 (interactive "P")
2095 (save-excursion
2096 (beginning-of-line)
2097 (if (or (not (looking-at (sc-cite-regexp)))
2098 (looking-at "^[ \t]*$")
2099 (consp arg))
2100 (insert (sc-mail-field "sc-citation"))
2101 (error "Line is already cited"))))
2102
2103 (defun sc-version (arg)
2104 "Echo the current version of Supercite in the minibuffer.
2105 With \\[universal-argument] (universal-argument), or if run non-interactively,
2106 inserts the version string in the current buffer instead."
2107 (interactive "P")
2108 (let ((verstr (format "Using Supercite.el %s" sc-version)))
2109 (if (or (consp arg)
2110 (not (interactive-p)))
2111 (insert "`sc-version' says: " verstr)
2112 (message verstr))))
2113
2114 (defun sc-describe ()
2115 "
2116 Supercite is a package which provides a flexible mechanism for citing
2117 email and news replies. Please see the associated texinfo file for
2118 more information."
2119 (interactive)
2120 (describe-function 'sc-describe))
2121
2122 (defun sc-submit-bug-report ()
2123 "Submit a bug report on Supercite via mail."
2124 (interactive)
2125 (require 'reporter)
2126 (and
2127 (y-or-n-p "Do you want to submit a report on Supercite? ")
2128 (reporter-submit-bug-report
2129 sc-help-address
2130 (concat "Supercite version " sc-version)
2131 (list
2132 'sc-attrib-selection-list
2133 'sc-auto-fill-region-p
2134 'sc-blank-lines-after-headers
2135 'sc-citation-leader
2136 'sc-citation-delimiter
2137 'sc-citation-separator
2138 'sc-citation-leader-regexp
2139 'sc-citation-root-regexp
2140 'sc-citation-nonnested-root-regexp
2141 'sc-citation-delimiter-regexp
2142 'sc-citation-separator-regexp
2143 'sc-cite-region-limit
2144 'sc-confirm-always-p
2145 'sc-default-attribution
2146 'sc-default-author-name
2147 'sc-downcase-p
2148 'sc-electric-circular-p
2149 'sc-electric-references-p
2150 'sc-fixup-whitespace-p
2151 'sc-mail-warn-if-non-rfc822-p
2152 'sc-mumble
2153 'sc-name-filter-alist
2154 'sc-nested-citation-p
2155 'sc-nuke-mail-headers
2156 'sc-nuke-mail-header-list
2157 'sc-preferred-attribution-list
2158 'sc-preferred-header-style
2159 'sc-reference-tag-string
2160 'sc-rewrite-header-list
2161 'sc-titlecue-regexp
2162 'sc-use-only-preference-p
2163 ))))
2164
2165 \f
2166 ;; useful stuff
2167 (provide 'supercite)
2168 (run-hooks 'sc-load-hook)
2169
2170 ;;; supercite.el ends here