diff options
Diffstat (limited to 'files/pt-br/web/http/status/451/index.html')
-rw-r--r-- | files/pt-br/web/http/status/451/index.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/files/pt-br/web/http/status/451/index.html b/files/pt-br/web/http/status/451/index.html new file mode 100644 index 0000000000..759d6544a7 --- /dev/null +++ b/files/pt-br/web/http/status/451/index.html @@ -0,0 +1,65 @@ +--- +title: 451 Unavailable For Legal Reasons +slug: Web/HTTP/Status/451 +translation_of: Web/HTTP/Status/451 +--- +<p>{{HTTPSidebar}}</p> + +<p>O código de erro HTTP para o cliente <code><strong>451 Unavailable For Legal Reasons</strong></code> indica que o recurso solicitado pelo usuário não está disponível por motivos legais, como em uma página web para a qual foi emitida uma ação legal.</p> + +<h2 id="Status">Status</h2> + +<pre class="syntaxbox">451 Unavailable For Legal Reasons</pre> + +<h2 id="Exemplo">Exemplo</h2> + +<p>Este exemplo de resposta foi obtida da RFC do IETF (veja abaixo) e contém uma referência à {{interwiki("wikipedia", "Monty_Python's_Life_of_Brian", "Monty Python's Life of Brian")}}.</p> + +<p><strong>Nota:</strong> o cabeçalho {{HTTPHeader("Link")}} também pode conter uma relação <code>rel="blocked-by"</code> identificando a entidade que solicitou o bloqueio, e não qualquer outra entidade.</p> + +<p>Qualquer identificação da entidade responsável pela não disponibilidade do recurso, como o nome da pessoa ou organização que demandou a ação legal que resultou na remoção do conteúdo, deve estar no corpo da resposta, não no link <code>rel="blocked-by"</code>.</p> + +<pre>HTTP/1.1 451 Unavailable For Legal Reasons +Link: <https://spqr.example.org/legislatione>; rel="blocked-by" +Content-Type: text/html</pre> + +<pre><html> + <head><title>Unavailable For Legal Reasons</title></head> + <body> + <h1>Unavailable For Legal Reasons</h1> + <p>This request may not be serviced in the Roman Province + of Judea due to the Lex Julia Majestatis, which disallows + access to resources hosted on servers deemed to be + operated by the People's Front of Judea.</p> + </body> +</html></pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Epecificação</th> + <th scope="col">Título</th> + </tr> + <tr> + <td>{{RFC("7725", "451 Unavailable For Legal Reasons")}}</td> + <td>An HTTP Status Code to Report Legal Obstacles</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_de_navegadores">Compatibilidade de navegadores</h2> + +<p>A informação mostrada abaixo está sendo servida do MDN's GitHub (<a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>).</p> + +<p class="hidden">A tabela de compatibilidade nesta página é gerada por dados estruturados. Se você gostaria de contribuir com estes dados, por favor vá a <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> e envie-nos um <em lang="en">pull request</em>.</p> + +<p>{{Compat("http.status.451")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{interwiki("wikipedia", "HTTP_451", "Wikipedia: HTTP 451")}}</li> + <li>{{interwiki("wikipedia", "Fahrenheit_451", "Wikipedia: Fahrenheit 451")}} (which gave this status code its number)</li> +</ul> |