2019-03-02 00:01:32 +00:00
|
|
|
;;; ol-info.el --- Links to Info Nodes -*- lexical-binding: t; -*-
|
2008-03-14 17:22:03 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2004-2024 Free Software Foundation, Inc.
|
2008-03-14 17:22:03 +00:00
|
|
|
|
2021-05-07 14:50:57 +00:00
|
|
|
;; Author: Carsten Dominik <carsten.dominik@gmail.com>
|
2023-12-30 17:01:48 +00:00
|
|
|
;; Keywords: outlines, hypermedia, calendar, text
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2008-03-14 17:22:03 +00:00
|
|
|
;;
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
;;
|
2008-05-06 12:45:52 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2008-03-14 17:22:03 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 12:45:52 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
2008-03-14 17:22:03 +00:00
|
|
|
|
|
|
|
;; GNU Emacs 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
|
2017-09-13 22:46:16 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2008-03-14 17:22:03 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;
|
|
|
|
;;; Commentary:
|
|
|
|
|
2016-10-11 16:00:08 +00:00
|
|
|
;; This file implements links to Info nodes from within Org mode.
|
2016-08-23 20:13:56 +00:00
|
|
|
;; Org mode loads this module by default - if this is not what you want,
|
2008-03-14 17:22:03 +00:00
|
|
|
;; configure the variable `org-modules'.
|
|
|
|
|
2008-03-21 16:10:23 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2022-08-04 13:53:05 +00:00
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2018-11-26 23:04:41 +00:00
|
|
|
(require 'ol)
|
2008-03-14 17:22:03 +00:00
|
|
|
|
|
|
|
;; Declare external functions and variables
|
2008-03-21 16:10:23 +00:00
|
|
|
|
2016-05-15 02:56:53 +00:00
|
|
|
(declare-function Info-find-node "info"
|
|
|
|
(filename nodename &optional no-going-back strict-case))
|
2008-03-14 17:22:03 +00:00
|
|
|
(defvar Info-current-file)
|
|
|
|
(defvar Info-current-node)
|
|
|
|
|
|
|
|
;; Install the link type
|
2016-07-05 14:27:32 +00:00
|
|
|
(org-link-set-parameters "info"
|
|
|
|
:follow #'org-info-open
|
|
|
|
:export #'org-info-export
|
2022-07-30 12:13:01 +00:00
|
|
|
:store #'org-info-store-link
|
|
|
|
:insert-description #'org-info-description-as-command)
|
2008-03-14 17:22:03 +00:00
|
|
|
|
|
|
|
;; Implementation
|
2023-11-19 14:52:05 +00:00
|
|
|
(defun org-info-store-link (&optional _interactive?)
|
2008-03-21 16:10:23 +00:00
|
|
|
"Store a link to an Info file and node."
|
2008-03-14 17:22:03 +00:00
|
|
|
(when (eq major-mode 'Info-mode)
|
2016-06-21 20:38:51 +00:00
|
|
|
(let ((link (concat "info:"
|
|
|
|
(file-name-nondirectory Info-current-file)
|
|
|
|
"#" Info-current-node))
|
|
|
|
(desc (concat (file-name-nondirectory Info-current-file)
|
|
|
|
"#" Info-current-node)))
|
2018-11-26 23:04:41 +00:00
|
|
|
(org-link-store-props :type "info" :file Info-current-file
|
2008-03-15 20:34:06 +00:00
|
|
|
:node Info-current-node
|
2021-04-27 21:26:55 +00:00
|
|
|
:link link :description desc)
|
2008-03-15 20:34:06 +00:00
|
|
|
link)))
|
2008-03-14 17:22:03 +00:00
|
|
|
|
2020-02-17 10:28:50 +00:00
|
|
|
(defun org-info-open (path _)
|
2008-03-21 16:10:23 +00:00
|
|
|
"Follow an Info file and node link specified by PATH."
|
2008-03-14 17:22:03 +00:00
|
|
|
(org-info-follow-link path))
|
|
|
|
|
2022-07-30 12:13:01 +00:00
|
|
|
(defun org-info--link-file-node (path)
|
|
|
|
"Extract file name and node from info link PATH.
|
|
|
|
|
|
|
|
Return cons consisting of file name and node name or \"Top\" if node
|
|
|
|
part is not specified. Components may be separated by \":\" or by \"#\".
|
|
|
|
File may be a virtual one, see `Info-virtual-files'."
|
|
|
|
(if (not path)
|
|
|
|
'("dir" . "Top")
|
|
|
|
(string-match "\\`\\([^#:]*\\)\\(?:[#:]:?\\(.*\\)\\)?\\'" path)
|
|
|
|
(let* ((node (match-string 2 path))
|
2022-08-31 02:21:47 +00:00
|
|
|
;; Do not reorder, `org-trim' modifies match.
|
|
|
|
(file (org-trim (match-string 1 path))))
|
2022-07-30 12:13:01 +00:00
|
|
|
(cons
|
|
|
|
(if (org-string-nw-p file) file "dir")
|
2022-08-31 02:21:47 +00:00
|
|
|
(if (org-string-nw-p node) (org-trim node) "Top")))))
|
2022-07-30 12:13:01 +00:00
|
|
|
|
|
|
|
(defun org-info-description-as-command (link desc)
|
|
|
|
"Info link description that can be pasted as command.
|
|
|
|
|
|
|
|
For the following LINK
|
|
|
|
|
|
|
|
\"info:elisp#Non-ASCII in Strings\"
|
|
|
|
|
|
|
|
the result is
|
|
|
|
|
|
|
|
info \"(elisp) Non-ASCII in Strings\"
|
|
|
|
|
|
|
|
that may be executed as shell command or evaluated by
|
|
|
|
\\[eval-expression] (wrapped with parenthesis) to read the manual
|
|
|
|
in Emacs.
|
|
|
|
|
|
|
|
Calling convention is similar to `org-link-make-description-function'.
|
|
|
|
DESC has higher priority and returned when it is not nil or empty string.
|
|
|
|
If LINK is not an info link then DESC is returned."
|
|
|
|
(let* ((prefix "info:")
|
|
|
|
(need-file-node (and (not (org-string-nw-p desc))
|
|
|
|
(string-prefix-p prefix link))))
|
|
|
|
(pcase (and need-file-node
|
2022-08-31 02:21:47 +00:00
|
|
|
(org-info--link-file-node (org-unbracket-string prefix "" link)))
|
2022-07-30 12:13:01 +00:00
|
|
|
;; Unlike (info "dir"), "info dir" shell command opens "(coreutils)dir invocation".
|
|
|
|
(`("dir" . "Top") "info \"(dir)\"")
|
|
|
|
(`(,file . "Top") (format "info %s" file))
|
|
|
|
(`(,file . ,node) (format "info \"(%s) %s\"" file node))
|
|
|
|
(_ desc))))
|
2008-03-14 17:22:03 +00:00
|
|
|
|
|
|
|
(defun org-info-follow-link (name)
|
2008-03-21 16:10:23 +00:00
|
|
|
"Follow an Info file and node link specified by NAME."
|
2022-07-30 12:13:01 +00:00
|
|
|
(pcase-let ((`(,filename . ,nodename-or-index)
|
|
|
|
(org-info--link-file-node name)))
|
|
|
|
(require 'info)
|
|
|
|
;; If nodename-or-index is invalid node name, then look it up
|
|
|
|
;; in the index.
|
|
|
|
(condition-case nil
|
|
|
|
(Info-find-node filename nodename-or-index)
|
|
|
|
(user-error (Info-find-node filename "Top")
|
|
|
|
(condition-case nil
|
|
|
|
(Info-index nodename-or-index)
|
|
|
|
(user-error "Could not find '%s' node or index entry"
|
|
|
|
nodename-or-index))))))
|
2008-03-14 17:22:03 +00:00
|
|
|
|
2016-03-10 14:29:48 +00:00
|
|
|
(defconst org-info-emacs-documents
|
|
|
|
'("ada-mode" "auth" "autotype" "bovine" "calc" "ccmode" "cl" "dbus" "dired-x"
|
2023-10-10 16:07:48 +00:00
|
|
|
"ebrowse" "ede" "ediff" "edt" "efaq-w32" "efaq" "eglot" "eieio" "eintr"
|
|
|
|
"elisp" "emacs-gnutls" "emacs-mime" "emacs" "epa" "erc" "ert" "eshell"
|
|
|
|
"eudc" "eww" "flymake" "forms" "gnus" "htmlfontify" "idlwave" "ido" "info"
|
|
|
|
"mairix-el" "message" "mh-e" "modus-themes" "newsticker" "nxml-mode" "octave-mode"
|
|
|
|
"org" "pcl-cvs" "pgg" "rcirc" "reftex" "remember" "sasl" "sc" "semantic"
|
|
|
|
"ses" "sieve" "smtpmail" "speedbar" "srecode" "todo-mode" "tramp" "transient"
|
|
|
|
"url" "use-package" "vhdl-mode" "vip" "viper" "vtable" "widget" "wisent" "woman")
|
2021-09-16 10:32:43 +00:00
|
|
|
"List of Emacs documents available.
|
2017-09-13 22:46:16 +00:00
|
|
|
Taken from <https://www.gnu.org/software/emacs/manual/html_mono/.>")
|
2016-03-10 14:29:48 +00:00
|
|
|
|
2023-10-10 16:23:37 +00:00
|
|
|
(defcustom org-info-other-documents
|
2022-07-30 12:13:01 +00:00
|
|
|
'(("dir" . "https://www.gnu.org/manual/manual.html") ; index
|
|
|
|
("libc" . "https://www.gnu.org/software/libc/manual/html_mono/libc.html")
|
2017-09-13 22:46:16 +00:00
|
|
|
("make" . "https://www.gnu.org/software/make/manual/make.html"))
|
2016-12-14 20:37:03 +00:00
|
|
|
"Alist of documents generated from Texinfo source.
|
|
|
|
When converting info links to HTML, links to any one of these manuals are
|
2023-10-10 16:23:37 +00:00
|
|
|
converted to use these URL."
|
|
|
|
:group 'org-link
|
|
|
|
:type '(alist :key-type string :value-type string)
|
|
|
|
:package-version '(Org . "9.7")
|
|
|
|
:safe t)
|
2016-03-10 14:29:48 +00:00
|
|
|
|
|
|
|
(defun org-info-map-html-url (filename)
|
2016-12-14 20:37:03 +00:00
|
|
|
"Return URL or HTML file associated to Info FILENAME.
|
|
|
|
If FILENAME refers to an official GNU document, return a URL pointing to
|
|
|
|
the official page for that document, e.g., use \"gnu.org\" for all Emacs
|
|
|
|
related documents. Otherwise, append \".html\" extension to FILENAME.
|
|
|
|
See `org-info-emacs-documents' and `org-info-other-documents' for details."
|
2023-10-10 16:27:09 +00:00
|
|
|
(cond ((cdr (assoc filename org-info-other-documents)))
|
|
|
|
((member filename org-info-emacs-documents)
|
|
|
|
(format "https://www.gnu.org/software/emacs/manual/html_mono/%s.html"
|
|
|
|
filename))
|
|
|
|
(t (concat filename ".html"))))
|
2016-03-10 14:29:48 +00:00
|
|
|
|
2017-01-19 17:51:38 +00:00
|
|
|
(defun org-info--expand-node-name (node)
|
|
|
|
"Expand Info NODE to HTML cross reference."
|
|
|
|
;; See (info "(texinfo) HTML Xref Node Name Expansion") for the
|
|
|
|
;; expansion rule.
|
|
|
|
(let ((node (replace-regexp-in-string
|
|
|
|
"\\([ \t\n\r]+\\)\\|\\([^a-zA-Z0-9]\\)"
|
|
|
|
(lambda (m)
|
|
|
|
(if (match-end 1) "-" (format "_%04x" (string-to-char m))))
|
|
|
|
(org-trim node))))
|
|
|
|
(cond ((string= node "") "")
|
|
|
|
((string-match-p "\\`[0-9]" node) (concat "g_t" node))
|
|
|
|
(t node))))
|
|
|
|
|
2015-04-10 08:38:06 +00:00
|
|
|
(defun org-info-export (path desc format)
|
|
|
|
"Export an info link.
|
2016-07-05 14:27:32 +00:00
|
|
|
See `org-link-parameters' for details about PATH, DESC and FORMAT."
|
2022-07-30 12:13:01 +00:00
|
|
|
(pcase-let ((`(,manual . ,node) (org-info--link-file-node path)))
|
2017-01-21 13:19:29 +00:00
|
|
|
(pcase format
|
|
|
|
(`html
|
|
|
|
(format "<a href=\"%s#%s\">%s</a>"
|
|
|
|
(org-info-map-html-url manual)
|
|
|
|
(org-info--expand-node-name node)
|
|
|
|
(or desc path)))
|
|
|
|
(`texinfo
|
|
|
|
(let ((title (or desc "")))
|
|
|
|
(format "@ref{%s,%s,,%s,}" node title manual)))
|
|
|
|
(_ nil))))
|
2015-04-10 08:38:06 +00:00
|
|
|
|
2019-03-02 00:01:32 +00:00
|
|
|
(provide 'ol-info)
|
2008-03-14 17:22:03 +00:00
|
|
|
|
2019-03-02 00:01:32 +00:00
|
|
|
;;; ol-info.el ends here
|