From 9b97f9f4a1f580cbf582fb4bebabbccaab8e5dda Mon Sep 17 00:00:00 2001 From: MDN Date: Thu, 16 Dec 2021 00:52:08 +0000 Subject: [CRON] sync translated content --- files/ja/_redirects.txt | 4 ++ files/ja/_wikihistory.json | 52 +++++++++---------- .../web/api/websocket/close_event/index.html | 38 ++++++++++++++ .../web/api/websocket/error_event/index.html | 60 ++++++++++++++++++++++ .../web/api/websocket/message_event/index.html | 49 ++++++++++++++++++ .../web/api/websocket/open_event/index.html | 49 ++++++++++++++++++ files/ja/web/api/websocket/onclose/index.html | 37 ------------- files/ja/web/api/websocket/onerror/index.html | 59 --------------------- files/ja/web/api/websocket/onmessage/index.html | 48 ----------------- files/ja/web/api/websocket/onopen/index.html | 48 ----------------- 10 files changed, 226 insertions(+), 218 deletions(-) create mode 100644 files/ja/conflicting/web/api/websocket/close_event/index.html create mode 100644 files/ja/conflicting/web/api/websocket/error_event/index.html create mode 100644 files/ja/conflicting/web/api/websocket/message_event/index.html create mode 100644 files/ja/conflicting/web/api/websocket/open_event/index.html delete mode 100644 files/ja/web/api/websocket/onclose/index.html delete mode 100644 files/ja/web/api/websocket/onerror/index.html delete mode 100644 files/ja/web/api/websocket/onmessage/index.html delete mode 100644 files/ja/web/api/websocket/onopen/index.html (limited to 'files/ja') diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt index dc18833882..581c7efb46 100644 --- a/files/ja/_redirects.txt +++ b/files/ja/_redirects.txt @@ -3291,6 +3291,10 @@ /ja/docs/Web/API/WebGL_API/Lighting_in_WebGL /ja/docs/Web/API/WebGL_API/Tutorial/Lighting_in_WebGL /ja/docs/Web/API/WebGL_API/Using_shaders_to_apply_color_in_WebGL /ja/docs/Web/API/WebGL_API/Tutorial/Using_shaders_to_apply_color_in_WebGL /ja/docs/Web/API/WebGL_API/Using_textures_in_WebGL /ja/docs/Web/API/WebGL_API/Tutorial/Using_textures_in_WebGL +/ja/docs/Web/API/WebSocket/onclose /ja/docs/conflicting/Web/API/WebSocket/close_event +/ja/docs/Web/API/WebSocket/onerror /ja/docs/conflicting/Web/API/WebSocket/error_event +/ja/docs/Web/API/WebSocket/onmessage /ja/docs/conflicting/Web/API/WebSocket/message_event +/ja/docs/Web/API/WebSocket/onopen /ja/docs/conflicting/Web/API/WebSocket/open_event /ja/docs/Web/API/WebSockets_API/WebSockets_reference /ja/docs/Web/API/WebSockets_API /ja/docs/Web/API/WebVR_API/WebVR_concepts /ja/docs/Web/API/WebVR_API/Concepts /ja/docs/Web/API/Web_Video_Text_Tracks_Format /ja/docs/Web/API/WebVTT_API diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json index ce326e0fb9..07dd56eff5 100644 --- a/files/ja/_wikihistory.json +++ b/files/ja/_wikihistory.json @@ -23601,32 +23601,6 @@ "mfuji09" ] }, - "Web/API/WebSocket/onclose": { - "modified": "2020-09-25T11:45:51.374Z", - "contributors": [ - "maechabin" - ] - }, - "Web/API/WebSocket/onerror": { - "modified": "2020-10-15T22:27:10.724Z", - "contributors": [ - "mfuji09" - ] - }, - "Web/API/WebSocket/onmessage": { - "modified": "2020-10-15T22:27:03.005Z", - "contributors": [ - "maechabin", - "mfuji09" - ] - }, - "Web/API/WebSocket/onopen": { - "modified": "2020-10-15T22:27:03.150Z", - "contributors": [ - "Mr.Chenzm", - "mfuji09" - ] - }, "Web/API/WebSocket/open_event": { "modified": "2020-10-15T22:27:02.962Z", "contributors": [ @@ -48568,6 +48542,32 @@ "Wind1808" ] }, + "conflicting/Web/API/WebSocket/close_event": { + "modified": "2020-09-25T11:45:51.374Z", + "contributors": [ + "maechabin" + ] + }, + "conflicting/Web/API/WebSocket/error_event": { + "modified": "2020-10-15T22:27:10.724Z", + "contributors": [ + "mfuji09" + ] + }, + "conflicting/Web/API/WebSocket/message_event": { + "modified": "2020-10-15T22:27:03.005Z", + "contributors": [ + "maechabin", + "mfuji09" + ] + }, + "conflicting/Web/API/WebSocket/open_event": { + "modified": "2020-10-15T22:27:03.150Z", + "contributors": [ + "Mr.Chenzm", + "mfuji09" + ] + }, "conflicting/Web/API/Window/scroll": { "modified": "2020-10-15T22:32:16.096Z", "contributors": [ diff --git a/files/ja/conflicting/web/api/websocket/close_event/index.html b/files/ja/conflicting/web/api/websocket/close_event/index.html new file mode 100644 index 0000000000..79582e481c --- /dev/null +++ b/files/ja/conflicting/web/api/websocket/close_event/index.html @@ -0,0 +1,38 @@ +--- +title: WebSocket.onclose +slug: conflicting/Web/API/WebSocket/close_event +translation_of: Web/API/WebSocket/onclose +original_slug: Web/API/WebSocket/onclose +--- +

{{APIRef("Web Sockets API")}}

+ +

WebSocket.onclose プロパティは、WebSocket コネクションの {{domxref("WebSocket.readyState","readyState")}} が {{domxref("WebSocket.readyState","CLOSED")}} に変わったときに呼ばれる {{event("Event_handlers", "event handler")}} です。{{domxref("CloseEvent")}} と一緒に呼び出されます。

+ +

構文

+ +
aWebSocket.onclose = function(event) {
+  console.log("WebSocket is closed now.");
+};
+ +

+ +

{{domxref("EventListener")}}.

+ +

仕様書

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('HTML WHATWG', '#handler-websocket-onclose', 'WebSocket: onclose')}}{{Spec2('HTML WHATWG')}}Initial definition
diff --git a/files/ja/conflicting/web/api/websocket/error_event/index.html b/files/ja/conflicting/web/api/websocket/error_event/index.html new file mode 100644 index 0000000000..d208a820c6 --- /dev/null +++ b/files/ja/conflicting/web/api/websocket/error_event/index.html @@ -0,0 +1,60 @@ +--- +title: WebSocket.onerror +slug: conflicting/Web/API/WebSocket/error_event +tags: + - API + - Connection + - Error + - Error Handler + - Networking + - Property + - Reference + - Web API + - WebSocket + - onerror + - プロパティ +translation_of: Web/API/WebSocket/onerror +original_slug: Web/API/WebSocket/onerror +--- +
{{APIRef("Web Sockets API")}}
+ +

{{domxref("WebSocket")}} インターフェイスの onerror イベントハンドラープロパティは、 WebSocket でエラーが発生したときに呼び出される関数です。

+ +

error イベントハンドラーは {{domxref("EventTarget.addEventListener", "addEventListener()")}} で追加することもできます。

+ +

構文

+ +
webSocket.onerror = eventHandler;
+ +

+ +

関数または {{event("Event_handlers", "event handler")}} で、 WebSocket コネクションで error イベントが発生するたびに呼び出されるものです。

+ +

+ +
webSocket.onerror = function(event) {
+  console.error("WebSocket error observed:", event);
+};
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onerror', 'WebSocket: onerror')}}{{Spec2('HTML WHATWG')}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.WebSocket.onerror")}}

diff --git a/files/ja/conflicting/web/api/websocket/message_event/index.html b/files/ja/conflicting/web/api/websocket/message_event/index.html new file mode 100644 index 0000000000..e1888a6245 --- /dev/null +++ b/files/ja/conflicting/web/api/websocket/message_event/index.html @@ -0,0 +1,49 @@ +--- +title: WebSocket.onmessage +slug: conflicting/Web/API/WebSocket/message_event +tags: + - API + - Property + - Reference + - Web API + - WebSocket + - プロパティ +translation_of: Web/API/WebSocket/onmessage +original_slug: Web/API/WebSocket/onmessage +--- +
{{APIRef("Web Sockets API")}}
+ +

WebSocket.onmessage プロパティは、サーバーからメッセージが届いたときに呼び出されるイベントハンドラー ({{event("Event_handlers", "event handler")}}) です。これは {{domxref("MessageEvent")}} で呼び出されます。

+ +

構文

+ +
aWebSocket.onmessage = function(event) {
+  console.debug("WebSocket message received:", event);
+};
+ +

+ +

{{domxref("EventListener")}} です。

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onmessage', 'WebSocket: onmessage')}}{{Spec2('HTML WHATWG')}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.WebSocket.onmessage")}}

diff --git a/files/ja/conflicting/web/api/websocket/open_event/index.html b/files/ja/conflicting/web/api/websocket/open_event/index.html new file mode 100644 index 0000000000..451ad8d6b6 --- /dev/null +++ b/files/ja/conflicting/web/api/websocket/open_event/index.html @@ -0,0 +1,49 @@ +--- +title: WebSocket.onopen +slug: conflicting/Web/API/WebSocket/open_event +tags: + - API + - Property + - Reference + - Web API + - WebSocket + - プロパティ +translation_of: Web/API/WebSocket/onopen +original_slug: Web/API/WebSocket/onopen +--- +
{{APIRef("Web Sockets API")}}
+ +

WebSocket.onopen プロパティはイベントハンドラー ({{event("Event_handlers", "event handler")}}) で、 {{domxref("WebSocket")}} のコネクションの {{domxref("WebSocket.readyState","readyState")}} が {{domxref("WebSocket.readyState","1")}} に変化したときに呼び出されます。これは、コネクションでデータを送信したり受信したりする準備ができたことを示します。これは {{domxref("Event")}} を伴って呼び出されます。

+ +

構文

+ +
aWebSocket.onopen = function(event) {
+  console.log("WebSocket is open now.");
+};
+ +

+ +

{{domxref("EventListener")}} です。

+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onopen', 'WebSocket: onopen')}}{{Spec2('HTML WHATWG')}}初回定義
+ +

ブラウザーの互換性

+ +

{{Compat("api.WebSocket.onopen")}}

diff --git a/files/ja/web/api/websocket/onclose/index.html b/files/ja/web/api/websocket/onclose/index.html deleted file mode 100644 index 4e029f4167..0000000000 --- a/files/ja/web/api/websocket/onclose/index.html +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: WebSocket.onclose -slug: Web/API/WebSocket/onclose -translation_of: Web/API/WebSocket/onclose ---- -

{{APIRef("Web Sockets API")}}

- -

WebSocket.onclose プロパティは、WebSocket コネクションの {{domxref("WebSocket.readyState","readyState")}} が {{domxref("WebSocket.readyState","CLOSED")}} に変わったときに呼ばれる {{event("Event_handlers", "event handler")}} です。{{domxref("CloseEvent")}} と一緒に呼び出されます。

- -

構文

- -
aWebSocket.onclose = function(event) {
-  console.log("WebSocket is closed now.");
-};
- -

- -

{{domxref("EventListener")}}.

- -

仕様書

- - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName('HTML WHATWG', '#handler-websocket-onclose', 'WebSocket: onclose')}}{{Spec2('HTML WHATWG')}}Initial definition
diff --git a/files/ja/web/api/websocket/onerror/index.html b/files/ja/web/api/websocket/onerror/index.html deleted file mode 100644 index 982851b486..0000000000 --- a/files/ja/web/api/websocket/onerror/index.html +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: WebSocket.onerror -slug: Web/API/WebSocket/onerror -tags: - - API - - Connection - - Error - - Error Handler - - Networking - - Property - - Reference - - Web API - - WebSocket - - onerror - - プロパティ -translation_of: Web/API/WebSocket/onerror ---- -
{{APIRef("Web Sockets API")}}
- -

{{domxref("WebSocket")}} インターフェイスの onerror イベントハンドラープロパティは、 WebSocket でエラーが発生したときに呼び出される関数です。

- -

error イベントハンドラーは {{domxref("EventTarget.addEventListener", "addEventListener()")}} で追加することもできます。

- -

構文

- -
webSocket.onerror = eventHandler;
- -

- -

関数または {{event("Event_handlers", "event handler")}} で、 WebSocket コネクションで error イベントが発生するたびに呼び出されるものです。

- -

- -
webSocket.onerror = function(event) {
-  console.error("WebSocket error observed:", event);
-};
- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onerror', 'WebSocket: onerror')}}{{Spec2('HTML WHATWG')}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.WebSocket.onerror")}}

diff --git a/files/ja/web/api/websocket/onmessage/index.html b/files/ja/web/api/websocket/onmessage/index.html deleted file mode 100644 index f901d3f79f..0000000000 --- a/files/ja/web/api/websocket/onmessage/index.html +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: WebSocket.onmessage -slug: Web/API/WebSocket/onmessage -tags: - - API - - Property - - Reference - - Web API - - WebSocket - - プロパティ -translation_of: Web/API/WebSocket/onmessage ---- -
{{APIRef("Web Sockets API")}}
- -

WebSocket.onmessage プロパティは、サーバーからメッセージが届いたときに呼び出されるイベントハンドラー ({{event("Event_handlers", "event handler")}}) です。これは {{domxref("MessageEvent")}} で呼び出されます。

- -

構文

- -
aWebSocket.onmessage = function(event) {
-  console.debug("WebSocket message received:", event);
-};
- -

- -

{{domxref("EventListener")}} です。

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onmessage', 'WebSocket: onmessage')}}{{Spec2('HTML WHATWG')}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.WebSocket.onmessage")}}

diff --git a/files/ja/web/api/websocket/onopen/index.html b/files/ja/web/api/websocket/onopen/index.html deleted file mode 100644 index 79d4dcf2df..0000000000 --- a/files/ja/web/api/websocket/onopen/index.html +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: WebSocket.onopen -slug: Web/API/WebSocket/onopen -tags: - - API - - Property - - Reference - - Web API - - WebSocket - - プロパティ -translation_of: Web/API/WebSocket/onopen ---- -
{{APIRef("Web Sockets API")}}
- -

WebSocket.onopen プロパティはイベントハンドラー ({{event("Event_handlers", "event handler")}}) で、 {{domxref("WebSocket")}} のコネクションの {{domxref("WebSocket.readyState","readyState")}} が {{domxref("WebSocket.readyState","1")}} に変化したときに呼び出されます。これは、コネクションでデータを送信したり受信したりする準備ができたことを示します。これは {{domxref("Event")}} を伴って呼び出されます。

- -

構文

- -
aWebSocket.onopen = function(event) {
-  console.log("WebSocket is open now.");
-};
- -

- -

{{domxref("EventListener")}} です。

- -

仕様書

- - - - - - - - - - - - - - - - -
仕様書状態備考
{{SpecName('HTML WHATWG', '#handler-websocket-onopen', 'WebSocket: onopen')}}{{Spec2('HTML WHATWG')}}初回定義
- -

ブラウザーの互換性

- -

{{Compat("api.WebSocket.onopen")}}

-- cgit v1.2.3-54-g00ecf