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