aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/http/headers/date
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/http/headers/date
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/fr/web/http/headers/date')
-rw-r--r--files/fr/web/http/headers/date/index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/files/fr/web/http/headers/date/index.html b/files/fr/web/http/headers/date/index.html
new file mode 100644
index 0000000000..bf36cecb69
--- /dev/null
+++ b/files/fr/web/http/headers/date/index.html
@@ -0,0 +1,78 @@
+---
+title: Date
+slug: Web/HTTP/Headers/Date
+translation_of: Web/HTTP/Headers/Date
+---
+<div>{{HTTPSidebar}}</div>
+
+<p>L'en-tête général HTTP <strong><code>Date</code></strong> contient la date et l'heure d'origine du message.</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">Type d'en-tête</th>
+ <td>{{Glossary("General header")}}</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("Forbidden header name ")}}</th>
+ <td>oui</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Syntaxe">Syntaxe</h2>
+
+<pre class="syntaxbox">Date: &lt;day-name&gt;, &lt;jour&gt; &lt;mois&gt; &lt;année&gt; &lt;heure&gt;:&lt;minute&gt;:&lt;seconde&gt; GMT
+</pre>
+
+<h2 id="Directives">Directives</h2>
+
+<dl>
+ <dt>&lt;day-name&gt;</dt>
+ <dd>L'un des mots "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ou "Sun" (sensible à la casse).</dd>
+ <dt>&lt;day&gt;</dt>
+ <dd>Numéro de jour à 2 chiffres, par ex. "04" ou "23".</dd>
+ <dt>&lt; month&gt;</dt>
+ <dd>L'un des mots "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" (sensible à la casse).</dd>
+ <dt>&lt; year&gt;</dt>
+ <dd>Numéro d'année à 4 chiffres, par exemple "1990" ou "2018".</dd>
+ <dt>&lt; hour&gt;</dt>
+ <dd>Numéro d'heure à 2 chiffres, par exemple "09" or "23".</dd>
+ <dt>&lt; minute&gt;</dt>
+ <dd>Numéro d'heure à 2 chiffres, par exemple "04" or "59".</dd>
+ <dt>&lt; second&gt;</dt>
+ <dd>Numéro de seconde à 2 chiffres, par exemple "04" or "59".</dd>
+ <dt>GMT</dt>
+ <dd>Temps sur le Méridien de Greenwich. Les dates HTTP sont toujours exprimées en GMT, jamais en heure locale.</dd>
+</dl>
+
+<h2 id="Exemples">Exemples</h2>
+
+<pre>Date: Wed, 21 Oct 2015 07:28:00 GMT</pre>
+
+<h2 id="Spécifications">Spécifications</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Spécifications</th>
+ <th scope="col">Titre</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "Date", "7.1.1.2")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1) : Sémantique et contenu</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+
+<p class="hidden">Le tableau de compatibilité de cette page est généré à partir de données structurées. Si vous souhaitez contribuer aux données, veuillez consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et nous envoyer une demande de retrait.</p>
+
+<p>{{Compat("http.headers.Date")}}</p>
+
+<h2 id="See_also">See also</h2>
+
+<ul>
+ <li>{{HTTPHeader("Age")}}</li>
+</ul>