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