Mercurial > emacs
annotate lisp/net/browse-url.el @ 88331:87edb010d368
*** empty log message ***
author | Henrik Enberg <henrik.enberg@telia.com> |
---|---|
date | Thu, 09 Mar 2006 02:16:39 +0000 |
parents | d7ddb3e565de |
children |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38271
diff
changeset
|
1 ;;; browse-url.el --- pass a URL to a WWW browser |
28210 | 2 |
88155 | 3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
4 ;; 2003, 2004, 2005 Free Software Foundation, Inc. | |
28210 | 5 |
6 ;; Author: Denis Howe <dbh@doc.ic.ac.uk> | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
7 ;; Maintainer: FSF |
28210 | 8 ;; Created: 03 Apr 1995 |
9 ;; Keywords: hypertext, hypermedia, mouse | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
88155 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
28210 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; This package provides functions which read a URL (Uniform Resource | |
31 ;; Locator) from the minibuffer, defaulting to the URL around point, | |
32 ;; and ask a World-Wide Web browser to load it. It can also load the | |
33 ;; URL associated with the current buffer. Different browsers use | |
34 ;; different methods of remote control so there is one function for | |
35 ;; each supported browser. If the chosen browser is not running, it | |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
36 ;; is started. Currently there is support for the following browsers, |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
37 ;; some of them probably now obsolete: |
28210 | 38 |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
39 ;; Function Browser Earliest version |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
40 ;; browse-url-mozilla Mozilla Don't know |
88155 | 41 ;; browse-url-firefox Firefox Don't know (tried with 1.0.1) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
42 ;; browse-url-galeon Galeon Don't know |
88155 | 43 ;; browse-url-epiphany Epiphany Don't know |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
44 ;; browse-url-netscape Netscape 1.1b1 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
45 ;; browse-url-mosaic XMosaic/mMosaic <= 2.4 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
46 ;; browse-url-cci XMosaic 2.5 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
47 ;; browse-url-w3 w3 0 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
48 ;; browse-url-w3-gnudoit w3 remotely |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
49 ;; browse-url-iximosaic IXI Mosaic ? |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
50 ;; browse-url-lynx-* Lynx 0 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
51 ;; browse-url-grail Grail 0.3b1 |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
52 ;; browse-url-mmm MMM ? |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
53 ;; browse-url-generic arbitrary |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
54 ;; browse-url-default-windows-browser MS-Windows browser |
88155 | 55 ;; browse-url-default-macosx-browser Mac OS X browser |
32246
851690316add
(browse-url-browser-function): Use it.
Dave Love <fx@gnu.org>
parents:
32245
diff
changeset
|
56 ;; browse-url-gnome-moz GNOME interface to Mozilla |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
57 ;; browse-url-kde KDE konqueror (kfm) |
28210 | 58 |
59 ;; [A version of the Netscape browser is now free software | |
60 ;; <URL:http://www.mozilla.org/>, albeit not GPLed, so it is | |
61 ;; reasonable to have that as the default.] | |
62 | |
63 ;; Note that versions of Netscape before 1.1b1 did not have remote | |
64 ;; control. <URL:http://www.netscape.com/newsref/std/x-remote.html>. | |
65 | |
66 ;; Browsers can cache Web pages so it may be necessary to tell them to | |
67 ;; reload the current page if it has changed (e.g. if you have edited | |
68 ;; it). There is currently no perfect automatic solution to this. | |
69 | |
70 ;; Netscape allows you to specify the id of the window you want to | |
71 ;; control but which window DO you want to control and how do you | |
72 ;; discover its id? | |
73 | |
74 ;; William M. Perry's excellent "w3" WWW browser for | |
75 ;; Emacs <URL:ftp://cs.indiana.edu/pub/elisp/w3/> | |
76 ;; has a function w3-follow-url-at-point, but that | |
77 ;; doesn't let you edit the URL like browse-url. | |
78 ;; The `gnuserv' package that can be used to control it in another | |
79 ;; Emacs process is available from | |
80 ;; <URL:ftp://ftp.splode.com/pub/users/friedman/packages/>. | |
81 | |
82 ;; Grail is the freely available WWW browser implemented in Python, a | |
83 ;; cool object-oriented freely available interpreted language. Grail | |
84 ;; 0.3b1 was the first version to have remote control as distributed. | |
85 ;; For more information on Grail see | |
86 ;; <URL:http://grail.cnri.reston.va.us/> and for more information on | |
87 ;; Python see <url:http://www.python.org/>. Grail support in | |
88 ;; browse-url.el written by Barry Warsaw <bwarsaw@python.org>. | |
89 | |
90 ;; Lynx is now distributed by the FSF. See also | |
91 ;; <URL:http://lynx.browser.org/>. | |
92 | |
93 ;; Free graphical browsers that could be used by `browse-url-generic' | |
94 ;; include Chimera <URL:ftp://ftp.cs.unlv.edu/pub/chimera> and | |
95 ;; <URL:http://www.unlv.edu/chimera/>, Arena | |
96 ;; <URL:ftp://ftp.yggdrasil.com/pub/dist/web/arena> and Amaya | |
97 ;; <URL:ftp://ftp.w3.org/pub/amaya>. mMosaic | |
48801 | 98 ;; <URL:ftp://ftp.enst.fr/pub/mbone/mMosaic/>, |
99 ;; <URL:http://www.enst.fr/~dauphin/mMosaic/> (with development | |
28210 | 100 ;; support for Java applets and multicast) can be used like Mosaic by |
101 ;; setting `browse-url-mosaic-program' appropriately. | |
102 | |
103 ;; I [Denis Howe, not Dave Love] recommend Nelson Minar | |
104 ;; <nelson@santafe.edu>'s excellent html-helper-mode.el for editing | |
105 ;; HTML and thank Nelson for his many useful comments on this code. | |
106 ;; <URL:http://www.santafe.edu/%7Enelson/hhm-beta/> | |
107 | |
108 ;; See also hm--html-menus <URL:http://www.tnt.uni-hannover.de/%7Emuenkel/ | |
109 ;; software/own/hm--html-menus/>. For composing correct HTML see also | |
110 ;; PSGML the general SGML structure editor package | |
111 ;; <URL:ftp://ftp.lysator.liu.se/pub/sgml>; hm--html-menus can be used | |
112 ;; with this. | |
113 | |
114 ;; This package generalises function html-previewer-process in Marc | |
115 ;; Andreessen's html-mode (LCD modes/html-mode.el.Z). See also the | |
116 ;; ffap.el package. The huge hyperbole package also contains similar | |
117 ;; functions. | |
118 | |
119 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
120 ;; Help! | |
121 | |
122 ;; Can you write and test some code for the Macintrash and Windoze | |
123 ;; Netscape remote control APIs? (See the URL above). | |
124 | |
125 ;; Do any other browsers have remote control? | |
126 | |
127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
128 ;; Usage | |
129 | |
130 ;; To display the URL at or before point: | |
131 ;; M-x browse-url-at-point RET | |
132 ;; or, similarly but with the opportunity to edit the URL extracted from | |
133 ;; the buffer, use: | |
134 ;; M-x browse-url | |
135 | |
136 ;; To display a URL by shift-clicking on it, put this in your ~/.emacs | |
137 ;; file: | |
138 ;; (global-set-key [S-mouse-2] 'browse-url-at-mouse) | |
139 ;; (Note that using Shift-mouse-1 is not desirable because | |
140 ;; that event has a standard meaning in Emacs.) | |
141 | |
142 ;; To display the current buffer in a web browser: | |
143 ;; M-x browse-url-of-buffer RET | |
144 | |
145 ;; To display the current region in a web browser: | |
146 ;; M-x browse-url-of-region RET | |
147 | |
148 ;; In Dired, to display the file named on the current line: | |
149 ;; M-x browse-url-of-dired-file RET | |
150 | |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
151 ;; To activate URLs in a region of a buffer such the URLs are diplayed |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
152 ;; in one face if the URL has not been visited, another if the URL has |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
153 ;; been visited and yet anothe if the mouse is hovering over the URL: |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
154 ;; M-x browse-url-activate-urls RET |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
155 |
28210 | 156 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
157 ;; Customisation (~/.emacs) | |
158 | |
159 ;; To see what variables are available for customization, type | |
160 ;; `M-x set-variable browse-url TAB'. Better, use | |
161 ;; `M-x customize-group browse-url'. | |
162 | |
163 ;; Bind the browse-url commands to keys with the `C-c C-z' prefix | |
164 ;; (as used by html-helper-mode): | |
165 ;; (global-set-key "\C-c\C-z." 'browse-url-at-point) | |
166 ;; (global-set-key "\C-c\C-zb" 'browse-url-of-buffer) | |
167 ;; (global-set-key "\C-c\C-zr" 'browse-url-of-region) | |
168 ;; (global-set-key "\C-c\C-zu" 'browse-url) | |
169 ;; (global-set-key "\C-c\C-zv" 'browse-url-of-file) | |
170 ;; (add-hook 'dired-mode-hook | |
171 ;; (lambda () | |
172 ;; (local-set-key "\C-c\C-zf" 'browse-url-of-dired-file))) | |
173 | |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
174 ;; Browse URLs in mail messages under RMAIL by clicking mouse-2: |
28210 | 175 ;; (add-hook 'rmail-mode-hook (lambda () ; rmail-mode startup |
176 ;; (define-key rmail-mode-map [mouse-2] 'browse-url-at-mouse))) | |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
177 ;; Alternatively, add `goto-address' to `rmail-show-message-hook'. |
28210 | 178 |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
179 ;; Gnus provides a standard feature to activate URLs in article |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
180 ;; buffers for invocation of browse-url. |
28210 | 181 |
182 ;; Use the Emacs w3 browser when not running under X11: | |
183 ;; (or (eq window-system 'x) | |
184 ;; (setq browse-url-browser-function 'browse-url-w3)) | |
185 | |
186 ;; To always save modified buffers before displaying the file in a browser: | |
187 ;; (setq browse-url-save-file t) | |
188 | |
189 ;; To get round the Netscape caching problem, you could EITHER have | |
190 ;; write-file in html-helper-mode make Netscape reload the document: | |
191 ;; | |
192 ;; (autoload 'browse-url-netscape-reload "browse-url" | |
193 ;; "Ask a WWW browser to redisplay the current file." t) | |
194 ;; (add-hook 'html-helper-mode-hook | |
195 ;; (lambda () | |
196 ;; (add-hook 'local-write-file-hooks | |
197 ;; (lambda () | |
198 ;; (let ((local-write-file-hooks)) | |
199 ;; (save-buffer)) | |
200 ;; (browse-url-netscape-reload) | |
201 ;; t) ; => file written by hook | |
202 ;; t))) ; append to l-w-f-hooks | |
203 ;; | |
204 ;; OR have browse-url-of-file ask Netscape to load and then reload the | |
205 ;; file: | |
206 ;; | |
207 ;; (add-hook 'browse-url-of-file-hook 'browse-url-netscape-reload) | |
208 | |
209 ;; You may also want to customise browse-url-netscape-arguments, e.g. | |
210 ;; (setq browse-url-netscape-arguments '("-install")) | |
211 ;; | |
212 ;; or similarly for the other browsers. | |
213 | |
214 ;; To invoke different browsers for different URLs: | |
215 ;; (setq browse-url-browser-function '(("^mailto:" . browse-url-mail) | |
216 ;; ("." . browse-url-netscape))) | |
217 | |
218 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
219 ;;; Code: | |
220 | |
221 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
222 ;; Variables | |
223 | |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
224 (eval-and-compile |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
225 (progn |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
226 (require 'thingatpt) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
227 (require 'term) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
228 (require 'dired) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
229 (require 'executable) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
230 (require 'w3-auto nil t))) |
28210 | 231 |
232 (defgroup browse-url nil | |
233 "Use a web browser to look at a URL." | |
234 :prefix "browse-url-" | |
28330 | 235 :link '(emacs-commentary-link "browse-url") |
28210 | 236 :group 'hypermedia) |
237 | |
238 ;;;###autoload | |
239 (defcustom browse-url-browser-function | |
88155 | 240 (cond |
241 ((memq system-type '(windows-nt ms-dos cygwin)) | |
242 'browse-url-default-windows-browser) | |
243 ((memq system-type '(darwin)) 'browse-url-default-macosx-browser) | |
244 (t 'browse-url-default-browser)) | |
28210 | 245 "*Function to display the current buffer in a WWW browser. |
246 This is used by the `browse-url-at-point', `browse-url-at-mouse', and | |
247 `browse-url-of-file' commands. | |
248 | |
249 If the value is not a function it should be a list of pairs | |
28330 | 250 \(REGEXP . FUNCTION). In this case the function called will be the one |
28210 | 251 associated with the first REGEXP which matches the current URL. The |
252 function is passed the URL and any other args of `browse-url'. The last | |
253 regexp should probably be \".\" to specify a default browser." | |
254 :type '(choice | |
28330 | 255 (function-item :tag "Emacs W3" :value browse-url-w3) |
256 (function-item :tag "W3 in another Emacs via `gnudoit'" | |
257 :value browse-url-w3-gnudoit) | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
258 (function-item :tag "Mozilla" :value browse-url-mozilla) |
88155 | 259 (function-item :tag "Firefox" :value browse-url-firefox) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
260 (function-item :tag "Galeon" :value browse-url-galeon) |
88155 | 261 (function-item :tag "Epiphany" :value browse-url-epiphany) |
28330 | 262 (function-item :tag "Netscape" :value browse-url-netscape) |
263 (function-item :tag "Mosaic" :value browse-url-mosaic) | |
264 (function-item :tag "Mosaic using CCI" :value browse-url-cci) | |
265 (function-item :tag "IXI Mosaic" :value browse-url-iximosaic) | |
266 (function-item :tag "Lynx in an xterm window" | |
267 :value browse-url-lynx-xterm) | |
268 (function-item :tag "Lynx in an Emacs window" | |
269 :value browse-url-lynx-emacs) | |
270 (function-item :tag "Grail" :value browse-url-grail) | |
271 (function-item :tag "MMM" :value browse-url-mmm) | |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
272 (function-item :tag "KDE" :value browse-url-kde) |
28330 | 273 (function-item :tag "Specified by `Browse Url Generic Program'" |
274 :value browse-url-generic) | |
275 (function-item :tag "Default Windows browser" | |
32246
851690316add
(browse-url-browser-function): Use it.
Dave Love <fx@gnu.org>
parents:
32245
diff
changeset
|
276 :value browse-url-default-windows-browser) |
88155 | 277 (function-item :tag "Default Mac OS X browser" |
278 :value browse-url-default-macosx-browser) | |
32246
851690316add
(browse-url-browser-function): Use it.
Dave Love <fx@gnu.org>
parents:
32245
diff
changeset
|
279 (function-item :tag "GNOME invoking Mozilla" |
851690316add
(browse-url-browser-function): Use it.
Dave Love <fx@gnu.org>
parents:
32245
diff
changeset
|
280 :value browse-url-gnome-moz) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
281 (function-item :tag "Default browser" |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
282 :value browse-url-default-browser) |
28330 | 283 (function :tag "Your own function") |
284 (alist :tag "Regexp/function association list" | |
285 :key-type regexp :value-type function)) | |
33417
ea170167e034
(browse-url-browser-function): Update
Dave Love <fx@gnu.org>
parents:
32246
diff
changeset
|
286 :version "21.1" |
28210 | 287 :group 'browse-url) |
288 | |
289 (defcustom browse-url-netscape-program "netscape" | |
290 ;; Info about netscape-remote from Karl Berry. | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
291 "*The name by which to invoke Netscape. |
28210 | 292 |
293 The free program `netscape-remote' from | |
294 <URL:http://home.netscape.com/newsref/std/remote.c> is said to start | |
295 up very much quicker than `netscape'. Reported to compile on a GNU | |
296 system, given vroot.h from the same directory, with cc flags | |
297 -DSTANDALONE -L/usr/X11R6/lib -lXmu -lX11." | |
298 :type 'string | |
299 :group 'browse-url) | |
300 | |
301 (defcustom browse-url-netscape-arguments nil | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
302 "*A list of strings to pass to Netscape as arguments." |
28210 | 303 :type '(repeat (string :tag "Argument")) |
304 :group 'browse-url) | |
305 | |
306 (defcustom browse-url-netscape-startup-arguments browse-url-netscape-arguments | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
307 "*A list of strings to pass to Netscape when it starts up. |
28210 | 308 Defaults to the value of `browse-url-netscape-arguments' at the time |
309 `browse-url' is loaded." | |
310 :type '(repeat (string :tag "Argument")) | |
311 :group 'browse-url) | |
312 | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
313 (defcustom browse-url-browser-display nil |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
314 "*The X display for running the browser, if not same as Emacs'." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
315 :type '(choice string (const :tag "Default" nil)) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
316 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
317 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
318 (defcustom browse-url-mozilla-program "mozilla" |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
319 "*The name by which to invoke Mozilla." |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
320 :type 'string |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
321 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
322 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
323 (defcustom browse-url-mozilla-arguments nil |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
324 "*A list of strings to pass to Mozilla as arguments." |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
325 :type '(repeat (string :tag "Argument")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
326 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
327 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
328 (defcustom browse-url-mozilla-startup-arguments browse-url-mozilla-arguments |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
329 "*A list of strings to pass to Mozilla when it starts up. |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
330 Defaults to the value of `browse-url-mozilla-arguments' at the time |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
331 `browse-url' is loaded." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
332 :type '(repeat (string :tag "Argument")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
333 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
334 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
335 ;;;###autoload |
88155 | 336 (defcustom browse-url-firefox-program "firefox" |
337 "*The name by which to invoke Firefox." | |
338 :type 'string | |
339 :group 'browse-url) | |
340 | |
341 (defcustom browse-url-firefox-arguments nil | |
342 "*A list of strings to pass to Firefox as arguments." | |
343 :type '(repeat (string :tag "Argument")) | |
344 :group 'browse-url) | |
345 | |
346 (defcustom browse-url-firefox-startup-arguments browse-url-firefox-arguments | |
347 "*A list of strings to pass to Firefox when it starts up. | |
348 Defaults to the value of `browse-url-firefox-arguments' at the time | |
349 `browse-url' is loaded." | |
350 :type '(repeat (string :tag "Argument")) | |
351 :group 'browse-url) | |
352 | |
353 ;;;###autoload | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
354 (defcustom browse-url-galeon-program "galeon" |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
355 "*The name by which to invoke Galeon." |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
356 :type 'string |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
357 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
358 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
359 (defcustom browse-url-galeon-arguments nil |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
360 "*A list of strings to pass to Galeon as arguments." |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
361 :type '(repeat (string :tag "Argument")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
362 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
363 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
364 (defcustom browse-url-galeon-startup-arguments browse-url-galeon-arguments |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
365 "*A list of strings to pass to Galeon when it starts up. |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
366 Defaults to the value of `browse-url-galeon-arguments' at the time |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
367 `browse-url' is loaded." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
368 :type '(repeat (string :tag "Argument")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
369 :group 'browse-url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
370 |
88155 | 371 (defcustom browse-url-epiphany-program "epiphany" |
372 "*The name by which to invoke Epiphany." | |
373 :type 'string | |
374 :group 'browse-url) | |
375 | |
376 (defcustom browse-url-epiphany-arguments nil | |
377 "*A list of strings to pass to Epiphany as arguments." | |
378 :type '(repeat (string :tag "Argument")) | |
379 :group 'browse-url) | |
380 | |
381 (defcustom browse-url-epiphany-startup-arguments browse-url-epiphany-arguments | |
382 "*A list of strings to pass to Epiphany when it starts up. | |
383 Defaults to the value of `browse-url-epiphany-arguments' at the time | |
384 `browse-url' is loaded." | |
385 :type '(repeat (string :tag "Argument")) | |
386 :group 'browse-url) | |
387 | |
388 ;; GNOME means of invoking either Mozilla or Netrape. | |
389 (defvar browse-url-gnome-moz-program "gnome-moz-remote") | |
390 | |
391 (defcustom browse-url-gnome-moz-arguments '() | |
392 "*A list of strings passed to the GNOME mozilla viewer as arguments." | |
393 :version "21.1" | |
394 :type '(repeat (string :tag "Argument")) | |
395 :group 'browse-url) | |
396 | |
47844
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
397 (defcustom browse-url-mozilla-new-window-is-tab nil |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
398 "*Whether to open up new windows in a tab or a new window. |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
399 If non-nil, then open the URL in a new tab rather than a new window if |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
400 `browse-url-mozilla' is asked to open it in a new window." |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
401 :type 'boolean |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
402 :group 'browse-url) |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
403 |
88155 | 404 (defcustom browse-url-firefox-new-window-is-tab nil |
405 "*Whether to open up new windows in a tab or a new window. | |
406 If non-nil, then open the URL in a new tab rather than a new window if | |
407 `browse-url-firefox' is asked to open it in a new window. | |
408 | |
409 This option is currently ignored on MS-Windows, since the necessary | |
410 functionality is not available there." | |
411 :type 'boolean | |
412 :group 'browse-url) | |
413 | |
41460
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
414 (defcustom browse-url-galeon-new-window-is-tab nil |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
415 "*Whether to open up new windows in a tab or a new window. |
41460
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
416 If non-nil, then open the URL in a new tab rather than a new window if |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
417 `browse-url-galeon' is asked to open it in a new window." |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
418 :type 'boolean |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
419 :group 'browse-url) |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
420 |
88155 | 421 (defcustom browse-url-epiphany-new-window-is-tab nil |
422 "*Whether to open up new windows in a tab or a new window. | |
423 If non-nil, then open the URL in a new tab rather than a new window if | |
424 `browse-url-epiphany' is asked to open it in a new window." | |
425 :type 'boolean | |
426 :group 'browse-url) | |
427 | |
428 (defcustom browse-url-netscape-new-window-is-tab nil | |
429 "*Whether to open up new windows in a tab or a new window. | |
430 If non-nil, then open the URL in a new tab rather than a new | |
431 window if `browse-url-netscape' is asked to open it in a new | |
432 window." | |
433 :type 'boolean | |
434 :group 'browse-url) | |
435 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
436 (defcustom browse-url-new-window-flag nil |
28210 | 437 "*If non-nil, always open a new browser window with appropriate browsers. |
438 Passing an interactive argument to \\[browse-url], or specific browser | |
439 commands reverses the effect of this variable. Requires Netscape version | |
440 1.1N or later or XMosaic version 2.5 or later if using those browsers." | |
441 :type 'boolean | |
442 :group 'browse-url) | |
443 | |
444 (defcustom browse-url-mosaic-program "xmosaic" | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
445 "*The name by which to invoke Mosaic (or mMosaic)." |
28210 | 446 :type 'string |
447 :version "20.3" | |
448 :group 'browse-url) | |
449 | |
450 (defcustom browse-url-mosaic-arguments nil | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
451 "*A list of strings to pass to Mosaic as arguments." |
28210 | 452 :type '(repeat (string :tag "Argument")) |
453 :group 'browse-url) | |
454 | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
455 (defcustom browse-url-mosaic-pidfile "~/.mosaicpid" |
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
456 "*The name of the pidfile created by Mosaic." |
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
457 :type 'string |
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
458 :group 'browse-url) |
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
459 |
28210 | 460 (defcustom browse-url-filename-alist |
35008
392d90bba860
(browse-url-filename-alist): Avoid backquote
Dave Love <fx@gnu.org>
parents:
33417
diff
changeset
|
461 (\` ; Backquote syntax won't work. |
392d90bba860
(browse-url-filename-alist): Avoid backquote
Dave Love <fx@gnu.org>
parents:
33417
diff
changeset
|
462 (("^/\\(ftp@\\|anonymous@\\)?\\([^:]+\\):/*" . "ftp://\\2/") |
28210 | 463 ;; The above loses the username to avoid the browser prompting for |
464 ;; it in anonymous cases. If it's not anonymous the next regexp | |
465 ;; applies. | |
466 ("^/\\([^:@]+@\\)?\\([^:]+\\):/*" . "ftp://\\1\\2/") | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
49240
diff
changeset
|
467 (,@ (if (memq system-type '(windows-nt ms-dos cygwin)) |
37666
16a7e84d5ff3
(browse-url-filename-alist): Allow UNC file
Gerd Moellmann <gerd@gnu.org>
parents:
37378
diff
changeset
|
468 '(("^\\([a-zA-Z]:\\)[\\/]" . "file:\\1/") |
16a7e84d5ff3
(browse-url-filename-alist): Allow UNC file
Gerd Moellmann <gerd@gnu.org>
parents:
37378
diff
changeset
|
469 ("^[\\/][\\/]+" . "file://")))) |
35008
392d90bba860
(browse-url-filename-alist): Avoid backquote
Dave Love <fx@gnu.org>
parents:
33417
diff
changeset
|
470 ("^/+" . "file:/"))) |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
471 "*An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'. |
28210 | 472 Any substring of a filename matching one of the REGEXPs is replaced by |
473 the corresponding STRING using `replace-match', not treating STRING | |
474 literally. All pairs are applied in the order given. The default | |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
475 value converts ange-ftp/EFS-style paths into ftp URLs and prepends |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
476 `file:' to any path beginning with `/'. |
28210 | 477 |
478 For example, adding to the default a specific translation of an ange-ftp | |
479 address to an HTTP URL: | |
480 | |
481 (setq browse-url-filename-alist | |
482 '((\"/webmaster@webserver:/home/www/html/\" . | |
483 \"http://www.acme.co.uk/\") | |
484 (\"^/\\(ftp@\\|anonymous@\\)?\\([^:]+\\):/*\" . \"ftp://\\2/\") | |
485 (\"^/\\([^:@]+@\\)?\\([^:]+\\):/*\" . \"ftp://\\1\\2/\") | |
486 (\"^/+\" . \"file:/\"))) | |
487 " | |
488 :type '(repeat (cons :format "%v" | |
489 (regexp :tag "Regexp") | |
490 (string :tag "Replacement"))) | |
491 :version "20.3" | |
492 :group 'browse-url) | |
493 | |
494 (defcustom browse-url-save-file nil | |
495 "*If non-nil, save the buffer before displaying its file. | |
496 Used by the `browse-url-of-file' command." | |
497 :type 'boolean | |
498 :group 'browse-url) | |
499 | |
500 (defcustom browse-url-of-file-hook nil | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
501 "*Run after `browse-url-of-file' has asked a browser to load a file. |
28210 | 502 |
503 Set this to `browse-url-netscape-reload' to force Netscape to load the | |
504 file rather than displaying a cached copy." | |
505 :type 'hook | |
506 :options '(browse-url-netscape-reload) | |
507 :group 'browse-url) | |
508 | |
509 (defcustom browse-url-CCI-port 3003 | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
510 "*Port to access XMosaic via CCI. |
28210 | 511 This can be any number between 1024 and 65535 but must correspond to |
512 the value set in the browser." | |
513 :type 'integer | |
514 :group 'browse-url) | |
515 | |
516 (defcustom browse-url-CCI-host "localhost" | |
517 "*Host to access XMosaic via CCI. | |
518 This should be the host name of the machine running XMosaic with CCI | |
519 enabled. The port number should be set in `browse-url-CCI-port'." | |
520 :type 'string | |
521 :group 'browse-url) | |
522 | |
523 (defvar browse-url-temp-file-name nil) | |
524 (make-variable-buffer-local 'browse-url-temp-file-name) | |
525 | |
526 (defcustom browse-url-xterm-program "xterm" | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
527 "*The name of the terminal emulator used by `browse-url-lynx-xterm'. |
88155 | 528 This might, for instance, be a separate color version of xterm." |
28210 | 529 :type 'string |
530 :group 'browse-url) | |
531 | |
532 (defcustom browse-url-xterm-args nil | |
533 "*A list of strings defining options for `browse-url-xterm-program'. | |
534 These might set its size, for instance." | |
535 :type '(repeat (string :tag "Argument")) | |
536 :group 'browse-url) | |
537 | |
31909
36892782f26a
(browse-url-file-url): Check for null maps.
Sam Steingold <sds@gnu.org>
parents:
31575
diff
changeset
|
538 (defcustom browse-url-lynx-emacs-args (and (not window-system) |
28210 | 539 '("-show_cursor")) |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
540 "*A list of strings defining options for Lynx in an Emacs buffer. |
28210 | 541 |
542 The default is none in a window system, otherwise `-show_cursor' to | |
543 indicate the position of the current link in the absence of | |
544 highlighting, assuming the normal default for showing the cursor." | |
545 :type '(repeat (string :tag "Argument")) | |
546 :version "20.3" | |
547 :group 'browse-url) | |
548 | |
549 (defcustom browse-url-gnudoit-program "gnudoit" | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
550 "*The name of the `gnudoit' program used by `browse-url-w3-gnudoit'." |
28210 | 551 :type 'string |
552 :group 'browse-url) | |
553 | |
554 (defcustom browse-url-gnudoit-args '("-q") | |
555 "*A list of strings defining options for `browse-url-gnudoit-program'. | |
556 These might set the port, for instance." | |
557 :type '(repeat (string :tag "Argument")) | |
558 :group 'browse-url) | |
559 | |
560 (defcustom browse-url-generic-program nil | |
561 "*The name of the browser program used by `browse-url-generic'." | |
562 :type '(choice string (const :tag "None" nil)) | |
563 :group 'browse-url) | |
564 | |
565 (defcustom browse-url-generic-args nil | |
566 "*A list of strings defining options for `browse-url-generic-program'." | |
567 :type '(repeat (string :tag "Argument")) | |
568 :group 'browse-url) | |
569 | |
570 (defcustom browse-url-temp-dir temporary-file-directory | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
571 "*The name of a directory for browse-url's temporary files. |
28210 | 572 Such files are generated by functions like `browse-url-of-region'. |
573 You might want to set this to somewhere with restricted read permissions | |
574 for privacy's sake." | |
575 :type 'string | |
576 :group 'browse-url) | |
577 | |
578 (defcustom browse-url-netscape-version | |
579 3 | |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
580 "*The version of Netscape you are using. |
28210 | 581 This affects how URL reloading is done; the mechanism changed |
582 incompatibly at version 4." | |
583 :type 'number | |
584 :group 'browse-url) | |
585 | |
586 (defcustom browse-url-lynx-input-field 'avoid | |
587 "*Action on selecting an existing Lynx buffer at an input field. | |
588 What to do when sending a new URL to an existing Lynx buffer in Emacs | |
589 if the Lynx cursor is on an input field (in which case the `g' command | |
590 would be entered as data). Such fields are recognized by the | |
591 underlines ____. Allowed values: nil: disregard it, 'warn: warn the | |
592 user and don't emit the URL, 'avoid: try to avoid the field by moving | |
593 down (this *won't* always work)." | |
594 :type '(choice (const :tag "Move to try to avoid field" :value avoid) | |
595 (const :tag "Disregard" :value nil) | |
596 (const :tag "Warn, don't emit URL" :value warn)) | |
597 :version "20.3" | |
598 :group 'browse-url) | |
599 | |
46615
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
600 (defcustom browse-url-lynx-input-attempts 10 |
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
601 "*How many times to try to move down from a series of lynx input fields." |
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
602 :type 'integer |
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
603 :group 'browse-url) |
28210 | 604 |
605 (defcustom browse-url-lynx-input-delay 0.2 | |
46615
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
606 "*How many seconds to wait for lynx between moves down from an input field." |
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
607 :type 'number |
eb33dc994d58
(browse-url-lynx-input-attempts): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
45943
diff
changeset
|
608 :group 'browse-url) |
28210 | 609 |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
610 (defcustom browse-url-kde-program "kfmclient" |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
611 "*The name by which to invoke the KDE web browser." |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
612 :type 'string |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
613 :version "21.1" |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
614 :group 'browse-url) |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
615 |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
616 (defcustom browse-url-kde-args '("openURL") |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
617 "*A list of strings defining options for `browse-url-kde-program'." |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
618 :type '(repeat (string :tag "Argument")) |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
619 :group 'browse-url) |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
620 |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
621 (defvar browse-url-visited-urls nil |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
622 "A list of activated URLs that have been visited in a browser.") |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
623 |
28210 | 624 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
625 ;; URL input | |
626 | |
88155 | 627 ;;;###autoload |
28210 | 628 (defun browse-url-url-at-point () |
629 (let ((url (thing-at-point 'url))) | |
630 (set-text-properties 0 (length url) nil url) | |
631 url)) | |
632 | |
633 ;; Having this as a separate function called by the browser-specific | |
634 ;; functions allows them to be stand-alone commands, making it easier | |
635 ;; to switch between browsers. | |
636 | |
637 (defun browse-url-interactive-arg (prompt) | |
638 "Read a URL from the minibuffer, prompting with PROMPT. | |
88155 | 639 If `transient-mark-mode' is non-nil and the mark is active, |
640 it defaults to the current region, else to the URL at or before | |
641 point. If invoked with a mouse button, it moves point to the | |
642 position clicked before acting. | |
643 | |
644 This function returns a list (URL NEW-WINDOW-FLAG) | |
645 for use in `interactive'." | |
28210 | 646 (let ((event (elt (this-command-keys) 0))) |
647 (and (listp event) (mouse-set-point event))) | |
88155 | 648 (list (read-string prompt (or (and transient-mark-mode mark-active |
649 ;; rfc2396 Appendix E. | |
650 (replace-regexp-in-string | |
651 "[\t\r\f\n ]+" "" | |
652 (buffer-substring-no-properties | |
653 (region-beginning) (region-end)))) | |
654 (browse-url-url-at-point))) | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
655 (not (eq (null browse-url-new-window-flag) |
28210 | 656 (null current-prefix-arg))))) |
657 | |
88155 | 658 ;; called-interactive-p needs to be called at a function's top-level, hence |
659 ;; this macro. We use that rather than interactive-p because | |
660 ;; use in a keyboard macro should not change this behavior. | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
661 (defmacro browse-url-maybe-new-window (arg) |
88155 | 662 `(if (or noninteractive (not (called-interactively-p))) |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
663 ,arg |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
664 browse-url-new-window-flag)) |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
665 |
28210 | 666 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
667 ;; Browse current buffer | |
668 | |
669 ;;;###autoload | |
670 (defun browse-url-of-file (&optional file) | |
671 "Ask a WWW browser to display FILE. | |
672 Display the current buffer's file if FILE is nil or if called | |
673 interactively. Turn the filename into a URL with function | |
674 `browse-url-file-url'. Pass the URL to a browser using the | |
675 `browse-url' function then run `browse-url-of-file-hook'." | |
676 (interactive) | |
677 (or file | |
678 (setq file (buffer-file-name)) | |
679 (error "Current buffer has no file")) | |
680 (let ((buf (get-file-buffer file))) | |
681 (if buf | |
682 (save-excursion | |
683 (set-buffer buf) | |
684 (cond ((not (buffer-modified-p))) | |
685 (browse-url-save-file (save-buffer)) | |
686 (t (message "%s modified since last save" file)))))) | |
687 (browse-url (browse-url-file-url file)) | |
688 (run-hooks 'browse-url-of-file-hook)) | |
689 | |
690 (defun browse-url-file-url (file) | |
691 "Return the URL corresponding to FILE. | |
692 Use variable `browse-url-filename-alist' to map filenames to URLs." | |
693 ;; URL-encode special chars, do % first | |
694 (let ((s 0)) | |
695 (while (setq s (string-match "%" file s)) | |
696 (setq file (replace-match "%25" t t file) | |
697 s (1+ s)))) | |
698 (while (string-match "[*\"()',=;? ]" file) | |
699 (let ((enc (format "%%%x" (aref file (match-beginning 0))))) | |
700 (setq file (replace-match enc t t file)))) | |
31909
36892782f26a
(browse-url-file-url): Check for null maps.
Sam Steingold <sds@gnu.org>
parents:
31575
diff
changeset
|
701 (dolist (map browse-url-filename-alist) |
36892782f26a
(browse-url-file-url): Check for null maps.
Sam Steingold <sds@gnu.org>
parents:
31575
diff
changeset
|
702 (when (and map (string-match (car map) file)) |
36892782f26a
(browse-url-file-url): Check for null maps.
Sam Steingold <sds@gnu.org>
parents:
31575
diff
changeset
|
703 (setq file (replace-match (cdr map) t nil file)))) |
28210 | 704 file) |
705 | |
706 ;;;###autoload | |
707 (defun browse-url-of-buffer (&optional buffer) | |
708 "Ask a WWW browser to display BUFFER. | |
709 Display the current buffer if BUFFER is nil. Display only the | |
710 currently visible part of BUFFER (from a temporary file) if buffer is | |
711 narrowed." | |
712 (interactive) | |
713 (save-excursion | |
714 (and buffer (set-buffer buffer)) | |
715 (let ((file-name | |
716 ;; Ignore real name if restricted | |
717 (and (= (- (point-max) (point-min)) (buffer-size)) | |
718 (or buffer-file-name | |
719 (and (boundp 'dired-directory) dired-directory))))) | |
720 (or file-name | |
721 (progn | |
722 (or browse-url-temp-file-name | |
723 (setq browse-url-temp-file-name | |
724 (convert-standard-filename | |
725 (make-temp-file | |
88155 | 726 (expand-file-name "burl" browse-url-temp-dir) |
727 nil ".html")))) | |
28210 | 728 (setq file-name browse-url-temp-file-name) |
729 (write-region (point-min) (point-max) file-name nil 'no-message))) | |
730 (browse-url-of-file file-name)))) | |
731 | |
732 (defun browse-url-delete-temp-file (&optional temp-file-name) | |
733 ;; Delete browse-url-temp-file-name from the file system | |
734 ;; If optional arg TEMP-FILE-NAME is non-nil, delete it instead | |
735 (let ((file-name (or temp-file-name browse-url-temp-file-name))) | |
736 (if (and file-name (file-exists-p file-name)) | |
737 (delete-file file-name)))) | |
738 | |
739 (add-hook 'kill-buffer-hook 'browse-url-delete-temp-file) | |
740 | |
741 ;;;###autoload | |
742 (defun browse-url-of-dired-file () | |
743 "In Dired, ask a WWW browser to display the file named on this line." | |
744 (interactive) | |
745 (browse-url-of-file (dired-get-filename))) | |
746 | |
747 ;;;###autoload | |
748 (defun browse-url-of-region (min max) | |
749 "Ask a WWW browser to display the current region." | |
750 (interactive "r") | |
751 (save-excursion | |
752 (save-restriction | |
753 (narrow-to-region min max) | |
754 (browse-url-of-buffer)))) | |
755 | |
756 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
757 ;; Browser-independent commands | |
758 | |
759 ;; A generic command to call the current browse-url-browser-function | |
760 | |
761 ;;;###autoload | |
762 (defun browse-url (url &rest args) | |
763 "Ask a WWW browser to load URL. | |
764 Prompts for a URL, defaulting to the URL at or before point. Variable | |
765 `browse-url-browser-function' says which browser to use." | |
766 (interactive (browse-url-interactive-arg "URL: ")) | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
767 (unless (interactive-p) |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
768 (setq args (or args (list browse-url-new-window-flag)))) |
28210 | 769 (if (functionp browse-url-browser-function) |
770 (apply browse-url-browser-function url args) | |
771 ;; The `function' can be an alist; look down it for first match | |
772 ;; and apply the function (which might be a lambda). | |
773 (catch 'done | |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
774 (dolist (bf browse-url-browser-function) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
775 (when (string-match (car bf) url) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
776 (apply (cdr bf) url args) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
777 (throw 'done t))) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
778 (error "No browse-url-browser-function matching URL %s" |
28210 | 779 url)))) |
780 | |
781 ;;;###autoload | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
782 (defun browse-url-at-point (&optional arg) |
28210 | 783 "Ask a WWW browser to load the URL at or before point. |
784 Doesn't let you edit the URL like `browse-url'. Variable | |
785 `browse-url-browser-function' says which browser to use." | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
786 (interactive "P") |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
787 (let ((url (browse-url-url-at-point))) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
788 (if url |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
789 (progn |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
790 (browse-url url (if arg |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
791 (not browse-url-new-window-flag) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
792 browse-url-new-window-flag)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
793 (unless (member url browse-url-visited-urls) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
794 (setq browse-url-visited-urls |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
795 (append (list url) browse-url-visited-urls)))) |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
796 (error "No URL found")))) |
28210 | 797 |
798 ;;;###autoload | |
799 (defun browse-url-at-mouse (event) | |
800 "Ask a WWW browser to load a URL clicked with the mouse. | |
801 The URL is the one around or before the position of the mouse click | |
802 but point is not changed. Doesn't let you edit the URL like | |
803 `browse-url'. Variable `browse-url-browser-function' says which browser | |
804 to use." | |
805 (interactive "e") | |
806 (save-excursion | |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
807 (mouse-set-point event) |
45943
b699a283b3fa
(browse-url-at-mouse): Don't pass an arg to browse-url-at-point.
Richard M. Stallman <rms@gnu.org>
parents:
43980
diff
changeset
|
808 ;; This handles browse-url-new-window-flag properly |
b699a283b3fa
(browse-url-at-mouse): Don't pass an arg to browse-url-at-point.
Richard M. Stallman <rms@gnu.org>
parents:
43980
diff
changeset
|
809 ;; when it gets no arg. |
b699a283b3fa
(browse-url-at-mouse): Don't pass an arg to browse-url-at-point.
Richard M. Stallman <rms@gnu.org>
parents:
43980
diff
changeset
|
810 (browse-url-at-point))) |
28210 | 811 |
812 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
813 ;; Browser-specific commands | |
814 | |
815 ;; --- Default MS-Windows browser --- | |
816 | |
88155 | 817 (defvar dos-windows-version) |
818 | |
28210 | 819 (defun browse-url-default-windows-browser (url &optional new-window) |
820 (interactive (browse-url-interactive-arg "URL: ")) | |
38271
bb01ee99b910
(browse-url-default-windows-browser): Support
Eli Zaretskii <eliz@gnu.org>
parents:
37803
diff
changeset
|
821 (if (eq system-type 'ms-dos) |
bb01ee99b910
(browse-url-default-windows-browser): Support
Eli Zaretskii <eliz@gnu.org>
parents:
37803
diff
changeset
|
822 (if dos-windows-version |
bb01ee99b910
(browse-url-default-windows-browser): Support
Eli Zaretskii <eliz@gnu.org>
parents:
37803
diff
changeset
|
823 (shell-command (concat "start " (shell-quote-argument url))) |
bb01ee99b910
(browse-url-default-windows-browser): Support
Eli Zaretskii <eliz@gnu.org>
parents:
37803
diff
changeset
|
824 (error "Browsing URLs is not supported on this system")) |
bb01ee99b910
(browse-url-default-windows-browser): Support
Eli Zaretskii <eliz@gnu.org>
parents:
37803
diff
changeset
|
825 (w32-shell-execute "open" url))) |
28210 | 826 |
88155 | 827 (defun browse-url-default-macosx-browser (url &optional new-window) |
828 (interactive (browse-url-interactive-arg "URL: ")) | |
829 (start-process (concat "open " url) nil "open" url)) | |
830 | |
28210 | 831 ;; --- Netscape --- |
832 | |
833 (defun browse-url-process-environment () | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
834 "Set DISPLAY in the environment to the X display the browser will use. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
835 This is either the value of variable `browse-url-browser-display' if |
28210 | 836 non-nil, or the same display as Emacs if different from the current |
837 environment, otherwise just use the current environment." | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
838 (let ((display (or browse-url-browser-display (browse-url-emacs-display)))) |
28210 | 839 (if display |
840 (cons (concat "DISPLAY=" display) process-environment) | |
841 process-environment))) | |
842 | |
843 (defun browse-url-emacs-display () | |
844 "Return the X display Emacs is running on. | |
845 This is nil if the display is the same as the DISPLAY environment variable. | |
846 | |
847 Actually Emacs could be using several displays; this just returns the | |
848 one showing the selected frame." | |
849 (let ((display (cdr-safe (assq 'display (frame-parameters))))) | |
850 (and (not (equal display (getenv "DISPLAY"))) | |
851 display))) | |
852 | |
853 ;;;###autoload | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
854 (defun browse-url-default-browser (url &rest args) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
855 "Find a suitable browser and ask it to load URL. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
856 Default to the URL around or before point. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
857 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
858 When called interactively, if variable `browse-url-new-window-flag' is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
859 non-nil, load the document in a new window, if possible, otherwise use |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
860 a random existing one. A non-nil interactive prefix argument reverses |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
861 the effect of `browse-url-new-window-flag'. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
862 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
863 When called non-interactively, optional second argument NEW-WINDOW is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
864 used instead of `browse-url-new-window-flag'. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
865 |
88155 | 866 The order attempted is gnome-moz-remote, Mozilla, Firefox, |
867 Galeon, Konqueror, Netscape, Mosaic, IXI Mosaic, Lynx in an | |
868 xterm, MMM, and then W3." | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
869 (apply |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
870 (cond |
88155 | 871 ((executable-find browse-url-gnome-moz-program) 'browse-url-gnome-moz) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
872 ((executable-find browse-url-mozilla-program) 'browse-url-mozilla) |
88155 | 873 ((executable-find browse-url-firefox-program) 'browse-url-firefox) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
874 ((executable-find browse-url-galeon-program) 'browse-url-galeon) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
875 ((executable-find browse-url-kde-program) 'browse-url-kde) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
876 ((executable-find browse-url-netscape-program) 'browse-url-netscape) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
877 ((executable-find browse-url-mosaic-program) 'browse-url-mosaic) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
878 ((executable-find "tellw3b") 'browse-url-iximosaic) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
879 ((executable-find browse-url-xterm-program) 'browse-url-lynx-xterm) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
880 ((executable-find "mmm") 'browse-url-mmm) |
88155 | 881 ((locate-library "w3") 'browse-url-w3) |
882 (t | |
883 (lambda (&ignore args) (error "No usable browser found")))) | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
884 url args)) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
885 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
886 ;;;###autoload |
28210 | 887 (defun browse-url-netscape (url &optional new-window) |
888 "Ask the Netscape WWW browser to load URL. | |
889 Default to the URL around or before point. The strings in variable | |
890 `browse-url-netscape-arguments' are also passed to Netscape. | |
891 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
892 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 893 non-nil, load the document in a new Netscape window, otherwise use a |
894 random existing one. A non-nil interactive prefix argument reverses | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
895 the effect of `browse-url-new-window-flag'. |
28210 | 896 |
88155 | 897 If `browse-url-netscape-new-window-is-tab' is non-nil, then |
898 whenever a document would otherwise be loaded in a new window, it | |
899 is loaded in a new tab in an existing window instead. | |
900 | |
28210 | 901 When called non-interactively, optional second argument NEW-WINDOW is |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
902 used instead of `browse-url-new-window-flag'." |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
903 (interactive (browse-url-interactive-arg "URL: ")) |
28210 | 904 ;; URL encode any `confusing' characters in the URL. This needs to |
88155 | 905 ;; include at least commas; presumably also close parens and dollars. |
906 (while (string-match "[,)$]" url) | |
28210 | 907 (setq url (replace-match |
908 (format "%%%x" (string-to-char (match-string 0 url))) t t url))) | |
909 (let* ((process-environment (browse-url-process-environment)) | |
88155 | 910 (process |
911 (apply 'start-process | |
912 (concat "netscape " url) nil | |
913 browse-url-netscape-program | |
914 (append | |
915 browse-url-netscape-arguments | |
916 (if (eq window-system 'w32) | |
917 (list url) | |
918 (append | |
919 (if new-window '("-noraise")) | |
920 (list "-remote" | |
921 (concat "openURL(" url | |
922 (if (browse-url-maybe-new-window | |
923 new-window) | |
924 (if browse-url-netscape-new-window-is-tab | |
925 ",new-tab" | |
926 ",new-window")) | |
927 ")")))))))) | |
28210 | 928 (set-process-sentinel process |
30798
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
929 `(lambda (process change) |
8884b93379ef
(browse-url-filename-alist): Add a clause for
Dave Love <fx@gnu.org>
parents:
28330
diff
changeset
|
930 (browse-url-netscape-sentinel process ,url))))) |
28210 | 931 |
932 (defun browse-url-netscape-sentinel (process url) | |
933 "Handle a change to the process communicating with Netscape." | |
934 (or (eq (process-exit-status process) 0) | |
935 (let* ((process-environment (browse-url-process-environment))) | |
936 ;; Netscape not running - start it | |
88155 | 937 (message "Starting %s..." browse-url-netscape-program) |
28210 | 938 (apply 'start-process (concat "netscape" url) nil |
939 browse-url-netscape-program | |
940 (append browse-url-netscape-startup-arguments (list url)))))) | |
941 | |
942 (defun browse-url-netscape-reload () | |
943 "Ask Netscape to reload its current document. | |
944 How depends on `browse-url-netscape-version'." | |
945 (interactive) | |
946 ;; Backwards incompatibility reported by | |
947 ;; <peter.kruse@psychologie.uni-regensburg.de>. | |
948 (browse-url-netscape-send (if (>= browse-url-netscape-version 4) | |
949 "xfeDoCommand(reload)" | |
950 "reload"))) | |
951 | |
952 (defun browse-url-netscape-send (command) | |
953 "Send a remote control command to Netscape." | |
954 (let* ((process-environment (browse-url-process-environment))) | |
955 (apply 'start-process "netscape" nil | |
956 browse-url-netscape-program | |
957 (append browse-url-netscape-arguments | |
958 (list "-remote" command))))) | |
959 | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
960 ;;;###autoload |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
961 (defun browse-url-mozilla (url &optional new-window) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
962 "Ask the Mozilla WWW browser to load URL. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
963 Default to the URL around or before point. The strings in variable |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
964 `browse-url-mozilla-arguments' are also passed to Mozilla. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
965 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
966 When called interactively, if variable `browse-url-new-window-flag' is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
967 non-nil, load the document in a new Mozilla window, otherwise use a |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
968 random existing one. A non-nil interactive prefix argument reverses |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
969 the effect of `browse-url-new-window-flag'. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
970 |
47844
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
971 If `browse-url-mozilla-new-window-is-tab' is non-nil, then whenever a |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
972 document would otherwise be loaded in a new window, it is loaded in a |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
973 new tab in an existing window instead. |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
974 |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
975 When called non-interactively, optional second argument NEW-WINDOW is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
976 used instead of `browse-url-new-window-flag'." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
977 (interactive (browse-url-interactive-arg "URL: ")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
978 ;; URL encode any `confusing' characters in the URL. This needs to |
88155 | 979 ;; include at least commas; presumably also close parens and dollars. |
980 (while (string-match "[,)$]" url) | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
981 (setq url (replace-match |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
982 (format "%%%x" (string-to-char (match-string 0 url))) t t url))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
983 (let* ((process-environment (browse-url-process-environment)) |
47844
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
984 (process |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
985 (apply 'start-process |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
986 (concat "mozilla " url) nil |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
987 browse-url-mozilla-program |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
988 (append |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
989 browse-url-mozilla-arguments |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
990 (list "-remote" |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
991 (concat "openURL(" |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
992 url |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
993 (if (browse-url-maybe-new-window |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
994 new-window) |
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
995 (if browse-url-mozilla-new-window-is-tab |
88155 | 996 ",new-tab" |
997 ",new-window")) | |
47844
d289d703471d
* browse-url.el (browse-url-mozilla): Doc fix.
Simon Josefsson <jas@extundo.com>
parents:
46615
diff
changeset
|
998 ")")))))) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
999 (set-process-sentinel process |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1000 `(lambda (process change) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1001 (browse-url-mozilla-sentinel process ,url))))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1002 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1003 (defun browse-url-mozilla-sentinel (process url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1004 "Handle a change to the process communicating with Mozilla." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1005 (or (eq (process-exit-status process) 0) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1006 (let* ((process-environment (browse-url-process-environment))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1007 ;; Mozilla is not running - start it |
88155 | 1008 (message "Starting %s..." browse-url-mozilla-program) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1009 (apply 'start-process (concat "mozilla " url) nil |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1010 browse-url-mozilla-program |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1011 (append browse-url-mozilla-startup-arguments (list url)))))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1012 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1013 ;;;###autoload |
88155 | 1014 (defun browse-url-firefox (url &optional new-window) |
1015 "Ask the Firefox WWW browser to load URL. | |
1016 Default to the URL around or before point. The strings in | |
1017 variable `browse-url-firefox-arguments' are also passed to | |
1018 Firefox. | |
1019 | |
1020 When called interactively, if variable | |
1021 `browse-url-new-window-flag' is non-nil, load the document in a | |
1022 new Firefox window, otherwise use a random existing one. A | |
1023 non-nil interactive prefix argument reverses the effect of | |
1024 `browse-url-new-window-flag'. | |
1025 | |
1026 If `browse-url-firefox-new-window-is-tab' is non-nil, then | |
1027 whenever a document would otherwise be loaded in a new window, it | |
1028 is loaded in a new tab in an existing window instead. | |
1029 | |
1030 When called non-interactively, optional second argument | |
1031 NEW-WINDOW is used instead of `browse-url-new-window-flag'. | |
1032 | |
1033 On MS-Windows systems the optional `new-window' parameter is | |
1034 ignored. Firefox for Windows does not support the \"-remote\" | |
1035 command line parameter. Therefore, the | |
1036 `browse-url-new-window-flag' and `browse-url-firefox-new-window-is-tab' | |
1037 are ignored as well. Firefox on Windows will always open the requested | |
1038 URL in a new window." | |
1039 (interactive (browse-url-interactive-arg "URL: ")) | |
1040 ;; URL encode any `confusing' characters in the URL. This needs to | |
1041 ;; include at least commas; presumably also close parens. | |
1042 (while (string-match "[,)]" url) | |
1043 (setq url (replace-match | |
1044 (format "%%%x" (string-to-char (match-string 0 url))) t t url))) | |
1045 (let* ((process-environment (browse-url-process-environment)) | |
1046 (process | |
1047 (apply 'start-process | |
1048 (concat "firefox " url) nil | |
1049 browse-url-firefox-program | |
1050 (append | |
1051 browse-url-firefox-arguments | |
1052 (if (or (featurep 'dos-w32) | |
1053 (string-match "win32" system-configuration)) | |
1054 (list url) | |
1055 (list "-remote" | |
1056 (concat "openURL(" | |
1057 url | |
1058 (if (browse-url-maybe-new-window | |
1059 new-window) | |
1060 (if browse-url-firefox-new-window-is-tab | |
1061 ",new-tab" | |
1062 ",new-window")) | |
1063 ")"))))))) | |
1064 (set-process-sentinel process | |
1065 `(lambda (process change) | |
1066 (browse-url-firefox-sentinel process ,url))))) | |
1067 | |
1068 (defun browse-url-firefox-sentinel (process url) | |
1069 "Handle a change to the process communicating with Firefox." | |
1070 (or (eq (process-exit-status process) 0) | |
1071 (let* ((process-environment (browse-url-process-environment))) | |
1072 ;; Firefox is not running - start it | |
1073 (message "Starting Firefox...") | |
1074 (apply 'start-process (concat "firefox " url) nil | |
1075 browse-url-firefox-program | |
1076 (append browse-url-firefox-startup-arguments (list url)))))) | |
1077 | |
1078 ;;;###autoload | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1079 (defun browse-url-galeon (url &optional new-window) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1080 "Ask the Galeon WWW browser to load URL. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1081 Default to the URL around or before point. The strings in variable |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1082 `browse-url-galeon-arguments' are also passed to Galeon. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1083 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1084 When called interactively, if variable `browse-url-new-window-flag' is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1085 non-nil, load the document in a new Galeon window, otherwise use a |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1086 random existing one. A non-nil interactive prefix argument reverses |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1087 the effect of `browse-url-new-window-flag'. |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1088 |
43778
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1089 If `browse-url-galeon-new-window-is-tab' is non-nil, then whenever a |
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1090 document would otherwise be loaded in a new window, it is loaded in a |
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1091 new tab in an existing window instead. |
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1092 |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1093 When called non-interactively, optional second argument NEW-WINDOW is |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1094 used instead of `browse-url-new-window-flag'." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1095 (interactive (browse-url-interactive-arg "URL: ")) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1096 ;; URL encode any `confusing' characters in the URL. This needs to |
88155 | 1097 ;; include at least commas; presumably also close parens and dollars. |
1098 (while (string-match "[,)$]" url) | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1099 (setq url (replace-match |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1100 (format "%%%x" (string-to-char (match-string 0 url))) t t url))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1101 (let* ((process-environment (browse-url-process-environment)) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1102 (process (apply 'start-process |
88155 | 1103 (concat "galeon " url) |
1104 nil | |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1105 browse-url-galeon-program |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1106 (append |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1107 browse-url-galeon-arguments |
41460
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
1108 (if (browse-url-maybe-new-window new-window) |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
1109 (if browse-url-galeon-new-window-is-tab |
cdee72f7332b
(browse-url-galeon-new-window-is-tab): New var.
Richard M. Stallman <rms@gnu.org>
parents:
41282
diff
changeset
|
1110 '("--new-tab") |
43778
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1111 '("--new-window" "--noraise")) |
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1112 '("--existing")) |
21f583da1eac
(browse-url-galeon): Specify --existing for an existing window.
Richard M. Stallman <rms@gnu.org>
parents:
43416
diff
changeset
|
1113 (list url))))) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1114 (set-process-sentinel process |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1115 `(lambda (process change) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1116 (browse-url-galeon-sentinel process ,url))))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1117 |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1118 (defun browse-url-galeon-sentinel (process url) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1119 "Handle a change to the process communicating with Galeon." |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1120 (or (eq (process-exit-status process) 0) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1121 (let* ((process-environment (browse-url-process-environment))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1122 ;; Galeon is not running - start it |
88155 | 1123 (message "Starting %s..." browse-url-galeon-program) |
41282
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1124 (apply 'start-process (concat "galeon " url) nil |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1125 browse-url-galeon-program |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1126 (append browse-url-galeon-startup-arguments (list url)))))) |
c5d2c3683efb
Support Mozilla and Galeon.
Richard M. Stallman <rms@gnu.org>
parents:
38436
diff
changeset
|
1127 |
88155 | 1128 (defun browse-url-epiphany (url &optional new-window) |
1129 "Ask the Epiphany WWW browser to load URL. | |
1130 Default to the URL around or before point. The strings in variable | |
1131 `browse-url-galeon-arguments' are also passed to Epiphany. | |
1132 | |
1133 When called interactively, if variable `browse-url-new-window-flag' is | |
1134 non-nil, load the document in a new Epiphany window, otherwise use a | |
1135 random existing one. A non-nil interactive prefix argument reverses | |
1136 the effect of `browse-url-new-window-flag'. | |
1137 | |
1138 If `browse-url-epiphany-new-window-is-tab' is non-nil, then whenever a | |
1139 document would otherwise be loaded in a new window, it is loaded in a | |
1140 new tab in an existing window instead. | |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1141 |
88155 | 1142 When called non-interactively, optional second argument NEW-WINDOW is |
1143 used instead of `browse-url-new-window-flag'." | |
1144 (interactive (browse-url-interactive-arg "URL: ")) | |
1145 ;; URL encode any `confusing' characters in the URL. This needs to | |
1146 ;; include at least commas; presumably also close parens and dollars. | |
1147 (while (string-match "[,)$]" url) | |
1148 (setq url (replace-match | |
1149 (format "%%%x" (string-to-char (match-string 0 url))) t t url))) | |
1150 (let* ((process-environment (browse-url-process-environment)) | |
1151 (process (apply 'start-process | |
1152 (concat "epiphany " url) | |
1153 nil | |
1154 browse-url-epiphany-program | |
1155 (append | |
1156 browse-url-epiphany-arguments | |
1157 (if (browse-url-maybe-new-window new-window) | |
1158 (if browse-url-epiphany-new-window-is-tab | |
1159 '("--new-tab") | |
1160 '("--new-window" "--noraise")) | |
1161 '("--existing")) | |
1162 (list url))))) | |
1163 (set-process-sentinel process | |
1164 `(lambda (process change) | |
1165 (browse-url-epiphany-sentinel process ,url))))) | |
1166 | |
1167 (defun browse-url-epiphany-sentinel (process url) | |
1168 "Handle a change to the process communicating with Epiphany." | |
1169 (or (eq (process-exit-status process) 0) | |
1170 (let* ((process-environment (browse-url-process-environment))) | |
1171 ;; Epiphany is not running - start it | |
1172 (message "Starting %s..." browse-url-epiphany-program) | |
1173 (apply 'start-process (concat "epiphany " url) nil | |
1174 browse-url-epiphany-program | |
1175 (append browse-url-epiphany-startup-arguments (list url)))))) | |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1176 |
32246
851690316add
(browse-url-browser-function): Use it.
Dave Love <fx@gnu.org>
parents:
32245
diff
changeset
|
1177 ;;;###autoload |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1178 (defun browse-url-gnome-moz (url &optional new-window) |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1179 "Ask Mozilla/Netscape to load URL via the GNOME program `gnome-moz-remote'. |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1180 Default to the URL around or before point. The strings in variable |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1181 `browse-url-gnome-moz-arguments' are also passed. |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1182 |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1183 When called interactively, if variable `browse-url-new-window-flag' is |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1184 non-nil, load the document in a new browser window, otherwise use an |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1185 existing one. A non-nil interactive prefix argument reverses the |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1186 effect of `browse-url-new-window-flag'. |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1187 |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1188 When called non-interactively, optional second argument NEW-WINDOW is |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1189 used instead of `browse-url-new-window-flag'." |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
49240
diff
changeset
|
1190 (interactive (browse-url-interactive-arg "URL: ")) |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1191 (apply 'start-process (concat "gnome-moz-remote " url) |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1192 nil |
88155 | 1193 browse-url-gnome-moz-program |
32245
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1194 (append |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1195 browse-url-gnome-moz-arguments |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1196 (if (browse-url-maybe-new-window new-window) |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1197 '("--newwin")) |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1198 (list "--raise" url)))) |
d35dba8183fd
(browse-url-gnome-moz-arguments): New option.
Dave Love <fx@gnu.org>
parents:
31909
diff
changeset
|
1199 |
28210 | 1200 ;; --- Mosaic --- |
1201 | |
1202 ;;;###autoload | |
1203 (defun browse-url-mosaic (url &optional new-window) | |
1204 "Ask the XMosaic WWW browser to load URL. | |
1205 | |
1206 Default to the URL around or before point. The strings in variable | |
1207 `browse-url-mosaic-arguments' are also passed to Mosaic and the | |
1208 program is invoked according to the variable | |
1209 `browse-url-mosaic-program'. | |
1210 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1211 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 1212 non-nil, load the document in a new Mosaic window, otherwise use a |
1213 random existing one. A non-nil interactive prefix argument reverses | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1214 the effect of `browse-url-new-window-flag'. |
28210 | 1215 |
1216 When called non-interactively, optional second argument NEW-WINDOW is | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1217 used instead of `browse-url-new-window-flag'." |
28210 | 1218 (interactive (browse-url-interactive-arg "Mosaic URL: ")) |
43980
f631e828090d
Put * in user option doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
43778
diff
changeset
|
1219 (let ((pidfile (expand-file-name browse-url-mosaic-pidfile)) |
28210 | 1220 pid) |
1221 (if (file-readable-p pidfile) | |
1222 (save-excursion | |
1223 (find-file pidfile) | |
1224 (goto-char (point-min)) | |
1225 (setq pid (read (current-buffer))) | |
1226 (kill-buffer nil))) | |
1227 (if (and pid (zerop (signal-process pid 0))) ; Mosaic running | |
1228 (save-excursion | |
1229 (find-file (format "/tmp/Mosaic.%d" pid)) | |
1230 (erase-buffer) | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1231 (insert (if (browse-url-maybe-new-window new-window) |
28210 | 1232 "newwin\n" |
1233 "goto\n") | |
1234 url "\n") | |
1235 (save-buffer) | |
1236 (kill-buffer nil) | |
1237 ;; Send signal SIGUSR to Mosaic | |
88155 | 1238 (message "Signaling Mosaic...") |
1239 (signal-process pid 'SIGUSR1) | |
28210 | 1240 ;; Or you could try: |
1241 ;; (call-process "kill" nil 0 nil "-USR1" (int-to-string pid)) | |
88155 | 1242 (message "Signaling Mosaic...done") |
28210 | 1243 ) |
1244 ;; Mosaic not running - start it | |
88155 | 1245 (message "Starting %s..." browse-url-mosaic-program) |
28210 | 1246 (apply 'start-process "xmosaic" nil browse-url-mosaic-program |
1247 (append browse-url-mosaic-arguments (list url))) | |
88155 | 1248 (message "Starting %s...done" browse-url-mosaic-program)))) |
28210 | 1249 |
1250 ;; --- Grail --- | |
1251 | |
1252 (defvar browse-url-grail | |
1253 (concat (or (getenv "GRAILDIR") "~/.grail") "/user/rcgrail.py") | |
1254 "Location of Grail remote control client script `rcgrail.py'. | |
1255 Typically found in $GRAILDIR/rcgrail.py, or ~/.grail/user/rcgrail.py.") | |
1256 | |
1257 ;;;###autoload | |
1258 (defun browse-url-grail (url &optional new-window) | |
1259 "Ask the Grail WWW browser to load URL. | |
1260 Default to the URL around or before point. Runs the program in the | |
1261 variable `browse-url-grail'." | |
1262 (interactive (browse-url-interactive-arg "Grail URL: ")) | |
1263 (message "Sending URL to Grail...") | |
1264 (save-excursion | |
1265 (set-buffer (get-buffer-create " *Shell Command Output*")) | |
1266 (erase-buffer) | |
1267 ;; don't worry about this failing. | |
42697
8ecfd38df30d
(browse-url-grail): Use browse-url-maybe-new-window.
Richard M. Stallman <rms@gnu.org>
parents:
41460
diff
changeset
|
1268 (if (browse-url-maybe-new-window new-window) |
28210 | 1269 (call-process browse-url-grail nil 0 nil "-b" url) |
1270 (call-process browse-url-grail nil 0 nil url)) | |
1271 (message "Sending URL to Grail... done"))) | |
1272 | |
1273 ;; --- Mosaic using CCI --- | |
1274 | |
1275 ;;;###autoload | |
1276 (defun browse-url-cci (url &optional new-window) | |
1277 "Ask the XMosaic WWW browser to load URL. | |
1278 Default to the URL around or before point. | |
1279 | |
1280 This function only works for XMosaic version 2.5 or later. You must | |
1281 select `CCI' from XMosaic's File menu, set the CCI Port Address to the | |
1282 value of variable `browse-url-CCI-port', and enable `Accept requests'. | |
1283 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1284 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 1285 non-nil, load the document in a new browser window, otherwise use a |
1286 random existing one. A non-nil interactive prefix argument reverses | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1287 the effect of `browse-url-new-window-flag'. |
28210 | 1288 |
1289 When called non-interactively, optional second argument NEW-WINDOW is | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1290 used instead of `browse-url-new-window-flag'." |
28210 | 1291 (interactive (browse-url-interactive-arg "Mosaic URL: ")) |
1292 (open-network-stream "browse-url" " *browse-url*" | |
1293 browse-url-CCI-host browse-url-CCI-port) | |
1294 ;; Todo: start browser if fails | |
1295 (process-send-string "browse-url" | |
1296 (concat "get url (" url ") output " | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1297 (if (browse-url-maybe-new-window new-window) |
28210 | 1298 "new" |
1299 "current") | |
1300 "\r\n")) | |
1301 (process-send-string "browse-url" "disconnect\r\n") | |
1302 (delete-process "browse-url")) | |
1303 | |
1304 ;; --- IXI Mosaic --- | |
1305 | |
1306 ;;;###autoload | |
1307 (defun browse-url-iximosaic (url &optional new-window) | |
1308 ;; new-window ignored | |
1309 "Ask the IXIMosaic WWW browser to load URL. | |
1310 Default to the URL around or before point." | |
1311 (interactive (browse-url-interactive-arg "IXI Mosaic URL: ")) | |
1312 (start-process "tellw3b" nil "tellw3b" | |
1313 "-service WWW_BROWSER ixi_showurl " url)) | |
1314 | |
1315 ;; --- W3 --- | |
1316 | |
1317 ;;;###autoload | |
1318 (defun browse-url-w3 (url &optional new-window) | |
1319 "Ask the w3 WWW browser to load URL. | |
1320 Default to the URL around or before point. | |
1321 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1322 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 1323 non-nil, load the document in a new window. A non-nil interactive |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1324 prefix argument reverses the effect of `browse-url-new-window-flag'. |
28210 | 1325 |
1326 When called non-interactively, optional second argument NEW-WINDOW is | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1327 used instead of `browse-url-new-window-flag'." |
28210 | 1328 (interactive (browse-url-interactive-arg "W3 URL: ")) |
1329 (require 'w3) ; w3-fetch-other-window not autoloaded | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1330 (if (browse-url-maybe-new-window new-window) |
28210 | 1331 (w3-fetch-other-window url) |
1332 (w3-fetch url))) | |
1333 | |
1334 ;;;###autoload | |
1335 (defun browse-url-w3-gnudoit (url &optional new-window) | |
1336 ;; new-window ignored | |
1337 "Ask another Emacs running gnuserv to load the URL using the W3 browser. | |
1338 The `browse-url-gnudoit-program' program is used with options given by | |
1339 `browse-url-gnudoit-args'. Default to the URL around or before point." | |
1340 (interactive (browse-url-interactive-arg "W3 URL: ")) | |
1341 (apply 'start-process (concat "gnudoit:" url) nil | |
1342 browse-url-gnudoit-program | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1343 (append browse-url-gnudoit-args |
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1344 (list (concat "(w3-fetch \"" url "\")") |
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1345 "(raise-frame)")))) |
28210 | 1346 |
1347 ;; --- Lynx in an xterm --- | |
1348 | |
1349 ;;;###autoload | |
1350 (defun browse-url-lynx-xterm (url &optional new-window) | |
1351 ;; new-window ignored | |
1352 "Ask the Lynx WWW browser to load URL. | |
1353 Default to the URL around or before point. A new Lynx process is run | |
1354 in an Xterm window using the Xterm program named by `browse-url-xterm-program' | |
1355 with possible additional arguments `browse-url-xterm-args'." | |
1356 (interactive (browse-url-interactive-arg "Lynx URL: ")) | |
1357 (apply #'start-process `(,(concat "lynx" url) nil ,browse-url-xterm-program | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1358 ,@browse-url-xterm-args "-e" "lynx" |
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1359 ,url))) |
28210 | 1360 |
1361 ;; --- Lynx in an Emacs "term" window --- | |
1362 | |
1363 ;;;###autoload | |
1364 (defun browse-url-lynx-emacs (url &optional new-buffer) | |
1365 "Ask the Lynx WWW browser to load URL. | |
1366 Default to the URL around or before point. With a prefix argument, run | |
1367 a new Lynx process in a new buffer. | |
1368 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1369 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 1370 non-nil, load the document in a new lynx in a new term window, |
1371 otherwise use any existing one. A non-nil interactive prefix argument | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1372 reverses the effect of `browse-url-new-window-flag'. |
28210 | 1373 |
1374 When called non-interactively, optional second argument NEW-WINDOW is | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1375 used instead of `browse-url-new-window-flag'." |
28210 | 1376 (interactive (browse-url-interactive-arg "Lynx URL: ")) |
1377 (let* ((system-uses-terminfo t) ; Lynx uses terminfo | |
1378 ;; (term-term-name "vt100") ; ?? | |
1379 (buf (get-buffer "*lynx*")) | |
1380 (proc (and buf (get-buffer-process buf))) | |
1381 (n browse-url-lynx-input-attempts)) | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1382 (if (and (browse-url-maybe-new-window new-buffer) buf) |
28210 | 1383 ;; Rename away the OLD buffer. This isn't very polite, but |
1384 ;; term insists on working in a buffer named *lynx* and would | |
1385 ;; choke on *lynx*<1> | |
1386 (progn (set-buffer buf) | |
1387 (rename-uniquely))) | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1388 (if (or (browse-url-maybe-new-window new-buffer) |
28210 | 1389 (not buf) |
1390 (not proc) | |
1391 (not (memq (process-status proc) '(run stop)))) | |
1392 ;; start a new lynx | |
1393 (progn | |
1394 (setq buf | |
1395 (apply #'make-term | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1396 `("lynx" "lynx" nil ,@browse-url-lynx-emacs-args |
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1397 ,url))) |
28210 | 1398 (switch-to-buffer buf) |
1399 (term-char-mode) | |
1400 (set-process-sentinel | |
1401 (get-buffer-process buf) | |
1402 ;; Don't leave around a dead one (especially because of its | |
1403 ;; munged keymap.) | |
1404 (lambda (process event) | |
1405 (if (not (memq (process-status process) '(run stop))) | |
1406 (let ((buf (process-buffer process))) | |
1407 (if buf (kill-buffer buf))))))) | |
1408 ;; send the url to lynx in the old buffer | |
1409 (let ((win (get-buffer-window buf t))) | |
1410 (if win | |
1411 (select-window win) | |
1412 (switch-to-buffer buf))) | |
1413 (if (eq (following-char) ?_) | |
1414 (cond ((eq browse-url-lynx-input-field 'warn) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38271
diff
changeset
|
1415 (error "Please move out of the input field first")) |
28210 | 1416 ((eq browse-url-lynx-input-field 'avoid) |
1417 (while (and (eq (following-char) ?_) (> n 0)) | |
1418 (term-send-down) ; down arrow | |
1419 (sit-for browse-url-lynx-input-delay)) | |
1420 (if (eq (following-char) ?_) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38271
diff
changeset
|
1421 (error "Cannot move out of the input field, sorry"))))) |
28210 | 1422 (term-send-string proc (concat "g" ; goto |
1423 "\C-u" ; kill default url | |
1424 url | |
1425 "\r"))))) | |
1426 | |
1427 ;; --- MMM --- | |
1428 | |
1429 ;;;###autoload | |
1430 (defun browse-url-mmm (url &optional new-window) | |
1431 "Ask the MMM WWW browser to load URL. | |
1432 Default to the URL around or before point." | |
1433 (interactive (browse-url-interactive-arg "MMM URL: ")) | |
1434 (message "Sending URL to MMM...") | |
1435 (save-excursion | |
1436 (set-buffer (get-buffer-create " *Shell Command Output*")) | |
1437 (erase-buffer) | |
1438 ;; mmm_remote just SEGVs if the file isn't there... | |
1439 (if (or (file-exists-p (expand-file-name "~/.mmm_remote")) | |
1440 ;; location in v 0.4: | |
1441 (file-exists-p (expand-file-name "~/.mmm/remote"))) | |
1442 (call-process "mmm_remote" nil 0 nil url) | |
1443 (call-process "mmm" nil 0 nil "-external" url)) | |
1444 (message "Sending URL to MMM... done"))) | |
1445 | |
1446 ;; --- mailto --- | |
1447 | |
88155 | 1448 (autoload 'rfc2368-parse-mailto-url "rfc2368") |
1449 | |
28210 | 1450 ;;;###autoload |
1451 (defun browse-url-mail (url &optional new-window) | |
88155 | 1452 "Open a new mail message buffer within Emacs for the RFC 2368 URL. |
28210 | 1453 Default to using the mailto: URL around or before point as the |
1454 recipient's address. Supplying a non-nil interactive prefix argument | |
1455 will cause the mail to be composed in another window rather than the | |
1456 current one. | |
1457 | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1458 When called interactively, if variable `browse-url-new-window-flag' is |
28210 | 1459 non-nil use `compose-mail-other-window', otherwise `compose-mail'. A |
1460 non-nil interactive prefix argument reverses the effect of | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1461 `browse-url-new-window-flag'. |
28210 | 1462 |
1463 When called non-interactively, optional second argument NEW-WINDOW is | |
37378
c5e0aa9cbe69
(browse-url-new-window-flag): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents:
35008
diff
changeset
|
1464 used instead of `browse-url-new-window-flag'." |
28210 | 1465 (interactive (browse-url-interactive-arg "Mailto URL: ")) |
1466 (save-excursion | |
88155 | 1467 (let* ((alist (rfc2368-parse-mailto-url url)) |
1468 (to (assoc "To" alist)) | |
1469 (subject (assoc "Subject" alist)) | |
1470 (body (assoc "Body" alist)) | |
1471 (rest (delete to (delete subject (delete body alist)))) | |
1472 (to (cdr to)) | |
1473 (subject (cdr subject)) | |
1474 (body (cdr body)) | |
1475 (mail-citation-hook (unless body mail-citation-hook))) | |
28274
e9c99955f520
Restore previous use of browse-url-maybe-new-window.
Dave Love <fx@gnu.org>
parents:
28210
diff
changeset
|
1476 (if (browse-url-maybe-new-window new-window) |
88155 | 1477 (compose-mail-other-window to subject rest nil |
1478 (if body | |
1479 (list 'insert body) | |
1480 (list 'insert-buffer (current-buffer)))) | |
1481 (compose-mail to subject rest nil nil | |
1482 (if body | |
1483 (list 'insert body) | |
1484 (list 'insert-buffer (current-buffer)))))))) | |
28210 | 1485 |
1486 ;; --- Random browser --- | |
1487 | |
1488 ;;;###autoload | |
1489 (defun browse-url-generic (url &optional new-window) | |
1490 ;; new-window ignored | |
1491 "Ask the WWW browser defined by `browse-url-generic-program' to load URL. | |
1492 Default to the URL around or before point. A fresh copy of the | |
1493 browser is started up in a new process with possible additional arguments | |
1494 `browse-url-generic-args'. This is appropriate for browsers which | |
1495 don't offer a form of remote control." | |
1496 (interactive (browse-url-interactive-arg "URL: ")) | |
1497 (if (not browse-url-generic-program) | |
1498 (error "No browser defined (`browse-url-generic-program')")) | |
88155 | 1499 (apply 'call-process browse-url-generic-program nil |
1500 0 nil | |
28210 | 1501 (append browse-url-generic-args (list url)))) |
1502 | |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1503 ;;;###autoload |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1504 (defun browse-url-kde (url &optional new-window) |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1505 "Ask the KDE WWW browser to load URL. |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1506 Default to the URL around or before point." |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1507 (interactive (browse-url-interactive-arg "KDE URL: ")) |
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1508 (message "Sending URL to KDE...") |
88155 | 1509 (apply #'start-process (concat "KDE " url) nil browse-url-kde-program |
1510 (append browse-url-kde-args (list url)))) | |
37803
ae3f8f955b05
(browse-url-browser-function): Add kde.
Gerd Moellmann <gerd@gnu.org>
parents:
37666
diff
changeset
|
1511 |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1512 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1513 ;;; Setting up text to be browsed. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1514 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1515 (defvar browse-url-activation-alist nil |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1516 "A per buffer cache of overlays that mark URLs in the buffer.") |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1517 |
88143
98286f19a872
(browse-url-activate-urls): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
88132
diff
changeset
|
1518 ;;;###autoload |
88132
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1519 (defun browse-url-activate-urls (start end &optional face visited-face mouse-face keymap) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1520 "Activate the URLs in the region of the current buffer bracketed by START and END. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1521 This creates an overlay on each URL in the region. FACE, if provided, |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1522 marks a URL that has not yet been visited. If FACE is nil then the |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1523 'bold' face is used. VISITED-FACE, if provided, marks a URL that has |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1524 already been visited. If VISITED-FACE is nil then the `bold-italic' |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1525 face is used. MOUSE-FACE, if provided is the face that will appear |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1526 when the mouse is hovering over the URL. If MOUSE-FACE is nil then |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1527 the 'highlight' face is used. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1528 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1529 If KEYMAP is non-nil it specifies a keymap that determines when to |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1530 send the URL to the browser, otherwise a local keymap will be set up |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1531 on the URL that sets up mouse button 2 and newline as the input to |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1532 send the URL to the browser." |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1533 (save-excursion |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1534 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1535 (let ((overlays (cdr (assoc (current-buffer) browse-url-activation-alist))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1536 (unarmed-face (or face 'bold)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1537 (visited-face (or visited-face 'bold-italic)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1538 (armed-face (or mouse-face 'highlight)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1539 overlay-list url normal-face overlay bounds) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1540 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1541 ;; Clear the cache of URL overlays for the current buffer. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1542 (mapcar 'delete-overlay overlays) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1543 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1544 ;; Copy the cached overlays to be handed out as needed. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1545 (setq overlay-list overlays) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1546 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1547 ;; Determine if we should set up a keymap on the URLs |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1548 (unless keymap |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1549 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1550 ;; Go ahead and set up a local keymap defaulting to the |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1551 ;; browse-url functions for sending the URL to a browser. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1552 (setq keymap (make-sparse-keymap)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1553 (define-key keymap [mouse-2] 'browse-url-at-mouse) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1554 (define-key keymap "\r" 'browse-url-at-point)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1555 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1556 ;; Determine if there are any more URLs in the region following |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1557 ;; the headers. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1558 (goto-char start) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1559 (while (re-search-forward thing-at-point-url-regexp end t) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1560 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1561 ;; There are. Get the URL. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1562 (setq bounds (thing-at-point-bounds-of-url-at-point) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1563 url (buffer-substring (car bounds) (cdr bounds))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1564 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1565 ;; Get an overlay (from the cache if possible). |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1566 (if (null overlay-list) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1567 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1568 ;; Create an overlay to use for the current URL that |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1569 ;; highlights the URL and provides a keymap for sending |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1570 ;; the URL to a browser via a mouse button 2 keypress or a |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1571 ;; newline press. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1572 (progn |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1573 (setq overlay (make-overlay (car bounds) (cdr bounds))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1574 (if (null overlays) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1575 (setq overlays (list overlay) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1576 browse-url-activation-alist |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1577 (append (list (cons (current-buffer) overlays)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1578 browse-url-activation-alist)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1579 (setq overlays (append (list overlay) overlays))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1580 (overlay-put overlay 'mouse-face armed-face) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1581 (overlay-put overlay 'local-map keymap)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1582 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1583 ;; Grab an overlay from the cache. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1584 (setq overlay (car overlay-list) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1585 overlay-list (cdr overlay-list)) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1586 (move-overlay overlay (car bounds) (cdr bounds))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1587 |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1588 ;; Select the normal face based on whether or not the URL has |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1589 ;; been visited. |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1590 (overlay-put overlay 'face (if (member url browse-url-visited-urls) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1591 visited-face |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1592 unarmed-face)))))) |
7335eaf754d2
(browse-url-visited-urls, browse-url-activation-alist): New variables.
Paul Reilly <pmr@pajato.com>
parents:
49549
diff
changeset
|
1593 |
28210 | 1594 (provide 'browse-url) |
1595 | |
88155 | 1596 ;;; arch-tag: d2079573-5c06-4097-9598-f550fba19430 |
28210 | 1597 ;;; browse-url.el ends here |