000211-3 |
The RFC822 date format will in the future be changed in the following ways:
Specify in ABNF format the new format for the "Date:" header. |
|
Answer |
date = "Date:" CWSP date-time
date-time = [ day ", " ] date " " time ; dd mm yy
; hh:mm:ss zzz
day = "Mon" / "Tue" / "Wed" / "Thu"
/ "Fri" / "Sat" / "Sun"
date = 1*2DIGIT " " month " " 4DIGIT ; day month year
; e.g. 20 Jun 1982
month = "Jan" / "Feb" / "Mar" / "Apr"
/ "May" / "Jun" / "Jul" / "Aug"
/ "Sep" / "Oct" / "Nov" / "Dec"
time = hour zone
hour = 2DIGIT ":" 2DIGIT [":" 2DIGIT]
; 00:00:00 - 23:59:59
zone = ("+" / "-") 4DIGIT ; Local differential
; hours+min. (HHMM)
|
|