Release 6.03.
[org-mode/org-tableheadings.git] / lisp / org-info.el
blobaeb63c935607baa2cfd08bb1a1745acb3f247bfe
1 ;;; org-info.el --- Support for links to Info nodes from within Org-Mode
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 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 ;; Version: 6.03
9 ;;
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26 ;;; Commentary:
28 ;; This file implements links to Info nodes from within Org-mode.
29 ;; Org-mode loads this module by default - if this is not what you want,
30 ;; configure the variable `org-modules'.
32 ;;; Code:
34 (require 'org)
36 ;; Declare external functions and variables
38 (declare-function Info-find-node "info" (filename nodename
39 &optional no-going-back))
40 (defvar Info-current-file)
41 (defvar Info-current-node)
43 ;; Install the link type
44 (org-add-link-type "info" 'org-info-open)
45 (add-hook 'org-store-link-functions 'org-info-store-link)
47 ;; Implementation
48 (defun org-info-store-link ()
49 "Store a link to an Info file and node."
50 (when (eq major-mode 'Info-mode)
51 (let (link desc)
52 (setq link (org-make-link "info:"
53 (file-name-nondirectory Info-current-file)
54 ":" Info-current-node))
55 (setq desc (concat (file-name-nondirectory Info-current-file)
56 ":" Info-current-node))
57 (org-store-link-props :type "info" :file Info-current-file
58 :node Info-current-node
59 :link link :desc desc)
60 link)))
62 (defun org-info-open (path)
63 "Follow an Info file and node link specified by PATH."
64 (org-info-follow-link path))
67 (defun org-info-follow-link (name)
68 "Follow an Info file and node link specified by NAME."
69 (if (or (string-match "\\(.*\\)::?\\(.*\\)" name)
70 (string-match "\\(.*\\)" name))
71 (progn
72 (require 'info)
73 (if (match-string 2 name) ; If there isn't a node, choose "Top"
74 (Info-find-node (match-string 1 name) (match-string 2 name))
75 (Info-find-node (match-string 1 name) "Top")))
76 (message "Could not open: %s" name)))
78 (provide 'org-info)
80 ;; arch-tag: 1e289f54-7176-487f-b575-dd4854bab15e
82 ;;; org-info.el ends here