annotate lisp/browse-url.el @ 25897:9475708c45eb

#
author Dave Love <fx@gnu.org>
date Thu, 07 Oct 1999 13:06:22 +0000
parents bf45371ca138
children fb6b9c37cdc4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1 ;;; browse-url.el --- Pass a URL to a WWW browser
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
2
24063
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 ;; Author: Denis Howe <dbh@doc.ic.ac.uk>
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
6 ;; Maintainer: Dave Love <fx@gnu.org>
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 ;; Created: 03 Apr 1995
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
8 ;; Keywords: hypertext, hypermedia, mouse
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
15 ;; any later version.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
20 ;; GNU General Public License for more details.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13938
diff changeset
25 ;; Boston, MA 02111-1307, USA.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 ;;; Commentary:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;; This package provides functions which read a URL (Uniform Resource
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;; Locator) from the minibuffer, defaulting to the URL around point,
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 ;; and ask a World-Wide Web browser to load it. It can also load the
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;; URL associated with the current buffer. Different browsers use
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ;; different methods of remote control so there is one function for
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;; each supported browser. If the chosen browser is not running, it
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 ;; is started. Currently there is support for:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 ;; Function Browser Earliest version
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
38 ;; browse-url-netscape Netscape 1.1b1
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
39 ;; browse-url-mosaic XMosaic/mMosaic <= 2.4
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 ;; browse-url-cci XMosaic 2.5
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ;; browse-url-w3 w3 0
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
42 ;; browse-url-w3-gnudoit w3 remotely
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 ;; browse-url-iximosaic IXI Mosaic ?
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
44 ;; browse-url-lynx-* Lynx 0
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
45 ;; browse-url-grail Grail 0.3b1
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
46 ;; browse-url-mmm MMM ?
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
47 ;; browse-url-generic arbitrary
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48
24635
fd669611d301 Comment on netscape.
Dave Love <fx@gnu.org>
parents: 24179
diff changeset
49 ;; [A version of the Netscape browser is now free software
22507
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
50 ;; <URL:http://www.mozilla.org/>, albeit not GPLed, so it is
24635
fd669611d301 Comment on netscape.
Dave Love <fx@gnu.org>
parents: 24179
diff changeset
51 ;; reasonable to have that as the default.]
22507
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
52
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 ;; Note that versions of Netscape before 1.1b1 did not have remote
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
54 ;; control. <URL:http://www.netscape.com/newsref/std/x-remote.html>.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55
22507
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
56 ;; Browsers can cache Web pages so it may be necessary to tell them to
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
57 ;; reload the current page if it has changed (e.g. if you have edited
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 ;; it). There is currently no perfect automatic solution to this.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 ;; Netscape allows you to specify the id of the window you want to
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 ;; control but which window DO you want to control and how do you
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 ;; discover its id?
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 ;; If using XMosaic before version 2.5, check the definition of
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 ;; browse-url-usr1-signal below.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 ;; <URL:http://www.ncsa.uiuc.edu/SDG/Software/XMosaic/remote-control.html>
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 ;; XMosaic version 2.5 introduced Common Client Interface allowing you
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 ;; to control mosaic through Unix sockets.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 ;; <URL:http://www.ncsa.uiuc.edu/SDG/Software/XMosaic/CCI/cci-spec.html>
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 ;; William M. Perry's excellent "w3" WWW browser for
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 ;; Emacs <URL:ftp://cs.indiana.edu/pub/elisp/w3/>
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 ;; has a function w3-follow-url-at-point, but that
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75 ;; doesn't let you edit the URL like browse-url.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
76 ;; The `gnuserv' package that can be used to control it in another
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
77 ;; Emacs process is available from
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
78 ;; <URL:ftp://ftp.splode.com/pub/users/friedman/packages/>.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
79
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
80 ;; Grail is the freely available WWW browser implemented in Python, a
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
81 ;; cool object-oriented freely available interpreted language. Grail
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
82 ;; 0.3b1 was the first version to have remote control as distributed.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
83 ;; For more information on Grail see
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
84 ;; <URL:http://grail.cnri.reston.va.us/> and for more information on
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
85 ;; Python see <url:http://www.python.org/>. Grail support in
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
86 ;; browse-url.el written by Barry Warsaw <bwarsaw@python.org>.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
87
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
88 ;; MMM is the freely available WWW browser implemented in Objective
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
89 ;; Caml, a cool impure functional programming language, by Francois
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
90 ;; Rouaix. See the MMM home page
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
91 ;; <URL:http://pauillac.inria.fr/%7Erouaix/mmm/>.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
92
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
93 ;; Lynx is now distributed by the FSF. See also
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
94 ;; <URL:http://lynx.browser.org/>.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
95
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
96 ;; Free graphical browsers that could be used by `browse-url-generic'
19442
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
97 ;; include Chimera <URL:ftp://ftp.cs.unlv.edu/pub/chimera> and
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
98 ;; <URL:http://www.unlv.edu/chimera/>, Arena
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
99 ;; <URL:ftp://ftp.yggdrasil.com/pub/dist/web/arena> and Amaya
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
100 ;; <URL:ftp://ftp.w3.org/pub/amaya>. mMosaic
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
101 ;; <URL:ftp://sig.enst.fr/pub/multicast/mMosaic/> (with development
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
102 ;; support for Java applets and multicast) can be used like Mosaic by
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
103 ;; setting `browse-url-mosaic-program' appropriately.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104
22507
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
105 ;; I [Denis Howe, not Dave Love] recommend Nelson Minar
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
106 ;; <nelson@santafe.edu>'s excellent html-helper-mode.el for editing
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
107 ;; HTML and thank Nelson for his many useful comments on this code.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
108 ;; <URL:http://www.santafe.edu/%7Enelson/hhm-beta/>
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109
19583
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
110 ;; See also hm--html-menus <URL:http://www.tnt.uni-hannover.de/%7Emuenkel/
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
111 ;; software/own/hm--html-menus/>. For composing correct HTML see also
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
112 ;; PSGML the general SGML structure editor package
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
113 ;; <URL:ftp://ftp.lysator.liu.se/pub/sgml>; hm--html-menus can be used
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
114 ;; with this.
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
115
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 ;; This package generalises function html-previewer-process in Marc
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
117 ;; Andreessen's html-mode (LCD modes/html-mode.el.Z). See also the
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
118 ;; ffap.el package. The huge hyperbole package also contains similar
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
119 ;; functions.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 ;; Help!
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 ;; Can you write and test some code for the Macintrash and Windoze
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 ;; Netscape remote control APIs? (See the URL above).
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 ;; Do any other browsers have remote control?
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130 ;; Usage
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
132 ;; To display the URL at or before point:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 ;; M-x browse-url-at-point RET
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
134 ;; or, similarly but with the opportunity to edit the URL extracted from
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
135 ;; the buffer, use:
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
136 ;; M-x browse-url
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 ;; To display a URL by shift-clicking on it, put this in your ~/.emacs
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 ;; file:
13933
efd6ce432dc5 (browse-url-mosaic): Print "done" message
Richard M. Stallman <rms@gnu.org>
parents: 13224
diff changeset
140 ;; (global-set-key [S-mouse-2] 'browse-url-at-mouse)
efd6ce432dc5 (browse-url-mosaic): Print "done" message
Richard M. Stallman <rms@gnu.org>
parents: 13224
diff changeset
141 ;; (Note that using Shift-mouse-1 is not desirable because
efd6ce432dc5 (browse-url-mosaic): Print "done" message
Richard M. Stallman <rms@gnu.org>
parents: 13224
diff changeset
142 ;; that event has a standard meaning in Emacs.)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 ;; To display the current buffer in a web browser:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 ;; M-x browse-url-of-buffer RET
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
147 ;; To display the current region in a web browser:
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
148 ;; M-x browse-url-of-region RET
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
149
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 ;; In Dired, to display the file named on the current line:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 ;; M-x browse-url-of-dired-file RET
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 ;; Customisation (~/.emacs)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
156 ;; To see what variables are available for customization, type
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
157 ;; `M-x set-variable browse-url TAB'. Better, use
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
158 ;; `M-x customize-group browse-url'.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
160 ;; Bind the browse-url commands to keys with the `C-c C-z' prefix
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
161 ;; (as used by html-helper-mode):
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
162 ;; (global-set-key "\C-c\C-z." 'browse-url-at-point)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
163 ;; (global-set-key "\C-c\C-zb" 'browse-url-of-buffer)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
164 ;; (global-set-key "\C-c\C-zr" 'browse-url-of-region)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
165 ;; (global-set-key "\C-c\C-zu" 'browse-url)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
166 ;; (global-set-key "\C-c\C-zv" 'browse-url-of-file)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
167 ;; (add-hook 'dired-mode-hook
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
168 ;; (lambda ()
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
169 ;; (local-set-key "\C-c\C-zf" 'browse-url-of-dired-file)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
170
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
171 ;; Browse URLs in mail messages by clicking mouse-2:
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
172 ;; (add-hook 'rmail-mode-hook (lambda () ; rmail-mode startup
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
173 ;; (define-key rmail-mode-map [mouse-2] 'browse-url-at-mouse)))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
175 ;; Browse URLs in Usenet messages by clicking mouse-2:
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
176 ;; (eval-after-load "gnus"
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
177 ;; '(define-key gnus-article-mode-map [mouse-2] 'browse-url-at-mouse))
19583
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
178 ;; [The current version of Gnus provides a standard feature to
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
179 ;; activate URLs in article buffers for invocation of browse-url with
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
180 ;; mouse-2.]
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
181
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
182 ;; Use the Emacs w3 browser when not running under X11:
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
183 ;; (or (eq window-system 'x)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
184 ;; (setq browse-url-browser-function 'browse-url-w3))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
185
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 ;; To always save modified buffers before displaying the file in a browser:
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
187 ;; (setq browse-url-save-file t)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
188
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
189 ;; To get round the Netscape caching problem, you could EITHER have
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
190 ;; write-file in html-helper-mode make Netscape reload the document:
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 ;;
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
192 ;; (autoload 'browse-url-netscape-reload "browse-url"
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
193 ;; "Ask a WWW browser to redisplay the current file." t)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
194 ;; (add-hook 'html-helper-mode-hook
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
195 ;; (lambda ()
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
196 ;; (add-hook 'local-write-file-hooks
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
197 ;; (lambda ()
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
198 ;; (let ((local-write-file-hooks))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
199 ;; (save-buffer))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
200 ;; (browse-url-netscape-reload)
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
201 ;; t) ; => file written by hook
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
202 ;; t))) ; append to l-w-f-hooks
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
203 ;;
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
204 ;; OR have browse-url-of-file ask Netscape to load and then reload the
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 ;; file:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
206 ;;
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
207 ;; (add-hook 'browse-url-of-file-hook 'browse-url-netscape-reload)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
208
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
209 ;; You may also want to customise browse-url-netscape-arguments, e.g.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
210 ;; (setq browse-url-netscape-arguments '("-install"))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
211 ;;
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
212 ;; or similarly for the other browsers.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
213
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
214 ;; To invoke different browsers for different URLs:
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
215 ;; (setq browse-url-browser-function '(("^mailto:" . browse-url-mail)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
216 ;; ("." . browse-url-netscape)))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 ;;; Code:
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
221 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
222 ;; Variables
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
224 (eval-when-compile (require 'thingatpt)
24010
9eb02fa0c314 1999-01-06 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23959
diff changeset
225 (require 'term)
9eb02fa0c314 1999-01-06 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23959
diff changeset
226 (require 'w3-auto nil t))
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
227
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
228 (defgroup browse-url nil
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
229 "Use a web browser to look at a URL."
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
230 :prefix "browse-url-"
19579
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
231 :group 'hypermedia)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
232
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
233 ;;;###autoload
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
234 (defcustom browse-url-browser-function
24657
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
235 (if (eq system-type 'windows-nt)
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
236 'browse-url-default-windows-browser
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
237 'browse-url-netscape)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
238 "*Function to display the current buffer in a WWW browser.
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
239 This is used by the `browse-url-at-point', `browse-url-at-mouse', and
17456
b386f1a9ed75 (browse-url-browser-function): Fix syntax error.
Karl Heuer <kwzh@gnu.org>
parents: 17443
diff changeset
240 `browse-url-of-file' commands.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
241
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
242 If the value is not a function it should be a list of pairs
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
243 (REGEXP . FUNCTION). In this case the function called will be the one
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
244 associated with the first REGEXP which matches the current URL. The
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
245 function is passed the URL and any other args of `browse-url'. The last
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
246 regexp should probably be \".\" to specify a default browser."
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
247 :type '(choice
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
248 (function-item :tag "Emacs W3" :value browse-url-w3)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
249 (function-item :tag "W3 in another Emacs via `gnudoit'"
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
250 :value browse-url-w3-gnudoit)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
251 (function-item :tag "Netscape" :value browse-url-netscape)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
252 (function-item :tag "Mosaic" :value browse-url-mosaic)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
253 (function-item :tag "Mosaic using CCI" :value browse-url-cci)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
254 (function-item :tag "IXI Mosaic" :value browse-url-iximosaic)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
255 (function-item :tag "Lynx in an xterm window"
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
256 :value browse-url-lynx-xterm)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
257 (function-item :tag "Lynx in an Emacs window"
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
258 :value browse-url-lynx-emacs)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
259 (function-item :tag "Grail" :value browse-url-grail)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
260 (function-item :tag "MMM" :value browse-url-mmm)
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
261 (function-item :tag "Specified by `Browse Url Generic Program'"
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
262 :value browse-url-generic)
24657
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
263 (function-item :tag "Default Windows browser"
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
264 :value browse-url-default-windows-browser)
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
265 (function :tag "Your own function"))
24682
bf45371ca138 (browse-url-browser-function): Add :version.
Dave Love <fx@gnu.org>
parents: 24657
diff changeset
266 :version "20.4"
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
267 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
269 (defcustom browse-url-netscape-program "netscape"
24179
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
270 ;; Info about netscape-remote from Karl Berry.
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
271 "The name by which to invoke Netscape.
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
272
24179
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
273 The free program `netscape-remote' from
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
274 <URL:http://home.netscape.com/newsref/std/remote.c> is said to start
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
275 up very much quicker than `netscape'. Reported to compile on a GNU
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
276 system, given vroot.h from the same directory, with cc flags
c2b622202522 (browse-url-netscape-program): Doc addition.
Dave Love <fx@gnu.org>
parents: 24126
diff changeset
277 -DSTANDALONE -L/usr/X11R6/lib -lXmu -lX11."
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
278 :type 'string
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
279 :group 'browse-url)
15656
e73cd7ff1d4a (browse-url-netscape-program): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 14734
diff changeset
280
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
281 (defcustom browse-url-netscape-arguments nil
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
282 "A list of strings to pass to Netscape as arguments."
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
283 :type '(repeat (string :tag "Argument"))
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
284 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
286 (defcustom browse-url-netscape-startup-arguments browse-url-netscape-arguments
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
287 "A list of strings to pass to Netscape when it starts up.
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
288 Defaults to the value of `browse-url-netscape-arguments' at the time
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
289 `browse-url' is loaded."
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
290 :type '(repeat (string :tag "Argument"))
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
291 :group 'browse-url)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
292
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
293 ;;;###autoload
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
294 (defcustom browse-url-new-window-p nil
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
295 "*If non-nil, always open a new browser window with appropriate browsers.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
296 Passing an interactive argument to \\[browse-url], or specific browser
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
297 commands reverses the effect of this variable. Requires Netscape version
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
298 1.1N or later or XMosaic version 2.5 or later if using those browsers."
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
299 :type 'boolean
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
300 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
302 ;;;###autoload
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
303 (defcustom browse-url-netscape-display nil
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
304 "*The X display for running Netscape, if not same as Emacs'."
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
305 :type '(choice string (const :tag "Default" nil))
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
306 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
307
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
308 (defcustom browse-url-mosaic-program "xmosaic"
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
309 "The name by which to invoke Mosaic (or mMosaic)."
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
310 :type 'string
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
311 :version "20.3"
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
312 :group 'browse-url)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
313
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
314 (defcustom browse-url-mosaic-arguments nil
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
315 "A list of strings to pass to Mosaic as arguments."
17443
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
316 :type '(repeat (string :tag "Argument"))
02751f3ecbdd Add defgroup; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents: 16670
diff changeset
317 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
319 (defcustom browse-url-filename-alist
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
320 '(("^/\\(ftp@\\|anonymous@\\)?\\([^:]+\\):/*" . "ftp://\\2/")
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
321 ;; The above loses the username to avoid the browser prompting for
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
322 ;; it in anonymous cases. If it's not anonymous the next regexp
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
323 ;; applies.
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
324 ("^/\\([^:@]+@\\)?\\([^:]+\\):/*" . "ftp://\\1\\2/")
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
325 ("^/+" . "file:/"))
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
326 "An alist of (REGEXP . STRING) pairs used by `browse-url-of-file'.
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
327 Any substring of a filename matching one of the REGEXPs is replaced by
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
328 the corresponding STRING using `replace-match', not treating STRING
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
329 literally. All pairs are applied in the order given. The default
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
330 value converts ange-ftp/EFS-style paths into ftp URLs and prepends
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
331 `file:' to any path beginning with `/'.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
332
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
333 For example, adding to the default a specific translation of an ange-ftp
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
334 address to an HTTP URL:
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
335
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
336 (setq browse-url-filename-alist
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
337 '((\"/webmaster@webserver:/home/www/html/\" .
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
338 \"http://www.acme.co.uk/\")
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
339 (\"^/\\(ftp@\\|anonymous@\\)?\\([^:]+\\):/*\" . \"ftp://\\2/\")
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
340 (\"^/\\([^:@]+@\\)?\\([^:]+\\):/*\" . \"ftp://\\1\\2/\")
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
341 (\"^/+\" . \"file:/\")))
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
342 "
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
343 :type '(repeat (cons :format "%v"
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
344 (regexp :tag "Regexp")
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
345 (string :tag "Replacement")))
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
346 :version "20.3"
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
347 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
349 ;;;###autoload
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
350 (defcustom browse-url-save-file nil
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
351 "*If non-nil, save the buffer before displaying its file.
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
352 Used by the `browse-url-of-file' command."
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
353 :type 'boolean
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
354 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
356 (defcustom browse-url-of-file-hook nil
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
357 "Run after `browse-url-of-file' has asked a browser to load a file.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 Set this to `browse-url-netscape-reload' to force Netscape to load the
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
360 file rather than displaying a cached copy."
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
361 :type 'hook
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
362 :options '(browse-url-netscape-reload)
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
363 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 (defvar browse-url-usr1-signal
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366 (if (and (boundp 'emacs-major-version)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
367 (or (> emacs-major-version 19) (>= emacs-minor-version 29)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
368 'SIGUSR1 ; Why did I think this was in lower case before?
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
369 30) ; Check /usr/include/signal.h.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370 "The argument to `signal-process' for sending SIGUSR1 to XMosaic.
13938
3e0b6a3707bd (browse-url-usr1-signal): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 13933
diff changeset
371 Emacs 19.29 accepts 'SIGUSR1, earlier versions require an integer
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 which is 30 on SunOS and 16 on HP-UX and Solaris.")
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
374 (defcustom browse-url-CCI-port 3003
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
375 "Port to access XMosaic via CCI.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376 This can be any number between 1024 and 65535 but must correspond to
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
377 the value set in the browser."
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
378 :type 'integer
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
379 :group 'browse-url)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
381 (defcustom browse-url-CCI-host "localhost"
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
382 "*Host to access XMosaic via CCI.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
383 This should be the host name of the machine running XMosaic with CCI
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
384 enabled. The port number should be set in `browse-url-CCI-port'."
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
385 :type 'string
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
386 :group 'browse-url)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
387
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
388 (defvar browse-url-temp-file-name nil)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
389 (make-variable-buffer-local 'browse-url-temp-file-name)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
390
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
391 (defcustom browse-url-xterm-program "xterm"
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
392 "The name of the terminal emulator used by `browse-url-lynx-xterm'.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
393 This might, for instance, be a separate colour version of xterm."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
394 :type 'string
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
395 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
396
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
397 (defcustom browse-url-xterm-args nil
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
398 "*A list of strings defining options for `browse-url-xterm-program'.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
399 These might set its size, for instance."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
400 :type '(repeat (string :tag "Argument"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
401 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
402
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
403 (defcustom browse-url-lynx-emacs-args (and (not window-system)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
404 '("-show_cursor"))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
405 "A list of strings defining options for Lynx in an Emacs buffer.
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
406
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
407 The default is none in a window system, otherwise `-show_cursor' to
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
408 indicate the position of the current link in the absence of
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
409 highlighting, assuming the normal default for showing the cursor."
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
410 :type '(repeat (string :tag "Argument"))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
411 :version "20.3"
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
412 :group 'browse-url)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
413
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
414 (defcustom browse-url-gnudoit-program "gnudoit"
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
415 "The name of the `gnudoit' program used by `browse-url-w3-gnudoit'."
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
416 :type 'string
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
417 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
418
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
419 (defcustom browse-url-gnudoit-args '("-q")
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
420 "*A list of strings defining options for `browse-url-gnudoit-program'.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
421 These might set the port, for instance."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
422 :type '(repeat (string :tag "Argument"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
423 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
424
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
425 ;;;###autoload
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
426 (defcustom browse-url-generic-program nil
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
427 "*The name of the browser program used by `browse-url-generic'."
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
428 :type '(choice string (const :tag "None" nil))
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
429 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
430
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
431 (defcustom browse-url-generic-args nil
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
432 "*A list of strings defining options for `browse-url-generic-program'."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
433 :type '(repeat (string :tag "Argument"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
434 :group 'browse-url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
435
22097
67273fd206b7 (browse-url-temp-dir): Use temporary-file-directory.
Richard M. Stallman <rms@gnu.org>
parents: 22087
diff changeset
436 (defcustom browse-url-temp-dir temporary-file-directory
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
437 "The name of a directory for browse-url's temporary files.
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
438 Such files are generated by functions like `browse-url-of-region'.
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
439 You might want to set this to somewhere with restricted read permissions
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
440 for privacy's sake."
19442
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
441 :type 'string
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
442 :group 'browse-url)
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
443
19579
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
444 (defcustom browse-url-netscape-version
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
445 3
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
446 "The version of Netscape you are using.
19579
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
447 This affects how URL reloading is done; the mechanism changed
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
448 incompatibly at version 4."
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
449 :type 'number
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
450 :group 'browse-url)
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
451
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
452 (defcustom browse-url-lynx-input-field 'avoid
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
453 "*Action on selecting an existing Lynx buffer at an input field.
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
454 What to do when sending a new URL to an existing Lynx buffer in Emacs
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
455 if the Lynx cursor is on an input field (in which case the `g' command
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
456 would be entered as data). Such fields are recognized by the
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
457 underlines ____. Allowed values: nil: disregard it, 'warn: warn the
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
458 user and don't emit the URL, 'avoid: try to avoid the field by moving
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
459 down (this *won't* always work)."
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
460 :type '(choice (const :tag "Move to try to avoid field" :value avoid)
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
461 (const :tag "Disregard" :value nil)
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
462 (const :tag "Warn, don't emit URL" :value warn))
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
463 :version "20.3"
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
464 :group 'browse-url)
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
465
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
466 (defvar browse-url-lynx-input-attempts 10
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
467 "*How many times to try to move down from a series of lynx input fields.")
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
468
20320
dfd02d692b0c Doc fixes and extra customization.
Dave Love <fx@gnu.org>
parents: 20167
diff changeset
469 (defcustom browse-url-lynx-input-delay 0.2
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
470 "How many seconds to wait for lynx between moves down from an input field.")
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
471
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
472 (defvar browse-url-temp-file-list '())
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
473
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475 ;; URL input
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 (defun browse-url-url-at-point ()
18611
a3267de991c3 Require thingatpt when compiling.
Richard M. Stallman <rms@gnu.org>
parents: 18253
diff changeset
478 (let ((url (thing-at-point 'url)))
a3267de991c3 Require thingatpt when compiling.
Richard M. Stallman <rms@gnu.org>
parents: 18253
diff changeset
479 (set-text-properties 0 (length url) nil url)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
480 url))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
481
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
482 ;; Having this as a separate function called by the browser-specific
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
483 ;; functions allows them to be stand-alone commands, making it easier
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
484 ;; to switch between browsers.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
485
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
486 (defun browse-url-interactive-arg (prompt)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
487 "Read a URL from the minibuffer, prompting with PROMPT.
19442
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
488 Default to the URL at or before point. If invoked with a mouse button,
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
489 set point to the position clicked first. Return a list for use in
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
490 `interactive' containing the URL and `browse-url-new-window-p' or its
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
491 negation if a prefix argument was given."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492 (let ((event (elt (this-command-keys) 0)))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
493 (and (listp event) (mouse-set-point event)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
494 (list (read-string prompt (browse-url-url-at-point))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
495 (not (eq (null browse-url-new-window-p)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
496 (null current-prefix-arg)))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 ;; Browse current buffer
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500
16416
c7622616333c (browse-url-at-point): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 16415
diff changeset
501 ;;;###autoload
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 (defun browse-url-of-file (&optional file)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503 "Ask a WWW browser to display FILE.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504 Display the current buffer's file if FILE is nil or if called
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
505 interactively. Turn the filename into a URL with function
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
506 `browse-url-file-url'. Pass the URL to a browser using the
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
507 `browse-url' function then run `browse-url-of-file-hook'."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 (interactive)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
509 (or file
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
510 (setq file (buffer-file-name))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
511 (error "Current buffer has no file"))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 (let ((buf (get-file-buffer file)))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 (if buf
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
514 (save-excursion
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
515 (set-buffer buf)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
516 (cond ((not (buffer-modified-p)))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
517 (browse-url-save-file (save-buffer))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
518 (t (message "%s modified since last save" file))))))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
519 (browse-url (browse-url-file-url file))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 (run-hooks 'browse-url-of-file-hook))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 (defun browse-url-file-url (file)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 "Return the URL corresponding to FILE.
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
524 Use variable `browse-url-filename-alist' to map filenames to URLs."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
525 ;; URL-encode special chars, do % first
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
526 (let ((s 0))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
527 (while (setq s (string-match "%" file s))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
528 (setq file (replace-match "%25" t t file)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
529 s (1+ s))))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
530 (while (string-match "[*\"()',=;? ]" file)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
531 (let ((enc (format "%%%x" (aref file (match-beginning 0)))))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
532 (setq file (replace-match enc t t file))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 (let ((maps browse-url-filename-alist))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 (while maps
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 (let* ((map (car maps))
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
536 (from-re (car map))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
537 (to-string (cdr map)))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
538 (setq maps (cdr maps))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
539 (and (string-match from-re file)
20509
b0d79b1edeb6 (browse-url-path-regexp, browse-url-short-regexp,
Dave Love <fx@gnu.org>
parents: 20460
diff changeset
540 (setq file (replace-match to-string t nil file))))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 file)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542
16416
c7622616333c (browse-url-at-point): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 16415
diff changeset
543 ;;;###autoload
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 (defun browse-url-of-buffer (&optional buffer)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545 "Ask a WWW browser to display BUFFER.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
546 Display the current buffer if BUFFER is nil. Display only the
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
547 currently visible part of BUFFER (from a temporary file) if buffer is
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
548 narrowed."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 (interactive)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 (save-excursion
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
551 (and buffer (set-buffer buffer))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552 (let ((file-name
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
553 ;; Ignore real name if restricted
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
554 (and (= (- (point-max) (point-min)) (buffer-size))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
555 (or buffer-file-name
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
556 (and (boundp 'dired-directory) dired-directory)))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
557 (or file-name
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
558 (progn
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
559 (or browse-url-temp-file-name
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
560 (setq browse-url-temp-file-name
19442
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
561 (convert-standard-filename
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
562 (make-temp-name
5b3f4890f757 Minor doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 18611
diff changeset
563 (expand-file-name "burl" browse-url-temp-dir)))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
564 (setq file-name browse-url-temp-file-name)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
565 (write-region (point-min) (point-max) file-name nil 'no-message)))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
566 (browse-url-of-file file-name))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 (defun browse-url-delete-temp-file (&optional temp-file-name)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 ;; Delete browse-url-temp-file-name from the file system and from
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 ;; browse-url-temp-file-list. If optional arg TEMP-FILE-NAME is
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 ;; non-nil, delete it instead, but only from the file system --
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 ;; browse-url-temp-file-list is not affected.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573 (let ((file-name (or temp-file-name browse-url-temp-file-name)))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 (if (and file-name (file-exists-p file-name))
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
575 (progn
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
576 (delete-file file-name)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
577 (if (null temp-file-name)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
578 (setq browse-url-temp-file-list
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
579 (delete browse-url-temp-file-name
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
580 browse-url-temp-file-list)))))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582 (defun browse-url-delete-temp-file-list ()
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583 ;; Delete all elements of browse-url-temp-file-list.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 (while browse-url-temp-file-list
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 (browse-url-delete-temp-file (car browse-url-temp-file-list))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 (setq browse-url-temp-file-list
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
587 (cdr browse-url-temp-file-list))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 (add-hook 'kill-buffer-hook 'browse-url-delete-temp-file)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
590 (add-hook 'kill-emacs-hook 'browse-url-delete-temp-file-list)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591
16416
c7622616333c (browse-url-at-point): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 16415
diff changeset
592 ;;;###autoload
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 (defun browse-url-of-dired-file ()
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 "In Dired, ask a WWW browser to display the file named on this line."
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
595 (interactive)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 (browse-url-of-file (dired-get-filename)))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
598 ;;;###autoload
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
599 (defun browse-url-of-region (min max)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
600 "Ask a WWW browser to display the current region."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
601 (interactive "r")
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
602 (save-excursion
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
603 (save-restriction
21231
4d63d262b3d5 (browse-url-of-region): Use its args. From <mit@nines.nec.co.jp>
Dave Love <fx@gnu.org>
parents: 21078
diff changeset
604 (narrow-to-region min max)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
605 (browse-url-of-buffer))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
606
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
607 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
608 ;; Browser-independent commands
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
609
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
610 ;; A generic command to call the current browse-url-browser-function
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
611
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
612 ;;;###autoload
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
613 (defun browse-url (url &rest args)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
614 "Ask a WWW browser to load URL.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
615 Prompts for a URL, defaulting to the URL at or before point. Variable
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
616 `browse-url-browser-function' says which browser to use."
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
617 (interactive (browse-url-interactive-arg "URL: "))
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
618 (let ((bf browse-url-browser-function) re)
23705
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
619 (unless (functionp bf)
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
620 (while (consp bf)
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
621 (setq re (car (car bf))
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
622 bf (if (string-match re url)
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
623 (cdr (car bf)) ; The function
e441cd61a9aa 1998-11-09 Sam Steingold <sds@goems.com>
Dave Love <fx@gnu.org>
parents: 23097
diff changeset
624 (cdr bf))))) ; More pairs
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
625 (or bf (error "No browser in browse-url-browser-function matching URL %s"
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
626 url))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
627 (apply bf url args)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
628
16416
c7622616333c (browse-url-at-point): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 16415
diff changeset
629 ;;;###autoload
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
630 (defun browse-url-at-point ()
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
631 "Ask a WWW browser to load the URL at or before point.
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
632 Doesn't let you edit the URL like `browse-url'. Variable
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
633 `browse-url-browser-function' says which browser to use."
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
634 (interactive)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
635 (browse-url (browse-url-url-at-point)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
636
17802
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
637 (defun browse-url-event-buffer (event)
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
638 (window-buffer (posn-window (event-start event))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
639
17802
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
640 (defun browse-url-event-point (event)
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
641 (posn-point (event-start event)))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642
16416
c7622616333c (browse-url-at-point): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents: 16415
diff changeset
643 ;;;###autoload
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
644 (defun browse-url-at-mouse (event)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
645 "Ask a WWW browser to load a URL clicked with the mouse.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
646 The URL is the one around or before the position of the mouse click
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
647 but point is not changed. Doesn't let you edit the URL like
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
648 `browse-url'. Variable `browse-url-browser-function' says which browser
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
649 to use."
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
650 (interactive "e")
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
651 (save-excursion
17802
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
652 (set-buffer (browse-url-event-buffer event))
77d8356a7eed (browse-url-event-buffer):
Richard M. Stallman <rms@gnu.org>
parents: 17456
diff changeset
653 (goto-char (browse-url-event-point event))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
654 (let ((url (browse-url-url-at-point)))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
655 (if (string-equal url "")
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
656 (error "No URL found"))
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
657 (browse-url url browse-url-new-window-p))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
658
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
659 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
660 ;; Browser-specific commands
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
661
24657
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
662 ;; --- Default MS-Windows browser ---
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
663
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
664 (defun browse-url-default-windows-browser (url &optional new-window)
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
665 (interactive (browse-url-interactive-arg "URL: "))
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
666 (w32-shell-execute "open" url))
5b211965b2b9 (browse-url-browser-function): Default to
Andrew Innes <andrewi@gnu.org>
parents: 24635
diff changeset
667
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
668 ;; --- Netscape ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
669
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
670 (defun browse-url-process-environment ()
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
671 "Set DISPLAY in the environment to the X display Netscape is running on.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
672 This is either the value of variable `browse-url-netscape-display' if
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
673 non-nil, or the same display as Emacs if different from the current
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
674 environment, otherwise just use the current environment."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
675 (let ((display (or browse-url-netscape-display (browse-url-emacs-display))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
676 (if display
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
677 (cons (concat "DISPLAY=" display) process-environment)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
678 process-environment)))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
679
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
680 (defun browse-url-emacs-display ()
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
681 "Return the X display Emacs is running on.
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
682 This is nil if the display is the same as the DISPLAY environment variable.
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
683
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
684 Actually Emacs could be using several displays; this just returns the
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
685 one showing the selected frame."
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
686 (let ((display (cdr-safe (assq 'display (frame-parameters)))))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
687 (and (not (equal display (getenv "DISPLAY")))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
688 display)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
689
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
690 ;;;###autoload
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
691 (defun browse-url-netscape (url &optional new-window)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
692 "Ask the Netscape WWW browser to load URL.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
693
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
694 Default to the URL around or before point. The strings in variable
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695 `browse-url-netscape-arguments' are also passed to Netscape.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697 When called interactively, if variable `browse-url-new-window-p' is
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 non-nil, load the document in a new Netscape window, otherwise use a
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 random existing one. A non-nil interactive prefix argument reverses
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
700 the effect of `browse-url-new-window-p'.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 When called non-interactively, optional second argument NEW-WINDOW is
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
703 used instead of `browse-url-new-window-p'."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
704 (interactive (browse-url-interactive-arg "Netscape URL: "))
22507
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
705 ;; URL encode any `confusing' characters in the URL. This needs to
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
706 ;; include at least commas; presumably also close parens.
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
707 (while (string-match "[,)]" url)
f189183483a2 (browse-url-netscape): Encode `)' too.
Dave Love <fx@gnu.org>
parents: 22425
diff changeset
708 (setq url (replace-match
23097
86a92272892c (browse-url-netscape): Fix format for hex escapes.
Dave Love <fx@gnu.org>
parents: 22507
diff changeset
709 (format "%%%x" (string-to-char (match-string 0 url))) t t url)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
710 (let* ((process-environment (browse-url-process-environment))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
711 (process (apply 'start-process
24063
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
712 (concat "netscape " url) nil
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
713 browse-url-netscape-program
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
714 (append
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
715 browse-url-netscape-arguments
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
716 (if (eq window-system 'w32)
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
717 (list url)
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
718 (append
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
719 (if new-window '("-noraise"))
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
720 (list "-remote"
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
721 (concat "openURL(" url
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
722 (if new-window ",new-window")
24063
2dde27ae5540 (browse-url-netscape): Fix ineffective "-noraise".
Dave Love <fx@gnu.org>
parents: 24010
diff changeset
723 ")"))))))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
724 (set-process-sentinel process
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
725 (list 'lambda '(process change)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
726 (list 'browse-url-netscape-sentinel 'process url)))))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
727
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
728 (defun browse-url-netscape-sentinel (process url)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
729 "Handle a change to the process communicating with Netscape."
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
730 (or (eq (process-exit-status process) 0)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
731 (let* ((process-environment (browse-url-process-environment)))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
732 ;; Netscape not running - start it
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
733 (message "Starting Netscape...")
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
734 (apply 'start-process (concat "netscape" url) nil
17975
3f2cc6cc8705 (browse-url-netscape, browse-url-netscape-sentinel)
Richard M. Stallman <rms@gnu.org>
parents: 17862
diff changeset
735 browse-url-netscape-program
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
736 (append browse-url-netscape-startup-arguments (list url))))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
737
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
738 (defun browse-url-netscape-reload ()
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
739 "Ask Netscape to reload its current document.
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
740 How depends on `browse-url-netscape-version'."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
741 (interactive)
19579
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
742 ;; Backwards incompatibility reported by
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
743 ;; <peter.kruse@psychologie.uni-regensburg.de>.
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
744 (browse-url-netscape-send (if (>= browse-url-netscape-version 4)
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
745 "xfeDoCommand(reload)"
bbb59d8bca28 Change the custom group to `hypermedia'.
Richard M. Stallman <rms@gnu.org>
parents: 19443
diff changeset
746 "reload")))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
747
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
748 (defun browse-url-netscape-send (command)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
749 "Send a remote control command to Netscape."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
750 (let* ((process-environment (browse-url-process-environment)))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
751 (apply 'start-process "netscape" nil
17975
3f2cc6cc8705 (browse-url-netscape, browse-url-netscape-sentinel)
Richard M. Stallman <rms@gnu.org>
parents: 17862
diff changeset
752 browse-url-netscape-program
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
753 (append browse-url-netscape-arguments
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
754 (list "-remote" command)))))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
755
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
756 ;; --- Mosaic ---
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
757
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
758 ;;;###autoload
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
759 (defun browse-url-mosaic (url &optional new-window)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
760 "Ask the XMosaic WWW browser to load URL.
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
761
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
762 Default to the URL around or before point. The strings in variable
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
763 `browse-url-mosaic-arguments' are also passed to Mosaic and the
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
764 program is invoked according to the variable
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
765 `browse-url-mosaic-program'.
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
766
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
767 When called interactively, if variable `browse-url-new-window-p' is
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
768 non-nil, load the document in a new Mosaic window, otherwise use a
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
769 random existing one. A non-nil interactive prefix argument reverses
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
770 the effect of `browse-url-new-window-p'.
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
771
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
772 When called non-interactively, optional second argument NEW-WINDOW is
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
773 used instead of `browse-url-new-window-p'."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 (interactive (browse-url-interactive-arg "Mosaic URL: "))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775 (let ((pidfile (expand-file-name "~/.mosaicpid"))
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
776 pid)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 (if (file-readable-p pidfile)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
778 (save-excursion
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
779 (find-file pidfile)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
780 (goto-char (point-min))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
781 (setq pid (read (current-buffer)))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
782 (kill-buffer nil)))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 (if (and pid (zerop (signal-process pid 0))) ; Mosaic running
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
784 (save-excursion
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
785 (find-file (format "/tmp/Mosaic.%d" pid))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
786 (erase-buffer)
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
787 (insert (if new-window
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
788 "newwin\n"
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
789 "goto\n")
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
790 url "\n")
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
791 (save-buffer)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
792 (kill-buffer nil)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
793 ;; Send signal SIGUSR to Mosaic
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
794 (message "Signalling Mosaic...")
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
795 (signal-process pid browse-url-usr1-signal)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
796 ;; Or you could try:
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
797 ;; (call-process "kill" nil 0 nil "-USR1" (int-to-string pid))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
798 (message "Signalling Mosaic...done")
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
799 )
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
800 ;; Mosaic not running - start it
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
801 (message "Starting Mosaic...")
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
802 (apply 'start-process "xmosaic" nil browse-url-mosaic-program
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
803 (append browse-url-mosaic-arguments (list url)))
13933
efd6ce432dc5 (browse-url-mosaic): Print "done" message
Richard M. Stallman <rms@gnu.org>
parents: 13224
diff changeset
804 (message "Starting Mosaic...done"))))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
806 ;; --- Grail ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
807
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
808 ;;;###autoload
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
809 (defvar browse-url-grail
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
810 (concat (or (getenv "GRAILDIR") "~/.grail") "/user/rcgrail.py")
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
811 "Location of Grail remote control client script `rcgrail.py'.
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
812 Typically found in $GRAILDIR/rcgrail.py, or ~/.grail/user/rcgrail.py.")
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
813
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
814 ;;;###autoload
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
815 (defun browse-url-grail (url &optional new-window)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
816 "Ask the Grail WWW browser to load URL.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
817 Default to the URL around or before point. Runs the program in the
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
818 variable `browse-url-grail'."
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
819 (interactive (browse-url-interactive-arg "Grail URL: "))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
820 (message "Sending URL to Grail...")
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
821 (save-excursion
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
822 (set-buffer (get-buffer-create " *Shell Command Output*"))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
823 (erase-buffer)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
824 ;; don't worry about this failing.
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
825 (if new-window
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
826 (call-process browse-url-grail nil 0 nil "-b" url)
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
827 (call-process browse-url-grail nil 0 nil url))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
828 (message "Sending URL to Grail... done")))
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
829
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
830 ;; --- Mosaic using CCI ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
831
22425
b235f1b173f3 Don't require dired when compiling.
Dave Love <fx@gnu.org>
parents: 22097
diff changeset
832 ;;;###autoload
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
833 (defun browse-url-cci (url &optional new-window)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834 "Ask the XMosaic WWW browser to load URL.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
835 Default to the URL around or before point.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
836
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
837 This function only works for XMosaic version 2.5 or later. You must
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 select `CCI' from XMosaic's File menu, set the CCI Port Address to the
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
839 value of variable `browse-url-CCI-port', and enable `Accept requests'.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841 When called interactively, if variable `browse-url-new-window-p' is
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 non-nil, load the document in a new browser window, otherwise use a
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 random existing one. A non-nil interactive prefix argument reverses
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
844 the effect of `browse-url-new-window-p'.
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 When called non-interactively, optional second argument NEW-WINDOW is
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
847 used instead of `browse-url-new-window-p'."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
848 (interactive (browse-url-interactive-arg "Mosaic URL: "))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849 (open-network-stream "browse-url" " *browse-url*"
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
850 browse-url-CCI-host browse-url-CCI-port)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 ;; Todo: start browser if fails
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
852 (process-send-string "browse-url"
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
853 (concat "get url (" url ") output "
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
854 (if new-window
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
855 "new"
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
856 "current")
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
857 "\r\n"))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
858 (process-send-string "browse-url" "disconnect\r\n")
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
859 (delete-process "browse-url"))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
860
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
861 ;; --- IXI Mosaic ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
862
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
863 ;;;###autoload
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
864 (defun browse-url-iximosaic (url &optional new-window)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
865 ;; new-window ignored
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866 "Ask the IXIMosaic WWW browser to load URL.
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 Default to the URL around or before point."
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868 (interactive (browse-url-interactive-arg "IXI Mosaic URL: "))
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869 (start-process "tellw3b" nil "tellw3b"
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
870 "-service WWW_BROWSER ixi_showurl " url))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
872 ;; --- W3 ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
873
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
874 ;;;###autoload
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
875 (defun browse-url-w3 (url &optional new-window)
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 "Ask the w3 WWW browser to load URL.
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
877 Default to the URL around or before point.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
878
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
879 When called interactively, if variable `browse-url-new-window-p' is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
880 non-nil, load the document in a new window. A non-nil interactive
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
881 prefix argument reverses the effect of `browse-url-new-window-p'.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
882
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
883 When called non-interactively, optional second argument NEW-WINDOW is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
884 used instead of `browse-url-new-window-p'."
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885 (interactive (browse-url-interactive-arg "W3 URL: "))
24010
9eb02fa0c314 1999-01-06 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23959
diff changeset
886 (require 'w3) ; w3-fetch-other-window not autoloaded
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
887 (if new-window
24010
9eb02fa0c314 1999-01-06 Dave Love <fx@gnu.org>
Dave Love <fx@gnu.org>
parents: 23959
diff changeset
888 (w3-fetch-other-window url)
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
889 (w3-fetch url)))
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
891 ;;;###autoload
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
892 (defun browse-url-w3-gnudoit (url &optional new-window)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
893 ;; new-window ignored
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
894 "Ask another Emacs running gnuserv to load the URL using the W3 browser.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
895 The `browse-url-gnudoit-program' program is used with options given by
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
896 `browse-url-gnudoit-args'. Default to the URL around or before point."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
897 (interactive (browse-url-interactive-arg "W3 URL: "))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
898 (apply 'start-process (concat "gnudoit:" url) nil
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
899 browse-url-gnudoit-program
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
900 (append browse-url-gnudoit-args (list (concat "(w3-fetch \"" url "\")") "(raise-frame)"))))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
901
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
902 ;; --- Lynx in an xterm ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
903
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
904 ;;;###autoload
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
905 (defun browse-url-lynx-xterm (url &optional new-window)
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
906 ;; new-window ignored
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
907 "Ask the Lynx WWW browser to load URL.
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
908 Default to the URL around or before point. A new Lynx process is run
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
909 in an Xterm window using the Xterm program named by `browse-url-xterm-program'
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
910 with possible additional arguments `browse-url-xterm-args'."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
911 (interactive (browse-url-interactive-arg "Lynx URL: "))
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
912 (apply #'start-process `(,(concat "lynx" url) nil ,browse-url-xterm-program
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
913 ,@browse-url-xterm-args "-e" "lynx" ,url)))
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
914
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
915 ;; --- Lynx in an Emacs "term" window ---
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
916
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
917 ;;;###autoload
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
918 (defun browse-url-lynx-emacs (url &optional new-buffer)
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
919 "Ask the Lynx WWW browser to load URL.
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
920 Default to the URL around or before point. With a prefix argument, run
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
921 a new Lynx process in a new buffer.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
922
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
923 When called interactively, if variable `browse-url-new-window-p' is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
924 non-nil, load the document in a new lynx in a new term window,
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
925 otherwise use any existing one. A non-nil interactive prefix argument
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
926 reverses the effect of `browse-url-new-window-p'.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
927
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
928 When called non-interactively, optional second argument NEW-WINDOW is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
929 used instead of `browse-url-new-window-p'."
16415
e25afe6ea4d6 (browse-url): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15780
diff changeset
930 (interactive (browse-url-interactive-arg "Lynx URL: "))
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
931 (let* ((system-uses-terminfo t) ; Lynx uses terminfo
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
932 ;; (term-term-name "vt100") ; ??
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
933 (buf (get-buffer "*lynx*"))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
934 (proc (and buf (get-buffer-process buf)))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
935 (n browse-url-lynx-input-attempts))
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
936 (if (and new-buffer buf)
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
937 ;; Rename away the OLD buffer. This isn't very polite, but
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
938 ;; term insists on working in a buffer named *lynx* and would
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
939 ;; choke on *lynx*<1>
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
940 (progn (set-buffer buf)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
941 (rename-uniquely)))
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
942 (if (or new-buffer
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
943 (not buf)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
944 (not proc)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
945 (not (memq (process-status proc) '(run stop))))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
946 ;; start a new lynx
21078
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
947 (progn
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
948 (setq buf
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
949 (apply #'make-term
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
950 `("lynx" "lynx" nil ,@browse-url-lynx-emacs-args ,url)))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
951 (switch-to-buffer buf)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
952 (term-char-mode)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
953 (set-process-sentinel
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
954 (get-buffer-process buf)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
955 ;; Don't leave around a dead one (especially because of its
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
956 ;; munged keymap.)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
957 (lambda (process event)
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
958 (if (not (memq (process-status process) '(run stop)))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
959 (let ((buf (process-buffer process)))
64a6c0b65eaa Various doc fixes, mainly to remove innappropriate
Dave Love <fx@gnu.org>
parents: 20509
diff changeset
960 (if buf (kill-buffer buf)))))))
20167
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
961 ;; send the url to lynx in the old buffer
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
962 (let ((win (get-buffer-window buf t)))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
963 (if win
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
964 (select-window win)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
965 (switch-to-buffer buf)))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
966 (if (eq (following-char) ?_)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
967 (cond ((eq browse-url-lynx-input-field 'warn)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
968 (error "Please move out of the input field first."))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
969 ((eq browse-url-lynx-input-field 'avoid)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
970 (while (and (eq (following-char) ?_) (> n 0))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
971 (term-send-down) ; down arrow
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
972 (sit-for browse-url-lynx-input-delay))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
973 (if (eq (following-char) ?_)
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
974 (error "Cannot move out of the input field, sorry.")))))
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
975 (term-send-string proc (concat "g" ; goto
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
976 "\C-u" ; kill default url
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
977 url
5bd2ed765d52 Doc fixes.
Dave Love <fx@gnu.org>
parents: 20016
diff changeset
978 "\r")))))
15780
0a03d2b02ba1 (browse-url-choose-browser): New function.
Richard M. Stallman <rms@gnu.org>
parents: 15656
diff changeset
979
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
980 ;; --- MMM ---
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
981
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
982 ;;;###autoload
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
983 (defun browse-url-mmm (url &optional new-window)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
984 "Ask the MMM WWW browser to load URL.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
985 Default to the URL around or before point."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
986 (interactive (browse-url-interactive-arg "MMM URL: "))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
987 (message "Sending URL to MMM...")
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
988 (save-excursion
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
989 (set-buffer (get-buffer-create " *Shell Command Output*"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
990 (erase-buffer)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
991 ;; mmm_remote just SEGVs if the file isn't there...
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
992 (if (or (file-exists-p (expand-file-name "~/.mmm_remote"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
993 ;; location in v 0.4:
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
994 (file-exists-p (expand-file-name "~/.mmm/remote")))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
995 (call-process "mmm_remote" nil 0 nil url)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
996 (call-process "mmm" nil 0 nil "-external" url))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
997 (message "Sending URL to MMM... done")))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
998
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
999 ;; --- mailto ---
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1000
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1001 ;;;###autoload
19583
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
1002 (defun browse-url-mail (url &optional new-window)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1003 "Open a new mail message buffer within Emacs.
19583
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
1004 Default to using the mailto: URL around or before point as the
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
1005 recipient's address. Supplying a non-nil interactive prefix argument
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
1006 will cause the mail to be composed in another window rather than the
20460
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1007 current one.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1008
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1009 When called interactively, if variable `browse-url-new-window-p' is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1010 non-nil use `compose-mail-other-window', otherwise `compose-mail'. A
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1011 non-nil interactive prefix argument reverses the effect of
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1012 `browse-url-new-window-p'.
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1013
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1014 When called non-interactively, optional second argument NEW-WINDOW is
9bef2b27cdaa (browse-url-lynx-emacs): Add sentinel to kill the buffer when lynx
Dave Love <fx@gnu.org>
parents: 20320
diff changeset
1015 used instead of `browse-url-new-window-p'."
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1016 (interactive (browse-url-interactive-arg "Mailto URL: "))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1017 (save-excursion
23839
2dcf9631cad2 (browse-url-mail): Call compose-mail-other-window
Dave Love <fx@gnu.org>
parents: 23705
diff changeset
1018 (let ((to (if (string-match "^mailto:" url)
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1019 (substring url 7)
19583
5c7badcafb2b (browse-url-mail): Use compose-mail[-other-window], not always `mail'.
Richard M. Stallman <rms@gnu.org>
parents: 19579
diff changeset
1020 url)))
24126
8ebecccf46a6 (browse-url-maybe-new-window): Delete macro and
Dave Love <fx@gnu.org>
parents: 24063
diff changeset
1021 (if new-window
23959
af78e18ed775 (browse-url-mail): Give argument SEND-ACTION
Richard M. Stallman <rms@gnu.org>
parents: 23839
diff changeset
1022 (compose-mail-other-window to nil nil nil
af78e18ed775 (browse-url-mail): Give argument SEND-ACTION
Richard M. Stallman <rms@gnu.org>
parents: 23839
diff changeset
1023 (list 'insert-buffer (current-buffer)))
af78e18ed775 (browse-url-mail): Give argument SEND-ACTION
Richard M. Stallman <rms@gnu.org>
parents: 23839
diff changeset
1024 (compose-mail to nil nil nil nil
af78e18ed775 (browse-url-mail): Give argument SEND-ACTION
Richard M. Stallman <rms@gnu.org>
parents: 23839
diff changeset
1025 (list 'insert-buffer (current-buffer)))))))
18253
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1026
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1027 ;; --- Random browser ---
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1028
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1029 ;;;###autoload
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1030 (defun browse-url-generic (url &optional new-window)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1031 ;; new-window ignored
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1032 "Ask the WWW browser defined by `browse-url-generic-program' to load URL.
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1033 Default to the URL around or before point. A fresh copy of the
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1034 browser is started up in a new process with possible additional arguments
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1035 `browse-url-generic-args'. This is appropriate for browsers which
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1036 don't offer a form of remote control."
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1037 (interactive (browse-url-interactive-arg "URL: "))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1038 (if (not browse-url-generic-program)
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1039 (error "No browser defined (`browse-url-generic-program')"))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1040 (apply 'start-process (concat browse-url-generic-program url) nil
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1041 browse-url-generic-program
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1042 (append browse-url-generic-args (list url))))
0c8339d10beb Update keywords to show up in finder.
Richard M. Stallman <rms@gnu.org>
parents: 18224
diff changeset
1043
13208
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1044 (provide 'browse-url)
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1045
7a20f2bb5ac9 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1046 ;;; browse-url.el ends here