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