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