<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>メール人語 &#187; html5</title>
	<atom:link href="http://blog.itoy.jp/tag/html5/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.itoy.jp</link>
	<description>自称ITエンジニアのライフログ。Web系システムの開発/運用のかたわら、iPhone、QRコード、B級食品、何でも手を出します。</description>
	<lastBuildDate>Sat, 31 Dec 2011 15:28:30 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://blog.itoy.jp/tag/html5/feed" />
		<item>
		<title>Webサイトの「Copyright～」にaddressタグは適切？</title>
		<link>http://blog.itoy.jp/web-site/copyright.html</link>
		<comments>http://blog.itoy.jp/web-site/copyright.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 15:34:10 +0000</pubDate>
		<dc:creator>ドンQ</dc:creator>
				<category><![CDATA[Webサイト]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[知的財産権]]></category>

		<guid isPermaLink="false">http://localhost/?p=632</guid>
		<description><![CDATA[皆さん、ホームページの著作権表示のタグは何使ってますか？ よくWebサイトのフッターに、「Copyright ～」みたいな著作権の表示がされているのを見かけますよね。 あの著作権表記のHTMLのタグは何を使ってますか？  [...]]]></description>
			<content:encoded><![CDATA[<h3>皆さん、ホームページの著作権表示のタグは何使ってますか？</h3>
<p>よくWebサイトのフッターに、「<strong>Copyright </strong>～」みたいな著作権の表示がされているのを見かけますよね。<br />
あの著作権表記のHTMLのタグは何を使ってますか？<br />
個人的に、ずーっと気になってたのが、著作権表示に利用される<strong>address</strong>タグです。<br />
実際に有名なサイトでも多数使われています。</p>
<h4>Yahoo! JAPAN</h4>
<blockquote><p>&lt;address&gt;Copyright (C) 2009 Yahoo Japan Corporation. All Rights Reserved.&lt;/address&gt;</p></blockquote>
<h4>mixi</h4>
<blockquote><p>&lt;address&gt;Copyright (C) 1999-2009 mixi, Inc. All rights reserved.&lt;/address&gt;</p></blockquote>
<h4>三井住友銀行</h4>
<blockquote><p>&lt;address lang=&quot;en&quot; class=&quot;en&quot;&gt;Copyright &amp;copy; 2006 Sumitomo Mitsui Banking Corporation. All Rights Reserved.&lt;/address&gt;</p></blockquote>
<p>どうやら、かなり信頼できるWebサイトが多数採用してるタグのようです。</p>
<p><span id="more-632"></span></p>
<h3>w3cは、addressタグの使い方を何と言ってる？（HTML5まで）</h3>
<p>とりあえずw3cに行って、addressエレメントの定義を調べてみました。<br />
調査範囲は、html3、html4、html5です。<br />
（すっごく慣れない翻訳作業をやったんで、正しい訳があればぜひご指摘を！）</p>
<h4>HTML 3.0</h4>
<p><a href="http://www.w3.org/MarkUp/html3/address.html" target="_blank">The ADDRESS element</a><br />
<BLOCKQUOTE>The ADDRESS element specifies such information as address, signature and authorship for the current document</BLOCKQUOTE>ADDRESS要素は、ドキュメントの著作者、署名、住所などの情報を表します。</p>
<h4>HTML 4.01</h4>
<p><a href="http://www.w3.org/TR/html401/struct/global.html#h-7.5.6" target="_blank">7.5.6 The ADDRESS element</a></p>
<blockquote><p>The ADDRESS element may be used by authors to supply contact information for a document or a major part of a document such as a form.<br />
This element often appears at the beginning or end of a document.</p></blockquote>
<p>ADDRESS要素は、著作者がドキュメントまたはその主要な部分についてのフォームのような連絡先を表示するために使われます。<br />
（ん？何だか日本語訳に失敗しました？）</p>
<h4>HTML5</h4>
<p><a href="http://www.html5.jp/tag/elements/address.html" target="_blank">4.4.10 The address element</a></p>
<blockquote><p>The address element represents the contact information for its nearest article or body element ancestor.<br />
If that is the body element, then the contact information applies to the document as a whole.<br />
The address element must not be used to represent arbitrary addresses (e.g. postal addresses),<br />
unless those addresses are in fact the relevant contact information.<br />
(The p  element is the appropriate element for marking up postal addresses in general.)<br />
The address element must not contain information other than contact information.</p></blockquote>
<p>ADDRESS要素は、直近の記事またはページ全体に対する連絡先情報を表します。<br />
BODY要素に記述されているADDRESS要素は、そのドキュメント全体に対する連絡先を表します。<br />
もしその連絡先が本当の連絡先情報でない限り、任意の連絡先（たとえば郵便物の住所）のために使ってはいけません。<br />
（郵便物の住所を表現する時は、通常はP要素を使います）<br />
ADDRESS要素は、連絡先情報と関係ない情報を含んではいけません。</p>
<h3>どうやら、今後はCopyrightにaddressはNGな方向？</h3>
<p>こうやってw3cの定義を見ると、確かにHTML 3.0の時代には著作権表記を含めるのはOKなように見えます。<br />
でも、HTML 4、 HTML 5 に進むにしたがって、厳格に連絡先に特化しているように見えます。<br />
特にHTML 5において、「連絡先情報と関係ない情報を含んではいけません」と注記されているところを見ると、今後はaddressタグはサイト管理者の連絡先にのみ利用して、Copyright には、Pタグや、Copyrightクラスを作るのがよさそうな気がしますよね。<br />
とりあえず、和訳や結論はかなり個人的な推測の域なんで、またご意見・アドバイスがあればよろしくお願いしますー<br />
【追記 2009/11/4 】<br />
shunk様より情報を頂きました。<br />
HTML5においてコピーライトの表現についてふれている部分があり、その中で<br />
「small要素が一般的に著作権表示や制限事項などの細目に使われる」<br />
と説明されていました。<br />
<a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-small-element" target="_blank">4.6.4 The small element</a><br />
とりあえず、コピーライトに限らず、補足事項的な項目はsmall使えば？ってことみたいですね。<br />
shunk様、ありがとうございました。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.itoy.jp/web-site/copyright.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://blog.itoy.jp/web-site/copyright.html" />
	</item>
	</channel>
</rss>

