Changeset 425 for draft-ietf-httpbis/latest/p7-auth.xml
- Timestamp:
- 21/11/08 20:25:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
draft-ietf-httpbis/latest/p7-auth.xml
r424 r425 241 241 242 242 <section title="Syntax Notation" anchor="notation"> 243 <x:anchor-alias value="ALPHA"/> 244 <x:anchor-alias value="CR"/> 245 <x:anchor-alias value="DIGIT"/> 246 <x:anchor-alias value="LF"/> 247 <x:anchor-alias value="OCTET"/> 248 <x:anchor-alias value="VCHAR"/> 249 <x:anchor-alias value="WSP"/> 243 250 <t> 244 251 This specification uses the ABNF syntax defined in ¬ation;. 252 The following core rules are included by 253 reference, as defined in <xref target="RFC5234" x:fmt="," x:sec="B.1"/>: 254 ALPHA (letters), CR (carriage return), CRLF (CR LF), CTL (controls), 255 DIGIT (decimal 0-9), DQUOTE (double quote), 256 HEXDIG (hexadecimal 0-9/A-F/a-f), LF (line feed), 257 OCTET (any 8-bit sequence of data), SP (space), 258 VCHAR (any visible USASCII character), 259 and WSP (whitespace). 245 260 </t> 246 261 … … 693 708 </reference> 694 709 710 <reference anchor="RFC5234"> 711 <front> 712 <title abbrev="ABNF for Syntax Specifications">Augmented BNF for Syntax Specifications: ABNF</title> 713 <author initials="D." surname="Crocker" fullname="Dave Crocker" role="editor"> 714 <organization>Brandenburg InternetWorking</organization> 715 <address> 716 <postal> 717 <street>675 Spruce Dr.</street> 718 <city>Sunnyvale</city> 719 <region>CA</region> 720 <code>94086</code> 721 <country>US</country></postal> 722 <phone>+1.408.246.8253</phone> 723 <email>dcrocker@bbiw.net</email></address> 724 </author> 725 <author initials="P." surname="Overell" fullname="Paul Overell"> 726 <organization>THUS plc.</organization> 727 <address> 728 <postal> 729 <street>1/2 Berkeley Square</street> 730 <street>99 Berkely Street</street> 731 <city>Glasgow</city> 732 <code>G3 7HR</code> 733 <country>UK</country></postal> 734 <email>paul.overell@thus.net</email></address> 735 </author> 736 <date month="January" year="2008"/> 737 </front> 738 <seriesInfo name="STD" value="68"/> 739 <seriesInfo name="RFC" value="5234"/> 740 </reference> 741 695 742 </references> 696 743 … … 766 813 <section title="Collected ABNF" anchor="collected.abnf"> 767 814 <figure> 768 <artwork type="abnf" name="p7-auth.parsed-abnf">Authorization = "Authorization:" OWS Authorization-v
 769 Authorization-v = credentials
 770 OWS = <OWS, defined in [Part1], Section 1.2.2>
 771 Proxy-Authenticate = "Proxy-Authenticate:" OWS Proxy-Authenticate-v
 772 Proxy-Authenticate-v = *( "," OWS ) challenge *( OWS "," [ OWS
 773 challenge ] )
 774 Proxy-Authorization = "Proxy-Authorization:" OWS
 775 Proxy-Authorization-v
 776 Proxy-Authorization-v = credentials
 777 WWW-Authenticate = "WWW-Authenticate:" OWS WWW-Authenticate-v
 778 WWW-Authenticate-v = *( "," OWS ) challenge *( OWS "," [ OWS
 779 challenge ] )
 780 challenge = <challenge, defined in [RFC2617], Section 1.2>
 781 credentials = <credentials, defined in [RFC2617], Section 1.2>
 782 ; Authorization defined but not used
 783 ; Proxy-Authenticate defined but not used
 784 ; Proxy-Authorization defined but not used
 785 ; WWW-Authenticate defined but not used
 815 <artwork type="abnf" name="p7-auth.parsed-abnf"> 816 Authorization = "Authorization:" OWS Authorization-v 817 Authorization-v = credentials 818 OWS = <OWS, defined in [Part1], Section 1.2.2> 819 Proxy-Authenticate = "Proxy-Authenticate:" OWS Proxy-Authenticate-v 820 Proxy-Authenticate-v = *( "," OWS ) challenge *( OWS "," [ OWS 821 challenge ] ) 822 Proxy-Authorization = "Proxy-Authorization:" OWS 823 Proxy-Authorization-v 824 Proxy-Authorization-v = credentials 825 WWW-Authenticate = "WWW-Authenticate:" OWS WWW-Authenticate-v 826 WWW-Authenticate-v = *( "," OWS ) challenge *( OWS "," [ OWS 827 challenge ] ) 828 challenge = <challenge, defined in [RFC2617], Section 1.2> 829 credentials = <credentials, defined in [RFC2617], Section 1.2> 830 ; Authorization defined but not used 831 ; Proxy-Authenticate defined but not used 832 ; Proxy-Authorization defined but not used 833 ; WWW-Authenticate defined but not used 786 834 </artwork> 787 835 </figure>
Note: See TracChangeset
for help on using the changeset viewer.