(Question 8.6): Update reference to the Gnus
[bpt/emacs.git] / man / url.texi
CommitLineData
948a35c1 1\input texinfo
89281a95 2@setfilename ../info/url
948a35c1
SM
3@settitle URL Programmer's Manual
4
5@iftex
6@c @finalout
7@end iftex
8@c @setchapternewpage odd
9@c @smallbook
10
11@tex
12\overfullrule=0pt
13%\global\baselineskip 30pt % for printing in double space
14@end tex
15@dircategory World Wide Web
16@dircategory GNU Emacs Lisp
17@direntry
18* URL: (url). URL loading package.
19@end direntry
20
21@ifnottex
22This file documents the URL loading package.
23
b223e22d
KB
24Copyright @copyright{} 1996, 1997, 1998, 1999, 2002, 2004,
252005, 2006 Free Software Foundation, Inc.@*
26Copyright @copyright{} 1993, 1994, 1995, 1996 William M. Perry
948a35c1
SM
27
28Permission is granted to copy, distribute and/or modify this document
678e7c71 29under the terms of the GNU Free Documentation License, Version 1.2 or
948a35c1 30any later version published by the Free Software Foundation; with the
a17e377e 31Invariant Sections being
948a35c1
SM
32``GNU GENERAL PUBLIC LICENSE''. A copy of the
33license is included in the section entitled ``GNU Free Documentation
34License.''
35@end ifnottex
36
37@c
38@titlepage
39@sp 6
40@center @titlefont{URL}
41@center @titlefont{Programmer's Manual}
42@sp 4
43@center First Edition, URL Version 2.0
44@sp 1
45@c @center December 1999
46@sp 5
47@center William M. Perry
48@center @email{wmperry@@gnu.org}
49@center David Love
50@center @email{fx@@gnu.org}
51@page
52@vskip 0pt plus 1filll
53Copyright @copyright{} 1993, 1994, 1995, 1996 William M. Perry@*
b65d8176 54Copyright @copyright{} 1996, 1997, 1998, 1999, 2002, 2003, 2004,
b223e22d 552005, 2006 Free Software Foundation, Inc.
948a35c1
SM
56
57Permission is granted to copy, distribute and/or modify this document
678e7c71 58under the terms of the GNU Free Documentation License, Version 1.2 or
948a35c1
SM
59any later version published by the Free Software Foundation; with the
60Invariant Sections being
61``GNU GENERAL PUBLIC LICENSE''. A copy of the
62license is included in the section entitled ``GNU Free Documentation
63License.''
64@end titlepage
65@page
66@node Top
67@top URL
68
69
70
71@menu
72* Getting Started:: Preparing your program to use URLs.
73* Retrieving URLs:: How to use this package to retrieve a URL.
74* Supported URL Types:: Descriptions of URL types currently supported.
75* Defining New URLs:: How to define a URL loader for a new protocol.
76* General Facilities:: URLs can be cached, accessed via a gateway
77 and tracked in a history list.
78* Customization:: Variables you can alter.
a17e377e
LT
79* Function Index::
80* Variable Index::
81* Concept Index::
948a35c1
SM
82@end menu
83
84@node Getting Started
85@chapter Getting Started
86@cindex URLs, definition
87@cindex URIs
88
89@dfn{Uniform Resource Locators} (URLs) are a specific form of
90@dfn{Uniform Resource Identifiers} (URI) described in RFC 2396 which
91updates RFC 1738 and RFC 1808. RFC 2016 defines uniform resource
92agents.
93
94URIs have the form @var{scheme}:@var{scheme-specific-part}, where the
95@var{scheme}s supported by this library are described below.
96@xref{Supported URL Types}.
97
a81d8ea1 98FTP, NFS, HTTP, HTTPS, @code{rlogin}, @code{telnet}, tn3270,
948a35c1
SM
99IRC and gopher URLs all have the form
100
101@example
102@var{scheme}://@r{[}@var{userinfo}@@@r{]}@var{hostname}@r{[}:@var{port}@r{]}@r{[}/@var{path}@r{]}
103@end example
104@noindent
105where @samp{@r{[}} and @samp{@r{]}} delimit optional parts.
106@var{userinfo} sometimes takes the form @var{username}:@var{password}
107but you should beware of the security risks of sending cleartext
108passwords. @var{hostname} may be a domain name or a dotted decimal
109address. If the @samp{:@var{port}} is omitted then the library will
110use the `well known' port for that service when accessing URLs. With
111the possible exception of @code{telnet}, it is rare for ports to be
112specified, and it is possible using a non-standard port may have
113undesired consequences if a different service is listening on that
0111d1e1 114port (e.g., an HTTP URL specifying the SMTP port can cause mail to be
a81d8ea1
JB
115sent). @c , but @xref{Other Variables, url-bad-port-list}.
116The meaning of the @var{path} component depends on the service.
948a35c1 117
948a35c1 118@menu
a17e377e 119* Configuration::
948a35c1
SM
120* Parsed URLs:: URLs are parsed into vector structures.
121@end menu
122
123@node Configuration
124@section Configuration
125
126@defvar url-configuration-directory
127@cindex @file{~/.url}
128@cindex configuration files
129The directory in which URL configuration files, the cache etc.,
130reside. Default @file{~/.url}.
131@end defvar
132
133@node Parsed URLs
134@section Parsed URLs
135@cindex parsed URLs
136The library functions typically operate on @dfn{parsed} versions of
137URLs. These are actually vectors of the form:
138
139@example
140[@var{type} @var{user} @var{password} @var{host} @var{port} @var{file} @var{target} @var{attributes} @var{full}]
141@end example
142
143@noindent where
144@table @var
145@item type
0111d1e1 146is the type of the URL scheme, e.g., @code{http}
948a35c1
SM
147@item user
148is the username associated with it, or @code{nil};
149@item password
150is the user password associated with it, or @code{nil};
151@item host
152is the host name associated with it, or @code{nil};
153@item port
154is the port number associated with it, or @code{nil};
155@item file
156is the `file' part of it, or @code{nil}. This doesn't necessarily
157actually refer to a file;
158@item target
159is the target part, or @code{nil};
160@item attributes
161is the attributes associated with it, or @code{nil};
162@item full
163is @code{t} for a fully-specified URL, with a host part indicated by
164@samp{//} after the scheme part.
165@end table
166
167@findex url-type
168@findex url-user
169@findex url-password
170@findex url-host
171@findex url-port
172@findex url-file
173@findex url-target
174@findex url-attributes
175@findex url-full
176@findex url-set-type
177@findex url-set-user
178@findex url-set-password
179@findex url-set-host
180@findex url-set-port
181@findex url-set-file
182@findex url-set-target
183@findex url-set-attributes
184@findex url-set-full
185These attributes have accessors named @code{url-@var{part}}, where
0111d1e1 186@var{part} is the name of one of the elements above, e.g.,
948a35c1
SM
187@code{url-host}. Similarly, there are setters of the form
188@code{url-set-@var{part}}.
189
190There are functions for parsing and unparsing between the string and
191vector forms.
192
193@defun url-generic-parse-url url
194Return a parsed version of the string @var{url}.
195@end defun
196
197@defun url-recreate-url url
198@cindex unparsing URLs
199Recreates a URL string from the parsed @var{url}.
200@end defun
201
202@node Retrieving URLs
203@chapter Retrieving URLs
204
205@defun url-retrieve-synchronously url
206Retrieve @var{url} synchronously and return a buffer containing the
207data. @var{url} is either a string or a parsed URL structure. Return
ac091f3d 208@code{nil} if there are no data associated with it (the case for dired,
948a35c1
SM
209info, or mailto URLs that need no further processing).
210@end defun
211
212@defun url-retrieve url callback &optional cbargs
213Retrieve @var{url} asynchronously and call @var{callback} with args
214@var{cbargs} when finished. The callback is called when the object
215has been completely retrieved, with the current buffer containing the
216object and any MIME headers associated with it. @var{url} is either a
217string or a parsed URL structure. Returns the buffer @var{url} will
ac091f3d 218load into, or @code{nil} if the process has already completed.
948a35c1
SM
219@end defun
220
221@node Supported URL Types
222@chapter Supported URL Types
223
224@menu
225* http/https:: Hypertext Transfer Protocol.
a17e377e 226* file/ftp:: Local files and FTP archives.
948a35c1
SM
227* info:: Emacs `Info' pages.
228* mailto:: Sending email.
229* news/nntp/snews:: Usenet news.
230* rlogin/telnet/tn3270:: Remote host connectivity.
231* irc:: Internet Relay Chat.
232* data:: Embedded data URLs.
233* nfs:: Networked File System
234@c * finger::
235@c * gopher::
236@c * netrek::
237@c * prospero::
238* cid:: Content-ID.
a17e377e 239* about::
948a35c1
SM
240* ldap:: Lightweight Directory Access Protocol
241* imap:: IMAP mailboxes.
242* man:: Unix man pages.
243@end menu
244
245@node http/https
246@section @code{http} and @code{https}
247
248The scheme @code{http} is Hypertext Transfer Protocol. The library
249supports version 1.1, specified in RFC 2616. (This supersedes 1.0,
250defined in RFC 1945) HTTP URLs have the following form, where most of
251the parts are optional:
252@example
253http://@var{user}:@var{password}@var{host}:@var{port}/@var{path}?@var{searchpart}#@var{fragment}
254@end example
255@c The @code{:@var{port}} part is optional, and @var{port} defaults to
256@c 80. The @code{/@var{path}} part, if present, is a slash-separated
257@c series elements. The @code{?@var{searchpart}}, if present, is the
258@c query for a search or the content of a form submission. The
259@c @code{#fragment} part, if present, is a location in the document.
260
261The scheme @code{https} is a secure version of @code{http}, with
262transmission via SSL. It is defined in RFC 2069. Its default port is
263443. This scheme depends on SSL support in Emacs via the
264@file{ssl.el} library and is actually implemented by forcing the
265@code{ssl} gateway method to be used. @xref{Gateways in general}.
266
267@defopt url-honor-refresh-requests
268This controls honouring of HTTP @samp{Refresh} headers by which
269servers can direct clients to reload documents from the same URL or a
270or different one. @code{nil} means they will not be honoured,
271@code{t} (the default) means they will always be honoured, and
272otherwise the user will be asked on each request.
273@end defopt
274
275
276@menu
a17e377e
LT
277* Cookies::
278* HTTP language/coding::
279* HTTP URL Options::
280* Dealing with HTTP documents::
948a35c1
SM
281@end menu
282
283@node Cookies
284@subsection Cookies
285
286@defopt url-cookie-file
287The file in which cookies are stored, defaulting to @file{cookies} in
288the directory specified by @code{url-configuration-directory}.
289@end defopt
290
291@defopt url-cookie-confirmation
292Specifies whether confirmation is require to accept cookies.
293@end defopt
294
295@defopt url-cookie-multiple-line
296Specifies whether to put all cookies for the server on one line in the
297HTTP request to satisfy broken servers like
298@url{http://www.hotmail.com}.
299@end defopt
300
301@defopt url-cookie-trusted-urls
302A list of regular expressions matching URLs from which to accept
303cookies always.
304@end defopt
305
306@defopt url-cookie-untrusted-urls
307A list of regular expressions matching URLs from which to reject
308cookies always.
309@end defopt
310
311@defopt url-cookie-save-interval
312The number of seconds between automatic saves of cookies to disk.
313Default is one hour.
314@end defopt
315
316
317@node HTTP language/coding
318@subsection Language and Encoding Preferences
319
320HTTP allows clients to express preferences for the language and
0111d1e1
RS
321encoding of documents which servers may honour. For each of these
322variables, the value is a string; it can specify a single choice, or
4a0c6358
RS
323it can be a comma-separated list.
324
325Normally this list ordered by descending preference. However, each
326element can be followed by @samp{;q=@var{priority}} to specify its
327preference level, a decimal number from 0 to 1; e.g., for
328@code{url-mime-language-string}, @w{@code{"de, en-gb;q=0.8,
329en;q=0.7"}}. An element that has no @samp{;q} specification has
330preference level 1.
948a35c1
SM
331
332@defopt url-mime-charset-string
333@cindex character sets
334@cindex coding systems
335This variable specifies a preference for character sets when documents
336can be served in more than one encoding.
337
0111d1e1
RS
338HTTP allows specifying a series of MIME charsets which indicate your
339preferred character set encodings, e.g., Latin-9 or Big5, and these
340can be weighted. The default series is generated automatically from
341the associated MIME types of all defined coding systems, sorted by the
342coding system priority specified in Emacs. @xref{Recognize Coding, ,
343Recognizing Coding Systems, emacs, The GNU Emacs Manual}.
948a35c1
SM
344@end defopt
345
346@defopt url-mime-language-string
347@cindex language preferences
348A string specifying the preferred language when servers can serve
0111d1e1
RS
349files in several languages. Use RFC 1766 abbreviations, e.g.,
350@samp{en} for English, @samp{de} for German.
351
352The string can be @code{"*"} to get the first available language (as
353opposed to the default).
948a35c1
SM
354@end defopt
355
356@node HTTP URL Options
357@subsection HTTP URL Options
358
359HTTP supports an @samp{OPTIONS} method describing things supported by
360the URL@.
361
362@defun url-http-options url
363Returns a property list describing options available for URL. The
364property list members are:
365
366@table @code
367@item methods
368A list of symbols specifying what HTTP methods the resource
369supports.
370
371@item dav
372@cindex DAV
373A list of numbers specifying what DAV protocol/schema versions are
374supported.
375
376@item dasl
377@cindex DASL
378A list of supported DASL search types supported (string form).
379
380@item ranges
381A list of the units available for use in partial document fetches.
382
383@item p3p
384@cindex P3P
385The @dfn{Platform For Privacy Protection} description for the resource.
386Currently this is just the raw header contents.
387@end table
388
389@end defun
390
391@node Dealing with HTTP documents
392@subsection Dealing with HTTP documents
393
394HTTP URLs are retrieved into a buffer containing the HTTP headers
395followed by the body. Since the headers are quasi-MIME, they may be
15594861
LT
396processed using the MIME library. @xref{Top,, Emacs MIME,
397emacs-mime, The Emacs MIME Manual}. The URL package provides a
398function to do this in general:
948a35c1
SM
399
400@defun url-decode-text-part handle &optional coding
401This function decodes charset-encoded text in the current buffer. In
402Emacs, the buffer is expected to be unibyte initially and is set to
403multibyte after decoding.
404HANDLE is the MIME handle of the original part. CODING is an explicit
405coding to use, overriding what the MIME headers specify.
406The coding system used for the decoding is returned.
407
408Note that this function doesn't deal with @samp{http-equiv} charset
409specifications in HTML @samp{<meta>} elements.
410@end defun
411
412@node file/ftp
413@section file and ftp
414@cindex files
415@cindex FTP
416@cindex File Transfer Protocol
417@cindex compressed files
418@findex dired
419
420@example
421ftp://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
422file://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
423@end example
424
425These schemes are defined in RFC 1808.
df2f79ee
LT
426@samp{ftp:} and @samp{file:} are synonymous in this library. They
427allow reading arbitrary files from hosts. Either @samp{ange-ftp}
948a35c1
SM
428(Emacs) or @samp{efs} (XEmacs) is used to retrieve them from remote
429hosts. Local files are accessed directly.
430
431Compressed files are handled, but support is hard-coded so that
432@code{jka-compr-compression-info-list} and so on have no affect.
433Suffixes recognized are @samp{.z}, @samp{.gz}, @samp{.Z} and
434@samp{.bz2}.
435
436@defopt url-directory-index-file
437The filename to look for when indexing a directory, default
438@samp{"index.html"}. If this file exists, and is readable, then it
439will be viewed instead of using @code{dired} to view the directory.
440@end defopt
441
442@node info
443@section info
444@cindex Info
445@cindex Texinfo
446@findex Info-goto-node
447
448@example
449info:@var{file}#@var{node}
450@end example
451
452Info URLs are not officially defined. They invoke
453@code{Info-goto-node} with argument @samp{(@var{file})@var{node}}.
454@samp{#@var{node}} is optional, defaulting to @samp{Top}.
455
456@node mailto
457@section mailto
458
459@cindex mailto
460@cindex email
461A mailto URL will send an email message to the address in the
462URL, for example @samp{mailto:foo@@bar.com} would compose a
a17e377e 463message to @samp{foo@@bar.com}.
948a35c1
SM
464
465@defopt url-mail-command
466@vindex mail-user-agent
467The function called whenever url needs to send mail. This should
468normally be left to default from @var{mail-user-agent}. @xref{Mail
15594861 469Methods, , Mail-Composition Methods, emacs, The GNU Emacs Manual}.
948a35c1
SM
470@end defopt
471
472An @samp{X-Url-From} header field containing the URL of the document
473that contained the mailto URL is added if that URL is known.
474
475RFC 2368 extends the definition of mailto URLs in RFC 1738.
476The form of a mailto URL is
477@example
478@samp{mailto:@var{mailbox}[?@var{header}=@var{contents}[&@var{header}=@var{contents}]]}
479@end example
df2f79ee 480@noindent where an arbitrary number of @var{header}s can be added. If the
948a35c1
SM
481@var{header} is @samp{body}, then @var{contents} is put in the body
482otherwise a @var{header} header field is created with @var{contents}
483as its contents. Note that the URL library does not consider any
484headers `dangerous' so you should check them before sending the
485message.
486
487@c Fixme: update
488Email messages are defined in @sc{rfc}822.
489
490@node news/nntp/snews
491@section @code{news}, @code{nntp} and @code{snews}
492@cindex news
493@cindex network news
494@cindex usenet
495@cindex NNTP
496@cindex snews
497
498@c draft-gilman-news-url-01
499The network news URL scheme take the following forms following RFC
5001738 except that for compatibility with other clients, host and port
501fields may be included in news URLs though they are properly only
502allowed for nntp an snews.
503
504@table @samp
a17e377e 505@item news:@var{newsgroup}
948a35c1
SM
506Retrieves a list of messages in @var{newsgroup};
507@item news:@var{message-id}
508Retrieves the message with the given @var{message-id};
a17e377e 509@item news:*
948a35c1
SM
510Retrieves a list of all available newsgroups;
511@item nntp://@var{host}:@var{port}/@var{newsgroup}
512@itemx nntp://@var{host}:@var{port}/@var{message-id}
513@itemx nntp://@var{host}:@var{port}/*
514Similar to the @samp{news} versions.
515@end table
516
517@samp{:@var{port}} is optional and defaults to :119.
518
519@samp{snews} is the same as @samp{nntp} except that the default port
520is :563.
521@cindex SSL
df2f79ee 522(It is tunneled through SSL.)
948a35c1
SM
523
524An @samp{nntp} URL is the same as a news URL, except that the URL may
525specify an article by its number.
526
527@defopt url-news-server
528This variable can be used to override the default news server.
529Usually this will be set by the Gnus package, which is used to fetch
530news.
531@cindex environment variable
532@vindex NNTPSERVER
533It may be set from the conventional environment variable
534@code{NNTPSERVER}.
535@end defopt
536
537@node rlogin/telnet/tn3270
538@section rlogin, telnet and tn3270
539@cindex rlogin
540@cindex telnet
541@cindex tn3270
542@cindex terminal emulation
543@findex terminal-emulator
544
545These URL schemes from RFC 1738 for logon via a terminal emulator have
546the form
547@example
548telnet://@var{user}:@var{password}@@@var{host}:@var{port}
549@end example
550but the @code{:@var{password}} component is ignored.
551
552To handle rlogin, telnet and tn3270 URLs, a @code{rlogin},
553@code{telnet} or @code{tn3270} (the program names and arguments are
554hardcoded) session is run in a @code{terminal-emulator} buffer.
555Well-known ports are used if the URL does not specify a port.
556
557@node irc
558@section irc
559@cindex IRC
560@cindex Internet Relay Chat
561@cindex ZEN IRC
a17e377e 562@c Fixme: reference (was http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt)
948a35c1 563@dfn{Internet Relay Chat} (IRC) is handled by handing off the @sc{irc}
a17e377e 564session to a function named in @code{url-irc-function}.
948a35c1
SM
565
566@defopt url-irc-function
567A function to actually open an IRC connection.
568This function
569must take five arguments, @var{host}, @var{port}, @var{channel},
570@var{user} and @var{password}. The @var{channel} argument specifies the
571channel to join immediately, this can be @code{nil}. By default this is
572@code{url-irc-zenirc}.
573@end defopt
574@defun url-irc-zenirc host port channel user password
575Processes the arguments and lets @code{zenirc} handle the session.
576@end defun
577
578@node data
579@section data
580@cindex data URLs
581
582@example
583data:@r{[}@var{media-type}@r{]}@r{[};@var{base64}@r{]},@var{data}
584@end example
585
586Data URLs contain MIME data in the URL itself. They are defined in
587RFC 2397.
588
589@var{media-type} is a MIME @samp{Content-Type} string, possibly
590including parameters. It defaults to
591@samp{text/plain;charset=US-ASCII}. The @samp{text/plain} can be
592omitted but the charset parameter supplied. If @samp{;base64} is
593present, the @var{data} are base64-encoded.
a17e377e 594
948a35c1
SM
595@node nfs
596@section nfs
597@cindex NFS
598@cindex Network File System
599@cindex automounter
600
601@example
602nfs://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
603@end example
604
605The @samp{nfs:} scheme is defined in RFC 2224. It is similar to
606@samp{ftp:} except that it points to a file on a remote host that is
607handled by the automounter on the local host.
608
609@defvar url-nfs-automounter-directory-spec
610@end defvar
611A string saying how to invoke the NFS automounter. Certain @samp{%}
612sequences are recognized:
613
614@table @samp
615@item %h
616The hostname of the NFS server;
617@item %n
618The port number of the NFS server;
619@item %u
620The username to use to authenticate;
621@item %p
622The password to use to authenticate;
623@item %f
624The filename on the remote server;
625@item %%
626A literal @samp{%}.
627@end table
628
629Each can be used any number of times.
630
631@node cid
632@section cid
633@cindex Content-ID
634
635RFC 2111
636
637@node about
638@section about
639
640@node ldap
641@section ldap
642@cindex LDAP
643@cindex Lightweight Directory Access Protocol
644
645The LDAP scheme is defined in RFC 2255.
646
647@node imap
648@section imap
649@cindex IMAP
650
651RFC 2192
652
653@node man
654@section man
655@cindex @command{man}
656@cindex Unix man pages
657@findex man
658
659@example
660@samp{man:@var{page-spec}}
661@end example
662
663This is a non-standard scheme. @var{page-spec} is passed directly to
664the Lisp @code{man} function.
665
666@node Defining New URLs
667@chapter Defining New URLs
668
669@menu
a17e377e
LT
670* Naming conventions::
671* Required functions::
672* Optional functions::
673* Asynchronous fetching::
674* Supporting file-name-handlers::
948a35c1
SM
675@end menu
676
677@node Naming conventions
678@section Naming conventions
679
680@node Required functions
681@section Required functions
682
683@node Optional functions
684@section Optional functions
685
686@node Asynchronous fetching
687@section Asynchronous fetching
688
689@node Supporting file-name-handlers
690@section Supporting file-name-handlers
691
692@node General Facilities
693@chapter General Facilities
694
695@menu
a17e377e
LT
696* Disk Caching::
697* Proxies::
698* Gateways in general::
699* History::
948a35c1
SM
700@end menu
701
702@node Disk Caching
703@section Disk Caching
704@cindex Caching
705@cindex Persistent Cache
706@cindex Disk Cache
707
708The disk cache stores retrieved documents locally, whence they can be
709retrieved more quickly. When requesting a URL that is in the cache,
710the library checks to see if the page has changed since it was last
711retrieved from the remote machine. If not, the local copy is used,
712saving the transmission over the network.
713@cindex Cleaning the cache
714@cindex Clearing the cache
715@cindex Cache cleaning
716Currently the cache isn't cleared automatically.
717@c Running the @code{clean-cache} shell script
718@c fist is recommended, to allow for future cleaning of the cache. This
719@c shell script will remove all files that have not been accessed since it
720@c was last run. To keep the cache pared down, it is recommended that this
721@c script be run from @i{at} or @i{cron} (see the manual pages for
722@c crontab(5) or at(1) for more information)
723
724@defopt url-automatic-caching
725Setting this variable non-@code{nil} causes documents to be cached
726automatically.
727@end defopt
728
729@defopt url-cache-directory
730This variable specifies the
731directory to store the cache files. It defaults to sub-directory
732@file{cache} of @code{url-configuration-directory}.
733@end defopt
734
735@c Fixme: function v. option, but neither used.
736@c @findex url-cache-expired
737@c @defopt url-cache-expired
738@c This is a function to decide whether or not a cache entry has expired.
739@c It takes two times as it parameters and returns non-@code{nil} if the
740@c second time is ``too old'' when compared with the first time.
741@c @end defopt
742
743@defopt url-cache-creation-function
744The cache relies on a scheme for mapping URLs to files in the cache.
745This variable names a function which sets the type of cache to use.
746It takes a URL as argument and returns the absolute file name of the
747corresponding cache file. The two supplied possibilities are
748@code{url-cache-create-filename-using-md5} and
749@code{url-cache-create-filename-human-readable}.
750@end defopt
751
752@defun url-cache-create-filename-using-md5 url
753Creates a cache file name from @var{url} using MD5 hashing.
754@findex md5
755This is creates entries with very few cache collisions and is fast if
756you have the @code{md5} function as a primitive (Emacs 21 and XEmacs).
757@smallexample
758(url-cache-create-filename-using-md5 "http://www.example.com/foo/bar")
759 @result{} "/home/fx/.url/cache/fx/http/com/example/www/b8a35774ad20db71c7c3409a5410e74f"
760@end smallexample
761@end defun
762
763@defun url-cache-create-filename-human-readable url
764Creates a cache file name from @var{url} more obviously connected to
765@var{url} than for @code{url-cache-create-filename-using-md5}, but
766more likely to conflict with other files.
767@smallexample
768(url-cache-create-filename-human-readable "http://www.example.com/foo/bar")
769 @result{} "/home/fx/.url/cache/fx/http/com/example/www/foo/bar"
770@end smallexample
771@end defun
772
a17e377e 773@c Fixme: never actually used currently?
948a35c1
SM
774@c @defopt url-standalone-mode
775@c @cindex Relying on cache
776@c @cindex Cache only mode
777@c @cindex Standalone mode
778@c If this variable is non-@code{nil}, the library relies solely on the
779@c cache for fetching documents and avoids checking if they have changed
780@c on remote servers.
781@c @end defopt
782
783@c With a large cache of documents on the local disk, it can be very handy
784@c when traveling, or any other time the network connection is not active
785@c (a laptop with a dial-on-demand PPP connection, etc). Emacs/W3 can rely
786@c solely on its cache, and avoid checking to see if the page has changed
787@c on the remote server. In the case of a dial-on-demand PPP connection,
788@c this will keep the phone line free as long as possible, only bringing up
789@c the PPP connection when asking for a page that is not located in the
790@c cache. This is very useful for demonstrations as well.
791
792@node Proxies
793@section Proxies and Gatewaying
794
a17e377e 795@c fixme: check/document url-ns stuff
948a35c1
SM
796@cindex proxy servers
797@cindex proxies
798@cindex environment variables
799@vindex HTTP_PROXY
800Proxy servers are commonly used to provide gateways through firewalls
801or as caches serving some more-or-less local network. Each protocol
802(HTTP, FTP, etc.)@: can have a different gateway server. Proxying is
803conventionally configured commonly amongst different programs through
804environment variables of the form @code{@var{protocol}_proxy}, where
805@var{protocol} is one of the supported network protocols (@code{http},
806@code{ftp} etc.). The library recognizes such variables in either
807upper or lower case. Their values are of one of the forms:
808@itemize @bullet
809@item @code{@var{host}:@var{port}}
810@item A full URL;
811@item Simply a host name.
812@end itemize
813
814@vindex NO_PROXY
815The @code{NO_PROXY} environment variable specifies URLs that should be
816excluded from proxying (on servers that should be contacted directly).
817This should be a comma-separated list of hostnames, domain names, or a
818mixture of both. Asterisks can be used as wildcards, but other
819clients may not support that. Domain names may be indicated by a
820leading dot. For example:
821@example
822NO_PROXY="*.aventail.com,home.com,.seanet.com"
823@end example
824@noindent says to contact all machines in the @samp{aventail.com} and
825@samp{seanet.com} domains directly, as well as the machine named
826@samp{home.com}. If @code{NO_PROXY} isn't defined, @code{no_PROXY}
a17e377e 827and @code{no_proxy} are also tried, in that order.
948a35c1
SM
828
829Proxies may also be specified directly in Lisp.
830
831@defopt url-proxy-services
832This variable is an alist of URL schemes and proxy servers that
833gateway them. The items are of the form @w{@code{(@var{scheme}
834. @var{host}:@var{portnumber})}}, says that the URL @var{scheme} is
835gatewayed through @var{portnumber} on the specified @var{host}. An
836exception is the pseudo scheme @code{"no_proxy"}, which is paired with
837a regexp matching host names not to be proxied. This variable is
838initialized from the environment as above.
839
840@example
841(setq url-proxy-services
842 '(("http" . "proxy.aventail.com:80")
843 ("no_proxy" . "^.*\\(aventail\\|seanet\\)\\.com")))
844@end example
845@end defopt
846
847@node Gateways in general
848@section Gateways in General
849@cindex gateways
850@cindex firewalls
851
852The library provides a general gateway layer through which all
853networking passes. It can both control access to the network and
854provide access through gateways in firewalls. This may make direct
f0cdbdfa 855connections in some cases and pass through some sort of gateway in
948a35c1
SM
856others.@footnote{Proxies (which only operate over HTTP) are
857implemented using this.} The library's basic function responsible for
f0cdbdfa 858making connections is @code{url-open-stream}.
948a35c1
SM
859
860@defun url-open-stream name buffer host service
861@cindex opening a stream
862@cindex stream, opening
863Open a stream to @var{host}, possibly via a gateway. The other
864arguments are as for @code{open-network-stream}. This will not make a
f0cdbdfa 865connection if @code{url-gateway-unplugged} is non-@code{nil}.
948a35c1
SM
866@end defun
867
868@defvar url-gateway-local-host-regexp
869This is a regular expression that matches local hosts that do not
f0cdbdfa 870require the use of a gateway. If @code{nil}, all connections are made
948a35c1
SM
871through the gateway.
872@end defvar
873
874@defvar url-gateway-method
875This variable controls which gateway method is used. It may be useful
876to bind it temporarily in some applications. It has values taken from
877a list of symbols. Possible values are:
878
879@table @code
880@item telnet
881@cindex @command{telnet}
882Use this method if you must first telnet and log into a gateway host,
883and then run telnet from that host to connect to outside machines.
884
885@item rlogin
886@cindex @command{rlogin}
887This method is identical to @code{telnet}, but uses @command{rlogin}
888to log into the remote machine without having to send the username and
889password over the wire every time.
890
891@item socks
892@cindex @sc{socks}
893Use if the firewall has a @sc{socks} gateway running on it. The
894@sc{socks} v5 protocol is defined in RFC 1928.
895
896@c @item ssl
897@c This probably shouldn't be documented
898@c Fixme: why not? -- fx
899
900@item native
901This method uses Emacs's builtin networking directly. This is the
902default. It can be used only if there is no firewall blocking access.
903@end table
904@end defvar
905
906The following variables control the gateway methods.
907
908@defopt url-gateway-telnet-host
909The gateway host to telnet to. Once logged in there, you then telnet
910out to the hosts you want to connect to.
911@end defopt
912@defopt url-gateway-telnet-parameters
913This should be a list of parameters to pass to the @command{telnet} program.
914@end defopt
915@defopt url-gateway-telnet-password-prompt
916This is a regular expression that matches the password prompt when
917logging in.
918@end defopt
919@defopt url-gateway-telnet-login-prompt
920This is a regular expression that matches the username prompt when
921logging in.
922@end defopt
923@defopt url-gateway-telnet-user-name
924The username to log in with.
925@end defopt
926@defopt url-gateway-telnet-password
927The password to send when logging in.
928@end defopt
929@defopt url-gateway-prompt-pattern
930This is a regular expression that matches the shell prompt.
931@end defopt
932
933@defopt url-gateway-rlogin-host
934Host to @samp{rlogin} to before telnetting out.
935@end defopt
936@defopt url-gateway-rlogin-parameters
937Parametres to pass to @samp{rsh}.
938@end defopt
939@defopt url-gateway-rlogin-user-name
940User name to use when logging in to the gateway.
941@end defopt
942@defopt url-gateway-prompt-pattern
943This is a regular expression that matches the shell prompt.
944@end defopt
945
946@defopt socks-server
947This specifies the default server, it takes the form
948@w{@code{("Default server" @var{server} @var{port} @var{version})}}
949where @var{version} can be either 4 or 5.
950@end defopt
951@defvar socks-password
df2f79ee 952If this is @code{nil} then you will be asked for the password,
948a35c1
SM
953otherwise it will be used as the password for authenticating you to
954the @sc{socks} server.
955@end defvar
956@defvar socks-username
957This is the username to use when authenticating yourself to the
958@sc{socks} server. By default this is your login name.
959@end defvar
960@defvar socks-timeout
961This controls how long, in seconds, to wait for responses from the
962@sc{socks} server; it is 5 by default.
963@end defvar
964@c fixme: these have been effectively commented-out in the code
965@c @defopt socks-server-aliases
966@c This a list of server aliases. It is a list of aliases of the form
967@c @var{(alias hostname port version)}.
968@c @end defopt
969@c @defopt socks-network-aliases
970@c This a list of network aliases. Each entry in the list takes the form
971@c @var{(alias (network))} where @var{alias} is a string that names the
972@c @var{network}. The networks can contain a pair (not a dotted pair) of
973@c @sc{ip} addresses which specify a range of @sc{ip} addresses, an @sc{ip}
974@c address and a netmask, a domain name or a unique hostname or @sc{ip}
975@c address.
976@c @end defopt
977@c @defopt socks-redirection-rules
978@c This a list of redirection rules. Each rule take the form
979@c @var{(Destination network Connection type)} where @var{Destination
980@c network} is a network alias from @code{socks-network-aliases} and
981@c @var{Connection type} can be @code{nil} in which case a direct
982@c connection is used, or it can be an alias from
983@c @code{socks-server-aliases} in which case that server is used as a
984@c proxy.
985@c @end defopt
986@defopt socks-nslookup-program
987@cindex @command{nslookup}
988This the @samp{nslookup} program. It is @code{"nslookup"} by default.
989@end defopt
990
991@menu
f0cdbdfa 992* Suppressing network connections::
948a35c1 993@end menu
a17e377e 994@c * Broken hostname resolution::
948a35c1 995
f0cdbdfa
JB
996@node Suppressing network connections
997@subsection Suppressing Network Connections
948a35c1 998
f0cdbdfa
JB
999@cindex network connections, suppressing
1000@cindex suppressing network connections
948a35c1
SM
1001@cindex bugs, HTML
1002@cindex HTML `bugs'
1003In some circumstances it is desirable to suppress making network
f0cdbdfa 1004connections. A typical case is when rendering HTML in a mail user
948a35c1
SM
1005agent, when external URLs should not be activated, particularly to
1006avoid `bugs' which `call home' by fetch single-pixel images and the
1007like. To arrange this, bind the following variable for the duration
1008of such processing.
1009
1010@defvar url-gateway-unplugged
f0cdbdfa 1011If this variable is non-@code{nil} new network connections are never
948a35c1
SM
1012opened by the URL library.
1013@end defvar
1014
1015@c @node Broken hostname resolution
1016@c @subsection Broken Hostname Resolution
1017
1018@c @cindex hostname resolver
1019@c @cindex resolver, hostname
1020@c Some C libraries do not include the hostname resolver routines in
1021@c their static libraries. If Emacs was linked statically, and was not
df2f79ee 1022@c linked with the resolver libraries, it will not be able to get to any
948a35c1
SM
1023@c machines off the local network. This is characterized by being able
1024@c to reach someplace with a raw ip number, but not its hostname
1025@c (@url{http://129.79.254.191/} works, but
1026@c @url{http://www.cs.indiana.edu/} doesn't). This used to happen on
1027@c SunOS4 and Ultrix, but is now probably now rare. If Emacs can't be
1028@c rebuilt linked against the resolver library, it can use the external
1029@c @command{nslookup} program instead.
1030
1031@c @defopt url-gateway-broken-resolution
1032@c @cindex @code{nslookup} program
1033@c @cindex program, @code{nslookup}
1034@c If non-@code{nil}, this variable says to use the program specified by
1035@c @code{url-gateway-nslookup-program} program to do hostname resolution.
1036@c @end defopt
1037
1038@c @defopt url-gateway-nslookup-program
1039@c The name of the program to do hostname lookup if Emacs can't do it
1040@c directly. This program should expect a single argument on the command
1041@c line---the hostname to resolve---and should produce output similar to
1042@c the standard Unix @command{nslookup} program:
1043@c @example
1044@c Name: www.cs.indiana.edu
1045@c Address: 129.79.254.191
1046@c @end example
1047@c @end defopt
1048
1049@node History
1050@section History
1051
1052The library can maintain a global history list tracking URLs accessed.
1053URL completion can be done from it. The history mechanism is set up
1054@findex url-do-setup
1055automatically via @code{url-do-setup} when it is configured to be on.
1056Note that the size of the history list is currently not limited.
1057
1058@vindex url-history-hash-table
1059The history `list' is actually a hash table,
1060@code{url-history-hash-table}. It contains access times keyed by URL
1061strings. The times are in the format returned by @code{current-time}.
1062
1063@defun url-history-update-url url time
df2f79ee
LT
1064This function updates the history table with an entry for @var{url}
1065accessed at the given @var{time}.
948a35c1
SM
1066@end defun
1067
1068@defopt url-history-track
1069If non-@code{nil}, the library will keep track of all the URLs
ff495696 1070accessed. If it is @code{t}, the list is saved to disk at the end of
948a35c1
SM
1071each Emacs session. The default is @code{nil}.
1072@end defopt
1073
1074@defopt url-history-file
1075The file storing the history list between sessions. It defaults to
1076@file{history} in @code{url-configuration-directory}.
1077@end defopt
1078
1079@defopt url-history-save-interval
1080@findex url-history-setup-save-timer
1081The number of seconds between automatic saves of the history list.
1082Default is one hour. Note that if you change this variable directly,
1083rather than using Custom, after @code{url-do-setup} has been run, you
1084need to run the function @code{url-history-setup-save-timer}.
1085@end defopt
1086
1087@defun url-history-parse-history &optional fname
1088Parses the history file @var{fname} (default @code{url-history-file})
1089and sets up the history list.
1090@end defun
1091
1092@defun url-history-save-history &optional fname
1093Saves the current history to file @var{fname} (default
1094@code{url-history-file}).
1095@end defun
1096
1097@defun url-completion-function string predicate function
1098You can use this function to do completion of URLs from the history.
1099@end defun
1100
1101@node Customization
1102@chapter Customization
1103
1104@section Environment Variables
1105
1106@cindex environment variables
1107The following environment variables affect the library's operation at
1108startup.
1109
1110@table @code
1111@item TMPDIR
1112@vindex TMPDIR
1113@vindex url-temporary-directory
1114If this is defined, @var{url-temporary-directory} is initialized from
1115it.
1116@end table
1117
1118@section General User Options
1119
1120The following user options, settable with Customize, affect the
1121general operation of the package.
1122
1123@defopt url-debug
1124@cindex debugging
1125Specifies the types of debug messages the library which are logged to
1126the @code{*URL-DEBUG*} buffer.
1127@code{t} means log all messages.
1128A number means log all messages and show them with @code{message}.
1129If may also be a list of the types of messages to be logged.
1130@end defopt
1131@defopt url-personal-mail-address
1132@end defopt
1133@defopt url-privacy-level
1134@end defopt
1135@defopt url-uncompressor-alist
1136@end defopt
1137@defopt url-passwd-entry-func
1138@end defopt
1139@defopt url-standalone-mode
1140@end defopt
1141@defopt url-bad-port-list
1142@end defopt
1143@defopt url-max-password-attempts
1144@end defopt
1145@defopt url-temporary-directory
1146@end defopt
1147@defopt url-show-status
1148@end defopt
1149@defopt url-confirmation-func
1150The function to use for asking yes or no functions. This is normally
1151either @code{y-or-n-p} or @code{yes-or-no-p}, but could be another
1152function taking a single argument (the prompt) and returning @code{t}
1153only if an affirmative answer is given.
1154@end defopt
1155@defopt url-gateway-method
a17e377e 1156@c fixme: describe gatewaying
f0cdbdfa 1157A symbol specifying the type of gateway support to use for connections
948a35c1
SM
1158from the local machine. The supported methods are:
1159
1160@table @code
1161@item telnet
1162Run telnet in a subprocess to connect;
1163@item rlogin
1164Rlogin to another machine to connect;
1165@item socks
1166Connect through a socks server;
1167@item ssl
1168Connect with SSL;
1169@item native
1170Connect directly.
1171@end table
1172@end defopt
1173
1174@node Function Index
1175@unnumbered Command and Function Index
1176@printindex fn
1177
1178@node Variable Index
1179@unnumbered Variable Index
1180@printindex vr
1181
1182@node Concept Index
1183@unnumbered Concept Index
1184@printindex cp
1185
1186@setchapternewpage odd
1187@contents
1188@bye
7f72fcc3
MB
1189
1190@ignore
1191 arch-tag: c96be356-7e2d-4196-bcda-b13246c5c3f0
1192@end ignore