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
|
;;; hactypes.el --- Default action types for Hyperbole.
;; Copyright (C) 1991-1995, 2006 Free Software Foundation, Inc.
;; Developed with support from Motorola Inc.
;; Author: Bob Weiner, Brown U.
;; Maintainer: Mats Lidell <matsl@contactor.se>
;; Keywords: extensions, hypermedia
;; This file is part of GNU Hyperbole.
;; GNU Hyperbole 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.
;; GNU Hyperbole is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;; Code:
;;;
;;; Other required Elisp libraries
;;;
(mapcar 'require '(hbut hpath hargs hact hmail))
;;;
;;; Standard Hyperbole action types
;;;
(defact annot-bib (key)
"Follows internal ref KEY within an annotated bibliography, delimiters=[]."
(interactive "sReference key (no []): ")
(let ((opoint (point)))
(goto-char 1)
(if (re-search-forward
(concat "^[*]*[ \t]*\\\[" (ebut:key-to-label key) "\\\]") nil t)
(progn
(beginning-of-line)
(delete-other-windows)
(split-window-vertically nil)
(goto-char opoint))
(beep))
(goto-char opoint)))
(defact completion ()
"Inserts completion at point into minibuffer or other window.
Unless at end of buffer or if completion has already been inserted, then
deletes completions window."
(interactive)
(if (eobp)
(progn (bury-buffer nil)
(delete-window))
(hargs:completion)))
(defact eval-elisp (lisp-expr)
"Evaluates a Lisp expression LISP-EXPR."
(interactive "xLisp to eval: ")
(eval lisp-expr))
(defact exec-kbd-macro (kbd-macro &optional repeat-count)
"Executes KBD-MACRO REPEAT-COUNT times.
KBD-MACRO may be a string of editor command characters, a function symbol or
nil to use the last defined keyboard macro.
Optional REPEAT-COUNT nil means execute once, zero means repeat until
error."
(interactive
(let (macro repeat)
(setq macro (intern-soft
(hargs:read-match
"Unquoted macro name or nil for last one defined: "
obarray (function
(lambda (sym)
(and (fboundp sym)
(stringp (hypb:indirect-function sym)))))
nil "nil" 'symbol)))
(cond ((fboundp macro))
((null last-kbd-macro)
(hypb:error
"(exec-kbd-macro): Define a keyboard macro first."))
(t (fset 'zzz last-kbd-macro)
(setq macro 'zzz)))
(save-excursion
(let ((standard-output (get-buffer-create "*macro-def*")))
(unwind-protect
(progn (set-buffer standard-output)
(setq buffer-read-only nil)
(erase-buffer)
(insert-kbd-macro macro)
(goto-char (point-min))
(setq macro (car (cdr (cdr (read (current-buffer)))))))
(kill-buffer standard-output))))
(fmakunbound 'zzz)
(setq repeat (hargs:read "Repeat count: "
(function
(lambda (repeat)
(or (null repeat)
(and (integerp repeat) (>= repeat 0)))))
1))
(list macro repeat)))
(if (interactive-p)
nil
(or (and kbd-macro (or (stringp kbd-macro)
(and (symbolp kbd-macro) (fboundp kbd-macro))))
(hypb:error "(exec-kbd-macro): Bad macro: %s" kbd-macro))
(or (null repeat-count) (and (integerp repeat-count) (<= 0 repeat-count))
(hypb:error "(exec-kbd-macro): Bad repeat count: %s" repeat-count)))
(execute-kbd-macro kbd-macro repeat-count))
;;; Support next two actypes on systems which use the 'comint' shell package
;;; rather than Emacs V18 shell.el.
;;;
(if (or hyperb:xemacs-p hyperb:emacs19-p)
(require 'comint))
(and (fboundp 'comint-send-input) (not (fboundp 'shell-send-input))
(fset 'shell-send-input 'comint-send-input))
(and (fboundp 'comint-kill-output) (not (fboundp 'kill-output-from-shell))
(fset 'kill-output-from-shell 'comint-kill-output))
(and (fboundp 'comint-show-output) (not (fboundp 'show-output-from-shell))
(fset 'show-output-from-shell 'comint-show-output))
(defact exec-shell-cmd (shell-cmd &optional internal-cmd kill-prev)
"Executes a SHELL-CMD string asynchronously.
Optional non-nil second argument INTERNAL-CMD means do not display the shell
command line executed. Optional non-nil third argument KILL-PREV means
kill last output to shell buffer before executing SHELL-CMD."
(interactive
(let ((default (car defaults))
(default1 (nth 1 defaults))
(default2 (nth 2 defaults)))
(list (hargs:read "Shell cmd: "
(function
(lambda (cmd) (not (string= cmd ""))))
default "Enter a shell command." 'string)
(y-or-n-p (format "Omit cmd from output (default = %s): "
default1))
(y-or-n-p (format "Kill prior cmd's output (default = %s): "
default2)))))
(let ((buf-name "*Hypb Shell*")
(owind (selected-window)))
(unwind-protect
(progn
(if (not (hpath:ange-ftp-p default-directory))
(setq shell-cmd
(concat "cd " default-directory "; " shell-cmd)))
(if (not (get-buffer buf-name))
(save-excursion
;; Ensure shell displays in other window unless in the
;; OO-Browser, then use selected window.
(if (br-in-browser)
nil
(if (= (length (hypb:window-list)) 1)
(split-window-vertically))
(other-window 1))
(if (eq (minibuffer-window) (selected-window))
(other-window 1))
(shell) (rename-buffer buf-name)
(setq last-input-start (point-marker)
last-input-end (point-marker))
(if (fboundp 'comint-kill-output)
(setq comint-last-input-start last-input-start
comint-last-input-end last-input-end)
)))
(or (equal (buffer-name (current-buffer)) buf-name)
(if (br-in-browser) (switch-to-buffer buf-name)
(pop-to-buffer buf-name)))
(goto-char (point-max))
(and kill-prev last-input-end
(not (equal last-input-start last-input-end))
(kill-output-from-shell))
(insert shell-cmd)
(shell-send-input)
(show-output-from-shell)
(or internal-cmd (scroll-down 1)))
(select-window owind))))
(defact exec-window-cmd (shell-cmd)
"Executes an external window-based SHELL-CMD string asynchronously."
(interactive
(let ((default (car defaults)))
(list (hargs:read "Shell cmd: "
(function
(lambda (cmd) (not (string= cmd ""))))
default "Enter a shell command." 'string))))
(let ((buf-name "*Hypb Shell*")
(cmd (if (hpath:ange-ftp-p default-directory)
(concat "(" shell-cmd ") &")
(concat "(cd " default-directory "; " shell-cmd ") &")))
(msg (format "Executing: %s" shell-cmd))
(shell-buf))
(message msg)
(save-excursion
(save-window-excursion
(if (not (get-buffer buf-name))
(progn (save-excursion
(save-window-excursion
(shell)
(setq shell-buf (current-buffer))))
(message msg)
;; Wait for shell to startup before sending it input.
(sit-for 1)
(set-buffer shell-buf)
(rename-buffer buf-name)
(setq last-input-start (point-marker)
last-input-end (point-marker))
(if (fboundp 'comint-kill-output)
(setq comint-last-input-start last-input-start
comint-last-input-end last-input-end)
)))
(or (equal (buffer-name (current-buffer)) buf-name)
(set-buffer buf-name))
(goto-char (point-max))
(insert cmd)
(shell-send-input)))
(message msg)))
(defact hyp-config (&optional out-buf)
"Inserts Hyperbole configuration info at end of optional OUT-BUF or current."
(hypb:configuration out-buf))
(defact hyp-request (&optional out-buf)
"Inserts Hyperbole mail list request help into optional OUT-BUF or current."
(save-excursion
(and out-buf (set-buffer out-buf))
(goto-char (point-max))
(delete-blank-lines) (delete-blank-lines)
(insert "Use one of the following formats on your subject line:\n
Subject: Subscribe <joe@any.com> (Joe Williams).
Subject: Unsubscribe <joe@any.com>.
To change your address, first unsubscribe by sending an unsubscribe
request from your old address. Then subscribe by sending a subscribe
request from your new address.
Possible mail lists are:
hyperbole - discussion of Hyperbole
hyperbole-announce - Hyperbole announcements only\n")))
(defact hyp-source (buf-str-or-file)
"Displays a buffer or file from a line beginning with 'hbut:source-prefix'."
(interactive
(list (prin1-to-string (get-buffer-create
(read-buffer "Buffer to link to: ")))))
(if (stringp buf-str-or-file)
(cond ((string-match "\\`#<buffer \"?\\([^ \n\"]+\\)\"?>" buf-str-or-file)
(pop-to-buffer (substring buf-str-or-file
(match-beginning 1) (match-end 1))))
(t (hpath:find-other-window buf-str-or-file)))
(hypb:error "(hyp-source): Non-string argument: %s" buf-str-or-file)))
(defact link-to-buffer-tmp (buffer)
"Displays a BUFFER in another window.
Link is generally only good for current Emacs session.
Use 'link-to-file' instead for a permanent link."
(interactive "bBuffer to link to: ")
(if (or (stringp buffer) (bufferp buffer))
(pop-to-buffer buffer)
(hypb:error "(link-to-buffer-tmp): Not a current buffer: %s" buffer)))
(defact link-to-directory (directory)
"Displays a DIRECTORY in Dired mode in another window."
(interactive "DDirectory to link to: ")
(hpath:find-other-window directory))
(defact link-to-ebut (key-file key)
"Performs action given by another button, specified by KEY-FILE and KEY."
(interactive
(let (but-file but-lbl)
(while (cond ((setq but-file
(read-file-name
"File of button to link to: " nil nil t))
(if (string= but-file "")
(progn (beep) t)))
((not (file-readable-p but-file))
(message "(link-to-ebut): You cannot read '%s'."
but-file)
(beep) (sit-for 3))))
(list but-file
(progn
(find-file-noselect but-file)
(while (string= "" (setq but-lbl
(hargs:read-match
"Button to link to: "
(ebut:alist but-file)
nil nil nil 'ebut)))
(beep))
(ebut:label-to-key but-lbl)))))
(or (interactive-p)
(setq key-file (hpath:validate (hpath:substitute-value key-file))))
(let ((but (ebut:get key (find-file-noselect key-file))))
(if but (hbut:act but)
(hypb:error "(link-to-ebut): No button '%s' in '%s'." (ebut:key-to-label key)
key-file))))
(defact link-to-elisp-doc (func-symbol)
"Displays documentation for FUNC-SYMBOL."
(interactive "aFunction to display doc for: ")
(cond ((not (symbolp func-symbol))
(hypb:error "(link-to-elisp-doc): '%s' not a symbol."
func-symbol))
((not (fboundp func-symbol))
(hypb:error "(link-to-elisp-doc): '%s' not defined as a function."
func-symbol))
((not (documentation func-symbol))
(hypb:error "(link-to-elisp-doc): '%s' has no documentation."
func-symbol))
((describe-function func-symbol))))
(defact link-to-file (path &optional point)
"Displays a PATH in another window scrolled to optional POINT.
With POINT, buffer is displayed with POINT at the top of the window."
(interactive
(let ((prev-reading-p hargs:reading-p))
(unwind-protect
(let* ((default (car defaults))
(hargs:reading-p 'file)
(path (read-file-name "Path to link to: " default default))
(path-buf (get-file-buffer path)))
(if path-buf
(save-excursion
(set-buffer path-buf)
(setq hargs:reading-p 'character)
(if (y-or-n-p
(format "y = Display at present position (line %d); n = no position: "
(count-lines 1 (point))))
(list path (point))
(list path)))
(list path)))
(setq hargs:reading-p prev-reading-p))))
(and (hpath:find-other-window path)
(integerp point)
(progn (goto-char (min (point-max) point))
(recenter 0))))
(defact link-to-file-line (path line-num)
"Displays a PATH in another window scrolled to LINE-NUM."
(interactive "fPath to link to: \nnDisplay at line number: ")
(and (setq path (smart-tags-file-path path))
(hpath:find-other-window path)
(integerp line-num)
(progn (widen)
(goto-line line-num))))
(defact link-to-Info-node (node)
"Displays an Info NODE in another window.
NODE must be a string of the form `(file)nodename'."
(interactive "+IInfo (file)nodename to link to: ")
(require 'info)
(if (and (stringp node) (string-match "^(\\([^\)]+\\))\\(.*\\)" node))
(let ((nodename (substring node (match-beginning 2) (match-end 2)))
(file (hpath:absolute-to
(substring node (match-beginning 1) (match-end 1))
(if (boundp 'Info-directory-list)
Info-directory-list
Info-directory))))
(if (and file (setq file (hpath:substitute-value file)))
(let ((wind (get-buffer-window "*info*")))
(if wind (select-window wind)
(pop-to-buffer (other-buffer)))
(info) (Info-goto-node (concat "(" file ")" nodename)))
(hypb:error "(link-to-Info-node): Bad node spec: '%s'" node)))))
(defact link-to-kcell (file cell-ref)
"Displays FILE with kcell given by CELL-REF at the top of the window.
See documentation for 'kcell:ref-to-id' for valid cell-ref formats.
If FILE is nil, the current buffer is used.
If CELL-REF is nil, the first cell in the view is shown."
(interactive "fKotl file to link to: \n+KKcell to link to: ")
(require 'kfile)
(cond ((and (stringp cell-ref) (= ?| (aref cell-ref 0)))
;; Activate view spec in current window.
(kotl-mode:goto-cell cell-ref))
((if file
(hpath:find-other-window file)
(pop-to-buffer (current-buffer) t))
(if cell-ref
(kotl-mode:goto-cell cell-ref)
(kotl-mode:beginning-of-buffer))
(recenter 0))))
(defact link-to-mail (mail-msg-id &optional mail-file)
"Displays mail msg with MAIL-MSG-ID from optional MAIL-FILE in other window.
See documentation for the variable 'hmail:init-function' for information on
how to specify a mail reader to use."
(interactive "+MMail Msg: ")
(if (not (fboundp 'rmail:msg-to-p))
(hypb:error "(link-to-mail): Invoke mail reader before trying to follow a mail link.")
(if (and (listp mail-msg-id) (null mail-file))
(setq mail-file (car (cdr mail-msg-id))
mail-msg-id (car mail-msg-id)))
(let ((wind (selected-window))
(wconfig (current-window-configuration)))
(other-window 1)
(if (eq wind (selected-window))
(progn (split-window-vertically nil) (other-window 1)))
;; Initialize user-specified mail reader if need be.
(if (and (symbolp hmail:init-function)
(fboundp hmail:init-function)
(listp (symbol-function hmail:init-function))
(eq 'autoload (car (symbol-function hmail:init-function))))
(funcall hmail:init-function))
(if (rmail:msg-to-p mail-msg-id mail-file)
nil
;; Couldn't find message, restore old window config, report error
(set-window-configuration wconfig)
(hypb:error "(link-to-mail): No msg '%s' in file \"%s\"."
mail-msg-id mail-file)))))
(defact link-to-regexp-match (regexp n source &optional buffer-p)
"Finds REGEXP's Nth occurrence in SOURCE and displays location at window top.
SOURCE is a pathname unless optional BUFFER-P is non-nil, then SOURCE must be
a buffer name or buffer.
Returns t if found, signals an error if not."
(interactive "sRegexp to match: \nnOccurrence number: \nfFile to search: ")
(let ((orig-src source))
(if buffer-p
(if (stringp source)
(setq source (get-buffer source)))
;; Source is a pathname.
(if (not (stringp source))
(hypb:error
"(link-to-regexp-match): Source parameter is not a filename: '%s'"
orig-src)
(setq source (find-file-noselect (hpath:substitute-value source)))))
(if (not (bufferp source))
(hypb:error
"(link-to-regexp-match): Invalid source parameter: '%s'" orig-src)
(switch-to-buffer-other-window source)
(widen)
(goto-char (point-min))
(if (re-search-forward regexp nil t n)
(progn (beginning-of-line) (recenter 0) t)
(hypb:error
"(link-to-regexp-match): Pattern not found: '%s'" regexp)))))
(defact link-to-rfc (rfc-num)
"Retrieves and displays an Internet rfc given by RFC-NUM.
RFC-NUM may be a string or an integer. Requires ange-ftp or efs for
remote retrievals."
(interactive "nRFC number to retrieve: ")
(if (or (stringp rfc-num) (integerp rfc-num))
(hpath:find-other-window (hpath:rfc rfc-num))))
(defact link-to-string-match (string n source &optional buffer-p)
"Finds STRING's Nth occurrence in SOURCE and displays location at window top.
SOURCE is a pathname unless optional BUFFER-P is non-nil, then SOURCE must be
a buffer name or buffer.
Returns t if found, nil if not."
(interactive "sString to match: \nnOccurrence number: \nfFile to search: ")
(funcall (actype:action 'link-to-regexp-match)
(regexp-quote string) n source buffer-p))
(defact man-show (topic)
"Displays man page on TOPIC, which may be of the form <command>(<section>)."
(interactive "sManual topic: ")
(manual-entry topic))
(defact rfc-toc (&optional buf-name opoint)
"Computes and displays summary of an Internet rfc in BUF-NAME.
Assumes point has already been moved to start of region to summarize.
Optional OPOINT is point to return to in BUF-NAME after displaying summary."
(interactive)
(if buf-name
(cond ((get-buffer buf-name)
(switch-to-buffer buf-name))
((let ((buf (get-file-buffer buf-name)))
(if buf
(progn (switch-to-buffer (setq buf-name buf))
t))))
(t (if opoint (goto-char opoint))
(hypb:error "(rfc-toc): Invalid buffer name: %s" buf-name))))
(let ((sect-regexp "^[ \t]*[1-9][0-9]*\\.[0-9.]*[ \t]+[^ \t\n]"))
(occur sect-regexp)
(set-buffer "*Occur*")
(rename-buffer (format "*%s toc*" buf-name))
(re-search-forward "^[ ]*[0-9]+:" nil t)
(beginning-of-line)
(delete-region (point-min) (point))
(insert "Contents of " (buffer-name occur-buffer) ":\n")
(set-buffer-modified-p nil)
(set-buffer buf-name)
(if opoint (goto-char opoint))))
(defact text-toc (section)
"Jumps to the text file SECTION referenced by a table of contents entry at point."
(interactive "sGo to section named: ")
(if (stringp section)
(progn
(actypes::link-to-regexp-match
(concat "^\\*+[ \t]*" (regexp-quote section))
1 (current-buffer) t)
(while (and (= (forward-line -1) 0)
(looking-at "[ \t]*[-=][-=]")))
(forward-line 1)
(recenter 0))))
(provide 'hactypes)
;;; hactypes.el ends here
|