Added missing foaf:PersonalProfileDocument statement from examples. Also fixed the scheme for the image URL in the example.
--- a/spec/identity-respec.html Fri Feb 08 11:38:01 2013 +0100
+++ b/spec/identity-respec.html Thu Apr 11 11:22:13 2013 +0200
@@ -495,12 +495,16 @@
Take for example the WebID <em>https://bob.example/profile#me</em>, for which the WebID Profile document contains the following Turtle representation:
</p>
<pre class="example" style="word-wrap: break-word; white-space: pre-wrap;">
- @prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
- <#me> a foaf:Person;
+<> a foaf:PersonalProfileDocument;
+ foaf:maker <https://bob.example/profile#me>;
+ foaf:primaryTopic <https://bob.example/profile#me>.
+
+<#me> a foaf:Person;
foaf:name "Bob";
foaf:knows <https://example.edu/p/Alice#MSc>;
- foaf:img <http://bob.example/picture.jpg>.
+ foaf:img <https://bob.example/picture.jpg>.
</pre>
</section>
<section class="informative">
@@ -511,7 +515,7 @@
</p>
<pre class="example" style="word-wrap: break-word; white-space: pre-wrap;">
<div vocab="http://xmlns.com/foaf/0.1/" about="#me" typeof="foaf:Person">
- <p>My name is <span property="name">Bob</span> and this is how I look like: <img property="img" src="http://bob.example/picture.jpg" title="Bob" alt="Bob" /></p>
+ <p>My name is <span property="name">Bob</span> and this is how I look like: <img property="img" src="https://bob.example/picture.jpg" title="Bob" alt="Bob" /></p>
<h2>My Good Friends</h2>
<ul>
<li property="knows" href="https://example.edu/p/Alice#MSc">Alice</li>
@@ -541,11 +545,15 @@
<pre class="example" style="word-wrap: break-word; white-space: pre-wrap;">
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<> a foaf:PersonalProfileDocument;
+ foaf:maker <https://bob.example/profile#me>;
+ foaf:primaryTopic <https://bob.example/profile#me>.
<#me> a foaf:Person;
foaf:name "Bob";
<strong>rdfs:seeAlso <https://bob.example/friends>;</strong>
- foaf:img <http://bob.example/picture.jpg>.
+ foaf:img <https://bob.example/picture.jpg>.
</pre>
<p>Where https://bob.example/friends is a reference to an ACL protected document containing:</p>
@@ -553,6 +561,10 @@
<pre class="example" style="word-wrap: break-word; white-space: pre-wrap;">
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+<> a foaf:PersonalProfileDocument;
+ foaf:maker <https://bob.example/profile#me>;
+ foaf:primaryTopic <https://bob.example/profile#me>.
+
<https://bob.example/profile#me> a foaf:Person;
foaf:knows <https://example.edu/p/Alice#MSc>;
foaf:knows <https://example.com/people/Mary/card#me>.