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
|
;;;;; -*-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: lyskom-buttons.el
;;;; Author: David Byers
;;;;
;;;;
(lyskom-external-function glyph-property)
(lyskom-external-function widget-at)
(lyskom-external-function widget-get)
(lyskom-external-function w3-widget-button-click)
(lyskom-external-function w3-popup-menu)
(lyskom-external-function Info-goto-node)
(lyskom-external-function term-char-mode)
(lyskom-external-function w3m)
(defun lyskom-add-button-action (type text func)
"Add a new action to the popup menu for a class of objects.
Arguments are TYPE, the type of object to adjust, TEXT the menu text
for the action and FUNC, the function to call when the action is
selected. By default TYPE may be any one of text, conf, pers or url
although users can add other types.
FUNC must be a function with three arguments, BUFFER, ARGUMENT and
TEXT. BUFFER is the LysKOM buffer that the command should use, TEXT
is the text of the selected button and ARGUMENT is the data argument
associated with the object. For button type text it is a text
number. For types conf and pers it is the conference number for the
object. For URLs it is the text of the URL (a string) or NIL. For
other (user-defined) types, it is a string.
For more information on button types and arguments, see the
documentation for the variable lyskom-text-buttons."
(nconc (nth 3 (assq type lyskom-button-actions))
(list (cons text func))))
(defun kom-previous-link (num)
"Move the cursor to the previous active area in the LysKOM buffer."
(interactive "p")
(lyskom-prev-area num 'lyskom-button))
(defun kom-next-link (num)
"Move the cursor to the next active area in the LysKOM buffer."
(interactive "p")
(lyskom-next-area num 'lyskom-button))
(defun kom-button-press-or-self-insert-command ()
"Simulate a mouse button press at point, if there is a button."
(interactive)
(if (get-text-property (point) 'lyskom-button)
(call-interactively 'kom-button-press)
(call-interactively 'self-insert-command)))
(defun kom-button-press ()
"Simulate a mouse button press at point."
(interactive)
(let* ((type (get-text-property (point) 'lyskom-button-type))
(data (assq type lyskom-button-actions))
(hint (get-text-property (point) 'lyskom-button-hint))
(act (or (and kom-use-button-hints hint)
(and data (elt data 2)))))
(cond ((null data) (lyskom-button-press (point)))
((null act) (lyskom-button-menu (point) 'key))
(t (lyskom-button-press (point))))))
(defun kom-menu-button-press-or-self-insert-command ()
"Simulate a menu mouse button press at point, if there is a button."
(interactive)
(if (get-text-property (point) 'lyskom-button)
(call-interactively 'kom-menu-button-press)
(call-interactively 'self-insert-command)))
(defun kom-menu-button-press ()
"Simulate a menu mouse button press at point."
(interactive)
(lyskom-button-menu (point) 'key))
(defun kom-button-click (event &optional do-default)
"Execute the default action of the active area under the mouse.
If optional argument do-default is non-nil, call the default binding of
this-command-keys."
(interactive "@e")
(let* ((pos (lyskom-event-point event))
(glyph (lyskom-event-glyph event))
(widget (and pos
(or (and glyph (glyph-property glyph 'widget))
(widget-at pos))))
(parent (and widget (widget-get widget ':parent)))
(href (or (and widget (widget-get widget ':href))
(and parent (widget-get parent ':href))
(and widget (widget-get widget 'href))
(and parent (widget-get parent 'href))))
(w3m-url (and pos (get-text-property pos 'w3m-href-anchor)))
(type (and pos (get-text-property pos 'lyskom-button-type)))
(data (and type (assq type lyskom-button-actions)))
(hint (and pos (get-text-property pos 'lyskom-button-hint)))
(act (or (and kom-use-button-hints hint)
(and data (elt data 2)))))
(cond (href (require 'w3)
(w3-widget-button-click event))
(w3m-url (require 'w3m)
(w3m w3m-url))
((and do-default
(or (null pos)
(null (get-text-property pos 'lyskom-button-type))))
(let ((fn (lookup-key global-map (this-command-keys))))
(when (commandp fn)
(call-interactively fn))))
((null act) (kom-popup-menu event))
(t (lyskom-button-press pos)))))
(defun kom-button-click-or-yank (event)
"Execute the default action of the active area under the mouse.
If there is no active area, then do something else."
(interactive "@e")
(kom-button-click event t))
(defun kom-popup-menu (event)
"Pop up a menu of actions to be taken at the active area under the mouse."
(interactive "@e")
(let* ((pos (lyskom-event-point event))
(glyph (lyskom-event-glyph event))
(widget (and pos
(or (and glyph (glyph-property glyph 'widget))
(widget-at pos))))
(parent (and widget (widget-get widget ':parent)))
(href (or (and widget (widget-get widget ':href))
(and parent (widget-get parent ':href))
(and widget (widget-get widget 'href))
(and parent (widget-get parent 'href)))))
(cond (href (require 'w3)
(w3-popup-menu event))
((and pos (get-text-property pos 'lyskom-button-type))
(lyskom-button-menu pos event))
(t (lyskom-background-menu pos event)))))
(defun kom-mouse-null (event)
"Do nothing."
(interactive "@e")
;; This is here to pervent unwanted events when clicking mouse-3
(identity 1))
(defun lyskom-make-button-menu (title entries buf arg text filter)
"Create a menu keymap from a list of button actions."
;; Use the command as the event for simplicity. Note that the menu
;; function alters the menu, so we copy the entries to prevent it
;; from fiddling with lyskom-button-actions.
(let* ((lyskom-language lyskom-global-language)
(title (lyskom-menu-encode title 'item)))
(when (> (length title) 44) (setq title (concat (substring title 0 40)
" ...")))
(cond ((string-match "XEmacs" (emacs-version))
(cons title
(delq nil
(mapcar (lambda (entry)
(and (funcall filter (cdr entry) arg)
(vector (lyskom-menu-encode
(lyskom-get-string (car entry))
'item)
(list (cdr entry)
buf
(if (listp arg)
(list 'quote arg)
arg)
text)
':active t)))
entries))))
(t (list title
(cons title
(delq nil
(mapcar (lambda (entry)
(when (funcall filter (cdr entry) arg)
(cons
(lyskom-menu-encode (lyskom-get-string (car entry))
'item)
`(,(cdr entry) ,buf ,arg ,text))))
entries))))))))
(defun lyskom-button-menu (pos event)
"Internal function used by kom-popup-menu"
(let* ((type (get-text-property pos 'lyskom-button-type))
(arg (get-text-property pos 'lyskom-button-arg))
(text (get-text-property pos 'lyskom-button-text))
(buf (get-text-property pos 'lyskom-buffer))
(data (assq type lyskom-button-actions))
(title (cond
((get-text-property pos 'lyskom-button-menu-title)
(apply 'lyskom-format
(get-text-property pos 'lyskom-button-menu-title)))
((elt data 1)
(lyskom-format (lyskom-get-string (elt data 1)) text))
(t (lyskom-format (lyskom-get-string 'generic-popup-title) text))))
(actl (or (and data (elt data 3)) nil))
(filter (or (and data (elt data 5)) (lambda (&rest args) t))))
(cond ((null data) (goto-char pos))
((null actl) (goto-char pos))
((null buf) (goto-char pos))
((null (get-buffer buf))
(lyskom-message "%s" (lyskom-get-string 'no-such-buffer)))
(t
(if (symbolp title) (setq title (lyskom-get-string title)))
(set-buffer buf)
;; There is a simple bug in x-popup-menu which causes menus
;; from simple keymaps to be title-less. A list consisting
;; of a single keymap works better. A patch is submittet to
;; the GNU folks. /davidk
(if (eq event 'key)
(lyskom-keyboard-menu title actl buf arg text filter)
(let* ((menu (lyskom-make-button-menu title actl
buf arg text filter)))
(lyskom-do-popup-menu menu event)))))))
(defun lyskom-keyboard-menu (title entries buf arg text filter)
"Do a keyboard menu selection."
(let* ((prompt nil)
(maxlen 0)
(entries
(delq nil
(mapcar (lambda (el)
(and (funcall filter (cdr el) arg)
(cons (if (stringp (car el))
(car el)
(lyskom-get-string (car el)))
(cdr el))))
entries)))
(title (if (stringp title) title (lyskom-get-string title)))
(completion-ignore-case t))
(lyskom-traverse e entries
(if (> (lyskom-string-width (car e)) maxlen)
(setq maxlen (lyskom-string-width (car e)))))
(setq prompt (substring title 0
(min (lyskom-string-width title)
(- (window-width (minibuffer-window))
maxlen 3))))
(let ((choice (lyskom-read-from-menu prompt
(lyskom-maybe-frob-completion-table
entries t))))
(when choice
(funcall (cdr choice)
buf arg text)))))
(defun lyskom-button-press (pos)
"Execute the default action of the active area at POS if any."
(when pos
(let* ((type (get-text-property pos 'lyskom-button-type))
(arg (get-text-property pos 'lyskom-button-arg))
(text (get-text-property pos 'lyskom-button-text))
(buf (get-text-property pos 'lyskom-buffer))
(hint (get-text-property pos 'lyskom-button-hint))
(data (assq type lyskom-button-actions))
(act (or (and kom-use-button-hints hint)
(and data (elt data 2)))))
(cond ((null act) (goto-char pos))
((null buf) (goto-char pos))
((and buf (null (get-buffer buf)))
(lyskom-message "%s" (lyskom-get-string 'no-such-buffer)))
(t (and buf (set-buffer buf))
(funcall act
buf
arg
text))))))
(defun lyskom-fix-pseudo-url (url)
(save-match-data
(when (string-match "^google:/*" url)
(setq url (concat "http://www.google.com/search?q="
(substring url (match-end 0)))))
(if (not (string-match lyskom-url-protocol-regexp url))
(cond ((string-match "^www\\." url)
(concat "http://" url))
((string-match "^ftp\\." url)
(concat "ftp://" url))
((string-match "^gopher\\." url)
(concat "gopher://" url))
((string-match "^wais\\." url)
(concat "wais://" url))
(t (concat "http://" url)))
url)))
(defun lyskom-button-add-links (text links)
"Add links to TEXT according to LINKS.
LINKS is a list of lyskom-text-link objects."
(lyskom-traverse spec links
(let ((case-fold-search (lyskom-text-link->ignore-case spec))
(start 0))
(while (string-match (lyskom-text-link->pattern spec) text start)
;; Need to do this here since replace-in-string fscks up match-data
(setq start (match-end 0))
(add-text-properties
(or (match-beginning (lyskom-text-link->highlight spec))
(match-beginning 0))
(or (match-end (lyskom-text-link->highlight spec))
(match-end 0))
(lyskom-generate-button 'url
nil
(replace-in-string
(match-string 0 text)
(lyskom-text-link->pattern spec)
(lyskom-text-link->replacement spec))
kom-url-face)
text)))))
(defun lyskom-button-get-arg (el text)
"Get the button argument for button type EL from TEXT according to
the current match-data."
(let ((no (or (elt el 3) 0)))
(substring text (match-beginning no) (match-end no))))
(defun lyskom-button-get-text (el text)
"Get the button text for button type EL from TEXT according to
the current match-data."
(let ((no (or (elt el 2) 0)))
(substring text (match-beginning no) (match-end no))))
(defun lyskom-button-get-face (el)
"Get the button face for button type EL from TEXT according to
the current match-data."
(let ((face (elt el 4)))
(or (and (boundp face) (symbol-value face))
(and (facep face) face))))
(defsubst lyskom-button-get-pred (el)
"Return the match predicate for bitton type EL."
(elt el 5))
(defun lyskom-button-transform-text (text &optional text-stat)
"Add text properties to the string TEXT according to the definition of
lyskom-text-buttons. Returns the modified string."
(let ((blist lyskom-text-buttons)
(rcpts (reverse (and text-stat (lyskom-text-recipients text-stat))))
(start 0)
(el nil))
;; Do other text buttons
(while blist
(setq el (car blist))
(setq start 0)
(while (string-match (elt el 0) text start)
(if (or (null (lyskom-button-get-pred el))
(funcall (lyskom-button-get-pred el)
(lyskom-button-get-text el text)))
(progn
(add-text-properties
(match-beginning (or (elt el 2) 0))
(match-end (or (elt el 2) 0))
(cond ((and (eq (elt el 1) 'text)
(not lyskom-transforming-external-text))
(lyskom-generate-button 'text
(lyskom-button-get-arg el text)
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
((eq (elt el 1) 'conf)
(lyskom-generate-button 'conf
(lyskom-button-get-arg el text)
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
((eq (elt el 1) 'pers)
(lyskom-generate-button 'pers
(lyskom-button-get-arg el text)
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
((eq (elt el 1) 'url)
(lyskom-generate-button 'url
nil
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
((eq (elt el 1) 'pseudo-url)
(let ((url (lyskom-fix-pseudo-url
(lyskom-button-get-text el text))))
(lyskom-generate-button 'url
nil
url
(lyskom-button-get-face el))))
((eq (elt el 1) 'info-node)
(lyskom-generate-button 'info-node
(lyskom-button-get-arg el text)
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
((eq (elt el 1) 'email)
(lyskom-generate-button 'email
nil
(lyskom-button-get-text el text)
(lyskom-button-get-face el)))
(t nil))
text)
(setq start (match-end 0)))
(setq start (1+ (match-beginning 0)))))
(setq blist (cdr blist)))
;; Do links from kom-text-links last -- they have precedence
;; Do the first recipient last so links for that rcpt have prio
(lyskom-traverse rcpt rcpts
(lyskom-button-add-links text (cdr (assq rcpt kom-text-links))))
;; Do global links from kom-text-links very last
(lyskom-button-add-links text (cdr (assq t kom-text-links)))
)
text)
(defun lyskom-get-button-hint (hints)
"Get the hint to be used right now (if any) from HINTS"
(let ((result nil)
(hint nil))
(while (and hints (null result))
(setq hint (car hints))
(setq hints (cdr hints))
(cond ((null (car hint))
(if (and (eq lyskom-current-function
(elt hint 1))
(or (null (elt hint 2))
(eq lyskom-current-function-phase
(elt hint 2))))
(setq result (elt hint 3))))
((listp (car hint))
(if (and lyskom-executing-command
(memq lyskom-current-command (car hint)))
(setq result (cdr hint))))
((symbolp (car hint))
(if (and lyskom-executing-command
lyskom-current-command
(eq lyskom-current-command (car hint)))
(setq result (cdr hint))))))
result))
(defun lyskom-generate-button (type arg &optional text face menu-title
subtle)
"Generate the properties for a button of type TYPE with argument
ARG. Optional argument TEXT is the button text to be saved as a
property and FACE is the default text face for the button. Optional
argument MENU-TITLE defines the title for the popup menu. See
lyskom-default-button for more information. Optional argument SUBTLE
means don't set the lyskom-button property if non-nil. that means
kom-next- and -previous-link won't notice the button"
(setq lyskom-dummy-variable-to-fool-the-byte-compiler
(car menu-title)) ; produce error if menu-title not cons
(let* ((numarg (cond ((numberp arg) arg)
((stringp arg) (string-to-number arg))
((lyskom-conf-stat-p arg) (conf-stat->conf-no arg))
((lyskom-uconf-stat-p arg) (uconf-stat->conf-no arg))
((lyskom-pers-stat-p arg) (pers-stat->pers-no arg))
(t nil)))
(data (assq type lyskom-button-actions))
(hints (and data (elt data 4)))
(the-hint (lyskom-get-button-hint hints))
(props
(cond ((and (memq type '(conf pers)) numarg)
(list 'face
(or face
(or
(let ((val (lyskom-indirect-assq
numarg kom-highlight-conferences)))
(when val
(cond ((facep val) val)
((and (symbolp val) (boundp val))
(symbol-value val)))))
kom-active-face))
'mouse-face kom-highlight-face
'lyskom-button-text text
'lyskom-button-type type
'lyskom-button-arg numarg
'lyskom-button-menu-title menu-title
'lyskom-buffer lyskom-buffer))
((and (eq type 'text) numarg)
(list 'face (or face kom-text-no-face)
'mouse-face kom-highlight-face
'lyskom-button-text text
'lyskom-button-type type
'lyskom-button-arg numarg
'lyskom-button-menu-title menu-title
'lyskom-buffer lyskom-buffer))
((eq type 'url)
(list 'face (or face kom-active-face)
'mouse-face kom-highlight-face
'lyskom-button-text text
'lyskom-button-type type
'lyskom-button-arg arg
'lyskom-button-menu-title menu-title
'lyskom-buffer lyskom-buffer))
(t
(list 'face (or face kom-active-face)
'mouse-face kom-highlight-face
'lyskom-button-text text
'lyskom-button-type type
'lyskom-button-arg arg
'lyskom-button-menu-title menu-title
'lyskom-buffer lyskom-buffer)))))
(append (list 'rear-nonsticky t)
(if (not subtle) (list 'lyskom-button t))
(if the-hint
(cons 'lyskom-button-hint
(cons the-hint props))
props))))
(defun lyskom-default-button (type arg &optional menu-title)
"Generate a button of type TYPE from data in ARG. ARG can be almost any
type of data and is converted to the proper argument type for buttons of
type TYPE before being sent to lyskom-generate-button. Optional argument
MENU-TITLE is a list consisting of a format string or symbol and arguments
for the format string. The arguments are not when the menu is popped
up."
(and kom-text-properties
(let (xarg text face subtle)
(cond ((eq type 'conf)
(cond ((lyskom-conf-stat-p arg)
(if (conf-type->letterbox (conf-stat->conf-type arg))
(setq type 'pers))
(setq xarg arg
text (conf-stat->name arg)))
((lyskom-uconf-stat-p arg)
(if (conf-type->letterbox (uconf-stat->conf-type arg))
(setq type 'pers))
(setq xarg (uconf-stat->conf-no arg)
text (uconf-stat->name arg)))
((lyskom-conf-z-info-p arg)
(if (conf-type->letterbox (conf-z-info->conf-type arg))
(setq type 'pers))
(setq xarg (conf-z-info->conf-no arg)
text (conf-z-info->name arg)))
((numberp arg)
(if (setq xarg (cache-get-uconf-stat arg))
(progn
(if (conf-type->letterbox
(uconf-stat->conf-type xarg))
(setq type 'pers))
(setq text (uconf-stat->name xarg))
(setq xarg arg))
(setq text "" xarg arg)))
(t (setq text "" xarg 0))))
((eq type 'pers)
(cond ((lyskom-conf-stat-p arg)
(setq xarg arg
text (conf-stat->name arg)))
((lyskom-uconf-stat-p arg)
(setq xarg arg
text (uconf-stat->name arg)))
((lyskom-conf-z-info-p arg)
(setq xarg arg
text (conf-z-info->name arg)))
((lyskom-pers-stat-p arg)
(setq xarg (pers-stat->pers-no arg)
text (or (conf-stat->name
(cache-get-conf-stat
(pers-stat->pers-no arg)))
"")))
((numberp arg)
(if (setq xarg (cache-get-uconf-stat arg))
(progn
(if (conf-type->letterbox
(uconf-stat->conf-type xarg))
(setq type 'pers))
(setq text (uconf-stat->name xarg))
(setq xarg arg))
(setq text "" xarg arg)))
(t (setq text "" xarg 0))))
((eq type 'text)
(cond ((stringp arg) (setq xarg (string-to-number arg)
text arg))
((numberp arg) (setq xarg arg
text (number-to-string arg)))
((lyskom-text-stat-p arg)
(setq xarg (text-stat->text-no arg)
text (number-to-string (text-stat->text-no arg))))
(t (setq xarg 0 text ""))))
((eq type 'url)
(setq face kom-url-face)
(cond ((stringp arg) (setq xarg nil text arg))
(t (setq xarg nil text ""))))
((eq type 'email)
(setq face kom-url-face)
(cond ((stringp arg) (setq xarg nil text arg))
(t (setq xarg nil text ""))))
((eq type 'timestamp)
(setq face 'default
subtle t)
(cond ((null arg) (setq xarg (lyskom-current-client-time)
;text (format-time-string "%Y-%m-%d %H:%M")
))
(t (setq xarg arg
;text (format-time-string "%Y-%m-%d %H:%M" arg)
))))
(t (setq xarg arg
text "")))
(lyskom-generate-button type xarg text face menu-title subtle))))
;;;========================================
;;; Button actions
;;;
(defun lyskom-button-view-text (buf arg text)
"In the LysKOM buffer BUF, view the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-view arg))))
(defun lyskom-button-unread-text (buf arg text)
"In the LysKOM buffer BUF, unread the text ARG.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-mark-unread arg))))
(defun lyskom-button-copy-text-no (but arg text)
"In the LysKOM buffer BUF, ignore ARG and copy TEXT to the kill ring.
This is a LysKOM button action."
(kill-new text))
(defun lyskom-button-review-noconversion (buf arg text)
"In the LysKOM buffer BUF, view the text ARG without conversion.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-review-noconversion arg))))
(defun lyskom-button-review-converted (buf arg text)
"In the LysKOM buffer BUF, view the text ARG converted.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-review-converted arg))))
(defun lyskom-button-review-rot13 (buf arg text)
"In the LysKOM buffer BUF, view the text ARG rot13:ed.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-review-rot13 arg))))
(defun lyskom-button-find-root-review (buf arg text)
"In the LysKOM buffer BUF, view the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-find-root-review arg))))
(defun lyskom-button-find-root (buf arg text)
"In the LysKOM buffer BUF, view the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-find-root arg))))
(defun lyskom-button-comment-text (buf arg text)
"In the LysKOM buffer BUF, comment the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-write-comment arg))))
(defun lyskom-button-private-comment-text (buf arg text)
"In the LysKOM buffer BUF, write a private comment the text ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-private-answer arg))))
(defun lyskom-button-mark-text (buf arg text)
"In the LysKOM buffer BUF, mark the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (unwind-protect
(progn
(pop-to-buffer buf)
(lyskom-start-of-command 'kom-mark-text)
(lyskom-mark-text arg))
(lyskom-end-of-command)))))
(defun lyskom-button-unmark-text (buf arg text)
"In the LysKOM buffer BUF, unmark the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (unwind-protect
(progn
(pop-to-buffer buf)
(lyskom-start-of-command 'kom-unmark-text)
(lyskom-unmark-text arg))
(lyskom-end-of-command)))))
(defun lyskom-button-save-text (buf arg text)
"In the LysKOM buffer BUF, save the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (unwind-protect
(progn (pop-to-buffer buf)
(kom-save-text nil (list arg)))))))
(defun lyskom-button-save-text-body (buf arg text)
"In the LysKOM buffer BUF, save the text ARG. Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (unwind-protect
(progn (pop-to-buffer buf)
(kom-save-text-body arg))))))
(defun lyskom-button-review-comments (buf arg text)
"In the LysKOM buffer BUF, review comments to the the text ARG.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-review-comments arg))))
(defun lyskom-button-review-tree (buf arg text)
"In the LysKOM buffer BUF, recursively review comments to the the text ARG.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-review-tree arg))))
(defun lyskom-button-write-footnote (buf arg text)
"In the LysKOM buffer BUF, write a footnote to the the text ARG.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-write-footnote arg))))
(defun lyskom-button-fast-reply (buf arg text)
"In the LysKOM buffer BUF, make a remark to the the text ARG.
Last argument TEXT is ignored. This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-fast-reply arg))))
(defun lyskom-button-view-conf-presentation (buf arg text)
"In the LysKOM buffer BUF, view the presentation of ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-review-presentation arg))))
(defun lyskom-button-view-conf-status (buf arg text)
"In the LysKOM buffer BUF, view the status of conference ARG. Last argument
TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-status-conf arg))))
(defun lyskom-button-goto-conf (buf arg text)
"In the LysKOM buffer BUF, go to the conference ARG. Last argument TEXT is
ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-go-to-conf arg))))
(defun lyskom-button-add-self (buf arg text)
"In the LysKOM buffer buf, add self to conference ARG."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(let ((conf (blocking-do 'get-conf-stat arg)))
(if conf
(kom-add-self conf)
(lyskom-insert-before-prompt 'somebody-deleted-that-conf))))))
(defun lyskom-button-sub-self (buf arg text)
"In the LysKOM buffer buf, sub self from conference ARG."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-sub-self arg))))
(defun lyskom-button-view-pers-presentation (buf arg text)
"In the LysKOM buffer BUF, view the presentation of person ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(lyskom-button-view-conf-presentation buf arg text))
(defun lyskom-button-view-pers-status (buf arg text)
"In the LysKOM buffer BUF, view the status of person ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-status-person arg))))
(defun lyskom-button-befriend (buf arg text)
"In the LysKOM buffer BUF, befriend person ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-befriend arg))))
(defun lyskom-button-moronify (buf arg text)
"In the LysKOM buffer BUF, befriend person ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(goto-char (point-max))
(kom-moronify arg))))
(defun lyskom-button-mail (buf arg text)
"In the LysKOM buffer BUF, send mail to the conference ARG.
Last argument TEXT is ignored.
This is a LysKOM button action."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-send-letter arg))))
(defun lyskom-button-send-message (buf arg text)
"In the LysKOM buffer BUF, send a personal message to person ARG."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-send-message arg nil))))
(defun lyskom-button-view-session-status (buf arg text)
"In the LysKOM buffer BUF, show session status for person ARG."
(cond ((not (integerp arg)) nil)
(t (pop-to-buffer buf)
(kom-status-session (lyskom-session-from-conf arg)))))
(defun lyskom-button-copy-email (but arg text)
"In the LysKOM buffer BUF, ignore ARG and copy TEXT to the kill ring.
This is a LysKOM button action."
(kill-new text))
(lyskom-external-function compose-mail)
(defun lyskom-button-open-email (but arg text)
"In the LysKOM buffer BUF, ignore ARG and open TEXT as an e-mail address.
This is a LysKOM button action."
(if (fboundp 'compose-mail)
(compose-mail text)
(mail nil text)))
(defun lyskom-button-copy-url (but arg text)
"In the LysKOM buffer BUF, ignore ARG and copy TEXT to the kill ring.
This is a LysKOM button action."
(kill-new (replace-in-string text "\\s-+" "")))
(defun lyskom-transform-url (url)
(let ((rules kom-url-transformation-rules))
(while rules
(setq url (replace-in-string url (car (car rules)) (cdr (car rules)))
rules (cdr rules))))
url)
(defun lyskom-button-open-url (buf arg text)
"In the LysKOM buffer BUF, ignore ARG and open TEXT as an URL.
This is a LysKOM button action."
(let* ((url (lyskom-fix-pseudo-url (replace-in-string text "\\s-+" "")))
protocol
url-manager)
(setq url (lyskom-transform-url url))
(string-match lyskom-url-protocol-regexp url)
(setq protocol (match-string 1 url))
(setq url-manager (lyskom-get-url-manager protocol))
(if (null url-manager)
(lyskom-error "Can't find URL viewer"))
(funcall (elt url-manager 3) url url-manager)))
;;;
;;; Info node button
;;;
(defun lyskom-button-goto-info-node (buf arg text)
"In the LysKOM buffer BUF, open ARG as an Info node, and ignore TEXT.
This is a LysKOM button action."
(when (not (fboundp 'Info-goto-node))
(autoload 'Info-goto-node "info"
"Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME."
t))
(setq arg (replace-in-string arg "\n" " " t))
(setq arg (replace-in-string arg " +" " " t))
(Info-goto-node arg))
;;;
;;; Timestamp button
;;;
(defun lyskom-button-copy-timestamp (buf arg text)
"In the LysKOM buffer BUF, ignore TEXT and copy ARG to the kill ring
after formating it as time. This is a LysKOM button action."
(let ((kom-print-relative-dates nil))
(kill-new (lyskom-format-time 'date-and-time arg))))
;;;
;;; LysKOM URL Management
;;;
(defun lyskom-get-url-manager (protocol)
"Get the URL manager for PROTOCOL (a string). Returns a function."
(let ((managers kom-url-managers)
(preferences kom-url-viewer-preferences)
(result nil))
(while (and preferences (not result))
(setq managers kom-url-managers)
(while (and managers (not result))
(if (and (string-match (car (car managers))
(car preferences))
(string-match (car (cdr (car managers)))
protocol))
(setq result (car managers)))
(setq managers (cdr managers)))
(setq preferences (cdr preferences)))
result))
(defun lyskom-url-manager-starting (manager)
"Tell the user that the URL manager MANAGER is starting."
(lyskom-message "%s" (lyskom-format (lyskom-get-string 'starting-program)
(elt manager 2))))
(eval-when-compile (defvar browse-url-browser-function nil))
(defun lyskom-view-url-browse-url (url manager)
(require 'browse-url)
(funcall browse-url-browser-function url))
(lyskom-with-external-functions (w3-fetch)
(defun lyskom-view-url-w3 (url manager)
"View the URL using W3. Second argument MANAGER is ignored."
(w3-fetch url)))
(defun lyskom-view-url-dired (url manager)
"View the URL URL using dired. Second argument MANAGER is ignored."
(if (not (and (string-match
"\\(file\\|ftp\\)://\\([^/:]*\\)\\(:[0-9]*\\)?\\(/\\|$\\)"
url)
(match-beginning 0)
(match-beginning 1)
(match-beginning 2)))
(lyskom-error "Bad URL"))
(let ((host (substring url (match-beginning 2) (match-end 2)))
(path (substring url (match-end 0)))
(user "anonymous"))
(if (string-match ";type=.$" path)
(setq path (substring path 0 (match-beginning 0))))
(if (and (string-match "\\([^@]*\\)@" host)
(match-beginning 1))
(progn
(setq user (substring host (match-beginning 1) (match-end 1)))
(setq host (substring host (match-end 0)))))
(cond ((string= host "localhost") (find-file path))
(t (find-file (concat "/" user "@" host ":/" path))))
;; (message "%s %s %s" user host path)
))
(defun lyskom-view-url-telnet (url manager)
"View the URL URL using telnet. Second argument MANAGER is ignored."
(if (not (and (string-match
"telnet://\\([^@]*@\\)?\\([^/:]*\\)\\(:[0-9]*\\)?"
url)
(match-beginning 0)
(match-beginning 2)))
(lyskom-error "Bad URL"))
(let ((host (substring url (match-beginning 2) (match-end 2)))
(port (if (match-beginning 3)
(substring url (1+ (match-beginning 3)) (match-end 3))
""))
(user (if (match-beginning 1)
(substring url (match-beginning 1) (1- (match-end 1)))
nil))
;; (password nil)
)
(if (and user
(string-match "^\\([^:]*\\):\\(.*\\)" user))
(progn
;; (setq password (substring user
;; (match-beginning 2)
;; (match-end 2)))
(setq user (substring user
(match-beginning 1)
(match-end 1)))))
(telnet (concat host " " port))
;; (message "u:%s p:%s h:%s #:%s"
;; (or user "<u>")
;; (or password "<p>")
;; (or host "<h>")
;; (or port "<#>"))
))
(defun lyskom-view-url-mailmode (url manager)
"View the URL URL using mail in Emacs. The second argument MANAGER is ignored."
(if (not (and (string-match "mailto:\\([^@]+@.*\\)$" url)
(match-beginning 1)))
(lyskom-error "Bad URL"))
(mail nil (substring url (match-beginning 1) (match-end 1))))
(defun lyskom-view-url-windows (url manager)
"View the URL URL in Microsoft Windows. MANGER is the URL manager.
Fall back on Netscape if not running in Microsoft Windows.
In theory, opening an URL on Windows should be a matter of doing
\(w32-shell-execute \"open\" URL\), but this sometimes fails, so
we protect ourselves by also trying to start some common defaults
using start-process."
(cond
((memq window-system '(win32 mswindows w32))
(cond
((and (boundp 'kom-windows-browser-command)
(and (not (null kom-windows-browser-command))
(not (eq (length kom-windows-browser-command) 0))))
;; Explicit given file name of browser, so complain to user if
;; the value is bad.
(if (not (file-executable-p kom-windows-browser-command))
(error (concat "Not an executable file: %s;"
" kom-windows-browser-command has a bad value")
kom-windows-browser-command))
(condition-case nil
(progn
(lyskom-url-manager-starting manager)
(start-process "Browser"
nil
kom-windows-browser-command
url))
(error (error (concat "Failed starting browser using"
" kom-windows-browser-command"
" (%s)")
kom-windows-browser-command))))
((and (not (memq 'w32-shell-execute lyskom-compatibility-definitions))
(condition-case nil
(progn (w32-shell-execute "open" url) t)
(error nil)))
(lyskom-url-manager-starting manager))
;;(lyskom-message "Webb via [%s \"%s\" \"%s\"] ..."
;; "w32-shell-execute" "open" url))
(t (let ((programs
'("c:\\Program\\Internet Explorer\\iexplore.exe"
"c:\\Programs\\Internet Explorer\\iexplore.exe"
"c:\\Program Files\\Internet Explorer\\iexplore.exe"
"start"
"explorer"
"C:\\Program Files\\Netscape\\Communicator\\Program\\netscape.exe"
"C:\\Program Files\\Netscape\\Navigator\\Program\\netscape.exe"
)))
(while programs
(condition-case nil
(progn
(lyskom-url-manager-starting manager)
(start-process (car programs)
nil
(car programs)
url)
(setq programs nil))
(error (setq programs (cdr programs)))))))))
(t (lyskom-view-url-netscape url manager))))
(defun lyskom-view-url-netscape (url manager)
"View the URL URL using Netscape Navigator. The second argument
MANAGER is the URL manager that started Netscape.
This function attempts to load the URL in a running Netscape, but failing
that, starts a new one."
(setq url (replace-in-string url "," "%2C"))
(setq url (replace-in-string url "(" "%28"))
(setq url (replace-in-string url ")" "%29"))
(let* ((url-string (if (memq window-system '(win32 mswindows w32))
(list url)
(list "-remote"
(format
(cond ((eq kom-netscape-variant 'new-window)
"openUrl(%s, new-window)")
((eq kom-netscape-variant 'new-tab)
"openUrl(%s, new-tab)")
(t "openUrl(%s)"))
url))))
(proc (apply 'start-process "netscape"
nil
(if (listp kom-netscape-command)
(car kom-netscape-command)
kom-netscape-command)
(if (listp kom-netscape-command)
(append (cdr kom-netscape-command)
url-string)
url-string)))
(status 'run)
(exit nil))
(lyskom-url-manager-starting manager)
(while (eq status 'run)
(lyskom-accept-process-output)
(setq status (process-status proc)))
(setq exit (process-exit-status proc))
(cond ((and (eq status 'exit)
(eq exit 1))
(apply 'start-process "netscape"
nil
(if (listp kom-netscape-command)
(car kom-netscape-command)
kom-netscape-command)
(if (listp kom-netscape-command)
(append (cdr kom-netscape-command)
(list url))
(list url))))
(t nil))))
(defun lyskom-view-url-mosaic (url manager)
"View the URL URL using NCSA Mosaic. The attempts to open the URL in an
existing Mosaic process. Failing that, it starts a new Mosaic."
(let ((pid -1)
tempbuffer
(filename "/tmp/Mosaic."))
(if (file-exists-p (expand-file-name "~/.mosaicpid"))
(save-current-buffer
(set-buffer
(setq tempbuffer (get-buffer-create " *kom*-mosaicpid")))
(insert-file-contents (expand-file-name "~/.mosaicpid"))
(setq pid (read tempbuffer))
(delete-region (point-min) (point-max))
(insert "newwin\n")
(insert url)
(insert "\n")
(setq filename (concat filename (number-to-string pid)))
(write-region (point-min) (point-max) filename nil 'x)
(kill-buffer tempbuffer)
(if (= -1 (signal-process pid 30))
(apply 'start-process "mosaic"
(current-buffer)
(if (listp kom-mosaic-command)
(car kom-mosaic-command)
kom-mosaic-command )
(if (listp kom-mosaic-command)
(append (cdr kom-mosaic-command)
(list url))
(list url)))
(lyskom-url-manager-starting manager)))
(save-excursion
(apply 'start-process "mosaic"
(current-buffer)
(if (listp kom-mosaic-command)
(car kom-mosaic-command)
kom-mosaic-command )
(if (listp kom-mosaic-command)
(append (cdr kom-mosaic-command)
(list url))
(list url)))
(lyskom-url-manager-starting manager)))))
(defun lyskom-view-url-galeon (url manager)
"View the URL URL using Galeon. The second argument MANAGER is the URL
manager that started Galeon.
This function attempts to load the URL in a running Galeon, but failing
that, starts a new one."
(setq url (replace-in-string url "," "%2C"))
(setq url (replace-in-string url "(" "%28"))
(setq url (replace-in-string url ")" "%29"))
(let* ((url-string (if (memq window-system '(win32 mswindows w32))
(list url)
(list "-n"
(format "%s" url)))))
(lyskom-url-manager-starting manager)
(apply 'start-process "galeon"
nil
(if (listp kom-galeon-command)
(car kom-galeon-command)
kom-galeon-command)
(if (listp kom-galeon-command)
(append (cdr kom-galeon-command)
url-string)
url-string))))
;; Added by Peter Liljenberg
(defun lyskom-view-url-lynx (url manager)
"View the URL URL using Lynx.
Lynx will be run either in an xterm or in Emacs terminal mode,
depending on the value of `kom-lynx-terminal'."
(cond
((eq kom-lynx-terminal 'xterm)
(apply 'start-process
"lynx"
nil
(car kom-lynx-xterm-command)
(append (cdr kom-lynx-xterm-command) (list url)))
(lyskom-url-manager-starting manager))
((eq kom-lynx-terminal 'terminal)
(let* ((lbuf (get-buffer "*Lynx*"))
(lproc (and lbuf (get-buffer-process lbuf))))
(if lproc
;; Tell existing Lynx to fetch URL
(process-send-string lproc (concat "g" url "\n"))
;; Create a new Lynx
(switch-to-buffer
(apply 'make-term "Lynx"
(if (listp kom-lynx-terminal-command)
(car kom-lynx-terminal-command)
kom-lynx-terminal-command)
nil
(if (listp kom-lynx-terminal-command)
(append (cdr kom-lynx-terminal-command) (list url))
(list url))))
(delete-other-windows)
(term-char-mode)
(set-process-sentinel
(get-buffer-process (current-buffer))
(function (lambda (proc str)
(kill-buffer (process-buffer proc))))))
(lyskom-url-manager-starting manager)))
(t (lyskom-error "Bad Lynx terminal: %s" kom-lynx-terminal))
))
;;;
;;; aux-item buttons
;;;
(defun lyskom-button-delete-aux (buf arg text)
(let ((aux nil))
(cond ((lyskom-aux-item-p arg))
((listp arg)
(let ((items (cond ((eq 'text (car arg))
(text-stat->aux-items
(blocking-do 'get-text-stat (elt arg 1))))
((eq 'conf (car arg))
(conf-stat->aux-items
(blocking-do 'get-conf-stat (elt arg 1))))
((eq 'server (car arg))
(server-info->aux-item-list
(blocking-do 'get-server-info)))
(t nil))))
(while items
(when (eq (aux-item->aux-no (car items)) (elt arg 2))
(setq aux (car items))
(setq items nil))
(setq items (cdr items))))))
(when aux
(lyskom-start-of-command nil)
(unwind-protect
(progn
(unless (cond ((eq 'text (car arg))
(cache-del-text-stat (elt arg 1))
(blocking-do 'modify-text-info
(elt arg 1)
(list (aux-item->aux-no aux))
nil))
((eq 'conf (car arg))
(cache-del-conf-stat (elt arg 1))
(blocking-do 'modify-conf-info
(elt arg 1)
(list (aux-item->aux-no aux))
nil))
((eq 'server (car arg))
(prog1 (blocking-do 'modify-server-info
(list (aux-item->aux-no aux))
nil)
(lyskom-set-default 'lyskom-server-info (blocking-do 'get-server-info)))))
(lyskom-report-command-answer nil)))
(lyskom-end-of-command)))))
(defun lyskom-button-info-aux (buf arg text)
(pop-to-buffer buf)
(goto-char (point-max))
(let ((aux nil))
(cond ((lyskom-aux-item-p arg))
((listp arg)
(let ((items
(cond ((eq 'text (car arg))
(text-stat->aux-items
(blocking-do 'get-text-stat (elt arg 1))))
((eq 'conf (car arg))
(conf-stat->aux-items
(blocking-do 'get-conf-stat (elt arg 1))))
((eq 'server (car arg))
(server-info->aux-item-list
(blocking-do 'get-server-info)))
(t nil))))
(while items
(when (eq (aux-item->aux-no (car items)) (elt arg 2))
(setq aux (car items))
(setq items nil))
(setq items (cdr items))))))
(if aux
(let ((header (cond ((eq 'text (car arg))
(lyskom-format 'aux-item-for-text-no (elt arg 1)))
((eq 'conf (car arg))
(lyskom-format 'aux-item-for-conference-no
(blocking-do 'get-conf-stat
(elt arg 1))))
((eq 'server (car arg))
(lyskom-format 'aux-item-for-server))
(t "????"))))
(lyskom-start-of-command nil)
(unwind-protect
(lyskom-insert (or (lyskom-aux-item-call aux
'info
aux
header)
(lyskom-aux-item-info aux header)))
(lyskom-end-of-command)))
(lyskom-format-insert-before-prompt 'cant-get-aux-item))))
(defun lyskom-button-apply (buf arg text)
(apply (car arg) (cdr arg)))
;;; ================================================================
;;; Functions to put in kom-highlight-conferences
(defun lyskom-highlight-function-get-conf-stat (arg)
"Try to translate ARG to a conf-stat without making server calls.
ARG may be a conf-stat, pers-stat, uconf-stat, conf-z-info, integer or string."
(if (lyskom-conf-stat-p arg)
arg
(let* ((conf-no (cond ((lyskom-pers-stat-p arg) (pers-stat->pers-no arg))
((lyskom-uconf-stat-p arg) (uconf-stat->conf-no arg))
((numberp arg) arg)
((lyskom-conf-z-info-p arg) (conf-z-info->conf-no arg))
((stringp arg) (lyskom-string-to-number arg)))))
(when conf-no
(cond ((cache-get-conf-stat conf-no))
(conf-no (initiate-get-conf-stat 'background nil conf-no)
nil))))))
(defun lyskom-highlight-i-am-supervisor (arg)
"Returns non-nil if lyskom-pers-no is the supervisor of ARG.
ARG interpreted by `lyskom-highlight-function-get-conf-stat'.
This function never makes server calls, so if the information required
to answer accurately is not cached, this function will return an incorrect
result (nil instead of t)."
(let ((conf-stat (lyskom-highlight-function-get-conf-stat arg)))
(lyskom-i-am-supervisor conf-stat nil)))
(defun lyskom-highlight-has-no-presentation (arg)
"Returns non-nil if lyskom-pers-no is the supervisor of CONF-STAT.
ARG is interpreted by `lyskom-highlight-function-get-conf-stat'.
This function never makes server calls, so if the information required
to answer accurately is not cached, this function will return an incorrect
result (nil instead of t)."
(let ((conf-stat (lyskom-highlight-function-get-conf-stat arg)))
(cond ((null conf-stat) nil)
((conf-type->secret (conf-stat->conf-type conf-stat)) nil)
(t (eq 0 (conf-stat->presentation conf-stat))))))
|