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