home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / rfc / 3 / rfc2296.txt < prev    next >
Encoding:
Text File  |  2003-06-11  |  26.3 KB  |  732 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                                         K. Holtman
  8. Request for Comments: 2296                                           TUE
  9. Category: Experimental                                           A. Mutz
  10.                                                          Hewlett-Packard
  11.                                                               March 1998
  12.  
  13.  
  14.           HTTP Remote Variant Selection Algorithm -- RVSA/1.0
  15.  
  16. Status of this Memo
  17.  
  18.    This memo defines an Experimental Protocol for the Internet
  19.    community.  It does not specify an Internet standard of any kind.
  20.    Discussion and suggestions for improvement are requested.
  21.    Distribution of this memo is unlimited.
  22.  
  23. Copyright Notice
  24.  
  25.    Copyright (C) The Internet Society (1998).  All Rights Reserved.
  26.  
  27. ABSTRACT
  28.  
  29.    HTTP allows web site authors to put multiple versions of the same
  30.    information under a single URL.  Transparent content negotiation is a
  31.    mechanism for automatically selecting the best version when the URL
  32.    is accessed.  A remote variant selection algorithm can be used to
  33.    speed up the transparent negotiation process. This document defines
  34.    the remote variant selection algorithm with the version number 1.0.
  35.  
  36. TABLE OF CONTENTS
  37.  
  38.    1  Introduction...............................................2
  39.    2  Terminology and notation...................................2
  40.    3  The remote variant selection algorithm.....................2
  41.     3.1 Input....................................................2
  42.     3.2 Output...................................................3
  43.     3.3 Computing overall quality values.........................3
  44.     3.4 Definite and speculative quality values..................5
  45.     3.5 Determining the result...................................6
  46.    4  Use of the algorithm.......................................7
  47.     4.1 Using quality factors to rank preferences................7
  48.     4.2 Construction of short requests...........................8
  49.     4.2.1 Collapsing Accept- header elements.....................8
  50.     4.2.2 Omitting Accept- headers...............................9
  51.     4.2.3 Dynamically lengthening requests.......................9
  52.     4.3 Differences between the local and the remote algorithm..10
  53.     4.3.1 Avoiding major differences............................11
  54.     4.3.2 Working around minor differences......................11
  55.  
  56.  
  57.  
  58. Holtman & Mutz                Experimental                      [Page 1]
  59.  
  60. RFC 2296                     HTTP RVSA/1.0                    March 1998
  61.  
  62.  
  63.    5  Security and privacy considerations.......................11
  64.    6  Acknowledgments...........................................12
  65.    7  References................................................12
  66.    8  Authors' Addresses........................................12
  67.    9  Full Copyright Statement..................................13
  68.  
  69. 1  Introduction
  70.  
  71.    HTTP allows web site authors to put multiple versions (variants) of
  72.    the same information under a single URL.  Transparent content
  73.    negotiation [2] is a mechanism for automatically selecting the best
  74.    variant when the URL is accessed.  A remote variant selection
  75.    algorithm can be used by a HTTP server to choose a best variant on
  76.    behalf of a negotiating user agent.  The use of a remote algorithm
  77.    can speed up the transparent negotiation process by eliminating a
  78.    request-response round trip.
  79.  
  80.    This document defines the remote variant selection algorithm with the
  81.    version number 1.0.  The algorithm computes whether the Accept-
  82.    headers in the request contain sufficient information to allow a
  83.    choice, and if so, which variant must be chosen.
  84.  
  85. 2  Terminology and notation
  86.  
  87.    This specification uses the terminology and notation of the HTTP
  88.    transparent content negotiation specification [2].
  89.  
  90. 3  The remote variant selection algorithm
  91.  
  92.    This section defines the remote variant selection algorithm with the
  93.    version number 1.0.  To implement this definition, a server MAY run
  94.    any algorithm which gives equal results.
  95.  
  96.      Note: According to [2], servers are always free to return a list
  97.      response instead of running a remote algorithm.  Therefore,
  98.      whenever a server may run a remote algorithm, it may also run a
  99.      partial implementation of the algorithm, provided that the partial
  100.      implementation always returns List_response when it cannot compute
  101.      the real result.
  102.  
  103. 3.1 Input
  104.  
  105.      The algorithm is always run for a particular request on a
  106.      particular transparently negotiable resource.  It takes the
  107.      following information as input.
  108.  
  109.     1. The variant list of the resource, as present in the Alternates
  110.        header of the resource.
  111.  
  112.  
  113.  
  114. Holtman & Mutz                Experimental                      [Page 2]
  115.  
  116. RFC 2296                     HTTP RVSA/1.0                    March 1998
  117.  
  118.  
  119.     2. (Partial) Information about capabilities and preferences of the
  120.        user agent for this particular request, as given in the Accept-
  121.        headers of the request.
  122.  
  123.    If a fallback variant description
  124.  
  125.        {"fallback.html"}
  126.  
  127.    is present in the Alternates header, the algorithm MUST interpret it
  128.    as the variant description
  129.  
  130.        {"fallback.html" 0.000001}
  131.  
  132.    The extremely low source quality value ensures that the fallback
  133.    variant only gets chosen if all other options are exhausted.
  134.  
  135. 3.2 Output
  136.  
  137.    As its output, the remote variant selection algorithm and will yield
  138.    the appropriate action to be performed.  There are two possibilities:
  139.  
  140.       Choice_response
  141.  
  142.         The Accept- headers contain sufficient information to make a
  143.         choice on behalf of the user agent possible, and the best
  144.         variant MAY be returned in a choice response.
  145.  
  146.       List_response
  147.  
  148.         The Accept- headers do not contain sufficient information to
  149.         make a choice on behalf of the user agent possible.  A list
  150.         response MUST be returned, allowing the user agent to make the
  151.         choice itself.
  152.  
  153. 3.3 Computing overall quality values
  154.  
  155.    As a first step in the remote variant selection algorithm, the
  156.    overall qualities of the individual variants in the list are
  157.    computed.
  158.  
  159.    The overall quality Q of a variant is the value
  160.  
  161.       Q = round5( qs * qt * qc * ql * qf )
  162.  
  163.    where round5 is a function which rounds a floating point value to 5
  164.    decimal places after the point, and where the factors qs, qt, qc, ql,
  165.    and qf are determined as follows.
  166.  
  167.  
  168.  
  169.  
  170. Holtman & Mutz                Experimental                      [Page 3]
  171.  
  172. RFC 2296                     HTTP RVSA/1.0                    March 1998
  173.  
  174.  
  175.       qs Is the source quality factor in the variant description.
  176.  
  177.       qt The media type quality factor is 1 if there is no type
  178.          attribute in the variant description, or if there is no Accept
  179.          header in the request.  Otherwise, it is the quality assigned
  180.          by the Accept header to the media type in the type attribute.
  181.  
  182.            Note: If a type is matched by none of the elements of an
  183.            Accept header, the Accept header assigns the quality factor 0
  184.            to that type.
  185.  
  186.       qc The charset quality factor is 1 if there is no charset
  187.          attribute in the variant description, or if there is no
  188.          Accept-Charset header in the request.  Otherwise, the charset
  189.          quality factor is the quality assigned by the Accept-Charset
  190.          header to the charset in the charset attribute.
  191.  
  192.       ql The language quality factor is 1 if there is no language
  193.          attribute in the variant description, or if there is no
  194.          Accept-Language header in the request.  Otherwise, the language
  195.          quality factor is the highest quality factor assigned by the
  196.          Accept-Language header to any one of the languages listed in
  197.          the language attribute.
  198.  
  199.       qf The features quality factor is 1 if there is no features
  200.          attribute in the variant description, or if there is no
  201.          Accept-Features header in the request.  Otherwise, it is the
  202.          quality degradation factor for the features attribute, see
  203.          section 6.4 of [2].
  204.  
  205.    As an example, if a variant list contains the variant description
  206.  
  207.      {"paper.html.en" 0.7 {type text/html} {language fr}}
  208.  
  209.    and if the request contains the Accept- headers
  210.  
  211.      Accept: text/html:q=1.0, */*:q=0.8
  212.      Accept-Language: en;q=1.0, fr;q=0.5
  213.  
  214.    the remote variant selection algorithm will compute an overall
  215.    quality for the variant as follows:
  216.  
  217.      {"paper.html.fr" 0.7 {type text/html} {language fr}}
  218.                        |           |                 |
  219.                        |           |                 |
  220.                        V           V                 V
  221.              round5 ( 0.7   *     1.0        *      0.5 ) = 0.35000
  222.  
  223.  
  224.  
  225.  
  226. Holtman & Mutz                Experimental                      [Page 4]
  227.  
  228. RFC 2296                     HTTP RVSA/1.0                    March 1998
  229.  
  230.  
  231.    With the above Accept- headers, the complete variant list
  232.  
  233.      {"paper.html.en" 0.9 {type text/html} {language en}},
  234.      {"paper.html.fr" 0.7 {type text/html} {language fr}},
  235.      {"paper.ps.en"   1.0 {type application/postscript} {language en}}
  236.  
  237.    would yield the following computations:
  238.  
  239.             round5 ( qs  * qt  * qc  * ql  * qf  ) =   Q
  240.                      ---   ---   ---   ---   ---     -------
  241.       paper.html.en: 0.9 * 1.0 * 1.0 * 1.0 * 1.0   = 0.90000
  242.       paper.html.fr: 0.7 * 1.0 * 1.0 * 0.5 * 1.0   = 0.35000
  243.       paper.ps.en:   1.0 * 0.8 * 1.0 * 1.0 * 1.0   = 0.80000
  244.  
  245. 3.4 Definite and speculative quality values
  246.  
  247.    A computed overall quality value can be either definite or
  248.    speculative.  An overall quality value is definite if it was computed
  249.    without using any wildcard characters '*' in the Accept- headers, and
  250.    without the need to use the absence of a particular Accept- header.
  251.    An overall quality value is speculative otherwise.
  252.  
  253.    As an example, in the previous section, the quality values of
  254.    paper.html.en and paper.html.fr are definite, and the quality value
  255.    of paper.ps.en is speculative because the type application/postscript
  256.    was matched to the range */*.
  257.  
  258.    Definiteness can be defined more formally as follows.  An overall
  259.    quality value Q is definite if the same quality value Q can be
  260.    computed after the request message is changed in the following way:
  261.  
  262.        1. If an Accept, Accept-Charset, Accept-Language, or
  263.           Accept-Features header is missing from the request, add this
  264.           header with an empty field.
  265.  
  266.        2. Delete any media ranges containing a wildcard character '*'
  267.           from the Accept header.  Delete any wildcard '*' from the
  268.           Accept-Charset, Accept-Language, and Accept-Features headers.
  269.  
  270.    As another example, the overall quality factor for the variant
  271.  
  272.      {"blah.html" 1 {language en-gb} {features blebber [x y]}}
  273.  
  274.    is 1 and definite with the Accept- headers
  275.  
  276.      Accept-Language: en-gb, fr
  277.      Accept-Features: blebber, x, !y, *
  278.  
  279.  
  280.  
  281.  
  282. Holtman & Mutz                Experimental                      [Page 5]
  283.  
  284. RFC 2296                     HTTP RVSA/1.0                    March 1998
  285.  
  286.  
  287.    and
  288.  
  289.      Accept-Language: en, fr
  290.      Accept-Features: blebber, x, *
  291.  
  292.    The overall quality factor is still 1, but speculative, with the
  293.    Accept- headers
  294.  
  295.      Accept-language: en-gb, fr
  296.      Accept-Features: blebber, !y, *
  297.  
  298.    and
  299.  
  300.      Accept-Language: fr, *
  301.      Accept-Features: blebber, x, !y, *
  302.  
  303. 3.5 Determining the result
  304.  
  305.    The best variant, as determined by the remote variant selection
  306.    algorithm, is the one variant with the highest overall quality value,
  307.    or, if there are multiple variants which share the highest overall
  308.    quality, the first variant in the list with this value.
  309.  
  310.    The end result of the remote variant selection algorithm is
  311.    Choice_response if all of the following conditions are met
  312.  
  313.       a. the overall quality value of the best variant is greater
  314.          than 0
  315.  
  316.       b. the overall quality value of the best variant is a definite
  317.          quality value
  318.  
  319.       c. the variant resource is a neighbor of the negotiable
  320.          resource.  This last condition exists to ensure that a
  321.          security-related restriction on the generation of choice
  322.          responses is met, see sections 10.2 and 14.2 of [2].
  323.  
  324.    In all other cases, the end result is List_response.
  325.  
  326.    The requirement for definiteness above affects the interpretation of
  327.    Accept- headers in a dramatic way.  For example, it causes the remote
  328.    algorithm to interpret the header
  329.  
  330.      Accept: image/gif;q=0.9, */*;q=1.0
  331.  
  332.    as
  333.  
  334.      `I accept image/gif with a quality of 0.9, and assign quality
  335.  
  336.  
  337.  
  338. Holtman & Mutz                Experimental                      [Page 6]
  339.  
  340. RFC 2296                     HTTP RVSA/1.0                    March 1998
  341.  
  342.  
  343.      factors up to 1.0 to other media types.  If this information is
  344.      insufficient to make a choice on my behalf, do not make a choice
  345.      but send the list of variants'.
  346.  
  347.    Without the requirement, the interpretation would have been
  348.  
  349.      `I accept image/gif with a quality of 0.9, and all other media
  350.      types with a quality of 1.0'.
  351.  
  352. 4  Use of the algorithm
  353.  
  354.    This section discusses how user agents can use the remote algorithm
  355.    in an optimal way.  This section is not normative, it is included for
  356.    informational purposes only.
  357.  
  358. 4.1 Using quality factors to rank preferences
  359.  
  360.    Using quality factors, a user agent can not only rank the elements
  361.    within a particular Accept- header, it can also express precedence
  362.    relations between the different Accept- headers.  Consider for
  363.    example the following variant list:
  364.  
  365.      {"paper.english" 1.0 {language en} {charset ISO-8859-1}},
  366.      {"paper.greek"   1.0 {language el} {charset ISO-8859-7}}
  367.  
  368.    and suppose that the user prefers "el" over "en", while the user
  369.    agent can render "ISO-8859-1" with a higher quality than "ISO-8859-
  370.    7".  If the Accept- headers are
  371.  
  372.      Accept-Language: gr, en;q=0.8
  373.      Accept-Charset: ISO-8859-1, ISO-8859-7;q=0.6, *
  374.  
  375.    then the remote variant selection algorithm would choose the English
  376.    variant, because this variant has the least overall quality
  377.    degradation.  But if the Accept- headers are
  378.  
  379.      Accept-Language: gr, en;q=0.8
  380.      Accept-Charset: ISO-8859-1, ISO-8859-7;q=0.95, *
  381.  
  382.    then the algorithm would choose the Greek variant.  In general, the
  383.    Accept- header with the biggest spread between its quality factors
  384.    gets the highest precedence.  If a user agent allows the user to set
  385.    the quality factors for some headers, while other factors are hard-
  386.    coded, it should use a low spread on the hard-coded factors and a
  387.    high spread on the user-supplied factors, so that the user settings
  388.    take precedence over the built-in settings.
  389.  
  390.  
  391.  
  392.  
  393.  
  394. Holtman & Mutz                Experimental                      [Page 7]
  395.  
  396. RFC 2296                     HTTP RVSA/1.0                    March 1998
  397.  
  398.  
  399. 4.2 Construction of short requests
  400.  
  401.    In a request on a transparently negotiated resource, a user agent
  402.    need not send a very long Accept- header, which lists all of its
  403.    capabilities, to get optimal results.  For example, instead of
  404.    sending
  405.  
  406.      Accept: image/gif;q=0.9, image/jpeg;q=0.8, image/png;q=1.0,
  407.              image/tiff;q=0.5, image/ief;q=0.5, image/x-xbitmap;q=0.8,
  408.              application/plugin1;q=1.0, application/plugin2;q=0.9
  409.  
  410.    the user agent can send
  411.  
  412.      Accept: image/gif;q=0.9, */*;q=1.0
  413.  
  414.    It can send this short header without running the risk of getting a
  415.    choice response with, say, an inferior image/tiff variant.  For
  416.    example, with the variant list
  417.  
  418.      {"x.gif" 1.0 {type image/gif}}, {"x.tiff" 1.0 {type image/tiff}},
  419.  
  420.    the remote algorithm will compute a definite overall quality of 0.9
  421.    for x.gif and a speculative overall quality value of 1.0 for x.tiff.
  422.    As the best variant has a speculative quality value, the algorithm
  423.    will not choose x.tiff, but return a list response, after which the
  424.    selection algorithm of the user agent will correctly choose x.gif.
  425.    The end result is the same as if the long Accept- header above had
  426.    been sent.
  427.  
  428.    Thus, user agents can vary the length of the Accept- headers to get
  429.    an optimal tradeoff between the speed with which the first request is
  430.    transmitted, and the chance that the remote algorithm has enough
  431.    information to eliminate a second request.
  432.  
  433. 4.2.1 Collapsing Accept- header elements
  434.  
  435.    This section discusses how a long Accept- header which lists all
  436.    capabilities and preferences can be safely made shorter.  The remote
  437.    variant selection algorithm is designed in such a way that it is
  438.    always safe to shorten an Accept or Accept-Charset header by two
  439.    taking two header elements `A;q=f' and `B;q=g' and replacing them by
  440.    a single element `P;q=m' where P is a wildcard pattern that matches
  441.    both A and B, and m is the maximum of f and g.  Some examples are
  442.  
  443.       text/html;q=1.0, text/plain;q=0.8       -->    text/*;q=1.0
  444.       image/*;q=0.8, application/*;q=0.7      -->    */*;q=0.8
  445.  
  446.       iso-8859-5;q=1.0, unicode-1-1;q=0.8     -->    *;q=1.0
  447.  
  448.  
  449.  
  450. Holtman & Mutz                Experimental                      [Page 8]
  451.  
  452. RFC 2296                     HTTP RVSA/1.0                    March 1998
  453.  
  454.  
  455.    Note that every `;q=1.0' above is optional, and can be omitted:
  456.  
  457.       iso-8859-7;q=0.6, *                     -->    *
  458.  
  459.    For Accept-Language, it is safe to collapse all language ranges
  460.    with the same primary tag into a wildcard:
  461.  
  462.       en-us;q=0.9, en-gb;q=0.7, en;q=0.8, da  -->    *;q=0.9, da
  463.  
  464.    It is also safe to collapse a language range into a wildcard, or to
  465.    replace it by a wildcard, if its primary tag appears only once:
  466.  
  467.       *;q=0.9, da                             -->    *
  468.  
  469.    Finally, in the Accept-Features header, every feature expression
  470.    can be collapsed into a wildcard, or replaced by a wildcard:
  471.  
  472.       colordepth!=5, *                        -->    *
  473.  
  474. 4.2.2 Omitting Accept- headers
  475.  
  476.  
  477.    According to the HTTP/1.1 specification [1], the complete absence of
  478.    an Accept header from the request is equivalent to the presence of
  479.    `Accept: */*'.  Thus, if the Accept header is collapsed to `Accept:
  480.    */*', a user agent may omit it entirely.  An Accept-Charset, Accept-
  481.    Language, or Accept-Features header which only contains `*' may also
  482.    be omitted.
  483.  
  484. 4.2.3 Dynamically lengthening requests
  485.  
  486.    In general, a user agent capable of transparent content negotiation
  487.    can send short requests by default.  Some short Accept- headers could
  488.    be included for the benefit of existing servers which use HTTP/1.0
  489.    style negotiation (see section 4.2 of [2]).  An example is
  490.  
  491.       GET /paper HTTP/1.1
  492.       Host: x.org
  493.       User-Agent: WuxtaWeb/2.4
  494.       Negotiate: 1.0
  495.       Accept-Language: en, *;q=0.9
  496.  
  497.    If the Accept- headers included in such a default request are not
  498.    suitable as input to the remote variant selection algorithm, the user
  499.    agent can disable the algorithm by sending `Negotiate: trans' instead
  500.    of `Negotiate: 1.0'.
  501.  
  502.  
  503.  
  504.  
  505.  
  506. Holtman & Mutz                Experimental                      [Page 9]
  507.  
  508. RFC 2296                     HTTP RVSA/1.0                    March 1998
  509.  
  510.  
  511.    If the user agent discovers, though the receipt of a list or choice
  512.    response, that a particular origin server contains transparently
  513.    negotiated resources, it could dynamically lengthen future requests
  514.    to this server, for example to
  515.  
  516.       GET /paper/chapter1 HTTP/1.1
  517.       Host: x.org
  518.       User-Agent: WuxtaWeb/2.4
  519.       Negotiate: 1.0
  520.       Accept: text/html, application/postscript;q=0.8, */*
  521.       Accept-Language: en, fr;q=0.5, *;q=0.9
  522.       Accept-Features: tables, *
  523.  
  524.    This will increase the chance that the remote variant selection
  525.    algorithm will have sufficient information to choose on behalf of the
  526.    user agent, thereby optimizing the negotiation process.  A good
  527.    strategy for dynamic extension would be to extend the headers with
  528.    those media types, languages, charsets, and feature tags mentioned in
  529.    the variant lists of past responses from the server.
  530.  
  531. 4.3 Differences between the local and the remote algorithm
  532.  
  533.    A user agent can only optimize content negotiation though the use of
  534.    a remote algorithm if its local algorithm will generally make the
  535.    same choice.  If a user agent receives a choice response containing a
  536.    variant X selected by the remote algorithm, while the local algorithm
  537.    would have selected Y, the user agent has two options:
  538.  
  539.      1. Retrieve Y in a subsequent request. This is sub-optimal
  540.         because it takes time.
  541.  
  542.      2. Display X anyway.  This is sub-optimal because it makes the
  543.         end result of the negotiation process dependent on factors that
  544.         can randomly change.  For the next request on the same resource,
  545.         and intermediate proxy cache could return a list response, which
  546.         would cause the local algorithm to choose and retrieve Y instead
  547.         of X.  Compared to a stable representation, a representation
  548.         which randomly switches between X and Y (say, the version with
  549.         and without frames) has a very low subjective quality for most
  550.         users.
  551.  
  552.    As both alternatives above are unattractive, a user agent should try
  553.    to avoid the above situation altogether.  The sections below discuss
  554.    how this can be done.
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. Holtman & Mutz                Experimental                     [Page 10]
  563.  
  564. RFC 2296                     HTTP RVSA/1.0                    March 1998
  565.  
  566.  
  567. 4.3.1 Avoiding major differences
  568.  
  569.    If the user agent enables the remote algorithm in this specification,
  570.    it should generally use a local algorithm which closely resembles the
  571.    remote algorithm.  The algorithm should for example also use
  572.    multiplication to combine quality factors.  If the user agent
  573.    combines quality factors by addition, it would be more advantageous
  574.    to define a new remote variant selection algorithm, with a new major
  575.    version number, for use by this agent.
  576.  
  577. 4.3.2 Working around minor differences
  578.  
  579.    Even if a local algorithm uses multiplication to combine quality
  580.    factors, it could use an extended quality formulae like
  581.  
  582.       Q = round5( qs * qt * qc * ql * qf ) * q_adjust
  583.  
  584.    in order to account for special interdependencies between dimensions,
  585.    which are due to limitations of the user agent.  For example, if the
  586.    user agent, for some reason, cannot handle the iso-8859-7 charset
  587.    when rendering text/plain documents, the q_adjust factor would be 0
  588.    when the text/plain - iso-8859-7 combination is present in the
  589.    variant description, and 1 otherwise.
  590.  
  591.    By selectively withholding information from the remote variant
  592.    selection algorithm, the user agent can ensure that the remote
  593.    algorithm will never make a choice if the local q_adjust is less than
  594.    1.  For example, to prevent the remote algorithm from ever returning
  595.    a text/plain - iso-8859-7 choice response, the user agent should take
  596.    care to never produce a request which exactly specifies the quality
  597.    factors of both text/plain and iso-8859-7.  The omission of either
  598.    factor from a request will cause the overall quality value of any
  599.    text/plain - iso-8859-7 variant to be speculative, and variants with
  600.    speculative quality values can never be returned in a choice
  601.    response.
  602.  
  603.    In general, if the local q_adjust does not equal 1 for a particular
  604.    combination X - Y - Z, then a remote choice can be prevented by
  605.    always omitting at least one of the elements of the combination from
  606.    the Accept- headers, and adding a suitable wildcard pattern to match
  607.    the omitted element, if such a pattern is not already present.
  608.  
  609. 5  Security and privacy considerations
  610.  
  611.    This specification introduces no security and privacy considerations
  612.    not already covered in [2].  See [2] for a discussion of privacy
  613.    risks connected to the sending of Accept- headers.
  614.  
  615.  
  616.  
  617.  
  618. Holtman & Mutz                Experimental                     [Page 11]
  619.  
  620. RFC 2296                     HTTP RVSA/1.0                    March 1998
  621.  
  622.  
  623. 6  Acknowledgments
  624.  
  625.    Work on HTTP content negotiation has been done since at least 1993.
  626.    The authors are unable to trace the origin of many of the ideas
  627.    incorporated in this document.  Many members of the HTTP working
  628.    group have contributed to the negotiation model in this
  629.    specification.  The authors wish to thank the individuals who have
  630.    commented on earlier versions of this document, including Brian
  631.    Behlendorf, Daniel DuBois, Ted Hardie, Larry Masinter, and Roy T.
  632.    Fielding.
  633.  
  634. 7  References
  635.  
  636.    [1] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., and
  637.        T. Berners-Lee, "Hypertext Transfer Protocol -- HTTP/1.1", RFC
  638.        2068, January 1997.
  639.  
  640.    [2] Holtman, K., and A. Mutz, "Transparent Content Negotiation in
  641.        HTTP", RFC 2295, March 1998.
  642.  
  643. 8  Authors' Addresses
  644.  
  645.    Koen Holtman
  646.    Technische Universiteit Eindhoven
  647.    Postbus 513
  648.    Kamer HG 6.57
  649.    5600 MB Eindhoven (The Netherlands)
  650.  
  651.    EMail: koen@win.tue.nl
  652.  
  653.  
  654.    Andrew H. Mutz
  655.    Hewlett-Packard Company
  656.    1501 Page Mill Road 3U-3
  657.    Palo Alto CA 94304, USA
  658.  
  659.    Fax:   +1 415 857 4691
  660.    EMail: mutz@hpl.hp.com
  661.  
  662.  
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674. Holtman & Mutz                Experimental                     [Page 12]
  675.  
  676. RFC 2296                     HTTP RVSA/1.0                    March 1998
  677.  
  678.  
  679. 9  Full Copyright Statement
  680.  
  681.    Copyright (C) The Internet Society (1998).  All Rights Reserved.
  682.  
  683.    This document and translations of it may be copied and furnished to
  684.    others, and derivative works that comment on or otherwise explain it
  685.    or assist in its implementation may be prepared, copied, published
  686.    and distributed, in whole or in part, without restriction of any
  687.    kind, provided that the above copyright notice and this paragraph are
  688.    included on all such copies and derivative works.  However, this
  689.    document itself may not be modified in any way, such as by removing
  690.    the copyright notice or references to the Internet Society or other
  691.    Internet organizations, except as needed for the purpose of
  692.    developing Internet standards in which case the procedures for
  693.    copyrights defined in the Internet Standards process must be
  694.    followed, or as required to translate it into languages other than
  695.    English.
  696.  
  697.    The limited permissions granted above are perpetual and will not be
  698.    revoked by the Internet Society or its successors or assigns.
  699.  
  700.    This document and the information contained herein is provided on an
  701.    "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  702.    TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  703.    BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  704.    HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  705.    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730. Holtman & Mutz                Experimental                     [Page 13]
  731.  
  732.