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