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