1 ;;; docref.el --- Simple cross references for Elisp documentation strings
2 ;; Copyright (C) 1994 Free Software Foundation, Inc.
4 ;; Author: Vadim Geshel <vadik@unas.cs.kiev.ua>
5 ;; Created: 12 Jul 1994
6 ;; Keywords: docs, help, lisp
7 ;; original name was cross-ref.el.
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 2, or (at your option)
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; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 ;; This package allows you to use a simple form of cross references in
28 ;; your Emacs Lisp documentation strings. Cross-references look like
29 ;; \\(type@[label@]data), where type defines a method for retrieving
30 ;; reference information, data is used by a method routine as an argument,
31 ;; and label "represents" the reference in text. If label is absent, data
34 ;; Special reference labeled `back', when present, can be used to return
35 ;; to the previous contents of help buffer.
37 ;; Cross-referencing currently is intended for use in doc strings only
38 ;; and works only in temporary buffers (created by `with-output-to-temp-buffer').
39 ;; List of temp buffers in which cross-referencing is to be active is specified
40 ;; by variable DOCREF-BUFFERS-LIST, which contains only "*Help*" by default.
42 ;; Documentation strings for this package's functions and variables can serve
43 ;; as examples of usage.
47 ;; See source. The main customization variable is `docref-methods-alist'.
48 ;; It consists of (type . function) pairs, where type is a string which
49 ;; corresponds to type in cross-references and function is called with
50 ;; one argument - reference `data' - when a reference is activated.
54 ;; Place this file somewhere in your load-path, byte-compiled it, and add
55 ;; (require 'cross-ref)
60 ;; User customizable variables
62 (defvar docref-highlight-p t
63 "*If non-nil, \\(f@docref-subst) highlights cross-references.
64 Under window system it highlights them with face defined by
65 \\(v@docref-highlight-face), on character terminal highlighted references
66 look like cross-references in info mode.")
68 (defvar docref-highlight-face
'highlight
69 "*Face used to highlight cross-references (used by \\(f@docref-subst))")
71 (defvar docref-methods-alist
72 '(("f" . docref-describe-function
) ; reference to a function documentation
73 ("v" . docref-describe-variable
) ; reference to a variable documentation
74 ("F" . docref-read-file
) ; reference to a file contents
75 ("s" . docref-use-string
) ; reference to a string
76 ("V" . docref-use-variable-value
) ; reference to variable value
77 ("0" . beep
)) ; just highlighted text
78 "Alist which maps cross-reference ``types'' to retrieval functions.
80 The car of each element is a string that serves as `type' in cross-references.
81 \(See \\(f@docref-subst)). The cdr is a function of one argument,
82 to be called to find this reference.")
84 (defvar docref-back-label
"\nback"
85 "Label to use by \\(f@docref-subst) for the go-back reference.")
87 (defvar docref-back-reference nil
88 "If non-nil, this is a go-back reference to add to the current buffer.
89 The value specifies how to go back. It should be suitable for use
90 as the second argument to \\(f@docref-insert-label).
91 \\(f@docref-subst) uses this to set up the go-back reference.")
93 (defvar docref-last-active-buffer
)
96 (defun docref-setup ()
97 "Process docref cross-references in the current buffer.
98 See also \\(f@docref-subst)."
100 (docref-subst (current-buffer))
103 (defvar docref-mode-map nil
)
105 (let ((map (make-sparse-keymap)))
106 (define-key map
[mouse-2
] 'docref-follow-mouse
)
107 (define-key map
"\C-c\C-b" 'docref-go-back
)
108 (define-key map
"\C-c\C-c" 'docref-follow
)
109 (setq docref-mode-map map
)))
111 (defun docref-mode ()
112 "Major mode for help buffers that contain cross references.
113 To follow a reference, move to it and type \\[docref-follow], or use
114 \\[docref-follow-mouse]. The command \\[docref-go-back] can used to go
115 back to where you came from."
117 (kill-all-local-variables)
118 (setq major-mode
'docref-mode
)
119 (setq mode-name
"Docref")
120 (use-local-map docref-mode-map
)
121 (run-hooks 'docref-mode
))
123 (defun docref-subst (buf)
124 "Parse documentation cross-references in buffer BUF.
126 Find cross-reference information in a buffer and
127 highlight them with face defined by \\(v@docref-highlight-face).
129 Cross-reference has the following format: \\ (TYPE[@LABEL]@DATA), where
130 TYPE defines method used to retrieve xref data (like reading from file or
131 calling \\(f@describe-function)), DATA is an argument to this method
132 \(like file name or function name), and LABEL is displayed in text using
133 \\(v@docref-highlight-face).
135 The special reference `back' can be used to return back.
136 The variable \\(v@docref-back-label) specifies the label to use for that.
138 See \\(v@docref-methods-alist) for currently defined methods."
142 (goto-char (point-min))
143 ;; The docref-seen property indicates that we have processed this
144 ;; buffer's contents already, so don't do it again.
145 (if (not (get-text-property (point-min) 'docref-seen
))
146 (let ((old-modified (buffer-modified-p)))
147 (while (re-search-forward "[\\](\\([^\)\@]+\\)\\(@[^\)\@]+\\)?@\\([^\)]*\\))"
149 (let* ((start (match-beginning 0))
150 (type (buffer-substring (match-beginning 1) (match-end 1)))
151 (data (buffer-substring (match-beginning 3) (match-end 3)))
153 (if (match-beginning 2)
154 (buffer-substring (+ (match-beginning 2) 1) (match-end 2))
157 (docref-insert-label label
(cons type data
))))
159 ;; Make a back-reference in this buffer, if desired.
160 ;; (This is true if called from docref-follow.)
161 (if docref-back-reference
163 (goto-char (point-max))
164 (put-text-property (point-min) (1+ (point-min))
165 'docref-back-position
(point))
166 (docref-insert-label docref-back-label docref-back-reference
)))
167 (put-text-property (point-min) (1+ (point-min)) 'docref-seen t
)
168 (set-buffer-modified-p old-modified
)))))
170 (defun docref-insert-label (string ref
)
171 (let ((label (concat string
))
173 ;; decorate the label
174 (let ((leading-space-end (save-match-data
175 (if (string-match "^\\([ \t\n]+\\)" label
)
178 (trailing-space-start (save-match-data
179 (if (string-match "\\([ \t\n]+\\)$" label
)
182 (if docref-highlight-p
183 (if (not window-system
)
185 (concat (substring label
0 leading-space-end
)
187 (substring label leading-space-end trailing-space-start
)
189 (substring label trailing-space-start
)))
191 (put-text-property leading-space-end
193 'face docref-highlight-face label
)))
194 (put-text-property 0 (length label
) 'docref ref label
)
197 (defun docref-follow-mouse (click)
198 "Follow the cross-reference that you click on."
201 (let* ((start (event-start click
))
203 (pos (car (cdr start
)))
204 (docref-last-active-buffer (current-buffer)))
205 (set-buffer (window-buffer window
))
206 (docref-follow pos
))))
208 (defun docref-go-back ()
209 "Go back to the previous contents of help buffer."
211 (let ((pos (get-text-property (point-min) 'docref-back-position
)))
214 (error "No go-back reference"))))
216 (defun docref-follow (&optional pos
)
217 "Follow cross-reference at point.
218 For the cross-reference format, see \\(f@docref-subst).
219 The special reference named `back' can be used to return back"
221 (or pos
(setq pos
(point)))
222 (let ((docref-data (get-text-property pos
'docref
)))
224 ;; There is a reference at point. Follow it.
225 (let* ((type (car docref-data
))
226 (name (cdr docref-data
))
227 (method (assoc type docref-methods-alist
))
228 (cur-contents (buffer-string))
230 (docref-back-reference (cons "s" cur-contents
))
233 (error "Unknown cross-reference type: %s" type
))
236 (funcall (cdr method
) name
)
240 ;; (cdr method) got an error.
241 ;; Put back the text that we had.
243 (insert cur-contents
)
245 (set-buffer-modified-p nil
))))))
247 ;; Builtin methods for accessing a reference.
249 (defun docref-describe-function (data)
251 (if (boundp 'docref-last-active-buffer
)
252 (set-buffer docref-last-active-buffer
))
253 (describe-function (intern data
))))
255 (defun docref-describe-variable (data)
257 (if (boundp 'docref-last-active-buffer
)
258 (set-buffer docref-last-active-buffer
))
259 (describe-variable (intern data
))))
261 (defun docref-read-file (data)
262 (with-output-to-temp-buffer (buffer-name)
264 (insert-file-contents (expand-file-name data
))))
266 (defun docref-use-string (data)
267 (with-output-to-temp-buffer (buffer-name)
271 (defun docref-use-variable-value (data)
272 (let ((sym (intern data
)))
273 (with-output-to-temp-buffer (buffer-name)
275 (princ (symbol-value sym
)))))
279 ;;; docref.el ends here