Sha256: 05db3eaa7d780d61815192245f44588f1286cf9386ddf9011f5bf68df5db10dd

Contents?: true

Size: 1.49 KB

Versions: 15

Compression:

Stored size: 1.49 KB

Contents

# Core terminals available in uses of ABNF
ALPHA        ::=  [#x41-#x5A#x61-#x7A]   # A-Z | a-z

BIT          ::=  '0' | '1'

CHAR         ::=  [#x01-#x7F]
                       # any 7-bit US-ASCII character,
                       #  excluding NUL
CR           ::=  #x0D
                       # carriage return

CRLF         ::=  CR? LF
                       # Internet standard newline

CTL          ::=  [#x00-#x1F] | #x7F
                       # controls

DIGIT        ::=  [#x30-#x39]
                       # 0-9

DQUOTE       ::=  #x22
                       # " (Double Quote)

HEXDIG       ::=  DIGIT | [A-F] # [0-9A-F]

HTAB         ::=  #x09
                       # horizontal tab

LF           ::=  #x0A
                       # linefeed

LWSP         ::=  (WSP | CRLF WSP)*
                       # Use of this linear-white-space rule
                       #  permits lines containing only white
                       #  space that are no longer legal in
                       #  mail headers and have caused
                       #  interoperability problems in other
                       #  contexts.
                       # Do not use when defining mail
                       #  headers and use with caution in
                       #  other contexts.

OCTET        ::=  [#x00-#xFF]
                       # 8 bits of data

SP           ::=  #x20

VCHAR        ::=  [#x21-#x7E]
                       # visible (printing) characters

WSP          ::=  SP | HTAB
                       # white space

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ebnf-2.6.0 etc/abnf-core.ebnf
ebnf-2.5.0 etc/abnf-core.ebnf
ebnf-2.4.0 etc/abnf-core.ebnf
ebnf-2.3.5 etc/abnf-core.ebnf
ebnf-2.3.4 etc/abnf-core.ebnf
ebnf-2.3.3 etc/abnf-core.ebnf
ebnf-2.3.2 etc/abnf-core.ebnf
ebnf-2.3.1 etc/abnf-core.ebnf
ebnf-2.3.0 etc/abnf-core.ebnf
ebnf-2.2.1 etc/abnf-core.ebnf
ebnf-2.2.0 etc/abnf-core.ebnf
ebnf-2.1.3 etc/abnf-core.ebnf
ebnf-2.1.2 etc/abnf-core.ebnf
ebnf-2.1.1 etc/abnf-core.ebnf
ebnf-2.1.0 etc/abnf-core.ebnf