aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/glossario/origem
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:49:58 +0100
commit68fc8e96a9629e73469ed457abd955e548ec670c (patch)
tree8529ab9fe63d011f23c7f22ab5a4a1c5563fcaa4 /files/pt-br/glossario/origem
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.gz
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.bz2
translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.zip
unslug pt-br: move
Diffstat (limited to 'files/pt-br/glossario/origem')
-rw-r--r--files/pt-br/glossario/origem/index.html83
1 files changed, 0 insertions, 83 deletions
diff --git a/files/pt-br/glossario/origem/index.html b/files/pt-br/glossario/origem/index.html
deleted file mode 100644
index f1aae2640b..0000000000
--- a/files/pt-br/glossario/origem/index.html
+++ /dev/null
@@ -1,83 +0,0 @@
----
-title: Origem
-slug: Glossario/Origem
-tags:
- - Glossary
- - Glossário
- - Origem
- - Security
- - Segurança
- - WebMechanics
- - origin
-translation_of: Glossary/Origin
----
-<p>O conteúdo de <strong>origem</strong> é definido pelo <em>esquema</em> (protocolo), <em>host</em> (domínio), e <em>porta</em> da {{Glossary("URL")}} usada para acessá-lo. Dois objetos tem a mesma origem somente quando o esquema, host, e porta batem.</p>
-
-<p>Algumas operações são restritas para conteúdos de mesma origem, e essa restrição pode ser ultrapassada usando {{Glossary("CORS")}}.</p>
-
-<h2 id="Exemplos_de_mesma_origem">Exemplos de mesma origem</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <td style="width: 50%;"><code>http://example.com/app1/index.html</code><br>
- <code>http://example.com/app2/index.html</code></td>
- <td style="width: 50%;">Mesma origem pois possuem o mesmo esquema (<code>http</code>) e mesmo host (<code>example.com</code>)</td>
- </tr>
- <tr>
- <td style="width: 50%;"><code>http://Example.com:80</code><br>
- <code>http://example.com</code></td>
- <td style="width: 50%;">Mesma origem pois o servidor entrega conteúdo HTTP através da porta 80 por padrão.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Exemplos_de_origens_diferentes">Exemplos de origens diferentes</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <td style="width: 50%;"><code>http://example.com/app1</code><br>
- <code>https://example.com/app2</code></td>
- <td>Esquemas diferentes</td>
- </tr>
- <tr>
- <td style="width: 50%;"><code>http://example.com</code><br>
- <code>http://www.example.com</code><br>
- <code>http://myapp.example.com</code></td>
- <td style="width: 50%;">Hosts diferentes</td>
- </tr>
- <tr>
- <td style="width: 50%;"><code>http://example.com</code><br>
- <code>http://example.com:8080</code></td>
- <td style="width: 50%;">Portas diferentes</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Especificações">Especificações</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Especificação</th>
- <th scope="col">Status</th>
- <th scope="col">Comentário</th>
- </tr>
- </thead>
- <thead>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#origin', 'origin')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Aprenda_mais">Aprenda mais</h2>
-
-<p>Veja <a href="/en-US/docs/Web/Security/Same-origin_policy">Same-origin policy</a> para mais informações.</p>
-
-<div>{{QuickLinksWithSubpages("/en-US/docs/Glossary")}}</div>