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 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685
|
;;;;; -*-coding: iso-8859-1;-*-
;;;;;
;;;;; Copyright (C) 1991-2002 Lysator Academic Computer Association.
;;;;;
;;;;; This file is part of the LysKOM Emacs LISP client.
;;;;;
;;;;; LysKOM 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, or (at your option)
;;;;; any later version.
;;;;;
;;;;; LysKOM 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 LysKOM; see the file COPYING. If not, write to
;;;;; Lysator, c/o ISY, Linkoping University, S-581 83 Linkoping, SWEDEN,
;;;;; or the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
;;;;; MA 02139, USA.
;;;;;
;;;;; Please mail bug reports to bug-lyskom@lysator.liu.se.
;;;;;
;;;; ================================================================
;;;; ================================================================
;;;;
;;;; File: commands2.el
;;;;
;;;; This file contains the code for some high level commands.
;;;;
(eval-when-compile
(require 'lyskom-command "command"))
;;; ================================================================
;;; Lista medlemsskap - List membership
(def-kom-command kom-membership ()
"Alias for `kom-prioritize'."
(interactive)
(lyskom-prioritize))
;;; ================================================================
;;; Status (f|r) M|te - Status for a conference
;;; Author: ceder (with some help by Linus)
;;; much enhanced by Inge Wallin (lyskom-status-conf-2 and beyond)
(defun lyskom-conf-type-marker (conf-stat)
"Return a pretty string describing the type of CONF-STAT."
(let* ((type (conf-stat->conf-type conf-stat))
(box (conf-type->letterbox type))
(ori (conf-type->original type))
(pro (conf-type->rd_prot type))
(sec (conf-type->secret type)))
(cond
((or box ori pro sec)
(concat
" ("
(if box (lyskom-get-string 'Mailbox) "")
(if (and box (or sec ori pro)) ", " "")
(if sec (lyskom-get-string
'Protected) "")
(if (and sec (or ori pro)) ", " "")
(if ori (lyskom-get-string
'no-comments) "")
(if (and ori pro) ", " "")
(if pro (lyskom-get-string 'closed) "")
")"))
(t ""))))
(def-kom-command kom-status-conf (&optional conf-no)
"Print information about a conference.
The information listed may be taken from the client's cache and
therefore slightly out of date.
See `kom-extended-status-information'.
Lisp documentation:
If argument CONF-NO is existing and non-nil then this conference is used.
otherwise: the conference is read with lyskom-completing-read."
(interactive)
(let ((conf-no
(or conf-no
(lyskom-read-conf-no 'conf-for-status '(all) nil nil t)))
(kom-print-seconds-in-time-strings nil)
(kom-extended-status-information (lyskom-extended-status-override 'conf)))
(cache-del-conf-stat conf-no)
(cache-del-uconf-stat conf-no)
(blocking-do-multiple ((conf-stat (get-conf-stat conf-no))
(uconf-stat (get-uconf-stat conf-no)))
(if (null conf-stat)
(lyskom-insert-string 'no-such-conf)
(lyskom-format-insert 'status-record
conf-stat
(lyskom-conf-type-marker conf-stat))
(let ((creator (conf-stat->creator conf-stat)))
(lyskom-format-insert 'created-by
creator
creator
(if (and
(lyskom-conf-stat-p creator)
(> (lyskom-string-width (conf-stat->name creator))
(- (lyskom-window-width) 46)))
"\n"
"")))
(lyskom-format-insert 'created-at
(lyskom-format-time
'date-and-time
(conf-stat->creation-time conf-stat)))
(lyskom-format-insert 'members
(conf-stat->no-of-members conf-stat))
(lyskom-format-insert 'conf-allows-secret-members
(lyskom-get-string
(if (conf-type->forbid-secret
(uconf-stat->conf-type uconf-stat))
'secret-members-not-permitted
'secret-members-permitted)))
(lyskom-format-insert 'conf-allows-anon-texts
(lyskom-get-string
(if (conf-type->anarchy
(uconf-stat->conf-type uconf-stat))
'anon-texts-permitted
'anon-texts-not-permitted)))
(lyskom-format-insert 'garb-nice
(conf-stat->garb-nice conf-stat))
(lyskom-format-insert 'keep-commented
(conf-stat->keep-commented conf-stat))
(lyskom-format-insert 'lowest-local-no
(conf-stat->first-local-no conf-stat))
(lyskom-format-insert 'highest-local-no
(1- (+ (conf-stat->no-of-texts conf-stat)
(conf-stat->first-local-no conf-stat))))
(lyskom-format-insert 'last-text-time
(lyskom-format-time
'date-and-time
(conf-stat->last-written conf-stat)))
(lyskom-format-insert 'no-of-motd
(conf-stat->msg-of-day conf-stat))
(let ((superconf (conf-stat->super-conf conf-stat)))
(lyskom-format-insert 'superconf-is-no-name
superconf
superconf
(if (and
(lyskom-conf-stat-p superconf)
(> (lyskom-string-width (conf-stat->name superconf))
(- (lyskom-window-width) 46)))
"\n"
"")))
(let ((permitted-submitters (conf-stat->permitted-submitters conf-stat)))
(lyskom-format-insert 'permitted-submitters-no-name
permitted-submitters
(if (zerop permitted-submitters)
(lyskom-get-string 'Everybody)
permitted-submitters)
""))
(let ((supervisor (conf-stat->supervisor conf-stat)))
(lyskom-format-insert 'supervisor-is-no-name
supervisor
supervisor
""))
(lyskom-format-insert 'presentation-no
(conf-stat->presentation conf-stat))
(if (zerop (conf-stat->msg-of-day conf-stat))
nil
(lyskom-format-insert 'conf-has-motd conf-stat)
(lyskom-view-text (conf-stat->msg-of-day conf-stat)))
;; Show aux items
(lyskom-traverse-aux item
(conf-stat->aux-items conf-stat)
(if (lyskom-aux-item-definition-field item 'status-print)
(lyskom-aux-item-call item 'status-print item conf-stat)
(lyskom-format-insert 'status-aux-item
(format "%d/%d"
(aux-item->aux-no item)
(aux-item->tag item))
(aux-item->creator item)
(lyskom-aux-item-terminating-button item conf-stat))
))
(let ((mship (lyskom-try-get-membership (conf-stat->conf-no conf-stat) t)))
(when mship
(lyskom-format-insert 'conf-mship-priority
(membership->priority mship)
(lyskom-return-membership-type
(membership->type mship)))))
;; Show all members of CONF-STAT if the user so wishes."
(lyskom-scroll)
(if (lyskom-j-or-n-p
(lyskom-get-string 'show-members-list-also-q))
(let ((member-list (blocking-do 'get-members
(conf-stat->conf-no conf-stat)
0 lyskom-max-int)))
(if (null member-list)
(lyskom-format-insert 'conf-has-no-members conf-stat)
(lyskom-format-insert 'conf-has-these-members conf-stat)
(if (lyskom-j-or-n-p (lyskom-get-string 'show-membership-info-q))
(progn
(lyskom-insert-string 'member-list-header)
(lyskom-traverse
member (member-list->members member-list)
(let ((membership (blocking-do
'query-read-texts
(member->pers-no member)
(conf-stat->conf-no conf-stat)
t
0)))
;; Print a row describing the membership of MEMBER
;; (described by MEMBERSHIP) in CONF-STAT.
(if (or (null membership))
(lyskom-insert-string 'secret-membership)
(lyskom-format-insert
"%#1@%-17#2s"
(if (membership-type->passive
(member->membership-type member))
`(face ,kom-dim-face)
nil)
(lyskom-format-time
'date-and-time
(membership->last-time-read membership)))
(let ((unread (- (+ (conf-stat->first-local-no
conf-stat)
(conf-stat->no-of-texts conf-stat))
(membership->last-text-read membership)
(length (membership->read-texts
membership))
1)))
(lyskom-format-insert 'conf-membership-line
(if (zerop unread)
" "
(format "%9d " unread))
(member->pers-no member)
(lyskom-return-membership-type (member->membership-type member))
(if (membership-type->passive
(member->membership-type member))
`(face ,kom-dim-face)
nil)
)
(when (and (member->created-by member)
(not (zerop (member->created-by member)))
(not (eq (member->pers-no member)
(member->created-by member))))
(lyskom-format-insert 'conf-membership-line-2
(lyskom-format-time
'date-and-time
(member->created-at member))
(member->created-by member)))
)))))
;; Don't show membership info
(lyskom-insert "\n")
(lyskom-traverse
member (member-list->members member-list)
(lyskom-format-insert " %#1P\n"
(member->pers-no member)))))))))))
;;; ================================================================
;;; Status (f|r) Person - status for a person
;;; Author: ceder
;;; Heavily enhanced: Inge Wallin (lyskom-status-pers-3 and beyond)
(def-kom-command kom-status-person (&optional text-or-pers-no)
"Show information about a person.
If a prefix argument is given, the status of the author of that text
will be shown.
See `kom-extended-status-information'.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (and current-prefix-arg ; only peek at textno:s when prefixed!
(list (lyskom-read-text-no-prefix-arg
'text-to-see-author-status-of))))
(let ((pers-no
(or (when (lyskom-called-interactively-p 'any)
(text-stat->author (blocking-do 'get-text-stat text-or-pers-no)))
text-or-pers-no
(lyskom-read-conf-no 'pers-for-status '(pers) nil nil t)))
(kom-print-seconds-in-time-strings nil)
(kom-extended-status-information (lyskom-extended-status-override 'pers))
conf-stat
pers-stat)
(cache-del-conf-stat pers-no)
(cache-del-pers-stat pers-no)
(setq pers-stat (blocking-do 'get-pers-stat pers-no))
(setq conf-stat (blocking-do 'get-conf-stat pers-no))
;; "Print status about PERS-STAT. The name is in CONF-STAT"
(if (or (null pers-stat)
(null conf-stat))
(lyskom-insert-string 'no-such-pers)
(lyskom-format-insert 'pers-status-record
conf-stat)
(lyskom-format-insert 'created-time
(lyskom-format-time
'date-and-time
(conf-stat->creation-time conf-stat)))
(lyskom-format-insert 'created-confs
(pers-stat->created-confs pers-stat))
(lyskom-format-insert 'created-persons
(pers-stat->created-persons pers-stat))
(lyskom-format-insert 'created-texts
(1- (+ (pers-stat->no-of-created-texts pers-stat)
(pers-stat->first-created-text pers-stat))))
(lyskom-format-insert 'created-lines
(pers-stat->created-lines pers-stat))
(lyskom-format-insert 'created-chars
(pers-stat->created-bytes pers-stat))
(lyskom-format-insert 'no-of-sessions
(pers-stat->sessions pers-stat))
(let ((time (pers-stat->total-time-present pers-stat)))
(unless (zerop time) ;; Why not let it print "0 d 00:00:00"?
(lyskom-format-insert 'present-time-d-h-m-s
(floor time (* 24 3600))
(mod (floor time 3600) 24)
(mod (floor time 60) 60)
(round (mod time 60)))))
(lyskom-format-insert 'last-log-in
(lyskom-format-time
'date-and-time
(pers-stat->last-login pers-stat)))
(lyskom-format-insert 'user-name
(pers-stat->username pers-stat))
(lyskom-format-insert 'read-texts
(pers-stat->read-texts pers-stat))
(if (= (pers-stat->pers-no pers-stat) lyskom-pers-no)
(lyskom-format-insert 'marked-texts
(pers-stat->no-of-marks pers-stat)))
(lyskom-format-insert 'time-for-last-letter
(lyskom-format-time
'date-and-time
(conf-stat->last-written conf-stat)))
(let* ((a (lyskom-format 'pers-has-privileges ""))
(b (concat "\n" (make-string (lyskom-string-width a) ?\ ))))
(lyskom-format-insert 'pers-has-privileges
(lyskom-privilege-string (pers-stat->privileges pers-stat)
'pers-has-privileges-2
b)))
(let ((superconf (conf-stat->super-conf conf-stat)))
(lyskom-format-insert 'superconf
superconf
superconf
""))
(if (not (zerop (conf-stat->supervisor conf-stat)))
(let ((supervisor (conf-stat->supervisor conf-stat)))
(lyskom-format-insert 'supervisor
supervisor
supervisor
"")))
(lyskom-format-insert 'member-of-confs
(pers-stat->no-of-confs pers-stat))
(lyskom-format-insert 'presentation
(conf-stat->presentation conf-stat))
;; Show aux items
(lyskom-traverse-aux item
(conf-stat->aux-items conf-stat)
(lyskom-aux-item-call item 'status-print item conf-stat))
;; Show motd
(if (not (zerop (conf-stat->msg-of-day conf-stat)))
(progn
(lyskom-format-insert 'has-motd conf-stat)
(lyskom-view-text (conf-stat->msg-of-day conf-stat))))
;; "Show all conferences CONF-STAT is a member of if the user so wishes."
(lyskom-scroll)
(if (null (lyskom-j-or-n-p (lyskom-get-string
'show-membership-list-also-q)))
nil
(let ((membership-list
(blocking-do 'get-membership
(conf-stat->conf-no conf-stat)))
(deferred-mships nil)
(lyskom-count-var 0)
(lyskom-passive-count-var 0))
(if (null membership-list)
(lyskom-format-insert 'not-allowed-see-confs conf-stat)
(lyskom-format-insert 'is-member-of conf-stat)
(lyskom-insert-string 'membership-list-header)
(setq lyskom-count-var 0)
(setq lyskom-passive-count-var 0)
(lyskom-traverse
membership membership-list
(let ((cs (cache-get-conf-stat
(membership->conf-no membership))))
(and cs
(lyskom-time-greater
(membership->last-time-read membership)
(conf-stat->last-written conf-stat))
(cache-del-conf-stat (membership->conf-no membership))))
;; "Print a row describing the membership of
;; MEMBER-CONF-STAT
(if (membership-type->passive
(membership->type membership))
(setq deferred-mships
(cons membership deferred-mships))
(setq lyskom-count-var
(+ lyskom-count-var
(lyskom-status-pers-list-one-membership conf-stat membership)))))
(lyskom-traverse membership (nreverse deferred-mships)
(setq lyskom-passive-count-var
(+ lyskom-passive-count-var
(lyskom-status-pers-list-one-membership conf-stat membership)))))
;; "Print the total number of unread texts for the person CONF-STAT."
(lyskom-format-insert 'his-total-unread
conf-stat
lyskom-count-var
lyskom-passive-count-var))))))
(defun lyskom-status-pers-list-one-membership (conf-stat membership)
(let ((member-conf-stat
(blocking-do 'get-conf-stat
(membership->conf-no membership))))
(if (or (null member-conf-stat)
(null membership))
(lyskom-insert-string 'secret-membership)
(lyskom-format-insert
"%#1@%-17#2s"
(if (membership-type->passive
(membership->type membership))
`(face ,kom-dim-face)
nil)
(lyskom-format-time
'date-and-time
(membership->last-time-read membership)))
(let ((unread (- (+ (conf-stat->first-local-no
member-conf-stat)
(conf-stat->no-of-texts
member-conf-stat))
(membership->last-text-read membership)
(length (membership->read-texts
membership))
1)))
(lyskom-format-insert
'pers-membership-line
(if (zerop unread) " " (format "%9d " unread))
(if (= (conf-stat->conf-no conf-stat)
(conf-stat->supervisor member-conf-stat))
(lyskom-get-string 'is-supervisor-mark)
" ")
member-conf-stat
(lyskom-return-membership-type
(membership->type membership))
(if (membership-type->passive
(membership->type membership))
`(face ,kom-dim-face)
nil)
)
(when (and (membership->created-by membership)
(not (zerop (membership->created-by membership)))
(not (eq (conf-stat->conf-no conf-stat)
(membership->created-by membership))))
(lyskom-format-insert 'pers-membership-line-2
(lyskom-format-time
'date-and-time
(membership->created-at membership))
(membership->created-by membership)))
unread))))
;;; ================================================================
;;; Skicka meddelande - Send message
;;; Author: Inge Wallin
;;; Rewritten to use lyskom-read-conf-no by Linus Tolke
;;; Modified to use default recipient by David Byers
(defun lyskom-default-conference-for-send-message (&rest args)
(let ((tmp (cond
((eq kom-default-message-recipient 'everybody) nil)
((and (eq kom-default-message-recipient 'group)
lyskom-last-group-message-recipient)
lyskom-last-group-message-recipient)
((or (and (eq kom-default-message-recipient 'group)
(null lyskom-last-group-message-recipient))
(and (eq kom-default-message-recipient 'sender)
lyskom-last-personal-message-sender))
lyskom-last-personal-message-sender)
((and (eq kom-default-message-recipient 'last-recipient)
lyskom-last-message-recipient
(not (eq 0 lyskom-last-message-recipient))
lyskom-last-message-recipient))
(t
(if lyskom-last-personal-message-sender
lyskom-last-personal-message-sender
nil)))))
(and tmp (list tmp))))
(def-kom-command kom-moronify (&optional whom)
"Add person to `kom-morons' list."
(interactive)
(let ((moron (or whom
(lyskom-read-conf-no 'moronify-whom '(pers) nil nil t))))
(when (not (memq moron kom-morons))
(setq kom-morons (cons moron kom-morons))
(lyskom-save-options (current-buffer)
(lyskom-get-string 'moronify-saving)
(lyskom-get-string 'moronify-saving-done)
(lyskom-get-string 'moronify-saving-error)))))
(def-kom-command kom-befriend (&optional whom)
"Add person to `kom-friends' list."
(interactive)
(let ((friend (or whom
(lyskom-read-conf-no 'befriend-whom '(pers) nil nil t))))
(when (not (memq friend kom-friends))
(setq kom-friends (cons friend kom-friends))
(lyskom-save-options (current-buffer)
(lyskom-get-string 'befriend-saving)
(lyskom-get-string 'befriend-saving-done)
(lyskom-get-string 'befriend-saving-error)))))
(def-kom-command kom-send-message (&optional who message)
"Send a message to another user or all members of a conference.
Messages sent with this command are not texts and are not stored
in the database. If you don't know if you should use this or write
a text, write a text \(see `kom-write-text' instead). Remember that
messages of this type are intrusive, yet may not be read by all
users.
Runs `kom-send-message-setup-hook' when entering the minibuffer.
See `kom-default-message-recipient'."
(interactive)
(lyskom-interactive-send-message who message nil))
(def-kom-command kom-send-alarm (&optional message)
"Send a message to all of the users in LysKOM.
Don't use this command unless what you have to say is really important to
everyone who is logged on.
Runs `kom-send-message-setup-hook' when entering the minibuffer."
(interactive)
(lyskom-interactive-send-message nil message t))
(defun lyskom-interactive-send-message (who message alarm-ok)
"Implementation of kom-send-message and kom-send-alarm."
(let* ((target (or who
(lyskom-read-conf-no
(list 'who-to-send-message-to
(lyskom-get-string (if alarm-ok 'everybody 'nobody)))
(if kom-permissive-completion '(all) '(login conf))
t nil t))))
(cond ((and (zerop target)
(not alarm-ok))
(lyskom-format-insert 'message-use-alarm-instead
(lyskom-command-name 'kom-send-alarm)))
((not (zerop target))
(setq lyskom-last-message-recipient target)
(lyskom-format-insert 'message-recipient-info target)
(lyskom-send-message target message))
(t (lyskom-format-insert 'message-all-info
`(face ,kom-warning-face)
'kom-send-message
(max 20 (- (window-width) 8)))
(lyskom-beep t)
(lyskom-send-message target message)))))
(defvar lyskom-message-recipient)
(defvar lyskom-message-string)
(defun lyskom-send-message-minibuffer-setup-hook ()
(unwind-protect
(progn
(run-hooks 'kom-send-message-setup-hook))
(remove-hook 'minibuffer-setup-hook
'lyskom-send-message-minibuffer-setup-hook)))
(defun lyskom-send-message-minibuffer-exit-hook ()
(unwind-protect
(progn
(run-hooks 'kom-send-message-exit-hook))
(remove-hook 'minibuffer-exit-hook
'lyskom-send-message-minibuffer-exit-hook)))
(defun lyskom-send-message (pers-no
message &optional dontshow)
"Send a message to the person with the number PERS-NO. PERS-NO == 0
means send the message to everybody. MESSAGE is the message to
send. If DONTSHOW is non-nil, don't display the sent message."
(let* ((lyskom-message-string nil)
(reply nil)
(lyskom-message-recipient nil)
(lyskom-last-text-format-flags nil))
(add-hook 'minibuffer-setup-hook
'lyskom-send-message-minibuffer-setup-hook)
(add-hook 'minibuffer-exit-hook
'lyskom-send-message-minibuffer-exit-hook)
(setq lyskom-message-string
(or message
(lyskom-read-string (lyskom-format 'message-prompt pers-no)
nil
'lyskom-message-history)))
(setq lyskom-message-recipient (if (zerop pers-no)
nil
(blocking-do 'get-conf-stat
pers-no)))
(run-hooks 'kom-send-message-hook)
(if lyskom-message-string
(progn
(setq reply (blocking-do 'send-message pers-no
lyskom-message-string))
(if reply
(if (not dontshow)
(lyskom-handle-as-personal-message
(lyskom-format
(if lyskom-message-recipient
(lyskom-get-string-sol 'message-sent-to-user)
(lyskom-get-string-sol 'message-sent-to-all))
lyskom-message-string
lyskom-message-recipient
(when kom-async-highlight-dashed-lines
`(face ,(or kom-async-dashed-lines-face
lyskom-default-async-dashed-lines-face)))
(when kom-async-highlight-text-body
`(face ,(or kom-async-text-body-face
lyskom-default-async-text-body-face)))
(let ((kom-print-relative-dates nil))
(lyskom-format-time 'date-and-time)))
lyskom-pers-no
kom-filter-outgoing-messages))
(lyskom-format-insert-before-prompt
'message-nope
(or lyskom-message-recipient
(lyskom-get-string 'everybody))
lyskom-message-string
(lyskom-format 'error-code
(lyskom-get-error-text lyskom-errno)
lyskom-errno
lyskom-err-stat))))
(lyskom-insert-string 'interrupted)) ;+++ lyskom-errno
))
(defun lyskom-send-message-trim-newlines ()
(when (stringp lyskom-message-string)
(let ((size (length lyskom-message-string)))
(while (and (> size 0)
(eq ?\n (aref lyskom-message-string (1- size))))
(setq size (1- size)))
(cond ((and (eq size 0)
(not (lyskom-j-or-n-p (lyskom-get-string
'send-empty-message-p))))
(setq lyskom-message-string nil))
((eq size 0)
(setq lyskom-message-string ""))
(t (setq lyskom-message-string (substring lyskom-message-string
0 size)))))))
(lyskom-with-external-functions (resize-minibuffer-setup
resize-minibuffer-mode)
(defun lyskom-send-message-turn-off-resize-on-exit ()
(resize-minibuffer-mode -1)
(remove-hook 'kom-send-message-exit-hook
'lyskom-send-message-turn-off-resize-on-exit))
;; USER-HOOK: lyskom-send-message-resize-minibuffer
(defvar resize-minibuffer-mode)
(defun lyskom-send-message-resize-minibuffer ()
"Temporarily turn on resizing of minibuffer"
(unless resize-minibuffer-mode
(resize-minibuffer-mode 1)
(resize-minibuffer-setup)
(add-hook 'kom-send-message-exit-hook
'kom-send-message-turn-off-resize-on-exit)))
)
;; USER-HOOK: lyskom-send-message-auto-fill
(defun lyskom-send-message-auto-fill ()
"Temporarily turn on auto fill in minibuffer"
(setq fill-column 78) ;+++ Ta bort?
(auto-fill-mode 1))
;;; ================================================================
;;; Endast l{sa senaste - Set unread articles in a conf.
;;; (Skip or re-read articles).
;;; Author: Linus Tolke
;;; Rehacked: David K}gedal
(def-kom-command kom-set-unread (&optional arg conf-no)
"Set number of unread articles in current conference."
(interactive "P")
(setq conf-no (or conf-no lyskom-current-conf))
(when conf-no (cache-del-conf-stat conf-no))
(if (or (null conf-no) (zerop conf-no))
(progn
(lyskom-insert-string 'not-present-anywhere)
(lyskom-insert-string "\n"))
(let ((conf-stat (blocking-do 'get-conf-stat conf-no)))
(if (null conf-stat)
(lyskom-insert 'somebody-deleted-that-conf)
(let* ((narg (prefix-numeric-value arg))
(n (if (and arg
(<= 0 narg)
(<= narg (conf-stat->no-of-texts conf-stat)))
narg
(lyskom-read-num-range-or-date 0 (conf-stat->no-of-texts conf-stat)
(lyskom-format 'only-last
(conf-stat->name conf-stat)))))
(membership nil))
(cond ((listp n)
(lyskom-format-insert 'set-unread-date
(elt n 0)
(car (rassq (elt n 1) lyskom-month-names))
(elt n 2))
(let* ((target-date (lyskom-create-time 0 0 0 (elt n 2) (elt n 1) (elt n 0) 0 0 nil))
(text (lyskom-find-text-by-date conf-stat target-date)))
(when text
(blocking-do 'set-last-read
(conf-stat->conf-no conf-stat)
(car text)))))
((numberp n)
(lyskom-format-insert 'set-unread-n n)
(blocking-do 'set-unread conf-no n)))
(setq membership (blocking-do 'query-read-texts lyskom-pers-no conf-no t 0))
(lyskom-replace-membership membership)
(if (= conf-no lyskom-current-conf)
(set-read-list-empty lyskom-reading-list))
(read-list-delete-read-info conf-no lyskom-to-do-list)
(if (= conf-no lyskom-current-conf)
(progn (lyskom-fetch-start-of-map conf-stat membership)
(lyskom-go-to-conf lyskom-current-conf t))
(lyskom-prefetch-map conf-no membership))
)))))
(def-kom-command kom-list-sessions ()
"List current LysKOM sessions and unread messages for each session.
See `kom-session-nickname' for a setting that affects display."
(interactive)
(let ((total-letters 0)
(total-texts 0)
(total-confs 0)
(buflist (buffer-list))
(session-list nil))
(lyskom-save-excursion
(lyskom-traverse buf buflist
(when (lyskom-buffer-p buf)
(set-buffer buf)
(let ((letters 0)
(texts 0)
(confs 0))
(lyskom-traverse entry (lyskom-list-news)
(unless (or (not entry) ; Happens sometimes
(zerop (car entry))) ; Ignore confs with 0 unread
(setq texts (+ (car entry)
texts))
(setq confs (1+ confs))
(when (= (conf-stat->conf-no (cdr entry))
lyskom-pers-no)
(setq letters (+ (car entry)
letters)))))
(setq total-texts (+ texts
total-texts))
(setq total-letters (+ letters
total-letters))
(setq total-confs (+ confs
total-confs))
(setq session-list (append (list (list (lyskom-session-nickname)
(lyskom-format "%#1P" lyskom-pers-no)
texts
letters
confs
kom-server-priority))
session-list))))))
(setq session-list
(sort session-list (lambda (s1 s2)
(if (= (nth 5 s1) ; Same priority?
(nth 5 s2))
(string< (nth 0 s1)
(nth 0 s2)) ; Sort on name
(< (nth 5 s1) ; Different priority - sort on that
(nth 5 s2))))))
(lyskom-traverse session session-list
(if (zerop (nth 2 session))
(lyskom-format-insert 'session-list-no-unread-in
(nth 0 session))
(lyskom-format-insert 'session-list-unreads-in-confs
(nth 0 session)
(nth 3 session)
(nth 2 session)
(nth 4 session))))))
;;; ================================================================
;;; Lista Nyheter - List News
;;; Author: Linus Tolke
;;; Rehacked: Inge Wallin, Johan Sundstrm
(defvar lyskom-special-conf-name "\\`\\(Inl.gg .t mig\\|NL:\\)\\'"
"Regexp to match conf names that are special.")
(defvar lyskom-iter-list-news-total-confs)
(defvar lyskom-iter-list-news-mship-confs)
(defvar lyskom-iter-list-news-shown-unreads)
(defvar lyskom-iter-list-news-shown-confs)
(defvar lyskom-iter-list-news-total-unreads)
(defvar lyskom-iter-list-news-total-confs)
(defun lyskom-iter-list-news (unreads conf-stat at-least at-most)
"Callback function used to show the number of unread messages of a
conference. It heavily relies on (and destructively modifies) its
environment."
(when (and (or (not at-least)
(>= unreads at-least)) ; unreads within lower bound
(or (not at-most)
(<= unreads at-most))) ; unreads within upper bound
(when lyskom-iter-list-news-mship-confs ; remember all read conferences?
(setq lyskom-iter-list-news-mship-confs
(delq (conf-stat->conf-no conf-stat)
lyskom-iter-list-news-mship-confs)))
(cond
((and (boundp 'lyskom-special-conf-name)
(stringp lyskom-special-conf-name)
(string-match lyskom-special-conf-name
(conf-stat->name conf-stat)))
(lyskom-format-insert 'you-have-unreads-special unreads conf-stat))
(t (lyskom-format-insert 'you-have-unreads unreads conf-stat)))
(setq lyskom-iter-list-news-shown-unreads
(+ lyskom-iter-list-news-shown-unreads unreads)
lyskom-iter-list-news-shown-confs
(1+ lyskom-iter-list-news-shown-confs)))
(setq lyskom-iter-list-news-total-unreads
(+ lyskom-iter-list-news-total-unreads unreads)
lyskom-iter-list-news-total-confs
(1+ lyskom-iter-list-news-total-confs)))
(def-kom-command kom-list-news (&optional num)
"Print the number of unread texts in each conference.
If the prefix argument is zero, show all conferences, including those
with no unread textts. With a positiv prefix argument, only show
conferences with at least that many unread texts. With a negative
prefix argument, only show conferences with no more than that many
unread texts.
See `kom-allow-incompleteness'."
(interactive "P")
(let ((num-arg (cond
((numberp num) num)
((and (listp num)
(numberp (car num))) (car num))
(t nil)))
(lyskom-iter-list-news-mship-confs nil)
(at-least 1)
(at-most nil)
(lyskom-iter-list-news-shown-unreads 0)
(lyskom-iter-list-news-total-unreads 0)
(lyskom-iter-list-news-shown-confs 0)
(lyskom-iter-list-news-total-confs 0))
(when num-arg
(cond
((= num-arg 0)
(lyskom-traverse-membership el
(when (not (membership-type->passive (membership->type el)))
(setq lyskom-iter-list-news-mship-confs
(cons (membership->conf-no el)
lyskom-iter-list-news-mship-confs))))
(setq at-least nil
lyskom-iter-list-news-mship-confs (nreverse lyskom-iter-list-news-mship-confs)))
((> num-arg 0)
(lyskom-format-insert 'list-unread-with-n-unread
(setq at-least num-arg)))
((< num-arg 0)
(lyskom-format-insert 'list-unread-with-at-most-n-unread
(setq at-most (- num-arg))))))
;; The following variables are bound in the callback
;; lyskom-iter-list-news-total-unreads
;; lyskom-iter-list-news-shown-unreads
;; lyskom-iter-list-news-total-confs
;; lyskom-iter-list-news-shown-confs
;; lyskom-iter-list-news-mship-confs
(lyskom-list-news 'lyskom-iter-list-news (list at-least at-most))
(when lyskom-iter-list-news-mship-confs ; then list all read conferences too
(lyskom-traverse conf-no lyskom-iter-list-news-mship-confs
(lyskom-format-insert 'you-have-no-unreads conf-no)))
(if (= 0 lyskom-iter-list-news-total-unreads)
(lyskom-insert-string 'you-have-read-everything)
(if (= 0 lyskom-iter-list-news-shown-unreads)
(lyskom-insert-string 'no-unreads-shown)
(lyskom-insert "\n")) ; separate the shown list from the summary message
(when (and
(> lyskom-iter-list-news-shown-unreads 0)
(< lyskom-iter-list-news-shown-unreads
lyskom-iter-list-news-total-unreads))
(lyskom-format-insert 'shown-unreads
lyskom-iter-list-news-shown-unreads
lyskom-iter-list-news-shown-confs))
(lyskom-format-insert 'total-unreads
lyskom-iter-list-news-total-unreads
lyskom-iter-list-news-total-confs))))
(defun lyskom-list-news (&optional callback callback-args)
"With no arguments, returns a list of tuples (unread . conf-stat).
When called with a CALLBACK function, this function is called
iteratively as the list is built up. This function should take the two
arguments `number-of-unread-messages-in-conference' and `conf-stat'
and optionally any other arguments sent in the list CALLBACK-ARGS, and
its return value will form the elements of the list returned from
lyskom-list-news. The callback will only be fed conferences with at
least one unread message in them."
(unless kom-allow-incompleteness
(sit-for 0)
(lyskom-prefetch-all-confs))
(mapcar
(function
(lambda (info)
(let ((unreads (length (text-list->texts (read-info->text-list info))))
(conf-stat (read-info->conf-stat info)))
(when (eq (read-info->type info) 'CONF)
(if callback
(apply callback unreads conf-stat callback-args)
(cons unreads conf-stat))))))
(read-list->all-entries lyskom-to-do-list)))
;;; ================================================================
;;; V{nta - Idle wait
(defun kom-busy-wait (arg)
"Wait for new texts.
Waiting is interrupted when a text in a conference with higher priority
than that of the next text to be read. If you want another priority to
break that the ones higher that the next text to be read, give the
priority as a prefix argument. When a text is received the new text
is displayed.
This command is semi-obsolete and may be removed in a future version
of the client.
See `kom-ding-on-wait-done'."
(interactive "P")
(lyskom-start-of-command 'kom-busy-wait)
(unwind-protect
(let ((waitfor (or (cond
((integerp arg) arg)
((listp arg) (car arg)))
(read-info->priority
(read-list->first lyskom-to-do-list))
-2)))
(lyskom-tell-server kom-mercial)
(if (not (read-list-isempty lyskom-reading-list))
(set-read-list-empty lyskom-reading-list))
(if (= waitfor -2)
(lyskom-insert-string 'waiting-for-anything)
(lyskom-format-insert 'waiting-higher-than waitfor))
(lyskom-scroll)
(setq lyskom-is-waiting
(list '>
'(or (read-info->priority
(read-list->first lyskom-reading-list))
(read-info->priority
(read-list->first lyskom-to-do-list))
257)
waitfor))
(while lyskom-is-waiting
;; This is a bit trial-and-error stuff at the momemt.
;; o How to make personal messages appear *fast*
;; o How to enable C-g with a quick response
(sit-for 0)
(accept-process-output nil 1)
(sit-for 0)
(if lyskom-quit-flag
(signal 'quit nil))))
(lyskom-end-of-command))
;; We are done waiting
(lyskom-beep kom-ding-on-wait-done)
(if (read-list-isempty lyskom-reading-list)
(kom-go-to-next-conf))
(kom-next-command))
(defun lyskom-time-greater (time1 time2)
"Returns t if TIME2 is before TIME1 chronologically."
(cond
((< (time->year time2) (time->year time1)))
((> (time->year time2) (time->year time1)) nil)
((< (time->mon time2) (time->mon time1)))
((> (time->mon time2) (time->mon time1)) nil)
((< (time->mday time2) (time->mday time1)))
((> (time->mday time2) (time->mday time1)) nil)
((< (time->hour time2) (time->hour time1)))
((> (time->hour time2) (time->hour time1)) nil)
((< (time->min time2) (time->min time1)))
((> (time->min time2) (time->min time1)) nil)
((< (time->sec time2) (time->sec time1)))
((> (time->sec time2) (time->sec time1)) nil)
(t nil)))
;;; ================================================================
;;; Lista {rende - list summary
;;; Author: Linus Tolke
(def-kom-command kom-list-summary (prefix)
"List a summary of the unread texts in the current conference.
The summary contains the date, number of lines, author and subject
of the text on one line.
with a prefix argument, list each unique subject only once."
(interactive "P")
(if (read-list-isempty lyskom-reading-list)
(lyskom-insert-string 'have-to-be-in-conf-with-unread)
(lyskom-list-summary nil prefix)))
(defun lyskom-list-summary (conf-no &optional unique)
"List a summary of unread texts in conference CONF-NO.
If CONF-NO is nil, list the first text-list element in lyskom-reading-list.
If UNIQUE is non-nil, list only the first text with a particular subject.
The summary contains the date, number of lines, author and subject of
the text on one line."
(let* ((read-info nil)
(read-list (if conf-no lyskom-to-do-list lyskom-reading-list))
(len (read-list-length read-list))
(r 0))
(while (< r len)
(if (or (and conf-no
(eq (read-info->type (read-list->nth read-list r)) 'CONF)
(eq conf-no (conf-stat->conf-no
(read-info->conf-stat
(read-list->nth read-list r)))))
(and (null conf-no)
(memq (read-info->type (read-list->nth read-list r))
'(CONF REVIEW-MARK REVIEW REVIEW-TREE REVIEW-FAQ REVIEW-FAQ-TREE))))
(setq len 0)
(setq r (1+ r))))
(setq read-info (read-list->nth read-list r))
(when read-info
(lyskom-list-text-summary
(copy-sequence (text-list->texts (read-info->text-list read-info)))
'(text-no " " written " " lines " " comments " " author " " subject)
(if unique :unique :comment-order)))))
;;; ============================================================
;;; kom-list-marks Lista markeringar
;;; Author: David Byers
;;; Modified by: Joel Rosdahl
(def-kom-command kom-list-marks (&optional which-mark)
"List texts marked with a particular mark. Use `kom-mark-text' to
mark texts and `kom-unmark-text' to unmark them. A numeric prefix
argument indicated the mark to list. With no prefix argument, you
will be prompted for the mark."
(interactive "P")
(when (not (numberp which-mark))
(setq which-mark (lyskom-read-mark-type
(lyskom-get-string 'list-which-mark)
t)))
;; Start fetching all text-stats and text to list them.
(lyskom-list-text-summary
(sort (listify-vector (blocking-do 'get-marks))
(lambda (a b) (< (mark->mark-type a)
(mark->mark-type b))))
'(mark-type " " text-no " " written " " lines " " mark-count " " author " " subject)
:filter (lambda (mark which-mark)
(or (null which-mark)
(eq (mark->mark-type mark) which-mark)))
:filter-args (list which-mark)))
;;; ============================================================
;;; kom-who-am-i - Vem r jag
;;;
;;; Author: David Byers
(def-kom-command kom-who-am-i ()
"Show your name and information about your sessions."
(interactive)
(if (and lyskom-current-conf
(not (zerop lyskom-current-conf)))
(lyskom-format-insert 'who-i-am-present
lyskom-pers-no
lyskom-current-conf)
(lyskom-format-insert 'who-i-am-not-present lyskom-pers-no))
(lyskom-format-insert
'who-i-am-server
lyskom-server-name
(version-info->software-version lyskom-server-version-info))
(lyskom-format-insert 'who-i-am-client
lyskom-clientversion
lyskom-mule-compiled)
(lyskom-format-insert 'who-i-am-emacs
(emacs-version)
enable-multibyte-characters))
;;; ================================================================
;;; Hj{lp vid del av kommando - Help function
;;; Author: Linus Tolke
(defun lyskom-help (&optional only-kom)
"Prints a short list of alternatives when you don't know what you can do."
(interactive)
(let* ((tohere (cond
((stringp (this-command-keys))
(substring (this-command-keys) 0 -1))
(t ;This is the case in the lucid-emacs.
(let* ((tck (this-command-keys))
(newvec (make-vector (1- (length tck)) nil))
(r 0))
(while (< r (length newvec))
(aset newvec r (aref tck r))
(++ r))
newvec))))
(binding (key-binding tohere))
(keymap (cond
((and (symbolp binding)
(fboundp binding))
(symbol-function binding))
(t (if (eq binding lyskom-mode-map)
(keymap-parent binding)
binding))))
(keylis (lyskom-help-get-keylist keymap))
(keydes (mapconcat 'single-key-description tohere " "))
(text (lyskom-format
(if (string= keydes "")
"\n%#2s\n"
"\n%#1s:\n%#2s\n")
keydes
(mapconcat
'identity
(delq nil (mapcar
(lambda (arg)
(if (or (null (cdr arg))
(eq (cdr arg) 'undefined)
(and only-kom
(not (or (lyskom-command-name (cdr arg))
(keymapp (cdr arg))))))
nil
(format "%s - %s"
(if (fboundp 'key-description)
(if (not (vectorp (car arg)))
(key-description (vector (car arg)))
(key-description (car arg)))
(cond ((symbolp (car arg))
(format "%s" (car arg)))
((lyskom-characterp (car arg))
(format "%c" (car arg)))
(t (format "%S" (car arg)))))
(or (lyskom-command-name (cdr arg))
(and (keymapp (cdr arg))
(lyskom-get-string
'multiple-choice))
(cdr arg)))))
keylis))
"\n")))
;; next-char
)
(when (lyskom-called-interactively-p 'any)
(if (eq major-mode 'lyskom-mode)
(progn
(lyskom-insert text)
(lyskom-end-of-command))
(with-output-to-temp-buffer "*Help*"
(princ text))))
text))
(defun lyskom-help-get-keylist (keymap)
(and keymap
(let (keylist)
(lyskom-map-keymap
(lambda (event function)
(setq keylist (cons (cons event function) keylist)))
keymap t)
(nreverse keylist))))
;;; ================================================================
;;; [ndra livsl{ngd - Set lifespan of texts in a conference
;;; Author: Inge Wallin
(def-kom-command kom-set-garb-nice ()
"Set the garbage collection time for a conference. Texts in a
conference will eventually be deleted automatically \(this process is
called garbage collection). This can only happen when a text is older
than the garbage collection time of all its recipients."
(interactive)
(let ((conf-stat (lyskom-read-conf-stat 'conf-to-set-garb-nice-q
'(all) nil nil t)))
(if (not conf-stat)
(lyskom-insert-string 'somebody-deleted-that-conf)
(let ((garb-nice (lyskom-read-number 'new-garb-nice-q
(conf-stat->garb-nice conf-stat)))
(keep-commented
(lyskom-read-number 'new-keep-commented-q
(conf-stat->keep-commented conf-stat))))
(lyskom-format-insert 'garb-nice-for-is conf-stat garb-nice)
(if (not (blocking-do 'set-garb-nice
(conf-stat->conf-no conf-stat)
garb-nice))
(lyskom-insert-string 'nope) ;+++lyskom-errno
(lyskom-insert-string 'done)
(cache-del-conf-stat (conf-stat->conf-no conf-stat))
(sit-for 0)
(lyskom-format-insert 'keep-commented-for-is
conf-stat
keep-commented)
(if (not (blocking-do 'set-keep-commented
(conf-stat->conf-no conf-stat)
keep-commented))
(lyskom-insert-string 'nope) ;+++lyskom-errno
(lyskom-insert-string 'done)
(cache-del-conf-stat (conf-stat->conf-no conf-stat))))))))
;;; ================================================================
;;; S{tt till}tna f|rfattare - set-permitted-submitters
;;; Author: Linus Tolke
(def-kom-command kom-set-permitted-submitters ()
"Set the permitted submitters of a conference.
The permitted submitters of a conference is another conference. Only
members of the permitted submitters may submit texts to the conference."
(interactive)
(let ((conf-stat (lyskom-read-conf-stat 'conf-to-set-permitted-submitters-q
'(all) nil nil t)))
(if (not conf-stat)
(lyskom-insert-string 'somebody-deleted-that-conf)
(let ((new-conf (lyskom-read-conf-stat
`(new-permitted-submitters-q
,(conf-stat->name conf-stat))
'(all) t nil t)))
(if (eq new-conf nil)
(lyskom-format-insert 'permitted-submitters-removed-for-conf
conf-stat)
(lyskom-format-insert 'submitters-conf-for-is
conf-stat
new-conf))
(if (not (blocking-do 'set-permitted-submitters
(conf-stat->conf-no conf-stat)
(if (eq new-conf nil) ;Allowing all to write there
0
(conf-stat->conf-no new-conf))))
(lyskom-insert-string 'nope) ;+++ lyskom-errno
(lyskom-insert-string 'done)
(cache-del-conf-stat (conf-stat->conf-no conf-stat)))))))
;;; ================================================================
;;; [ndra superm|te - Set super conference
;;; Author: Inge Wallin
(def-kom-command kom-set-super-conf ()
"Set the super conference for a conference.
If a conference is set to only accept new texts, and not comments, any
comments submitted to the conference will be sent to the super
conference instead."
(interactive)
(let ((conf-stat (lyskom-read-conf-stat 'conf-to-set-super-conf-q
'(all) nil nil t)))
(if (not conf-stat)
(lyskom-insert-string 'somebody-deleted-that-conf)
(let ((new-conf (lyskom-read-conf-stat
`(new-super-conf-q ,(conf-stat->name conf-stat))
'(all) nil nil t)))
;; Set the super conference for conf-stat to new-conf.
(lyskom-format-insert 'super-conf-for-is
conf-stat
new-conf)
(if (not (blocking-do 'set-super-conf
(conf-stat->conf-no conf-stat)
(conf-stat->conf-no new-conf)))
(lyskom-insert-string 'nope) ;+++ lyskom-errno
(lyskom-insert-string 'done)
(cache-del-conf-stat (conf-stat->conf-no conf-stat)))))))
;;; ================================================================
;;; Spara databasen - Save database
;;;
(def-kom-command kom-sync-database ()
"Save the LysKOM database.
You can only run this command if you have administrative rights.
See `kom-enable-adm-caps'."
(interactive)
(if (and (>= (version-info->protocol-version lyskom-server-version-info) 8)
(lyskom-ja-or-nej-p (lyskom-get-string 'really-sync)))
(progn (lyskom-insert-string 'syncing-server)
(lyskom-report-command-answer (blocking-do 'sync)))
(setq lyskom-errno 12)
(lyskom-report-command-answer nil)))
;;; ================================================================
;;; St{ng av servern - Shutdown
;;; Author: Inge Wallin
(def-kom-command kom-shutdown-server ()
"Shutdown the LysKOM server.
You can only run this command if you have administrative rights.
See `kom-enable-adm-caps'."
(interactive)
(if (lyskom-ja-or-nej-p (lyskom-get-string 'really-shutdown))
(progn
(lyskom-insert-string 'closing-server)
(lyskom-report-command-answer (blocking-do 'shutdown 0)))))
;;; ================================================================
;;; \verg} till adm.mod - Enable administrator capabilities
;;; \verg} till normalmod - Disable administrator capabilities
;;; Author: Inge Wallin
(def-kom-command kom-enable-adm-caps ()
"Enable the adminstrator commands for the current user.
You can use this command even if you don't have administrative rights
on the system, but you still won't be able to use privileged commands.
Use `kom-disable-adm-caps' to return to normal mode."
(interactive)
(lyskom-enable-adm-caps (blocking-do 'enable 255)
(lyskom-get-string 'administrator)
t))
(def-kom-command kom-disable-adm-caps ()
"Disable the LysKOM adminstrator commands for the current user."
(interactive)
(lyskom-enable-adm-caps (blocking-do 'enable 0)
(lyskom-get-string 'no-longer-administrator)
nil))
(defun lyskom-enable-adm-caps (answer string is-administrator)
"Tell the user if the call succeded."
(if answer
(progn
(lyskom-format-insert 'you-are-now string)
(setq lyskom-is-administrator is-administrator))
(lyskom-insert-string 'nope))) ;+++ lyskom-errno
;;; ================================================================
;;; S{tt loginmeddelande - Set message of the day
;;; Author: Inge Wallin
(def-kom-command kom-set-motd ()
"Set the notice for the server.
You can only use this command if you have administrative rights.
See `kom-enable-adm-caps'."
(interactive)
(let* ((old-motd-text-stat (and (server-info->motd-of-lyskom lyskom-server-info)
(blocking-do 'get-text-stat (server-info->motd-of-lyskom lyskom-server-info))))
(old-motd-text (and (server-info->motd-of-lyskom lyskom-server-info)
(blocking-do 'get-text (server-info->motd-of-lyskom lyskom-server-info))))
(str (and old-motd-text
old-motd-text-stat
(text->decoded-text-mass old-motd-text old-motd-text-stat)))
(recpt (if old-motd-text-stat
(lyskom-get-recipients-from-misc-list
(text-stat->misc-info-list old-motd-text-stat))
(apply 'nconc (mapcar (lambda (x) (list 'RECPT x))
(and lyskom-server-info
(server-info->kom-news-conf lyskom-server-info)
(not (eq 0 (server-info->kom-news-conf lyskom-server-info)))
(list (server-info->kom-news-conf lyskom-server-info))))))))
(lyskom-edit-text
lyskom-proc
(apply 'lyskom-create-misc-list recpt)
(if (and str (string-match "\n" str))
(substring str 0 (1- (match-end 0)))
"")
(if (and str (string-match "\n" str))
(substring str (match-end 0))
"")
'lyskom-set-motd-2)))
;; Should really fix lyskom-edit text instead of the ugly IGNORE
(defun lyskom-set-motd-2 (text-no ignore)
"Set motd of LysKOM to the newly created text TEXT-NO."
(lyskom-insert-before-prompt
(lyskom-format 'setting-motd text-no))
(initiate-set-motd-of-lyskom 'background 'lyskom-set-motd-3
text-no text-no))
(defun lyskom-set-motd-3 (result text-no)
"Handle the return from the initiate-set-motd-of-lyskom call."
(if result
(progn
(lyskom-insert-before-prompt
(lyskom-get-string (if (zerop text-no)
'removed-motd
'set-motd-success)))
(set-server-info->motd-of-lyskom lyskom-server-info text-no))
(lyskom-insert-before-prompt
(lyskom-get-string 'set-motd-failed))))
;;; ================================================================
;;; Ta bort loginmeddelande - Remove message of the day
;;; Author: Inge Wallin
(def-kom-command kom-remove-motd ()
"Remove the notice for the LysKOM server.
You can only use this command if you have administrative rights.
See `kom-enable-adm-caps'."
(interactive)
(lyskom-insert-string 'removing-motd)
(initiate-set-motd-of-lyskom 'background 'lyskom-set-motd-3
0 0))
;;; ================================================================
;;; Kasta ut - force logout
;;; Author: Inge Wallin
(def-kom-command kom-force-logout ()
"Force another session to log out.
You can log out any sessions logged on as users you are the
supervisor of. With administrative rights you can log out any
user."
(interactive)
(let ((session (car-safe (lyskom-read-session-no 'who-to-throw-out
nil nil t))))
(cond ((> session 0)
(lyskom-format-insert 'throwing-out session)
(lyskom-report-command-answer
(blocking-do 'disconnect session)))
((< session 0)
(lyskom-format-insert 'person-not-logged-in-r (- session) nil))
(t nil))))
;;; ================================================================
;;; Skjut upp l{sning - postpone
;;; Author: Per Cederqvist
(def-kom-command kom-postpone (today)
"Postpone the reading of all but the last N texts in the current
conference. The postponed texts will be removed from the read list for
this session but return in your next session or when you do a
`kom-recover'.
A numeric prefix argument is the number of texts to read now. Without
a prefix argument this command will prompt for the number of texts."
(interactive (list
(cond
((null current-prefix-arg)
(lyskom-read-number 'postpone-prompt kom-postpone-default))
(t (prefix-numeric-value current-prefix-arg)))))
(let ((len (read-list-length lyskom-reading-list))
(finished nil))
(while (and (not finished)
(> len 0))
(let ((type (read-info->type (read-list->first lyskom-reading-list))))
(cond
((memq type lyskom-review-types-list)
(read-list-rotate lyskom-reading-list))
((memq type lyskom-comment-types-list)
(set-read-list-del-first lyskom-reading-list))
((eq type 'CONF)
(text-list->trim-head
(read-info->text-list (read-list->first lyskom-reading-list))
today)
(setq finished t))
((eq type 'RE-EDIT-TEXT))
((eq type 'PRI-SESSION))
(t
(signal 'lyskom-internal-error '("lyskom-remove-comment-chains")))))
(-- len)))
;; Delete the 'CONF entry if we selected 0 entries.
(cond
((zerop today)
(read-list-delete-text nil lyskom-reading-list)
(read-list-delete-text nil lyskom-to-do-list))))
;;; ================================================================
;;; S{tt l{sniv} - Sess session priority
;;; Author: David K}gedal
(def-kom-command kom-set-session-priority (priority)
"Set the priority level of the current session and refetch all
memberships. Conferences whose priorities are lower than the session
priority will not be included when reading. This is useful to separate
conferences to read while at work from conferences to not read at
work.
A numeric prefix argument specifies the new session priority. Without
prefix argument, you will be prompted for a priority.
See `kom-default-session-priority'."
(interactive "P")
(let ((pri (or priority
(lyskom-read-num-range 0
255
(lyskom-get-string 'set-session-priority)
t
(or kom-default-session-priority 100)))))
(setq lyskom-session-priority pri)
(lyskom-refetch)))
;;; ================================================================
;;; Begrav lyskom-sessionen - kom-bury
;;; Author: Linus Tolke
(defun kom-bury ()
"Puts the kom-session in the background."
(interactive)
(let ((session-name (buffer-name (current-buffer)))
(buffer (current-buffer)))
(bury-buffer)
(while (and (string-match (regexp-quote session-name)
(buffer-name (current-buffer)))
(not (eq buffer (current-buffer))))
(bury-buffer))))
(defun lyskom-buffer-p (buf &optional may-be-dead)
"Returns non-nil if BUF is an active LysKOM buffer
If optional second argument MAY-BE-DEAD is non-nil, this function returns t
whether the session is alive or not. Otherwise it checks that the session
is alive."
(when (buffer-live-p buf)
(save-current-buffer
(set-buffer buf)
(and (eq major-mode 'lyskom-mode)
(boundp 'lyskom-proc)
lyskom-proc
(processp lyskom-proc)
(or (and may-be-dead
(memq (process-status lyskom-proc) '(run open closed)))
(memq (process-status lyskom-proc) '(run open)))))))
(defun lyskom-next-kom (buffer-list-name direction)
"Internal version of kom-next-kom
BUFFER-LIST-NAME is the list of buffers to rotate through. It must be a
name since this function may modify the list.
DIRECTION should be one of 'forward or 'backward and is the direction to
rotate through the buffer list.
Return-value: 'no-session if there is no suitable session to switch to
'same-session if the current buffer is the only suitable one
nil if everything went well"
;; Clean the buffer lists
(lyskom-clean-all-buffer-lists)
(let ((current (lyskom-buffer-root-ancestor (current-buffer)))
(buffer-list (symbol-value buffer-list-name))
(result nil))
;; Figure out the start buffer. The target buffer will be the
;; following buffer in lyskom-buffer-list
(cond
((null buffer-list) (setq result 'no-session
current nil))
;; If we are in a lyskom buffer that is in lyskom-buffer-list
;; switch from the current buffer. If unlisted, list it.
((lyskom-buffer-p current)
(unless (memq current buffer-list)
(setq buffer-list (cons current buffer-list))))
;; If we are in a non-LysKOM buffer, the start buffer is the
;; last one in the list
(t (setq current (car buffer-list))))
;; Rotate the buffer list so the target buffer is first
(when current
(cond ((eq direction 'forward)
(setq buffer-list
(lyskom-rotate-list buffer-list
(car (cdr (memq current buffer-list))))))
(t
(setq buffer-list
(lyskom-rotate-list buffer-list
(or (car (lyskom-preceding-cons
buffer-list
current))
(car (last buffer-list)))))))
(set buffer-list-name buffer-list)
;; If the current buffer and the target buffer are the same
;; do nothing. Otherwise, flip around the buffers
(if (eq (current-buffer) (car buffer-list))
(setq result 'same-session)
(lyskom-switch-to-kom-buffer (car buffer-list) current)
(setq result nil)))
result))
(def-kom-emacs-command kom-next-kom ()
"Pop up the next LysKOM-session.
This command can be run from any buffer to go to the next available
LysKOM session.
See `kom-previous-kom' and `kom-next-unread-kom' for related commands."
(interactive)
(let ((result (lyskom-next-kom 'lyskom-buffer-list 'forward)))
(cond ((eq result 'no-session)
(error (lyskom-get-string 'no-lyskom-session)))
((eq result 'same-session)
(if kom-next-kom-running-as-kom-command
(lyskom-insert-before-prompt (lyskom-get-string
'no-other-lyskom-r))
(error (lyskom-get-string 'no-lyskom-session))))
(t nil))))
(def-kom-emacs-command kom-previous-kom ()
"Pop up the previous LysKOM-session.
This command can be run from any buffer to go to the next available
LysKOM session.
See `kom-next-kom' and `kom-next-unread-kom' for related commands."
(interactive)
(let ((result (lyskom-next-kom 'lyskom-buffer-list 'backward)))
(cond ((eq result 'no-session)
(error (lyskom-get-string 'no-lyskom-session)))
((eq result 'same-session)
(if kom-previous-kom-running-as-kom-command
(lyskom-insert-before-prompt (lyskom-get-string
'no-other-lyskom-r))
(error (lyskom-get-string 'no-lyskom-session))))
(t nil))))
(def-kom-emacs-command kom-next-unread-kom ()
"Pop up the next LysKOM-session with unread texts.
This command can be run from any buffer to go to the next available
LysKOM session.
See `kom-next-kom' and `kom-previous-kom' for related commands."
(interactive)
(let ((result (lyskom-next-kom 'lyskom-sessions-with-unread 'forward)))
(cond ((eq result 'no-session)
(if kom-next-unread-kom-running-as-kom-command
(lyskom-insert-before-prompt (lyskom-get-string
'no-unread-lyskom-r))
(error (lyskom-get-string 'no-unread-lyskom))))
((eq result 'same-session)
(if kom-next-unread-kom-running-as-kom-command
(lyskom-insert-before-prompt
(lyskom-get-string
;; Are there are any other sessions at all?
(if (= 1 (length lyskom-buffer-list))
'no-other-lyskom-r
'no-other-unread-lyskom-r)))
(error (lyskom-get-string 'no-lyskom-session))))
(t nil))))
(defun kom-modeline-next-unread-kom ()
"Pop up the previous unread lyskom session, if there is one"
(interactive)
(lyskom-next-kom 'lyskom-sessions-with-unread 'forward))
(defun kom-modeline-select-unread-kom (event)
"Pop up a menu of sessions with unreads"
(interactive "@e")
(when lyskom-sessions-with-unread
(let ((unreads
(mapcar (lambda (buffer)
(save-current-buffer
(set-buffer buffer)
(vector
(lyskom-format "%#1P, %#2s%#3?b%[ (%#4s)%]%[%]"
lyskom-pers-no
(lyskom-session-nickname)
(memq buffer lyskom-sessions-with-unread-letters)
(lyskom-get-string 'unread-letters))
(list 'lyskom-switch-to-kom-buffer buffer)
:active t)))
lyskom-sessions-with-unread)))
(popup-menu
(cons (lyskom-get-string 'sessions-with-unreads) unreads)
event))))
(defun lyskom-switch-to-kom-buffer (buffer &optional current)
(when buffer
(when (and kom-bury-buffers
(or (null current)
(eq current (current-buffer))))
(kom-bury))
;; Switch to the new buffer
(switch-to-buffer buffer)))
;;; ============================================================
;;; Var finns kommandot (kom-where-is)
;;; Author: David Byers
(def-kom-emacs-command kom-where-is (cmd)
"Show on which key a LysKOM command is. Prompts for a command name
and displays all key bindings for the command. This is similar to the
Emacs function `where-is', but reads localized LysKOM command names,
not function names."
(interactive (list (lyskom-read-extended-command)))
(let ((w (where-is-internal cmd))
(msg nil))
(cond ((null cmd)
(setq msg (lyskom-format (lyskom-get-string 'where-is-doesnt-exist)
(lyskom-command-name cmd))))
((null w)
(setq msg (lyskom-format (lyskom-get-string 'where-is-on-no-key)
(lyskom-command-name cmd))))
(t (setq msg (lyskom-format (lyskom-get-string 'where-is-on-key)
(lyskom-command-name cmd)
(mapconcat
(lambda (x)
(format "`%s'" (key-description x)))
w ", ")))))
(if kom-where-is-running-as-kom-command
(lyskom-insert-before-prompt (concat msg "\n"))
(message msg))))
;;;============================================================
;;; Visa user-arean (kom-show-user-area)
;;;
;;; Author: David Byers
(def-kom-command kom-show-user-area ()
"Get and display the user area of the current person. The user area
is a regular text used to store all settings. The format of this text
is documented in the LysKOM protocol specification. This command is
primarily intended for use by developers."
(interactive)
(let ((pers-stat (blocking-do 'get-pers-stat lyskom-pers-no)))
(lyskom-view-text (pers-stat->user-area pers-stat)
nil nil nil nil nil)
(lyskom-wait-queue 'main)))
(def-kom-command kom-delete-user-area ()
"Remove the user area of the current person. The user area
is where all settings are stored. Deleting it means all settings
are lost. Do not delete the user area unless you're sure you really
want to."
(interactive)
(lyskom-format-insert 'delete-user-area-warning
`(face ,kom-warning-face))
(when (lyskom-ja-or-nej-p (lyskom-get-string 'delete-user-area-confirm))
(let* ((pers-stat (blocking-do 'get-pers-stat lyskom-pers-no))
(user-area (pers-stat->user-area pers-stat)))
(lyskom-insert 'deleting-user-area)
(lyskom-report-command-answer (blocking-do 'delete-text user-area))
(lyskom-insert 'removing-user-area)
(lyskom-report-command-answer (blocking-do 'set-user-area lyskom-pers-no 0))
)))
;;;============================================================
;;; Bli anonym
(def-kom-command kom-become-anonymous ()
"Become pseudo-anonymous.
When this mode is in effect, your movements in LysKOM will not be
reported as usual, and when writing texts you will have the option of
sending them anonymously. Depending on what you do, it may still be
possible to deduce that you are the author of an anonymous text.
To summarize, texts you create while in this mode should be difficult
to trace back to you, if you are careful. It is not foolproof.
Use `kom-become-nonanonymous' to return to normal mode."
(interactive)
(if lyskom-is-anonymous
(lyskom-insert 'you-are-already-anonymous)
; (initiate-pepsi 'main nil 0)
(setq lyskom-is-anonymous t)
(lyskom-tell-server kom-mercial)
(lyskom-insert 'you-are-anonymous)
(lyskom-update-prompt t)))
(def-kom-command kom-become-nonanonymous ()
"Leave pseudo-anonymous mode.
See `kom-become-anonymous' for information on anonymous mode."
(interactive)
(if lyskom-is-anonymous
(progn (when (and lyskom-current-conf
(not (zerop lyskom-current-conf)))
(initiate-pepsi 'main nil lyskom-current-conf))
(setq lyskom-is-anonymous nil)
(lyskom-update-prompt t)
(lyskom-insert 'you-are-nonanonymous))
(lyskom-insert 'you-are-already-nonanonymous)))
;;;============================================================
;;; ndra mtestyp (kom-change-conf-type)
;;;
;;; Author: Tomas Abrahamsson & David Byers
(def-kom-command kom-change-conf-type ()
"Change type of a conference.
Using this command you can set all flags of a conference, with
the exception of the letterbox flag (which cannot be modified)."
(interactive)
(let* ((uconf-stat (lyskom-read-uconf-stat 'what-conf-to-change
'(conf pers) nil "" t))
(type (uconf-stat->conf-type uconf-stat))
(box (conf-type->letterbox type))
(ori (conf-type->original type))
(pro (conf-type->rd_prot type))
(sec (conf-type->secret type))
(ano (conf-type->anarchy type))
(ope (conf-type->forbid-secret type)))
(lyskom-format-insert
'change-type-prompt
uconf-stat
(mapconcat 'identity
(delq nil
(list (and box (lyskom-get-string 'Mailbox))
(and sec (lyskom-get-string 'Protected))
(and ori (lyskom-get-string 'no-comments))
(and pro (lyskom-get-string 'closed))
(and ano (lyskom-get-string 'allow-anon))
(and (not ope) (lyskom-get-string 'allow-secret))))
", "))
(let* ((open (lyskom-j-or-n-p (lyskom-get-string 'anyone-member)))
(secret (if (not open)
(lyskom-j-or-n-p (lyskom-get-string 'secret-conf))))
(orig (lyskom-j-or-n-p (lyskom-get-string 'comments-allowed)))
(anarchy (lyskom-j-or-n-p (lyskom-get-string 'anonymous-allowed)))
(secmem (and (lyskom-have-feature long-conf-types)
(not (lyskom-j-or-n-p (lyskom-get-string 'secret-members-allowed))))))
(cache-del-conf-stat (uconf-stat->conf-no uconf-stat))
(cache-del-uconf-stat (uconf-stat->conf-no uconf-stat))
(if (not (blocking-do
'set-conf-type
(uconf-stat->conf-no uconf-stat)
(lyskom-create-conf-type (not open)
(not orig)
secret
(conf-type->letterbox
(uconf-stat->conf-type uconf-stat))
anarchy
(if (lyskom-have-feature long-conf-types)
secmem
(conf-type->forbid-secret
(uconf-stat->conf-type uconf-stat)))
(conf-type->rsv2
(uconf-stat->conf-type uconf-stat))
(conf-type->rsv3
(uconf-stat->conf-type uconf-stat)))))
(progn (lyskom-insert-string 'nope)
(lyskom-insert-error))
(lyskom-insert-string 'done)))))
;;; ============================================================
;;; ndra sprk
;;;
(defun kom-change-global-language ()
"Use kom-change-language instead."
(interactive)
(kom-change-language t))
(defun kom-change-local-language ()
"Use kom-change-language instead"
(interactive)
(kom-change-language))
(def-kom-command kom-change-language (&optional global)
"Change the current language in the current LysKOM session.
With a prefix argument, also make changes that would affect all
sessions, such as key bindings.
The selected language is not saved between sessions. To permanently
set and save language settings. use `kom-customize' instead.
See `kom-default-language'.
Lisp documentation:
The optional argument GLOBAL indicates that the change should have a
global effect, including changes to key binding."
(interactive "P")
(let* ((completion-ignore-case t)
(table (lyskom-available-language-list))
(language (lyskom-completing-read
(lyskom-get-string 'which-language)
(lyskom-maybe-frob-completion-table table)
nil
t
nil
'lyskom-language-history)))
(when (lyskom-string-assoc language table)
(lyskom-set-language (cdr (lyskom-string-assoc language table)) 'local)
(when global
(lyskom-set-language (cdr (lyskom-string-assoc language table)) 'global))
(lyskom-format-insert
'language-set-to
(lyskom-language-name (cdr (lyskom-string-assoc language table)))))))
(defun lyskom-available-language-list ()
"Return an alist suitable for completing read of available language names."
(let ((tmp
(mapcar (lambda (el)
(cons (car el) (eval (cdr el))))
(get 'lyskom-language-codes 'lyskom-language-var)))
(codes (mapcar 'car lyskom-languages))
(result nil))
(mapc (lambda (code)
(mapcar
(function
(lambda (codelist)
(when (assq code codelist)
(setq result
(cons (cons (cdr (assq code codelist))
code)
result)))))
tmp))
codes)
result))
;;; ============================================================
;;; Berkna
(lyskom-with-external-functions (calc-eval)
(def-kom-command kom-calculate (&optional exprx)
"Calculate a mathematical expression.
This function requires the `calc' package to be installed, and is
really only a simple interface to the basic functionality of calc."
(interactive)
(when (lyskom-try-require 'calc
(lyskom-get-string 'need-library))
(let* ((expr (or exprx
(lyskom-read-from-minibuffer
(lyskom-get-string 'calc-expression)
nil nil nil 'lyskom-expression-history)))
(result (calc-eval expr)))
(cond ((stringp result)
(lyskom-format-insert-before-prompt
"%#1s = \n %#2s\n" expr result))
(t (lyskom-format-insert-before-prompt
"%#1s = \n%#2s^ %#3s\n"
expr
(make-string (car result) ?\ )
(car (cdr result)))))))))
;;; ============================================================
;;; ndra namn
(def-kom-command kom-set-personal-label ()
"This command is obsolete, broken and doesn't work. Don't use it.
Sets a personal label on an object of some kind."
(interactive)
(let* ((completions (list (cons (lyskom-get-string 'Conference) 'conf)
(cons (lyskom-get-string 'Person) 'pers)
(cons (lyskom-get-string 'Text) 'text)))
(completion-ignore-case t)
(type (cdr (lyskom-string-assoc
(completing-read (lyskom-get-string 'label-what-kind)
(lyskom-maybe-frob-completion-table
completions)
nil t)
completions)))
(objno nil)
(label nil)
(object nil)
(secret nil)
(aux nil))
(cond ((eq type 'text)
(setq objno (lyskom-read-number 'label-what-text))
(setq object (blocking-do 'get-text-stat objno))
(when (null object)
(lyskom-error 'no-such-text-no objno))
(setq aux (text-stat-find-aux object 10 lyskom-pers-no))
(setq secret (not (lyskom-j-or-n-p
(lyskom-get-string 'label-secret))))
(setq label
(lyskom-read-from-minibuffer
(lyskom-get-string 'label-what-label)))
(blocking-do
'modify-text-info
objno
(mapcar 'aux-item->aux-no aux)
(list
(lyskom-create-aux-item 0 10 0 0
(lyskom-create-aux-item-flags
nil nil secret nil nil nil nil nil)
0 label)))
(cache-del-text-stat objno))
((memq type '(conf pers))
(setq object
(lyskom-read-conf-stat (if (eq type 'pers)
'label-what-pers
'label-what-conf)
(if (eq type 'pers)
'(pers)
'(all))
nil nil t))
(setq objno (conf-stat->conf-no object))
(setq aux (conf-stat-find-aux object 10 lyskom-pers-no))
(setq secret (not (lyskom-j-or-n-p
(lyskom-get-string 'label-secret))))
(setq label
(lyskom-read-from-minibuffer
(lyskom-get-string 'label-what-label)))
(blocking-do
'modify-conf-info
objno
(mapcar 'aux-item->aux-no aux)
(list
(lyskom-create-aux-item 0 10 0 0
(lyskom-create-aux-item-flags
nil nil secret nil nil nil nil nil)
0 label)))
(cache-del-conf-stat objno)))))
(def-kom-command kom-fast-reply (text-no)
"Add a remark to a text.
Note that remarks may not be seen by all users. Users are not notified
when remarks are created, and not all clients support remarks.
See `kom-agree' for a variant of this command.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg 'what-fast-reply-no)))
(if text-no
(progn (lyskom-format-insert 'fast-replying text-no)
(lyskom-fast-reply text-no
(lyskom-read-string
(lyskom-get-string 'fast-reply-prompt)
nil
'lyskom-fast-reply-history)))
(lyskom-insert-string 'confusion-what-to-reply-to)))
(defun lyskom-default-agree-string (&optional text)
(unless text (setq text kom-agree-text))
(cond ((null text) (lyskom-get-string 'default-agree-string))
((stringp text) text)
((functionp text) (funcall text))
((listp text) (lyskom-default-agree-string
(elt text (random (length kom-agree-text)))))))
(def-kom-command kom-agree (text-no)
"Add a predefined remark to a text.
Note that remarks may not be seen by all users. Users are not notified
when remarks are created, and not all clients support remarks.
The remark to add is defined by `kom-agree-text'.
See `kom-fast-reply' for a general variant of this command.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg 'what-agree-no)))
(if text-no
(progn (lyskom-format-insert 'agreeing text-no)
(lyskom-fast-reply text-no
(lyskom-read-string
(lyskom-get-string 'agree-prompt)
(lyskom-default-agree-string)
'lyskom-fast-reply-history)))
(lyskom-insert-string 'confusion-what-to-agree-to)))
(defun lyskom-fast-reply (text-no message)
"To text TEXT-NO add MESSAGE as a fast reply."
(cache-del-text-stat text-no)
(if (lyskom-check-fast-reply-message message)
(lyskom-report-command-answer
(blocking-do 'modify-text-info
text-no
nil
(list (lyskom-create-aux-item 0 2 0 0
(lyskom-create-aux-item-flags
nil nil nil nil nil nil nil nil)
0 message))))
(lyskom-insert 'nope)
(lyskom-insert 'fast-reply-too-long)))
(defun lyskom-check-fast-reply-message (message)
"Return non-nil if MESSAGE is a valid fast reply."
(not (string-match "\n" message)))
;;; ============================================================
;;; Various aux-item stuff
(def-kom-command kom-add-no-comments (&optional text-no)
"Add a request for no comments to the selected text.
Such a request is advisory; clients may ignore them. Be restrictive
with requests for no comments as other users may find them annoying or
even insulting \(they can be seen as the LysKOM equivalent of telling
someone to shut up and get out after making them listen to you).
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg 'what-no-comments-no)))
(let ((text-stat (blocking-do 'get-text-stat text-no)))
;; Make sure there is a text there in the first place
(if (null text-stat)
(lyskom-format-insert 'no-such-text-no text-no)
;; Make sure that the text doesn't already have this kind of item
;; created by the same person
(if (lyskom-match-aux-items (text-stat->aux-items text-stat)
(lambda (el)
(and (eq (aux-item->tag el) 4)
(eq (aux-item->creator el)
lyskom-pers-no))))
(lyskom-format-insert 'already-no-comments text-no)
;; If the author of the text is not the current user, ask if the
;; user wants to try anyway (it might work...)
(if (or (eq (text-stat->author text-stat) lyskom-pers-no)
(lyskom-j-or-n-p 'not-author-try-anyway-p))
(progn (lyskom-format-insert 'adding-no-comments
text-no)
(lyskom-report-command-answer
(blocking-do 'modify-text-info
text-no
nil
(list
(lyskom-create-aux-item
0 4 nil nil
(lyskom-create-aux-item-flags
nil nil nil nil nil nil nil nil) 0 ""))))
(cache-del-text-stat text-no)))))))
(def-kom-command kom-add-private-answer (text-no)
"Add a request for private replies only to the selected text.
Note that such requests are advisory; clients may ignore them.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg 'what-private-answer-no)))
(if text-no
(let ((text-stat (blocking-do 'get-text-stat text-no)))
;; Make sure there is a text there in the first place
(if (null text-stat)
(lyskom-format-insert 'no-such-text-no text-no)
;; Make sure that the text doesn't already have this kind of item
;; created by the same person
(if (lyskom-match-aux-items (text-stat->aux-items text-stat)
(lambda (el)
(and (eq (aux-item->tag el) 5)
(eq (aux-item->creator el)
lyskom-pers-no))))
(lyskom-format-insert 'already-private-answer text-no)
;; If the author of the text is not the current user, ask if the
;; user wants to try anyway (it might work...)
(if (or (eq (text-stat->author text-stat) lyskom-pers-no)
(lyskom-j-or-n-p 'not-author-try-anyway-p))
(progn (lyskom-format-insert 'adding-private-answer
text-no)
(lyskom-report-command-answer
(blocking-do 'modify-text-info
text-no
nil
(list
(lyskom-create-aux-item
0 5 nil nil
(lyskom-create-aux-item-flags
nil nil nil nil nil nil nil nil) 0 ""))))
(cache-del-text-stat text-no))))))
(lyskom-insert 'confusion-what-to-comment)))
(def-kom-command kom-add-request-confirm (text-no)
"Add confirmation request to the selected text.
Note that such requests are advisory; clients may ignore them. Use
confirmation requests very sparingly. If unmotivated use of them
becomes widespread, then they will be ignored even when they are used
appropriately.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg 'what-request-confirm-no)))
(if text-no
(let ((text-stat (blocking-do 'get-text-stat text-no)))
;; Make sure there is a text there in the first place
(if (null text-stat)
(lyskom-format-insert 'no-such-text-no text-no)
;; Make sure that the text doesn't already have this kind of item
;; created by the same person
(if (lyskom-match-aux-items (text-stat->aux-items text-stat)
(lambda (el)
(and (eq (aux-item->tag el) 6)
(eq (aux-item->creator el)
lyskom-pers-no))))
(lyskom-format-insert 'already-request-confirm text-no)
;; If the author of the text is not the current user, ask if the
;; user wants to try anyway (it might work...)
(if (or (eq (text-stat->author text-stat) lyskom-pers-no)
(lyskom-j-or-n-p 'not-author-try-anyway-p))
(progn (lyskom-format-insert 'adding-request-confirm
text-no)
(lyskom-report-command-answer
(blocking-do 'modify-text-info
text-no
nil
(list
(lyskom-create-aux-item
0 6 nil nil
(lyskom-create-aux-item-flags
nil nil nil nil nil nil nil nil) 0 ""))))
(cache-del-text-stat text-no))))))
(lyskom-insert 'confusion-what-to-request-confirmation)))
(def-kom-command kom-review-mail-headers (text-no)
"Show all mail headers of an imported message. Mail headers are also
shown when you use the `kom-review-noconversion' command.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-text-no-prefix-arg
'review-mail-headers-to-what)))
(if text-no
(let* ((text-stat (blocking-do 'get-text-stat text-no))
(headers (and text-stat (lyskom-get-aux-item (text-stat->aux-items text-stat) 24)))
(lyskom-transforming-external-text t))
(cond ((null text-stat) (lyskom-format-insert 'no-such-text-no text-no))
((null headers) (lyskom-format-insert 'no-mail-headers text-no))
(t (lyskom-format-insert 'mail-headers-for text-no)
(mapcar (lambda (el)
(let ((kom-autowrap nil))
(lyskom-format-insert "%#1t" (aux-item->data el))
(lyskom-insert "\n")))
headers))))
(lyskom-insert 'confusion-what-to-review-mail-headers)))
;;; ============================================================
;;; Keep-alive
;;; Author: ceder, byers
(def-kom-var lyskom-keep-alive-timers nil
"List of all active keep alive timers"
local)
(defun lyskom-keep-alive-callback (buffer)
(condition-case callback-error
(save-current-buffer (set-buffer buffer)
(if (eq (process-status lyskom-proc) 'open)
(initiate-get-time 'keep nil)
(lyskom-stop-keep-alive)
(message "Terminating keep-alive")))
(error (message "Error during keep-alive: %s" callback-error)
(lyskom-stop-keep-alive))))
(def-kom-command kom-keep-alive ()
"Keep the LysKOM session alive by sending a request every once in a
while. The variable `kom-keep-alive-interval' controls the frequency
of the request. This command may be useful for users with brain-dead
broadband access that disconnects when the line has been inactive for
too long.
Use `kom-stop-keep-alive' to turn off this mode."
(interactive)
(set-buffer lyskom-buffer)
(lyskom-stop-keep-alive)
(lyskom-keep-alive)
(unless (eq (current-buffer) lyskom-buffer)
(lyskom-message 'start-keep-alive kom-keep-alive-interval))
(lyskom-format-insert 'start-keep-alive kom-keep-alive-interval)
(lyskom-insert "\n"))
(defun lyskom-keep-alive ()
(setq lyskom-keep-alive-timers
(cons
(add-timeout kom-keep-alive-interval
'lyskom-keep-alive-callback
(current-buffer)
kom-keep-alive-interval)
lyskom-keep-alive-timers)))
(def-kom-command kom-stop-keep-alive ()
"Stop sending periodic requests to keep the session alive.
See `kom-keep-alive' for more information."
(interactive)
(lyskom-stop-keep-alive)
(unless (eq (current-buffer) lyskom-buffer)
(lyskom-message "%#1s" 'stop-keep-alive))
(lyskom-insert 'stop-keep-alive)
(lyskom-insert "\n"))
(defun lyskom-stop-keep-alive ()
(mapc 'disable-timeout lyskom-keep-alive-timers)
(setq lyskom-keep-alive-timers nil))
(defun lyskom-buffer-kill-keep-alive-hook ()
(if lyskom-keep-alive-timers
(message "Terminating keep-alive for buffer %s" (buffer-name (current-buffer))))
(lyskom-stop-keep-alive))
(add-hook 'kill-buffer-hook 'lyskom-buffer-kill-keep-alive-hook)
;;; ========================================================================
;;; Check (if Person is a) member (of Conference)
;;; Quickly finds out whether a person is a member of a given conference
;;; Author: Johan Sundstrm
(def-kom-command kom-is-person-member-of-conference (&optional pers-no conf-no)
"Check if a particular person is a member of a particular conference."
(interactive)
(let* ((pers-no
(or pers-no
(lyskom-read-conf-no 'pers-to-check-mship-for
'(pers) nil nil t)))
(conf-stat
(if conf-no
(blocking-do 'get-conf-stat conf-no)
(lyskom-read-conf-stat 'conf-to-check-mship-of
'(all) nil nil t)))
(mship (lyskom-is-member (conf-stat->conf-no conf-stat) pers-no)))
(if (null mship)
(lyskom-format-insert 'pers-is-not-member-of-conf pers-no (conf-stat->conf-no conf-stat))
(if (membership-type->passive (membership->type mship))
(progn
(lyskom-format-insert 'pers-is-passive-member-of-conf
pers-no conf-stat)
(lyskom-format-insert 'pers-will-receive-async
(membership-type->message-flag
(membership->type mship))))
(lyskom-format-insert 'pers-is-member-of-conf pers-no conf-stat)
(lyskom-format-insert 'pers-will-receive-async
(membership-type->message-flag
(membership->type mship)))
(lyskom-format-insert 'pers-mship-priority
(membership->priority mship))
(when kom-deferred-printing
(lyskom-format-insert
'pers-is-member-of-conf-2
(lyskom-format-time
'date-and-time
(membership->last-time-read mship))
(lyskom-create-defer-info
'query-read-texts
(list pers-no (conf-stat->conf-no conf-stat) t 0)
(lambda (membership defer-info)
(if (null membership)
(lyskom-replace-deferred
defer-info (lyskom-get-string 'Unknown-number))
(let ((conf-stat (defer-info->data defer-info)))
(lyskom-replace-deferred defer-info
(number-to-string
(- (+ (conf-stat->first-local-no conf-stat)
(conf-stat->no-of-texts conf-stat))
(membership->last-text-read membership)
(length (membership->read-texts membership))
1))))))
nil nil "%#1s" conf-stat))))
)))
(def-kom-command kom-will-person-read-text (pers-no text-no)
"Check if a particular person is a member of any recipient of a text..
If a prefix argument is given, that text will be checked.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg')."
(interactive (list (lyskom-read-conf-no 'pers-to-check-will-read-for
'(all) nil nil t)
(lyskom-read-text-no-prefix-arg 'text-to-check-will-read-for)))
(let* ((text-stat (blocking-do 'get-text-stat text-no))
(recipients (and text-stat (lyskom-text-recipients text-stat)))
(result nil))
(lyskom-traverse rcpt recipients
(let ((mship (lyskom-is-member rcpt pers-no)))
(when mship
(if (membership-type->passive (membership->type mship))
(setq result 'passive)
(setq result t)
(lyskom-traverse-break)))))
(cond ((null result)
(lyskom-format-insert 'pers-is-not-member-of-rcpt
pers-no text-stat))
((eq result 'passive)
(lyskom-format-insert 'pers-is-passive-member-of-rcpt
pers-no text-stat))
(t (lyskom-format-insert 'pers-is-member-of-rcpt
pers-no text-stat)))))
;;; ================================================================
;;; Help
(def-kom-command kom-help (&optional section)
"Run the built-in help system."
(interactive)
(let* ((alternatives (delq nil
(mapcar (lambda (section)
(unless (string= "" (elt section 1))
(cons (elt section 1)
(elt section 0))))
lyskom-help-data)))
(completion-ignore-case t)
(section section))
(while (null section)
(setq section
(lyskom-string-assoc
(lyskom-completing-read (lyskom-get-string 'help-with-what)
alternatives
nil
t
nil
'lyskom-help-history)
alternatives)))
(lyskom-format-insert 'help-for (car section))
(lyskom-help-show-section (cdr section))))
(def-kom-command kom-make-review-mark-as-read ()
"Makes all review commands mark texts as read. Overrides the value
of the configurable variable `kom-review-marks-texts-as-read' in the
current buffer."
(interactive)
(setq kom-review-marks-texts-as-read t))
(def-kom-command kom-make-review-not-mark-as-read ()
"Makes all review commands not mark texts as read. Overrides the
value of the configurable variable `kom-review-marks-texts-as-read' in
the current buffer."
(interactive)
(setq kom-review-marks-texts-as-read nil))
;;; ================================================================
;;; Jmfr tv texter - Compare two texts
;;; Run ediff-buffers on two texts.
;;; Author: Per Cederqvist
(defun lyskom-create-text-buffer (text-no text text-stat)
"Create and return a buffer containing TEXT."
(let ((buf (generate-new-buffer (format "%d" text-no))))
(set-buffer buf)
(insert (text->decoded-text-mass text text-stat))
;; Add a terminating newline. Ediff works better that way, and it
;; should not harm any other applications of this function.
(insert "\n")
(set-buffer-modified-p nil)
buf))
(defvar diff-command)
(defvar ediff-diff-program)
(def-kom-command kom-compare-texts (old new)
"Show differences between two texts, OLD and NEW.
When called interactively, it will prompt for the NEW text first,
defaulting to the last viewed texts. The OLD text number will default
to the first text that NEW is a comment or footnote to.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg') for the NEW text."
(interactive
(let* ((n (lyskom-read-text-no-prefix-arg 'diff-what-text-new))
(new-stat (blocking-do 'get-text-stat n))
(o (lyskom-read-number
'diff-what-text-old
(if (null new-stat)
(lyskom-error (lyskom-get-string 'no-such-text-no n))
(car (lyskom-text-stat-commented-texts new-stat))))))
(list o n)))
(blocking-do-multiple ((old-text (get-text old))
(new-text (get-text new))
(old-text-stat (get-text-stat old))
(new-text-stat (get-text-stat new)))
(cond
((or (null old-text) (null old-text-stat))
(lyskom-format-insert 'no-such-text-no old))
((or (null new-text) (null new-text-stat))
(lyskom-format-insert 'no-such-text-no new))
(t
(condition-case nil
(ediff-buffers
(lyskom-create-text-buffer old old-text old-text-stat)
(lyskom-create-text-buffer new new-text new-text-stat))
(file-error (lyskom-error (lyskom-get-string 'external-program-missing)
(cond ((boundp 'ediff-diff-program)
ediff-diff-program)
((boundp 'diff-command) diff-command)
(t "diff (gissningsvis)")))))))))
;;; ================================================================
;;; Se diff - View diff
;;; Run diff on two texts and insert the result.
;;; Author: Per Cederqvist
(defun lyskom-create-temp-file (text-no text text-stat)
"Create a temporary file containing TEXT, and return its file name."
(let ((file (make-temp-file (format "kom-diff-%d." text-no)))
(buf (lyskom-create-text-buffer text-no text text-stat)))
(write-region (point-min) (point-max) file)
(kill-buffer buf)
file))
(defvar diff-command)
(def-kom-command kom-diff-texts (old new &optional switches)
"Show differences between two texts, OLD and NEW.
When called interactively, it will prompt for the NEW text first,
defaulting to the last viewed texts. The OLD text number will default
to the first text that NEW is a comment or footnote to.
This command accepts text number prefix arguments \(see
`lyskom-read-text-no-prefix-arg') for the NEW text."
(interactive
(let* ((n (lyskom-read-text-no-prefix-arg 'diff-what-text-new))
(new-stat (blocking-do 'get-text-stat n))
(o (lyskom-read-number
'diff-what-text-old
(if (null new-stat)
(lyskom-error (lyskom-get-string 'no-such-text-no n))
(car (lyskom-text-stat-commented-texts new-stat))))))
(list
o n
(if current-prefix-arg
(list (read-string "Diff switches: "
(if (stringp diff-switches)
diff-switches
(mapconcat 'identity diff-switches " "))))
nil))))
(blocking-do-multiple ((old-text (get-text old))
(new-text (get-text new))
(old-text-stat (get-text-stat old))
(new-text-stat (get-text-stat new)))
(cond
((or (null old-text) (null old-text-stat))
(lyskom-format-insert 'no-such-text-no old))
((or (null new-text) (null new-text-stat))
(lyskom-format-insert 'no-such-text-no new))
(t
(let* ((buf (current-buffer))
(oldfile (lyskom-create-temp-file old old-text old-text-stat))
(newfile (lyskom-create-temp-file new new-text new-text-stat))
(args (list "-L" (format "%d\t%s" old
(lyskom-format-time
'timeformat-yyyy-mm-dd-hh-mm-ss
(text-stat->creation-time
old-text-stat)))
"-L" (format "%d\t%s" new
(lyskom-format-time
'timeformat-yyyy-mm-dd-hh-mm-ss
(text-stat->creation-time
new-text-stat)))
oldfile newfile)))
(if switches
(setq args (append
(lyskom-split-string (if (consp switches)
(mapconcat 'identity switches " ")
switches))
args))
(if diff-switches
(setq args (append
(lyskom-split-string (if (consp diff-switches)
(mapconcat 'identity diff-switches
" ")
diff-switches))
args))))
(set-buffer buf)
(lyskom-insert
(with-temp-buffer
(apply 'call-process (if (boundp 'diff-command)
diff-command
"diff")
nil t nil args)
(buffer-string)))
(delete-file oldfile)
(delete-file newfile))))))
;;; ================================================================
;;; Visa URL - Show URL
;;; View an URL in the current browser.
;;; Author: Per Cederqvist
(def-kom-command kom-view-url-in-text (n)
"Display the first URL in the current text of a LysKOM buffer.
With a prefix argument, view the Nth URL in the text."
(interactive "p")
(save-excursion
(let ((end (point)))
(kom-backward-text)
(re-search-forward lyskom-url-protocol-regexp end nil n)
(kom-button-press))))
;;; ================================================================
;;; Skapa aux-item
(def-kom-command kom-create-aux-item ()
"Creates arbitrary aux-items.
This command is primarily targeted at advanced users and developers
who want access to aux-item-based features before they are implemented
properly in the client."
(interactive)
(let* ((completions
(mapcar (lambda (x) (cons (lyskom-get-string x) x))
'(server conference text)))
(completion-ignore-case t)
(object-type
(cdr (lyskom-string-assoc
(lyskom-completing-read
(lyskom-get-string 'what-kind-to-add-aux-to)
completions nil t)
completions)))
(object-id (cond ((eq object-type 'server) nil)
((eq object-type 'conference)
(lyskom-read-conf-no 'which-conf-to-add-aux-to
'(pers conf) nil nil t))
((eq object-type 'text)
(lyskom-read-number 'which-text-to-add-aux-to
(if (and lyskom-current-text
(not (zerop lyskom-current-text)))
lyskom-current-text
nil)))))
(tag (lyskom-read-number 'which-aux-item-tag))
(inherit (lyskom-j-or-n-p 'which-aux-item-inherit))
(secret (lyskom-j-or-n-p 'which-aux-item-secret))
(anonymous (lyskom-j-or-n-p 'which-aux-item-anonymous))
(rsv1 (lyskom-j-or-n-p 'which-aux-item-rsv1))
(rsv2 (lyskom-j-or-n-p 'which-aux-item-rsv2))
(rsv3 (lyskom-j-or-n-p 'which-aux-item-rsv3))
(rsv4 (lyskom-j-or-n-p 'which-aux-item-rsv4))
(inherit-limit (lyskom-read-number 'which-aux-item-inherit-limit))
(data (lyskom-read-string (lyskom-get-string 'which-aux-item-data)))
(flags (lyskom-create-aux-item-flags nil inherit secret anonymous
rsv1 rsv2 rsv3 rsv4))
(item (lyskom-create-aux-item 0 tag 0 0 flags inherit-limit data)))
(lyskom-report-command-answer
(cond ((eq object-type 'server)
(blocking-do 'modify-server-info nil (list item)))
((eq object-type 'conference)
(progn (cache-del-conf-stat object-id)
(blocking-do 'modify-conf-info object-id nil (list item))))
((eq object-type 'text)
(progn (cache-del-text-stat object-id)
(blocking-do 'modify-text-info object-id nil (list item))))))
(when (eq object-type 'server)
(setq lyskom-server-info (blocking-do 'get-server-info)))))
;;; ================================================================
;;; Status fr LysKOM
;;;
;;; Skriv ut:
;;; * Serverns kanoniska namn (canonical-name eller ud kom-server-alist)
;;; * Serverns DNS-namn/IP och port
;;; * Serverns programvara och version
;;; * Hgsta existerande inlggsnummer
;;; * Antal sessioner
;;; * Serverns tid
;;;
(def-kom-command kom-status-server ()
"Show status information for the LysKOM server."
(interactive)
(blocking-do-multiple ((server-info (get-server-info))
(server-version (get-version-info))
(server-time (get-time))
(highest-text (find-previous-text-no lyskom-max-int))
(first-text (find-next-text-no 0))
(session-info (who-is-on-dynamic t t 0))
(stats-desc (get-stats-description))
(text-stats (get-stats "texts"))
(conf-stats (get-stats "confs"))
(pers-stats (get-stats "persons"))
(boottime-info (get-boottime-info)))
(setq lyskom-server-info (blocking-do 'get-server-info))
(setq lyskom-server-version-info (blocking-do 'get-version-info))
(let* ((aux-items (server-info->aux-item-list lyskom-server-info))
(canonical-name-aux (car (lyskom-get-aux-item aux-items 31)))
(invisible-sessions 0)
(anonymous-sessions 0)
(active-sessions 0)
(inactive-sessions 0)
(unknown-activity-sessions 0)
(total-sessions (length session-info))
(idle-hide (* 60 (if (numberp kom-idle-hide) kom-idle-hide 30)))
(kom-extended-status-information
(lyskom-extended-status-override 'server))
momentary-index periodic-index)
(setq aux-items (delq canonical-name-aux aux-items))
;; Compute the index into statistics that represents the
;; momentary value (when equals zero) and the periodic
;; value (when is at least five minutes).
(when stats-desc
(let ((min-time
(apply 'min (listify-vector (stats-description->when
stats-desc))))
(max-time
(apply 'max (listify-vector (stats-description->when
stats-desc))))
(i 0)
(min-diff lyskom-max-int)
max-time-index)
(lyskom-traverse val (stats-description->when stats-desc)
(when (eq val min-time) (setq momentary-index i))
(when (eq val max-time) (setq max-time-index i))
(when (and (>= val 300)
(< (- val 300) min-diff))
(setq min-diff (- val 300)
periodic-index i))
(setq i (1+ i)))
(unless periodic-index (setq periodic-index max-time-index))))
;; ----------------------------------------
;; Compute session statistics
(lyskom-traverse session session-info
;; Record anonymity
(when (zerop (dynamic-session-info->person session))
(setq anonymous-sessions (1+ anonymous-sessions)))
;; Record activity
(if (session-flags->user_active_used (dynamic-session-info->flags session))
(if (> (dynamic-session-info->idle-time session) idle-hide)
(setq inactive-sessions (1+ inactive-sessions))
(setq active-sessions (1+ active-sessions)))
(setq unknown-activity-sessions (1+ unknown-activity-sessions)))
;; Record invisibility
(when (session-flags->invisible (dynamic-session-info->flags session))
(setq invisible-sessions (1+ invisible-sessions)))
)
;; ----------------------------------------
;; Print header
(lyskom-format-insert 'server-status-header
(lyskom-session-nickname)
lyskom-server-name
lyskom-server-port)
;; ----------------------------------------
;; Print software name and version
(lyskom-format-insert 'server-status-version
(version-info->server-software server-version)
(version-info->software-version server-version))
(lyskom-format-insert 'server-status-protocol
(version-info->protocol-version server-version))
;; ----------------------------------------
;; Print canonical name, if we have one
(when canonical-name-aux
(let ((canonical-name nil)
(canonical-port nil))
(if (string-match ":" (aux-item->data canonical-name-aux))
(setq canonical-name (substring (aux-item->data canonical-name-aux) 0 (match-beginning 0))
canonical-port (substring (aux-item->data canonical-name-aux) (1+ (match-beginning 0))))
(setq canonical-name (aux-item->data canonical-name-aux)))
(lyskom-format-insert 'server-status-server canonical-name canonical-port)))
;; ----------------------------------------
;; Print start time and such
(when boottime-info
(lyskom-format-insert 'server-status-boot-time
(let ((kom-print-relative-dates nil))
(lyskom-format-time
'date-and-time
(static-server-info->boot-time
boottime-info))))
(lyskom-format-insert
'server-status-save-time
(let ((kom-print-relative-dates nil))
(lyskom-format-time
'date-and-time
(static-server-info->save-time
boottime-info)))
(cond ((equal "clean" (static-server-info->db-status boottime-info)) nil)
(t (condition-case nil
(lyskom-get-string (intern (concat "db-status-" (static-server-info->db-status boottime-info))))
(error (static-server-info->db-status boottime-info))))))
)
;; ----------------------------------------
;; Print time
(lyskom-format-insert 'server-status-time
(let ((kom-print-relative-dates nil))
(lyskom-format-time 'date-and-time server-time)))
;; ----------------------------------------
;; Print session statistics
(lyskom-format-insert 'server-status-sessions
total-sessions
active-sessions
inactive-sessions
unknown-activity-sessions
invisible-sessions
anonymous-sessions
(/ idle-hide 60))
;; ----------------------------------------
;; Print stats for confs and persons
(when pers-stats
(lyskom-format-insert 'server-status-pers
(stats->average
(elt pers-stats momentary-index))
(lyskom-format-time-units
(stats->ascent-rate
(elt pers-stats periodic-index)))
(static-server-info->existing-persons
boottime-info)))
(when conf-stats
(lyskom-format-insert 'server-status-confs
(stats->average
(elt conf-stats momentary-index))
(lyskom-format-time-units
(stats->ascent-rate
(elt conf-stats periodic-index)))
(static-server-info->existing-confs
boottime-info)))
;; ----------------------------------------
;; Print info on text numbers
(when text-stats
(lyskom-format-insert 'server-status-texts
(stats->average
(elt text-stats momentary-index))
(lyskom-format-time-units
(stats->ascent-rate
(elt text-stats periodic-index)))
(static-server-info->existing-texts
boottime-info)))
(lyskom-format-insert 'server-status-first-text first-text)
(lyskom-format-insert 'server-status-last-text
highest-text
(when boottime-info
(static-server-info->highest-text-no
boottime-info)))
;; ----------------------------------------
;; Print remaining aux-items
(lyskom-traverse-aux item aux-items
(if (lyskom-aux-item-definition-field item 'status-print)
(lyskom-aux-item-call item 'status-print item 'server)
(lyskom-format-insert 'status-aux-item
(format "%d/%d"
(aux-item->aux-no item)
(aux-item->tag item))
(aux-item->creator item)
(lyskom-aux-item-terminating-button item 'server))
))
;; ----------------------------------------
;; Print statistics
(when (lyskom-extended-status-information 'raw-server-stats)
(let* ((stats (lyskom-get-server-stats))
(what (server-stats->what stats))
(maxlen (and stats (apply 'max (mapcar 'length what))))
(fmt (and maxlen (format "%%=%d#1s " maxlen))))
(when stats
(lyskom-format-insert 'status-server-stats)
(lyskom-insert (lyskom-format fmt ""))
(lyskom-traverse period (server-stats->when stats)
(lyskom-format-insert " %=8#1s"
(if (eq 0 period)
(lyskom-get-string 'current-average)
(lyskom-format-units period
'((604800 . "w")
(86400 . "d")
(3600 . "h")
(60 . "m"))
"s"))))
(lyskom-insert "\n")
(lyskom-traverse item (server-stats->values stats)
(let ((start (point-max))
(inhibit-read-only t))
(lyskom-format-insert fmt (car item))
(lyskom-traverse val (cdr item)
(lyskom-format-insert " %=8.2.7#1f" (stats->average val)))
(lyskom-format-insert "\n")
(add-text-properties start (point-max) `(face ,kom-mark-face)))
(lyskom-format-insert fmt "")
(lyskom-insert " ")
(let ((index 0))
(lyskom-traverse val (cdr item)
(if (eq (elt (server-stats->when stats) index) 0)
(lyskom-insert " ")
(lyskom-format-insert " %=8.2.7#1f+"
(stats->ascent-rate val)))
(setq index (1+ index))))
(lyskom-format-insert "\n")
(lyskom-format-insert fmt "")
(lyskom-insert " ")
(let ((index 0))
(lyskom-traverse val (cdr item)
(if (eq (elt (server-stats->when stats) index) 0)
(lyskom-insert " ")
(lyskom-format-insert " %=8.2.7#1f-"
(stats->descent-rate val)))
(setq index (1+ index))))
(lyskom-format-insert "\n")
))))
;; ----------------------------------------
;; Print MOTD (if there is one)
(when (not (zerop (server-info->motd-of-lyskom server-info)))
(lyskom-insert 'server-status-has-motd)
(lyskom-view-text (server-info->motd-of-lyskom server-info)))
)))
;;; ================================================================
;;; Rekommendera mte
(def-kom-command kom-recommend-conference ()
"Recommend a conference to new LysKOM users.
Thie command can only be used if you have administrative rights
to the LysKOM server."
(interactive)
(let* ((conf-stat (lyskom-read-conf-stat 'recommend-which-conf
'(conf) nil nil t))
(priority (and (lyskom-j-or-n-p 'recommend-set-priority-q)
(lyskom-read-num-range 0 255 'priority-q)))
(mship-type (and priority
(lyskom-j-or-n-p 'recommend-set-mship-type-q)
(lyskom-read-membership-type)))
(aux-item (lyskom-create-aux-item
0 29 nil nil
(lyskom-create-aux-item-flags nil nil nil nil
nil nil nil nil)
0
(mapconcat 'lyskom-format-object
(delq nil
(list (conf-stat->conf-no conf-stat)
priority
mship-type))
" "))))
(lyskom-format-insert 'recommending-conf
conf-stat
priority
(and mship-type
(lyskom-return-membership-type mship-type)))
(lyskom-report-command-answer (blocking-do 'modify-server-info
nil
(list aux-item)))))
;;; ================================================================
;;; Add send-comments-to
;;;
(def-kom-command kom-redirect-comments ()
"Add extended information to your letterbox that causes some other
conference to be added as a recipient to comments to your texts when
someone posts them to a conference you are not a member of.
Note that this is advisory only; clients may ignore your redirection."
(interactive)
(let* ((conf-stat (lyskom-read-conf-stat 'redirect-for-whom
'(pers) nil nil t))
(redirect-to (lyskom-read-conf-stat 'redirect-to-which-conf
'(pers conf) nil nil t))
(old-redirect (car (lyskom-get-aux-item
(conf-stat->aux-items conf-stat)
33))))
(lyskom-format-insert 'redirecting-comments-to
conf-stat redirect-to old-redirect)
(lyskom-report-command-answer
(blocking-do 'modify-conf-info
(conf-stat->conf-no conf-stat)
(and old-redirect (list (aux-item->aux-no old-redirect)))
(list (lyskom-create-aux-item
0
33
nil nil
(lyskom-create-aux-item-flags
nil nil nil nil
nil nil nil nil)
0
(format "%d" (conf-stat->conf-no redirect-to)))))
nil
'((illegal-aux-item . kom-redirect-comments-e48)
(aux-item-permission . kom-redirect-comments-e48))))
)
;;; ================================================================
;;; Kamikaze functions!
(def-kom-command kom-join-all-conferences ()
"Join all conferences.
You want to be really careful doing this. It will take a while and
is probably not what you really want to do."
(interactive)
(let* ((conf-nos (lyskom-get-all-conferences t))
(confirm-each (or (lyskom-j-or-n-p 'confirm-each-join)
(not (lyskom-j-or-n-p
(lyskom-format 'no-confirm-each-sure
(length conf-nos))))))
(mship-type (unless (lyskom-j-or-n-p 'confirm-each-msg)
(lyskom-create-membership-type
nil nil nil (lyskom-j-or-n-p 'receive-each-msg)
nil nil nil nil)))
(no-of-unread (lyskom-read-num-range-or-date
0
lyskom-max-int
(lyskom-format 'initial-unread)
nil
t
nil))
(kom-membership-default-priority
(lyskom-read-num-range 0 255
(lyskom-get-string 'priority-q)
nil nil)))
(while conf-nos
(unless (or (lyskom-get-membership (car conf-nos) t)
(and confirm-each
(not (lyskom-j-or-n-p (lyskom-format 'confirm-join
(car conf-nos))))))
(lyskom-add-member-by-no (car conf-nos) lyskom-pers-no
no-of-unread mship-type)
(sit-for 0))
(setq conf-nos (cdr conf-nos)))))
(def-kom-command kom-leave-all-conferences ()
"Leave all conferences.
This command will ignore certain conferences. It will not leave your
letterbox, secret or closed conferences without confirmation. Note
that this command could take a very long time to complete."
(interactive)
(let* ((auto-regular nil)
(auto-secret nil)
(auto-closed nil)
(confs nil))
(lyskom-message (lyskom-get-string 'getting-all-confs))
(let* ((xlist (lyskom-get-all-conferences))
(count (length xlist))
(index 0))
(setq confs (delq nil
(mapcar (lambda (conf-no)
(setq index (1+ index))
(lyskom-message
(lyskom-format 'getting-all-confs-progress index count))
(when (or (lyskom-try-get-membership conf-no t)
(lyskom-is-member conf-no lyskom-pers-no))
conf-no))
xlist)))
(lyskom-message (lyskom-get-string 'getting-all-confs-done)))
(while confs
(let* ((conf (car confs))
(conf-stat (blocking-do 'get-conf-stat conf))
(conf-type (conf-stat->conf-type conf-stat)))
(setq lyskom-last-viewed (point-max))
(lyskom-format-insert 'unsubscribe-to-2
conf-stat
(lyskom-conf-type-marker conf-stat))
(when (cond
;; Won't auto-unsub letterbox
((= (conf-stat->conf-no conf-stat) lyskom-pers-no)
(lyskom-insert (lyskom-get-string
'unsub-all-skipping-letterbox))
nil)
;; Won't unsub if we are supervisor
((lyskom-i-am-supervisor conf-stat t)
(lyskom-insert-string 'unsub-all-skipping-supervised)
nil)
;; Check secret conferences
((conf-type->secret conf-type)
(if auto-secret
t
(let ((ans (lyskom-a-or-b-or-c-p (lyskom-format 'unsub-secret-conf-q conf-stat)
'(abc-yes abc-no unsub-all-secret)
'abc-no)))
(cond ((eq ans 'abc-no)
(lyskom-insert-string 'cancelled) nil)
((eq ans 'abc-yes) t)
((eq ans 'unsub-all-secret)
(setq auto-secret t)
t)))))
;; Skip closed only if doit is
((conf-type->rd_prot conf-type)
(if auto-closed
t
(let ((ans (lyskom-a-or-b-or-c-p (lyskom-format 'unsub-closed-conf-q conf-stat)
'(abc-yes abc-no unsub-all-closed)
'abc-no)))
(cond ((eq ans 'abc-no)
(lyskom-insert-string 'cancelled) nil)
((eq ans 'abc-yes) t)
((eq ans 'unsub-all-closed)
(setq auto-closed t)
t)))))
;; Regular conference
(t
(if auto-regular
t
(let ((ans (lyskom-a-or-b-or-c-p (lyskom-format 'unsub-open-conf-q conf-stat)
'(abc-yes abc-no unsub-all-open)
'abc-no)))
(cond ((eq ans 'abc-no)
(lyskom-insert-string 'cancelled) nil)
((eq ans 'abc-yes) t)
((eq ans 'unsub-all-open)
(setq auto-regular t)
t))))))
;; How's that for a really long condition? Lots of
;; cool side effects and user interactions. Don't
;; you just love functional programming?
;; Now we've either printed a message or we've
;; decided to unsubscribe.
(lyskom-sub-member (blocking-do 'get-conf-stat lyskom-pers-no)
conf-stat
t)
))
(sit-for 0)
(setq confs (cdr confs)))
))
(def-kom-command kom-limit-import (conf-stat)
"Specify restrictions on importing e-mail. Note that such restrictions
are advisory; clients may ignore them."
(interactive (list (lyskom-read-conf-stat 'limit-import-to-conf
'(conf pers) nil nil t)))
(when conf-stat
(let* ((what (lyskom-a-or-b-or-c-p 'limit-import-of-what
'(abc-regexp abc-spam abc-html abc-everything)
'abc-spam))
(data (cond ((eq what 'abc-spam) "spam")
((eq what 'abc-html) "html")
((eq what 'abc-everything) "all"))))
(when (or (lyskom-is-supervisor (conf-stat->conf-no conf-stat)
lyskom-pers-no)
(lyskom-j-or-n-p 'limit-import-not-super))
(cond
((and data (memq what '(abc-spam abc-html abc-everything)))
(lyskom-format-insert 'limiting-import
(substring (lyskom-get-string what) 1)
conf-stat)
(lyskom-report-command-answer
(blocking-do 'modify-conf-info
(conf-stat->conf-no conf-stat)
nil
(list
(lyskom-create-aux-item
0 35 nil nil
(lyskom-create-aux-item-flags nil nil nil nil
nil nil nil nil)
0 data))))
(cache-del-conf-stat (conf-stat->conf-no conf-stat)))
((eq what 'abc-regexp)
(let ((regexp (lyskom-read-string
(lyskom-get-string 'limit-import-regexp-q)
nil nil)))
(lyskom-format-insert 'limiting-import-regexp
regexp
conf-stat)
(lyskom-report-command-answer
(blocking-do 'modify-conf-info
(conf-stat->conf-no conf-stat)
nil
(list
(lyskom-create-aux-item
0 10105 nil nil
(lyskom-create-aux-item-flags nil nil nil nil
nil nil nil nil)
0 regexp))))
(cache-del-conf-stat (conf-stat->conf-no conf-stat)))))))))
(def-kom-command kom-change-message-flag (uconf-stat)
"Specify whether to receive group messages to a particular conference."
(interactive (list (lyskom-read-uconf-stat 'set-message-flag-for-conf
'(membership) nil
lyskom-current-conf t)))
(when uconf-stat
(let* ((mship (lyskom-get-membership (uconf-stat->conf-no uconf-stat) t)))
(if (null mship)
(lyskom-format-insert 'not-member-of-conf uconf-stat)
(set-membership-type->message-flag
(membership->type mship)
(lyskom-j-or-n-p (lyskom-format 'set-message-flag-to-what
uconf-stat)))
(lyskom-format-insert 'setting-message-flag
(membership-type->message-flag
(membership->type mship))
uconf-stat)
(lyskom-report-command-answer
(blocking-do 'set-membership-type
lyskom-pers-no
(uconf-stat->conf-no uconf-stat)
(membership->type mship)))
(lp--update-buffer (uconf-stat->conf-no uconf-stat))))))
(def-kom-command kom-list-new-conferences (arg)
"List conferences created since the last time this command
was given. With prefix argument, prompt for a date to start at."
(interactive "P")
(lyskom-list-new-conferences 'lyskom-last-known-conf-no
'conferences
(lambda (el)
(not (conf-type->letterbox
(conf-stat->conf-type el))))
arg))
(def-kom-command kom-list-new-persons (arg)
"List persons created since the last time this command
was given. With prefix argument, prompt for a date to start at."
(interactive "P")
(lyskom-list-new-conferences 'lyskom-last-known-pers-no
'persons
(lambda (el)
(conf-type->letterbox
(conf-stat->conf-type el)))
arg))
(defun lyskom-list-new-conferences (varsym obj filter &optional list-from-date)
"List conferences created since a particular point in history.
VARSYM is the name of a variable that should be bound to a cons of the
last conference number displayed and the date when it was displayed
\(lyskom-time structure).
OBJ is the type of object. It should be a symbol that can be passed
to lyskom-get-string to get a text representation of the object type.
FILTER is a function called on each conference. It should return
non-nil for conferences that should be displayed.
If optional LIST-FROM-DATE is non-nil, prompt for a date and list
all conferences from that date forward."
(interactive)
(let* ((last-conf-no (blocking-do 'first-unused-conf-no))
(var (or (and (null list-from-date)
(symbol-value varsym))
(let* ((n (lyskom-read-date
(lyskom-format 'list-confs-from-date
(lyskom-get-string obj))
t))
(date (and n (lyskom-create-time 0 0 0 (elt n 2)
(elt n 1) (elt n 0)
0 0 nil)))
(conf (and n (lyskom-find-conf-by-date date))))
(cond
;; No date -- we want it all!
((null n) (cons 1 nil))
;; Date but no conf -- no confs to list!
((null conf) (cons last-conf-no date))
;; Date and conf -- list from this conf
(t (cons (conf-stat->conf-no conf) date))))))
(conf-no (car var))
(time-string (condition-case nil
(and (cdr var) (lyskom-format-time
'date-and-time (cdr var)))
(error nil))))
(if (null last-conf-no)
(lyskom-format-insert 'no-support-in-server))
;; There's a serious bug here: we can't cancel!
;; That *has* to be fixed.
(let ((count (cons 0 (make-marker)))
(calls nil))
(condition-case nil
(progn
(while (< conf-no last-conf-no)
(setq calls
(cons
(initiate-get-conf-stat
'main
(lambda (conf filter count time-string)
(when (and conf (funcall filter conf))
(when (eq (car count) 0)
(lyskom-format-insert 'new-conferences-since
time-string (lyskom-get-string obj)))
(rplaca count (1+ (car count)))
(lyskom-format-insert "%5#1m %#2c %#1M\n"
conf
(lyskom-list-conf-membership-char
(conf-stat->conf-no conf)))
(set-marker (cdr count) (point))))
conf-no filter count time-string)
calls))
(setq conf-no (1+ conf-no)))
(lyskom-wait-queue 'main))
(quit
(lyskom-message (lyskom-get-string 'canceling-command))
(lyskom-cancel-calls calls)
(signal 'quit nil)))
(when (marker-position (cdr count))
(goto-char (cdr count))
(set-marker (cdr count) nil))
(cond ((eq 0 (car count))
(lyskom-format-insert 'no-new-conferences
time-string (lyskom-get-string obj)))
(t
(when (or kom-auto-confirm-new-conferences
(lyskom-j-or-n-p (lyskom-format 'mark-confs-as-known
(lyskom-get-string obj)
(car count))))
(set varsym (cons conf-no (lyskom-current-client-time)))
(lyskom-save-options lyskom-buffer
nil
nil
nil)))))))
(def-kom-command kom-change-privileges (&optional set-all)
"Change privileges for a user.
Using this command you can change all privileges for a user."
(interactive "P")
(let* ((uconf-stat (lyskom-read-uconf-stat 'what-pers-privs-to-change
'(pers) nil "" t))
(pers-stat (blocking-do 'get-pers-stat
(uconf-stat->conf-no uconf-stat)))
(privs (pers-stat->privileges pers-stat)))
(lyskom-format-insert
'change-pers-privs-prompt
uconf-stat
(lyskom-privilege-string privs nil "\n "))
(let* ((wheel (lyskom-j-or-n-p (lyskom-get-string 'set-wheel-priv-q)))
(admin (lyskom-j-or-n-p (lyskom-get-string 'set-admin-priv-q)))
(statistic (lyskom-j-or-n-p (lyskom-get-string 'set-statistic-priv-q)))
(create-pers (lyskom-j-or-n-p (lyskom-get-string 'set-create-pers-priv-q)))
(create-conf (lyskom-j-or-n-p (lyskom-get-string 'set-create-conf-priv-q)))
(change-name (lyskom-j-or-n-p (lyskom-get-string 'set-change-name-priv-q)))
(flg7 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg7-priv-q)) (privs->flg7 privs)))
(flg8 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg8-priv-q)) (privs->flg8 privs)))
(flg9 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg9-priv-q)) (privs->flg9 privs)))
(flg10 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg10-priv-q)) (privs->flg10 privs)))
(flg11 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg11-priv-q)) (privs->flg11 privs)))
(flg12 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg12-priv-q)) (privs->flg12 privs)))
(flg13 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg13-priv-q)) (privs->flg13 privs)))
(flg14 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg14-priv-q)) (privs->flg14 privs)))
(flg15 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg15-priv-q)) (privs->flg15 privs)))
(flg16 (if set-all (lyskom-j-or-n-p (lyskom-get-string 'set-flg16-priv-q)) (privs->flg16 privs)))
(new-privs (lyskom-create-privs wheel admin statistic create-pers
create-conf change-name flg7 flg8
flg9 flg10 flg11 flg12
flg13 flg14 flg15 flg16)))
(if (not (blocking-do
'set-priv-bits
(pers-stat->pers-no pers-stat)
new-privs))
(progn (lyskom-insert-string 'nope)
(lyskom-insert-error))
(when (setq pers-stat
(cache-get-pers-stat (pers-stat->pers-no pers-stat)))
(set-pers-stat->privileges pers-stat new-privs))
(lyskom-insert-string 'done)))))
;;; ================================================================
;;; Temporary function for when we moved kom-extended-command from a
;;; to x.
(defun kom-obsolete-extended-command-binding ()
"Temporary function for when we moved kom-extended-command from a"
(interactive)
(lyskom-format-insert-before-prompt "\
%#1@----------------------------------------------------------------
Tangenten fr inmatning av kommandon har flyttat frn a till x.
Anvnd x istllet fr a om du vill ange LysKOM-kommandon vid
namn. Fr att undvika att du kr onskade LysKOM-kommandon s
ignoreras all inmatning tills du trycker enter nsta gng.
Tryck p enter fr att fortstta.
----------------------------------------------------------------
"
`(face ,kom-warning-face))
;; Beep both visibly and audibly, if possible. We *want* to be annoying.
(let ((visible-bell t))
(ding))
(let ((visible-bell nil))
(ding))
(read-from-minibuffer
(lyskom-format "%#1@Tryck return eller enter fr att g vidare: "
`(face ,kom-warning-face))))
(defun kom-obsolete-who-is-on-in-conference ()
"Temporary function for when we moved kom-who-is-on-in-conference from l v to
v m"
(interactive)
(lyskom-insert-before-prompt "Kommandot \"Vilka (r inloggade i) mte\" r flyttat till v m\n"))
(defun kom-apropos (re do-all)
"List LysKOM-related symbols whose name or documentation matches a regexp.
With prefix argument, also list symbols that are not part of the semi-stable
interface (i.e. symbols whose name starts with \"lyskom\").
This command is intended primarily for developers and advanced users."
(interactive "sLysKOM-apropos (regexp): \nP")
(message "Searching for %s..." re)
(let ((result nil)
(case-fold-search t))
(mapatoms
(lambda (atom)
(when (and (or (boundp atom) (fboundp atom))
(or (and do-all (string-match "^lyskom-" (symbol-name atom)))
(string-match "^kom-" (symbol-name atom)))
(or (string-match re (symbol-name atom))
(and (fboundp atom)
(string-match re (or (documentation atom) "")))
(and (boundp atom)
(string-match re (or
(documentation-property
atom 'variable-documentation)
"")))))
(setq result (cons atom result)))))
(setq result
(sort result (lambda (a b)
(string-lessp (symbol-name a)
(symbol-name b)))))
(message "Searching for %s...formatting..." re)
(if result
(let ((buffer (get-buffer-create "*LysKOM-Apropos*")))
(save-selected-window
(let ((inhibit-read-only t))
(set-buffer buffer)
(help-mode)
(lyskom-view-mode)
(erase-buffer)
(insert "\
In this buffer, go to the name of the symbol and type * to
get full documentation.
")
(lyskom-traverse el result
(lyskom-apropos-insert el))
(lyskom-read-only-mode 1))
(message "Searching for %s...formatting...done" re)
(goto-char (point-min))
(display-buffer buffer)))
(message "Nothing found that matches \"%s\"" re))))
(defun lyskom-apropos-insert (sym)
(let ((start (point)))
(insert (symbol-name sym))
(add-text-properties start (point)
`(face bold
mouse-face highlight
lyskom-button t
lyskom-button-text ,(symbol-name sym)
lyskom-button-type func
lyskom-buffer ,(current-buffer)
lyskom-button-arg (lyskom-apropos-item ,sym)))
(insert "\n")
(lyskom-apropos-insert-docstring 'func
sym
(when (fboundp sym)
(documentation sym)))
(lyskom-apropos-insert-docstring 'var
sym
(when (boundp sym)
(documentation-property
sym 'variable-documentation)))
(insert "\n")))
(defun lyskom-apropos-insert-docstring (type sym doc)
(when doc
(insert " ")
(let ((start (point)))
(cond ((eq type 'func) (insert "Func: "))
((eq type 'var) (insert "Var: ")))
(when (not (eq start (point)))
(add-text-properties start (point)
`(face italic
mouse-face highlight
lyskom-button t
lyskom-button-text ""
lyskom-button-type func
lyskom-buffer ,(current-buffer)
lyskom-button-arg (lyskom-apropos-item
(,sym ,type)))))
(insert
(lyskom-truncate-string-to-width
(if (string-match "\\(\r\\|\n\\)" doc)
(substring doc 0 (string-match "\\(\r\\|\n\\)" doc))
doc)
(- (window-width) 12)))
(insert "\n"))))
(defun lyskom-apropos-item (args)
(let ((sym (elt args 0))
(type (elt args 1)))
(cond ((eq type 'func) (describe-function sym))
((eq type 'var) (describe-variable sym))
(t (cond ((fboundp sym)
(describe-function sym))
((boundp sym)
(describe-variable sym)))))))
|