Re: Proposed test case 0126 (was Test for multiple values in @typeof)

FYI: TC126 is now available [1] - sorry for the delay. ESWC09's network is
sort of sloooooooooooow ;)

Cheers,
      Michael

[1] http://www.w3.org/2006/07/SWD/RDFa/testsuite/xhtml1-testcases/Test0126

-- 
Dr. Michael Hausenblas
DERI - Digital Enterprise Research Institute
National University of Ireland, Lower Dangan,
Galway, Ireland, Europe
Tel. +353 91 495730
http://sw-app.org/about.html
http://webofdata.wordpress.com/


> From: Mark Birbeck <mark.birbeck@webbackplane.com>
> Date: Mon, 1 Jun 2009 16:04:30 +0100
> To: Shane McCarron <shane@aptest.com>
> Cc: RDFa TF list <public-rdf-in-xhtml-tf@w3.org>
> Subject: Re: Proposed test case 0126 (was Test for multiple values in @typeof)
> Resent-From: RDFa TF list <public-rdf-in-xhtml-tf@w3.org>
> Resent-Date: Mon, 01 Jun 2009 15:05:08 +0000
> 
> Hi Shane,
> 
> But a foaf:Person is not a sioc:Post. :)
> 
> I'd still suggest the Drupal-inspired sioc:Post/foaf:Document combination:
> 
>   <html xmlns="http://www.w3.org/1999/xhtml"
>    xmlns:dct="http://purl.org/dc/terms/"
>    xmlns:sioc="http://rdfs.org/sioc/ns#"
>    xmlns:foaf="http://xmlns.com/foaf/0.1/"
>> 
>     <head>
>       <title>Test 0126</title>
>     </head>
>     <body>
>       <div id="article" about="#article" typeof="foaf:Document sioc:Post">
>         <h1 property="dct:title">My article</h1>
>       </div>
>     </body>
>   </html>
> 
> Regards,
> 
> Mark
> 
> 
> On Mon, Jun 1, 2009 at 2:37 PM, Shane McCarron <shane@aptest.com> wrote:
>> Okay - let's try this - the test is not as *simple* as I would like, but I
>> think it is important to include an example that makes semantic sense so I
>> have included the foaf name markup from test case 0124 as well:
>> 
>> HTML:
>> 
>> <html xmlns="http://www.w3.org/1999/xhtml"
>>     xmlns:sioc="http://rdfs.org/sioc/ns#"
>>     xmlns:foaf="http://xmlns.com/foaf/0.1/">
>>  <head>
>>   <title>Test 0126</title>
>>       <base href="http://www.example.org/me">
>>  </head>
>>  <body>
>>     <div id="mark" about="#mark" typeof="foaf:Person sioc:Post">
>>        <h2 property="foaf:name" datatype=""><span
>> property="foaf:firstname">Mark</span><span
>> property="foaf:surname">Birbeck</span></h2>
>>     </div>
>>  </body>
>> </html>
>> 
>> and SPARQL:
>> 
>> ASK WHERE {
>> <http://www.example.org/me#mark>
>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
>> <http://xmlns.com/foaf/0.1/Person> .
>> <http://www.example.org/me#mark>
>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
>> <http://rdfs.org/sioc/ns#Post> .
>> <http://www.example.org/me#mark>
>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
>> <http://xmlns.com/foaf/0.1/name> .
>> <http://www.example.org/me#mark> <http://xmlns.com/foaf/0.1/firstName>
>> "Mark" .
>> <http://www.example.org/me#mark> <http://xmlns.com/foaf/0.1/surname>
>> "Birbeck" .
>> <http://www.example.org/me#mark> <http://xmlns.com/foaf/0.1/name> "Mark
>> Birbeck" .
>> }
>> 
>> 
>> 
>> Mark Birbeck wrote:
>>> 
>>> Hi Shane,
>>> 
>>> For my testing I used foaf:Person and foaf:Agent:
>>> 
>>>  <div about="#shane" typeof="foaf:Person foaf:Agent">
>>>    <h2 property="foaf:name" datatype="">
>>>      <span property="foaf:firstname">Shane</span>
>>>      <span property="foaf:surname">McCarron</span>
>>>    </h2>
>>>  </div>
>>> 
>>> But I don't think it's a very good example, because a system that is
>>> able to infer new information can easily derive your foaf-agentness
>>> from your foaf-personness -- so you'd only really need to set
>>> @typeof="foaf:Person".
>>> 
>>> I actually think the Drupal example itself was quite a good one,
>>> combing the type FOAF document (which is very broad), with the more
>>> specific type of SIOC post (which is a post that people can reply to).
>>> 
>>> The real Drupal 7 pages have many properties, so the following does
>>> not follow its structure, but it's the same idea, and I believe it's
>>> still correct:
>>> 
>>>  <div typeof="foaf:Document sioc:Post">
>>>    <h1 property="dc:title">My first blog post</h1>
>>>  </div>
>>> 
>>> Regards,
>>> 
>>> Mark
>>> 
>>> On Mon, Jun 1, 2009 at 4:35 AM, Shane McCarron <shane@aptest.com> wrote:
>>> 
>>>> 
>>>> I tried something, but I think it is wrong semantically.  Someone smart
>>>> please suggest a better combination of types?
>>>> 
>>>> <html xmlns:foaf="http://xmlns.com/foaf/0.1/">
>>>>  <head>
>>>>  <title>Test 0126</title>
>>>>      <base href="http://www.example.org/me">
>>>>  </head>
>>>>  <body>
>>>>    <div id="mark" about="#mark" typeof="foaf:Person foaf:name">Mark
>>>> Birbeck</div>
>>>>  </body>
>>>> </html>
>>>> 
>>>> with a sparql of
>>>> 
>>>> ASK WHERE {
>>>> <http://www.example.org/me#mark>
>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
>>>> <http://xmlns.com/foaf/0.1/Person> .
>>>> <http://www.example.org/me#mark>
>>>> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
>>>> <http://xmlns.com/foaf/0.1/name> .
>>>> }
>>>> 
>>>> and an annotation of:
>>>> 
>>>>  <TestCase rdf:about="Test0126">
>>>>      <dc:contributor>Shane McCarron</dc:contributor>
>>>>      <dc:title>Multiple types for an object</dc:title>
>>>>      <informationResourceInput rdf:resource="0126.html"/>
>>>>      <informationResourceResults rdf:resource="0126.sparql"/>
>>>>      <purpose>Checks to ensure that multiple curies in a typeof are
>>>>              parser correctly.</purpose>
>>>>      <reviewStatus
>>>> rdf:resource="http://www.w3.org/2006/03/test-description#unreviewed"/>
>>>>      <specificationReference></specificationReference>
>>>>  </TestCase>
>>>> 
>>>> 
>>>> Mark Birbeck wrote:
>>>> 
>>>>> 
>>>>> Hello all,
>>>>> 
>>>>> In Drupal 7, each page will be marked up something like this:
>>>>> 
>>>>>  <div typeof="foaf:Document sioc:Post" about="/d701/node/2#this">
>>>>>   ...
>>>>>  </div>
>>>>> 
>>>>> My parser got this wrong, treating the two @typeof values as one
>>>>> string. As I started work on fixing this, I looked through the
>>>>> manifest for a unit-test to work against, and I couldn't find one.
>>>>> 
>>>>> If Michael or someone knows that there is such a test, would they mind
>>>>> giving me the number? (Sorry to be a pain...)
>>>>> 
>>>>> And if there is no such test at present, I think it might be worth
>>>>> adding
>>>>> one.
>>>>> 
>>>>> Regards,
>>>>> 
>>>>> Mark
>>>>> 
>>>>> 
>>>>> 
>>>> 
>>>> --
>>>> Shane P. McCarron                          Phone: +1 763 786-8160 x120
>>>> Managing Director                            Fax: +1 763 786-8180
>>>> ApTest Minnesota                            Inet: shane@aptest.com
>>>> 
>>>> 
>>>> 
>>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> --
>> Shane P. McCarron                          Phone: +1 763 786-8160 x120
>> Managing Director                            Fax: +1 763 786-8180
>> ApTest Minnesota                            Inet: shane@aptest.com
>> 
>> 
>> 
> 
> 
> 
> -- 
> Mark Birbeck, webBackplane
> 
> mark.birbeck@webBackplane.com
> 
> http://webBackplane.com/mark-birbeck
> 
> webBackplane is a trading name of Backplane Ltd. (company number
> 05972288, registered office: 2nd Floor, 69/85 Tabernacle Street,
> London, EC2A 4RR)
> 

Received on Tuesday, 2 June 2009 20:13:33 UTC