rel-license: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
m (Reverted edit of Heel1983, changed back to last version by RyanKing)
No edit summary
Line 1: Line 1:
= rel="license" =
= rel="license" =


relLicense is a simple, open, format for indicating content licenses which is  embedable in (X)HTML, Atom, RSS, and arbitrary XML. relLicense is one of several [[microformats|microformat]] open standards.
relLicense is a simple, open, format for indicating content licenses which is  embedable in (X)HTML, Atom, RSS, and arbitrary XML. relLicense is one of several [[microformats|microformat]] open standards.
Line 17: Line 17:
== Abstract ==
== Abstract ==


RelLicense is one of several MicroFormats.  By adding <code>rel="license"</code> to a hyperlink, a page indicates that the destination of that hyperlink is license for the current page. E.g. with the following hyperlink:
RelLicense is one of several MicroFormats.  By adding <code>rel=&quot;license&quot;</code> to a hyperlink, a page indicates that the destination of that hyperlink is license for the current page. E.g. with the following hyperlink:


<pre><nowiki>
<pre><nowiki>
<a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>
<a href=&quot;http://creativecommons.org/licenses/by/2.0/&quot; rel=&quot;license&quot;>cc by 2.0</a>
</nowiki></pre>
</nowiki></pre>


Line 26: Line 26:


== Multiple Licenses ==
== Multiple Licenses ==
Multiple such rel="license" hyperlinks indicate that the page is available under any of the referred licenses.  E.g. the following hyperlinks could be used to declare that a page is available under either a Creative Commons 2.0 Attribution Required license or the Apache 2.0 license:
Multiple such rel=&quot;license&quot; hyperlinks indicate that the page is available under any of the referred licenses.  E.g. the following hyperlinks could be used to declare that a page is available under either a Creative Commons 2.0 Attribution Required license or the Apache 2.0 license:


<pre><nowiki><a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>
<pre><nowiki><a href=&quot;http://creativecommons.org/licenses/by/2.0/&quot; rel=&quot;license&quot;>cc by 2.0</a>
<a href="http://www.apache.org/licenses/LICENSE-2.0" rel="license">Apache 2.0</a></nowiki></pre>
<a href=&quot;http://www.apache.org/licenses/LICENSE-2.0&quot; rel=&quot;license&quot;>Apache 2.0</a></nowiki></pre>


== XMDP profile ==
== XMDP profile ==
<pre><nowiki>
<pre><nowiki>
<dl class="profile">
<dl class=&quot;profile&quot;>
  <dt id="rel">rel</dt>
  <dt id=&quot;rel&quot;>rel</dt>
  <dd><p>
  <dd><p>
   <a rel="help" href="http://www.w3.org/TR/html401/struct/links.html#adef-rel">
   <a rel=&quot;help&quot; href=&quot;http://www.w3.org/TR/html401/struct/links.html#adef-rel&quot;>
     HTML4 definition of the 'rel' attribute.</a>   
     HTML4 definition of the 'rel' attribute.</a>   
   Here is an additional value.</p>
   Here is an additional value.</p>
   <dl>
   <dl>
   <dt id="license">license</dt>
   <dt id=&quot;license&quot;>license</dt>
   <dd>Indicates that the referred resource is a license for the referring page.</dd>
   <dd>Indicates that the referred resource is a license for the referring page.</dd>
   </dl>
   </dl>
Line 51: Line 51:


== informative references ==
== informative references ==
* 20040211 rel="license" first proposed in presentation [http://tantek.com/presentations/2004etech/realworldsemanticspres.html real world semantics] at 2004 O'Reilly Emerging Technologies Conference, San Diego, CA, USA.
* 20040211 rel=&quot;license&quot; first proposed in presentation [http://tantek.com/presentations/2004etech/realworldsemanticspres.html real world semantics] at 2004 O'Reilly Emerging Technologies Conference, San Diego, CA, USA.
* 20040225 [http://tantek.com/log/2004/02.html#d25t1805 Thorough discussion of rel="license"] including advantages and presentation possibilities.  
* 20040225 [http://tantek.com/log/2004/02.html#d25t1805 Thorough discussion of rel=&quot;license&quot;] including advantages and presentation possibilities.  
* [http://creativecommons.org/licenses/by/2.0/ Creative Commons 2.0 By (Attribution Required) license]
* [http://creativecommons.org/licenses/by/2.0/ Creative Commons 2.0 By (Attribution Required) license]
* [http://www.apache.org/licenses/LICENSE-2.0 Apache 2.0 license]
* [http://www.apache.org/licenses/LICENSE-2.0 Apache 2.0 license]
Line 59: Line 59:
== see also ==
== see also ==
* See [[rellicense-issues]] for issues which have been raised with this [[microformat]].
* See [[rellicense-issues]] for issues which have been raised with this [[microformat]].
[http://northwestairlines.bravehost.com Northwest Airlines]

Revision as of 07:53, 6 January 2006

rel="license"

relLicense is a simple, open, format for indicating content licenses which is embedable in (X)HTML, Atom, RSS, and arbitrary XML. relLicense is one of several microformat open standards.

Draft Specification 2005-02-06

Author

Tantek Çelik, Technorati, Inc. (formerly of Microsoft Corporation)

Copyright

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.

Patents

This specification is subject to a royalty free patent policy, e.g. per the W3C Patent Policy, and IETF RFC3667 & RFC3668.

Abstract

RelLicense is one of several MicroFormats. By adding rel="license" to a hyperlink, a page indicates that the destination of that hyperlink is license for the current page. E.g. with the following hyperlink:

<a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>

the author indicates that the page is licensed under a Creative Commons 2.0 Attribution Required license.

Multiple Licenses

Multiple such rel="license" hyperlinks indicate that the page is available under any of the referred licenses. E.g. the following hyperlinks could be used to declare that a page is available under either a Creative Commons 2.0 Attribution Required license or the Apache 2.0 license:

<a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>
<a href="http://www.apache.org/licenses/LICENSE-2.0" rel="license">Apache 2.0</a>

XMDP profile

<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="license">license</dt>
   <dd>Indicates that the referred resource is a license for the referring page.</dd>
  </dl>
 </dd>
</dl>

normative references

informative references

see also

Northwest Airlines