Mercurial > emacs
annotate lisp/net/goto-addr.el @ 49784:48e671543e1e
(backward-delete-char-untabify): Fix use of character constant.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 14 Feb 2003 09:57:03 +0000 |
parents | 0d8b17d428b5 |
children | 9277afae9517 d7ddb3e565de |
rev | line source |
---|---|
28210 | 1 ;;; goto-addr.el --- click to browse URL or to send to e-mail address |
2 | |
37423
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
3 ;; Copyright (C) 1995, 2000, 2001 Free Software Foundation, Inc. |
28210 | 4 |
30192 | 5 ;; Author: Eric Ding <ericding@alum.mit.edu> |
30285 | 6 ;; Maintainer: FSF |
28210 | 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 ;; | |
29664
3e03d72fadea
(goto-address-fontify): Use keymap property, not local-map.
Dave Love <fx@gnu.org>
parents:
29653
diff
changeset
|
42 ;; The mouse click method is bound to [mouse-2] on highlighted URLs or |
28210 | 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) | |
30345
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
58 ;; * If the buffer is fontified after goto-address-fontify is run |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
59 ;; (say, using font-lock-fontify-buffer), then font-lock faces will |
28210 | 60 ;; override goto-address faces. |
61 | |
62 ;;; Code: | |
63 | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
64 (require 'thingatpt) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
65 (autoload 'browse-url-url-at-point "browse-url") |
28210 | 66 |
37423
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
67 ;; XEmacs needs the following definitions. |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
68 (unless (fboundp 'overlays-in) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
69 (require 'overlay)) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
70 (unless (fboundp 'line-beginning-position) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
71 (defalias 'line-beginning-position 'point-at-bol)) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
72 (unless (fboundp 'line-end-position) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
73 (defalias 'line-end-position 'point-at-eol)) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
74 (unless (fboundp 'match-string-no-properties) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
75 (defalias 'match-string-no-properties 'match-string)) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
76 |
28210 | 77 (defgroup goto-address nil |
78 "Click to browse URL or to send to e-mail address." | |
79 :group 'mouse | |
80 :group 'hypermedia) | |
81 | |
82 | |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
83 ;; I don't expect users to want fontify'ing without highlighting. |
28210 | 84 (defcustom goto-address-fontify-p t |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
85 "*Non-nil means URLs and e-mail addresses in buffer are fontified. |
28210 | 86 But only if `goto-address-highlight-p' is also non-nil." |
87 :type 'boolean | |
88 :group 'goto-address) | |
89 | |
90 (defcustom goto-address-highlight-p t | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
91 "*Non-nil means URLs and e-mail addresses in buffer are highlighted." |
28210 | 92 :type 'boolean |
93 :group 'goto-address) | |
94 | |
95 (defcustom goto-address-fontify-maximum-size 30000 | |
29664
3e03d72fadea
(goto-address-fontify): Use keymap property, not local-map.
Dave Love <fx@gnu.org>
parents:
29653
diff
changeset
|
96 "*Maximum size of file in which to fontify and/or highlight URLs." |
28210 | 97 :type 'integer |
98 :group 'goto-address) | |
99 | |
100 (defvar goto-address-mail-regexp | |
39790
1802ca573682
(goto-address-mail-regexp): Allow + in username.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39568
diff
changeset
|
101 ;; Actually pretty much any char could appear in the username part. -stef |
1802ca573682
(goto-address-mail-regexp): Allow + in username.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39568
diff
changeset
|
102 "[-a-zA-Z0-9._+]+@\\([-a-zA-z0-9_]+\\.\\)+[a-zA-Z0-9]+" |
28210 | 103 "A regular expression probably matching an e-mail address.") |
104 | |
48068
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
105 (defvar goto-address-url-regexp |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
106 (concat "\\<\\(" |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
107 (mapconcat 'identity |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
108 (delete "mailto:" (copy-sequence thing-at-point-uri-schemes)) |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
109 "\\|") |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
110 "\\)" |
0560d7169eba
(goto-address-url-regexp): Don't match `mailto'.
Richard M. Stallman <rms@gnu.org>
parents:
39790
diff
changeset
|
111 thing-at-point-url-path-regexp) |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
112 ;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|" |
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
113 ;; "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:" |
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
114 ;; "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*" |
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
115 ;; "[-a-zA-Z0-9_=#$@~`%&*+|\\/]") |
28210 | 116 "A regular expression probably matching a URL.") |
117 | |
118 (defvar goto-address-highlight-keymap | |
119 (let ((m (make-sparse-keymap))) | |
37423
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
120 (if (featurep 'xemacs) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
121 (define-key m (kbd "<button2>") 'goto-address-at-mouse) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
122 (define-key m (kbd "<mouse-2>") 'goto-address-at-mouse)) |
3ab2c865a8e5
Instead of defining line-beginning-position and
Gerd Moellmann <gerd@gnu.org>
parents:
30891
diff
changeset
|
123 (define-key m (kbd "C-c RET") 'goto-address-at-point) |
28210 | 124 m) |
125 "keymap to hold goto-addr's mouse key defs under highlighted URLs.") | |
126 | |
127 (defcustom goto-address-url-face 'bold | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
128 "Face to use for URLs." |
28210 | 129 :type 'face |
130 :group 'goto-address) | |
131 | |
132 (defcustom goto-address-url-mouse-face 'highlight | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
133 "Face to use for URLs when the mouse is on them." |
28210 | 134 :type 'face |
135 :group 'goto-address) | |
136 | |
137 (defcustom goto-address-mail-face 'italic | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
138 "Face to use for e-mail addresses." |
28210 | 139 :type 'face |
140 :group 'goto-address) | |
141 | |
142 (defcustom goto-address-mail-mouse-face 'secondary-selection | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
143 "Face to use for e-mail addresses when the mouse is on them." |
28210 | 144 :type 'face |
145 :group 'goto-address) | |
146 | |
147 (defun goto-address-fontify () | |
29664
3e03d72fadea
(goto-address-fontify): Use keymap property, not local-map.
Dave Love <fx@gnu.org>
parents:
29653
diff
changeset
|
148 "Fontify the URLs and e-mail addresses in the current buffer. |
28210 | 149 This function implements `goto-address-highlight-p' |
150 and `goto-address-fontify-p'." | |
30345
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
151 ;; Clean up from any previous go. |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
152 (dolist (overlay (overlays-in (point-min) (point-max))) |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
153 (if (overlay-get overlay 'goto-address) |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
154 (delete-overlay overlay))) |
28210 | 155 (save-excursion |
30345
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
156 (let ((inhibit-point-motion-hooks t)) |
28210 | 157 (goto-char (point-min)) |
158 (if (< (- (point-max) (point)) goto-address-fontify-maximum-size) | |
159 (progn | |
160 (while (re-search-forward goto-address-url-regexp nil t) | |
161 (let* ((s (match-beginning 0)) | |
162 (e (match-end 0)) | |
163 (this-overlay (make-overlay s e))) | |
164 (and goto-address-fontify-p | |
165 (overlay-put this-overlay 'face goto-address-url-face)) | |
166 (overlay-put this-overlay | |
167 'mouse-face goto-address-url-mouse-face) | |
168 (overlay-put this-overlay | |
29209
67618bef1515
(goto-address-fontify): Add help-echo property.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
169 'help-echo "mouse-2: follow URL") |
67618bef1515
(goto-address-fontify): Add help-echo property.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
170 (overlay-put this-overlay |
30345
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
171 'keymap goto-address-highlight-keymap) |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
172 (overlay-put this-overlay 'goto-address t))) |
28210 | 173 (goto-char (point-min)) |
174 (while (re-search-forward goto-address-mail-regexp nil t) | |
175 (let* ((s (match-beginning 0)) | |
176 (e (match-end 0)) | |
177 (this-overlay (make-overlay s e))) | |
178 (and goto-address-fontify-p | |
179 (overlay-put this-overlay 'face goto-address-mail-face)) | |
180 (overlay-put this-overlay 'mouse-face | |
181 goto-address-mail-mouse-face) | |
29209
67618bef1515
(goto-address-fontify): Add help-echo property.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
182 (overlay-put this-overlay |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
183 'help-echo "mouse-2: mail this address") |
28210 | 184 (overlay-put this-overlay |
30345
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
185 'keymap goto-address-highlight-keymap) |
d24028985f3d
(goto-address-fontify): Don't bother with buffer-modified and read-only
Dave Love <fx@gnu.org>
parents:
30285
diff
changeset
|
186 (overlay-put this-overlay 'goto-address t)))))))) |
28210 | 187 |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
188 ;; code to find and goto addresses; much of this has been blatantly |
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38412
diff
changeset
|
189 ;; snarfed from browse-url.el |
28210 | 190 |
191 ;;;###autoload | |
192 (defun goto-address-at-mouse (event) | |
193 "Send to the e-mail address or load the URL clicked with the mouse. | |
194 Send mail to address at position of mouse click. See documentation for | |
195 `goto-address-find-address-at-point'. If no address is found | |
196 there, then load the URL at or before the position of the mouse click." | |
197 (interactive "e") | |
198 (save-excursion | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
199 (mouse-set-point event) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
200 (goto-address-at-point))) |
28210 | 201 |
202 ;;;###autoload | |
203 (defun goto-address-at-point () | |
204 "Send to the e-mail address or load the URL at point. | |
205 Send mail to address at point. See documentation for | |
206 `goto-address-find-address-at-point'. If no address is found | |
207 there, then load the URL at or before point." | |
208 (interactive) | |
209 (save-excursion | |
210 (let ((address (save-excursion (goto-address-find-address-at-point)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48068
diff
changeset
|
211 (if (and address |
37809
5bc4eff5115e
(goto-address-at-point): Deal with URLs
Gerd Moellmann <gerd@gnu.org>
parents:
37423
diff
changeset
|
212 (save-excursion |
5bc4eff5115e
(goto-address-at-point): Deal with URLs
Gerd Moellmann <gerd@gnu.org>
parents:
37423
diff
changeset
|
213 (goto-char (previous-single-char-property-change |
5bc4eff5115e
(goto-address-at-point): Deal with URLs
Gerd Moellmann <gerd@gnu.org>
parents:
37423
diff
changeset
|
214 (point) 'goto-address nil |
5bc4eff5115e
(goto-address-at-point): Deal with URLs
Gerd Moellmann <gerd@gnu.org>
parents:
37423
diff
changeset
|
215 (line-beginning-position))) |
5bc4eff5115e
(goto-address-at-point): Deal with URLs
Gerd Moellmann <gerd@gnu.org>
parents:
37423
diff
changeset
|
216 (not (looking-at goto-address-url-regexp)))) |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
217 (compose-mail address) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
218 (let ((url (browse-url-url-at-point))) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
219 (if url |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
220 (browse-url url) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
221 (error "No e-mail address or URL found"))))))) |
28210 | 222 |
223 (defun goto-address-find-address-at-point () | |
224 "Find e-mail address around or before point. | |
225 Then search backwards to beginning of line for the start of an e-mail | |
30891
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
226 address. If no e-mail address found, return nil." |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
227 (re-search-backward "[^-_A-z0-9.@]" (line-beginning-position) 'lim) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
228 (if (or (looking-at goto-address-mail-regexp) ; already at start |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
229 (and (re-search-forward goto-address-mail-regexp |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
230 (line-end-position) 'lim) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
231 (goto-char (match-beginning 0)))) |
42ce5997aa4a
Don't require browse-url. Require thingatpt.
Dave Love <fx@gnu.org>
parents:
30345
diff
changeset
|
232 (match-string-no-properties 0))) |
28210 | 233 |
234 ;;;###autoload | |
235 (defun goto-address () | |
236 "Sets up goto-address functionality in the current buffer. | |
237 Allows user to use mouse/keyboard command to click to go to a URL | |
238 or to send e-mail. | |
239 By default, goto-address binds to mouse-2 and C-c RET. | |
240 | |
241 Also fontifies the buffer appropriately (see `goto-address-fontify-p' and | |
242 `goto-address-highlight-p' for more information)." | |
243 (interactive) | |
244 (if goto-address-highlight-p | |
245 (goto-address-fontify))) | |
246 | |
247 (provide 'goto-addr) | |
248 | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
37809
diff
changeset
|
249 ;;; goto-addr.el ends here |