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