view Side-By-Side changes
Network Working Group M. Nottingham Internet-DraftJune 16, 2006March 14, 2008 Expires:December 18, 2006September 15, 2008 HTTP Header Linkingdraft-nottingham-http-link-header-00draft-nottingham-http-link-header-01 Status of this Memo By submitting this Internet-Draft, each author represents that any applicable patent or other IPR claims of which he or she is aware have been or will be disclosed, and any of which he or she becomes aware will be disclosed, in accordance with Section 6 of BCP 79. Internet-Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet- Drafts. Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress." The list of current Internet-Drafts can be accessed at http://www.ietf.org/ietf/1id-abstracts.txt. The list of Internet-Draft Shadow Directories can be accessed at http://www.ietf.org/shadow.html. This Internet-Draft will expire onDecember 18, 2006.September 15, 2008. Copyright Notice Copyright (C) TheInternet Society (2006).IETF Trust (2008). Abstract Thisspecificationdocument clarifies the status of the Link HTTP header andintroduces the complimentary Profile and Link-Template HTTP headers.attempts to consolidate link relations in a single registry. Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page 1] Internet-Draft HTTP Header LinkingJune 2006March 2008 Table of Contents 1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . . 3 2. Notational Conventions . . . . . . . . . . . . . . . . . . . . 3 3. The Link Header Field . . . . . . . . . . . . . . . . . . . .. 34 4.The Profile Header FieldIANA Considerations . . . . . . . . . . . . . . . . . . . . . 4 5.The Link-Template Header FieldSecurity Considerations . . . . . . . . . . . . . . . . . .5. 8 6.IANA ConsiderationsReferences . . . . . . . . . . . . . . . . . . . . . .6 7. Security Considerations. . . . 9 6.1. Normative References . . . . . . . . . . . . . . . .6 8.. . . 9 6.2. Informative References . . . . . . . . . . . . . . . . . . 9 Appendix A. Notes on HTML Links . . . . . . . . . . .7 8.1. Normative References. . . . . . 10 Appendix B. Notes on Atom Links . . . . . . . . . . . . .7 8.2. Informative References. . . . 11 Appendix C. Acknowledgements . . . . . . . . . . . . . . . .7 Appendix A. Acknowledgements. . 11 Appendix D. Document history . . . . . . . . . . . . . . . . . .711 Author's Address . . . . . . . . . . . . . . . . . . . . . . . . .811 Intellectual Property and Copyright Statements . . . . . . . . . .913 Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page 2] Internet-Draft HTTP Header LinkingJune 2006March 2008 1. Introduction A means of indicating the relationships between documents on the Web has been available for some time in HTML, and was considered as a HTTP header in [RFC2068], but removed from [RFC2616], due to a lack of implementation experience. There have since surfaced many cases where a means of including this information in HTTP headers has proved useful. However, because it was removed, the status of the Link header is unclear, leading some to consider minting new application-specific HTTP headers instead of reusing it.Additionally, the complementary "profile" mechanism -- which is often used to disambiguate link relationship types -- is not available as a HTTP header.Thisspecificationdocument seeks to address these shortcomings.ItAdditionally, formats other than HTML -- namely, Atom [RFC4287] -- have alsointroduces a new header, Link-Template,defined generic linking mechanisms thatallows the structure ofare similar to those in HTML, but not identical. This document aims to reconcile these differences when such links are expressed as headers. This document does not attempt to specify how an XLink [W3C.REC-xlink-20010627] might bedescribed.mapped into the Link header, but does not prohibit this from being done. [[ NOTE: This is a straw-man draft that is intended to give a ROUGH idea of what it would take to align and consolidate the HTML and Atom link relations into a single registry with reasonable extensibility rules. In particular; a) it changes the registry for Atom link relations, and the process for registration; b) it assigns more generic semantics to several existing link relations, both Atom and HTML; c) it changes the syntax of the Link header (in the case where extensions are present). Feedback is welcome on the ietf-http-wg@w3.org mailing list, although this is NOT a work item of the HTTPBIS WG. ]] 2. Notational Conventions The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14, [RFC2119], as scoped to those conformance targets. Thisspecificationdocument uses the Augmented Backus-Naur Form (ABNF) notation of [RFC2616], and explicitly includes the following rules from it: quoted-string, token, SP(space), ALPHA (letters), DIGIT (decimal digit).(space). Additionally, the following rules are included from [RFC3986]:URI-Reference, reserved, unreserved.URI-Reference. Nottingham Expires September 15, 2008 [Page 3] Internet-Draft HTTP Header Linking March 2008 3. The Link Header Field The Link entity-header field provides a means for describing a relationship between two resources, generally between that of therequested resourceentity associated with the header and some other resource. An entity MAY include multiple Link values.Links at the metainformation level typically indicate relationships like hierarchical structure and navigation paths.The Link header field is semantically equivalent to the <LINK> element inHTML. Nottingham Expires December 18, 2006 [Page 3] Internet-Draft HTTP Header Linking June 2006HTML, as well as the atom:link element in Atom [RFC4287]. Link = "Link" ":" #("<" URI-Reference ">" *( ";" link-param ) ) link-param = ( ( "rel" "=" relationship ) | ( "rev" "=" relationship ) | ( "title" "=" quoted-string ) | ("anchor" "=" <"> URI-Reference <"> ) | (link-extension ) ) link-extension = token [ "=" ( token | quoted-string ) ] relationship =sgml-nameURI-Reference |(<">sgml-nameURI-Reference *( SPsgml-name)URI-Reference) <"> )sgml-name = ALPHA *( ALPHA | DIGIT | "." | "-" ) Relationship values are case-insensitive and MAY be extended within the constraints of the sgml-name syntax.The title parameter MAY be used to label the destination of a link such that it can be used as identification within a human-readable menu.The anchor parameter MAY be used to indicate a source anchor other than the entire current resource, such as a fragment of this resource or a third resource.Examples of usage include: Link: <http://www.cern.ch/TheBook/chapter2>; rel="Previous" Link: <mailto:timbl@w3.org>; rev="Made"; title="Tim Berners-Lee" The first example indicates that chapter2 is previous to this resource in a logical navigation path. The second indicates that the person responsible for making the resource available is identified by the given e-mail address.4. The Profile Header Field The Profile entity-header field provides a means to indicate3.1. Link Relationships Relationship values are URIs that identify themeta data profiletype of link. If theentity. Commonly, itrelationship isused to disambiguate the meaning of relationships in links. Note that thisa relative URI, its base URIMAYMUST beused as either an identifier (e.g., to uniquely identify links, without dereferencing the URI), or as a link that is intendedconsidered to bedereferenced. The Profile field is semantically equivalent to the profile attribute of"http://www.iana.org/assignments/link-relations.html#", and theHEAD elementvalue MUST be present inHTML [W3C.REC-html401-19991224]. Note, however, that its use is not limited to HTML entities.the link relation registry. 4. IANA Considerations Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page 4] Internet-Draft HTTP Header LinkingJune 2006 Profile = "Profile" ":" #("<" URI-Reference ">") For example: Profile: <http://www.acme.com/profiles/core> Profile: <http://example.com/p1>, </profiles/other-profile> 5. The Link-TemplateMarch 2008 4.1. Link HeaderField The Link-Template entity-header field provides a means for describing the structure of a link between two resources, soRegistration This specification requires thatnew links canthe Message Header Registry entry for "Link" in HTTP [RFC3864] begenerated. It does so through by allowing brace ("{}") -delimited stringsupdated tobe interposed throughout a URI reference. These correspond to variables which, after being replaced with content in a relation-specified manner, are semantically equivalentrefer tothe correspondingthis document. Header field: Linkheader. For example, Link-Template: <http://example.com/home/{userid}>; rel="home"Applicable protocol: http Status: standard Author/change controller: IETF (iesg@ietf.org) Internet Engineering Task Force Specification document(s): [ this document ] 4.2. Link Relation Registry Thislink indicates that the "home" link relation can be constructed if the userid variablespecification isknown; if it were knownintended tobe "bob", this header would be considered equivalentupdate Atom toLink: <http://example.com/home/bob>; rel="home" This specification does not define when or how template variables are interposed into link templates.become the reference for the Linkrelations that wish to allow templating SHOULDRelation registry, and clarifies its nature and use. A Link relation is a way of indicating the semantics of a link. Link relations are not format-specific, and MUST NOT specifysuch details. This specification doesa particular format or media type that they are to be used with. The security considerations of following a particular link are notdefinedetermined by thecorrect behaviour inlink's relation type; they are determined by thefacespecific context ofa conflict between a Link-Template headerthe use anda Link header withthesame relation. Link relations allowing templating SHOULD specify their relative precedence. Applicationsmedia type of the response. Likewise, a link relation SHOULD NOT specify what the context of its use is, although the media type of the dereferenced link may constrain how it is applied. New relationsthat do not explicitly allow such templatingMAY be registered, subject to IESG Approval, as outlined in [RFC2434]. Requests should be made by email to IANA, which will then forward theLink-Template header. Link-Template = "Link-Template" ":" #("<" template ">" *( ";" link-param ) ) template = *( uri-char | template-var ) template-var = "{" 1*( uri-char ) "}"request to the IESG, requesting approval. The request should use the following template: o Relation Name: o Description: o Reference: The Link Relation registry replaces the Atom Link Relation registry, using the same address with the following contents: o Relation Name: alternate o Description: Designates a substitute for the link's context. o Reference: [W3C.REC-html401-19991224] Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page 5] Internet-Draft HTTP Header LinkingJune 2006 uri-char = ( reserved | unreserved ) 6. IANA Considerations This specification requires registrationMarch 2008 o Relation Name: appendix o Description: Refers to an appendix. o Reference: [W3C.REC-html401-19991224] o Relation Name: bookmark o Description: Refers to a bookmark or entry point. o Reference: [W3C.REC-html401-19991224] o Relation Name: chapter o Description: Refers to a chapter in a collection oftwo Message Header Fields for HTTP [RFC3864]. Note that "Link" is already presentresources. o Reference: [W3C.REC-html401-19991224] o Relation Name: contents o Description: Refers to a table of contents. o Reference: [W3C.REC-html401-19991224] o Relation Name: copyright o Description: Refers to a copyright statement. o Reference: [W3C.REC-html401-19991224] o Relation Name: current o Description: Refers to a resource containing the most recent item(s) in a collection of resources. o Reference: [RFC5005] o Relation Name: edit o Description: Refers to a resource that can be used to edit theregistry; this registration only updates its specification document. Header field: Link Applicable protocol: http Status: standard Author/change controller: IETF (iesg@ietf.org) Internet Engineering Task Force Specification document(s): [ this document ]link's context. o Reference: [RFC5023] o Relation Name: edit-media o Description: Refers to a resource that can be used to edit media associated with the link's context. o Reference: [RFC5023] o Relation Name: enclosure o Description: Identifies a related resource that is potentially large and might require special handling. o Reference: [RFC4287] o Relation Name: first o Description: [[ ??? IANA Registry does not reference ]] o Reference: [[ ??? IANA Registry does not reference ]] o Relation Name: glossary o Description: Refers to a glossary of terms. Nottingham Expires September 15, 2008 [Page 6] Internet-Draft HTTP Headerfield: Profile Applicable protocol: http Status: standard Author/change controller: IETF (iesg@ietf.org) Internet Engineering Task Force Specification document(s): [ this document ]Linking March 2008 o Reference: [W3C.REC-html401-19991224] o Relation Name: help o Description: Refers to a resource offering help (more information, links to other sources information, etc.) o Reference: [W3C.REC-html401-19991224] o Relation Name: index o Description: Refers to an index. o Reference: [W3C.REC-html401-19991224] o Relation Name: last o Description: [[ ??? IANA Registry does not reference ]] o Reference: [[ ??? IANA Registry does not reference ]] o Relation Name: license o Description: Refers to a license associated with the link's context. o Reference: [RFC4946] o Relation Name: next o Description: Refers to the next resource in a ordered series of resources. o Reference: [W3C.REC-html401-19991224] o Relation Name: next-archive o Description: Refers to the immediately following archive resource. o Reference: [RFC5005] o Relation Name: payment o Description: [[ ??? IANA Registry does not reference ]] o Reference: [[ ??? IANA Registry does not reference ]] o Relation Name: prev o Description: Refers to the previous resource in an ordered series of resources. Synonym for "previous". o Reference: [W3C.REC-html401-19991224] o Relation Name: previous o Description: Refers to the previous resource in an ordered series of resources. Synonym for "prev". o Reference: [W3C.REC-html401-19991224] o Relation Name: prev-archive o Description: Refers to the immediately preceding archive resource. o Reference: [RFC5005] Nottingham Expires September 15, 2008 [Page 7] Internet-Draft HTTP Headerfield: Link-Template Applicable protocol: http Status: standard Author/change controller: IETF (iesg@ietf.org) Internet Engineering Task Force Specification document(s): [ this document ] 7.Linking March 2008 o Relation Name: related o Description: Identifies a related resource. o Reference: [RFC4287] o Relation Name: replies o Description: Identifies a resource that is a reply to the context of the link. o Reference: [RFC4685] o Relation Name: section o Description: Refers to a section in a collection of resources. o Reference: [W3C.REC-html401-19991224] o Relation Name: self o Description: Conveys an identifier for the link's context. o Reference: [RFC4287] o Relation Name: start o Description: Refers to the first resource in a collection of resources. o Reference: [W3C.REC-html401-19991224] o Relation Name: stylesheet o Description: Refers to an external style sheet. o Reference: [W3C.REC-html401-19991224] o Relation Name: subsection o Description: Refers to a resource serving as a subsection in a collection of resources. o Reference: [W3C.REC-html401-19991224] o Relation Name: via o Description: Identifies a resource that is the source of the information in the link's context. o Reference: [RFC4287] 5. Security Considerations The contentof boththe Linkand Profileheadersareis not secure, private orintegrity-guaranteed,integrity- guaranteed, and due caution should be excercised when usingthem.it. Applications that take advantage of thesemechanisms should consider the attack vectors opened by automatically following, trusting, or otherwise using links gathered from HTTP headers.mechanisms should consider the attack vectors opened by automatically following, trusting, or otherwise using links gathered from HTTP headers. 6. References Nottingham Expires September 15, 2008 [Page 8] Internet-Draft HTTP Header Linking March 2008 6.1. Normative References [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, March 1997. [RFC2434] Narten, T. and H. Alvestrand, "Guidelines for Writing an IANA Considerations Section in RFCs", BCP 26, RFC 2434, October 1998. [RFC2616] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext Transfer Protocol -- HTTP/1.1", RFC 2616, June 1999. [RFC3864] Klyne, G., Nottingham, M., and J. Mogul, "Registration Procedures for Message Header Fields", BCP 90, RFC 3864, September 2004. [RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform Resource Identifier (URI): Generic Syntax", STD 66, RFC 3986, January 2005. 6.2. Informative References [RFC2068] Fielding, R., Gettys, J., Mogul, J., Nielsen, H., and T. Berners-Lee, "Hypertext Transfer Protocol -- HTTP/1.1", RFC 2068, January 1997. [RFC4287] Nottingham, M. and R. Sayre, "The Atom Syndication Format", RFC 4287, December 2005. [RFC4685] Snell, J., "Atom Threading Extensions", RFC 4685, September 2006. [RFC4946] Snell, J., "Atom License Extension", RFC 4946, July 2007. [RFC5005] Nottingham, M., "Feed Paging and Archiving", RFC 5005, September 2007. [RFC5023] Gregorio, J. and B. de hOra, "The Atom Publishing Protocol", RFC 5023, October 2007. [W3C.REC-html401-19991224] Raggett, D., Hors, A., and I. Jacobs, "HTML 4.01 Specification", W3C REC REC-html401-19991224, December 1999. [W3C.REC-xlink-20010627] DeRose, S., Maler, E., and D. Orchard, "XML Linking Nottingham Expires September 15, 2008 [Page 9] Internet-Draft HTTP Header Linking March 2008 Language (XLink) Version 1.0", W3C REC REC-xlink-20010627, June 2001. Appendix A. Notes on HTML Links HTML motivated the original syntax of the Link header, and many of the design decisions in this document are driven by a desire to stay compatible with these uses. All of the link relations defined by HTML4 have been included in the link relation registry, so they can be used without modification. However, extension link relations work differently in HTML4 and the Link header; the former uses a document-wide "profile" URI to scope the relations, while the latter allows the use of full URIs on individual relations. Therefore, when using the profile mechanism in HTML4, it is necessary to map the profiled link relations to URIs. For example, in HTML: <html> <head profile="http://example.com/profile1/"> <link rel="foo" href="/foo"> </head> [...] could be represented as a header like this; Link: </foo>; rel="http://example.com/profile1/foo" Furthermore, the registry defines link relations that are not part of HTML4. When such relations are used, the absolute URI form should be used; e.g., Link: </head>; rel="http://www.iana.org/assignments/link-relations.html#current" HTML defines link relation values as case-insensitive, while the Link header's syntax does not. Therefore, it is important to case- normalise relation values in HTML before comparing or converting them to Link headers. HTML also defines several attributes on links that are not explicitly defined by the Link header. Although most of these are believed to be defunct, they can be used as link-extensions. Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page6]10] Internet-Draft HTTP Header LinkingJune 2006 8. References 8.1. Normative References [RFC2119] Bradner, S., "Key words for useMarch 2008 Appendix B. Notes on Atom Links Atom conveys links inRFCsthe atom:link element. When serialising an atom:link into a Link header, it is necessary toIndicate Requirement Levels", BCP 14, RFC 2119, March 1997. [RFC2616] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L., Leach, P., and T. Berners-Lee, "Hypertext Transfer Protocol -- HTTP/1.1", RFC 2616, June 1999. [RFC3864] Klyne, G., Nottingham, M., and J. Mogul, "Registration Proceduresconvert any IRIs to URIs, since HTTP headers cannot directly contain UTF-8. Additionally, since the base URI forMessage Header Fields", BCP 90, RFC 3864, September 2004. [RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform Resource Identifier (URI): Generic Syntax", STD 66, RFC 3986, January 2005. [W3C.REC-html401-19991224] Raggett, D., Hors, A., and I. Jacobs, "HTML 4.01 Specification", W3C REC REC-html401-19991224, December 1999. 8.2. Informative References [RFC2068] Fielding, R., Gettys, J., Mogul, J., Nielsen, H., and T. Berners-Lee, "Hypertext Transfer Protocol -- HTTP/1.1", RFC 2068, January 1997.link relations in Link headers is fixed, extension links (i.e,. those not in the registry) MUST be serialised as absolute URIs. Note also that while the Link header allows multiple relations to be associated with a single link, atom:link does not. In this case, a single Link header may map to several atom:link elements. As with HTML, atom:link defines some attributes that are not explicitly mirrored in the Link header syntax, but they may also be used as link-extensions. AppendixA.C. Acknowledgements This specification lifts the definition of the Link header from RFC2068; credit forit belongs entirely to the authors of and contributors to that document. The semantics and much of the syntax of the Profile header was defined by HTML 4.01; credit for themit belongs entirely to the authors of and contributors to that document.Joe Gregorio, Marc Hadley and David Orchard contributed toThe link relation registrations themselves are sourced from several documents; see thedesignapplicable references. Appendix D. Document history -01 o Changed syntax ofthelink-relation to one or more URI; dropped Profile. o Dropped anchor parameter; can still be an extension. o Removed Link-Templatemechanism.header; can be specified by templates spec or elsewhere. o Straw-man for link relation registry. -00 o Initial draft; normative text lifted from RFC2068. Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page7]11] Internet-Draft HTTP Header LinkingJune 2006March 2008 Author's Address Mark Nottingham Email:mnot@pobox.commnot@mnot.net URI: http://www.mnot.net/ Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page8]12] Internet-Draft HTTP Header LinkingJune 2006March 2008 Full Copyright Statement Copyright (C) The IETF Trust (2008). This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights. This document and the information contained herein are provided on an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Intellectual PropertyStatementThe IETF takes no position regarding the validity or scope of any Intellectual Property Rights or other rights that might be claimed to pertain to the implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available; nor does it represent that it has made any independent effort to identify any such rights. Information on the procedures with respect to rights in RFC documents can be found in BCP 78 and BCP 79. Copies of IPR disclosures made to the IETF Secretariat and any assurances of licenses to be made available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementers or users of this specification can be obtained from the IETF on-line IPR repository at http://www.ietf.org/ipr. The IETF invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights that may cover technology that may be required to implement this standard. Please address the information to the IETF at ietf-ipr@ietf.org.Disclaimer of Validity This document and the information contained herein are provided on an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Copyright Statement Copyright (C) The Internet Society (2006). This document is subject to the rights, licenses and restrictions contained in BCP 78, and except as set forth therein, the authors retain all their rights.Acknowledgment Funding for the RFC Editor function iscurrentlyprovided by theInternet Society.IETF Administrative Support Activity (IASA). Nottingham ExpiresDecember 18, 2006September 15, 2008 [Page9]13] ----