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