From 426f3df9aaf6d4788567da2f7ca17ce14cb56b38 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Wed, 20 Sep 2023 01:07:59 +0700 Subject: _doc: add partial note and summary for RFC 2183 The RFC 2183 is define Content-Disposition header field in the internet message. --- _doc/RFC_2183__CONTENT-DISPOSITION.adoc | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 _doc/RFC_2183__CONTENT-DISPOSITION.adoc diff --git a/_doc/RFC_2183__CONTENT-DISPOSITION.adoc b/_doc/RFC_2183__CONTENT-DISPOSITION.adoc new file mode 100644 index 00000000..8c6c13d1 --- /dev/null +++ b/_doc/RFC_2183__CONTENT-DISPOSITION.adoc @@ -0,0 +1,44 @@ += The Content-Disposition Header Field +:toc: +:sectlinks: +:sectnums: +:url-rfc2183: https://tools.ietf.org/html/rfc2183 + +This document provide note and summary of +{url-rfc2183}[RFC 2183^], Communicating Presentation Information in Internet +Messages: The Content-Disposition Header Field. + + +== Syntax + +---- +disposition := "Content-Disposition" ":" + disposition-type + *(";" disposition-parm) + +disposition-type := "inline" + / "attachment" + / extension-token + ; values are not case-sensitive + +disposition-parm := filename-parm + / creation-date-parm + / modification-date-parm + / read-date-parm + / size-parm + / parameter + +filename-parm := "filename" "=" value + +creation-date-parm := "creation-date" "=" quoted-date-time + +modification-date-parm := "modification-date" "=" quoted-date-time + +read-date-parm := "read-date" "=" quoted-date-time + +size-parm := "size" "=" 1*DIGIT + +quoted-date-time := quoted-string + ; contents MUST be an RFC 822 `date-time' + ; numeric timezones (+HHMM or -HHMM) MUST be used +---- -- cgit v1.3