aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/status
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-01 23:55:47 +0900
committerGitHub <noreply@github.com>2021-09-01 23:55:47 +0900
commit23ae40b439e973cad6c38c9e3303cecc87995fc1 (patch)
treea6748834ada407c6a7ed0a7869d1563c84648cac /files/ja/web/http/status
parenta01280e70a4f6c732cb00dc7a22eff47e8ae6809 (diff)
downloadtranslated-content-23ae40b439e973cad6c38c9e3303cecc87995fc1.tar.gz
translated-content-23ae40b439e973cad6c38c9e3303cecc87995fc1.tar.bz2
translated-content-23ae40b439e973cad6c38c9e3303cecc87995fc1.zip
Web/HTTP/Status/202 を更新 (#2182)
- Markdown化、2021/08/14時点の英語版に同期
Diffstat (limited to 'files/ja/web/http/status')
-rw-r--r--files/ja/web/http/status/202/index.html37
-rw-r--r--files/ja/web/http/status/202/index.md31
2 files changed, 31 insertions, 37 deletions
diff --git a/files/ja/web/http/status/202/index.html b/files/ja/web/http/status/202/index.html
deleted file mode 100644
index f4f6916f78..0000000000
--- a/files/ja/web/http/status/202/index.html
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: 202 Accepted
-slug: Web/HTTP/Status/202
-tags:
- - HTTP
- - HTTP ステータスコード
- - リファレンス
-translation_of: Web/HTTP/Status/202
----
-<div>{{HTTPSidebar}}</div>
-
-<p>HTTP <code><strong>202 Accepted</strong></code> レスポンスはリクエストを受け取ったが処理はされていない、ということを表すステータスコードです。これはコミットされていない、リクエストを処理した結果を示すレスポンスを、非同期で送信する方法がHTTPに存在しないことを意味しています。別のプロセスまたはサーバーがリクエストを処理する場合、またはバッチ処理の場合を想定しています。</p>
-
-<h2 id="ステータス">ステータス</h2>
-
-<pre class="syntaxbox">202 Accepted</pre>
-
-<h2 id="仕様">仕様</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">仕様</th>
- <th scope="col">タイトル</th>
- </tr>
- <tr>
- <td>{{RFC("7231", "202 Accepted" , "6.3.3")}}</td>
- <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="参照">参照</h2>
-
-<ul>
- <li>{{HTTPHeader("Accept")}}</li>
-</ul>
diff --git a/files/ja/web/http/status/202/index.md b/files/ja/web/http/status/202/index.md
new file mode 100644
index 0000000000..863f9b6fe8
--- /dev/null
+++ b/files/ja/web/http/status/202/index.md
@@ -0,0 +1,31 @@
+---
+title: 202 Accepted
+slug: Web/HTTP/Status/202
+tags:
+ - HTTP
+ - リファレンス
+ - ステータスコード
+ - 成功レスポンス
+translation_of: Web/HTTP/Status/202
+---
+{{HTTPSidebar}}
+
+HTTP (HyperText Transfer Protocol) の **`202 Accepted`** レスポンスステータスコードは、リクエストを受け取ったが、処理が完了していないことを表します。実際には、処理はまだ始まっていない可能性もあります。そのリクエストは、実際に処理が行われたときに拒否される可能性があるため、最終的に処理されるかどうかはわかりません。処理が実際に行われたときに許可されないかもしれないからです。
+
+202 はコミットするものではありません。つまり、 HTTP にはリクエストの処理結果を示す非同期レスポンスを後で送信する方法がありません。別のプロセスやサーバーがリクエストを処理する場合や、バッチ処理のためのものです。
+
+## ステータス
+
+```
+202 Accepted
+```
+
+## 仕様書
+
+| 仕様書 | 題名 |
+| -------------------------------------------------------- | ------------------------------------------------------------- |
+| {{RFC("7231", "202 Accepted" , "6.3.3")}} | Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content |
+
+## 関連情報
+
+- {{HTTPHeader("Accept")}}