rel-tag-ja
rel-tag
仕様ドラフト 2005-01-10
編者/作者
原案
著作権
This specification is (C) 2004-2024 by the authors. However, the authors intend to submit (or already have submitted, see details in the spec) this specification to a standards body with a liberal copyright/licensing policy such as the GMPG, IETF, and/or W3C. Anyone wishing to contribute should read their copyright principles, policies and licenses (e.g. the GMPG Principles) and agree to them, including licensing of all contributions under all required licenses (e.g. CC-by 1.0 and later), before contributing.
特許
この仕様はロイヤリティーフリーの特許方針に帰属するものです。特許方針に関してはW3C Patent PolicyやRFC3667、RFC3668をご覧下さい。
概要
rel-tagはmicroformatsのひとつです。ハイパーリンクにrel="tag"
を書き加える事により、リンク元のページに対しページ作者が定義した「タグ(キーワードやテーマ)」を関連づけることができます。
タグはblogの記事内容すべてに関係する言葉とは限りません。たとえば次のようなリンクでタグを関連づけるとします。
<a href="http://technorati.com/tag/tech" rel="tag">tech</a>
これは作者がこのWebページ(または内容の一部)に「tech」というタグをつけていることを意味します。
リンク先のページはWeb上に存在するべき(SHOULD)であり、またタグの意味はリンクテキストの内容よりも、リンク先のページが持つ情報が優先されます。たとえば次のようなマークアップでページに対しタグ付けを行ったとします。
<a href="http://technorati.com/tag/tech" rel="tag">fish</a>
URLの最後にある単語がタグの意味として扱われるので、この場合ページのタグは「fish」ではなく「tech」となります。
rel-tagの意図、範囲
rel-tagはWebページ(又はその一部)に「タグ付け」をする目的で作られました。このため、任意のURLやページ外部のコンテンツに対し、rel-tagによりタグ付けを行える様にはできていません。現在のページから外部のURLへのタグ付けの一般的な構文についての要望はありますが、rel-tagにおいてその議論はなされるべきでないと考えています。xFolkやhReviewにてURLのタグ付けについて考えられているので、そちらを参照してください。
タグを用いるシステムにおいては、タグの表現に特化したrel-tagは優れたフォーマットと言えるでしょう。
XMDPプロファイル
<dl class="profile"> <dt id="rel">rel</dt> <dd><p> <a rel="help" href="http://www.w3.org/TR/html401/struct/links.html#adef-rel"> HTML4 definition of the 'rel' attribute.</a> Here is an additional value.</p> <dl> <dt id="tag">tag</dt> <dd>Indicates that the referred resource serves as a "tag", or keyword/subject, for the referring page.</dd> </dl> </dd> </dl>
Tag Spaces
タグはURIの中に分かりやすい形で埋め込まれています、そのためURIからタグを機械的に抽出することが比較的容易です。具体的に説明すると、タグはURIパスの最後にある単語(一番後ろの"/"より後の文字列)となります。たとえば
http://www.example.com/tags/foo
というURIが示すタグは「foo」となります。
このため、ある二つのURIをタグとみなし比較する場合は、まず始めにタグをパスの最後から抽出することが推奨(SHOULD)されます。
タグの抽出・比較についてはもう少し標準的な仕組みが必要だと考えています。
rel="tag"を埋め込んだハイパーリンクが示す先はタグスペース(同じタグの付いた文書の一覧またはタグの定義)であるよう求められています。たとえば、リンク先の文書が次のURLで表されるとします。
http://technorati.com/tag/tech
この場合、この文書は「tech」というタグに関するタグスペースであるとみなされます。
タグとなる文字列はURLパスの最後にのみ記すことを許されています。これはクエリパラメータやフラグメント識別子がタグとして認識されないことを意味します。さて、次のURLはどう扱われるでしょうか。
http://technorati.com/tag/tech?tag=fish#emu
この場合も先述のとおり「tech」というタグに関するもので、「fish」や「emu」についてのものではないことに注意してください。
タグスペースに関する決まり事は「タグとなる文字列がURLパスの最後にあること」のみです。このためタグスペースはどのドメインにおいても提供可能となっています。ページ作者はいくつかのタグスペースを選びリンクすることで、特定の意味をタグに持たせることが可能です。たとえばWikipediaのページをタグスペースに用いる事ができます。
http://en.wikipedia.org/wiki/Technology
この場合、タグは「Technology」を指します。
URLの末にあるスラッシュは無視されます。つまり次のURL
http://technorati.com/tag/Technology/
これをrel-tagに用いる場合、最後のスラッシュは取り除かれ、
http://technorati.com/tag/Technology
と同じ扱いを受けることになります。
Encoding issues
タグにおけるスペースは「+
」又は「%20
」へとエンコードして含めることが可能です。Unicode文字はRFC 3986で述べられている様にエンコードされます。たとえば次のようになります。
<a href="http://technorati.com/tag/Sant%C3%A9+et+bien-%C3%AAtre" rel="tag">Santé et bien-être</a>
Wikipediaをタグスペースとして利用する場合には「%20
」を利用すべきです。Wikipediaは「+」を「%2B
」へと置換してしまうため、通常ページのタイトルに存在しない「+」を表示させてしまうからです。
目にみえるメタデータとしてのタグ
rel="tag"
を含んだハイパーリンクは、Webページ上に現れるよう期待されています。これはページ上に現れず、閲覧者の目に届く事がほとんどないmetaキーワードとrel-tagの大きな違いです。タグがWebページに表示されるため、metaキーワードよりも弾力的にキーワードspamなどの問題に対処することができると考えています。
タグのリンクが目に見えることにより、ページ閲覧者はそのリンクが悪用されたものかを簡単に知ることができます。このためリンクを用いた不正行為をある程度抑止できると考えています。どんな目に見えないメタデータが生成されているのかを知らないページ作成者にも効果的でしょう。
このため、<link rel="tag" href="..." />
のような目に見えないタグリンクの表現は実装されるべきではありません(SHOULD NOT)。
Implementations
This section is informative.
The following implementations have been developed which either generate or parse rel-tag links. If you have a rel-tag implementation, feel free to add it to the top of this list. Once the list grows too big, we'll make a separate wiki page.
- Nutch has a rel-tag parser committed to their svn repository.
- Dreamweaver Extension suite from the Web Standards Project enables rel-tagging from within Dreamweaver 8.
- Scooch slide show creator allows authors to generate rel-tags and group slide shows by rel-tag via a list or cloud with tag usage count.
- The Freetag plugin for the Serendipity blog software supports rel-tags on a per-entry basis, as well as inside of its tag clouds. (The Freetag plugin is available inside of SPARTACUS)
- pnh_mf is a plugin for Textpattern that supports embedding rel-tags and other microformats in templates and blog posts. Written by Chris Casciano.
- tru_tags is a plugin for Textpattern that supports rel-tagging blog posts via the Keywords field.
- LiveJournal - see also their FAQ regarding their tags support
- TagsLinks Turn each tag into links that let you find related content on tagging services.
- ODEO publishes rel-tags for user entered tags.
- EVDB publishes rel-tags for user entered tags.
- Tag plugin for WordPress
- Tag plugin for Blosxom
- Technorati first implemented rel-tag in its Technorati Tags service. Technorati indexes rel-tag tags.
- Greasemonkey script for Firefox that generates tags for Blogger
References
Normative References
- HTML 4
- XHTML 1
- XMDP
- RFC 3986 specifies URL syntax. Section 3.3 specifies URL paths and path segments.
Informative References
- hReview uses rel-tag for tags and scalar tags
- xFolk uses rel-tag to build a distributed remote resource tagging construct
- Attention.XML uses rel-tag for reader tagging of pages, posts, feeds
- hCard can use rel-tag for categories
- hCalendar can use rel-tag for categories
- Using Technorati Tags
- Contributed from http://developers.technorati.com/wiki/RelTag
Discussions
- フィードバックはrel-tag-feedbackにてお願いします。
- rel-tagについて言及しているページも参照してください。
- これまでの経緯についてはDerek PowazekによるHow Tags Happened at Technoratiをお読み下さい。
Q&A
- rel-tagに関して分からないことがありますか?それがrel属性に関する疑問ならばrel FAQを、rel-tagに関する疑問であればrel-tag FAQをお読み下さい。これらのページを読んでも疑問が解消されない場合は、microformats-discussにメールを投稿するとよいでしょう。
Issues
- rel-tagの仕様に問題点を見つけた場合は、rel-tag issuesにて報告してください。