From 4873c5f1122ac800cf3c916a52df07e05ddc9dcf Mon Sep 17 00:00:00 2001 From: MDN Date: Fri, 11 Feb 2022 00:58:37 +0000 Subject: [CRON] sync translated content --- files/fr/_redirects.txt | 2 + files/fr/_wikihistory.json | 18 ++++----- .../fr/web/api/xmlhttprequest/load_event/index.md | 41 ++++++++++++++++++++ .../api/xmlhttprequest/onreadystatechange/index.md | 44 --------------------- .../xmlhttprequest/readystatechange_event/index.md | 45 ++++++++++++++++++++++ .../api/xmlhttprequesteventtarget/onload/index.md | 40 ------------------- 6 files changed, 97 insertions(+), 93 deletions(-) create mode 100644 files/fr/web/api/xmlhttprequest/load_event/index.md delete mode 100644 files/fr/web/api/xmlhttprequest/onreadystatechange/index.md create mode 100644 files/fr/web/api/xmlhttprequest/readystatechange_event/index.md delete mode 100644 files/fr/web/api/xmlhttprequesteventtarget/onload/index.md (limited to 'files/fr') diff --git a/files/fr/_redirects.txt b/files/fr/_redirects.txt index 790e5e1098..aa042cdec3 100644 --- a/files/fr/_redirects.txt +++ b/files/fr/_redirects.txt @@ -3824,6 +3824,8 @@ /fr/docs/Web/API/WorkerGlobalScope/close /fr/docs/conflicting/Web/API/DedicatedWorkerGlobalScope/close /fr/docs/Web/API/WorkerGlobalScope/onclose /fr/docs/conflicting/Web/API/DedicatedWorkerGlobalScope/close_ad209d73ce2abfe0e3fe136acf40e5b4 /fr/docs/Web/API/XMLHttpRequest/Utiliser_XMLHttpRequest /fr/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest +/fr/docs/Web/API/XMLHttpRequest/onreadystatechange /fr/docs/Web/API/XMLHttpRequest/readystatechange_event +/fr/docs/Web/API/XMLHttpRequestEventTarget/onload /fr/docs/Web/API/XMLHttpRequest/load_event /fr/docs/Web/API/console.log /fr/docs/Web/API/Console/log /fr/docs/Web/API/console.time /fr/docs/Web/API/Console/time /fr/docs/Web/API/console.timeEnd /fr/docs/Web/API/Console/timeEnd diff --git a/files/fr/_wikihistory.json b/files/fr/_wikihistory.json index a65b7be9f1..433a88c540 100644 --- a/files/fr/_wikihistory.json +++ b/files/fr/_wikihistory.json @@ -21652,10 +21652,10 @@ "Kalwyn" ] }, - "Web/API/XMLHttpRequest/onreadystatechange": { - "modified": "2020-10-15T22:12:50.281Z", + "Web/API/XMLHttpRequest/load_event": { + "modified": "2020-10-15T22:31:14.653Z", "contributors": [ - "AdminXVII" + "fatmalimem19" ] }, "Web/API/XMLHttpRequest/open": { @@ -21670,6 +21670,12 @@ "devweb157" ] }, + "Web/API/XMLHttpRequest/readystatechange_event": { + "modified": "2020-10-15T22:12:50.281Z", + "contributors": [ + "AdminXVII" + ] + }, "Web/API/XMLHttpRequest/response": { "modified": "2019-03-18T21:46:41.662Z", "contributors": [ @@ -21723,12 +21729,6 @@ "devweb157" ] }, - "Web/API/XMLHttpRequestEventTarget/onload": { - "modified": "2020-10-15T22:31:14.653Z", - "contributors": [ - "fatmalimem19" - ] - }, "Web/API/XMLSerializer": { "modified": "2019-03-23T23:46:38.004Z", "contributors": [ diff --git a/files/fr/web/api/xmlhttprequest/load_event/index.md b/files/fr/web/api/xmlhttprequest/load_event/index.md new file mode 100644 index 0000000000..8d314127c3 --- /dev/null +++ b/files/fr/web/api/xmlhttprequest/load_event/index.md @@ -0,0 +1,41 @@ +--- +title: XMLHttpRequestEventTarget.onload +slug: Web/API/XMLHttpRequest/load_event +translation_of: Web/API/XMLHttpRequestEventTarget/onload +original_slug: Web/API/XMLHttpRequestEventTarget/onload +--- +{{APIRef("XMLHttpRequest")}} + +The **`XMLHttpRequestEventTarget.onload`** is the function called when an {{domxref("XMLHttpRequest")}} transaction completes successfully. + +## Syntax + + XMLHttpRequest.onload = callback; + +### Values + +- `callback` is the function to be executed when the request completes successfully. It receives a {{domxref("ProgressEvent")}} object as its first argument. The value of *this* (i.e. the context) is the same {{domxref("XMLHttpRequest")}} this callback is related to. + +## Example + +```js +var xmlhttp = new XMLHttpRequest(), + method = 'GET', + url = 'https://developer.mozilla.org/'; + +xmlhttp.open(method, url, true); +xmlhttp.onload = function () { + // Do something with the retrieved data ( found in xmlhttp.response ) +}; +xmlhttp.send(); +``` + +## Specifications + +| Specification | Status | Comment | +| ------------------------------------------------------------------------ | ------------------------------------ | ---------------------- | +| {{SpecName('XMLHttpRequest', '#handler-xhr-onload')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard | + +## Browser compatibility + +{{Compat("api.XMLHttpRequestEventTarget.onload")}} diff --git a/files/fr/web/api/xmlhttprequest/onreadystatechange/index.md b/files/fr/web/api/xmlhttprequest/onreadystatechange/index.md deleted file mode 100644 index cafc71025b..0000000000 --- a/files/fr/web/api/xmlhttprequest/onreadystatechange/index.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: XMLHttpRequest.onreadystatechange -slug: Web/API/XMLHttpRequest/onreadystatechange -translation_of: Web/API/XMLHttpRequest/onreadystatechange ---- -{{APIRef}} - -Un [`EventHandler`](/en-US/docs/Web/API/EventHandler) qui réagit aux changements de `readyState`. Le callback est appelé dans le contexte du thread de rendu. La propriété **`XMLHttpRequest.onreadystatechange`**  contient le gestionnaire d'évènement appelé lorsque l'évènement {{event("readystatechange")}} est déclenché, soit chaque fois que la propriété {{domxref("XMLHttpRequest.readyState", "readyState")}} de {{domxref("XMLHttpRequest")}} est modifiée. - -> **Attention :** Ne doit pas être utilisé avec des requêtes synchrone ni avec du code natif. - -## Syntaxe - - XMLHttpRequest.onreadystatechange = callback; - -### Valeurs - -- `callback` est la fonction exécutée lorsque `readyState` change. - -## Exemple - -```js -var xhr = new XMLHttpRequest(), - method = "GET", - url = "https://developer.mozilla.org/"; - -xhr.open(method, url, true); -xhr.onreadystatechange = function () { - if(xhr.readyState === 4 && xhr.status === 200) { -  console.log(xhr.responseText); -  } -}; -xhr.send(); -``` - -## Spécifications - -| Specification | Status | Comment | -| ---------------------------------------------------------------------------------------- | ------------------------------------ | ---------------------- | -| {{SpecName('XMLHttpRequest', '#handler-xhr-onreadystatechange')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard | - -## Compatibilité des fureteurs - -{{Compat("api.XMLHttpRequest.onreadystatechange")}} diff --git a/files/fr/web/api/xmlhttprequest/readystatechange_event/index.md b/files/fr/web/api/xmlhttprequest/readystatechange_event/index.md new file mode 100644 index 0000000000..c9cf4293db --- /dev/null +++ b/files/fr/web/api/xmlhttprequest/readystatechange_event/index.md @@ -0,0 +1,45 @@ +--- +title: XMLHttpRequest.onreadystatechange +slug: Web/API/XMLHttpRequest/readystatechange_event +translation_of: Web/API/XMLHttpRequest/onreadystatechange +original_slug: Web/API/XMLHttpRequest/onreadystatechange +--- +{{APIRef}} + +Un [`EventHandler`](/en-US/docs/Web/API/EventHandler) qui réagit aux changements de `readyState`. Le callback est appelé dans le contexte du thread de rendu. La propriété **`XMLHttpRequest.onreadystatechange`**  contient le gestionnaire d'évènement appelé lorsque l'évènement {{event("readystatechange")}} est déclenché, soit chaque fois que la propriété {{domxref("XMLHttpRequest.readyState", "readyState")}} de {{domxref("XMLHttpRequest")}} est modifiée. + +> **Attention :** Ne doit pas être utilisé avec des requêtes synchrone ni avec du code natif. + +## Syntaxe + + XMLHttpRequest.onreadystatechange = callback; + +### Valeurs + +- `callback` est la fonction exécutée lorsque `readyState` change. + +## Exemple + +```js +var xhr = new XMLHttpRequest(), + method = "GET", + url = "https://developer.mozilla.org/"; + +xhr.open(method, url, true); +xhr.onreadystatechange = function () { + if(xhr.readyState === 4 && xhr.status === 200) { +  console.log(xhr.responseText); +  } +}; +xhr.send(); +``` + +## Spécifications + +| Specification | Status | Comment | +| ---------------------------------------------------------------------------------------- | ------------------------------------ | ---------------------- | +| {{SpecName('XMLHttpRequest', '#handler-xhr-onreadystatechange')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard | + +## Compatibilité des fureteurs + +{{Compat("api.XMLHttpRequest.onreadystatechange")}} diff --git a/files/fr/web/api/xmlhttprequesteventtarget/onload/index.md b/files/fr/web/api/xmlhttprequesteventtarget/onload/index.md deleted file mode 100644 index b3242e022c..0000000000 --- a/files/fr/web/api/xmlhttprequesteventtarget/onload/index.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: XMLHttpRequestEventTarget.onload -slug: Web/API/XMLHttpRequestEventTarget/onload -translation_of: Web/API/XMLHttpRequestEventTarget/onload ---- -{{APIRef("XMLHttpRequest")}} - -The **`XMLHttpRequestEventTarget.onload`** is the function called when an {{domxref("XMLHttpRequest")}} transaction completes successfully. - -## Syntax - - XMLHttpRequest.onload = callback; - -### Values - -- `callback` is the function to be executed when the request completes successfully. It receives a {{domxref("ProgressEvent")}} object as its first argument. The value of *this* (i.e. the context) is the same {{domxref("XMLHttpRequest")}} this callback is related to. - -## Example - -```js -var xmlhttp = new XMLHttpRequest(), - method = 'GET', - url = 'https://developer.mozilla.org/'; - -xmlhttp.open(method, url, true); -xmlhttp.onload = function () { - // Do something with the retrieved data ( found in xmlhttp.response ) -}; -xmlhttp.send(); -``` - -## Specifications - -| Specification | Status | Comment | -| ------------------------------------------------------------------------ | ------------------------------------ | ---------------------- | -| {{SpecName('XMLHttpRequest', '#handler-xhr-onload')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard | - -## Browser compatibility - -{{Compat("api.XMLHttpRequestEventTarget.onload")}} -- cgit v1.2.3-54-g00ecf