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
|
(require 'w3m-util)
(defvar w3m-async-exec)
(defvar w3m-current-title)
(defvar w3m-current-url)
(defvar w3m-history)
(defvar w3m-history-flat)
(defvar w3m-language)
(defvar w3m-mode-map)
(defvar w3m-profile-directory)
(declare-function w3m--setup-popup-window "w3m" (toggle buffer-name nomsg))
(declare-function w3m-goto-url-new-session "w3m"
(url &optional reload charset post-data referer background))
(declare-function w3m-history-slimmed-history-flat "w3m-hist")
(declare-function w3m-history-tree "w3m-hist" (&optional newpos))
(declare-function w3m-load-list "w3m" (file &optional coding-system))
(declare-function w3m-message "w3m" (&rest args))
(declare-function w3m-save-list "w3m"
(file list &optional coding-system escape-ctl-chars))
(autoload 'seq-position "seq")
(defvar w3m-session-group-open nil
"Which session-group is open.
If a session-group is currently open, i.e., when displaying a
list of buffers for an individual session, this should be set
to the session (session-group) number.
There is a legacy terminology problem that needs to be addressed
here. The documentation and symbol names currently confuse
'sessions', 'buffers`, and 'session-groups'. A 'session-group'
is identical to a 'session' that has more than one 'buffer'.")
(defcustom w3m-session-file
(expand-file-name ".sessions" w3m-profile-directory)
"File name to keep sessions."
:group 'w3m
:type 'file)
(defcustom w3m-session-autosave t
"Non-nil means save automatically when w3m quit."
:group 'w3m
:type 'boolean)
(defcustom w3m-session-deleted-save t
"Non-nil means save deleted sessions."
:group 'w3m
:type 'boolean)
(defcustom w3m-session-crash-recovery t
"If non-nil, recover session by auto-saved one when emacs-w3m crashes."
:group 'w3m
:type 'boolean)
(defcustom w3m-session-time-format
(if (equal "Japanese" w3m-language)
"%Y年%m月%d日(%a) %H:%M"
"%Y-%m-%d (%a) %H:%M")
"Format of saved time."
:group 'w3m
:type 'string)
(defcustom w3m-session-automatic-title
(if (equal "Japanese" w3m-language)
"自動保存"
"Automatic saved sessions")
"String of title to save session automatically."
:group 'w3m
:type 'string)
(defcustom w3m-session-deleted-title
(if (equal "Japanese" w3m-language)
"削除セッション"
"Removed sessions")
"String of title to save session when buffer delete."
:group 'w3m
:type 'string)
(defcustom w3m-session-crash-recovery-title
(if (equal "Japanese" w3m-language)
"クラッシュ回復"
"Crash recovery sessions")
"String of title to save session to use for crash recovering."
:group 'w3m
:type 'string)
(defcustom w3m-session-deleted-keep-number 5
"Number to keep sessions when buffers delete."
:group 'w3m
:type 'integer)
(defcustom w3m-session-automatic-keep-number 5
"Number to keep sessions automatically."
:group 'w3m
:type 'integer)
(defcustom w3m-session-unknown-title "<Unknown Title>"
"String of title to use when title is not specified."
:group 'w3m
:type 'string)
(defcustom w3m-session-load-last-sessions nil
"Whether to reload the most recent session when emacs-w3m
starts."
:group 'w3m
:type
'(radio
(const :format "Reload the last session automatically\n" t)
(const :format "Ask whether to reload the last session\n" ask)
(const :format "Never reload the last session automatically" nil)))
(defcustom w3m-session-load-crashed-sessions 'ask
"Whether to reload a crashed session when emacs-w3m starts.
This is used when emacs-w3m determines that the most recent session crashed."
:group 'w3m
:type
'(radio
(const :format "Reload the crashed session automatically\n" t)
(const :format "Ask whether to reload the crashed session\n" ask)
(const :format "Never reload the crashed session automatically" nil)))
(defface w3m-session-select
`((((class color) (background light) (type nil))
(:foreground "black"))
(((class color) (background dark) (type nil))
(:foreground "cyan"))
(((class color) (background light))
(:foreground "dark blue"))
(((class color) (background dark))
(:foreground "white"))
(t nil))
"Face of w3m-session."
:group 'w3m)
(defface w3m-session-selected
`((((class color) (background light) (type nil))
(:foreground "blue" :bold t :underline t))
(((class color) (background dark) (type nil))
(:foreground "cyan" :bold t :underline t))
(((class color) (background light))
(:foreground "dark blue" :bold t :underline t))
(((class color) (background dark))
(:foreground "white" :bold t :underline t))
(t (:bold t :underline t)))
"Face of selected w3m-session."
:group 'w3m)
(defun w3m-session-history-to-save ()
"Return a copy of `w3m-history-flat' without current page data."
(let ((pos (cadar w3m-history)))
(apply
'append
(mapcar (lambda (x)
(unless (equal (nth 2 x) pos)
(list x)))
(copy-sequence (w3m-history-slimmed-history-flat))))))
(defmacro w3m-session-ignore-errors (&rest forms)
"Run FORMS. Remove `w3m-session-file' and quit if any error happens."
`(condition-case err
(progn ,@forms)
(error
(if (and (file-exists-p w3m-session-file)
(yes-or-no-p (format
"An error was found in \"%s\"; may we remove it? "
(abbreviate-file-name w3m-session-file))))
(progn
(delete-file w3m-session-file)
(run-at-time 0.1 nil #'message
"\"%s\" has been removed; try again."
(abbreviate-file-name w3m-session-file))
(keyboard-quit))
(signal (car err) (cdr err))))))
(defun w3m-session-save ()
"Save the current session (all currently open emacs-w3m buffers).
The user will be prompted for a name for the saved session. The
saved session information will include, for each currently open
emacs-w3m buffer: the current url and page title, and the
buffer's url history."
(interactive)
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file))
(bufs (w3m-list-buffers))
(prompt "New session title: ")
(cnum 0)
(i 0)
otitle title titles urls len buf cbuf)
(mapc (lambda (x)
(setq titles (cons (cons (car x) (car x)) titles)))
sessions)
(setq otitle (or w3m-current-title
(with-current-buffer (car bufs)
w3m-current-title)))
(setq titles (cons (cons otitle otitle) titles))
(while (not title)
(setq title (completing-read prompt titles nil nil otitle nil otitle))
(if (or (string= title "")
(and (assoc title sessions)
(not (y-or-n-p (format "\"%s\" exists. Overwrite? "
title)))))
(setq title nil)))
(setq cbuf (current-buffer))
(save-current-buffer
(while (setq buf (car bufs))
(setq bufs (cdr bufs))
(set-buffer buf)
(when w3m-current-url
(when (eq cbuf (current-buffer))
(setq cnum i))
(setq i (1+ i))
(setq urls (cons (list w3m-current-url
(copy-sequence (cadar w3m-history))
(w3m-session-history-to-save)
w3m-current-title)
urls)))))
(if (not urls)
(message "%s: no buffers saved...done" title)
(setq len (length urls))
(setq urls (nreverse urls))
(when (assoc title sessions)
(setq sessions (delq (assoc title sessions) sessions)))
(setq sessions (cons (list title (current-time) urls cnum) sessions))
(w3m-save-list w3m-session-file sessions)
(message "%s: %d buffer%s saved...done" title len (if (= len 1) "" "s"))
(when (and (setq buf (get-buffer " *w3m-session select*"))
(get-buffer-window buf 'visible))
(save-selected-window (w3m-session-select)))))))
(defun w3m-session-automatic-save ()
"Save list of displayed session automatically."
(when w3m-session-autosave
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file))
(bufs (w3m-list-buffers))
(title (concat w3m-session-automatic-title "-1"))
(titleregex (concat "\\`"
(regexp-quote w3m-session-automatic-title)
"-[0-9]+\\'"))
(cnum 0)
(i 0)
urls buf cbuf session
tmp tmptitle tmptime tmpurls)
(when bufs
(setq cbuf (current-buffer))
(save-current-buffer
(while (setq buf (car bufs))
(setq bufs (cdr bufs))
(set-buffer buf)
(when w3m-current-url
(when (eq cbuf (current-buffer))
(setq cnum i))
(setq i (1+ i))
(setq urls (cons (list w3m-current-url
(copy-sequence (caar w3m-history))
(w3m-session-history-to-save)
w3m-current-title)
urls)))))
(when urls
(setq i 2)
(while (setq session (car sessions))
(setq sessions (cdr sessions))
(if (string-match titleregex (nth 0 session))
(when (<= i w3m-session-automatic-keep-number)
(setq tmptitle (format (concat w3m-session-automatic-title
"-%d") i))
(setq tmptime (nth 1 session))
(setq tmpurls (nth 2 session))
(setq tmp (cons (list tmptitle tmptime tmpurls nil) tmp))
(setq i (1+ i)))
(setq tmp (cons session tmp))))
(setq sessions (nreverse tmp))
(setq urls (nreverse urls))
(setq sessions (cons (list title (current-time) urls cnum)
sessions))
(w3m-save-list w3m-session-file sessions)))))))
(defun w3m-session-deleted-save (buffers)
"Save list of deleted session."
(when w3m-session-deleted-save
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file))
(title (concat w3m-session-deleted-title "-1"))
(titleregex (concat "\\`"
(regexp-quote w3m-session-deleted-title)
"-[0-9]+\\'"))
(bufs (copy-sequence buffers))
(i 2)
urls buf session
tmp tmptitle tmptime tmpurls)
(when bufs
(setq bufs (sort bufs 'w3m-buffer-name-lessp))
(save-current-buffer
(while (setq buf (car bufs))
(setq bufs (cdr bufs))
(set-buffer buf)
(when w3m-current-url
(setq urls (cons (list w3m-current-url
(copy-sequence (caar w3m-history))
(w3m-session-history-to-save)
w3m-current-title)
urls)))))
(when urls
(while (setq session (car sessions))
(setq sessions (cdr sessions))
(if (string-match titleregex (nth 0 session))
(when (<= i w3m-session-deleted-keep-number)
(setq tmptitle (format (concat w3m-session-deleted-title
"-%d") i))
(setq tmptime (nth 1 session))
(setq tmpurls (nth 2 session))
(setq tmp (cons (list tmptitle tmptime tmpurls nil) tmp))
(setq i (1+ i)))
(setq tmp (cons session tmp))))
(setq sessions (nreverse tmp))
(setq urls (nreverse urls))
(setq sessions (cons (list title (current-time) urls nil) sessions))
(w3m-save-list w3m-session-file sessions)))))))
(defun w3m-session-crash-recovery-save ()
"Save list of displayed session."
(when w3m-session-crash-recovery
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file))
(bufs (w3m-list-buffers))
(title w3m-session-crash-recovery-title)
urls buf tmp)
(when bufs
(save-current-buffer
(while (setq buf (car bufs))
(setq bufs (cdr bufs))
(set-buffer buf)
(when w3m-current-url
(setq urls (cons (list w3m-current-url
(copy-sequence (caar w3m-history))
(w3m-session-history-to-save)
w3m-current-title)
urls)))))
(when urls
(setq urls (nreverse urls))
(setq tmp (assoc title sessions))
(when tmp (setq sessions (delq tmp sessions)))
(setq sessions (cons (list title (current-time) urls nil) sessions))
(w3m-save-list w3m-session-file sessions)))))))
(defun w3m-session-crash-recovery-remove ()
"Remove crash recovery session set."
(when w3m-session-crash-recovery
(w3m-session-ignore-errors
(let* ((sessions (w3m-load-list w3m-session-file))
(item (assoc w3m-session-crash-recovery-title sessions)))
(when item
(setq sessions (delq item sessions))
(w3m-save-list w3m-session-file sessions))))))
(defvar w3m-session-select-mode-map nil)
(unless w3m-session-select-mode-map
(let ((map (make-keymap)))
(suppress-keymap map)
(define-key map "q" 'w3m-session-select-quit)
(define-key map "Q" 'w3m-session-select-quit)
(define-key map "\C-g" 'w3m-session-select-quit)
(define-key map "\C-m" 'w3m-session-select-select)
(define-key map "\M-s" 'w3m-session-select-open-session-group)
(define-key map "c" 'w3m-session-select-copy)
(define-key map "C" 'w3m-session-select-copy)
(define-key map "d" 'w3m-session-select-delete)
(define-key map "D" 'w3m-session-select-delete)
(define-key map "s" 'w3m-session-select-save)
(define-key map "S" 'w3m-session-select-save)
(define-key map "r" 'w3m-session-select-rename)
(define-key map "R" 'w3m-session-select-rename)
(define-key map "m" 'w3m-session-select-merge)
(define-key map "M" 'w3m-session-select-merge)
(define-key map "n" 'w3m-session-select-next)
(define-key map "j" 'w3m-session-select-next)
(define-key map "\C-n" 'w3m-session-select-next)
(define-key map [down] 'w3m-session-select-next)
(define-key map "p" 'w3m-session-select-previous)
(define-key map "k" 'w3m-session-select-previous)
(define-key map "\C-p" 'w3m-session-select-previous)
(define-key map [up] 'w3m-session-select-previous)
(setq w3m-session-select-mode-map map)))
(defvar w3m-session-select-sessions nil
"Buffer-local copy of session list.")
(make-variable-buffer-local 'w3m-session-select-sessions)
(defun w3m-session-select-mode (&optional sessions)
"Major mode for selecting emacs-w3m session.
\\<w3m-session-select-mode-map>
\\[w3m-session-select-select] Select the session.
\\[w3m-session-select-open-session-group] Open the session group.
\\[w3m-session-select-copy] Copy the session.
\\[w3m-session-select-delete] Delete the session.
\\[w3m-session-select-rename] Rename the session.
\\[w3m-session-select-merge] Merge the session into another one.
\\[w3m-session-select-save] Save the session.
\\[w3m-session-select-next] Move the point to the next session.
\\[w3m-session-select-previous] Move the point to the previous session.
\\[w3m-session-select-quit] Exit selecting session.
"
(w3m-session-ignore-errors
(let ((sessions (or sessions
(w3m-load-list w3m-session-file))))
(buffer-disable-undo)
(setq mode-name "w3m session"
truncate-lines t
buffer-read-only nil
major-mode 'w3m-session-select-mode
w3m-session-select-sessions sessions
buffer-quit-function 'w3m-session-select-quit
buffer-read-only t)
(setq w3m-session-group-open nil)
(use-local-map w3m-session-select-mode-map)
(w3m-session-select-list-all-sessions)
(add-hook 'pre-command-hook 'w3m--session-update-faces t t)
(add-hook 'post-command-hook 'w3m--session-update-faces t t))))
(defun w3m--session-update-faces ()
"A hook function for `w3m-session-select' buffers.
Meant for use with `pre-command-hook' and `post-command-hook'."
(let ((beg (line-beginning-position))
(inhibit-read-only t))
(put-text-property
beg (next-single-property-change beg 'w3m-session-number)
'face (if (equal (get-text-property beg 'face) 'w3m-session-select)
'w3m-session-selected
'w3m-session-select))))
(defun w3m-session-select-list-all-sessions ()
"List all saved sessions."
(let ((sessions w3m-session-select-sessions)
(num 0)
(max 0)
(inhibit-read-only t)
title titles time times wid pos)
(if (not sessions)
(progn
(message "No saved session")
(w3m-session-select-quit))
(mapc (lambda (x)
(setq title (format "%s[%d]" (nth 0 x) (length (nth 2 x))))
(setq wid (string-width title))
(when (> wid max)
(setq max wid))
(setq titles (cons title titles))
(setq times (cons (format-time-string w3m-session-time-format
(nth 1 x))
times)))
sessions)
(setq titles (nreverse titles))
(setq times (nreverse times))
(setq max (+ max 2))
(erase-buffer)
(while (and (setq title (car titles))
(setq time (car times)))
(setq titles (cdr titles))
(setq times (cdr times))
(setq pos (point))
(insert title)
(add-text-properties pos (point)
`(face w3m-session-select
w3m-session-number ,num))
(setq num (1+ num))
(insert (make-string (- max (string-width title)) ? ))
(insert time "\n"))
(delete-char -1)
(goto-char (point-min))
(set-buffer-modified-p nil)
(setq buffer-read-only t))))
(defun w3m-session-select-list-session-group (arg)
"List all buffers (i.e., tabs) within a session.
The list can be acted upon similarly to a session list, i.e.,
entries can be individually deleted, renamed, or opened as a new
buffer in the current session."
(let ((session (nth 2 (nth arg w3m-session-select-sessions)))
(num 0)
(max 0)
(inhibit-read-only t)
title url wid
titles urls pos)
(when session
(mapc (lambda (x)
(setq title
(format "%s" (or (nth 3 x) w3m-session-unknown-title)))
(setq wid (string-width title))
(when (> wid max)
(setq max wid))
(setq titles (cons title titles))
(setq urls (cons (nth 0 x)
urls)))
session)
(setq titles (nreverse titles))
(setq urls (nreverse urls))
(setq max (+ max 2))
(erase-buffer)
(insert "Select session:\n\n")
(setq pos (point))
(insert "Open all sessions")
(add-text-properties pos (point)
`(face w3m-session-selected
w3m-session-number ,arg))
(insert "\n")
(while (and (setq title (car titles))
(setq url (car urls)))
(setq titles (cdr titles))
(setq urls (cdr urls))
(setq pos (point))
(insert title)
(add-text-properties pos (point)
`(face w3m-session-select
w3m-session-number ,(cons arg num)))
(setq num (1+ num))
(insert (make-string (- max (string-width title)) ? ))
(insert url "\n"))
(goto-char (point-min))
(goto-char (next-single-property-change
(point) 'w3m-session-number)))
(set-buffer-modified-p nil)
(setq buffer-read-only t)))
(defun w3m-session-select-next (&optional arg)
"Move the point to the next session."
(interactive "p")
(unless arg (setq arg 1))
(let ((target (1+ (mod (1- (+ arg (line-number-at-pos (point))))
(line-number-at-pos (point-max))))))
(goto-char (point-min))
(forward-line (1- target))
(set-buffer-modified-p nil)))
(defun w3m-session-select-previous (&optional arg)
"Move the point to the previous session."
(interactive "p")
(w3m-session-select-next (- arg)))
(defun w3m-session-select-quit ()
"Exit from w3m session select mode."
(interactive)
(if w3m-session-group-open
(let ((num w3m-session-group-open))
(setq w3m-session-group-open nil)
(w3m-session-select-list-all-sessions)
(forward-line num))
(let ((buffer (current-buffer)))
(or (one-window-p) (delete-window))
(kill-buffer buffer))))
(defun w3m-session-select-select ()
"Select the session."
(interactive)
(beginning-of-line)
(let* ((num (get-text-property
(point) 'w3m-session-number))
(item (if (consp num)
(nth (cdr num)
(caddr (nth (car num)
w3m-session-select-sessions)))
(nth num w3m-session-select-sessions)))
(session (if (consp num)
(list (or (cadddr item) w3m-session-unknown-title)
nil
(list item)
nil)
item)))
(w3m-session-goto-session session)))
(defun w3m-session-select-open-session-group (&optional arg)
"Open the session group."
(interactive)
(beginning-of-line)
(let ((num (or arg (get-text-property (point) 'w3m-session-number)))
wheight)
(if (consp num)
(message "This is not a session group.")
(setq w3m-session-group-open num)
(setq wheight
(max (+ (length (caddr (nth num w3m-session-select-sessions))) 6)
window-min-height))
(condition-case nil
(enlarge-window (- wheight (window-height)))
(error nil))
(w3m-session-select-list-session-group num))))
(defun w3m-session-select-save ()
"Save the session."
(interactive)
(when (y-or-n-p "Save this session? ")
(w3m-session-select-quit)
(w3m-session-save)
(w3m-session-select)))
(defun w3m-session-select-rename ()
"Rename this session."
(interactive)
(beginning-of-line)
(let ((num (get-text-property
(point) 'w3m-session-number))
(sessions w3m-session-select-sessions))
(w3m-session-rename sessions num)
(if (not w3m-session-group-open)
(w3m-session-select num)
(w3m-session-select-open-session-group w3m-session-group-open))))
(defun w3m-session-select-delete ()
"Delete an entry (either a session or a buffer)."
(interactive)
(when (y-or-n-p "Delete this entry? ")
(beginning-of-line)
(let ((num (get-text-property
(point) 'w3m-session-number))
(sessions w3m-session-select-sessions))
(w3m-session-delete sessions num)
(if (not w3m-session-group-open)
(w3m-session-select (min (if (consp num) (car num) num)
(1- (length sessions))))
(w3m-session-select-open-session-group w3m-session-group-open)
(forward-line (min (1+ (cdr num))
(- (line-number-at-pos (point-max)) 4)))))))
(defun w3m-session-select-copy ()
"Copy the currently selected session."
(interactive)
(beginning-of-line)
(let ((sessions w3m-session-select-sessions)
(default-prompt "Name for new session: ")
(source-number (get-text-property (point) 'w3m-session-number))
prompt source-session target-session otitle title buf)
(setq prompt default-prompt)
(if (not (integerp source-number))
(error "Only for sessions, not their elements.")
(setq source-session (nth source-number sessions))
(setq target-session source-session))
(setq otitle (car source-session))
(while (not title)
(let ((minibuffer-setup-hook (lambda nil (insert otitle))))
(setq title (read-from-minibuffer prompt nil nil nil nil otitle)))
(cond
((string= title "")
(setq title nil
prompt default-prompt))
((string= title otitle)
(setq prompt (concat title
" is same as original title (C-g to abort): ")
title nil))
((assoc title sessions)
(if (not (y-or-n-p (format "\"%s\" exists. Overwrite? " title)))
(setq prompt default-prompt
title nil)
(setq sessions (delq (assoc title sessions) sessions))))))
(setq sessions (cons (list title
(current-time)
(nth 2 source-session)
(nth 3 source-session))
sessions))
(w3m-save-list w3m-session-file sessions)
(w3m-message "Session %s copied to %s." otitle title)
(when (and (setq buf (get-buffer " *w3m-session select*"))
(get-buffer-window buf 'visible))
(save-selected-window (w3m-session-select)))))
(defun w3m-session-select-merge ()
"Copy the elements of the selected session into another one.
The user will be prompted for the receiving session. If point is
on a single element within a session, then only that element will
be copied."
(interactive)
(beginning-of-line)
(let ((sessions w3m-session-select-sessions)
(prompt "Merge into session: ")
(source-number (get-text-property (point) 'w3m-session-number))
source-session source-element source-time titles target)
(if (integerp source-number)
(setq source-session (nth source-number sessions))
(setq source-session (nth (car source-number) sessions))
(setq source-element (nth (cdr source-session) (nth 2 source-session))))
(mapc (lambda (x) (push (car x) titles))
sessions)
(setq titles
(delete
(car source-session)
titles))
(setq target (assoc (completing-read prompt titles nil t) sessions))
(setq source-time (nth 1 source-session))
(when (time-less-p (nth 1 target) source-time)
(setf (nth 1 target) source-time))
(setf (nth 2 target)
(delete-dups
(nconc (nth 2 target)
(or source-element
(nth 2 source-session)))))
(w3m-save-list w3m-session-file sessions)
(if (not w3m-session-group-open)
(w3m-session-select (min source-number (1- (length sessions))))
(w3m-session-select-open-session-group w3m-session-group-open)
(forward-line (min (cdr source-number)
(- (line-number-at-pos (point-max)) 4))))))
(defun w3m-session-select (&optional n toggle nomsg)
"Select session from session list.
Position point at N-th session if N is given. With the
prefix-argument, toggles the position of the popup window between
being below or beside the main window."
(interactive (list nil current-prefix-arg nil))
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file))
(showbuf " *w3m-session select*")
window)
(if sessions
(progn
(w3m--setup-popup-window toggle showbuf nomsg)
(w3m-session-select-mode sessions)
(when n (w3m-session-select-next n)))
(when (setq showbuf (get-buffer showbuf))
(when (setq window (prog1 (get-buffer-window showbuf t)
(kill-buffer showbuf)))
(save-selected-window
(select-window window)
(or (one-window-p t t) (delete-window window)))))
(message "No saved session")))))
(defun w3m-session-goto-session (session)
"Create buffer(s) for the selected SESSION url(s).
If point is selecting a session, then a buffer will be created for each
element (url) of that session that does not already exist. If point is
selecting a session element, then only a single buffer for that
url will be created, only if it does not already exist."
(let* ((title (nth 0 session))
(urls (nth 2 session))
(cnum (nth 3 session))
(snum (count-lines (point-min) (line-beginning-position)))
(i 0)
(session-buf (current-buffer))
(session-win (selected-window))
(w3m-urls
(mapcar (lambda(x)
(with-current-buffer x
(cons w3m-current-url x)))
(w3m-list-buffers)))
(cwin (or (catch 'window-to-use
(save-current-buffer
(dolist (win (window-list))
(set-buffer (window-buffer win))
(when (derived-mode-p 'w3m-mode)
(throw 'window-to-use win)))))
session-win))
url cbuf buf pos history url-title
w3m-pop-up-windows w3m-pop-up-frames)
(when (not cwin)
(error "No visible w3m window found"))
(with-selected-window cwin
(w3m-message "Session goto(%s)..." title)
(while (setq url (pop urls))
(unless (stringp url)
(setq pos (nth 1 url)
history (nth 2 url)
url-title (nth 3 url)
url (nth 0 url)))
(cond
((setq cbuf (cdr (assoc url w3m-urls))) t)
(t
(w3m-goto-url-new-session url nil nil nil nil t)
(setq buf (car (last (w3m-list-buffers))))
(when (or (and (numberp cnum) (= cnum i))
(and (not cnum) (= i 0)))
(setq cbuf buf))
(when (and buf pos history)
(set-buffer buf)
(push (list url (list :title url-title) pos) history)
(setq w3m-history-flat history)
(w3m-history-tree pos))
(setq i (1+ i))))))
(unless (get-buffer-window session-buf)
(w3m-session-select snum))
(when cbuf
(set-window-buffer cwin cbuf))
(w3m-message "Session goto(%s)...done" title)))
(defun w3m-session-rename (sessions num)
"Rename an entry (either a session or a buffer).
Rename session number NUM of the SESSIONS data structure, when NUM is
an integer. NUM may also be a cons cell, for which the car is
a session number and the cdr is a buffer entry (i.e., a tab) within
that session. In that case rename the buffer entry."
(let* ((default-prompt "Enter new session title (C-g to abort): ")
(prompt default-prompt)
overwrite
title
(group (if (consp num) (nth 2 (nth (car num) sessions)) nil))
(tmp (if group (nth (cdr num) group) (nth num sessions)))
(otitle (if (consp num) (nth 2 (cdr tmp)) (car tmp))))
(while (not title)
(let ((minibuffer-setup-hook (lambda nil (insert otitle))))
(setq title (read-from-minibuffer prompt nil nil nil nil otitle)))
(cond
((string= title "")
(setq title nil
prompt default-prompt))
((string= title otitle)
(setq prompt (concat title
" is same as original title (C-g to abort): ")
title nil))
((and (not group) (assoc title sessions))
(if (not (y-or-n-p (format "\"%s\" exists. Overwrite? " title)))
(setq prompt default-prompt
title nil)
(setq sessions (delq (assoc title sessions) sessions))
(setq num (seq-position sessions (assoc otitle sessions)))))
((and group (member title (mapcar (lambda (x) (car (last x))) group)))
(setq prompt "\
Not yet supported. Manually delete the other entry, or try again. "
title nil))))
(cond
(group
(setf (nth 2 (cdr tmp)) title)
(setf (nth (cdr num) group) tmp)
(setf (nth 2 (nth (car num) sessions)) group))
(t
(setcar tmp title)
(setcar (nthcdr num sessions) tmp)))
(w3m-save-list w3m-session-file sessions)))
(defun w3m-session-delete (sessions num)
"Delete an entry (either a session or a buffer).
Delete from the SESSIONS data structure the session number NUM, when
NUM is an integer. NUM may also be a cons cell, for which the car is
a session number and the cdr is a buffer entry (i.e., a tab) within
that session. In that case delete the buffer entry."
(if (consp num)
(let* ((item (nth 2 (nth (car num) sessions)))
(tmp (delq (nth (cdr num) item) item)))
(if (not (zerop (length tmp)))
(setf (nth 2 (nth (car num) sessions)) tmp)
(setq sessions (delq (nth (car num) sessions) sessions))
(setq w3m-session-group-open nil)))
(setq sessions (delq (nth num sessions) sessions)))
(if sessions
(w3m-save-list w3m-session-file sessions)
(let ((file (expand-file-name w3m-session-file)))
(when (and (file-exists-p file) (file-writable-p file))
(delete-file file)))))
(defvar w3m-session-menu-items
`([,(w3m-make-menu-item "新しいセッションを作る..."
"Create New Session...")
w3m-goto-new-session-url t]
[,(w3m-make-menu-item "このセッションを複製する" "Copy This Session")
w3m-copy-buffer w3m-current-url]
"----" ;; separator
[,(w3m-make-menu-item "前のセッションに移動する"
"Move Previous Session")
w3m-previous-buffer
(> (safe-length (w3m-list-buffers)) 1)]
[,(w3m-make-menu-item "次のセッションに移動する" "Move Next Session")
w3m-next-buffer
(> (safe-length (w3m-list-buffers)) 1)]
"----" ;; separator
[,(w3m-make-menu-item "このセッションを閉じる" "Close This Session")
w3m-delete-buffer
(> (safe-length (w3m-list-buffers)) 1)]
[,(w3m-make-menu-item "他のセッションを閉じる" "Close Other Sessions")
w3m-delete-other-buffers
(> (safe-length (w3m-list-buffers)) 1)]
[,(w3m-make-menu-item "現在のセッションを保存する"
"Save Displayed Sessions")
w3m-session-save t]
[,(w3m-make-menu-item "セッションを選択する" "Select Sessions")
w3m-session-select t])
"List of the session menu items.")
(defun w3m-setup-session-menu ()
"Setup w3m session items in menubar."
(unless (lookup-key w3m-mode-map [menu-bar Session])
(easy-menu-define w3m-session-menu w3m-mode-map "" '("Session"))
(w3m-easy-menu-add w3m-session-menu)
(add-hook 'menu-bar-update-hook 'w3m-session-menubar-update)))
(defvar w3m-session-menu-items-pre nil)
(defvar w3m-session-menu-items-time nil)
(defun w3m-session-menubar-update ()
"Update w3m session menubar."
(when (and (eq major-mode 'w3m-mode) menu-bar-mode)
(let ((items w3m-session-menu-items)
(pages (w3m-session-make-menu-items)))
(easy-menu-define w3m-session-menu w3m-mode-map
"The menu kepmap for the emacs-w3m session."
(cons "Session" (if pages
(append items '("----") pages)
items))))))
(defun w3m-session-file-modtime ()
"Return the modification time of the session file `w3m-session-file'.
The value is a list of two time values `(HIGH LOW)' if the session
file exists, otherwise nil."
(nth 5 (file-attributes w3m-session-file)))
(defun w3m-session-make-item (item) item)
(defun w3m-session-make-menu-items ()
"Create w3m session menu items."
(if (and w3m-session-menu-items-pre
w3m-session-menu-items-time
(equal w3m-session-menu-items-time
(w3m-session-file-modtime)))
w3m-session-menu-items-pre
(w3m-session-ignore-errors
(let ((sessions (w3m-load-list w3m-session-file)))
(setq w3m-session-menu-items-time (w3m-session-file-modtime))
(setq w3m-session-menu-items-pre
(and sessions
(mapcar
(lambda (entry)
(cons (car entry)
(cons (vector "Open all sessions"
`(w3m-session-goto-session
(quote ,entry)))
(mapcar
(lambda (item)
(let ((title
(or (nth 3 item)
w3m-session-unknown-title)))
(vector
title
`(w3m-session-goto-session
(quote
,(list title
nil
(list item)
nil))))))
(nth 2 entry)))))
sessions)))))))
(defun w3m-session-last-autosave-session ()
(when w3m-session-load-last-sessions
(w3m-session-ignore-errors
(let ((item
(let ((sessions (w3m-load-list w3m-session-file))
(n 1) x)
(catch 'loop
(while t
(if (< w3m-session-automatic-keep-number n)
(throw 'loop nil)
(setq x (assoc (format "%s-%d"
w3m-session-automatic-title n)
sessions))
(when x (throw 'loop x)))
(setq n (1+ n)))))))
(when (and item
(or (and (eq w3m-session-load-last-sessions 'ask)
(y-or-n-p "Load the last sessions? "))
w3m-session-load-last-sessions))
item)))))
(defun w3m-session-last-crashed-session ()
(when (and w3m-session-crash-recovery w3m-session-load-crashed-sessions)
(w3m-session-ignore-errors
(let ((item (assoc w3m-session-crash-recovery-title
(w3m-load-list w3m-session-file))))
(when (and item
(or (and (eq w3m-session-load-crashed-sessions 'ask)
(y-or-n-p "Load the crashed sessions? "))
(eq w3m-session-load-crashed-sessions t)))
item)))))
(add-hook 'w3m-arrived-shutdown-functions 'w3m-session-crash-recovery-remove t)
(add-hook 'w3m-arrived-shutdown-functions 'w3m-session-automatic-save t)
(provide 'w3m-session)
|