--- a/rdf-primer/index.html Tue Dec 03 16:37:16 2013 +0100
+++ b/rdf-primer/index.html Tue Dec 03 16:50:57 2013 +0100
@@ -11,7 +11,7 @@
localBiblio: localBibliography,
// specification status (e.g. WD, LC, WG-NOTE, etc.). If in doubt use ED.
- specStatus: "ED",
+ specStatus: "FPWD-NOTE",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "rdf11-primer",
@@ -293,7 +293,7 @@
predicates form the arcs. </p>
<figure>
- <img src="example-graph.jpg" width="75%"
+ <img src="example-graph.jpg"
alt="Informal graphs of the sample triples">
<figcaption>Informal graph of the sample triples</figcaption>
</figure>
@@ -347,7 +347,7 @@
<!--
<figure>
- <img src="example-graph-iris.jpg" width="75%"
+ <img src="example-graph-iris.jpg"
alt="Informal graphs of the sample triples, with IRIs">
<figcaption>Informal graph of the sample triples, with IRIs</figcaption>
</figure>
@@ -503,7 +503,7 @@
multiple graphs that is closely aligned with SPARQL. </p>
<figure>
- <img src="example-multiple-graphs.jpg" width="75%"
+ <img src="example-multiple-graphs.jpg"
alt="Informal graph of the multiple graphs example">
<figcaption>Informal graph of the multiple graphs example</figcaption>
</figure>
@@ -565,28 +565,28 @@
</tr>
<tr>
<td><a href="http://www.w3.org/TR/rdf-schema/#ch_type">type</a> (a property)</td>
- <td><strong>s</strong> <code>rdf:type</code> <striong>o</strong></td>
+ <td><strong>s</strong> <code>rdf:type</code> <strong>o</strong></td>
<td><strong>s</strong> (a resource) is an instance of <striong>o</strong> (a class)</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/rdf-schema/#ch_subclassof">subClassOf</a> (a property)</td>
- <td><strong>s</strong> <code>rdfs:subClassOf</code> <striong>o</strong></td>
- <td><strong>s</strong> (a class) is a subclass of <striong>o</strong> (a class)</td>
+ <td><strong>s</strong> <code>rdfs:subClassOf</code> <strong>o</strong></td>
+ <td><strong>s</strong> (a class) is a subclass of <strong>o</strong> (a class)</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/rdf-schema/#ch_subpropertyof">subPropertyOf</a> (a property)</td>
- <td><strong>s</strong> <code>rdfs:subPropertyOf</code> <striong>o</strong></td>
- <td><strong>s</strong> (a property) is a sub-property of <striong>o</strong> (a property)</td>
+ <td><strong>s</strong> <code>rdfs:subPropertyOf</code> <strong>o</strong></td>
+ <td><strong>s</strong> (a property) is a sub-property of <strong>o</strong> (a property)</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/rdf-schema/#ch_domain">domain</a> (a property)</td>
- <td><strong>s</strong> <code>rdfs:domain</code> <striong>o</strong></td>
- <td>domain of <strong>s</strong> (a property) is <striong>o</strong> (a class)</td>
+ <td><strong>s</strong> <code>rdfs:domain</code> <strong>o</strong></td>
+ <td>domain of <strong>s</strong> (a property) is <strong>o</strong> (a class)</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/rdf-schema/#ch_range">range</a> (a property)</td>
- <td><strong>s</strong> <code>rdfs:range</code> <striong>o</strong></td>
- <td>range of <strong>s</strong> (a property) is <striong>o</strong> (a class)</td>
+ <td><strong>s</strong> <code>rdfs:range</code> <strong>o</strong></td>
+ <td>range of <strong>s</strong> (a property) is <strong>o</strong> (a class)</td>
</tr>
</tbody>
</table>
@@ -712,7 +712,7 @@
<p>Lines 1-6 contain a number of directives which provide shorthands for
writing down IRIs. In Turtle IRIs are enclosed in angle brackets
-(<code><></code>). Relative IRIs (such as <code>bob#me</code> on line 8) are
+(<code><></code>). Relative IRIs (such as <code>bob#me</code> on line 8) are
resolved agains a base IRI, specified here in line 1.
Lines 2-6 define IRI prefixes (such as <code>foaf:</code>), which can
be use for prefixed names (such as <code>foaf:Person</code>) instead of full IRIs.
@@ -757,7 +757,7 @@
<p>The figure below shows the triples resulting from this example.</p>
<figure id="fig-abstract-graph-single">
- <img src="abstract-graph-single.jpg" width="75%"
+ <img src="abstract-graph-single.jpg"
alt="Triples resulting from the Turtle example">
<figcaption>Triples resulting from the Turtle example. </figcaption>
</figure>
@@ -863,7 +863,7 @@
<p>The figure below shows the triples resulting from this example.</p>
<figure id="fig-abstract-graph-multiple">
- <img src="" width="75%"
+ <img src=""
alt="Triples resulting from the TriG example">
<figcaption>Triples resulting from the TriG example</figcaption>
</figure>
@@ -963,7 +963,7 @@
<code>ex:bob rdf:type foaf:Person .</code>
</pre>
- <p class="note"</p>RDF Semantics distinguishes
+ <p class="note">RDF Semantics distinguishes
a number of different "entailment regimes". The derivation above is
an example of an RDF Schema entailment. For detailed
information about entailment regimes