--- a/ldp.html Tue Apr 15 16:27:44 2014 -0400
+++ b/ldp.html Wed Apr 16 09:47:23 2014 -0400
@@ -1939,10 +1939,17 @@
<td> <code>http://www.w3.org/ns/ldp#PreferMembership</code> </td>
</tr>
<tr>
- <td> <a title="Minimal-container triples">Minimal-container triples</a>
+ <td rowspan="3"> <a title="Minimal-container triples">Minimal-container triples</a>
</td>
<td> <code>http://www.w3.org/ns/ldp#PreferMinimalContainer</code> </td>
</tr>
+ <tr>
+ <td> or the equivalent but deprecated term </td>
+ </tr>
+ <tr>
+ <td>
+ <code>http://www.w3.org/ns/ldp#PreferEmptyContainer</code> </td>
+ </tr>
</table>
<blockquote>
<p>
@@ -2054,7 +2061,7 @@
<p id="prefer-examples-direct-membershiponly">
Clients interested only in information about the container
(for example, which membership predicate it uses) and its membership might use this hint on a <code>GET</code> request:
- <code>Prefer: return=representation; include="http://www.w3.org/ns/ldp#PreferMembership http://www.w3.org/ns/ldp#PreferMinimalContainer"</code>
+ <code>Prefer: return=representation; include="http://www.w3.org/ns/ldp#PreferMembership http://www.w3.org/ns/ldp#PreferMinimalContainer"</code>.
</p>
<p>
A server that honors this hint would return
--- a/ldp.ttl Tue Apr 15 16:27:44 2014 -0400
+++ b/ldp.ttl Wed Apr 16 09:47:23 2014 -0400
@@ -156,6 +156,15 @@
rdfs:isDefinedBy :;
rdfs:label "PreferMembership".
+:PreferEmptyContainer
+ a rdf:Description; # individual
+ rdfs:comment "Archaic alias for ldp:PreferMinimalContainer";
+ vs:term_status "deprecated";
+ rdfs:isDefinedBy :;
+ rdfs:sameAs :PreferMinimalContainer;
+ rdfs:seeAlso :PreferMinimalContainer;
+ rdfs:label "PreferEmptyContainer".
+
:PreferMinimalContainer
a rdf:Description; # individual
rdfs:comment "URI identifying the subset of a LDPC's triples present in an empty LDPC, for example to allow clients to express interest in receiving them. Currently this excludes containment and membership triples, but in the future other exclusions might be added. This definition is written to automatically exclude those new classes of triples.";