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 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267
|
# emacs.conf -- configuration file
#
# File id
#
# Copyright (C) 2000-2016 Jari Aalto
#
# This program 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 2 of the
# License, or (at your option) any later version
#
# This program 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 program; see the file COPYING. If not,
# visit <http://www.gnu.org/copyleft/gpl.html>
#
# Foreword
#
# WARNING: This file is only an example. Many links have changed
# since this file was written so it cannot be used "as is".
#
# The examples below list download locations of Emacs Lisp
# packages. If you don't know what Emacs is, you can stop
# reading.
#
# Description
#
# You can't use this configuration file, unless the directory
# structure is already in place. To create these paths to your
# disk, change the ROOT directory in the variable configuration
# file `emacs-vars.conf' See furher instructions there.
#
# Some packages are commented out, because they are available
# via other means, like version control.
#
# The following special markings have been used int his file:
#
# #e = File is part of Emacs
# #xe = File is part of XEmacs
# #cvs = Person has an accessible CVS repository
#
# The overall site-lisp structure
#
# This configuration file creates the "Net" portion of this general
# Emacs `site-lisp' installation structure.
#
# ................................................................
#
# ROOT/
# common/
# | Files that can be used in Emacs and XEmacs,
# | these files have been picked from
# | gnu.emacs.sources or from mailing lists.
# | Files do not have a homepage.
# |
# | doc Emacs lisp manual
# | other
# | programming
# | win32 win32 only files
# |
# emacs/ Files that work only in EMACS
# | users By person name
# | packages By package name
# | other Miscellaneous
# |
# net/ Packages available from net, URL exists.
# cvs-packages Packages that can be updated via CVS pserver
# |
# | ILISP $SFORGE/ilisp
# | apel :pserver:anonymous@cvs.m17n.org:/cvs/root co apel
# | bbdb $SFORGE/bbdb
# | cc-mode $SFORGE/cc-mode
# | cedet http://cedet.sourceforge.net
# | includes speedbar, EDE, quickpeek, semantic, EIEIO
# | devel emacro/devel -- See Emacro
# | ecb $SFORGE/ecb
# | eicq $SFORGE/eicq
# | emacro $SFORGE/emacro
# | gnus :pserver:anoncvs@anoncvs.gnu.org:/gd/gnu/anoncvsroot co url
# | jde :pserver:cvs@sunsite.auc.dk:/pack/anoncvs login
# | login: cvs / checkout jde
# | jess-mode $SFORGE/jess-mode
# | http://www.unixuser.org/~ueno/liece/
# | lookup $SFORGE/lookup
# | mailcrypt $SFORGE/mailcrypt
# | tnt $SFORGE/tnt
# | url CVS www.savannah.org
# | w3 CVS www.savannah.org
# | xslt-process $SFORGE/xslt-process
# |
# packages/ Packages, that consist of multiple files
# |
# users/ Individual user packages from their homepages.
#
# ROOT/
# |
# +-- users By person name
# +-- packages By package name
# +-- other Miscellaneous
# Note: The variable like $ESITE_LISP are defined in another configuration
# file
lcd: $ESITE_LISP
tag1: elisp
tag2: elisp-packages-other
#######################################################################
#
#
# special packages
#
#
#######################################################################
# ...................................................... &gnus ...
tag3: gnus
lcd: $EPKG_NET
print: use CVS :pserver:gnus@cvs.gnus.org:/usr/local/cvsroot co gnus
# .......................................................... &mime ...
tag3: mime-semi
# lcd: $ECOMMON/mime
# apel is now in CVS
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/apel-9.12.tar.gz new:
# Do not use any more. Gnus has MIME
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/semi-current/flim-1.12.3.tar.gz new
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/semi-current/semi-1.12.1.tar.gz new:
tag3: mime-wemi
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/wemi/snapshots/wemi-199902081310.tar.gz new:
tag3: chao-gnus
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/semi/semi-current/chao-gnus-6.12 new:
tag3: dgnus
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/dgnus/gnus.tar.gz
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/dgnus/hott.tar.gz
# ftp://ftp.jaist.ac.jp/pub/GNU/elisp/dgnus/etc.tar.gz
tag3: semi-gnus
# ftp://ftp.jaist.ac.jp:/pub/GNU/elisp/semi-gnus/
#######################################################################
#
#
# Emacs and XEmacs compatible packages
#
#
#######################################################################
lcd: $EPKG_NET
tag4: elisp-packages-net
tag5: antlr-mode
# Included in Emacs 21.2
# $EHTTP_SF/antlr-mode/antlr-mode-2.2a.tar.gz new: x:
tag5: arch tag5: gnuarch tag5: xtla
print: http://wiki.gnuarch.org/moin.cgi/xtla
print: https://gna.org/projects/xtla-el
http://download.gna.org/xtla-el/xtla-0.9.tar.gz new: x:
# http://xsteve.nit.at/prg/emacs/ pregexp:xtla.el
tag5: auto-insert
# This package does not have a good internal archive structure
http://www.geocities.com/SiliconValley/Foothills/9093/files/auto-insert-tkld-1.23.tar.gz new: x:
tag5: artist
print: Part of Emacs 21.1. There is no homepage any more
tag5: auctex
print: Get AUCTex from CVS tree
print: cvs -d :pserver:cvs@sunsite.auc.dk:/pack/anoncvs co auctex
tag5: bibletools
http://prdownloads.sourceforge.net/sourceforge/bibletools/BibleTools-0.13.tar.gz x:
tag5: bbdb
# Use CVS
tag5: bbdb-expire
# Included in BBDB now
# http://www.esperi.demon.co.uk/nix/downloads/bbdb-expire-1.4.tar.gz new: x:
tag5: bakel-tijs tag5: c-mode-addon
http://vengeance.et.tudelft.nl/~smoke/pub/emacs pregexp:(tar.gz|.el$) x:
tag5: bugtrack
http://jdee.sunsite.dk/developerscorner.html pregexp:bug.*-\d+\.[\d\.]+tar.gz x:
tag5: cc-mode
# http://cc-mode.sourceforge.net/
# http://www.python.org/emacs/cc-mode/cc-mode.tar.gz
tag5: color-mate
# vregexp:color-mate-\d+[\d.]+.tar.gz
# file:color-mate-10.1.tar.gz
# pregexp:\d\.tar.gz
http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/color_mate/ pregexp:color-mate-\d+\.[\d\.]+tar.gz file:color-mate-1.10.tar.gz new: x:
tag5: dcsh-mode
# 2001-03 Link is not longer there
# http://www.emacs.org/hdl/dcsh-mode.html page: pregexp:\d\.tar.gz vregexp:((?i)dcsh\s+mode\s+([\d.]+)) file:dcsh-mode-1.2.tar.gz new: x:
tag5: dired-dd
http://www.asahi-net.or.jp/~pi9s-nnb/dired-dd-home.html
http://www.asahi-net.or.jp/~pi9s-nnb/dired-dd-home.html page:find pregexp:\.tar.gz x:
tag5: docbook-xml
http://prdownloads.sourceforge.net/sourceforge/docbookxml/docbook-xml-mode.tar.gz x:
tag5: ede
print: See cedet.sourceforge.net and use CVS to get code.
tag5: eicq
# This project is now available at sourceforge. Use CVS
# http://sourceforge.net/projects/eicq/
# Old: 2000-03
# http://www.sfu.ca/~stephent/eicq/ pregexp:tar.gz x:
# 2001-03 no longer exists
# http://users.ozlinx.com.au/~youngs_s/eicq/ page:find pregexp:eicq-0.2.5.tar.gz vregexp:((?i)current\s+version\s+-\s-[^\d]+([\d.]+) file:eicq-0.2.5.tar.gz x:
tag5: eieio
print: See cedet.sourceforge.net and use CVS to get code.
tag5: elib
# Required by pcl-cvs
ftp://ftp.lysator.liu.se/pub/emacs/elib-1.0.tar.gz new: x:
tag5: emacs-jabber
http://prdownloads.sourceforge.net/emacs-jabber/emacs-jabber-0.6.1.tar.gz new: x:
tag5: esheet
http://esheet.tripod.com/index.html page: pregexp:tar.gz x:
tag5: eshell
# Includes pcomplete
# the vregexp is not needed, because the DEFUALT regexp will
# match string "The latest version of Eshell is 2.4.1".
#
# The <file:> is mandatory so that correct name template
# is known to program.
print: eshell is included in latest Emacs, download site was
print: http://www.gci-net.com/users/j/johnw/
# http://www.gci-net.com/users/j/johnw/eshell.html page: pregexp:eshell.tar.gz file:eshell-1.3.tar.gz new: x:
tag5: eudc
# Now available at sourceforge CVS
# http://lspwww.epfl.ch/~figueire/Software/eudc/ page: save:emacs-figueiredo-oscar-eudc.heml
# http://lspwww.epfl.ch/~figueire/Software/eudc/index.html page: pageregexp:eudc-1.30b.tar.gz vregexp:((?i)new\s+in\s+version\s+([\d.]+)) file:eudc-1.30b.tar.gz new: x:
print eudc - emacs unified Directory client, is available sourceforge
tag5: flymake
http://prdownloads.sourceforge.net/flymake/flymake-0.1.zip new: x:
tag5: guess-lang
print. See tag `drieu-benjamin'
# http://www.grassouille.org/emacs/index.en.html page: save:emacs-drieu-benjamin.html pregexp:guess.*\.tar.gz x:
tag5: gnuplot
http://leonardo.phys.washington.edu/~ravel/software/gnuplot-mode/Welcome.html save:emacs-gnuplot-mode.html
http://leonardo.phys.washington.edu/~ravel/software/gnuplot-mode/Welcome.html page: pregexp:\.tar.gz x:
tag5: gnyognyo
#todo
http://www.gentei.org/~yuuji/software/ pregexp:gnyognyo x:
tag5: html-helper
print: available at tag "minar-nelson"
tag5: hm-html-menus
http://www.tnt.uni-hannover.de/~muenkel/software/own/hm--html-menus/overview.html save:hm-overview.html
ftp://ftp.tnt.uni-hannover.de/pub/editors/xemacs/contrib/ regexp:hm-- regexp-no:dired x:
tag5: id3
http://www.gentei.org/~yuuji/software/mpg123el/ pregexp:id3el-[\d.]+tar.gz x:
tag5: idlwave
print: Included in latest Emacs
# http://idlwave.org/download/idlwave.tar.gz
tag5: italk
http://prdownloads.sourceforge.net/sourceforge/italk/italk-el-1.03.tar.gz x: new:
tag5: irchat
# patches http://www.iki.fi/azure/tmp/
# http://people.ssh.fi/tri/irchat/
#
# irchat latest snapshots are in format -YYYYMMDD and the older
# release kits are in format -NN.NN We search here the
# very latest kits irchat-980625.tar.gz
http://people.ssh.fi/tri/irchat/index.html page: pregexp:/irchat-\d{8} vregexp:((?i)irchat-(\d{8})) file:irchat-980625.tar.gz new: x:
tag5: jabber
http://prdownloads.sourceforge.net/sourceforge/emacs-jabber/emacs-jabber-0.3.1.tar.gz new: x:
tag5: jde tag5: jdee
# The "latest" is last production release, "beta" is
# bleading edge. Unfortunately there is no inforamtion
# on the page about the latest version number which we
# could use. This simply downlodas the file again.
#
# http://jde.sunsite.auc.dk/jde-latest.zip new: overwrite: x:
# Search from page following string in one line:
#
# "JDEE 2.2.9beta6, the latest beta, is also available in
# zip or zipped tar format."
#
# http://jdee.sunsite.dk/rootpage.html page: pregexp:jde-beta.zip vregexp:((?i)JDEE\s+([\d.]+)) file:jde-1.1.zip new: x:
print: CVS :pserver:cvs@sunsite.auc.dk:/pack/anoncvs login
http://jdee.sunsite.dk/jde-latest.zip overwrite: x:
tag5: jde-contrib
lcd: $EPKG_NET/jde-contrib
http://jdee.sunsite.dk/contributions.html save: jde-contributions.html
http://jdee.sunsite.dk/contributions.html pregexp:\.el regexp-no:jsee|jserial
lcd: $EPKG_NET
tag5: jde-docindex
# 2005-09-29 invalid URL
# http://relativity.yi.org/jde-docindex/download/jde-docindex-0.9.0.tar.gz new: x:
tag5: jde-usages
http://prdownloads.sourceforge.net/sourceforge/jde-usages/jde-usages-0.1.zip x:
tag5: lout
http://www.chez.com/emarsden/lout/ page:find pregexp:lout.*((?i)faq.*html|tar.gz) x:
tag4: mirror
http://people.netscape.com/drush/emacs/ pregexp:\.tar.gz x:
tag5: notes-mode
#todo: error on loading!
http://www.isi.edu/~johnh/SOFTWARE/NOTES_MODE/index.html pregexp:notes-mode-[\d.]+.\d.tar.gz file:notes-mode-1.11.tar.gz new: x:
tag5: marche
# http://www.gentei.org/~yuuji/software/ page:find pregexp:marche-[\d.]+.tar.gz vregexp:(marche-([\d.]+)) file:marche-1.11.tar.gz new: x:
http://www.gentei.org/~yuuji/software/ page:find pregexp:marche-[\d.]+.tar.gz x:
tag5: mkhtml tag5: adams-drew
# 2000-12 No personal homepage
ftp://ftp.cis.ohio-state.edu/pub/emacs-lisp/archive/mkhtml-1.0.tar.gz new: x:
tag5: mmm-mode
print: See mmm-mode.sourceforge.net and use CVS to get code.
# The project is now at sourceforge
# ftp://download.sourceforge.net/pub/sourceforge/mmm-mode/mmm-mode-0.4.6.tar.gz new: x:
tag5: two-mode
http://www.dedasys.com/freesoftware/files/two-mode-mode.el
tag5: mp3
http://prdownloads.sourceforge.net/sourceforge/emacsmp3player/mp3player-1.8.tar.gz new: x:
tag5: psgml
# Do not download this, the Emacs loaddefs.el sets autoload html-mode
# to psgml-mode.el, but the latest package does not
# do that any more. => Emacs doesn't find html-mode.
# And the package is no longer actively maintained.
# ftp://ftp.lysator.liu.se/pub/sgml/psgml-1.0.3.tar.gz new: x:
print: MOTE that sgml-mode.el is included in XEmacs
print: See http://www.lysator.liu.se/projects/about_psgml.html
tag5: php-mode
http://prdownloads.sourceforge.net/sourceforge/php-mode/php-mode.el
tag5: python-mode
# Official page is at http://wiki.python.org/moin/EmacsPythonMode
print: See sourceforge project: python-mode
tag5: rcpp-mode
http://www.interhack.net/projects/rcpp-mode/ pregexp:tgz x:
tag5: records-mode
print: see records.sourceforge.net and use CVS to get code
# http://www.cse.ogi.edu/~ashvin/software.html pregexp:records-[\d.]+.tar.gz file:records-1.2.2.tar.gz new: x:
tag5: semantic
print: See cedet.sourceforge.net and use CVS to get code.
tag5: ses
# SES21 - Simple Emacs Spreadsheet
# Jonathan Yavner <jyavner@engineer.com>
http://mywebpages.comcast.net/jyavner/ses/ pregexp:ses21-020426.tgz
tag5: sml-mode
ftp://rum.cs.yale.edu/pub/monnier/sml-mode/sml-mode-3.9.5.tar.gz new: xopt:rm x:
tag5: semantic
print: See cedet.sourceforge.net and use CVS to get code.
tag5: svn tag5: subversion
print Note: At Savannat there is also subversion code
print http://savannah.gnu.org/cgi-bin/viewcvs/emacs/emacs/lisp/vc-svn.el?rev=HEAD save:vc-svn.el
print See psvn.el from 'reichor-stefan'
tag5: template
print: See project page http://emacs-template.sourceforge.net/
# No CVS!
$EHTTP_SF/emacs-template/template-3.1a.tar.gz new:
tag5: ttn
# Too many files that conflict other sources (core Emacs etc)
# http://www.glug.org/people/ttn/software/ttn-pers-elisp/ pregexp:tar.gz x:
http://www.glug.org/people/ttn/software/minor-mode-survey/ pregexp:(survey|README)
tag5: vera-mode
# 2001-12 No more http://www.emacs.org/hdl/vera-mode.html page: pregexp:\d\.tar.gz vregexp:((?i)vera\s+mode\s+([\d.]+)) file:vera-mode-2.3.tar.gz new: x:
tag5: vhdl-mode
# in Emacs
# http://www.emacs.org/hdl/vhdl-mode.html page: pregexp:\d\.tar.gz vregexp:((?i)vhdl\s+mode\s+([\d.]+)) file:vhdl-mode-3.30.tar.gz new: x:
tag5: w3
print: latest versions available at savannah.gnu.org CVS tree
tag5: x-symbol
$EHTTP_SF/x-symbol/x-symbol-4.40-src.tar.gz new: x:
tag5: xslt
print: See xslt-process.sourceforge.net and use CVS to get code.
print: 2002-08-01 old page was at http://www.geocities.com/SiliconValley/Monitor/7464/emacs
tag5: zenirc
http://www.zenirc.org/download.html pregexp:\.tar\.gz x:
#######################################################################
#
#
# Misc packages
#
#
#######################################################################
tag4: elisp-packages-misc
http://www.asahi-net.or.jp/~pi9s-nnb/myelisp.html page:find pregexp:\.tar.gz x:
#######################################################################
#
#
# Emacs only packages
#
#
#######################################################################
tag4: elisp-packages-emacs
lcd: $EPKG_EMACS
tag5: pcl-cvs
print: Note, pcl-cvs.el is part of Eamcs 21 under name pcvs.el
print: Old pcl-cvs can be found at http://savannah.nongnu.org/projects/elisp-code
# pcl-cvs-2.0b2.tar.gz
# ftp://ftp.weird.com/pub/local/pcl-cvs-2.9.9.tar.gz new:
# ftp://rum.cs.yale.edu/pub/monnier/pcl-cvs/pcl-cvs-2.9.9.tar.gz new: x:
# ftp://rum.cs.yale.edu/pub/monnier/pcl-cvs.tar.gz overwrite:
#######################################################################
#
#
# Misc files
#
#
#######################################################################
tag3: emacs-elisp-intro
lcd: $ECOMMON/doc
ftp://ftp.gnu.org/gnu/emacs/emacs-lisp-intro-2.04.tar.gz new:
tag3: emacs-elisp-manual
lcd: $ECOMMON/doc
ftp://ftp.gnu.org/gnu/emacs/elisp-manual-21-2.8.tar.gz new:
tag3: jsp
lcd: $ECOMMON/www
# jsp-html-helper-mode.el -- JSP add-on for html-helper-mode.el
#
# Author: Ben Tindale <ben@bluesat.unsw.edu.au>
# Maintainer: Ben Tindale <ben@bluesat.unsw.edu.au>
# Created: 19 April 2000
https://sourceforge.net/snippet/download.php?type=snippet&id=100284 save:jsp-html-helperl-mode.el
tag3: visual-basic
lcd: $ECOMMON/programming/vb
#######################################################################
#
#
# Emacs user packages from net
#
#
#######################################################################
tag2: elisp-users
lcd: $EUSR
tag3: abrahamsen-per
# lcd: $EUSR/abrahamsen-per
print: See tag 'auctex'
tag3: buhl-josh
lcd: $EUSR/buhl-josh
# 2000-12 No personal homepage
ftp://ftp.cis.ohio-state.edu/pub/emacs-lisp/archive/screenline.el
tag3: akimichi-tatsukawa
lcd: $EUSR/akimichi-tatsukawa
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Akimichi pregexp:\.el$
tag3: alcorn-doug
lcd: $EUSR/alcorn-doug
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Alcorn pregexp:\.el$
tag3: anderson-patrick
lcd: $EUSR/anderson-patrick
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Patrick.*Andersen
tag3: arneson-erik
lcd $EUSR/arneson-erik
http://erik.arneson.org/elisp.html pregexp:\.el$
tag3: bakhash-david
lcd: $EUSR/bakhash-david
# Has no central page for all the lisp, impossible to find
http://mit.edu/cadet/www/cl-array.el
# Included in Emacs: http://www.mit.edu/people/cadet/strokes.el
http://www.mit.edu/people/cadet/.strokes save:emacs-bakhash-david-strokes-dotfile.el
http://www.mit.edu/people/cadet/strokes-abc.el
http://www.mit.edu/people/cadet/strokes-help.html
tag3: barzilay-eli
# lcd: $EUSR/barzilay-eli
#todo:
print: barzilay-eli Emacs download site unknown
# http://www.cs.cornell.edu/eli/
# ftp://ftp.cs.cornell.edu/pub/eli/ regexp:\.el$
#
# calculator.el is in Emacs 21.2
# http://www.cs.cornell.edu/eli/interests.html pregexp:\.el$ regexp-no:calculator.el
tag3: belanger-jay
lcd: $EUSR/belanger-jay
http://vh213601.truman.edu/~belanger/Emacs.html save:emacs-belanger-jay.html
http://vh213601.truman.edu/~belanger/Emacs.html pregexp:\.el$ regecp-no:httpd
tag3: berndl-klaus tag3: cygwin-mount
lcd: $EUSR/berndl-klaus
# No homepage, but one important code is here.
http://www.emacswiki.org/elisp/index.html pregexp:cygwin-mount.el$
tag3: berry-karl tag3: crypt
lcd: $EUSR/berry-karl
print: http://fink.sourceforge.net/pdb/package.php/crypt++el
# ftp://ftp.cs.umb.edu/pub/misc/crypt++.el
tag3: bihlmeyer-robert tag3: gnus-junk
# lcd: $EUSR/bihlmeyer-robert
print: 2002-08-02 URL and email address unknown.
tag3: bini-michele
lcd: $EUSR/bini-michele
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Michele.*Bini pregexp:\.el$ regexp-no:diff.el
tag3: bjorlykke-stig
lcd: $EUSR/bjorlykke-stig
http://www.xemacs.org/~stigb page: pregexp:\.el
tag3: blaak-ray
# lcd: $EUSR/blaak-ray
print: Latest Emacs includes delphi.el
# http://www.infomatch.com/~blaak pregexp:\.el$ regexp-no:delphi.el
tag3: boukanov-igor
lcd: $EUSR/boukanov-igor
http://www.fi.uib.no/~boukanov/emacs/ page: save:emacs-boukanov-igor.html
# http://www.fi.uib.no/~boukanov/emacs/ pregexp:\.el
tag3: breton-peter tag3: pbreton
lcd: $EUSR/breton-peter
# #todo: 2001-08 connection error
# most of the files are in Emacs now.
# http://pbreton.ne.client2.attbi.com/emacs/ pregexp:\.el regexp-no:generic|net-util|dirtrack|net-util|locate|generic|dirtrack|find-lisp|generic|locate
tag3: breton-tom
# lcd: $EUSR/breton-tom
print: 2002-08-02 Address unknown.
tag3: brillant-alexandre
lcd: $EUSR/brillant-alexandre
http://www.djefer.com/~jtemplate/ page:find pregexp:^jtemplate\.el
tag3: broubaker-heddy
# lcd: $EUSR/broubaker-heddy
print: 2002-08-02 Address unknown.
tag3: brodie-bill
lcd: $EUSR/brodie-bill
#todo: no home page
ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/ regexp:(linemenu).*el$
tag3: brown-jeremy
lcd: $EUSR/brown-jeremy
http://www.ai.mit.edu/~jhbrown/ifile-gnus.html pregexp:\.el$
http://www.ai.mit.edu/~jhbrown/ifile-gnus.html pregexp:\.tar.gz$ x:
tag3: burgett-steve
# URL does not exist
#lcd: $EUSR/burgett-steve
#http://robotics.eecs.berkeley.edu/~burgett
tag3: burton-brent
lcd: $EUSR/burton-brent
http://www.io.com/~brentb/emacs/ page: save:emacs-burton-brent.html
http://www.io.com/~brentb/emacs/ page:find pregexp:(\.el|(?i)faq)
tag3: burton-kevin
lcd: $EUSR/burton-kevin
print: CVS at http://www.peerfear.org/cgi-bin/cvsweb/el/
http://relativity.yi.org/emacs/ page: save:emacs-burton-kevin.html
http://relativity.yi.org/emacs/ page:find pregexp:\.el$ regexp-no:NAME
http://relativity.yi.org/el/ page:find pregexp:etail
tag3: caoile-clifford-escobar
# lcd: $EUSR/caoile-clifford-escobar
# http://www2.odn.ne.jp/piyokun/emacs/
tag3: carpenter-bill
# feedmail is now part of Emacs
# http://www.carpenter.org/
tag3: casadonte-joe
lcd: $EUSR/casadonte-joe
# old was http://www.netaxs.com/~joc/emacs.html
http://www.northbound-train.com/emacs.html page:find pregexp:\.el$ regexp-no:cperl
tag3: chen-gongquan
lcd: $EUSR/chen-gongquan
# Jerry G. Chen
http://www.geocities.com/SiliconValley/Bridge/7750/xemacs/ page: save:emacs-chen-gongquan.html
http://www.geocities.com/SiliconValley/Bridge/7750/xemacs/ page:find pregexp:\.el.gz$ x:
tag3: chua-sandra
lcd: $EUSR/chua-sandra
lcd: $EUSR/chua-sandra/planner
http://sacha.free.net.ph/notebook/emacs/ pregexp:planner(-[a-z]+)?\.el$
# Sandra Jean Chua
lcd: $EUSR/chua-sandra/remember
http://sacha.free.net.ph/notebook/emacs/remember/ pregexp:(\.el|texi|info)
tag3: chen-jerry
lcd: $EUSR/chen-jerry
http://www.geocities.com/SiliconValley/Bridge/7750/xemacs/ page: save:emacs-chen-jerry.html
http://www.geocities.com/SiliconValley/Bridge/7750/xemacs/ pregexp:\.el(\.gz)? x:
tag3: clausen-lars
lcd: $EUSR/clausen-lars
http://shasta.cs.uiuc.edu/~lrclause/tc.html pregexp:\.el$
tag3: conrad-christoph
lcd: $EUSR/conrad-christoph
# todo: where is the homepage? This is not ideal URL
# which.el is part of the "emacro". See CVS
# http://www.gnusoftware.com/Emacs/Lisp/ page:find pregexp:^which.el
tag3: corcoran-travis
lcd: $EUSR/corcoran-travis
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Corcoran pregexp:\.el$
tag3: corneli-joe
lcd: $EUSR/corneli-joe
http://www.ma.utexas.edu/~jcorneli/a/elisp/ pregexp:\.el
tag3: curtin-matt
print: see package tag 'rcpp-mode'
tag3: daiki-ueno tag3: liece
print: Use CVS at :pserver:anonymous@cvs.m17n.org:/cvs/root co liece
tag3: dasmohapatra-vivek
lcd: $EUSR/dasmohapatra-vivek
print: Cannot parse web page, ownload manually from http://rtfm.etla.org/emacs
# http://rtfm.etla.org/cgi-bin/htmlfontify.cgi
tag3: dampel-herbert
lcd: $EUSR/dampel-herbert
# No email address or homepage known
ftp://ftp.ul.bawue.de/pub/purple/emacs/ regexp:\.el x: regexp-no:battery|info-look
tag3: davidson-kevin
lcd: $EUSR/davidson-kevin
# Those listed in no regexp are sperate "packages"
#
# http://www.geocities.com/SiliconValley/Foothills/9093/files/ page:find pregexp:. regexp-no: auto-insert|setcdblk|proxy-cmsd|^dt\.|^dtbin x:
# http://www.geocities.com/SiliconValley/Foothills/9093/files/mail-signature.gz save:mail-signature.el.gz x:
# http://www.geocities.com/SiliconValley/Foothills/9093/files/clean.gz save:clean.pl.gz x:
tag3: deleuze-christophe
lcd: $EUSR/deleuze-christophe
http://www-rp.lip6.fr/~deleuze/emacs-en.html save:emacs-deleuze-christophe.html
http://www-rp.lip6.fr/~deleuze/emacs-en.html page: pregexp:\.el
tag3: dickow-ulrik
lcd: $EUSR/dickow-ulrik
http://www.nbi.dk/~dickow/emacs page: save:emacs-dickow-ulrik.html
http://www.nbi.dk/~dickow/emacs page:find pregexp:Xdefaults
http://www.nbi.dk/~dickow/skel/.emacs save:dickow-ulrik-dotemacs.el
tag3: dirson-yann
#todo:
lcd: $EUSR/dirson-yann
http://ydirson.free.fr/ pregexp:\.el
tag3: drieu-benjamin
lcd: $EUSR/drieu-benjamin
# The fortune.el is maintained by shulman-michael
# fortune.el is included in Emacs 21.2
http://www.grassouille.org/emacs/index.en.html page: save:emacs-drieu-benjamin.html
http://www.grassouille.org/emacs/index.en.html pregexp:\.el$ regexp-no:fortune|folding|pong
tag3: dyke-neil tag3: junkbuster tag3: spamprod
lcd: $EUSR/dyke-neil
http://www.neilvandyke.org/spamprod/ page:find pregexp:\.el$
http://www.neilvandyke.org/junkbust-emacs/ page:find pregexp:\.el$
#e http://www.neilvandyke.org/webjump/ page:find pregexp:\.el$
http://www.neilvandyke.org/jasmin-emacs/ page:find pregexp:\.el$
http://www.neilvandyke.org/bbdbpalm/ page:find pregexp:\.el$
http://www.neilvandyke.org/perkymbf/ page:find pregexp:\.el$
http://www.neilvandyke.org/kbdraw/ page:find pregexp:\.el$
http://www.neilvandyke.org/padr/ page:find pregexp:\.el$
http://www.neilvandyke.org/quack/ page:find pregexp:\.el$
http://www.neilvandyke.org/revbufs/ page:find pregexp:\.el$
http://www.neilvandyke.org/noticeify/ page:find pregexp:\.el$
http://www.neilvandyke.org/nsamail/ page:find pregexp:\.el$
tag3: edmonds-brian
#todo:
lcd: $EUSR/edmonds-brian
http://www.gweep.ca/~edmonds/usenet page: save:emacs-edmonds-brian.html
tag3: eide-eric
lcd: $EUSR/eide-eric
http://www.cs.utah.edu/~eeide/emacs/index.html save:emacs-eide-eric.html
http://www.cs.utah.edu/~eeide/emacs/index.html pregexp:\.el regexp-no:filladapt x:
tag3: ellison-gary
lcd: $EUSR/ellison-gary
http://www.interhack.net/people/gfe/ pregexp:\.el
tag3: elmes-damien
lcd: $EUSR/elmes-damien
print: Current maintainer http://mwolson.org/projects/EmacsWiki.html
print: Old page http://repose.cx/emacs/wiki/index.html
tag3: englen-stephen
lcd: $EUSR/englen-stephen
# In Emacs: mspools.el iswitchb.el
http://www.anc.ed.ac.uk/~stephen/emacs/index.html save:emacs-englen-stephen.html
http://www.anc.ed.ac.uk/~stephen/emacs/ page:find pregexp:\.el$ regexp-no:(mspool|switch)
http://www.anc.ed.ac.uk/~stephen/emacs/ell.el
http://anc.ed.ac.uk/~stephen/emacs/ell.html
# This file is in list of theberge-jean
# http://anc.ed.ac.uk/~stephen/emacs/ell.html page:find pregexp:ell\.el$
tag3: ernst-michael
lcd: $EUSR/ernst-michael
# Other packages are very old. The EDB is Emacs database,
# Which seems to be old too.
http://sdg.lcs.mit.edu/~mernst/software/edb/ pregexp:gz x:
tag3: fouts-martin
# lcd: $EUSR/fouts-martin
print: 2002-08-02 Address unknown.
tag3: friedman-noah
lcd: $EUSR/friedman-noah
# ftp://ftp.splode.com/pub/users/friedman/emacs-lisp/
# In Emacs: eldoc.el rlogin.el rsz-mini.el type-break.el vcard.el
#todo ftp://ftp.splode.com/pub/users/friedman/emacs-lisp/
http://www.splode.com/~friedman/software/emacs-lisp/index.html save:emacs-noah.html
http://www.splode.com/~friedman/software/emacs-lisp/ pregexp:\.el$ regexp-no:(eldoc|rlogin|rsz|suggbind|type-break|vcard|whitespace|type-break|vcard)
tag3: galbraith-peter
lcd: $EUSR/galbraith-peter
http://people.debian.org/~psg/elisp/ pregexp:\.*el regexp-no:ff-paths|ffap|word-help|
tag3: garshol-lars tag3: css-mode
http://www.garshol.priv.no/download/software/css-mode/ pregexp:\.el$
tag3: gaston-pierre
lcd: $EUSR/gaston-pierre
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Gaston pregexp:\.el$
tag3: glickstein-bob
# lcd: $EUSR/glickstein-bob
# Now in Emacs sregex.el ishl.el (isearch-lazy-highlight)
# 2001-12 Page has disappeared
# http://www.zanshin.com/~bobg/software.html page: save:emacs-glickstein-bob.html
# http://www.zanshin.com/~bobg/source/emacs/ishl.el
# http://www.zanshin.com/~bobg/source/emacs/unscroll.el
# http://www.zanshin.com/~bobg/source/emacs/live-mode.el
# http://www.zanshin.com/~bobg/source/emacs/wcount.el
# http://www.zanshin.com/~bobg/source/emacs/winhist.el
tag3: goel-ashvin
print: See sourceforge project 'records'.
tag3: goel-deepak tag3: deego
# Todo: this site has difficult download structure.
lcd: $EUSR/goel-deepak
http://gnufans.net/~deego/emacs.html page: save:emacs-goel-deepak.html
print: Page is too difficult to parse. Please browse manually http://gnufans.net/~deego/emacs.html
http://gnufans.net/~deego/DeegoWiki/WelcomePage.html pregexp:lisp-mine.tar x:
# http://gnufans.net/~deego/emacspub/gnusfop/alpha/gnusfop.el
# http://gnufans.net/~deego/emacspub/autoview/alpha/ pregexp:(\.el|\.tex)$
# http://gnufans.net/~deego/emacspub/miniedit/alpha/ pregexp:\.el$
# http://gnufans.net/~deego/emacspub/clel/alpha/ pregexp:\.el$
# http://gnufans.net/~deego/emacspub/choose/alpha/ pregexp:\.el$
# This pacage does not have standard kit naming
# NAME-VERSION.VERSION.tar.gz
# impossible to download latest
# http://gnufans.net/~deego/emacspub/elder/2.7.1release.tar.gz x:
# http://gnufans.net/~deego/emacspub/faith/alpha/faith.el
# http://gnufans.net/~deego/emacspub/notworking/newmail/alpha/newmail.el
# http://gnufans.net/~deego/emacspub/timerfunctions/alpha/timerfunctions.el
tag3: gorrell-harley
lcd: $EUSR/gorrell-harley
# footnote.el in not "The footnote", which comes with XEmacs and
# inserts [1] references to mail messages.
#http://www.mahalito.net/~harley/elisp/ page: save:emacs-gorrell-harley.html
#http://www.mahalito.net/~harley/elisp/ page:find pregexp:\.el regexp-no:footnote
http://www.mahalito.net/~harley/elisp/footnote.el save:jhg-footnote.el
tag3: grigni-michelangelo
lcd: $EUSR/grigni-michelangelo
ftp://ftp.mathcs.emory.edu/pub/mic/emacs regexp:(\.el$|(?i)readme) regexp-no:pp.el|ffap|ff-path
tag3: grossjohan-kai
lcd: $EUSR/grossjohan-kai
# This regexp-no files are not Kai's, they are just
# available at this ftp directory or the file is part of emacs
#
# ssh is old, it is now tramp package.
# ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/ regexp:(\.el$|rcp.el) regexp-no:(nndb|rect-mark|setnu|todo|worklog|cyclebuffer|winmgr|linemenu|lib-complete|locate|ssh) x:
# http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Grossjohann pregexp:\.el$
http://www.emacswiki.org/elisp/index.html pregexp:longlines.el$
print: See savannah.gnu.org/projects/tramp and use CVS to get code.
print: See tamp customisations at ftp://ftp.comlab.ox.ac.uk/tmp/Joe.Stoy/
tag3: heideman-john
lcd: $EUSR/heideman-john
# note-mode is in the packages section.
http://www.isi.edu/~johnh/SOFTWARE/index.html page: save:emacs-heideman-john.html
http://www.isi.edu/~johnh/SOFTWARE/index.html page:find pregexp:\.el regexp-no:crypt
http://www.isi.edu/~johnh/SOFTWARE/NOTES_MODE/index.html pregexp:\.el
tag3: hiroshi-yokota
# http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/color_mate/ pregexp:color-mate-10.3.tar.gz new:
tag3: hirose-yuuji
lcd: $EUSR/hirose-yuuji
http://www.gentei.org/~yuuji/software/biff-el.html pregexp:\.el regexp-no:base64|idl3
http://www.gentei.org/~yuuji/software/mpg123el/ pregexp:\.el regexp-no:base64|idl3
# See also 2001-12 Access problems
# http://www.yatex.org/
tag3: hodges-matthew
lcd: $EUSR/hodges-matthew
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Matthew.*Hodges pregexp:\.el$
http://vegemite.chem.nott.ac.uk/~matt page:find pregexp:\.el$
tag3: hodgson-kahlil
lcd: $EUSR/hodgson-kahlil
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Hodgson pregexp:\.el$
tag3: hughes-graham
lcd: $EUSR/hughes-graham
http://www.xs4all.nl/~cg/ciphersaber/comp/emacs-lisp.txt save:rc4.el
tag3: howe-dennis
lcd: $EUSR/howe-dennis
# In Emacs browse-url.el
http://wombat.doc.ic.ac.uk/emacs/dot-emacs.el save:emacs-howe-dennis-dotemacs.html
tag3: ingalls-bruce
#cvs http://emacro.sourceforge.net/
#cvs http://www.sourceforge.net/projects/emacro/
# An OLDER version of a2ps-print.el is bundled with a2ps
ftp://ftp.cppsig.org/pub/tools/emacs/ regexp:a2ps-print regexp-no:old
tag3: ingrand-francois
lcd: $EUSR/ingrand-francois
http://www.laas.fr/~felix/despam.html save:ingrand-francois-despam.html
http://www.laas.fr/~felix/despam.html pregexp:\.el$
tag3: jackson-trey
lcd: $EUSR/jackson-trey
http://bmrc.berkeley.edu/~trey/emacs/src/sig-quote.el
http://bmrc.berkeley.edu/~trey/emacs/src/rmail-extras.el
tag3: johnson-bryan
lcd: $EUSR/johnson-bryan
http://www.comsecmilnavpac.net/elisp/ page: save:emacs-johnson-bryan.html
http://www.comsecmilnavpac.net/elisp/ page:find pregexp:\.el$
tag3: jones-kyle
lcd: $EUSR/jones-kyle
http://www.wonderworks.com/ page: save:emacs-wonderworks.html
http://www.wonderworks.com/ page:find pregexp:\.el regexp-no:crypt|nnir|prosper|bibfind x:
# Not maintained by kyle
# http://www.wonderworks.com/download/crypt++.el
# ftp://www.uni-mainz.de/pub/gnu/vm/vm.tar.gz new: x:
tag3: josefsson-simon
lcd: $EUSR/josefsson-simon
# nnimap.el, base64.el, dig.el are part of Gnus
http://josefsson.org/ page: save:emacs-josefsson-simon.html
http://josefsson.org/aes/ pregexp:\.el$
tag3: jump-theodore
lcd: $EUSR/jump-theodore
# http://www.tertius.com/projects/library/ page: save:emacs-jump-theodore.html
http://www.tertius.com/projects/library/emacs/_emacs.gz save:jump-theodore-dotemacs.el.gz x:
# http://www.tertius.com/projects/library/emacs/ page:find pregexp:. regexp-no:(site-lisp|^emacs-|^elisp-|^_ema|elc|nnir|prosper) x:
tag3: kadlec-albrecht
# 2001-12 Site disappeared
# lcd: $EUSR/kadlec-albrecht
# http://www.auto.tuwien.ac.at/~albrecht
tag3: kapur-nevin
http://www.mts.jhu.edu/~kapur/hacks.html pregexp:\.el$ regexp-no:gnus-grepmail|msn.el
tag3: karunakaran-rajeev
lcd: $EUSR/karunakaran-rajeev
http://www.mayura.com/misc/ page: save:emacs-karunakaran-rajeev.html
http://www.mayura.com/misc/ page:find pregexp:\.el
http://www.mayura.com/misc/java-path.txt
tag3: keane-joe
lcd: $EUSR/keane-joe
http://www.jgk.org/src/elisp.html pregexp:\.el
tag3: kemp-steve
lcd: $EUSR/kemp-steve
# 2003-06-02 No longer available
# Not all files are by Steve kemp, select only some
# http://www.gnusoftware.com/Emacs/Lisp/ page:find pregexp:(auto-diff|digest|dired-fns|lisp-index|macro-mode|keep-buf|mp3|require|slashdot|small-func|htmlpp|version|w32-faq|w32-set|word).*\.el
#
# http://www.gnusoftware.com/Emacs/Lisp/modes.el save:emacs-kemp-steve-modes.el
# http://www.gnusoftware.com/Emacs/Lisp/gnuemacs.el save:emacs-kemp-steve-dotemacs.el
# http://www.gnusoftware.com/Emacs/Lisp/setup-emacs.el save:emacs-kemp-steve-dotemacs2.el
tag3: kifer-michael tag3: ediff
# lcd: $EUSR/kifer-michael
# These are part of Emacs now
# ftp://ftp.cs.sunysb.edu/pub/TechReports/kifer/viper.tar.Z
# ftp://ftp.cs.sunysb.edu/pub/TechReports/kifer/ediff.tar.Z
tag3: kleinpaste-karl
lcd: $EUSR/kleinpaste-karl
http://www.cs.cmu.edu/~karl page:find pregexp:\.el
tag3: kline-christopher
print: See sourceforge project 'starteam-el'
tag3: koomen-hans
lcd: $EUSR/koomen-hans
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Koomen pregexp:\.el$
tag3: knuth-don
lcd: $EUSR/knuth-don
http://www-cs-faculty.stanford.edu/~knuth/programs.html page:find pregexp:\.el$
tag3: kruse-peter
lcd: $EUSR/kruse-peter
http://www.brigadoon.de/peter pregexp:\.el
tag3: konerding-david
lcd: $EUSR/konerding-david
ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/ regexp:winmgr-mode.el
tag3: koppelman-david
lcd: $EUSR/latorre-vinicius
http://www.ee.lsu.edu/koppel/emacs.html page:find pregexp:\.el
tag3: lang-mario
lcd: $EUSR/lang-mario
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Mario.*Lang pregexp:\.el$
tag3: lannerback-anders
lcd: $EUSR/lannerback-anders
http://www.student.nada.kth.se/~f95-ala/emacs/auto-arg-0.3.el new: save:auto-arg.el
tag3: latorre-vinicius
lcd: $EUSR/latorre-vinicius
# Exluded files are now in Emacs
#todo: See also ftp://ftp.cpqd.com.br/pub/users/vinicius/
# http://kin.hypermart.net/emacs/emacs/highline.el
http://www.cpqd.com.br/~vinicius/emacs/ page:find pregexp:\.el regexp-no:(delim-col|ebnf|lpr|ps-print) x:
tag3: lepied-frederick tag3: flepied
lcd: $EUSR/lepied-frederick
# expand is part of emacs
http://www.teaser.fr/~flepied/ page:find pregexp:\.el regexp-no:expand x:
tag3: liljenberg-peter
lcd: $EUSR/liljenberg-peter
#todo: not exist
# http://www.lysator.liu.se/~petli/elisp/elint.tar.gz
# http://www.lysator.liu.se/~petli/elisp/byte-record.el
# http://www.lysator.liu.se/~petli/elisp/closure.el
# http://www.lysator.liu.se/~petli/elisp/getcomics.el
# http://www.lysator.liu.se/~petli/elisp/lyskom.el
# http://www.lysator.liu.se/~petli/elisp/termo.el
# http://www.lysator.liu.se/~petli/elisp/webster.el
tag3: lindgren-anders
lcd: $EUSR/lindgren-anders
# fdb was replaced by latest Emacs releases
# autorevert.el and follow.el are part of the Emacs
# More recent Folding is distributed in Tiny Tools kit
http://www.csd.uu.se/~andersl/emacs.shtml save:emacs-lindgren-anders.html
http://www.csd.uu.se/~andersl/emacs.shtml page: pregexp:\.el regexp-no:(follow|fdb|folding|autorevert|my-)
ftp://ftp.csd.uu.se/pub/users/andersl/emacs/my-init.el save:emacs-lindgren-anders-dotemacs.el
tag3: link-thomas
lcd: $EUSR/link-thomas
http://members.a1.net/t.link/CompEmacsFilesets.html save:emacs-link-thomas.html
http://members.a1.net/t.link/CompEmacsFilesets.html pregexp:\.el
tag3: linkov-juri
# Mail: <juri@jurta.org>
lcd: $EUSR/linkov-juri
http://www.jurta.org/emacs/ee/index.en.html pregexp:\.tar\.gz x:
tag3: lopez-emilio
lcd: $EUSR/lopez-emilio
# http://WWW.Physik.TU-Muenchen.DE/~ecl/emacs.html save:emacs-lopez-emilio.html
http://WWW.Physik.TU-Muenchen.DE/~ecl/emacs.html page: pregexp:\.html regexp-no:(gpl|emacs|contact|prosper|ecl\.) text: rename:s/html/el/
tag3: lord-philip
# lcd: $EUSR/lord-philip
# 2001-12 URL invalid
# the labbook is replaced by records.el from different author.
http://www.russet.org.uk/emacs.html save: emacs-lord-philip.html
http://www.russet.org.uk/emacs.html pregexp:\.el regexp-no:(#|labbook|jde-auto-abbrev|jde-import|jde-stack)
tag3: lorentey-karoly
print http://lorentey.hu/project/emacs.html
tag3: ludlam-eric tag3: zappo
# lcd: $EUSR/ludlam-eric
# Now at sourceforge http://cedet.sourceforge.net/
# http://choochoo.ultranet.com/~zappo
tag3: ludlam-eric-ftp
lcd: $EPKG_NET
# ftp://ftp.ultranet.com/pub/zappo/etalk-0.11.a10.tar.gz new:
# These are in sourceforge project CEDET: speedbar, EDE
# ftp://ftp.ultranet.com/pub/zappo/cparse-0.4.tar.gz new:
tag3: lundin-daniel
# Lispmeralda designer
lcd: $EUSR/lundin-daniel
http://www.daemoncode.com/emacs/ pregexp:\.el$ regexp-no:xml
http://www.daemoncode.com/emacs/ pregexp:dot.emacs save:dot-emacs.el
http://www.daemoncode.com/emacs/ pregexp:dot.gnus save:dot-gnus.el
# ftp://codefactory.se/pub/people/daniel/elisp/ pregexp:\.el$
# ftp://codefactory.se/pub/people/daniel/elisp/ pregexp:dot.emacs save:dot-emacs.el
# ftp://codefactory.se/pub/people/daniel/elisp/ pregexp:dot.gnus save:dot-gnus.el
tag3: mackall-matt tag3: quilt
lcd: $EUSR/mackall-matt
http://www.selenic.com/quilt/quilt.el
tag3: manning-carl
lcd: $EUSR/manning-carl
http://www.ai.mit.edu/people/caroma/tools/ page:find pregexp:java.*20.*\.el
tag3: marsden-eric
lcd: $EUSR/marsden-eric
# todo: Which are Eric's?
http://purl.org/net/emarsden/home/downloads pregexp:\.el
tag3: matsushita-akihisa
lcd: $EUSR/matsushita-akihisa
http://www.bookshelf.jp/elc/ cregexp:;;.*(?i)author:.*Akihisa pregexp:\.el$
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Akihisa pregexp:\.el$
tag3: maclennan-sean
lcd: $EUSR/maclennan-sean
http://xemacs.seanm.ca/ page: save:emacs-maclennan-sean.html
http://xemacs.seanm.ca/lisp/ pregexp:\.el regexp-no:_pkg.el
tag3: mengarini-will
#todo: connect error
lcd: $EUSR/mengarini-will
http://www.eskimo.com/~seldon page: save:emacs-mengarini-will.html
http://www.eskimo.com/~seldon page:find pregexp:\.el regexp-no:(dotemacs|vi-dot|filemenu)
# http://www.eskimo.com/~seldon/dotemacs.el save:dotemacs-mengarini-will-dotemacs.el
tag3: mitchell-lawrence
lcd: $EUSR/mitchell-lawrence
http://www.ph.ed.ac.uk/~p0198183/ pregexp:\.(el|patch)$ regexp-no:css-mode|google|ogg
http://purl.org/NET/wence/lisppaste.el
tag3: mccrossan-fraser
lcd: $EUSR/mccrossan-fraser
http://joat.ca/software/smbmode.html pregexp:\.el$
tag3: minar-nelson
lcd: $EUSR/minar-nelson
# html-helper was maintained by Gian Umberto Lauri
http://www.santafe.edu/~nelson/hhm-beta/ page:find pregexp:(html-helper|]adding-tag|contrib-)
http://www.santafe.edu/~nelson/hhm-beta/testmodule.el save:hhm-testmodule.el
http://www.santafe.edu/~nelson/hhm-beta/tables.el save:hhm-tables.el
tag3: minejima-yuji
lcd: $EUSR/minejima-yuji
http://homepage1.nifty.com/bmonkey/emacs/index-en.html page: save:emacs-minejima-yuji.html
http://homepage1.nifty.com/bmonkey/emacs/index-en.html page:find pregexp:\.el$
tag3: milliken-peter tag3: ELSE
lcd: $EUSR/milliken-peter
# http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*milliken pregexp:\.el$
http://www.zipworld.com.au/~peterm/ page: save:emacs-milliken-peter.html
http://www.zipworld.com.au/~peterm/ pregexp:. regexp-no:setnu
tag3: monnier-stefan
lcd: $EUSR/monnier-stefan
print: Note, pcl-cvs.el is now part of Eamcs 21 under name pcvs.el
# ftp://rum.cs.yale.edu/pub/monnier/misc/ regexp:\.el$ regexp-no:\d|ish.el|diff-mode|newcomment
tag3: moshin-ahmed
lcd: $EUSR/moshin-ahmed
http://www.cs.albany.edu/~mosh/Elisp/ pregexp:\.el regexp-no:align
tag3: muenkel-heiko
# Heiko Muenkel
lcd: $EUSR/muenkel-heiko
ftp://ftp.tnt.uni-hannover.de/pub/editors/xemacs/contrib/balloon-help.el.gz
http://www.tnt.uni-hannover.de/~muenkel/software/own/hm--html-menus/overview.html save:hm-overview.html
tag5: nguyen-thien-thi
print: See package tag 'ttn'
tag3: nickelsen-jorgen
lcd: $EUSR/nickelsen-jorgen
# 'recent-files.el' is part of XEmacs
http://home.snafu.de/jn/emacs/ pregexp:\.el regexp-no:recent-files
tag3: niksic-hrvoje
#todo: no homepage, must know the filenames
lcd: $EUSR/niksic-hrvoje
# http://jagor.srce.hr/~hniksic
# http://fly.srk.fer.hr/~hniksic/emacs/htmlize.el
# http://fly.srk.fer.hr/~hniksic/emacs/blackbook.el
http://fly.srk.fer.hr/~hniksic/emacs pregexp: \.el
tag3: naess-rolf
lcd: $EUSR/naess-rolf
http://www.pvv.org/~rolfn/ pregexp:\.(el|html)$
tag3: nix
print: bbdb-expire is now included in BBDB core.
print: See site wide XEmacs configuration at http://www.esperi.demon.co.uk/nix/
tag3: oconnor-edward
# Mail: Edward O'Connor <ted@oconnor.cx>
lcd: $EUSR/oconnor-edward
http://oconnor.cx/elisp/ pregexp:\.el$
tag3: scholz-oliver
lcd: $EUSR/scholz-oliver
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*oliver.*scholz pregexp:\.el$
tag3: oconnor-edward
lcd: $EUSR/oconnor-edward
# print: See also http://oconnor.cx/elisp
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Edward.*Connor pregexp:\.el$
tag3: osterlund-peter
lcd: $EUSR/osterlund-peter
# p4.el is by vaidheeswarran-rajesh
http://home.swipnet.se/~w-15919 page:find pregexp:\.el regexp-no:p4
tag3: owen-gareth
lcd: $EUSR/owen-gareth
# These may give ISP troubles, but the links are
# okay according to Gareth
#
# http://www.gwowen.freeservers.com/lisp/ page: save:emacs-owen-gareth.html
# http://www.gwowen.freeservers.com/lisp/ pregexp:\.el(\.gz)?$ x:
# The backup site is here
http://www.geocities.com/drgazowen/lisp/ pregexp:\.el(\.gz)?$ x:
tag3: padioleau-yoann
lcd: $EUSR/padioleau-yoann
# 2000-12 no homepage
ftp://ftp.cis.ohio-state.edu/pub/emacs-lisp/archive/dircolors.el
tag3: pearson-dave
lcd: $EUSR/pearson-dave
http://www.davep.org/emacs/ pregexp:\.el$ regexp-no:quickurl|5x5|slashdot
tag3: pedersen-jesper
lcd: $EUSR/pedersen-jesper
# The older version: poer-macros-1.0.el, new is power-macros.el
http://www.blackie.dk/emacs/ pregexp:\.el regexp-no:macros-
tag3: perry-william
# lcd: $EUSR/perry-william
print: 'w3' ann 'url' projects are at CVS tree savannah.gnu.org
print: :pserver:anoncvs@subversions.gnu.org:/cvsroot/w3 co w3
# ftp://ftp.cs.indiana.edu/pub/elisp/cddb/freedb.el
# ftp://ftp.cs.indiana.edu/pub/elisp/mwheel.el
# ftp://ftp.cs.indiana.edu/pub/elisp/netrek/add-to-dot-emacs
# ftp://ftp.cs.indiana.edu/pub/elisp/netrek/meta-server.doc
# ftp://ftp.cs.indiana.edu/pub/elisp/netrek/meta-server.el
# ftp://ftp.cs.indiana.edu/pub/elisp/netrek/todo save:meta-server.todo
# In Emacs ftp://ftp.cs.indiana.edu/pub/elisp/socks/socks.el
tag3: pierce-tom
lcd: $EUSR/pierce-tom
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Tom.*Pierce pregexp:\.el$
tag3: pinard-francois
lcd: $EUSR/pinard-francois
http://www.iro.umontreal.ca/contrib/libit/dist/misc/ pregexp:rebox.el
tag3: ponce-david
lcd: $EUSR/ponce-david
print: Use CVS, files are at Sourceforge project 'emhacks'
# senator.el is distributed with CVS package CEDET
# Recentf is part of Emacs 21.1
http://www.dponce.com/more-elisp.html page: save:emacs-ponce-david.html
# http://perso.wanadoo.fr/david.ponce/more-elisp.html page:find pregexp:\.(el|zip) regexp-no:senator|recentf|swbuff|tree-widget xx:
lcd: $EPKG_NET
http://perso.wanadoo.fr/david.ponce/ page:find pregexp:\.zip xx:
# http://perso.wanadoo.fr/david.ponce/ pregexp:jjar x:
tag3: predescu-ovidiu
lcd: $EUSR/predescu-ovidiu
# Gecities does not allow uploding .el files, so all files
# end to .txt
http://www.geocities.com/SiliconValley/Monitor/7464/emacs/index.html page:find pregexp:\.txt rename:s/\.txt/.el/
tag3: ramakrishnan
lcd: $EUSR/ramakrishnan
# See also http://www.advogato.org/person/rkrishnan/
http://www.hackgnu.org/hacks.html pregexp:advogato.el
tag3: ravel-bruce
lcd: $EUSR/ravel-bruce
http://leonardo.phys.washington.edu/~ravel/software/gnuplot-mode/Welcome.html page: pregexp:dotemacs rename:s/.*/emacs-ravel-bruce-dotemacs.html
http://leonardo.phys.washington.edu/~ravel/software/compjuga/Welcome.html save:emacs-ravel-bruce-compjuga.html
http://leonardo.phys.washington.edu/~ravel/software/compjuga/Welcome.html page: pregexp:\.el
tag3: reichor-stefan tag3: svn tag3: subversion
lcd: $EUSR/reichor-stefan
http://xsteve.nit.at/prg/emacs pregexp:\.el$ regexp-no:emacs-functions
tag3: riel-joe
lcd: $EUSR/riel-joe
http://k-online.com/~joer/mws/mws.htm pregexp:\.el$
http://k-online.com/~joer/maplev/maplev.htm pregexp:maplev
http://k-online.com/~joer/maplev/maplev.htm pregexp:INSTAL save:maplev-install.txt
tag3: riepel-rob
print: sql-mode.el and tpu-edt.el are part of Emacs
tag3: rodgers-kevin tag3: igrep
lcd: $EUSR/rodgers-kevin
# 2001-01 No homepage where list of his files can be found.
# Use Google search http://groups.google.com/groups?group=gnu.emacs.sources
http://www.emacswiki.org/cgi-bin/emacs/download/igrep.el
http://www.emacswiki.org/cgi-bin/wiki/download/ifind.el
tag3: rush-david
lcd: $EUSR/rush-david
http://people.netscape.com/drush/emacs/ pregexp:\.el$ regexp-no:surl
# This is more later version
http://people.netscape.com/drush/emacs/ssl-hacks.el
tag3: sasser-dewey
# lcd: $EUSR/sasser-dewey
tag3: schaeffer-timothy
lcd: $EUSR/schaeffer-timothy
# Tab-size independent c-mode indentation for Emacs
http://apache.bsilabs.com/~tim/cc-mode/description.html page: save:emacs-cc-mode-indent.html
http://apache.bsilabs.com/~tim/cc-mode/description.html pregexp:cc-mode
tag3: schroeder-alex tag3: kensanata
lcd: $EUSR/schroeder-alex
# http://hammer.prohosting.com/~gumbart
# http://www.geocities.com/TimesSquare/6120/
# http://www.geocities.com/kensanata/emacs.html save:emacs-schroeder-alex.html
# http://www.geocities.com/kensanata/emacs-colors.html
# http://www.geocities.com/kensanata/emacs-colors.html page:find pregexp:\.el$ rename:s/el.*/el/ regexp-no:ansi-color
# http://www.geocities.com/kensanata/emacs-games.html
# http://www.geocities.com/kensanata/emacs-games.html page:find pregexp:\.el$ rename:s/el.*/el/
# http://www.geocities.com/kensanata/bbdb-funcs.html
#
# print: Getting file from EmacsWiki, this may not be accurate guess.
# print: Searching 'author:.*Schroeder' from every file
#
http://www.emacswiki.org/elisp/index.html cregexp:(?i);;.*author:.*Schroeder pregexp:\.el$ regexp-no:ansi-color|^sql.el
tag3: schwenke-martin
lcd: $EUSR/schwenke-martin
http://meltin.net/hacks/emacs/ page: save: emacs-schwenke-martin.html
http://meltin.net/hacks/emacs/ pregexp:\.el$ regexp-no:todo
# Not good, mms.tar.gz includes lot of packages that
# are already shipped by Emacs or CEDET project etc.
# http://meltin.net/hacks/emacs/ pregexp:(\.tgz|tar.gz) regexp-no:lisp rename:s/tgz/tar.gz/ x:
tag3: sebold-charles
lcd: $EUSR/sebold-charles
http://messengers-of-messiah.org/~csebold/emacs/ page: save:emacs-sebold-charles.html
http://messengers-of-messiah.org/~csebold/emacs/dot_emacs.html save:sebold-charles-dotemacs.html
http://messengers-of-messiah.org/~csebold/emacs/dot.gnus save:sebold-charles-dotgnus.html
http://messengers-of-messiah.org/~csebold/emacs/answers.phtml save:emacs-sebold-charles-answers.html
http://messengers-of-messiah.org/~csebold/emacs/ page:find pregexp:\.el regexp-no:(vfaq|backup|mutt)
tag3: seiichi-namba
lcd: $EUSR/seiichi-namba
http://www.asahi-net.or.jp/~pi9s-nnb/myelisp.html save:emacs-seiichi-namba.html
http://www.asahi-net.or.jp/~pi9s-nnb/dired-dd-home.html
tag3: sepulveda-rafael
lcd: $EUSR/sepulveda-rafael
http://www.gnulinux.org.mx/~drs/emacs pregexp:\.el$
tag3: serrano-manuel
lcd: $EUSR/serrano-manuel
# Part of emacs
# http://kaolin.unice.fr/~serrano/emacs/flyspell save:flyspell.el
http://kaolin.unice.fr/~serrano/emacs/emacs.html save:emacs-serrano-manuel.html
http://kaolin.unice.fr/~serrano/emacs/emacs.html page: pregexp:xinfo rename:s/$/.el/
http://kaolin.unice.fr/~serrano/emacs/emacs.html page: pregexp:case rename:s/$/.el/
tag3: sharman-richard
lcd: $EUSR/sharman-richard
# Change-mode.el is part of the emacs
# ls-mode.el is superceded by dired-x.el / dired-virtual-mode
http://www.pobox.com/~rsharman/emacs page: pregexp:\.el$ regexp-no:ls-|change-|sh-|shin|^hilit
tag3: shinn-alex
lcd: $EUSR/shinn-alex
#todo: Lars Garsholm also has made css-mode.el
http://synthcode.com/emacs pregexp:\.el regexp-no:gnus|emacs|vm|css|battery|lynx|todo
http://synthcode.com/emacs pregexp:\.emacs$ save:dot-emacs.el
http://synthcode.com/emacs pregexp:gnus.el$ save:dot-gnus.el
http://synthcode.com/emacs pregexp:vm.el$ save:dot-vm.el
tag3: shulman-michael
# mmm-mode is in "packages"
lcd: $EUSR/shulman-michael
# 2002-07-11 invalid
# http://kurukshetra.cjb.net/elisp/ page: save:emacs-shulman-michael.html
# http://kurukshetra.cjb.net/elisp/ page:find pregexp:\.el$ regexp-no:folding|fortune
tag3: sjodin-mikael
lcd: $EUSR/sjodin-mikael
http://www.docs.uu.se/~mic/emacs.shtml save:emacs-sjodin-mikael.html
http://www.docs.uu.se/~mic/emacs.shtml page:find pregexp:\D\.el$ x:
tag3: sprenger-karel
lcd: $EUSR/sprenger-karel
http://paddington.ic.uva.nl/public/sql-modes.zip xx:
tag3: staats-michael
lcd: $EUSR/staats-michael
# pc-select is in Emacs
ftp://ftp.thp.Uni-Duisburg.DE/pub/source/elisp/ regexp:. regexp-no:pc-select x:
tag3: staflin-lennart
print: See tag 'psgml'
http://www.emacswiki.org/elisp/index.html pregexp:corba.el$
# http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*Staflin pregexp:\.el$
tag3: steverud-jonas
lcd: $EUSR/steverud-jonas
http://www.dtek.chalmers.se/~d4jonas/Emacs page:find pregexp:\.el.gz$ regexp-no:gnus.el
http://www.dtek.chalmers.se/~d4jonas/Emacs/gnus.el.gz save:dot-gnus.el
tag3: storm-kim
lcd: $EUSR/storm-kim
http://www.cua.dk/emacs.html page: save:emacs-storm-kim.html
http://www.cua.dk/emacs.html pregexp:\.el$|(cua|ido)\.html$
tag3: sylvester-olaf
lcd: $EUSR/sylvester-olaf
http://www.geekware.de/software/emacs/ page: save:emacs-sylvester-olaf.html
http://www.geekware.de/software/emacs/ page:find pregexp:\.el regexp-no:bs\.el
tag3: teixeira-roberto
# lcd: $EUSR/teixeira-roberto
tag3: theberge-jean
# lcd: $EUSR/theberge-jean
print: See Sourceforge CVS project emacsmp3player
# homepage 2003-06 http://www.emacswiki.org/cgi-bin/emacs-fr.pl?JeanPhilippeTheberge
# 2003-06-10
# - bofh.el and taelm.el used servers that are now down so are now useless
# - hachette.el is broken because the hachette website changed their html layout.
# The package will be placed on the emacswiki
# - ell.el is now at http://www.anc.ed.ac.uk/~stephen/emacs/ell.el
# and maintained by Stephen Eglen
# http://godzilla.act.oda.fr/
# Strange directory structure
# /ell.el/ell.el
# /thumbs/thumbs.el
# /taelm/taelm.el
# /thumbs/thumbs.el
#
# ([a-z]+(?:\.el)?)/\1(?:\.el)?
# | |
# ell.el <repeat matched> ell.el => ell.el/ell.el
# taelm <repeat matched> taelm => taelm/taelm.el
#
#
# http://aroy.net/emacslisp.org/mypackages/ pregexp:bofh|mp3player-|([a-z]+(?:\.el)?)/\1(?:\.el)? regexp-no:emacs.html
http://www.emacswiki.org/elisp/index.html pregexp:(thumbs|hachette).el$
tag3: triggs-mark
lcd: $EUSR/triggs-mark
http://members.iinet.net.au/~mtriggs/code.html pregexp:dot.emacs save:tiggs-mark-dot-emacs.el
http://members.iinet.net.au/~mtriggs/code.html pregexp:\.el$
tag3: tomohiko-morioka
# lcd: $EUSR/tomohiko-morioka
# FLIM, SEMI, APEL
tag3: tse-stephen
# 2001-10 This was old eicq.el package, do not use. See sourceforge.
# lcd: $EUSR/tse-stephen
#
# http://www.sfu.ca/~stephent/emacs/ pregexp:\.el
print: see sourceforge project 'eicq'
tag3: tziperman-eli tag3: rmail-spam-filter
lcd: $EUSR/tziperman-eli
http://www.weizmann.ac.il/home/eli/Downloads/rmail-spam-filter/ page: save:rmail-spam-filter.html
http://www.weizmann.ac.il/home/eli/Downloads/rmail-spam-filter/ pregexp:\.el
tag3: vaidheeswarran-rajesh
# lcd: $EUSR/vaidheeswarran-rajesh
print: P4 package has moved to p4el.sourceforge.net. Use CVS
# http://www.dsmit.com/lisp/ page:find pregexp:\.el regexp-no:vc|whitespace
tag3: voelker-geoff
print: Voelker no longer maintain NT Emacs
print: See http://www-cse.ucsd.edu/users/voelker/
tag3: volker-franz
lcd: $EUSR/volker-franz
http://www.kyb.tuebingen.mpg.de/bu/people/vf/xemacs-packages.html save:xemacs-volker-franz.html
http://www.kyb.tuebingen.mpg.de/bu/people/vf/xemacs-packages.html pregexp:\.el
tag3: vroonhof-jan
# lcd: $EUSR/vroonhof-jan
# http://www.math.ethz.ch/~vroonhof
tag3: waider-ronan
lcd: $EUSR/waider-ronan
http://www.waider.ie/hacks/emacs/mud.html pregexp:\.el$
http://www.waider.ie/hacks/emacs/ pregexp:\.el$
tag3: waldman-charles
lcd: $EUSR/waldman-charles
http://home.fnal.gov/~cgw/xemacs/ pregexp:dot-emacs.html
tag3: walters-colin
lcd: $EUSR/walters-colin
# ibuffer is now distributed in Emacs 21.2, do not try to load
# from here, because the code will not work in other Emacs versions.
# http://cvs.verbum.org/cgi-bin/viewcvs.cgi/~checkout~/ibuffer/ibuffer.el?rev=HEAD
# http://cvs.verbum.org/cgi-bin/viewcvs.cgi/~checkout~/ibuffer/ibuf-macs.el?rev=HEAD
http://cvs.verbum.org/cgi-bin/viewcvs.cgi/~checkout~/browse-kill-ring/browse-kill-ring.el?rev=HEAD
http://cvs.verbum.org/cgi-bin/viewcvs.cgi/~checkout~/ascii-display/ascii-display.el?rev=HEAD
# This location is obsolete
# http://www.cis.ohio-state.edu/~walters pregexp:\.el
tag3: warsaw-barry
lcd: $EUSR/warsaw-barry
# In Emacs already: elp.el reporter.el supercite.tar.gz
http://barry.warsaw.us/elisp/ page:find pregexp:\.el$ regexp-no:(elp|reporter|supercite|python|winring)
# Old information
# http://www.python.org/emacs/python-mode/ page:find pregexp:\.el$
# http://www.python.org/emacs/winring/ page:find pregexp:\.el$
tag3: wedler-cristoph
lcd: $EUSR/wedler-cristoph
http://www.fmi.uni-passau.de/~wedler/session/ page: save:emacs-wedler-cristoph-session.html
http://www.fmi.uni-passau.de/~wedler/session/ page:find pregexp:\.el.gz x:
tag3: wiborg-espen
lcd: $EUSR/wiborg-espen
http://www.empolis.no/~espenhw/emacs/ pregexp:\.el$
tag3: widhopf-fenk-robert
lcd: $EUSR/widhopf-fenk-robert
http://www.robf.de/Hacking/elisp/ pregexp:\.el$
tag3: wiegley-john
# (Esehell + pcomplete), scheduler are in PACKETS section
lcd: $EUSR/wiegley-john
print: homepage (2003-08) http://emacswiki.org/johnw/emacs.html
http://emacswiki.org/johnw/Emacs pregexp:\.el regexp-no:\.(gnus|emacs|align|httpd|timeclock|planner|remember)
http://emacswiki.org/johnw/emacs.html pregexp:\.emacs save:dot-emacs.el
http://emacswiki.org/johnw/emacs.html pregexp:\.gnus save:dot-gnus.el
tag3: wright-francis tag3: w32-symlinks
lcd: $EUSR/wright-francis
# In Emacs ls-lisp.el
http://centaur.maths.qmw.ac.uk/Emacs/index.html page:find pregexp:\.el$ regexp-no:ls-lisp|woman|remote
# http://centaur.maths.qmw.ac.uk/Emacs/WoMan/index.html page:find pregexp:\.el$
tag3: yamaoka-katsumi
lcd: $EUSR/yamaoka-katsumi
ftp://ftp.jpl.org/pub/elisp/ regexp:\.el\.gz$ regexp-no:remote x:
lcd: $EPKG_NET
ftp://ftp.jpl.org/pub/elisp/ regexp:(checkgroups|select|super|x-pgp).*tar.gz x:
tag3: yankowski-fred
lcd: $EUSR/yankowski-fred
# http://www.ontosys.com/reports/PHP.html page: save:emacs-yankowski-fred-php.html
http://www.ontosys.com/reports/PHP.html pregexp:(\.el|doc)$
tag3: yavner-jonathan
lcd: $EUSR/yavner-jonathan
http://mywebpages.comcast.net/jyavner/unsafep/ pregexp:\.el$
http://mywebpages.comcast.net/jyavner/ pregexp:\.el$
tag3: youngs-steve
# Package has been moved to sourceforge project eicq, please
# use cvs
tag3: yuji-minejima
lcd: $EUSR/yuji-minejima
http://homepage1.nifty.com/bmonkey/lisp/index.html pregexp:\.el$
tag3: cperl
# lcd: $EUSR/zakharevich-ilya
# http://www.perl.com/CPAN-local/misc/emacs/cperl-mode/ pregexp:cperl-mode.el$
print: Please see tag `zakharevich-ilya'
tag3: zajcev-evgeny
lcd: $EUSR/zajcev-evgeny
http://www.emacswiki.org/elisp/index.html cregexp:;;.*(?i)author:.*zajcev pregexp:\.el$
tag3: zakharevich-ilya
lcd: $EUSR/zakharevich-ilya
# in Emacs: options.el tmm.el cperl-mode.el
# todo: Should look from CPAN?
print: cperl-mode.el is included in Emacs. Not fetched.
ftp://ftp.math.ohio-state.edu/pub/users/ilya/emacs/ regexp:\.el regexp-no:(tmm|options|cperl)
tag3: zhu-shenghuo
lcd: $EUSR/zhu-shenghuo
http://www.cs.rochester.edu/~zsh/hacks/emacs.html page: save:emacs-zhu-shenghuo.html
http://www.cs.rochester.edu/~zsh/hacks/emacs.html page:find pregexp:\.el$ regexp-no:bbdb-edit
tag3: zundel-detlev
lcd: $EUSR/zundel-detlev
# rpm.el conflicts with
# cvs-packages/sourceforge/cedet/speedbar/rpm.el
http://www.akk.org/~dzu/download/ pregexp:\.el regexp-no:rpm.el
http://www.akk.org/~dzu/download/ pregexp:rpm\.el save:rpm2.el
tag3: zimmermann-reto
# lcd: $EUSR/zimmermann-reto
# http://opensource.ethz.ch/emacs/dcsh-mode.html pregexp:\.gz$ x:
# http://opensource.ethz.ch/emacs/vera-mode.html pregexp:\.gz$ x:
# http://opensource.ethz.ch/emacs/vhdl-mode.html pregexp:\d\.tar.gz file:vhdl-mode-3.32.1.tar.gz new: x:
# http://www.verilog.com/verilog-mode.html pregepx:\.gz$ x:
tag3: 000-misc
lcd: $EUSR/000-misc
# ftp://ls6-ftp.cs.uni-dortmund.de/pub/src/emacs/ regexp:(winmgr|lib-complete).*el$
ftp://ftp.mathworks.com/pub/contrib/emacs_add_ons/INDEX.emacs_add_ons save:matlab-files.txt
ftp://ftp.mathworks.com/pub/contrib/emacs_add_ons/readme.txt save:matlab-readme.txt
ftp://ftp.mathworks.com/pub/contrib/emacs_add_ons/ regexp:\.el$
tag2: elisp-lcd
# ........................................................... &lcd: ...
# the Ancient Lisp Code Directory
tag3: lcd-ohio
lcd: $ELCD
# http://www.cs.indiana.edu/LCD/cover.html?make-regexp save:make-regexp.el
http://www.cs.indiana.edu/LCD/cover.html?timecard save:timecard-mode.el
# ######################################################### &other ###
tag2: elisp-doc
lcd: $EDOC
ftp://ftp.cs.columbia.edu/archives/gnu/prep/emacs/emacs-lisp-intro-2.04.tar.gz new: regexp-no:README x:
tag2: elisp-other
lcd: $EOTHER
tag3: elisp-other
# WWW
ftp://ftp.inria.fr/gnu/emacs-lisp/rect-mark-1.4.el.gz new:
http://members.verizon.net/~vze24fr2/EmacsClearCase/clearcase.el
http://prdownloads.sourceforge.net/table/table-1.5.54.el.gz new: x:
http://prdownloads.sourceforge.net/sourceforge/table/table-1.5.54.el.gz new: x: save:table.el.gz
http://prdownloads.sourceforge.net/sourceforge/jtags/jtags.el
http://prdownloads.sourceforge.net/sourceforge/jdc-el/jdc.el
tag3: ntemacs-contrib
lcd: $EWIN32
# NTEmacs, gnuserv, epop3
# http://www.gnu.org/software/emacs/windows/big.html pregexp:(gnuserv|epop).*zip$
tag3: sql
lcd: $ECOMMON/programming/sql
http://paddington.ic.uva.nl/public/sql-modes.zip
tag3: jde-other
lcd: $ECOMMON/programming/java/jde/contrib
http://www.sunsite.auc.dk/jde/contrib/ pregexp:\.el
tag3: idl
lcd: $ELANG/idl
http://cc-mode.sourceforge.net/contrib.php pregexp:\.el noregexp:cc-mode
tag3: lua
lcd: $ELANG/lua
http://luaforge.net/frs/?group_id=185&release_id=869 pregexp:\.tar\.gz file:lua-mode-20061122.tar.gz new: x:
# End of file
|