--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ldp-primer/bc_after_bin.txt Mon May 05 12:18:07 2014 +0200
@@ -0,0 +1,16 @@
+@prefix dcterms: <http://purl.org/dc/terms/>.
+@prefix ldp: <http://www.w3.org/ns/ldp#>.
+
+<http://data.example.org/alice/> a ldp:Container, ldp:BasicContainer;
+ dcterms:title 'Alice’s data storage on the Web' ;
+ ldp:contains <http://data.example.org/alice/foaf> , <http://data.example.org/alice/avatar> .
+
+---
+
+{
+ "@context": "https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp-primer/context.json",
+ "@id": "http://data.example.org/alice/",
+ "@type": [ "ldp:Container", "ldp:BasicContainer"],
+ "dcterms:title": "Alice’s data storage on the Web",
+ "ldp:contains": [{ "@id": "http://data.example.org/alice/foaf" }, { "@id": "http://data.example.org/alice/avatar" } ]
+}
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ldp-primer/bc_after_del.txt Mon May 05 12:18:07 2014 +0200
@@ -0,0 +1,16 @@
+@prefix dcterms: <http://purl.org/dc/terms/>.
+@prefix ldp: <http://www.w3.org/ns/ldp#>.
+
+<http://data.example.org/alice/> a ldp:Container, ldp:BasicContainer;
+ dcterms:title 'Alice’s data storage on the Web' ;
+ ldp:contains <http://data.example.org/alice/foaf> .
+
+---
+
+{
+ "@context": "https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp-primer/context.json",
+ "@id": "http://data.example.org/alice/",
+ "@type": [ "ldp:Container", "ldp:BasicContainer"],
+ "dcterms:title": "Alice’s data storage on the Web",
+ "ldp:contains": { "@id": "http://data.example.org/alice/foaf" }
+}
\ No newline at end of file
--- a/ldp-primer/bccreate_res.txt Mon May 05 12:14:35 2014 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-HTTP/1.1 201 Created
-Location: /alice/foaf
-Link: <http://www.w3.org/ns/ldp/Resource>; rel='type'
-Content-Length: 0
\ No newline at end of file
--- a/ldp-primer/optbc.txt Mon May 05 12:14:35 2014 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
- OPTIONS /alice/ HTTP/1.1
- Host: example.org
-
- ---
-
- OPTIONS /alice/ HTTP/1.1
- Host: example.org
\ No newline at end of file
--- a/ldp-primer/optbc_res.txt Mon May 05 12:14:35 2014 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-HTTP/1.1 200 OK
-Allow: OPTIONS,HEAD,GET,POST,PUT,PATCH
-Accept-Post: text/turtle, application/ld+json, image/bmp, image/jpeg
-Accept-Patch: example/patch
-Link: <http://www.w3.org/ns/ldp/Resource>; rel='type'
-Link: <http://www.w3.org/ns/ldp/BasicContainer>; rel='type'
-Content-Length: 0
-
----
-
-HTTP/1.1 200 OK
-Allow: OPTIONS,HEAD,GET,POST,PUT,PATCH
-Accept-Post: text/turtle, application/ld+json, image/bmp, image/jpeg
-Accept-Patch: example/patch
-Link: <http://www.w3.org/ns/ldp/Resource>; rel='type'
-Link: <http://www.w3.org/ns/ldp/BasicContainer>; rel='type'
-Content-Length: 0