annotate lisp/net/browse-url.el @ 90737:95d0cdf160ea

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