diff options
Diffstat (limited to 'files/pt-br/web/http/headers/accept-ranges/index.html')
-rw-r--r-- | files/pt-br/web/http/headers/accept-ranges/index.html | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/files/pt-br/web/http/headers/accept-ranges/index.html b/files/pt-br/web/http/headers/accept-ranges/index.html new file mode 100644 index 0000000000..c066f11217 --- /dev/null +++ b/files/pt-br/web/http/headers/accept-ranges/index.html @@ -0,0 +1,84 @@ +--- +title: Accept-Ranges +slug: Web/HTTP/Headers/Accept-Ranges +tags: + - Cabeçalho HTTP + - Cabeçalho de Resposta + - HTTP + - HTTP Header + - Range Requests + - Reference + - Referencia + - Requisições de tamanho + - Response Header +translation_of: Web/HTTP/Headers/Accept-Ranges +--- +<div>{{HTTPSidebar}}</div> + +<p>O cabeçalho de resposta HTTP <code><strong>Accept-Ranges</strong></code> é um marcador usado pelo servidor para indicar que ele suporta requisições parciais. O valor deste campo indica a unidade utilizada para definir o tamanho.</p> + +<p>Na presença do cabeçalho <code>Accept-Ranges</code>, o navegador pode tentar retomar um <em>download</em> interrompido, ao invés de começar de novo do início.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Tipo de cabeçalho</th> + <td>{{Glossary("Response header")}}</td> + </tr> + <tr> + <th scope="row">{{Glossary("Forbidden header name")}}</th> + <td>não</td> + </tr> + </tbody> +</table> + +<h2 id="Sintaxe">Sintaxe</h2> + +<pre class="syntaxbox">Accept-Ranges: bytes +Accept-Ranges: none</pre> + +<h2 id="Diretivas">Diretivas</h2> + +<dl> + <dt><code>none</code></dt> + <dd>Nenhuma unidade de tamanho é suportada, isso faz com que o cabeçalho seja equivalente a sua própria ausência, sendo então raramente usado, apesar de que alguns navegadores, como o IE9, é usado para habilitar ou desabilitar os botões de pausa no gerenciador de downloads.</dd> + <dt><code>bytes</code></dt> + <dd> + <p>A unidade de tamanho são bytes.</p> + </dd> +</dl> + +<h2 id="Exemplos">Exemplos</h2> + +<pre>Accept-Ranges: bytes +</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Título</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{RFC("7233", "Accept-Ranges", "2.3")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Range Requests</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.Accept-Ranges")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPHeader("If-Range")}}</li> + <li>{{HTTPHeader("Range")}}</li> +</ul> |