aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/identitymanager/logout/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
commita065e04d529da1d847b5062a12c46d916408bf32 (patch)
treefe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/ja/web/api/identitymanager/logout/index.html
parent218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff)
downloadtranslated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/ja/web/api/identitymanager/logout/index.html')
-rw-r--r--files/ja/web/api/identitymanager/logout/index.html40
1 files changed, 0 insertions, 40 deletions
diff --git a/files/ja/web/api/identitymanager/logout/index.html b/files/ja/web/api/identitymanager/logout/index.html
deleted file mode 100644
index e235472220..0000000000
--- a/files/ja/web/api/identitymanager/logout/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
----
-title: navigator.id.logout
-slug: Web/API/IdentityManager/logout
-tags:
- - BrowserID
- - DOM
- - Gecko DOM Reference
- - Persona
- - Security
-translation_of: Archive/IdentityManager/logout
----
-<div>
- {{ ApiRef() }} {{ non-standard_header() }}</div>
-<div class="note">
- <strong>注記:</strong> この機能は、まだどのブラウザでもサポートされていません。Persona を使用する Web サイトは、そのページに <a href="https://login.persona.org/include.js" title="https://login.persona.org/include.js">ポリフィルライブラリ</a> を含めなければなりません。</div>
-<h2 id="Summary" name="Summary">要約</h2>
-<p>この関数は、<a href="/ja/docs/Persona" title="Persona">Persona</a> で、Web サイトに対する自動的なログインの持続フラグをリセットするために使用します。この関数が呼び出された後、サイトに自動的にサインインされなくなるので、ユーザが明示的にログインしなおす必要があります。</p>
-<p>Web サイトは、この関数をサイトの "log out" ボタンの click ハンドラから呼び出さなければなりません。</p>
-<p>この関数は、ユーザの証明書や署名キーをブラウザに <strong>消去させません</strong>。そのため、<code>logout()</code> を呼び出した後、ユーザの ID プロバイダが与えた証明書の新しさに依存して、新たなログインの時に新しいパスワードをユーザに求めたり求めなかったりします。しかし、サインインに使用するメールアドレスの選択は求められます。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox">navigator.id.logout();</pre>
-<h2 id="Example" name="Example">コード例</h2>
-<pre class="brush: js">// ユーザが "Sign Out" をクリックした時に navigator.id.logout(); を実行する
-var signoutLink = document.getElementById('signout');
-
-if (signoutLink) {
- signoutLink.onclick = function(event) {
- event.preventDefault();
- navigator.id.logout();
- };
-};</pre>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>まだどの仕様書にも含まれていません。</p>
-<h2 id="See_also" name="See_also">関連情報</h2>
-<ul>
- <li><a href="/ja/docs/Persona" title="Persona">BrowserID</a></li>
- <li>{{domxref("navigator.id")}}</li>
- <li>{{domxref("navigator.id.watch()")}}</li>
- <li>{{domxref("navigator.id.logout()")}}</li>
-</ul>