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
|
|
|
|
2021-01-01 19:55:31 +00:00
|
|
|
;; Copyright (C) 2004-2021 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>
|
2008-03-14 17:22:03 +00:00
|
|
|
;; Keywords: outlines, hypermedia, calendar, wp
|
2018-01-16 16:22:00 +00:00
|
|
|
;; Homepage: 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:
|
|
|
|
|
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
|
|
|
|
:store #'org-info-store-link)
|
2008-03-14 17:22:03 +00:00
|
|
|
|
|
|
|
;; Implementation
|
|
|
|
(defun org-info-store-link ()
|
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))
|
|
|
|
|
|
|
|
|
|
|
|
(defun org-info-follow-link (name)
|
2008-03-21 16:10:23 +00:00
|
|
|
"Follow an Info file and node link specified by NAME."
|
2018-06-24 17:55:11 +00:00
|
|
|
(if (or (string-match "\\(.*\\)\\(?:#\\|::\\)\\(.*\\)" name)
|
2008-03-14 17:22:03 +00:00
|
|
|
(string-match "\\(.*\\)" name))
|
2014-11-15 18:37:39 +00:00
|
|
|
(let ((filename (match-string 1 name))
|
|
|
|
(nodename-or-index (or (match-string 2 name) "Top")))
|
2008-03-14 17:22:03 +00:00
|
|
|
(require 'info)
|
2014-11-15 18:37:39 +00:00
|
|
|
;; 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)))))
|
2014-11-15 23:18:24 +00:00
|
|
|
(user-error "Could not open: %s" name)))
|
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"
|
|
|
|
"ebrowse" "ede" "ediff" "edt" "efaq-w32" "efaq" "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" "newsticker" "nxml-mode" "octave-mode" "org" "pcl-cvs"
|
|
|
|
"pgg" "rcirc" "reftex" "remember" "sasl" "sc" "semantic" "ses" "sieve"
|
|
|
|
"smtpmail" "speedbar" "srecode" "todo-mode" "tramp" "url" "vip" "viper"
|
|
|
|
"widget" "wisent" "woman")
|
|
|
|
"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
|
|
|
|
|
|
|
(defconst org-info-other-documents
|
2017-09-13 22:46:16 +00:00
|
|
|
'(("libc" . "https://www.gnu.org/software/libc/manual/html_mono/libc.html")
|
|
|
|
("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
|
|
|
|
converted to use these URL.")
|
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."
|
|
|
|
(cond ((member filename org-info-emacs-documents)
|
2017-09-13 22:46:16 +00:00
|
|
|
(format "https://www.gnu.org/software/emacs/manual/html_mono/%s.html"
|
2016-12-14 20:37:03 +00:00
|
|
|
filename))
|
|
|
|
((cdr (assoc filename org-info-other-documents)))
|
|
|
|
(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."
|
2018-06-19 08:44:56 +00:00
|
|
|
(let* ((parts (split-string path "#\\|::"))
|
2017-01-21 13:19:29 +00:00
|
|
|
(manual (car parts))
|
|
|
|
(node (or (nth 1 parts) "Top")))
|
|
|
|
(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
|