Prepare for LC2
authorsspeiche
Tue, 04 Mar 2014 10:46:53 -0500
changeset 522 b3fd53a7b048
parent 521 46584a80fd9b
child 523 c45fc5a13bb3
Prepare for LC2
ldp.html
ldp.ttl
--- 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: &lt;http://purl.org/dc/terms/&gt;.
-	@prefix foaf:     &lt;http://xmlns.com/foaf/0.1/&gt;.
+	@prefix foaf:    &lt;http://xmlns.com/foaf/0.1/&gt;.
 	@prefix rdf:     &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;.
 	@prefix ldp:     &lt;http://www.w3.org/ns/ldp#&gt;.
 	@prefix xsd:     &lt;http://www.w3.org/2001/XMLSchema#&gt;.</pre>
@@ -924,10 +924,12 @@
    dcterms:title "A very simple container";
    ldp:contains &lt;r1&gt;, &lt;r2&gt;, &lt;r3&gt;.</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;