diff options
Diffstat (limited to 'files/pt-br/web/http/headers/date/index.html')
-rw-r--r-- | files/pt-br/web/http/headers/date/index.html | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/files/pt-br/web/http/headers/date/index.html b/files/pt-br/web/http/headers/date/index.html new file mode 100644 index 0000000000..cd3991f402 --- /dev/null +++ b/files/pt-br/web/http/headers/date/index.html @@ -0,0 +1,105 @@ +--- +title: Date +slug: Web/HTTP/Headers/Date +tags: + - Cabeçalho Geral + - HTTP + - Referencia + - cabeçalho +translation_of: Web/HTTP/Headers/Date +--- +<div>{{HTTPSidebar}}</div> + +<p>O cabeçalho geral HTTP <strong><code>Date</code></strong> contém a data e a hora que a mensagem foi gerada.</p> + +<div class="blockIndicator warning"> +<p>Note que <code>Date</code> é listado em <a href="https://fetch.spec.whatwg.org/#forbidden-header-name" rel="nofollow noreferrer">nomes de cabeçalhos proibidos</a> na especificação do fetch - então este código não enviará o cabeçalho <code>Date</code>:</p> + +<pre class="brush: js notranslate">fetch('https://httpbin.org/get', { + 'headers': { + 'Date': (new Date()).toUTCString() + } +})</pre> +</div> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Tipo de cabeçalho</th> + <td>{{Glossary("General header")}}</td> + </tr> + <tr> + <th scope="row">{{Glossary("Forbidden header name")}}</th> + <td>sim</td> + </tr> + </tbody> +</table> + +<h2 id="Sintaxe">Sintaxe</h2> + +<pre class="syntaxbox notranslate">Date: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT +</pre> + +<h2 id="Diretivas">Diretivas</h2> + +<dl> + <dt><day-name></dt> + <dd>Dia da semana, um de "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", ou "Sun" (sensível a capitalização). Segunda-feira até domingo em ordem.</dd> + <dt><day></dt> + <dd>Um dia em número de 2 dígitos, e.g. "04" ou "23".</dd> + <dt><month></dt> + <dd>Um de "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" (sensível a capitalização). Os meses em ordem de Janeiro a Dezembro.</dd> + <dt><year></dt> + <dd>Um ano em número de 4 dígitos, e.g. "1990" ou "2016".</dd> + <dt><hour></dt> + <dd>Uma hora em número de 2 dígitos, e.g. "09" ou "23".</dd> + <dt><minute></dt> + <dd>Minutos em número de 2 dígitos, e.g. "04" ou "59".</dd> + <dt><second></dt> + <dd>Segundos em número de 2 dígitos, e.g. "04" ou "59".</dd> + <dt>GMT</dt> + <dd> + <p>Meridiano de Greenwich. Datas HTTP são sempre expressadas em GMT, nunca em tempo local.</p> + </dd> +</dl> + +<h2 id="Exemplos">Exemplos</h2> + +<pre class="notranslate">Date: Wed, 21 Oct 2015 07:28:00 GMT +</pre> + +<pre class="brush: js notranslate">new Date().toUTCString() +// "Mon, 09 Mar 2020 08:13:24 GMT"</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col"> + <div class="twocolumns"> + <p>Título</p> + </div> + </th> + </tr> + </thead> + <tbody> + <tr> + <td>{{RFC("7231", "Date", "7.1.1.2")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2> + +<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> + +<p>{{Compat("http.headers.Date")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPHeader("Age")}}</li> +</ul> |