]> code.delx.au - gnu-emacs/blob - lisp/url/url-vars.el
Fix previous change.
[gnu-emacs] / lisp / url / url-vars.el
1 ;;; url-vars.el --- Variables for Uniform Resource Locator tool
2
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
4 ;; 2005 Free Software Foundation, Inc.
5
6 ;; Keywords: comm, data, processes, hypermedia
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Code:
26
27 (require 'mm-util)
28
29 (defconst url-version "Emacs"
30 "Version number of URL package.")
31
32 (defgroup url nil
33 "Uniform Resource Locator tool."
34 :version "22.1"
35 :group 'hypermedia)
36
37 (defgroup url-file nil
38 "URL storage."
39 :prefix "url-"
40 :group 'url)
41
42 (defgroup url-cache nil
43 "URL cache."
44 :prefix "url-"
45 :prefix "url-cache-"
46 :group 'url)
47
48 (defgroup url-mime nil
49 "MIME options of URL."
50 :prefix "url-"
51 :group 'url)
52
53 (defgroup url-hairy nil
54 "Hairy options of URL."
55 :prefix "url-"
56 :group 'url)
57
58
59 (defvar url-current-object nil
60 "A parsed representation of the current url.")
61
62 (defvar url-current-mime-headers nil
63 "A parsed representation of the MIME headers for the current url.")
64
65 (mapcar 'make-variable-buffer-local
66 '(
67 url-current-object
68 url-current-referer
69 url-current-mime-headers
70 ))
71
72 (defcustom url-honor-refresh-requests t
73 "*Whether to do automatic page reloads.
74 These are done at the request of the document author or the server via
75 the `Refresh' header in an HTTP response. If nil, no refresh
76 requests will be honored. If t, all refresh requests will be honored.
77 If non-nil and not t, the user will be asked for each refresh
78 request."
79 :type '(choice (const :tag "off" nil)
80 (const :tag "on" t)
81 (const :tag "ask" 'ask))
82 :group 'url-hairy)
83
84 (defcustom url-automatic-caching nil
85 "*If non-nil, all documents will be automatically cached to the local disk."
86 :type 'boolean
87 :group 'url-cache)
88
89 ;; Fixme: sanitize this.
90 (defcustom url-cache-expired
91 (lambda (t1 t2) (>= (- (car t2) (car t1)) 5))
92 "*A function determining if a cached item has expired.
93 It takes two times (numbers) as its arguments, and returns non-nil if
94 the second time is 'too old' when compared to the first time."
95 :type 'function
96 :group 'url-cache)
97
98 (defconst url-bug-address "bug-gnu-emacs@gnu.org"
99 "Where to send bug reports.")
100
101 (defcustom url-personal-mail-address nil
102 "*Your full email address.
103 This is what is sent to HTTP servers as the FROM field in an HTTP
104 request."
105 :type '(choice (const :tag "Unspecified" nil) string)
106 :group 'url)
107
108 (defcustom url-directory-index-file "index.html"
109 "*The filename to look for when indexing a directory.
110 If this file exists, and is readable, then it will be viewed instead of
111 using `dired' to view the directory."
112 :type 'string
113 :group 'url-file)
114
115 ;; Fixme: this should have a setter which calls url-setup-privacy-info.
116 (defcustom url-privacy-level '(email)
117 "*How private you want your requests to be.
118 HTTP has header fields for various information about the user, including
119 operating system information, email addresses, the last page you visited, etc.
120 This variable controls how much of this information is sent.
121
122 This should a symbol or a list.
123 Valid values if a symbol are:
124 none -- Send all information
125 low -- Don't send the last location
126 high -- Don't send the email address or last location
127 paranoid -- Don't send anything
128
129 If a list, this should be a list of symbols of what NOT to send.
130 Valid symbols are:
131 email -- the email address
132 os -- the operating system info
133 lastloc -- the last location
134 agent -- Do not send the User-Agent string
135 cookie -- never accept HTTP cookies
136
137 Samples:
138
139 (setq url-privacy-level 'high)
140 (setq url-privacy-level '(email lastloc)) ;; equivalent to 'high
141 (setq url-privacy-level '(os))
142
143 ::NOTE::
144 This variable controls several other variables and is _NOT_ automatically
145 updated. Call the function `url-setup-privacy-info' after modifying this
146 variable."
147 :type '(radio (const :tag "None (you believe in the basic goodness of humanity)"
148 :value none)
149 (const :tag "Low (do not reveal last location)"
150 :value low)
151 (const :tag "High (no email address or last location)"
152 :value high)
153 (const :tag "Paranoid (reveal nothing!)"
154 :value paranoid)
155 (checklist :tag "Custom"
156 (const :tag "Email address" :value email)
157 (const :tag "Operating system" :value os)
158 (const :tag "Last location" :value lastloc)
159 (const :tag "Browser identification" :value agent)
160 (const :tag "No cookies" :value cookie)))
161 :group 'url)
162
163 (defvar url-inhibit-uncompression nil "Do not do decompression if non-nil.")
164
165 (defcustom url-uncompressor-alist '((".z" . "x-gzip")
166 (".gz" . "x-gzip")
167 (".uue" . "x-uuencoded")
168 (".hqx" . "x-hqx")
169 (".Z" . "x-compress")
170 (".bz2" . "x-bzip2"))
171 "*An alist of file extensions and appropriate content-transfer-encodings."
172 :type '(repeat (cons :format "%v"
173 (string :tag "Extension")
174 (string :tag "Encoding")))
175 :group 'url-mime)
176
177 (defcustom url-mail-command 'compose-mail
178 "*This function will be called whenever url needs to send mail.
179 It should enter a mail-mode-like buffer in the current window.
180 The commands `mail-to' and `mail-subject' should still work in this
181 buffer, and it should use `mail-header-separator' if possible."
182 :type 'function
183 :group 'url)
184
185 (defcustom url-proxy-services nil
186 "*An alist of schemes and proxy servers that gateway them.
187 Looks like ((\"http\" . \"hostname:portnumber\") ...). This is set up
188 from the ACCESS_proxy environment variables."
189 :type '(repeat (cons :format "%v"
190 (string :tag "Protocol")
191 (string :tag "Proxy")))
192 :group 'url)
193
194 (defcustom url-standalone-mode nil
195 "*Rely solely on the cache?"
196 :type 'boolean
197 :group 'url-cache)
198
199 (defvar url-mime-separator-chars (mapcar 'identity
200 (concat "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
201 "abcdefghijklmnopqrstuvwxyz"
202 "0123456789'()+_,-./=?"))
203 "Characters allowable in a MIME multipart separator.")
204
205 (defcustom url-bad-port-list
206 '("25" "119" "19")
207 "*List of ports to warn the user about connecting to.
208 Defaults to just the mail, chargen, and NNTP ports so you cannot be
209 tricked into sending fake mail or forging messages by a malicious HTML
210 document."
211 :type '(repeat (string :tag "Port"))
212 :group 'url-hairy)
213
214 (defvar url-mime-content-type-charset-regexp
215 ";[ \t]*charset=\"?\\([^\"]+\\)\"?"
216 "Regexp used in parsing `Content-Type' for a charset indication.")
217
218 (defvar url-request-data nil "Any data to send with the next request.")
219
220 (defvar url-request-extra-headers nil
221 "A list of extra headers to send with the next request.
222 Should be an assoc list of headers/contents.")
223
224 (defvar url-request-method nil "The method to use for the next request.")
225
226 ;; FIXME!! (RFC 2616 gives examples like `compress, gzip'.)
227 (defvar url-mime-encoding-string nil
228 "*String to send in the Accept-encoding: field in HTTP requests.")
229
230 ;; Perhaps the first few should actually be given decreasing `q's and
231 ;; the list should be trimmed significantly.
232 ;; Fixme: do something sane if we don't have `sort-coding-systems'
233 ;; (Emacs 20, XEmacs).
234 (defun url-mime-charset-string ()
235 "Generate a list of preferred MIME charsets for HTTP requests.
236 Generated according to current coding system priorities."
237 (if (fboundp 'sort-coding-systems)
238 (let ((ordered (sort-coding-systems
239 (let (accum)
240 (dolist (elt mm-mime-mule-charset-alist)
241 (if (mm-coding-system-p (car elt))
242 (push (car elt) accum)))
243 (nreverse accum)))))
244 (concat (format "%s;q=1, " (pop ordered))
245 (mapconcat 'symbol-name ordered ";q=0.5, ")
246 ";q=0.5"))))
247
248 (defvar url-mime-charset-string (url-mime-charset-string)
249 "*String to send in the Accept-charset: field in HTTP requests.
250 The MIME charset corresponding to the most preferred coding system is
251 given priority 1 and the rest are given priority 0.5.")
252
253 (defun url-set-mime-charset-string ()
254 (setq url-mime-charset-string (url-mime-charset-string)))
255 ;; Regenerate if the language environment changes.
256 (add-hook 'set-language-environment-hook 'url-set-mime-charset-string)
257
258 ;; Fixme: set from the locale.
259 (defcustom url-mime-language-string nil
260 "*String to send in the Accept-language: field in HTTP requests.
261
262 Specifies the preferred language when servers can serve documents in
263 several languages. Use RFC 1766 abbreviations, e.g.@: `en' for
264 English, `de' for German. A comma-separated specifies descending
265 order of preference. The ordering can be made explicit using `q'
266 factors defined by HTTP, e.g. `de,en-gb;q=0.8,en;q=0.7'. `*' means
267 get the first available language (as opposed to the default)."
268 :type '(radio
269 (const :tag "None (get default language version)" :value nil)
270 (const :tag "Any (get first available language version)" :value "*")
271 (string :tag "Other"))
272 :group 'url-mime
273 :group 'i18n)
274
275 (defvar url-mime-accept-string nil
276 "String to send to the server in the Accept: field in HTTP requests.")
277
278 (defvar url-package-version nil
279 "Version number of package using URL.")
280
281 (defvar url-package-name nil "Version number of package using URL.")
282
283 (defvar url-system-type nil
284 "What type of system we are on.")
285 (defvar url-os-type nil
286 "What OS we are on.")
287
288 (defcustom url-max-password-attempts 5
289 "*Maximum number of times a password will be prompted for.
290 Applies when a protected document is denied by the server."
291 :type 'integer
292 :group 'url)
293
294 (defcustom url-temporary-directory (or (getenv "TMPDIR") "/tmp")
295 "*Where temporary files go."
296 :type 'directory
297 :group 'url-file)
298
299 (defcustom url-show-status t
300 "*Whether to show a running total of bytes transferred.
301 Can cause a large hit if using a remote X display over a slow link, or
302 a terminal with a slow modem."
303 :type 'boolean
304 :group 'url)
305
306 (defvar url-using-proxy nil
307 "Either nil or the fully qualified proxy URL in use, e.g.
308 http://www.domain.com/")
309
310 (defcustom url-news-server nil
311 "*The default news server from which to get newsgroups/articles.
312 Applies if no server is specified in the URL. Defaults to the
313 environment variable NNTPSERVER or \"news\" if NNTPSERVER is
314 undefined."
315 :type '(choice (const :tag "None" :value nil) string)
316 :group 'url)
317
318 (defvar url-nonrelative-link
319 "\\`\\([-a-zA-Z0-9+.]+:\\)"
320 "A regular expression that will match an absolute URL.")
321
322 (defcustom url-confirmation-func 'y-or-n-p
323 "*What function to use for asking yes or no functions.
324 Possible values are `yes-or-no-p' or `y-or-n-p', or any function that
325 takes a single argument (the prompt), and returns t only if a positive
326 answer is given."
327 :type '(choice (const :tag "Short (y or n)" :value y-or-n-p)
328 (const :tag "Long (yes or no)" :value yes-or-no-p)
329 (function :tag "Other"))
330 :group 'url-hairy)
331
332 (defcustom url-gateway-method 'native
333 "*The type of gateway support to use.
334 Should be a symbol specifying how to get a connection from the local machine.
335
336 Currently supported methods:
337 `telnet': Run telnet in a subprocess to connect;
338 `rlogin': Rlogin to another machine to connect;
339 `socks': Connect through a socks server;
340 `tls': Connect with TLS;
341 `ssl': Connect with SSL (deprecated, use `tls' instead);
342 `native': Connect directy."
343 :type '(radio (const :tag "Telnet to gateway host" :value telnet)
344 (const :tag "Rlogin to gateway host" :value rlogin)
345 (const :tag "Use SOCKS proxy" :value socks)
346 (const :tag "Use SSL/TLS for all connections" :value tls)
347 (const :tag "Use SSL for all connections (obsolete)" :value ssl)
348 (const :tag "Direct connection" :value native))
349 :group 'url-hairy)
350
351 (defvar url-setup-done nil "Has setup configuration been done?")
352
353 (defconst url-weekday-alist
354 '(("Sunday" . 0) ("Monday" . 1) ("Tuesday" . 2) ("Wednesday" . 3)
355 ("Thursday" . 4) ("Friday" . 5) ("Saturday" . 6)
356 ("Tues" . 2) ("Thurs" . 4)
357 ("Sun" . 0) ("Mon" . 1) ("Tue" . 2) ("Wed" . 3)
358 ("Thu" . 4) ("Fri" . 5) ("Sat" . 6)))
359
360 (defconst url-monthabbrev-alist
361 '(("Jan" . 1) ("Feb" . 2) ("Mar" . 3) ("Apr" . 4) ("May" . 5) ("Jun" . 6)
362 ("Jul" . 7) ("Aug" . 8) ("Sep" . 9) ("Oct" . 10) ("Nov" . 11)
363 ("Dec" . 12)))
364
365 (defvar url-lazy-message-time 0)
366
367 ;; Fixme: We may not be able to run SSL.
368 (defvar url-extensions-header "Security/Digest Security/SSL")
369
370 (defvar url-parse-syntax-table
371 (copy-syntax-table emacs-lisp-mode-syntax-table)
372 "*A syntax table for parsing URLs.")
373
374 (modify-syntax-entry ?' "\"" url-parse-syntax-table)
375 (modify-syntax-entry ?` "\"" url-parse-syntax-table)
376 (modify-syntax-entry ?< "(>" url-parse-syntax-table)
377 (modify-syntax-entry ?> ")<" url-parse-syntax-table)
378 (modify-syntax-entry ?/ " " url-parse-syntax-table)
379
380 (defvar url-load-hook nil
381 "*Hooks to be run after initalizing the URL library.")
382
383 ;;; Make OS/2 happy - yeeks
384 ;; (defvar tcp-binary-process-input-services nil
385 ;; "*Make OS/2 happy with our CRLF pairs...")
386
387 (defconst url-working-buffer " *url-work")
388
389 (defvar url-gateway-unplugged nil
390 "Non-nil means don't open new network connections.
391 This should be set, e.g. by mail user agents rendering HTML to avoid
392 `bugs' which call home.")
393
394 (defun url-vars-unload-hook ()
395 (remove-hook 'set-language-environment-hook 'url-set-mime-charset-string))
396
397 (add-hook 'url-vars-unload-hook 'url-vars-unload-hook)
398
399 (provide 'url-vars)
400
401 ;;; arch-tag: 29205e5f-c5ce-433c-8d5d-38cbaed64b49
402 ;;; url-vars.el ends here