<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>8747</bug_id>
          
          <creation_ts>2010-01-14 15:18:10 +0000</creation_ts>
          <short_desc>Defining how a license applies to elements</short_desc>
          <delta_ts>2010-10-05 13:03:13 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>HTML WG</product>
          <component>pre-LC1 HTML Microdata (editor: Ian Hickson)</component>
          <version>unspecified</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>VERIFIED</bug_status>
          <resolution>WONTFIX</resolution>
          
          
          <bug_file_loc>http://www.w3.org/TR/html5/history.html#link-type-license</bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>a11y, a11y_semantics</keywords>
          <priority>P2</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Gez Lemon">gez.lemon</reporter>
          <assigned_to name="Ian &apos;Hixie&apos; Hickson">ian</assigned_to>
          <cc>ian</cc>
    
    <cc>mail</cc>
    
    <cc>mike</cc>
    
    <cc>public-html-admin</cc>
    
    <cc>public-html-wg-issue-tracking</cc>
          
          <qa_contact name="HTML WG Bugzilla archive list">public-html-bugzilla</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>31041</commentid>
    <comment_count>0</comment_count>
    <who name="Gez Lemon">gez.lemon</who>
    <bug_when>2010-01-14 15:18:10 +0000</bug_when>
    <thetext>The paragraph after the HTML example code states, &quot;In this case, the license applies to just the photo, not the whole document.&quot; However, the example is not marked up in a way that can be determined by assistive technology. If license is meant to apply to anything other than the entire document, the specification should define rules to make the relationship determinable by assistive technology.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>31786</commentid>
    <comment_count>1</comment_count>
    <who name="Michael Cooper">cooper</who>
    <bug_when>2010-02-11 17:18:36 +0000</bug_when>
    <thetext>The HTML Accessibility Task Force intends to track these issues, per the proposal at http://lists.w3.org/Archives/Public/public-html-a11y/2010Jan/0245.html.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>31852</commentid>
    <comment_count>2</comment_count>
    <who name="Toby Inkster">mail</who>
    <bug_when>2010-02-12 10:06:34 +0000</bug_when>
    <thetext>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.

    &lt;a rel=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;

Becomes:

    &lt;a about=&quot;thing-uri&quot; rel=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;

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

    &lt;a about=&quot;foobar.jpeg&quot; rel=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;

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

    &lt;p id=&quot;chunk&quot;&gt;...&lt;/p&gt;
    &lt;a about=&quot;#chunk&quot; rel=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;

etc.

Microdata is also able to provide a solution, though I think RDFa&apos;s is somewhat more elegant in this simple case.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>31853</commentid>
    <comment_count>3</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2010-02-12 10:16:09 +0000</bug_when>
    <thetext>If you have the image in the page, in RDFa it looks like:

   &lt;img src=&quot;foobar.jpeg&quot; alt=&quot;...&quot;&gt;
   &lt;a about=&quot;foobar.jpeg&quot; rel=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;

With microdata it looks like:

   &lt;div itemscope itemtype=&quot;http://n.whatwg.org/work&quot;&gt;
     &lt;img itemprop=&quot;work&quot; src=&quot;foobar.jpeg&quot; alt=&quot;...&quot;&gt;
     &lt;a itemprop=&quot;license&quot; href=&quot;licence-uri&quot;&gt;...&lt;/a&gt;
   &lt;/div&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>32541</commentid>
    <comment_count>4</comment_count>
    <who name="Ian &apos;Hixie&apos; Hickson">ian</who>
    <bug_when>2010-02-23 07:14:57 +0000</bug_when>
    <thetext>EDITOR&apos;S RESPONSE: This is an Editor&apos;s Response to your comment. If you are satisfied with this response, please change the state of this bug to CLOSED. If you have additional information and would like the editor to reconsider, please reopen this bug. If you would like to escalate the issue to the full HTML Working Group, please add the TrackerRequest keyword to this bug, and suggest title and text for the tracker issue; or you may create a tracker issue yourself, if you are able to do so. For more details, see this document:
   http://dev.w3.org/html5/decision-policy/decision-policy.html

Status: Rejected
Change Description: no spec change
Rationale: Existing pages use rel=license as described in the spec. There isn&apos;t enough information in those pages for any algorithm (accessibility-related or otherwise) to identify the item to which the license applies. As Toby mentioned, that&apos;s why we have RDFa, or microdata, or other such solutions.

I&apos;m not sure, therefore, how to address this bug. Please reopen the bug if there is something I can do to further help here.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>38114</commentid>
    <comment_count>5</comment_count>
    <who name="Michael Cooper">cooper</who>
    <bug_when>2010-08-28 14:35:24 +0000</bug_when>
    <thetext>http://www.w3.org/2002/09/wbs/44061/20080513_bugs/results#xq9

Close and remove Task Force from further following. Ask on the main HTML list if someone wants to take over this bug to pursue getting the RDFa suggestion in the bug into the spec.

http://lists.w3.org/Archives/Public/public-html/2010Aug/0337.html</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>