--- a/ldp.html Mon Mar 03 15:38:14 2014 -0500
+++ b/ldp.html Tue Mar 04 10:46:53 2014 -0500
@@ -18,8 +18,8 @@
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove' async></script>
<script class='remove'>
var respecConfig = {
- // specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
- specStatus: "ED",
+ // specification status (e.g. ED, WD, LC, NOTE, etc.). If in doubt use ED.
+ specStatus: "LC",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "ldp",
@@ -29,7 +29,7 @@
// subtitle : "an excellent document",
// if you wish the publication date to be other than today, set this
- publishDate: "",
+ publishDate: "2014-03-11",
// if the specification's copyright date is a range of years, specify
// the start date here:
@@ -45,7 +45,7 @@
edDraftURI: "http://www.w3.org/2012/ldp/hg/ldp.html",
// if this is a LCWD, uncomment and set the end of its review period
- lcEnd: "2013-09-02",
+ lcEnd: "2014-04-02",
// Only include h1 and h2 level
maxTocLevel: 2,
@@ -398,7 +398,7 @@
format [[turtle]].</p>
<p>Commonly used namespace prefixes:</p>
<pre style="word-wrap: break-word; white-space: pre-wrap;"> @prefix dcterms: <http://purl.org/dc/terms/>.
- @prefix foaf: <http://xmlns.com/foaf/0.1/>.
+ @prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix ldp: <http://www.w3.org/ns/ldp#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.</pre>
@@ -924,10 +924,12 @@
dcterms:title "A very simple container";
ldp:contains <r1>, <r2>, <r3>.</pre>
+ <!-- TODO: consider if basic container diagram helps, if so...add for other cases too
<figure id="fig-ldpc-basic">
<img src="images/ldpc-basic.png" alt="Sample Linked Data Platform Basic Container" />
<figcaption>Sample of Linked Data Platform Basic Container</figcaption>
</figure>
+ -->
<p>This example is very straightforward - there is the containment triple
with subject of the container, predicate of
--- a/ldp.ttl Mon Mar 03 15:38:14 2014 -0500
+++ b/ldp.ttl Tue Mar 04 10:46:53 2014 -0500
@@ -57,7 +57,7 @@
:BasicContainer
a rdfs:Class;
- rdfs:subClassOf :DirectContainer;
+ rdfs:subClassOf :Container;
rdfs:comment "An LDPC that uses a predefined predicate to simply link to its contained resources.";
vs:term_status "unstable";
rdfs:isDefinedBy :;
@@ -70,6 +70,14 @@
vs:term_status "unstable";
rdfs:isDefinedBy :;
rdfs:label "DirectContainer".
+
+:IndirectContainer
+ a rdfs:Class;
+ rdfs:subClassOf :Container;
+ rdfs:comment "An LDPC that has the flexibility of choosing what form the membership triples take.";
+ vs:term_status "unstable";
+ rdfs:isDefinedBy :;
+ rdfs:label "IndirectContainer".
:hasMemberRelation
a rdf:Property;