Merge branch 'maint'
[org-mode/org-tableheadings.git] / lisp / org-info.el
blob7527ab4b2f8e34a1091defc2845e152ec6d672ec
1 ;;; org-info.el --- Support for links to Info nodes from within Org-Mode
3 ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Keywords: outlines, hypermedia, calendar, wp
7 ;; Homepage: http://orgmode.org
8 ;;
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;; Commentary:
27 ;; This file implements links to Info nodes from within Org-mode.
28 ;; Org-mode loads this module by default - if this is not what you want,
29 ;; configure the variable `org-modules'.
31 ;;; Code:
33 (require 'org)
35 ;; Declare external functions and variables
37 (declare-function Info-find-node "info"
38 (filename nodename &optional no-going-back strict-case))
39 (defvar Info-current-file)
40 (defvar Info-current-node)
42 ;; Install the link type
43 (org-add-link-type "info" 'org-info-open 'org-info-export)
44 (add-hook 'org-store-link-functions 'org-info-store-link)
46 ;; Implementation
47 (defun org-info-store-link ()
48 "Store a link to an Info file and node."
49 (when (eq major-mode 'Info-mode)
50 (let (link desc)
51 (setq link (concat "info:"
52 (file-name-nondirectory Info-current-file)
53 "#" Info-current-node))
54 (setq desc (concat (file-name-nondirectory Info-current-file)
55 "#" Info-current-node))
56 (org-store-link-props :type "info" :file Info-current-file
57 :node Info-current-node
58 :link link :desc desc)
59 link)))
61 (defun org-info-open (path)
62 "Follow an Info file and node link specified by PATH."
63 (org-info-follow-link path))
66 (defun org-info-follow-link (name)
67 "Follow an Info file and node link specified by NAME."
68 (if (or (string-match "\\(.*\\)[#:]:?\\(.*\\)" name)
69 (string-match "\\(.*\\)" name))
70 (let ((filename (match-string 1 name))
71 (nodename-or-index (or (match-string 2 name) "Top")))
72 (require 'info)
73 ;; If nodename-or-index is invalid node name, then look it up
74 ;; in the index.
75 (condition-case nil
76 (Info-find-node filename nodename-or-index)
77 (user-error (Info-find-node filename "Top")
78 (condition-case nil
79 (Info-index nodename-or-index)
80 (user-error "Could not find '%s' node or index entry"
81 nodename-or-index)))))
82 (user-error "Could not open: %s" name)))
84 (defconst org-info-emacs-documents
85 '("ada-mode" "auth" "autotype" "bovine" "calc" "ccmode" "cl" "dbus" "dired-x"
86 "ebrowse" "ede" "ediff" "edt" "efaq-w32" "efaq" "eieio" "eintr" "elisp"
87 "emacs-gnutls" "emacs-mime" "emacs" "epa" "erc" "ert" "eshell" "eudc" "eww"
88 "flymake" "forms" "gnus" "htmlfontify" "idlwave" "ido" "info" "mairix-el"
89 "message" "mh-e" "newsticker" "nxml-mode" "octave-mode" "org" "pcl-cvs"
90 "pgg" "rcirc" "reftex" "remember" "sasl" "sc" "semantic" "ses" "sieve"
91 "smtpmail" "speedbar" "srecode" "todo-mode" "tramp" "url" "vip" "viper"
92 "widget" "wisent" "woman")
93 "List of emacs documents available.
94 Taken from <http://www.gnu.org/software/emacs/manual/html_mono/.>")
96 (defconst org-info-other-documents
97 '(("libc" . "http://www.gnu.org/software/libc/manual/html_mono/libc.html")
98 ("make" . "http://www.gnu.org/software/make/manual/make.html"))
99 "Alist of documents generated from texinfo source.
101 When converting info links to html, links to any one of these manuals are
102 converted to use these URL's.")
104 (defun org-info-map-html-url (filename)
105 "Given info FILENAME, either return it (plus '.html' suffix added) or convert
106 it to URL pointing to the official page on internet, e.g., use gnu.org for all
107 emacs related documents. See `org-info-official-gnu-document' and
108 `org-info-other-documents' for details."
109 (if (member filename org-info-emacs-documents)
110 (format "http://www.gnu.org/software/emacs/manual/html_mono/%s.html"
111 filename)
112 (let ((url (cdr (assoc filename org-info-other-documents))))
113 (or url (concat filename ".html")))))
115 (defun org-info-export (path desc format)
116 "Export an info link.
117 See `org-add-link-type' for details about PATH, DESC and FORMAT."
118 (when (eq format 'html)
119 (or (string-match "\\(.*\\)[#:]:?\\(.*\\)" path)
120 (string-match "\\(.*\\)" path))
121 (let ((filename (match-string 1 path))
122 (node (or (match-string 2 path) "Top")))
123 (format "<a href=\"%s#%s\">%s</a>"
124 (org-info-map-html-url filename)
125 (replace-regexp-in-string " " "-" node)
126 (or desc path)))))
128 (provide 'org-info)
130 ;;; org-info.el ends here