aboutsummaryrefslogtreecommitdiff
path: root/files/fr/glossaire/origine/index.html
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
commit39f2114f9797eb51994966c6bb8ff1814c9a4da8 (patch)
tree66dbd9c921f56e440f8816ed29ac23682a1ac4ef /files/fr/glossaire/origine/index.html
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.gz
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.bz2
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.zip
unslug fr: move
Diffstat (limited to 'files/fr/glossaire/origine/index.html')
-rw-r--r--files/fr/glossaire/origine/index.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/files/fr/glossaire/origine/index.html b/files/fr/glossaire/origine/index.html
deleted file mode 100644
index 751adb267d..0000000000
--- a/files/fr/glossaire/origine/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: Origine
-slug: Glossaire/Origine
-tags:
- - Glossaire
- - Mécanismes web
- - origine
-translation_of: Glossary/Origin
----
-<h2 id="Résumé">Résumé</h2>
-
-<p>L'<strong>origine</strong> d'une application web est définie par le schéma (protocole), l'hôte (domaine) et le port de l'{{Glossary("URL")}} utilisée pour y accéder. Deux objets ont la même origine seulement quand le schéma, l'hôte et le port correspondent.</p>
-
-<p>Quelques opérations sont limitées au contenu de même origine, et cette restriction peut être levée avec <a href="https://developer.mozilla.org/fr/docs/Glossaire/CORS">CORS</a>.</p>
-
-<h2 id="Exemples_de_même_origine">Exemples de même origine</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%;">même origine parce que même schéma (<code>http</code>) et même hôte (<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%;">même origine parce que un serveur <span class="short_text" id="result_box" lang="fr"><span>délivre du contenu HTTP via le port 80 par défaut</span></span></td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Exemples_d'origines_différentes">Exemples d'origines différentes</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>Schémas différents</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%;">Hôtes différents</td>
- </tr>
- <tr>
- <td style="width: 50%;"><code>http://example.com</code><br>
- <code>http://example.com:8080</code></td>
- <td style="width: 50%;">Ports différents</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Pour_en_savoir_plus">Pour en savoir plus</h2>
-
-<p>Voir <a href="https://developer.mozilla.org/fr/docs/Web/JavaScript/Same_origin_policy_for_JavaScript" title="/en-US/docs/Web/JavaScript/Same_origin_policy_for_JavaScript">Same-origin policy</a> <em>(politique de même origine)</em> pour plus d'informations.</p>