Skip to content

Commit e93ecf0

Browse files
authored
Informal definition of quad. (#12)
Informal definition of quad. Fixes #5.
1 parent 85562ff commit e93ecf0

File tree

5 files changed

+41
-10
lines changed

5 files changed

+41
-10
lines changed

spec/common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ This repository is meant to be used as a submodule in multiple repository holdin
77

88
The `participants.js` Node script can be used to retrieve the list of working group participants. It requires an API Key.
99

10-
node participants.js <apikey> wg/rdf-star > participantes.html
10+
node participants.js <apikey> wg/rdf-star > participants.html

spec/common/local-biblio.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,4 +285,14 @@ var localBibliography = {
285285
"status": "WD",
286286
"publisher": "W3C"
287287
},
288+
"CBD": {
289+
"title": "CBD - Concise Bounded Description",
290+
"href": "https://www.w3.org/Submission/CBD/",
291+
"authors": [
292+
"Patrick Stickler, Nokia"
293+
],
294+
"rawDate": "2005-06-03",
295+
"publisher": "W3C",
296+
"status": "W3C Member Submission"
297+
},
288298
};

spec/common/participants.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Members of the RDF-star Working Group Group included Adrian Gschwend, Andy Seaborne, Antoine Zimmermann, Dan Brickley, David Chaves-Fraga, Dominik Tomaszuk, Dörthe Arndt, Enrico Franconi, Fabien Gandon, Gregg Kellogg, Gregory Williams, Jesse Wright, Julián Arenas-Guerrero, Olaf Hartig, Ora Lassila, Pasquale Lisena, Peter Patel-Schneider, Pierre-Antoine Champin, Raphaël Troncy, Ruben Taelman, Rémi Ceres, Sarven Capadisli, Souripriya Das, Ted Thibodeau, and Timothée HAUDEBOURG.
1+
Members of the RDF-star Working Group Group included Adrian Gschwend, Andy Seaborne, Antoine Zimmermann, Dan Brickley, David Chaves-Fraga, Dominik Tomaszuk, Dörthe Arndt, Enrico Franconi, Fabien Gandon, Gregg Kellogg, Gregory Williams, Jesse Wright, Julián Arenas-Guerrero, Olaf Hartig, Ora Lassila, Pasquale Lisena, Peter Patel-Schneider, Pierre-Antoine Champin, Raphaël Troncy, Ruben Taelman, Rémi Ceres, Sarven Capadisli, Souripriya Das, Ted Thibodeau, and Timothée Haudebourg.

spec/common/participants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const process = require('process');
1313
const APIKEY = process.env.APIKEY || process.argv[2];
1414
const GROUP = process.env.GROUP || process.argv[3] || "wg/rdf-star";
1515

16-
if (!APIKEY || !GROUP) {
17-
console.error('Error: APIKEY and GROUP must be specified as either environment variables or command-line arguments.');
16+
if (!APIKEY) {
17+
console.error('Error: APIKEY must be specified as either an environment variable or a command-line argument.');
1818
process.exit(1);
1919
}
2020

spec/index.html

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,28 @@ <h3>Content Negotiation of RDF Datasets</h3>
816816
the consumer is expected to use the <a data-lt="rdf dataset">RDF dataset's</a> default graph.</p>
817817

818818
</section>
819+
820+
<section id="section-dataset-quad" class="informative">
821+
<h3>Dataset as a Set of Quads</h3>
822+
823+
<p>A <dfn>quad</dfn> is a <a>triple</a> associated with an optional <a>graph name</a>
824+
and is used when referring to triples within an <a>RDF dataset</a>.
825+
</p>
826+
827+
<p>A <a>quad</a> can be represented as a tuple composed of <a>subject</a>, <a>predicate</a>, <a>object</a>,
828+
and an optional <a>graph name</a>.</p>
829+
830+
<p>An <a>RDF dataset</a> can be considered to be a set of <a>quads</a>
831+
where quads with no <a>graph name</a> supply the <a>triples</a> of the <a>default graph</a>,
832+
and quads with the same graph name
833+
supply the triples of the <a>named graph</a> with that name.</p>
834+
835+
<p class="note">Although a <a>quad</a> without a <a>graph name</a>
836+
consists of the same three components as a <a>triple</a>,
837+
it is a distinct concept,
838+
as it specifically captures the notion of a triple within the <a>default graph</a>
839+
of an <a>RDF dataset</a>.</p>
840+
</section>
819841
</section>
820842

821843
<section id="section-Datatypes">
@@ -1344,7 +1366,7 @@ <h2>Internationalization Considerations</h2>
13441366
<h2>Acknowledgments</h2>
13451367

13461368
<section class="informative">
1347-
<h3>Acknowledgements for RDF 1.0</h3>
1369+
<h3>Acknowledgments for RDF 1.0</h3>
13481370

13491371
<p>The editors of the original version of the spec were
13501372
Graham Klyne (Nine by Nine) and
@@ -1405,7 +1427,7 @@ <h3>Acknowledgements for RDF 1.0</h3>
14051427
</section>
14061428

14071429
<section class="informative">
1408-
<h3>Acknowledgements for RDF 1.1</h3>
1430+
<h3>Acknowledgments for RDF 1.1</h3>
14091431

14101432
<p>The editors of the RDF 1.1 version of the spec were
14111433
Richard Cyganiak (DERI),
@@ -1431,7 +1453,7 @@ <h3>Acknowledgements for RDF 1.1</h3>
14311453
</section>
14321454

14331455
<section class="informative">
1434-
<h3>Acknowledgements for RDF 1.2</h3>
1456+
<h3>Acknowledgments for RDF 1.2</h3>
14351457

14361458
<p>In addition to the editors, the following people have contributed to this specification:
14371459
<span id="gh-contributors"></span>
@@ -1454,13 +1476,12 @@ <h2>Changes between RDF 1.0 and RDF 1.1</h2>
14541476
<h2>Changes between RDF 1.1 and RDF 1.2</h2>
14551477

14561478
<ul>
1457-
1479+
<li>Added <a href="#section-dataset-quad" class="sectionRef"></a>
1480+
for informative definition of a <a>quad</a>.</li>
14581481
</ul>
14591482
</section>
14601483

1461-
<!-- comment this out until https://github.com/w3c/respec/issues/4362 is addressed
14621484
<section id="index"></section>
1463-
-->
14641485

14651486
<section class="appendix" id="issue-summary">
14661487
<!-- A list of issues will magically appear here -->

0 commit comments

Comments
 (0)