aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/http/headers/allow/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/web/http/headers/allow/index.html')
-rw-r--r--files/pt-pt/web/http/headers/allow/index.html67
1 files changed, 0 insertions, 67 deletions
diff --git a/files/pt-pt/web/http/headers/allow/index.html b/files/pt-pt/web/http/headers/allow/index.html
deleted file mode 100644
index 8582cb58f4..0000000000
--- a/files/pt-pt/web/http/headers/allow/index.html
+++ /dev/null
@@ -1,67 +0,0 @@
----
-title: Allow
-slug: Web/HTTP/Headers/Allow
-tags:
- - Cabeçalho de Entidade
- - Cabeçalho de HTTP
- - HTTP
- - Referencia
- - cabeçalho
-translation_of: Web/HTTP/Headers/Allow
----
-<div>{{HTTPSidebar}}</div>
-
-<p>O cabeçalho <code><strong>Allow</strong></code> lista os métodos que um recurso suporta.</p>
-
-<p>Este cabeçalho deve ser enviado se o servidor responder com um código de estado {{HTTPStatus("405")}} <code>Method Not Allowed</code> para indicar que métodos de pedido podem ser utilizados. Um cabeçalho <code>Allowed</code> vazio indica que o recurso não permite métodos de pedido, que podem ocorrer temporariamente para um dado recurso, por exemplo.</p>
-
-<table class="properties">
- <tbody>
- <tr>
- <th scope="row">Categoria de cabeçalho</th>
- <td>{{Glossary("Entity 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 notranslate">Allow: &lt;métodos-de-http&gt;
-</pre>
-
-<h2 id="Diretivos">Diretivos</h2>
-
-<dl>
- <dt>&lt;métodos-de-http&gt;</dt>
- <dd>Uma lista de <a href="/en-US/docs/Web/HTTP/Methods">métodos de pedido HTTP</a> permitidos separados por vírgulas.</dd>
-</dl>
-
-<h2 id="Exemplos">Exemplos</h2>
-
-<pre class="notranslate">Allow: GET, POST, HEAD</pre>
-
-<h2 id="Especificações">Especificações</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Especificação</th>
- <th scope="col">Titulo</th>
- </tr>
- <tr>
- <td>{{RFC("7231", "Allow", "7.4.1")}}</td>
- <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Ver_também">Ver também</h2>
-
-<ul>
- <li>{{HTTPStatus("405")}}</li>
- <li>{{HTTPHeader("Server")}}</li>
-</ul>