Merge from origin/emacs-26
[emacs.git] / doc / misc / url.texi
bloba8ac1179751594723450e0a18eb823db10bec5de
1 \input texinfo
2 @setfilename ../../info/url.info
3 @settitle URL Programmer's Manual
4 @include docstyle.texi
6 @iftex
7 @c @finalout
8 @end iftex
9 @c @setchapternewpage odd
10 @c @smallbook
12 @tex
13 \overfullrule=0pt
14 %\global\baselineskip 30pt      % for printing in double space
15 @end tex
16 @dircategory Emacs lisp libraries
17 @direntry
18 * URL: (url).                   URL loading package.
19 @end direntry
21 @copying
22 This is the manual for the @code{url} Emacs Lisp library.
24 Copyright @copyright{} 1993--1999, 2002, 2004--2018 Free Software
25 Foundation, Inc.
27 @quotation
28 Permission is granted to copy, distribute and/or modify this document
29 under the terms of the GNU Free Documentation License, Version 1.3 or
30 any later version published by the Free Software Foundation; with no
31 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
32 and with the Back-Cover Texts as in (a) below.  A copy of the license
33 is included in the section entitled ``GNU Free Documentation License''.
35 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
36 modify this GNU manual.''
37 @end quotation
38 @end copying
41 @titlepage
42 @title URL Programmer's Manual
43 @subtitle First Edition, URL Version 2.0
44 @author William M. Perry @email{wmperry@@gnu.org}
45 @author David Love @email{fx@@gnu.org}
46 @page
47 @vskip 0pt plus 1filll
48 @insertcopying
49 @end titlepage
51 @contents
53 @node Top
54 @top URL
56 @ifnottex
57 @insertcopying
58 @end ifnottex
60 @menu
61 * Introduction::                About the @code{url} library.
62 * URI Parsing::                 Parsing (and unparsing) URIs.
63 * Retrieving URLs::             How to use this package to retrieve a URL.
64 * Supported URL Types::         Descriptions of URL types currently supported.
65 * General Facilities::          URLs can be cached, accessed via a gateway
66                                 and tracked in a history list.
67 * Customization::               Variables you can alter.
68 * GNU Free Documentation License:: The license for this documentation.
69 * Function Index::
70 * Variable Index::
71 * Concept Index::
72 @end menu
74 @node Introduction
75 @chapter Introduction
76 @cindex URL
77 @cindex URI
78 @cindex uniform resource identifier
79 @cindex uniform resource locator
81 A @dfn{Uniform Resource Identifier} (URI) is a specially-formatted
82 name, such as an Internet address, that identifies some name or
83 resource.  The format of URIs is described in RFC 3986, which updates
84 and replaces the earlier RFCs 2732, 2396, 1808, and 1738.  A
85 @dfn{Uniform Resource Locator} (URL) is an older but still-common
86 term, which basically refers to a URI corresponding to a resource that
87 can be accessed (usually over a network) in a specific way.
89   Here are some examples of URIs (taken from RFC 3986):
91 @example
92 ftp://ftp.is.co.za/rfc/rfc1808.txt
93 http://www.ietf.org/rfc/rfc2396.txt
94 ldap://[2001:db8::7]/c=GB?objectClass?one
95 mailto:John.Doe@@example.com
96 news:comp.infosystems.www.servers.unix
97 tel:+1-816-555-1212
98 telnet://192.0.2.16:80/
99 urn:oasis:names:specification:docbook:dtd:xml:4.1.2
100 @end example
102   This manual describes the @code{url} library, an Emacs Lisp library
103 for parsing URIs and retrieving the resources to which they refer.
104 (The library is so-named for historical reasons; nowadays, the ``URI''
105 terminology is regarded as the more general one, and ``URL'' is
106 technically obsolete despite its widespread vernacular usage.)
108 @node URI Parsing
109 @chapter URI Parsing
111   A URI consists of several @dfn{components}, each having a different
112 meaning.  For example, the URI
114 @example
115 https://www.gnu.org/software/emacs/
116 @end example
118 @noindent
119 specifies the scheme component @samp{https}, the hostname component
120 @samp{www.gnu.org}, and the path component @samp{/software/emacs/}.
122 @cindex parsed URIs
123   The format of URIs is specified by RFC 3986.  The @code{url} library
124 provides the Lisp function @code{url-generic-parse-url}, a (mostly)
125 standard-compliant URI parser, as well as function
126 @code{url-recreate-url}, which converts a parsed URI back into a URI
127 string.
129 @defun url-generic-parse-url uri-string
130 This function returns a parsed version of the string @var{uri-string}.
131 @end defun
133 @defun url-recreate-url uri-obj
134 @cindex unparsing URLs
135 Given a parsed URI, this function returns the corresponding URI string.
136 @end defun
138 @cindex parsed URI
139   The return value of @code{url-generic-parse-url}, and the argument
140 expected by @code{url-recreate-url}, is a @dfn{parsed URI}: a CL
141 structure whose slots hold the various components of the URI@.
142 @xref{Top,the CL Manual,,cl,GNU Emacs Common Lisp Emulation}, for
143 details about CL structures.  Most of the other functions in the
144 @code{url} library act on parsed URIs.
146 @menu
147 * Parsed URIs::           Format of parsed URI structures.
148 * URI Encoding::          Non-@acronym{ASCII} characters in URIs.
149 @end menu
151 @node Parsed URIs
152 @section Parsed URI structures
154   Each parsed URI structure contains the following slots:
156 @table @code
157 @item type
158 The URI scheme (a string, e.g., @code{http}).  @xref{Supported URL
159 Types}, for a list of schemes that the @code{url} library knows how to
160 process.  This slot can also be @code{nil}, if the URI is not fully
161 specified.
163 @item user
164 The user name (a string), or @code{nil}.
166 @item password
167 The user password (a string), or @code{nil}.  The use of this URI
168 component is strongly discouraged; nowadays, passwords are transmitted
169 by other means, not as part of a URI.
171 @item host
172 The host name (a string), or @code{nil}.  If present, this is
173 typically a domain name or IP address.
175 @item port
176 The port number (an integer), or @code{nil}.  Omitting this component
177 usually means to use the ``standard'' port associated with the URI
178 scheme.
180 @item filename
181 The combination of the ``path'' and ``query'' components of the URI (a
182 string), or @code{nil}.  If the query component is present, it is the
183 substring following the first @samp{?} character, and the path
184 component is the substring before the @samp{?}.  The meaning of these
185 components is scheme-dependent; they do not necessarily refer to a
186 file on a disk.
188 @item target
189 The fragment component (a string), or @code{nil}.  The fragment
190 component specifies a ``secondary resource'', such as a section of a
191 webpage.
193 @item fullness
194 This is @code{t} if the URI is fully specified, i.e., the
195 hierarchical components of the URI (the hostname and/or username
196 and/or password) are preceded by @samp{//}.
197 @end table
199 @findex url-type
200 @findex url-user
201 @findex url-password
202 @findex url-host
203 @findex url-port
204 @findex url-filename
205 @findex url-target
206 @findex url-attributes
207 @findex url-fullness
208 These slots have accessors named @code{url-@var{part}}, where
209 @var{part} is the slot name.  For example, the accessor for the
210 @code{host} slot is the function @code{url-host}.  The @code{url-port}
211 accessor returns the default port for the URI scheme if the parsed
212 URI's @var{port} slot is @code{nil}.
214   The slots can be set using @code{setf}.  For example:
216 @example
217 (setf (url-port url) 80)
218 @end example
220 @node URI Encoding
221 @section URI Encoding
223 @cindex percent encoding
224   The @code{url-generic-parse-url} parser does not obey RFC 3986 in
225 one respect: it allows non-@acronym{ASCII} characters in URI strings.
227   Strictly speaking, RFC 3986 compatible URIs may only consist of
228 @acronym{ASCII} characters; non-@acronym{ASCII} characters are
229 represented by converting them to UTF-8 byte sequences, and performing
230 @dfn{percent encoding} on the bytes.  For example, the o-umlaut
231 character is converted to the UTF-8 byte sequence @samp{\xD3\xA7},
232 then percent encoded to @samp{%D3%A7}.  (Certain ``reserved''
233 @acronym{ASCII} characters must also be percent encoded when they
234 appear in URI components.)
236   The function @code{url-encode-url} can be used to convert a URI
237 string containing arbitrary characters to one that is properly
238 percent-encoded in accordance with RFC 3986.
240 @defun url-encode-url url-string
241 This function return a properly URI-encoded version of
242 @var{url-string}.  It also performs @dfn{URI normalization},
243 e.g., converting the scheme component to lowercase if it was
244 previously uppercase.
245 @end defun
247   To convert between a string containing arbitrary characters and a
248 percent-encoded all-@acronym{ASCII} string, use the functions
249 @code{url-hexify-string} and @code{url-unhex-string}:
251 @defun url-hexify-string string &optional allowed-chars
252 This function performs percent-encoding on @var{string}, and returns
253 the result.
255 If @var{string} is multibyte, it is first converted to a UTF-8 byte
256 string.  Each byte corresponding to an allowed character is left
257 as-is, while all other bytes are converted to a three-character
258 sequence: @samp{%} followed by two upper-case hex digits.
260 @vindex url-unreserved-chars
261 @cindex unreserved characters
262 The allowed characters are specified by @var{allowed-chars}.  If this
263 argument is @code{nil}, the allowed characters are those specified as
264 @dfn{unreserved characters} by RFC 3986 (see the variable
265 @code{url-unreserved-chars}).  Otherwise, @var{allowed-chars} should
266 be a vector whose @var{n}-th element is non-@code{nil} if character
267 @var{n} is allowed.
268 @end defun
270 @defun url-unhex-string string &optional allow-newlines
271 This function replaces percent-encoding sequences in @var{string} with
272 their character equivalents, and returns the resulting string.
274 If @var{allow-newlines} is non-@code{nil}, it allows the decoding of
275 carriage returns and line feeds, which are normally forbidden in URIs.
276 @end defun
278 @node Retrieving URLs
279 @chapter Retrieving URLs
281   The @code{url} library defines the following three functions for
282 retrieving the data specified by a URL@.  The actual retrieval protocol
283 depends on the URL's URI scheme, and is performed by lower-level
284 scheme-specific functions.  (Those lower-level functions are not
285 documented here, and generally should not be called directly.)
287   In each of these functions, the @var{url} argument can be either a
288 string or a parsed URL structure.  If it is a string, that string is
289 passed through @code{url-encode-url} before using it, to ensure that
290 it is properly URI-encoded (@pxref{URI Encoding}).
292 @defun url-retrieve-synchronously url &optional silent no-cookies timeout
293 This function synchronously retrieves the data specified by @var{url},
294 and returns a buffer containing the data.  The return value is
295 @code{nil} if there is no data associated with the URL (as is the case
296 for @code{dired}, @code{info}, and @code{mailto} URLs).
298 If the optional argument @var{silent} is non-@code{nil}, progress
299 messages are suppressed.  If the optional argument @var{no-cookies} is
300 non-@code{nil}, cookies are not stored or sent.  If the optional
301 argument @var{timeout} is non-@code{nil}, it should be a number that
302 says (in seconds) how long to wait for a response before giving up.
303 @end defun
305 @defun url-retrieve url callback &optional cbargs silent no-cookies
306 This function retrieves @var{url} asynchronously, calling the function
307 @var{callback} when the object has been completely retrieved.  The
308 return value is the buffer into which the data will be inserted, or
309 @code{nil} if the process has already completed.
311 The callback function is called this way:
313 @example
314 (apply @var{callback} @var{status} @var{cbargs})
315 @end example
317 @noindent
318 where @var{status} is a plist representing what happened during the
319 retrieval, with most recent events first, or an empty list if no
320 events have occurred.  Each pair in the plist is one of:
322 @table @code
323 @item (:redirect @var{redirected-to})
324 This means that the request was redirected to the URL
325 @var{redirected-to}.
327 @item (:error (@var{error-symbol} . @var{data}))
328 This means that an error occurred.  If so desired, the error can be
329 signaled with @code{(signal @var{error-symbol} @var{data})}.
330 @end table
332 When the callback function is called, the current buffer is the one
333 containing the retrieved data (if any).  The buffer also contains any
334 MIME headers associated with the data retrieval.
336 If the optional argument @var{silent} is non-@code{nil}, progress
337 messages are suppressed.  If the optional argument @var{no-cookies} is
338 non-@code{nil}, cookies are not stored or sent.
339 @end defun
341 @defun url-queue-retrieve url callback &optional cbargs silent no-cookies
342 This function acts like @code{url-retrieve}, but with limits on the
343 number of concurrently-running network processes.  The option
344 @code{url-queue-parallel-processes} controls the number of concurrent
345 processes, and the option @code{url-queue-timeout} sets a timeout in
346 seconds.
348 To use this function, you must @code{(require 'url-queue)}.
349 @end defun
351 @vindex url-queue-parallel-processes
352 @defopt url-queue-parallel-processes
353 The value of this option is an integer specifying the maximum number
354 of concurrent @code{url-queue-retrieve} network processes.  If the
355 number of @code{url-queue-retrieve} calls is larger than this number,
356 later ones are queued until earlier ones are finished.
357 @end defopt
359 @vindex url-queue-timeout
360 @defopt url-queue-timeout
361 The value of this option is a number specifying the maximum lifetime
362 of a @code{url-queue-retrieve} network process, once it is started.
363 If a process is not finished by then, it is killed and removed from
364 the queue.
365 @end defopt
367 @node Supported URL Types
368 @chapter Supported URL Types
370 This chapter describes functions and variables affecting URL retrieval
371 for specific schemes.
373 @menu
374 * http/https::                  Hypertext Transfer Protocol.
375 * file/ftp::                    Local files and FTP archives.
376 * info::                        Emacs "Info" pages.
377 * mailto::                      Sending email.
378 * news/nntp/snews::             Usenet news.
379 * rlogin/telnet/tn3270::        Remote host connectivity.
380 * irc::                         Internet Relay Chat.
381 * data::                        Embedded data URLs.
382 * nfs::                         Networked File System.
383 * ldap::                        Lightweight Directory Access Protocol.
384 * man::                         Unix man pages.
385 * Tramp::                       Schemes supported via Tramp.
386 @end menu
388 @node http/https
389 @section @code{http} and @code{https}
391 The @code{http} scheme refers to the Hypertext Transfer Protocol.  The
392 @code{url} library supports HTTP version 1.1, specified in RFC 2616.
393 Its default port is 80.
395   The @code{https} scheme is a secure version of @code{http}, with
396 transmission via SSL@.  It is defined in RFC 2069, and its default port
397 is 443.  When using @code{https}, the @code{url} library performs SSL
398 encryption via the @code{ssl} library, by forcing the @code{ssl}
399 gateway method to be used.  @xref{Gateways in general}.
401 @defopt url-honor-refresh-requests
402 If this option is non-@code{nil} (the default), the @code{url} library
403 honors the HTTP @samp{Refresh} header, which is used by servers to
404 direct clients to reload documents from the same URL or a different
405 one.  If the value is @code{nil}, the @samp{Refresh} header is
406 ignored; any other value means to ask the user on each request.
407 @end defopt
409 @menu
410 * Cookies::
411 * HTTP language/coding::
412 * HTTP URL Options::
413 * Dealing with HTTP documents::
414 @end menu
416 @node Cookies
417 @subsection Cookies
419 @findex url-cookie-delete
420 @defun url-cookie-list
421 This command creates a @file{*url cookies*} buffer listing the current
422 cookies, if there are any.  You can remove a cookie using the
423 @kbd{C-k} (@code{url-cookie-delete}) command.
424 @end defun
426 @defun url-cookie-delete-cookies &optional regexp
427 This function takes a regular expression as its parameters and deletes
428 all cookies from that domain.  If @var{regexp} is @code{nil}, delete
429 all cookies.
430 @end defun
432 @defopt url-cookie-file
433 The file in which cookies are stored, defaulting to @file{cookies} in
434 the directory specified by @code{url-configuration-directory}.
435 @end defopt
437 @defopt url-cookie-confirmation
438 Specifies whether confirmation is required to accept cookies.
439 @end defopt
441 @defopt url-cookie-multiple-line
442 Specifies whether to put all cookies for the server on one line in the
443 HTTP request to satisfy broken servers like
444 @url{http://www.hotmail.com}.
445 @end defopt
447 @defopt url-cookie-trusted-urls
448 A list of regular expressions matching URLs from which to accept
449 cookies always.
450 @end defopt
452 @defopt url-cookie-untrusted-urls
453 A list of regular expressions matching URLs from which to reject
454 cookies always.
455 @end defopt
457 @defopt url-cookie-save-interval
458 The number of seconds between automatic saves of cookies to disk.
459 Default is one hour.
460 @end defopt
463 @node HTTP language/coding
464 @subsection Language and Encoding Preferences
466 HTTP allows clients to express preferences for the language and
467 encoding of documents which servers may honor.  For each of these
468 variables, the value is a string; it can specify a single choice, or
469 it can be a comma-separated list.
471 Normally, this list is ordered by descending preference.  However, each
472 element can be followed by @samp{;q=@var{priority}} to specify its
473 preference level, a decimal number from 0 to 1; e.g., for
474 @code{url-mime-language-string}, @w{@code{"de, en-gb;q=0.8,
475 en;q=0.7"}}.  An element that has no @samp{;q} specification has
476 preference level 1.
478 @defopt url-mime-charset-string
479 @cindex character sets
480 @cindex coding systems
481 This variable specifies a preference for character sets when documents
482 can be served in more than one encoding.
484 HTTP allows specifying a series of MIME charsets which indicate your
485 preferred character set encodings, e.g., Latin-9 or Big5, and these
486 can be weighted.  The default series is generated automatically from
487 the associated MIME types of all defined coding systems, sorted by the
488 coding system priority specified in Emacs.  @xref{Recognize Coding, ,
489 Recognizing Coding Systems, emacs, The GNU Emacs Manual}.
490 @end defopt
492 @defopt url-mime-language-string
493 @cindex language preferences
494 A string specifying the preferred language when servers can serve
495 files in several languages.  Use RFC 1766 abbreviations, e.g.,
496 @samp{en} for English, @samp{de} for German.
498 The string can be @code{"*"} to get the first available language (as
499 opposed to the default).
500 @end defopt
502 @node HTTP URL Options
503 @subsection HTTP URL Options
505 HTTP supports an @samp{OPTIONS} method describing things supported by
506 the URL@.
508 @defun url-http-options url
509 Returns a property list describing options available for URL@.  The
510 property list members are:
512 @table @code
513 @item methods
514 A list of symbols specifying what HTTP methods the resource
515 supports.
517 @item dav
518 @cindex DAV
519 A list of numbers specifying what DAV protocol/schema versions are
520 supported.
522 @item dasl
523 @cindex DASL
524 A list of supported DASL search types supported (string form).
526 @item ranges
527 A list of the units available for use in partial document fetches.
529 @item p3p
530 @cindex P3P
531 The @dfn{Platform For Privacy Protection} description for the resource.
532 Currently this is just the raw header contents.
533 @end table
535 @end defun
537 @node Dealing with HTTP documents
538 @subsection Dealing with HTTP documents
540 HTTP URLs are retrieved into a buffer containing the HTTP headers
541 followed by the body.  Since the headers are quasi-MIME, they may be
542 processed using the MIME library.  @xref{Top,, Emacs MIME,
543 emacs-mime, The Emacs MIME Manual}.
545 @node file/ftp
546 @section file and ftp
547 @cindex files
548 @cindex FTP
549 @cindex File Transfer Protocol
550 @cindex compressed files
551 @cindex dired
553 The @code{ftp} and @code{file} schemes are defined in RFC 1808.  The
554 @code{url} library treats @samp{ftp:} and @samp{file:} as synonymous.
555 Such URLs have the form
557 @example
558 ftp://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
559 file://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
560 @end example
562 @noindent
563 If the URL specifies a local file, it is retrieved by reading the file
564 contents in the usual way.  If it specifies a remote file, it is
565 retrieved using either the Tramp or the Ange-FTP package.
566 @xref{Remote Files,,, emacs, The GNU Emacs Manual}.
568   When retrieving a compressed file, it is automatically uncompressed
569 if it has the file suffix @file{.z}, @file{.gz}, @file{.Z},
570 @file{.bz2}, or @file{.xz}.  (The list of supported suffixes is
571 hard-coded, and cannot be altered by customizing
572 @code{jka-compr-compression-info-list}.)
574 @node info
575 @section info
576 @cindex Info
577 @cindex Texinfo
578 @findex Info-goto-node
580 The @code{info} scheme is non-standard.  Such URLs have the form
582 @example
583 info:@var{file}#@var{node}
584 @end example
586 @noindent
587 and are retrieved by invoking @code{Info-goto-node} with argument
588 @samp{(@var{file})@var{node}}.  If @samp{#@var{node}} is omitted, the
589 @samp{Top} node is opened.
591 @node mailto
592 @section mailto
594 @cindex mailto
595 @cindex email
596 A @code{mailto} URL specifies an email message to be sent to a given
597 email address.  For example, @samp{mailto:foo@@bar.com} specifies
598 sending a message to @samp{foo@@bar.com}.  The ``retrieval method''
599 for such URLs is to open a mail composition buffer in which the
600 appropriate content (e.g., the recipient address) has been filled in.
602   As defined in RFC 6068, a @code{mailto} URL can have the form
604 @example
605 @samp{mailto:@var{mailbox}[?@var{header}=@var{contents}[&@var{header}=@var{contents}]]}
606 @end example
608 @noindent
609 where an arbitrary number of @var{header}s can be added.  If the
610 @var{header} is @samp{body}, then @var{contents} is put in the message
611 body; otherwise, a @var{header} header field is created with
612 @var{contents} as its contents.  Note that the @code{url} library does
613 not perform any checking of @var{header} or @var{contents}, so you
614 should check them before sending the message.
616 @defopt url-mail-command
617 @vindex mail-user-agent
618 The value of this variable is the function called whenever url needs
619 to send mail.  This should normally be left its default, which is the
620 standard mail-composition command @code{compose-mail}.  @xref{Sending
621 Mail,,, emacs, The GNU Emacs Manual}.
622 @end defopt
624   If the document containing the @code{mailto} URL itself possessed a
625 known URL, Emacs automatically inserts an @samp{X-Url-From} header
626 field into the mail buffer, specifying that URL.
628 @node news/nntp/snews
629 @section @code{news}, @code{nntp} and @code{snews}
630 @cindex news
631 @cindex network news
632 @cindex usenet
633 @cindex NNTP
634 @cindex snews
636 The @code{news}, @code{nntp}, and @code{snews} schemes, defined in RFC
637 1738, are used for reading Usenet newsgroups.  For compatibility with
638 non-standard-compliant news clients, the @code{url} library allows
639 host and port fields to be included in @code{news} URLs, even though
640 they are properly only allowed for @code{nntp} and @code{snews}.
642   @code{news} and @code{nntp} URLs have the following form:
644 @table @samp
645 @item news:@var{newsgroup}
646 Retrieves a list of messages in @var{newsgroup};
647 @item news:@var{message-id}
648 Retrieves the message with the given @var{message-id};
649 @item news:*
650 Retrieves a list of all available newsgroups;
651 @item nntp://@var{host}:@var{port}/@var{newsgroup}
652 @itemx nntp://@var{host}:@var{port}/@var{message-id}
653 @itemx nntp://@var{host}:@var{port}/*
654 Similar to the @samp{news} versions.
655 @end table
657   The default port for @code{nntp} (and @code{news}) is 119.  The
658 difference between an @code{nntp} URL and a @code{news} URL is that an
659 @code{nttp} URL may specify an article by its number.  The
660 @samp{snews} scheme is the same as @samp{nntp}, except that it is
661 tunneled through SSL and has default port 563.
663   These URLs are retrieved via the Gnus package.
665 @cindex environment variable
666 @vindex NNTPSERVER
667 @defopt url-news-server
668 This variable specifies the default news server from which to fetch
669 news, if no server was specified in the URL@.  The default value,
670 @code{nil}, means to use the server specified by the standard
671 environment variable @samp{NNTPSERVER}, or @samp{news} if that
672 environment variable is unset.
673 @end defopt
675 @node rlogin/telnet/tn3270
676 @section rlogin, telnet and tn3270
677 @cindex rlogin
678 @cindex telnet
679 @cindex tn3270
680 @cindex terminal emulation
681 @findex terminal-emulator
683 These URL schemes are defined in RFC 1738, and are used for logging in
684 via a terminal emulator.  They have the form
686 @example
687 telnet://@var{user}:@var{password}@@@var{host}:@var{port}
688 @end example
690 @noindent
691 but the @var{password} component is ignored.  By default, the
692 @code{telnet} scheme is handled via Tramp (@pxref{Tramp}).
694 To handle rlogin, telnet and tn3270 URLs, a @code{rlogin},
695 @code{telnet} or @code{tn3270} (the program names and arguments are
696 hardcoded) session is run in a @code{terminal-emulator} buffer.
697 Well-known ports are used if the URL does not specify a port.
699 @node irc
700 @section irc
701 @cindex IRC
702 @cindex Internet Relay Chat
703 @cindex ZEN IRC
704 @cindex ERC
705 @cindex rcirc
707   The @code{irc} scheme is defined in the Internet Draft at
708 @url{http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt} (which
709 was never approved as an RFC).  Such URLs have the form
711 @example
712 irc://@var{host}:@var{port}/@var{target},@var{needpass}
713 @end example
715 @noindent
716 and are retrieved by opening an @acronym{IRC} session using the
717 function specified by @code{url-irc-function}.
719 @defopt url-irc-function
720 The value of this option is a function, which is called to open an IRC
721 connection for @code{irc} URLs.  This function must take five
722 arguments, @var{host}, @var{port}, @var{channel}, @var{user} and
723 @var{password}.  The @var{channel} argument specifies the channel to
724 join immediately, and may be @code{nil}.
726 The default is @code{url-irc-rcirc}, which uses the Rcirc package.
727 Other options are @code{url-irc-erc} (which uses ERC) and
728 @code{url-irc-zenirc} (which uses ZenIRC).
729 @end defopt
731 @node data
732 @section data
733 @cindex data URLs
735   The @code{data} scheme, defined in RFC 2397, contains MIME data in
736 the URL itself.  Such URLs have the form
738 @example
739 data:@r{[}@var{media-type}@r{]}@r{[};@var{base64}@r{]},@var{data}
740 @end example
742 @noindent
743 @var{media-type} is a MIME @samp{Content-Type} string, possibly
744 including parameters.  It defaults to
745 @samp{text/plain;charset=US-ASCII}.  The @samp{text/plain} can be
746 omitted but the charset parameter supplied.  If @samp{;base64} is
747 present, the @var{data} are base64-encoded.
749 @node nfs
750 @section nfs
751 @cindex NFS
752 @cindex Network File System
753 @cindex automounter
755 The @code{nfs} scheme, defined in RFC 2224, is similar to @code{ftp}
756 except that it points to a file on a remote host that is handled by an
757 NFS automounter on the local host.  Such URLs have the form
759 @example
760 nfs://@var{user}:@var{password}@@@var{host}:@var{port}/@var{file}
761 @end example
763 @defvar url-nfs-automounter-directory-spec
764 @end defvar
765 A string saying how to invoke the NFS automounter.  Certain @samp{%}
766 sequences are recognized:
768 @table @samp
769 @item %h
770 The hostname of the NFS server;
771 @item %n
772 The port number of the NFS server;
773 @item %u
774 The username to use to authenticate;
775 @item %p
776 The password to use to authenticate;
777 @item %f
778 The filename on the remote server;
779 @item %%
780 A literal @samp{%}.
781 @end table
783 Each can be used any number of times.
785 @node ldap
786 @section ldap
787 @cindex LDAP
788 @cindex Lightweight Directory Access Protocol
790 The LDAP scheme is defined in RFC 2255.
792 @node man
793 @section man
794 @cindex @command{man}
795 @cindex Unix man pages
796 @findex man
798 The @code{man} scheme is a non-standard one.  Such URLs have the form
800 @example
801 @samp{man:@var{page-spec}}
802 @end example
804 @noindent
805 and are retrieved by passing @var{page-spec} to the Lisp function
806 @code{man}.
808 @node Tramp
809 @section URL Types Supported via Tramp
811 @vindex url-tramp-protocols
812 Some additional URL types are supported by passing them to Tramp
813 (@pxref{Top, The Tramp Manual,, tramp, The Tramp Manual}).  These
814 protocols are listed in the @code{url-tramp-protocols} variable, which
815 you can customize.  The default value includes the following
816 protocols:
818 @table @code
819 @item ftp
820 The file transfer protocol.  @xref{file/ftp}.
822 @item ssh
823 @cindex ssh
824 The secure shell protocol.  @xref{Inline methods,,, tramp, The Tramp
825 Manual}.
827 @item scp
828 @cindex scp
829 The secure file copy protocol.  @xref{External methods,,, tramp, The
830 Tramp Manual}.
832 @item rsync
833 @cindex rsync
834 The remote sync protocol.
836 @item telnet
837 The telnet protocol.
838 @end table
840 @node General Facilities
841 @chapter General Facilities
843 @menu
844 * Disk Caching::
845 * Proxies::
846 * Gateways in general::
847 * History::
848 @end menu
850 @node Disk Caching
851 @section Disk Caching
852 @cindex Caching
853 @cindex Persistent Cache
854 @cindex Disk Cache
856 The disk cache stores retrieved documents locally, whence they can be
857 retrieved more quickly.  When requesting a URL that is in the cache,
858 the library checks to see if the page has changed since it was last
859 retrieved from the remote machine.  If not, the local copy is used,
860 saving the transmission over the network.
861 @cindex Cleaning the cache
862 @cindex Clearing the cache
863 @cindex Cache cleaning
864 Currently the cache isn't cleared automatically.
865 @c Running the @code{clean-cache} shell script
866 @c fist is recommended, to allow for future cleaning of the cache.  This
867 @c shell script will remove all files that have not been accessed since it
868 @c was last run.  To keep the cache pared down, it is recommended that this
869 @c script be run from @i{at} or @i{cron} (see the manual pages for
870 @c crontab(5) or at(1) for more information)
872 @defopt url-automatic-caching
873 Setting this variable non-@code{nil} causes documents to be cached
874 automatically.
875 @end defopt
877 @defopt url-cache-directory
878 This variable specifies the
879 directory to store the cache files.  It defaults to sub-directory
880 @file{cache} of @code{url-configuration-directory}.
881 @end defopt
883 @defopt url-cache-creation-function
884 The cache relies on a scheme for mapping URLs to files in the cache.
885 This variable names a function which sets the type of cache to use.
886 It takes a URL as argument and returns the absolute file name of the
887 corresponding cache file.  The two supplied possibilities are
888 @code{url-cache-create-filename-using-md5} and
889 @code{url-cache-create-filename-human-readable}.
890 @end defopt
892 @defun url-cache-create-filename-using-md5 url
893 Creates a cache file name from @var{url} using MD5 hashing.
894 This is creates entries with very few cache collisions and is fast.
895 @cindex MD5
896 @smallexample
897 (url-cache-create-filename-using-md5 "http://www.example.com/foo/bar")
898   @result{} "/home/fx/.url/cache/fx/http/com/example/www/b8a35774ad20db71c7c3409a5410e74f"
899 @end smallexample
900 @end defun
902 @defun url-cache-create-filename-human-readable url
903 Creates a cache file name from @var{url} more obviously connected to
904 @var{url} than for @code{url-cache-create-filename-using-md5}, but
905 more likely to conflict with other files.
906 @smallexample
907 (url-cache-create-filename-human-readable "http://www.example.com/foo/bar")
908   @result{} "/home/fx/.url/cache/fx/http/com/example/www/foo/bar"
909 @end smallexample
910 @end defun
912 @defun url-cache-expired
913 This function returns non-@code{nil} if a cache entry has expired (or is absent).
914 The arguments are a URL and optional expiration delay in seconds
915 (default @var{url-cache-expire-time}).
916 @end defun
918 @defopt url-cache-expire-time
919 This variable is the default number of seconds to use for the
920 expire-time argument of the function @code{url-cache-expired}.
921 @end defopt
923 @defun url-fetch-from-cache
924 This function takes a URL as its argument and returns a buffer
925 containing the data cached for that URL.
926 @end defun
928 @c Fixme: never actually used currently?
929 @c @defopt url-standalone-mode
930 @c @cindex Relying on cache
931 @c @cindex Cache only mode
932 @c @cindex Standalone mode
933 @c If this variable is non-@code{nil}, the library relies solely on the
934 @c cache for fetching documents and avoids checking if they have changed
935 @c on remote servers.
936 @c @end defopt
938 @c With a large cache of documents on the local disk, it can be very handy
939 @c when traveling, or any other time the network connection is not active
940 @c (a laptop with a dial-on-demand PPP connection, etc.).  Emacs/W3 can rely
941 @c solely on its cache, and avoid checking to see if the page has changed
942 @c on the remote server.  In the case of a dial-on-demand PPP connection,
943 @c this will keep the phone line free as long as possible, only bringing up
944 @c the PPP connection when asking for a page that is not located in the
945 @c cache.  This is very useful for demonstrations as well.
947 @node Proxies
948 @section Proxies and Gatewaying
950 @c fixme: check/document url-ns stuff
951 @cindex proxy servers
952 @cindex proxies
953 @cindex environment variables
954 @vindex HTTP_PROXY
955 Proxy servers are commonly used to provide gateways through firewalls
956 or as caches serving some more-or-less local network.  Each protocol
957 (HTTP, FTP, etc.)@: can have a different gateway server.  Proxying is
958 conventionally configured commonly amongst different programs through
959 environment variables of the form @code{@var{protocol}_proxy}, where
960 @var{protocol} is one of the supported network protocols (@code{http},
961 @code{ftp} etc.).  The library recognizes such variables in either
962 upper or lower case.  Their values are of one of the forms:
963 @itemize @bullet
964 @item @code{@var{host}:@var{port}}
965 @item A full URL;
966 @item Simply a host name.
967 @end itemize
969 @vindex NO_PROXY
970 The @code{NO_PROXY} environment variable specifies URLs that should be
971 excluded from proxying (on servers that should be contacted directly).
972 This should be a comma-separated list of hostnames, domain names, or a
973 mixture of both.  Asterisks can be used as wildcards, but other
974 clients may not support that.  Domain names may be indicated by a
975 leading dot.  For example:
976 @example
977 NO_PROXY="*.aventail.com,home.com,.seanet.com"
978 @end example
979 @noindent says to contact all machines in the @samp{aventail.com} and
980 @samp{seanet.com} domains directly, as well as the machine named
981 @samp{home.com}.  If @code{NO_PROXY} isn't defined, @code{no_PROXY}
982 and @code{no_proxy} are also tried, in that order.
984 Proxies may also be specified directly in Lisp.
986 @defopt url-proxy-services
987 This variable is an alist of URL schemes and proxy servers that
988 gateway them.  The items are of the form @w{@code{(@var{scheme}
989 . @var{host}:@var{portnumber})}}, says that the URL @var{scheme} is
990 gatewayed through @var{portnumber} on the specified @var{host}.  An
991 exception is the pseudo scheme @code{"no_proxy"}, which is paired with
992 a regexp matching host names not to be proxied.  This variable is
993 initialized from the environment as above.
995 @example
996 (setq url-proxy-services
997       '(("http"     . "proxy.aventail.com:80")
998         ("no_proxy" . "^.*\\(aventail\\|seanet\\)\\.com")))
999 @end example
1000 @end defopt
1002 @node Gateways in general
1003 @section Gateways in General
1004 @cindex gateways
1005 @cindex firewalls
1007 The library provides a general gateway layer through which all
1008 networking passes.  It can both control access to the network and
1009 provide access through gateways in firewalls.  This may make direct
1010 connections in some cases and pass through some sort of gateway in
1011 others.@footnote{Proxies (which only operate over HTTP) are
1012 implemented using this.}  The library's basic function responsible for
1013 making connections is @code{url-open-stream}.
1015 @defun url-open-stream name buffer host service
1016 @cindex opening a stream
1017 @cindex stream, opening
1018 Open a stream to @var{host}, possibly via a gateway.  The other
1019 arguments are as for @code{open-network-stream}.  This will not make a
1020 connection if @code{url-gateway-unplugged} is non-@code{nil}.
1021 @end defun
1023 @defvar url-gateway-local-host-regexp
1024 This is a regular expression that matches local hosts that do not
1025 require the use of a gateway.  If @code{nil}, all connections are made
1026 through the gateway.
1027 @end defvar
1029 @defvar url-gateway-method
1030 This variable controls which gateway method is used.  It may be useful
1031 to bind it temporarily in some applications.  It has values taken from
1032 a list of symbols.  Possible values are:
1034 @table @code
1035 @item telnet
1036 @cindex @command{telnet}
1037 Use this method if you must first telnet and log into a gateway host,
1038 and then run telnet from that host to connect to outside machines.
1040 @item rlogin
1041 @cindex @command{rlogin}
1042 This method is identical to @code{telnet}, but uses @command{rlogin}
1043 to log into the remote machine without having to send the username and
1044 password over the wire every time.
1046 @item socks
1047 @cindex @sc{socks}
1048 Use if the firewall has a @sc{socks} gateway running on it.  The
1049 @sc{socks} v5 protocol is defined in RFC 1928.
1051 @c @item ssl
1052 @c This probably shouldn't be documented
1053 @c Fixme: why not? -- fx
1055 @item native
1056 This method uses Emacs's builtin networking directly.  This is the
1057 default.  It can be used only if there is no firewall blocking access.
1058 @end table
1059 @end defvar
1061 The following variables control the gateway methods.
1063 @defopt url-gateway-telnet-host
1064 The gateway host to telnet to.  Once logged in there, you then telnet
1065 out to the hosts you want to connect to.
1066 @end defopt
1067 @defopt url-gateway-telnet-parameters
1068 This should be a list of parameters to pass to the @command{telnet} program.
1069 @end defopt
1070 @defopt url-gateway-telnet-password-prompt
1071 This is a regular expression that matches the password prompt when
1072 logging in.
1073 @end defopt
1074 @defopt url-gateway-telnet-login-prompt
1075 This is a regular expression that matches the username prompt when
1076 logging in.
1077 @end defopt
1078 @defopt url-gateway-telnet-user-name
1079 The username to log in with.
1080 @end defopt
1081 @defopt url-gateway-telnet-password
1082 The password to send when logging in.
1083 @end defopt
1084 @defopt url-gateway-prompt-pattern
1085 This is a regular expression that matches the shell prompt.
1086 @end defopt
1088 @defopt url-gateway-rlogin-host
1089 Host to @samp{rlogin} to before telnetting out.
1090 @end defopt
1091 @defopt url-gateway-rlogin-parameters
1092 Parameters to pass to @samp{rsh}.
1093 @end defopt
1094 @defopt url-gateway-rlogin-user-name
1095 User name to use when logging in to the gateway.
1096 @end defopt
1097 @defopt url-gateway-prompt-pattern
1098 This is a regular expression that matches the shell prompt.
1099 @end defopt
1101 @defopt socks-server
1102 This specifies the default server, it takes the form
1103 @w{@code{("Default server" @var{server} @var{port} @var{version})}}
1104 where @var{version} can be either 4 or 5.
1105 @end defopt
1106 @defvar socks-password
1107 If this is @code{nil} then you will be asked for the password,
1108 otherwise it will be used as the password for authenticating you to
1109 the @sc{socks} server.
1110 @end defvar
1111 @defvar socks-username
1112 This is the username to use when authenticating yourself to the
1113 @sc{socks} server.  By default this is your login name.
1114 @end defvar
1115 @defvar socks-timeout
1116 This controls how long, in seconds, to wait for responses from the
1117 @sc{socks} server; it is 5 by default.
1118 @end defvar
1119 @c fixme: these have been effectively commented-out in the code
1120 @c @defopt socks-server-aliases
1121 @c This a list of server aliases.  It is a list of aliases of the form
1122 @c @var{(alias hostname port version)}.
1123 @c @end defopt
1124 @c @defopt socks-network-aliases
1125 @c This a list of network aliases.  Each entry in the list takes the form
1126 @c @var{(alias (network))} where @var{alias} is a string that names the
1127 @c @var{network}.  The networks can contain a pair (not a dotted pair) of
1128 @c @sc{ip} addresses which specify a range of @sc{ip} addresses, an @sc{ip}
1129 @c address and a netmask, a domain name or a unique hostname or @sc{ip}
1130 @c address.
1131 @c @end defopt
1132 @c @defopt socks-redirection-rules
1133 @c This a list of redirection rules.  Each rule take the form
1134 @c @var{(Destination network Connection type)} where @var{Destination
1135 @c network} is a network alias from @code{socks-network-aliases} and
1136 @c @var{Connection type} can be @code{nil} in which case a direct
1137 @c connection is used, or it can be an alias from
1138 @c @code{socks-server-aliases} in which case that server is used as a
1139 @c proxy.
1140 @c @end defopt
1141 @defopt socks-nslookup-program
1142 @cindex @command{nslookup}
1143 This the @samp{nslookup} program.  It is @code{"nslookup"} by default.
1144 @end defopt
1146 @menu
1147 * Suppressing network connections::
1148 @end menu
1149 @c * Broken hostname resolution::
1151 @node Suppressing network connections
1152 @subsection Suppressing Network Connections
1154 @cindex network connections, suppressing
1155 @cindex suppressing network connections
1156 @cindex bugs, HTML
1157 @cindex HTML ``bugs''
1158 In some circumstances it is desirable to suppress making network
1159 connections.  A typical case is when rendering HTML in a mail user
1160 agent, when external URLs should not be activated, particularly to
1161 avoid ``bugs'' which ``call home'' by fetch single-pixel images and the
1162 like.  To arrange this, bind the following variable for the duration
1163 of such processing.
1165 @defvar url-gateway-unplugged
1166 If this variable is non-@code{nil} new network connections are never
1167 opened by the URL library.
1168 @end defvar
1170 @c @node Broken hostname resolution
1171 @c @subsection Broken Hostname Resolution
1173 @c @cindex hostname resolver
1174 @c @cindex resolver, hostname
1175 @c Some C libraries do not include the hostname resolver routines in
1176 @c their static libraries.  If Emacs was linked statically, and was not
1177 @c linked with the resolver libraries, it will not be able to get to any
1178 @c machines off the local network.  This is characterized by being able
1179 @c to reach someplace with a raw ip number, but not its hostname
1180 @c (@url{http://129.79.254.191/} works, but
1181 @c @url{http://www.cs.indiana.edu/} doesn't).  This used to happen on
1182 @c SunOS4 and Ultrix, but is now probably now rare.  If Emacs can't be
1183 @c rebuilt linked against the resolver library, it can use the external
1184 @c @command{nslookup} program instead.
1186 @c @defopt url-gateway-broken-resolution
1187 @c @cindex @code{nslookup} program
1188 @c @cindex program, @code{nslookup}
1189 @c If non-@code{nil}, this variable says to use the program specified by
1190 @c @code{url-gateway-nslookup-program} program to do hostname resolution.
1191 @c @end defopt
1193 @c @defopt url-gateway-nslookup-program
1194 @c The name of the program to do hostname lookup if Emacs can't do it
1195 @c directly.  This program should expect a single argument on the command
1196 @c line---the hostname to resolve---and should produce output similar to
1197 @c the standard Unix @command{nslookup} program:
1198 @c @example
1199 @c Name: www.cs.indiana.edu
1200 @c Address: 129.79.254.191
1201 @c @end example
1202 @c @end defopt
1204 @node History
1205 @section History
1207 @findex url-do-setup
1208 The library can maintain a global history list tracking URLs accessed.
1209 URL completion can be done from it.  The history mechanism is set up
1210 automatically via @code{url-do-setup} when it is configured to be on.
1211 Note that the size of the history list is currently not limited.
1213 @vindex url-history-hash-table
1214 The history ``list'' is actually a hash table,
1215 @code{url-history-hash-table}.  It contains access times keyed by URL
1216 strings.  The times are in the format returned by @code{current-time}.
1218 @defun url-history-update-url url time
1219 This function updates the history table with an entry for @var{url}
1220 accessed at the given @var{time}.
1221 @end defun
1223 @defopt url-history-track
1224 If non-@code{nil}, the library will keep track of all the URLs
1225 accessed.  If it is @code{t}, the list is saved to disk at the end of
1226 each Emacs session.  The default is @code{nil}.
1227 @end defopt
1229 @defopt url-history-file
1230 The file storing the history list between sessions.  It defaults to
1231 @file{history} in @code{url-configuration-directory}.
1232 @end defopt
1234 @defopt url-history-save-interval
1235 @findex url-history-setup-save-timer
1236 The number of seconds between automatic saves of the history list.
1237 Default is one hour.  Note that if you change this variable directly,
1238 rather than using Custom, after @code{url-do-setup} has been run, you
1239 need to run the function @code{url-history-setup-save-timer}.
1240 @end defopt
1242 @defun url-history-parse-history &optional fname
1243 Parses the history file @var{fname} (default @code{url-history-file})
1244 and sets up the history list.
1245 @end defun
1247 @defun url-history-save-history &optional fname
1248 Saves the current history to file @var{fname} (default
1249 @code{url-history-file}).
1250 @end defun
1252 @defun url-completion-function string predicate function
1253 You can use this function to do completion of URLs from the history.
1254 @end defun
1256 @node Customization
1257 @chapter Customization
1259   The following user options affect the general operation of
1260 @code{url} library.
1262 @defopt url-configuration-directory
1263 @cindex configuration files
1264 The value of this variable specifies the name of the directory where
1265 the @code{url} library stores its various configuration files, cache
1266 files, etc.
1268 The default value specifies a subdirectory named @file{url/} in the
1269 standard Emacs user data directory specified by the variable
1270 @code{user-emacs-directory} (normally @file{~/.emacs.d}).  However,
1271 the old default was @file{~/.url}, and this directory is used instead
1272 if it exists.
1273 @end defopt
1275 @defopt url-debug
1276 @cindex debugging
1277 Specifies the types of debug messages which are logged to
1278 the @file{*URL-DEBUG*} buffer.
1279 @code{t} means log all messages.
1280 A number means log all messages and show them with @code{message}.
1281 It may also be a list of the types of messages to be logged.
1282 @end defopt
1283 @defopt url-personal-mail-address
1284 @end defopt
1285 @defopt url-privacy-level
1286 @end defopt
1287 @defopt url-lastloc-privacy-level
1288 Provided @code{lastloc} is not prohibited by @code{url-privacy-level},
1289 this determines who we send our last location to.  @code{none} means
1290 we include our last location in every outgoing request.
1291 @code{domain-match} means we send it only if the domain of our last
1292 location matches the domain of the URI we are requesting.
1293 @code{host-match} means we only send our last location back to the
1294 same host.  The default is @code{domain-match}.
1296 Using @code{domain-match} for this option requires emacs to make one
1297 or more DNS requests each time a new host is contacted, to determine
1298 the domain of the host.  Results of these lookups are cached, so
1299 repeated visits do not require repeated domain lookups.
1300 @end defopt
1301 @defopt url-uncompressor-alist
1302 @end defopt
1303 @defopt url-passwd-entry-func
1304 @end defopt
1305 @defopt url-standalone-mode
1306 @end defopt
1307 @defopt url-bad-port-list
1308 @end defopt
1309 @defopt url-max-password-attempts
1310 @end defopt
1311 @defopt url-temporary-directory
1312 @end defopt
1313 @defopt url-show-status
1314 @end defopt
1315 @defopt url-confirmation-func
1316 The function to use for asking yes or no functions.  This is normally
1317 either @code{y-or-n-p} or @code{yes-or-no-p}, but could be another
1318 function taking a single argument (the prompt) and returning @code{t}
1319 only if an affirmative answer is given.
1320 @end defopt
1321 @defopt url-gateway-method
1322 @c fixme: describe gatewaying
1323 A symbol specifying the type of gateway support to use for connections
1324 from the local machine.  The supported methods are:
1326 @table @code
1327 @item telnet
1328 Run telnet in a subprocess to connect;
1329 @item rlogin
1330 Rlogin to another machine to connect;
1331 @item socks
1332 Connect through a socks server;
1333 @item ssl
1334 Connect with SSL;
1335 @item native
1336 Connect directly.
1337 @end table
1338 @end defopt
1340 @defopt url-user-agent
1341 The User Agent string used for sending @acronym{HTTP}/@acronym{HTTPS}
1342 requests.  The value should be @code{nil}, which means that no
1343 @samp{User-Agent} header is generated, @code{default}, which means
1344 that a string is generated based on the setting of
1345 @code{url-privacy-leve}, a string or a function of no arguments that
1346 returns a string.
1348 The default is @code{default}, which means that the
1349 @w{@samp{User-Agent: @var{package-name} URL/Emacs}} string will be
1350 generated, where @var{package-name} is the value of
1351 @code{url-package-name} and its version, if they are non-@code{nil}.
1352 @end defopt
1354 @node GNU Free Documentation License
1355 @appendix GNU Free Documentation License
1356 @include doclicense.texi
1358 @node Function Index
1359 @unnumbered Command and Function Index
1360 @printindex fn
1362 @node Variable Index
1363 @unnumbered Variable Index
1364 @printindex vr
1366 @node Concept Index
1367 @unnumbered Concept Index
1368 @printindex cp
1370 @bye