what is the correct way to include license information on an element within a microformated block of xhtml? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T13:55:30Zhttp://stackoverflow.com/feeds/question/247691http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247691/what-is-the-correct-way-to-include-license-information-on-an-element-within-a-mic2what is the correct way to include license information on an element within a microformated block of xhtml?afroginthevalley2008-10-29T17:29:50Z2009-02-24T18:20:02Z
<p>Seems like rel-license only applies to pages not to specific elements... anyone spotted usage for page elements in the wild?</p>
http://stackoverflow.com/questions/247691/what-is-the-correct-way-to-include-license-information-on-an-element-within-a-mic/248299#2482991Answer by thismat for what is the correct way to include license information on an element within a microformated block of xhtml?thismat2008-10-29T20:28:53Z2008-10-29T20:28:53Z<p>Have a look here and see if this is along the lines of what you're needing...</p>
<p><a href="http://microformats.org/wiki/rel-license" rel="nofollow">Microsoftmats rel-license information</a></p>
http://stackoverflow.com/questions/247691/what-is-the-correct-way-to-include-license-information-on-an-element-within-a-mic/285720#2857201Answer by Anirvan for what is the correct way to include license information on an element within a microformated block of xhtml?Anirvan2008-11-12T23:00:39Z2008-11-12T23:00:39Z<p>The fact that <code>rel-license</code> doesn't cover specific elements is a known bug.</p>
<p>The following is specifically marked as an open issue on the <a href="http://microformats.org/wiki/rel-license-issues#Issues" rel="nofollow">master list of <code>rel-license</code> issues</a>:</p>
<blockquote>
<p>2006-04-07 raised by Evan:<br />
It's not clear how to associate a license with part of a page, such as an image or embedded object in the page, or a single news entry on a news page. A typical use-case would be a Flickr page, for which the image is licensed under a CC license but the page itself is not.</p>
</blockquote>
http://stackoverflow.com/questions/247691/what-is-the-correct-way-to-include-license-information-on-an-element-within-a-mic/582905#5829050Answer by Scott for what is the correct way to include license information on an element within a microformated block of xhtml?Scott2009-02-24T18:20:02Z2009-02-24T18:20:02Z<p>I've never personally run into a situation that required this yet, but would be inclined to do something like this:</p>
<pre><code><p id="someparagraph">Lorum ipsum dolor sit amet.</p>
<div about="#someparagraph">
<a href="http://creativecommons.org/licenses/by/2.0/" rel="license">cc by 2.0</a>
</div>
</code></pre>