[Bug 8747] Defining how a license applies to elements

http://www.w3.org/Bugs/Public/show_bug.cgi?id=8747


Toby Inkster <mail@tobyinkster.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mail@tobyinkster.co.uk




--- Comment #2 from Toby Inkster <mail@tobyinkster.co.uk>  2010-02-12 10:06:34 ---
Not entirely sure why this is a11y-related.

However, the HTML+RDFa draft (and in XHTML, the XHTML+RDFa Rec) provides quite
a simple solution.

    <a rel="license" href="licence-uri">...</a>

Becomes:

    <a about="thing-uri" rel="license" href="licence-uri">...</a>

Where thing-uri is the thing being licensed. So, if you wish to indicate the
licence of an image:

    <a about="foobar.jpeg" rel="license" href="licence-uri">...</a>

Or, if you have a paragraph of text on a page that needs licensing:

    <p id="chunk">...</p>
    <a about="#chunk" rel="license" href="licence-uri">...</a>

etc.

Microdata is also able to provide a solution, though I think RDFa's is somewhat
more elegant in this simple case.


-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

Received on Friday, 12 February 2010 10:06:36 UTC