]> code.delx.au - gnu-emacs/blob - lisp/net/goto-addr.el
Don't require browse-url. Require thingatpt.
[gnu-emacs] / lisp / net / goto-addr.el
1 ;;; goto-addr.el --- click to browse URL or to send to e-mail address
2
3 ;; Copyright (C) 1995, 2000 Free Software Foundation, Inc.
4
5 ;; Author: Eric Ding <ericding@alum.mit.edu>
6 ;; Maintainer: FSF
7 ;; Created: 15 Aug 1995
8 ;; Keywords: mh-e, www, mouse, mail
9
10 ;; This file is part of GNU Emacs.
11
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 2, or (at your option)
15 ;; any later version.
16
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.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; This package allows you to click or hit a key sequence while on a
30 ;; URL or e-mail address, and either load the URL into a browser of
31 ;; your choice using the browse-url package, or if it's an e-mail
32 ;; address, to send an e-mail to that address. By default, we bind to
33 ;; the [mouse-2] and the [C-c return] key sequences.
34
35 ;; INSTALLATION
36 ;;
37 ;; To use goto-address in a particular mode (for example, while
38 ;; reading mail in mh-e), add something like this in your .emacs file:
39 ;;
40 ;; (add-hook 'mh-show-mode-hook 'goto-address)
41 ;;
42 ;; The mouse click method is bound to [mouse-2] on highlighted URLs or
43 ;; e-mail addresses only; it functions normally everywhere else. To bind
44 ;; another mouse click to the function, add the following to your .emacs
45 ;; (for example):
46 ;;
47 ;; (setq goto-address-highlight-keymap
48 ;; (let ((m (make-sparse-keymap)))
49 ;; (define-key m [S-mouse-2] 'goto-address-at-mouse)
50 ;; m))
51 ;;
52
53 ;; Known bugs/features:
54 ;; * goto-address-mail-regexp only catches foo@bar.org style addressing,
55 ;; not stuff like X.400 addresses, etc.
56 ;; * regexp also catches Message-Id line, since it is in the format of
57 ;; an Internet e-mail address (like Compuserve addresses)
58 ;; * If the buffer is fontified after goto-address-fontify is run
59 ;; (say, using font-lock-fontify-buffer), then font-lock faces will
60 ;; override goto-address faces.
61
62 ;;; Code:
63
64 (require 'thingatpt)
65 (autoload 'browse-url-url-at-point "browse-url")
66
67 (defgroup goto-address nil
68 "Click to browse URL or to send to e-mail address."
69 :group 'mouse
70 :group 'hypermedia)
71
72
73 ;;; I don't expect users to want fontify'ing without highlighting.
74 (defcustom goto-address-fontify-p t
75 "*Non-nil means URLs and e-mail addresses in buffer are fontified.
76 But only if `goto-address-highlight-p' is also non-nil."
77 :type 'boolean
78 :group 'goto-address)
79
80 (defcustom goto-address-highlight-p t
81 "*Non-nil means URLs and e-mail addresses in buffer are highlighted."
82 :type 'boolean
83 :group 'goto-address)
84
85 (defcustom goto-address-fontify-maximum-size 30000
86 "*Maximum size of file in which to fontify and/or highlight URLs."
87 :type 'integer
88 :group 'goto-address)
89
90 (defvar goto-address-mail-regexp
91 "[-a-zA-Z0-9._]+@\\([-a-zA-z0-9_]+\\.\\)+[a-zA-Z0-9]+"
92 "A regular expression probably matching an e-mail address.")
93
94 (defvar goto-address-url-regexp thing-at-point-url-regexp
95 ;;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|"
96 ;;; "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:"
97 ;;; "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*"
98 ;;; "[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
99 "A regular expression probably matching a URL.")
100
101 (defvar goto-address-highlight-keymap
102 (let ((m (make-sparse-keymap)))
103 (define-key m [mouse-2] 'goto-address-at-mouse)
104 (define-key m "\C-c\r" 'goto-address-at-point)
105 m)
106 "keymap to hold goto-addr's mouse key defs under highlighted URLs.")
107
108 (defcustom goto-address-url-face 'bold
109 "Face to use for URLs."
110 :type 'face
111 :group 'goto-address)
112
113 (defcustom goto-address-url-mouse-face 'highlight
114 "Face to use for URLs when the mouse is on them."
115 :type 'face
116 :group 'goto-address)
117
118 (defcustom goto-address-mail-face 'italic
119 "Face to use for e-mail addresses."
120 :type 'face
121 :group 'goto-address)
122
123 (defcustom goto-address-mail-mouse-face 'secondary-selection
124 "Face to use for e-mail addresses when the mouse is on them."
125 :type 'face
126 :group 'goto-address)
127
128 (defun goto-address-fontify ()
129 "Fontify the URLs and e-mail addresses in the current buffer.
130 This function implements `goto-address-highlight-p'
131 and `goto-address-fontify-p'."
132 ;; Clean up from any previous go.
133 (dolist (overlay (overlays-in (point-min) (point-max)))
134 (if (overlay-get overlay 'goto-address)
135 (delete-overlay overlay)))
136 (save-excursion
137 (let ((inhibit-point-motion-hooks t))
138 (goto-char (point-min))
139 (if (< (- (point-max) (point)) goto-address-fontify-maximum-size)
140 (progn
141 (while (re-search-forward goto-address-url-regexp nil t)
142 (let* ((s (match-beginning 0))
143 (e (match-end 0))
144 (this-overlay (make-overlay s e)))
145 (and goto-address-fontify-p
146 (overlay-put this-overlay 'face goto-address-url-face))
147 (overlay-put this-overlay
148 'mouse-face goto-address-url-mouse-face)
149 (overlay-put this-overlay
150 'help-echo "mouse-2: follow URL")
151 (overlay-put this-overlay
152 'keymap goto-address-highlight-keymap)
153 (overlay-put this-overlay 'goto-address t)))
154 (goto-char (point-min))
155 (while (re-search-forward goto-address-mail-regexp nil t)
156 (let* ((s (match-beginning 0))
157 (e (match-end 0))
158 (this-overlay (make-overlay s e)))
159 (and goto-address-fontify-p
160 (overlay-put this-overlay 'face goto-address-mail-face))
161 (overlay-put this-overlay 'mouse-face
162 goto-address-mail-mouse-face)
163 (overlay-put this-overlay
164 'help-echo "mouse-2: mail this address")
165 (overlay-put this-overlay
166 'keymap goto-address-highlight-keymap)
167 (overlay-put this-overlay 'goto-address t))))))))
168
169 ;;; code to find and goto addresses; much of this has been blatantly
170 ;;; snarfed from browse-url.el
171
172 ;;;###autoload
173 (defun goto-address-at-mouse (event)
174 "Send to the e-mail address or load the URL clicked with the mouse.
175 Send mail to address at position of mouse click. See documentation for
176 `goto-address-find-address-at-point'. If no address is found
177 there, then load the URL at or before the position of the mouse click."
178 (interactive "e")
179 (save-excursion
180 (mouse-set-point event)
181 (goto-address-at-point)))
182
183 ;;;###autoload
184 (defun goto-address-at-point ()
185 "Send to the e-mail address or load the URL at point.
186 Send mail to address at point. See documentation for
187 `goto-address-find-address-at-point'. If no address is found
188 there, then load the URL at or before point."
189 (interactive)
190 (save-excursion
191 (let ((address (save-excursion (goto-address-find-address-at-point))))
192 (if address
193 (compose-mail address)
194 (let ((url (browse-url-url-at-point)))
195 (if url
196 (browse-url url)
197 (error "No e-mail address or URL found")))))))
198
199 (defun goto-address-find-address-at-point ()
200 "Find e-mail address around or before point.
201 Then search backwards to beginning of line for the start of an e-mail
202 address. If no e-mail address found, return nil."
203 (re-search-backward "[^-_A-z0-9.@]" (line-beginning-position) 'lim)
204 (if (or (looking-at goto-address-mail-regexp) ; already at start
205 (and (re-search-forward goto-address-mail-regexp
206 (line-end-position) 'lim)
207 (goto-char (match-beginning 0))))
208 (match-string-no-properties 0)))
209
210 ;;;###autoload
211 (defun goto-address ()
212 "Sets up goto-address functionality in the current buffer.
213 Allows user to use mouse/keyboard command to click to go to a URL
214 or to send e-mail.
215 By default, goto-address binds to mouse-2 and C-c RET.
216
217 Also fontifies the buffer appropriately (see `goto-address-fontify-p' and
218 `goto-address-highlight-p' for more information)."
219 (interactive)
220 (if goto-address-highlight-p
221 (goto-address-fontify)))
222
223 (provide 'goto-addr)
224
225 ;;; goto-addr.el ends here.