Re: Request for Review of WebID specs before publishing

On 9/5/13 12:26 PM, Stéphane Corlosquet wrote:
> Kingsley's point is to use real live URIs as opposed to made up ones. 
> If we did that, we should look at not only updating the turtle 
> example, but all the specs to keep all examples consistent.
>
> > - To replace "me" with "i"?
>
> #i is what timbl uses in his foaf file.

Yes!

Ideally, this approach (modulo prefixes):

## Simple WebID Profile Document Example ##
<http://www.w3.org/People/Berners-Lee/card>
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> 
<http://xmlns.com/foaf/0.1/PersonalProfileDocument>;
<http://xmlns.com/foaf/0.1/maker> 
<http://www.w3.org/People/Berners-Lee/card#i>;
<http://xmlns.com/foaf/0.1/primaryTopic> 
<http://www.w3.org/People/Berners-Lee/card#i>.

<http://www.w3.org/People/Berners-Lee/card#i>
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> 
<http://xmlns.com/foaf/0.1/Person> ;
<http://xmlns.com/foaf/0.1/name> "Tim Berners-Lee";
<http://xmlns.com/foaf/0.1/knows> 
<http://bblfish.net/people/henry/card#me>,
<https://my-profile.eu/people/deiu/card#me>;
<http://xmlns.com/foaf/0.1/depiction> 
<http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>.

##

I think keeping triples is clear view, with live links, makes 
comprehension so much easier :-)

Kingsley
>
> Steph.
>
>
> On Thu, Sep 5, 2013 at 12:23 PM, Melvin Carvalho 
> <melvincarvalho@gmail.com <mailto:melvincarvalho@gmail.com>> wrote:
>
>
>
>
>     On 5 September 2013 18:20, Kingsley Idehen <kidehen@openlinksw.com
>     <mailto:kidehen@openlinksw.com>> wrote:
>
>         On 9/5/13 12:14 PM, Kingsley Idehen wrote:
>>         On 9/5/13 12:09 PM, Kingsley Idehen wrote:
>>>         ## Example that includes live links
>>>
>>>         @prefix foaf: <http://xmlns.com/foaf/0.1/>
>>>         <http://xmlns.com/foaf/0.1/> .
>>>
>>>         <> a foaf:PersonalProfileDocument;
>>>            foaf:maker <#i>;
>>>            foaf:primaryTopic <#i>.
>>>
>>>         <#me> a foaf:Person;
>>>            foaf:name "Tim Berners-Lee";
>>>            foaf:knows <http://bblfish.net/people/henry/card#me>
>>>         <http://bblfish.net/people/henry/card#me>,
>>>         <https://my-profile.eu/people/deiu/card#me>
>>>         <https://my-profile.eu/people/deiu/card#me>;
>>>            foaf:depiction
>>>         <http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>
>>>         <http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>.
>>>
>>>         # Note: I don't know Stef's WebID which is why its missing
>>>         as a foaf:knows relation object in the example above ##
>>>
>>>         Kingsley 
>>         Correction:
>>
>>
>>         @prefix foaf: <http://xmlns.com/foaf/0.1/>
>>         <http://xmlns.com/foaf/0.1/> .
>>         @prefix card: <http://www.w3.org/People/Berners-Lee/card#>
>>         <http://www.w3.org/People/Berners-Lee/card#> .
>>
>>            a foaf:PersonalProfileDocument;
>>            foaf:maker card:i;
>>            foaf:primaryTopic card:i.
>>
>>            card:i a foaf:Person;
>>            foaf:name "Tim Berners-Lee";
>>            foaf:knows <http://bblfish.net/people/henry/card#me>
>>         <http://bblfish.net/people/henry/card#me>,
>>         <https://my-profile.eu/people/deiu/card#me>
>>         <https://my-profile.eu/people/deiu/card#me>;
>>            foaf:depiction
>>         <http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>
>>         <http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>.
>>
>
>         Hopefully, third times a charm:
>
>         See:
>         http://kingsley.idehen.net/DAV/home/kidehen/Public/Linked%20Data%20Documents/WebID-ACL-Demos/webid-spec-profile-doc-example.ttl
>         .
>
>         ## Raw Turtle Data
>
>         @prefix foaf: <http://xmlns.com/foaf/0.1/>
>         <http://xmlns.com/foaf/0.1/> . @prefix card:
>         <http://www.w3.org/People/Berners-Lee/card#>
>         <http://www.w3.org/People/Berners-Lee/card#>
>           .
>
>             card: a foaf:PersonalProfileDocument;
>             foaf:maker card:i;
>             foaf:primaryTopic card:i.
>
>             card:i a foaf:Person;
>             foaf:name "Tim Berners-Lee";
>             foaf:knows<http://bblfish.net/people/henry/card#me>  <http://bblfish.net/people/henry/card#me>,<https://my-profile.eu/people/deiu/card#me>  <https://my-profile.eu/people/deiu/card#me>;
>             foaf:depiction<http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>  <http://www.w3.org/Press/Stock/Berners-Lee/2001-europaeum-eighth.jpg>.
>
>         ##
>
>
>     What's the aim?
>
>     - To change relative hash URI's into absolute?
>
>     - To help legibility?
>
>     - To replace "me" with "i"?
>
>
>
>         -- 
>
>         Regards,
>
>         Kingsley Idehen	
>         Founder & CEO
>         OpenLink Software
>         Company Web:http://www.openlinksw.com
>         Personal Weblog:http://www.openlinksw.com/blog/~kidehen  <http://www.openlinksw.com/blog/%7Ekidehen>
>         Twitter/Identi.ca handle: @kidehen
>         Google+ Profile:https://plus.google.com/112399767740508618350/about
>         LinkedIn Profile:http://www.linkedin.com/in/kidehen
>
>
>
>
>
>
>
>
> -- 
> Steph.


-- 

Regards,

Kingsley Idehen	
Founder & CEO
OpenLink Software
Company Web: http://www.openlinksw.com
Personal Weblog: http://www.openlinksw.com/blog/~kidehen
Twitter/Identi.ca handle: @kidehen
Google+ Profile: https://plus.google.com/112399767740508618350/about
LinkedIn Profile: http://www.linkedin.com/in/kidehen

Received on Thursday, 5 September 2013 17:21:14 UTC