Loads and loads of misc updates
[syinit] / 15-supercite-sy.el
1 ;; 15-supercite-sy.el --- Mail citing Settings   -*- Emacs-Lisp -*-
2
3 ;; Copyright (C) 2007 - 2013 Steve Youngs
4
5 ;;     Author: Steve Youngs <steve@sxemacs.org>
6 ;; Maintainer: Steve Youngs <steve@sxemacs.org>
7 ;;    Created: <2007-12-02>
8 ;; Time-stamp: <Saturday Aug 17, 2013 11:29:15 steve>
9 ;;   Download: <http://bastard.steveyoungs.com/~steve/SXEmacs/inits/>
10 ;;   HTMLised: <http://bastard.steveyoungs.com/~steve/SXEmacs/htmlinits/15-supercite-sy.html>
11 ;;   Git Repo: git clone http://git.sxemacs.org/syinit
12 ;;   Keywords: init, compile
13
14 ;; This file is part of SYinit
15
16 ;; Redistribution and use in source and binary forms, with or without
17 ;; modification, are permitted provided that the following conditions
18 ;; are met:
19 ;;
20 ;; 1. Redistributions of source code must retain the above copyright
21 ;;    notice, this list of conditions and the following disclaimer.
22 ;;
23 ;; 2. Redistributions in binary form must reproduce the above copyright
24 ;;    notice, this list of conditions and the following disclaimer in the
25 ;;    documentation and/or other materials provided with the distribution.
26 ;;
27 ;; 3. Neither the name of the author nor the names of any contributors
28 ;;    may be used to endorse or promote products derived from this
29 ;;    software without specific prior written permission.
30 ;;
31 ;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
32 ;; IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33 ;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34 ;; DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
35 ;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 ;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 ;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 ;; BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
39 ;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
40 ;; OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
41 ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
43 ;;; Commentary:
44 ;;
45 ;;   Setting up citing in Gnus with Supercite.
46 ;;
47
48 ;;; Credits:
49 ;;
50 ;;   The HTML version of this file was created with Hrvoje Niksic's
51 ;;   htmlize.el which is part of the XEmacs "text-modes" package.
52 ;;
53
54 ;;; Todo:
55 ;;
56 ;;     
57
58 ;;; Code:
59 (require 'supercite)
60 (require 'time-date)
61
62 ;; There is a screw-up in the Gnus autoloads that prevents this from
63 ;; being autoloaded
64 (defun time-to-seconds (time)
65   "Convert time value TIME to a floating point number."
66   (with-decoded-time-value ((high low micro pico type time))
67                            (+ (* 1.0 high 65536)
68                               low
69                               (/ (+ (* micro 1e6) pico) 1e12))))
70
71 (defun sy-september-citation-line ()
72   (let ((sc-mumble "")
73         (whofrom (sc-whofrom)))
74     (if whofrom
75         (insert sc-reference-tag-string
76                 (sc-hdr "On "
77                         (int-to-string
78                          (-
79                           (time-to-days (mail-header-parse-date
80                                          (sc-mail-field "date")))
81                           (time-to-days (encode-time 0 0 0 01 09 1993))))
82                         " September 1993, ")
83                 (sc-mail-field "sc-author")
84                 " wrote:\n"))))
85
86 (setq sc-rewrite-header-list 
87       '((sc-no-header) 
88         (sc-header-on-said) 
89         (sc-header-inarticle-writes) 
90         (sc-header-regarding-adds) 
91         (sc-header-attributed-writes) 
92         (sc-header-author-writes) 
93         (sc-header-verbose) 
94         (sc-no-blank-line-or-header)
95         (sc-header-author-email-writes)
96         (sy-september-citation-line)))
97
98 (setq sc-preferred-attribution-list
99       (list
100        '"sc-lastchoice"
101        "x-attribution"
102        "sc-consult"
103        "initials"
104        "firstname"
105        "emailname" 
106        "lastname"))
107
108 (setq 
109  message-cite-function 'sc-cite-original
110  sc-confirm-always-p nil
111  sc-preferred-header-style 8
112  sc-auto-fill-region-p nil
113  sc-fixup-whitespace-p nil
114  sc-electric-references-p t
115  sc-cite-blank-lines-p nil
116  sc-nested-citation-p t
117  sc-citation-leader "  "
118  sc-citation-separator " "
119  sc-reference-tag-string ""
120  sc-citation-delimiter "> "
121  sc-extract-address-components 'gnus-extract-address-components)
122
123 (defun sy-sc-remove-signature ()
124   "Removes the signature from the original message.
125
126 To use, hang it off the appropriate hook such as `sc-pre-hook' so
127 you're not citing useless stuff."
128   (save-excursion
129     (let ((start (point))
130           (end (mark t))
131           (sig-sep gnus-signature-separator)
132           mark)
133       (while sig-sep
134         (goto-char end)
135         (when (re-search-backward (car sig-sep) start t)
136           (forward-line -1)
137           (while (looking-at "[ \t]*$")
138             (forward-line -1))
139           (forward-line 1)
140           (setq mark (set-marker (make-marker) (point)))
141           (delete-region mark (mark t)))
142         (setq sig-sep (cdr sig-sep))))))
143
144 (add-hook 'sc-load-hook 'sc-setup-filladapt)
145 (add-hook 'sc-pre-hook 'sy-sc-remove-signature)
146 (add-hook 'mail-citation-hook 'sc-cite-original)
147
148 ;:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
149 (message "Supercite settings loaded successfully")
150