aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-08-18 13:29:08 +0900
committerGitHub <noreply@github.com>2021-08-18 13:29:08 +0900
commit4eaca34cf2eea3b021dfe6aa7e0ccada55c7f436 (patch)
tree35dc50407ca179b89280ff8614aadfd241dad06a /files/ja/orphaned
parentfec78d0bd88f64228f2a1cb2412c68d937e3b1b8 (diff)
downloadtranslated-content-4eaca34cf2eea3b021dfe6aa7e0ccada55c7f436.tar.gz
translated-content-4eaca34cf2eea3b021dfe6aa7e0ccada55c7f436.tar.bz2
translated-content-4eaca34cf2eea3b021dfe6aa7e0ccada55c7f436.zip
orphaned/Web/API/NavigatorID を廃止 (#2013)
* orphaned/Web/API/NavigatorID を廃止 - orphaned/Web/API/NavigatorID を削除 - orphaned/Web/API/NavigatorID のメンバーを Web/API/Navigator へ移行 - 各メンバーの文書を 2021/08/10 時点の英語版に同期 * Update _redirects.txt * Update _redirects.txt
Diffstat (limited to 'files/ja/orphaned')
-rw-r--r--files/ja/orphaned/web/api/navigatorid/appcodename/index.html27
-rw-r--r--files/ja/orphaned/web/api/navigatorid/appname/index.html27
-rw-r--r--files/ja/orphaned/web/api/navigatorid/appversion/index.html65
-rw-r--r--files/ja/orphaned/web/api/navigatorid/index.html75
-rw-r--r--files/ja/orphaned/web/api/navigatorid/platform/index.html66
-rw-r--r--files/ja/orphaned/web/api/navigatorid/product/index.html39
-rw-r--r--files/ja/orphaned/web/api/navigatorid/useragent/index.html85
7 files changed, 0 insertions, 384 deletions
diff --git a/files/ja/orphaned/web/api/navigatorid/appcodename/index.html b/files/ja/orphaned/web/api/navigatorid/appcodename/index.html
deleted file mode 100644
index 36f09b360f..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/appcodename/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: window.navigator.appCodeName
-slug: orphaned/Web/API/NavigatorID/appCodeName
-tags:
- - DOM
- - DOM_0
- - Gecko
- - Gecko DOM Reference
-translation_of: Web/API/NavigatorID/appCodeName
-original_slug: Web/API/NavigatorID/appCodeName
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>現在のブラウザの内部 "コード" ネームを返します。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox"><code>codeName = window.navigator.appCodeName</code></pre>
-<ul>
- <li><code>codeName</code> : ブラウザの内部名を表す文字列</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:js">console.log(window.navigator.appCodeName);
-</pre>
-<h2 id="Notes" name="Notes">注記</h2>
-<p>Mozilla、Netscape 6、IE5 は全て、内部名に "Mozilla" を用いています。</p>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>{{DOM0()}}</p>
diff --git a/files/ja/orphaned/web/api/navigatorid/appname/index.html b/files/ja/orphaned/web/api/navigatorid/appname/index.html
deleted file mode 100644
index 450525027b..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/appname/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: window.navigator.appName
-slug: orphaned/Web/API/NavigatorID/appName
-tags:
- - DOM
- - DOM_0
- - Gecko
- - Gecko DOM Reference
- - 要更新
-translation_of: Web/API/NavigatorID/appName
-original_slug: Web/API/NavigatorID/appName
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>ブラウザの公式な名前を返します。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox"><code>appName = window.navigator.appName</code></pre>
-<ul>
- <li><code>appName</code> は、ブラウザの名前を表す文字列です。</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:js">dump(window.navigator.appName);
-// NS6 のコンソールに "Navigator" を出力します。
-</pre>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>{{DOM0}}</p>
diff --git a/files/ja/orphaned/web/api/navigatorid/appversion/index.html b/files/ja/orphaned/web/api/navigatorid/appversion/index.html
deleted file mode 100644
index 48436c71ca..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/appversion/index.html
+++ /dev/null
@@ -1,65 +0,0 @@
----
-title: NavigatorID.appVersion
-slug: orphaned/Web/API/NavigatorID/appVersion
-tags:
- - API
- - Deprecated
- - NavigatorID
- - Property
- - Reference
- - appVersion
-translation_of: Web/API/NavigatorID/appVersion
-original_slug: Web/API/NavigatorID/appVersion
----
-<p>{{APIRef("HTML DOM")}} {{Deprecated_Header}}</p>
-
-<p>"<code>4.0</code>" またはそのブラウザーのバージョン情報を表す文字列のどちらかを返します。</p>
-
-<div class="notecard note">
- <h4>注</h4>
- <p>このプロパティがブラウザーの正しいバージョンを返すことを期待しないでください。</p>
-</div>
-
-<h2 id="Syntax">構文</h2>
-
-<pre class="brush: js">window.navigator.appVersion
-</pre>
-
-<h3 id="Returned_value">値</h3>
-
-<p>"<code>4.0</code>" またはそのブラウザーのバージョン情報を表す文字列のどちらかです。</p>
-
-<h2 id="Example">例</h2>
-
-<pre class="brush: js">alert("このブラウザーのバージョンは " + navigator.appVersion + " と報告されています。");
-</pre>
-
-<h2 id="Notes">注</h2>
-
-<p><code>window.navigator.userAgent</code> プロパティもバージョン番号を含んでいる場合がありますが ("<code>Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape 6/6.1</code>" など)、ユーザーエージェント文字列を変更したり、他のブラウザー、プラットフォーム、ユーザーエージェントに「偽装」したり、ブラウザーベンダー自身がこれらのプロパティに無頓着であったりすることを意識しておいてください。</p>
-
-<p><code>window.navigator.appVersion</code>, <code>window.navigator.appName</code>, <code>window.navigator.userAgent</code> の各プロパティは、「ブラウザー推定」 (browser sniffing) コード、すなわち使用しているブラウザーを検出し、それに従ってページを調整しようとするスクリプトで使われてきました。これにより、一部のウェブサイトから拒否されないようにするために、ブラウザーがこれらのプロパティで偽の情報を返さなければならないという現在の状況が発生したのです。</p>
-
-<h2 id="Specifications">仕様書</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- <th scope="col">備考</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#dom-navigator-appversion',
- 'NavigatorID.appVersion')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.NavigatorID.appVersion")}}</p>
diff --git a/files/ja/orphaned/web/api/navigatorid/index.html b/files/ja/orphaned/web/api/navigatorid/index.html
deleted file mode 100644
index bea00f1477..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/index.html
+++ /dev/null
@@ -1,75 +0,0 @@
----
-title: NavigatorID
-slug: orphaned/Web/API/NavigatorID
-tags:
- - API
-translation_of: Web/API/NavigatorID
-original_slug: Web/API/NavigatorID
----
-<p>{{APIRef("HTML DOM")}}</p>
-
-<p>The <code><strong>NavigatorID</strong></code> interface contains methods and properties related to the identity of the browser.</p>
-
-<p>There is no object of type <code>NavigatorID</code>, but other interfaces, like {{domxref("Navigator")}} or {{domxref("WorkerNavigator")}}, implement it.</p>
-
-<h2 id="Properties">Properties</h2>
-
-<p><em>The <code>NavigatorID</code></em><em> interface doesn't inherit any property.</em></p>
-
-<dl>
- <dt>{{domxref("NavigatorID.appCodeName")}} {{readonlyInline}}{{deprecated_inline}}</dt>
- <dd>Always returns <code>'Mozilla'</code>, on any browser. This property is kept only for compatibility purpose.</dd>
- <dt>{{domxref("NavigatorID.appName")}} {{readonlyInline}} {{deprecated_inline}}</dt>
- <dd>Returns the official name of the browser. Do not rely on this property to return the correct value.</dd>
- <dt>{{domxref("NavigatorID.appVersion")}} {{readonlyInline}} {{deprecated_inline}}</dt>
- <dd>Returns the version of the browser as a string. Do not rely on this property to return the correct value.</dd>
- <dt>{{domxref("NavigatorID.platform")}} {{readonlyInline}} {{deprecated_inline}}</dt>
- <dd>Returns a string representing the platform of the browser. Do not rely on this property to return the correct value.</dd>
- <dt>{{domxref("NavigatorID.product")}} {{readonlyInline}} {{deprecated_inline}}</dt>
- <dd>Always returns <code>'Gecko'</code>, on any browser. This property is kept only for compatibility purpose.</dd>
- <dt>{{domxref("NavigatorID.userAgent")}} {{readonlyInline}}</dt>
- <dd>Returns the user agent string for the current browser.</dd>
-</dl>
-
-<h2 id="Methods">Methods</h2>
-
-<p><em>The </em><em><code>NavigatorID</code></em><em> interface doesn't inherit any method.</em></p>
-
-<dl>
- <dt>{{domxref("NavigatorID.taintEnabled()")}} {{deprecated_inline()}}</dt>
- <dd>Always returns <code>false</code>. JavaScript taint/untaint functions were removed in JavaScript 1.2. This method is only kept for compatibility purpose</dd>
-</dl>
-
-<h2 id="Specifications">Specifications</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#navigatorid', 'NavigatorID')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>Added the <code>appCodeName</code> property and the <code>taintEnabled()</code> method,  for compatibility purpose.</td>
- </tr>
- <tr>
- <td>{{SpecName('HTML5 W3C', '#navigatorid', 'NavigatorID')}}</td>
- <td>{{Spec2('HTML5 W3C')}}</td>
- <td>Initial specification.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility">Browser compatibility</h2>
-
-<p>{{Compat("api.NavigatorID")}}</p>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>The {{domxref("Navigator")}} and {{domxref("WorkerNavigator")}} interfaces that implement it.</li>
-</ul>
diff --git a/files/ja/orphaned/web/api/navigatorid/platform/index.html b/files/ja/orphaned/web/api/navigatorid/platform/index.html
deleted file mode 100644
index a369a1f12e..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/platform/index.html
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: NavigatorID.platform
-slug: orphaned/Web/API/NavigatorID/platform
-tags:
- - API
- - Navigator
- - NavigatorID
- - Property
- - Reference
- - platform
-translation_of: Web/API/NavigatorID/platform
-original_slug: Web/API/NavigatorID/platform
----
-<p>{{APIRef("HTML DOM")}}</p>
-
-<p>ブラウザーのプラットフォームを表す文字列を返します。仕様書ではブラウザーが常に空文字列を返すことを許可していますので、信頼できる答えを得るためにこのプロパティを頼らないようにしてください。</p>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox"><em>platform</em> = <em>navigator</em>.platform
-</pre>
-
-<ul>
- <li><code>platform</code> : 文字列 (例: "Win32" 、 "Linux i686" 、 "MacPPC" 、 "MacIntel" ...等)</li>
-</ul>
-
-<h3 id="Value" name="Value">値</h3>
-
-<p>ブラウザーを実行しているプラットフォームを識別する {{domxref("DOMString")}}、あるいはブラウザーがプラットフォームの識別を断る (または識別できない) 場合は空文字列になります。<code>platform</code> は空文字列か、ブラウザーを実行しているプラットフォームを表す文字列でなければなりません。</p>
-
-<p>例: "<code>MacIntel</code>", "<code>Win32</code>", "<code>FreeBSD i386</code>", "<code>WebTV OS</code>"</p>
-
-<h2 id="Example" name="Example">例</h2>
-
-<pre class="brush:js">console.log(navigator.platform);</pre>
-
-<h2 id="Notes" name="Notes">注記</h2>
-
-<p>Chrome、Edge、Firefox 63 以降を含むほとんどのブラウザーは、64 ビット版の Windows で実行していても <code>"Win32"</code> を返します。Internet Explorer やバージョン 63 より前の Firefox は <code>"Win64"</code> を返します。</p>
-
-<p>Firefox は設定項目 <code>general.platform.override</code> で、このプロパティが返す値を上書きできます。</p>
-
-<h2 id="Specifications" name="Specifications">仕様</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">策定状況</th>
- <th scope="col">コメント</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#dom-navigator-platform', 'NavigatorID.platform')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>初期定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
-
-
-
-<p>{{Compat("api.NavigatorID.platform")}}</p>
diff --git a/files/ja/orphaned/web/api/navigatorid/product/index.html b/files/ja/orphaned/web/api/navigatorid/product/index.html
deleted file mode 100644
index 7c9649cf3d..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/product/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
----
-title: window.navigator.product
-slug: orphaned/Web/API/NavigatorID/product
-tags:
- - DOM
- - DOM_0
- - Gecko
- - Gecko DOM Reference
-translation_of: Web/API/NavigatorID/product
-original_slug: Web/API/NavigatorID/product
----
-<div>
- {{ApiRef}}</div>
-<h2 id="Summary" name="Summary">概要</h2>
-<p>このプロパティは、現在のブラウザの製品名を返します。</p>
-<h2 id="Syntax" name="Syntax">構文</h2>
-<pre class="syntaxbox"><i>productName</i> = window.navigator.product
-</pre>
-<ul>
- <li><code>productName</code> : 製品名を表す文字列</li>
-</ul>
-<h2 id="Example" name="Example">例</h2>
-<pre class="brush:html">&lt;script&gt;
-function prod() {
- dt = document.getElementById("d");
- dt.innerHTML = window.navigator.product;
-}
-&lt;/script&gt;
-
-&lt;button onclick="prod();"&gt;product&lt;/button&gt;
-&lt;div id="d"&gt; &lt;/div&gt;
-
-&lt;!-- "Gecko" などの文字列が表示される --&gt;
-</pre>
-<h2 id="Notes" name="Notes">注記</h2>
-<p>製品名は、ユーザエージェント全体の文字列の一部(プラットフォームの直後)です。例えば、Netscape 6.1 を表すユーザエージェントでは、製品名は、"Gecko" であり、ユーザエージェント文字列全体は、次の通りです。</p>
-<pre>Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1</pre>
-<h2 id="Specification" name="Specification">仕様</h2>
-<p>{{DOM0}}</p>
diff --git a/files/ja/orphaned/web/api/navigatorid/useragent/index.html b/files/ja/orphaned/web/api/navigatorid/useragent/index.html
deleted file mode 100644
index 6fe20d0c79..0000000000
--- a/files/ja/orphaned/web/api/navigatorid/useragent/index.html
+++ /dev/null
@@ -1,85 +0,0 @@
----
-title: NavigatorID.userAgent
-slug: orphaned/Web/API/NavigatorID/userAgent
-tags:
- - API
- - Deprecated
- - NavigatorID
- - Property
- - Read-only
- - Reference
-translation_of: Web/API/NavigatorID/userAgent
-original_slug: Web/API/NavigatorID/userAgent
----
-<p>{{ApiRef("HTML DOM")}}</p>
-
-<p><code><strong>NavigatorID.userAgent</strong></code> は読み取り専用のプロパティで、現在のブラウザーのユーザーエージェント文字列を返します。</p>
-
-<div class="note">
-<p>仕様書では、ブラウザーがこのフィールドを介して提供する情報をできるだけ少なくすることを求めています。このプロパティの値は、同じブラウザーの将来のバージョンでも同じままであると仮定してはいけません。まったく使用しないようにしたり、ブラウザーの現在のバージョンと過去のバージョンのためだけに使用するようにしてください。新しいブラウザーは、古いブラウザーと同じ UA、またはその一部を使い始めるかもしれません。ブラウザーエージェントが本当にこのプロパティによって広告されたものであるという保証は本当にありません。<br>
-<br>
-また、ブラウザのユーザーはこのフィールドの値を変更することができることを覚えておいてください (UA なりすまし)。</p>
-</div>
-
-<p>ユーザーエージェント文字列の検出に基づくブラウザーの識別は<strong>信頼性が低く</strong>、ユーザーエージェント文字列はユーザーが設定可能なので<strong>推奨されません</strong>。例えば、以下のようになります。</p>
-
-<ul>
- <li>Mozilla Suite と Firefox では、 about:config の "general.useragent.override" 設定を使うことができます。いくつかの Firefox の拡張や多機能バーでも設定可能です。</li>
- <li>Opera 6 以降では、メニューからブラウザー識別文字列を設定できます。</li>
- <li>Microsoft Internet Explorer では、 Windows レジストリを利用できます。</li>
- <li>Safari と iCab は、メニューから、ブラウザユーザエージェントを定義済みの Internet Explorer、または、 Netscape の文字列に変更できます。</li>
-</ul>
-
-<h2 id="Syntax" name="Syntax">構文</h2>
-
-<pre class="syntaxbox notranslate">var <var>ua</var> = navigator.userAgent;
-</pre>
-
-<h3 id="Value" name="Value">値</h3>
-
-<p>{{domxref("DOMString")}} で、ブラウザーが {{Glossary("HTTP")}} ヘッダーで提供する完全なユーザーエージェント文字列と、 {{domxref("Navigator")}} オブジェクト上のメソッドやその他の関連メソッドへのレスポンスを指定します。</p>
-
-<p>ユーザーエージェント文字列は形式的な構造に基づいて構築されており、いくつかの情報に分解することができます。これらの情報の各部分は、ユーザ-が設定可能な他の Navigator のプロパティから来ています。Gecko ベースのブラウザは以下の一般的な構造に準拠しています。</p>
-
-<pre class="notranslate">userAgent = appCodeName/appVersion number (Platform; Security; OS-or-CPU;
-Localization; rv: revision-version-number) product/productSub
-Application-Name Application-Name-version
-</pre>
-
-<h2 id="Example" name="Example">例</h2>
-
-<pre class="brush:js notranslate">alert(window.navigator.userAgent)
-// alerts "Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.2) Gecko/20010725 Netscape6/6.1"
-</pre>
-
-<ul>
-</ul>
-
-<h2 id="Specifications" name="Specifications">仕様書</h2>
-
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">仕様書</th>
- <th scope="col">状態</th>
- <th scope="col">備考</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#dom-navigator-useragent', 'NavigatorID.userAgent')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>初回定義</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
-
-<p>{{Compat("api.NavigatorID.userAgent")}}</p>
-
-<h2 id="See_also" name="See_also">関連情報</h2>
-
-<ul>
- <li>{{httpheader("User-Agent")}} HTTP ヘッダー</li>
-</ul>