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.com 2009-12-18T13:55:30Z http://stackoverflow.com/feeds/question/247691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247691/what-is-the-correct-way-to-include-license-information-on-an-element-within-a-mic 2 what is the correct way to include license information on an element within a microformated block of xhtml? afroginthevalley 2008-10-29T17:29:50Z 2009-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#248299 1 Answer by thismat for what is the correct way to include license information on an element within a microformated block of xhtml? thismat 2008-10-29T20:28:53Z 2008-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#285720 1 Answer by Anirvan for what is the correct way to include license information on an element within a microformated block of xhtml? Anirvan 2008-11-12T23:00:39Z 2008-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#582905 0 Answer by Scott for what is the correct way to include license information on an element within a microformated block of xhtml? Scott 2009-02-24T18:20:02Z 2009-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>&lt;p id="someparagraph"&gt;Lorum ipsum dolor sit amet.&lt;/p&gt; &lt;div about="#someparagraph"&gt; &lt;a href="http://creativecommons.org/licenses/by/2.0/" rel="license"&gt;cc by 2.0&lt;/a&gt; &lt;/div&gt; </code></pre>