diff options
Diffstat (limited to 'files/fr/web/api/idbkeyrange')
| -rw-r--r-- | files/fr/web/api/idbkeyrange/bound/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/index.html | 6 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/lower/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/lowerbound/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/loweropen/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/only/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/upper/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/upperbound/index.html | 4 | ||||
| -rw-r--r-- | files/fr/web/api/idbkeyrange/upperopen/index.html | 6 |
9 files changed, 20 insertions, 20 deletions
diff --git a/files/fr/web/api/idbkeyrange/bound/index.html b/files/fr/web/api/idbkeyrange/bound/index.html index 487ce2897d..e235d21a8c 100644 --- a/files/fr/web/api/idbkeyrange/bound/index.html +++ b/files/fr/web/api/idbkeyrange/bound/index.html @@ -76,7 +76,7 @@ translation_of: Web/API/IDBKeyRange/bound };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécification">Spécification</h2> @@ -111,5 +111,5 @@ translation_of: Web/API/IDBKeyRange/bound <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/index.html b/files/fr/web/api/idbkeyrange/index.html index 9a92d00cca..9962a1488a 100644 --- a/files/fr/web/api/idbkeyrange/index.html +++ b/files/fr/web/api/idbkeyrange/index.html @@ -130,7 +130,7 @@ translation_of: Web/API/IDBKeyRange <p>Dans l'exemple qui suit, on montre comment utiliser un intervalle de clé. Ici, on déclare un objet <code>keyRangeValue</code> qui représente un intervalle pour les valeurs entre "A" et "F". On ouvre une transaction grâce à {{domxref("IDBTransaction")}}, on ouvre également un magasin d'objets puis un curseur avec la méthode {{domxref("IDBObjectStore.openCursor")}} pour lequel on indique que <code>keyRangeValue</code> est l'intervalle de clé à considérer. Cela signifie que le curseur récupèrera uniquement les enregistrements pour lesquels les clés sont contenues dans cet intervalle. Cet intervalle est fermé, il inclut les valeur "A" and "F" (on n'a pas indiqué que ces bornes étaient ouvertes). Si on avait utilisé <code>IDBKeyRange.bound("A", "F", true, true);</code>, l'intervalle serait ouvert et ne contiendrait pas "A" ou "F" mais uniquement les valeurs intermédiaires.</p> -<pre class="brush: js notranslate">function displayData() { +<pre class="brush: js">function displayData() { var keyRangeValue = IDBKeyRange.bound("A", "F"); var transaction = db.transaction(['fThings'], 'readonly'); @@ -151,7 +151,7 @@ translation_of: Web/API/IDBKeyRange };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -191,5 +191,5 @@ translation_of: Web/API/IDBKeyRange <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/lower/index.html b/files/fr/web/api/idbkeyrange/lower/index.html index 6470e2dd77..228da25525 100644 --- a/files/fr/web/api/idbkeyrange/lower/index.html +++ b/files/fr/web/api/idbkeyrange/lower/index.html @@ -51,7 +51,7 @@ translation_of: Web/API/IDBKeyRange/lower };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -84,5 +84,5 @@ translation_of: Web/API/IDBKeyRange/lower <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/lowerbound/index.html b/files/fr/web/api/idbkeyrange/lowerbound/index.html index 6698847c92..3175f20150 100644 --- a/files/fr/web/api/idbkeyrange/lowerbound/index.html +++ b/files/fr/web/api/idbkeyrange/lowerbound/index.html @@ -65,7 +65,7 @@ IDBKeyRange.lowerBound(borne, ouvert);</pre> };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécification">Spécification</h2> @@ -98,5 +98,5 @@ IDBKeyRange.lowerBound(borne, ouvert);</pre> <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/loweropen/index.html b/files/fr/web/api/idbkeyrange/loweropen/index.html index eb52d0eab0..e81e42a0d3 100644 --- a/files/fr/web/api/idbkeyrange/loweropen/index.html +++ b/files/fr/web/api/idbkeyrange/loweropen/index.html @@ -51,7 +51,7 @@ translation_of: Web/API/IDBKeyRange/lowerOpen };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -84,5 +84,5 @@ translation_of: Web/API/IDBKeyRange/lowerOpen <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/only/index.html b/files/fr/web/api/idbkeyrange/only/index.html index f63dccc31d..dc2ed37fac 100644 --- a/files/fr/web/api/idbkeyrange/only/index.html +++ b/files/fr/web/api/idbkeyrange/only/index.html @@ -59,7 +59,7 @@ translation_of: Web/API/IDBKeyRange/only };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -92,5 +92,5 @@ translation_of: Web/API/IDBKeyRange/only <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/upper/index.html b/files/fr/web/api/idbkeyrange/upper/index.html index d96314a08f..74b9545f8e 100644 --- a/files/fr/web/api/idbkeyrange/upper/index.html +++ b/files/fr/web/api/idbkeyrange/upper/index.html @@ -51,7 +51,7 @@ translation_of: Web/API/IDBKeyRange/upper };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécifications">Spécifications</h2> @@ -84,5 +84,5 @@ translation_of: Web/API/IDBKeyRange/upper <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/upperbound/index.html b/files/fr/web/api/idbkeyrange/upperbound/index.html index 58f7c8b695..6adcc4fe8b 100644 --- a/files/fr/web/api/idbkeyrange/upperbound/index.html +++ b/files/fr/web/api/idbkeyrange/upperbound/index.html @@ -66,7 +66,7 @@ IDBKeyRange.upperBound(borne, ouvert);</pre> };</pre> <div class="note"> -<p><strong>Note </strong>: Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> +<p><strong>Note :</strong> Pour un exemple complet qui utilise les intervalles de clé, vous pouvez consulter <a href="https://github.com/mdn/IDBKeyRange-example">le dépôt GitHub IDBKeyRange-example</a> (<a href="https://mdn.github.io/IDBKeyRange-example/">ainsi que la démonstration associée</a>).</p> </div> <h2 id="Spécification">Spécification</h2> @@ -99,5 +99,5 @@ IDBKeyRange.upperBound(borne, ouvert);</pre> <li>Définir un intervalle de clés : {{domxref("IDBKeyRange")}}</li> <li>Récupérer et modifier les données : {{domxref("IDBObjectStore")}}</li> <li>Utiliser les curseurs {{domxref("IDBCursor")}}</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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></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="https://mdn.github.io/to-do-notifications/">exemple <em>live</em></a>).</li> </ul> diff --git a/files/fr/web/api/idbkeyrange/upperopen/index.html b/files/fr/web/api/idbkeyrange/upperopen/index.html index 78bd094f95..be0068210d 100644 --- a/files/fr/web/api/idbkeyrange/upperopen/index.html +++ b/files/fr/web/api/idbkeyrange/upperopen/index.html @@ -28,7 +28,7 @@ translation_of: Web/API/IDBKeyRange/upperOpen <p>La propriété <strong><code>upperOpen</code></strong> sert ici à afficher sur la console le booléen indiquant si la valeur de la limite supérieure est comprise dans l'intervalle.</p> -<pre class="brush: js" style="font-size: 14px;">function displayData() { +<pre class="brush: js">function displayData() { var keyRangeValue = IDBKeyRange.bound("F", "W", true, true); console.log(keyRangeValue.upperOpen); @@ -66,7 +66,7 @@ translation_of: Web/API/IDBKeyRange/upperOpen </tbody> </table> -<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilité avec les navigateurs</h2> +<h2 id="Browser_compatibility">Compatibilité avec les navigateurs</h2> <p>{{Compat("api.IDBKeyRange.upperOpen")}}</p> @@ -79,5 +79,5 @@ translation_of: Web/API/IDBKeyRange/upperOpen <li>{{domxref("IDBKeyRange","Définir l'intervalle des clés")}}</li> <li>{{domxref("IDBObjectStore","Accès aux magasins d'objets")}}</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> |
