aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/idbobjectstore/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/idbobjectstore/index.html')
-rw-r--r--files/fr/web/api/idbobjectstore/index.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/files/fr/web/api/idbobjectstore/index.html b/files/fr/web/api/idbobjectstore/index.html
index 7a83d69130..2f048f7b9e 100644
--- a/files/fr/web/api/idbobjectstore/index.html
+++ b/files/fr/web/api/idbobjectstore/index.html
@@ -17,7 +17,7 @@ translation_of: Web/API/IDBObjectStore
<dl>
<dt>{{domxref("IDBObjectStore.add()")}}</dt>
- <dd>Une {{domxref("IDBRequest","requête")}} pour ajouter un enregistrement au magasin d'objet relié, un <a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#structured-clone">clone structuré</a> de la valeur passé en paramètre et sa clé .</dd>
+ <dd>Une {{domxref("IDBRequest","requête")}} pour ajouter un enregistrement au magasin d'objet relié, un <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#structured-clone">clone structuré</a> de la valeur passé en paramètre et sa clé .</dd>
<dt>{{domxref("IDBObjectStore.clear()")}}</dt>
<dd>Une {{domxref("IDBRequest","requête")}} pour vider le magasin d'objet relié.</dd>
<dt>{{domxref("IDBObjectStore.delete()")}}</dt>
@@ -35,7 +35,7 @@ translation_of: Web/API/IDBObjectStore
<dt>{{domxref("IDBObjectStore.index()")}}</dt>
<dd>L'{{domxref("IDBIndex","accès")}} à l'index dont le nom est passé en paramètre du magasin d'objet relié.</dd>
<dt>{{domxref("IDBObjectStore.put()")}}</dt>
- <dd>Une {{domxref("IDBRequest","requête")}} pour ajouter ou mettre à jour un enregistrement du magasin d'objet relié, un <a class="external" href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#structured-clone">clone structuré</a> de la valeur passée en paramètre et sa clé.</dd>
+ <dd>Une {{domxref("IDBRequest","requête")}} pour ajouter ou mettre à jour un enregistrement du magasin d'objet relié, un <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#structured-clone">clone structuré</a> de la valeur passée en paramètre et sa clé.</dd>
<dt>{{domxref("IDBObjectStore.openCursor()")}}</dt>
<dd>Une {{domxref("IDBRequest","requête")}} récursive suivant un {{domxref("IDBCursorWithValue","curseur avec valeur")}} qui itère le magasin d'objet relié.</dd>
<dt>{{domxref("IDBObjectStore.openKeyCursor()")}}</dt>
@@ -50,7 +50,7 @@ translation_of: Web/API/IDBObjectStore
<dt>{{domxref("IDBObjectStore.indexNames")}} {{readonlyInline}}</dt>
<dd>La liste des noms d'index du magasin d'objet relié.</dd>
<dt>{{domxref("IDBObjectStore.keyPath")}} {{readonlyInline}}</dt>
- <dd>Le <a href="https://developer.mozilla.org/fr/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB#gloss_keypath">nom de la clé</a> du magasin d'objets relié.</dd>
+ <dd>Le <a href="/fr/docs/Web/API/IndexedDB_API/Basic_Concepts_Behind_IndexedDB#gloss_keypath">nom de la clé</a> du magasin d'objets relié.</dd>
<dt>{{domxref("IDBObjectStore.name")}} {{readonlyInline}}</dt>
<dd>Le nom du magasin d'objet relié.</dd>
<dt>{{domxref("IDBObjectStore.transaction")}} {{readonlyInline}}</dt>
@@ -130,7 +130,9 @@ objectStoreRequest.onsuccess = function(event) {
note.innerHTML += '&lt;li&gt;L\'enregistrement à été ajouté au magasin d\'objet.&lt;/li&gt;';
}</pre>
-<p class="note">Pour un exemple de travail complet, voir notre <a href="https://github.com/mdn/to-do-notifications/">To-do Notifications</a> app (<a href="http://mdn.github.io/to-do-notifications/">view example live</a>).</p>
+<div class="note">
+ <p><strong>Note :</strong> Pour un exemple de travail complet, voir notre <a href="https://github.com/mdn/to-do-notifications/">To-do Notifications</a> app (<a href="http://mdn.github.io/to-do-notifications/">view example live</a>).</p>
+</div>
<h2 id="Spécifications">Spécifications</h2>
@@ -161,5 +163,5 @@ objectStoreRequest.onsuccess = function(event) {
<li>{{domxref("IDBTransaction","Utilisé les transactions")}}</li>
<li>{{domxref("IDBKeyRange","Définir l'intervalle des clés")}}</li>
<li>{{domxref("IDBCursor","Utiliser les curseur")}}</li>
- <li>Exemple de référence: <a class="external" href="https://github.com/mdn/to-do-notifications/tree/gh-pages">To-do Notifications</a> (<a class="external" href="http://mdn.github.io/to-do-notifications/">view example live</a>.)</li>
+ <li>Exemple de référence: <a href="https://github.com/mdn/to-do-notifications/tree/gh-pages">To-do Notifications</a> (<a href="http://mdn.github.io/to-do-notifications/">view example live</a>.)</li>
</ul>