aboutsummaryrefslogtreecommitdiff
path: root/files/ja/creating_a_microsummary
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/creating_a_microsummary
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/creating_a_microsummary')
-rw-r--r--files/ja/creating_a_microsummary/index.html181
1 files changed, 181 insertions, 0 deletions
diff --git a/files/ja/creating_a_microsummary/index.html b/files/ja/creating_a_microsummary/index.html
new file mode 100644
index 0000000000..808666a3a8
--- /dev/null
+++ b/files/ja/creating_a_microsummary/index.html
@@ -0,0 +1,181 @@
+---
+title: Microsummary を作成する
+slug: Creating_a_Microsummary
+tags:
+ - Microsummaries
+translation_of: Archive/Mozilla/Creating_a_microsummary
+---
+<p>microsummary generator はページのコンテンツから microsummary を生成するためのコマンドの集合です。ウェブページは generator を <code>&lt;head&gt;</code> 要素の <code>&lt;link rel="microsummary"&gt;</code> 要素により参照できます。generators はそれが適用されるページのリストを持っている場合、ユーザにより個別にダウンロードしたりインストールすることができます。</p>
+<p>このチュートリアルでは、<a href="http://www.spreadfirefox.com/">Spread Firefox home page</a> 用に Firefox の現在のダウンロード数をラベル <cite>Fx downloads</cite> とともに表示する microsummary generator を作成します。例: <cite>174475447 Fx downloads</cite></p>
+<p>ページを microsummary に変換する XSLT 変換シートを作成し、generator をページに適用させるためにどのように記述するかを学び、generator をダウンロードおよびインストールできるようにします。</p>
+<p>このチュートリアルでは、ステップごとに変換シートやその他のコードを再掲し、追加された新しい項目は分りやすいよう <b>太字で</b> 表示されます。</p>
+<p>注意: もしあなたがウェブサイトデザイナーで、サイトのページに microsummary を作りたいなら、そのようなジェネレータを書くことが出来ます。しかし、より簡単で効率的な手法は、ページを生成するときに用いているのと同じツールと言語を用いてサーバーサイドで microsummary を作成することです。</p>
+<p>例えば、サイトでページを生成するのに PHP を使用しているなら、view=microsummary と いう URL パラメータが指定されたときに microsummary を生成する PHP コードを書くことが出来ます。そして、 <code>&lt;link rel="microsummary"&gt;</code> 要素を用いて microsummary をページ内でリンクします。</p>
+<pre class="brush:xml">&lt;head&gt;
+ &lt;link rel="microsummary" href="index.php?view=microsummary"&gt;
+&lt;/head&gt;
+</pre>
+<p>Firefox は <code>&lt;link rel="microsummary"&gt;</code> 要素を発見すると、 <code>href</code> 属性の URL を読み込みます。URL がジェネレータを指していれば、それをページの microsummary を生成するジェネレータとして用います。一方、URL がプレーンテキスト(または、プレーンテキストに変換可能な HTML コンテンツ)を返せば、Firefox はそのコンテンツをページの microsummary として用います。</p>
+<h2 id="Beginnings" name="Beginnings">はじめに</h2>
+<p>Generators は <cite><a href="http://www.mozilla.org/microsummaries/0.1" rel="freelink">http://www.mozilla.org/microsummaries/0.1</a></cite> を名前空間とし、ルート要素が <code>&lt;generator&gt;</code> である XML 文書として表現されます。generator を作成するにはまず、新規に空のテキストファイルを作り、XML 宣言と空の <code>&lt;generator&gt;</code> タグを追加します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"&gt;
+&lt;/generator&gt;
+</pre>
+<h2 id="Giving_it_a_Name" name="Giving_it_a_Name">名前をつける</h2>
+<p>generator は生成する microsummary に対する名前として <code>name</code> 属性を持つ必要があります。名前はこの microsummary がどんな情報を提供するのかをユーザに明確に示すものでなければなりません。われわれの generator は Firefox のダウンロード数を表示する microsummary を提供するので、"Firefox Download Count" という名前をつけることにします。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+&lt;/generator&gt;
+</pre>
+<h2 id="Adding_an_XSLT_Transform_Sheet" name="Adding_an_XSLT_Transform_Sheet">XSLT 変換シートを追加する</h2>
+<p>generator はページのコンテンツを microsummary に変換する XSLT 変換シート(XSLT スタイルシート)を含んでいる必要があります。XSLT はドキュメントを同じ情報を持つ異なる表現に変換するための強力な言語です。</p>
+<p>generator に <code>&lt;template&gt;</code> で囲んで XSLT 変換シートを追加します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+&lt;/generator&gt;
+</pre>
+<p>microsummary generator はリッチテキストを出力をするような任意の XSLT を含むことができますが、Firefox は現在、XSLT のテキスト出力の表示しかサポートしていないことに注意してください。</p>
+<h2 id="Specifying_the_Output_Type" name="Specifying_the_Output_Type">出力タイプを指定する</h2>
+<p>XSLT 変換シートはテキスト形式の microsummary を生成するので、XSLT の <code>&lt;output&gt;</code> 要素でこれを指定します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+&lt;/generator&gt;
+</pre>
+<h2 id="Using_a_Simple_XSLT_.3Ctemplate.3E" name="Using_a_Simple_XSLT_.3Ctemplate.3E">簡単な XSLT <code>&lt;template&gt;</code> を使用する</h2>
+<p>XSLT プロセッサは、変換シートの XSLT <code>&lt;template&gt;</code> 要素をドキュメントのノード集合と比較することによりドキュメントを変換します。<code>&lt;template&gt;</code> の <code>match</code> 属性があるノードとマッチすると、プロセッサは要素のコンテンツで定義された変換を実行します。</p>
+<p>ドキュメントのノードツリーを探索し、ドキュメントのコンテンツに基づいて再帰的に出力を生成することができるので、このメカニズムはとても強力です。しかし、Spread Firefox の microsummary を生成する目的においては、ドキュメントのルート要素にマッチする単一の <code>&lt;template&gt;</code> 要素だけが必要です。以下がそのコードです。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;template match="/"&gt;
+ &lt;/template&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+&lt;/generator&gt;
+</pre>
+<h2 id="Including_the_Download_Count" name="Including_the_Download_Count">ダウンロード数を含める</h2>
+<p>XSLT 変換シートの出力にダウンロード数を含めるには、テンプレートに XSLT の <code>&lt;value-of&gt;</code> 要素を追加する必要があります。その <code>select</code> 属性にはダウンロード数を含むノードを指し示す XPath 記述を記入します。</p>
+<p>XPath は HTML/XML ドキュメントのノードを特定するための言語です。これにはこれらのノードとそのコンテンツを操作するための基本的な機能が含まれています。特定のノードを表現する XPath 記述を得る最も手っ取り早いやりかたは <a class="link-https" href="https://addons.mozilla.org/firefox/1095/">拡張機能 XPath Checker</a> を使うことです。</p>
+<p>拡張機能をインストールして(インストールを完了するために Firefox を再起動します) <a href="http://www.spreadfirefox.com/">Spread Firefox ホームページ</a> へ行って、Firefox のダウンロード数を見つけ(右列の一番下の大きな数値)、数字の上で右クリックしコンテキストメニューから <cite>View XPath</cite> を選択します。.</p>
+<p>XPath Checker は新規ウィンドウを開きます。ウィンドウには <cite>XPath</cite> フィールドが含まれ、そこにはダウンロード数をあらわすノードを指す XPath 記述: <cite>id('download-count')</cite> が表示されています。</p>
+<p>XSLT の <code>&lt;template&gt;</code> 要素に <code>&lt;value-of&gt;</code> 要素を追加し、<code>select</code> 属性に XPath 記述を記入します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;template match="/"&gt;
+ &lt;value-of select="id('download-count')"/&gt;
+ &lt;/template&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+&lt;/generator&gt;
+</pre>
+<h2 id="Adding_Text" name="Adding_Text">テキストを追加する</h2>
+<p>microsummary にラベル <cite>Fx downloads</cite> を追加するには、追加したいコンテンツをもつ XSLT の <code>&lt;text&gt;</code> 要素を XSLT の <code>&lt;template&gt;</code> 要素に追加する必要があります。</p>
+<p>Add a <code>&lt;text&gt;</code> element to the XSLT template with the content <cite>Fx downloads</cite>:</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;template match="/"&gt;
+ &lt;value-of select="id('download-count')"/&gt;
+ &lt;text&gt; Fx downloads&lt;/text&gt;
+ &lt;/template&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+&lt;/generator&gt;
+</pre>
+<p>複数のスペースが1個にまとめられる HTML とは異なり、XSLT タグ間のスペースは XSLT の出力には含まれないので、ダウンロード数と分離するためのスペースを追加することに注意してください。</p>
+<p>この追加で、Spread Firefox のホームページを microsummary に変換する XSLT 変換シートの作成は終了です。</p>
+<h2 id="Specifying_the_Page_to_which_the_Generator_Applies" name="Specifying_the_Page_to_which_the_Generator_Applies">generator を適用するページを指定する</h2>
+<p>ここまでで変換シートの作成が終了したので、次にそれを適用するページを指定する必要があります。もし我々が Spread Firefox のウェブ管理者なら、 <code>&lt;head&gt;</code> 要素に <code>&lt;link rel="microsummary"&gt;</code> タグを追加することにより、ページ自身から generator を参照するだけで済みます。</p>
+<pre class="brush:xml">&lt;head&gt;
+ ...
+ &lt;link rel="microsummary" href="path/to/our/generator.xml"&gt;
+&lt;/head&gt;
+</pre>
+<p>我々はサイト管理者ではありませんが、generator の中に generator をどのページに適用するかを指定し、generator をダウンロードしたりインストールできるようにすることができます。generator を適用するページを指定するには、 <code>&lt;generator&gt;</code> 要素の中で <code>&lt;pages&gt;</code> 要素を使用します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1"
+ name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;template match="/"&gt;
+ &lt;value-of select="id('download-count')"/&gt;
+ &lt;text&gt; Fx downloads&lt;/text&gt;
+ &lt;/template&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+ &lt;pages&gt;
+ &lt;/pages&gt;
+&lt;/generator&gt;
+</pre>
+<p><code>&lt;pages&gt;</code> 要素は generator を適用する、あるいは適用しないページを指定する <code>&lt;include&gt;</code> と <code>&lt;exclude&gt;</code> 要素の並びを記述できます。</p>
+<p>generator をページに適用するには、<code>&lt;include&gt;</code> 要素を追加します。そのコンテンツはページにマッチングさせる正規表現です。generator をページに適用させないためには、<code>&lt;exclude&gt;</code> 要素を追加します。</p>
+<p>デフォルトでは、generators はどのページにも適用されないので、適用するページを明示的に指定する必要があります。また、以前適用していたページがない限り、どのページも適用除外する必要はありません。</p>
+<p>Spread Firefox のホームページにマッチする <code>&lt;include&gt;</code> 要素を追加します。</p>
+<pre class="brush:xml">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
+&lt;generator xmlns="http://www.mozilla.org/microsummaries/0.1" name="Firefox Download Count"&gt;
+ &lt;template&gt;
+ &lt;transform xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0"&gt;
+ &lt;output method="text"/&gt;
+ &lt;template match="/"&gt;
+ &lt;value-of select="id('download-count')"/&gt;
+ &lt;text&gt; Fx downloads&lt;/text&gt;
+ &lt;/template&gt;
+ &lt;/transform&gt;
+ &lt;/template&gt;
+ &lt;pages&gt;
+ &lt;include&gt;http://(www\.)?spreadfirefox\.com/(index\.php)?&lt;/include&gt;
+ &lt;/pages&gt;
+&lt;/generator&gt;
+</pre>
+<p>もし正規表現になじみがないなら、<a href="/ja/docs/Creating_regular_expressions_for_a_microsummary_generator">Creating regular expressions for a microsummary generator</a> が参考になります。</p>
+<h2 id="Making_the_Generator_Available_for_Download" name="Making_the_Generator_Available_for_Download">generator をダウンロードできるようにする</h2>
+<p>generator が Spread Firefox ホームページに適用できるようになったので、残りはこれをダウンロードできるようにすることだけです。そのためには、これをウェブに置いてどこかのページに JavaScript のリンクを作成する必要があります。このリンクは generator のダウンロードとインストールを行うための Firefox の <cite>window.sidebar.addMicrosummaryGenerator()</cite> メソッドをコールするようにします。</p>
+<p>例えば、generator を <a href="http://people.mozilla.com/~myk/microsummaries/tutorial/sfx-generator.xml" rel="freelink">http://people.mozilla.com/~myk/micro...-generator.xml</a> に置いて、<a href="http://people.mozilla.com/~myk/microsummaries/tutorial/index.html" rel="freelink">http://people.mozilla.com/~myk/micro...ial/index.html</a> からインストールできるようにしたければ、次のようなコードを <cite>index.html</cite> に追加します。</p>
+<pre class="brush:xml">&lt;a href="javascript:window.sidebar.addMicrosummaryGenerator('http://people.mozilla.com/~myk/microsummaries/tutorial/sfx-generator.xml')"&gt;
+ Install the Spread Firefox home page microsummary!
+&lt;/a&gt;
+</pre>
+<p>microsummary をサポートしていないブラウザでこのリンクをクリックすると JavaScript のエラーが発生しますが、このようなユーザのエクスペリエンスを向上させるために、microsummary 対応のブラウザを使用しているかどうかを調べて、未対応ならば説明を表示すべきでしょう。例えば次のようなコードです。</p>
+<pre class="brush:js">&lt;script&gt;
+const warning = "Sorry, you need a microsummary-enabled browser like Firefox 2.0 to install and use microsummary generators.";
+
+function addGenerator(url) {
+ if (typeof window.sidebar == "object" &amp;&amp;
+ typeof window.sidebar.addMicrosummaryGenerator == "function")
+ window.sidebar.addMicrosummaryGenerator(url);
+ else
+ alert(warning);
+}
+&lt;/script&gt;
+&lt;a href="javascript:addGenerator('http://people.mozilla.com/~myk/microsummaries/tutorial/sfx-generator.xml')"&gt;
+ Install the Spread Firefox home page microsummary!
+&lt;/a&gt;
+</pre>
+<p><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=341283" title="Can't install a microsummary generator if it has a non-absolute URL">バグ 341283</a> により、<cite>addMicrosummaryGenerator()</cite> は相対 URL を受け付けないことに注意してください。</p>
+<h2 id="Conclusion" name="Conclusion">おわりに</h2>
+<p>これでインストールすると最新の Firefox ダウンロード数を表示する microsummary generator ができました。Spread Firefox ホームページをブックマークして、 <cite>Add Bookmark</cite> ダイアログの <cite>Summary</cite> ドロップダウンメニューから microsummary を選んでください。</p>
+<p>microsummary に関する詳細な情報は <a href="http://wiki.mozilla.org/Microsummaries">Microsummaries home page</a> を参照してください。</p>