Skip to content

Commit 3a8757a

Browse files
committed
Updates from review
1 parent 1c8689b commit 3a8757a

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

spec/index.html

+31-31
Original file line numberDiff line numberDiff line change
@@ -1168,17 +1168,17 @@ <h5>DELETE WHERE</h5>
11681168
<section id="load">
11691169
<h4>LOAD</h4>
11701170
<p>
1171-
The `LOAD` operation reads an RDF document from a IRI and inserts triples
1172-
into the graphs of the dataset in the <a href="#defn_graphStore">Graph Store</a>.
1171+
The `LOAD` operation reads an RDF document from an IRI and inserts triples
1172+
from the document into the <a href="#defn_graphStore">Graph Store</a>.
11731173
</p>
11741174

11751175
<pre class="defn nohighlight"><strong>LOAD</strong> ( <strong>SILENT</strong> )? <em><a
11761176
data-cite="SPARQL12-QUERY#rIRIREF">IRIref_from</a></em> ( <strong>INTO GRAPH</strong> <em><a
11771177
data-cite="SPARQL12-QUERY#rIRIREF">IRIref_to</a></em> )?</pre>
11781178

1179-
<p><em>IRIref_from</em> specifies the IRI of a document such that a store will be able to
1180-
identify, locate and read the document. The most common form of IRIs will be URLs with
1181-
the https and http IRI schemes.
1179+
<p><em>IRIref_from</em> specifies the IRI of a document, such that a store will be able to
1180+
identify, locate, and read the document. The most common IRIs will be URLs in
1181+
the `https` and `http` IRI schemes.
11821182
</p>
11831183

11841184
<p>If a destination graph (<i>IRIref_to</i>) is specified by `INTO GRAPH`, then the
@@ -1190,36 +1190,33 @@ <h4>LOAD</h4>
11901190
<a data-cite="RDF12-CONCEPTS#dfn-rdf-graph">RDF Graph</a>.
11911191
This graph is
11921192
<a data-cite="RDF12-SEMANTICS#dfn-merging">merged</a> into the destination
1193-
graph in the graph store..
1193+
graph in the graph store.
11941194
</p>
11951195
<p>
1196-
If no destination graph IRI is specified by `INTO`, then the RDF document is retrived
1196+
If no destination graph IRI is specified by `INTO`, then the RDF document is retrieved
11971197
and parsed into an <a data-cite="RDF12-CONCEPTS#dfn-rdf-dataset">RDF Dataset</a>.
11981198
This dataset is <a data-cite="RDF12-SEMANTICS#dfn-rdf-dataset-merge">merged</a> into the
11991199
<a href="#defn_graphStore">graph store</a> viewed as a mutable
12001200
<a data-cite="SPARQL12-QUERY#sparqlDataset">RDF Dataset</a>.
12011201
</p>
12021202

12031203
<p>
1204-
In the case where no RDF data can be retrieved (as opposed to the empty graph being retrieved)
1205-
from the IRI denoted by <em>IRIref_from</em>, or in case the retrieval method returns an
1206-
error (such as, for instance an HTTP error code), the SPARQL 1.2 Update service SHOULD
1207-
return failure and the status of the Graph Store SHOULD remain in the same status as
1208-
prior to the request; in case the keyword `SILENT` is present, however, the
1209-
operation will still return success and the status of the Graph Store is not specified
1210-
by the present document: implementations may create the destination graph or not and
1211-
partially load data, in case of a transmission error where partial data has been
1212-
received (which itself may be legal RDF).
1204+
If no RDF data can be retrieved (as opposed to an empty graph being retrieved) from the
1205+
IRI denoted by <em>IRIref_from</em>, or in case the retrieval method returns an error
1206+
(such as, for instance an HTTP error code), the SPARQL 1.2 Update service SHOULD return
1207+
failure and the status of the Graph Store SHOULD remain in the same status as prior to
1208+
the request. However, if the the keyword `SILENT` is present, operation will return
1209+
success, rather than failure, and the status of the Graph Store is is not specified.
12131210
</p>
12141211

12151212
<div class="note" id="context-triples">
12161213
<p>
1217-
Some RDF syntaxes, such as [[[JSON-LD11]]], is often used for data which
1218-
is a single graph, with no graph name. [[[RDF12-N-QUADS]]] may be used as a
1214+
Some RDF syntaxes, such as [[[JSON-LD11]]], are often used to serialize
1215+
a single graph with no graph name.
1216+
[[[RDF12-N-QUADS]]] may be used as a
12191217
database dump format for a triple store with the data only in the default graph.
1220-
In both cases, this is not known until the entire RDF document content is parsed.
12211218
When the `LOAD` operation has an `INTO GRAPH` clause, it is an error if
1222-
named graphs are encountered.
1219+
named graphs are encountered when parsing the RDF document.
12231220
</p>
12241221
</div>
12251222
</section>
@@ -1608,8 +1605,8 @@ <h4>Load Operation</h4>
16081605
<div class="defn">
16091606
<p><strong><span class="doc-ref" id="defn_loadOperation">Definition: Load Operation</span></strong></p>
16101607
<p>
1611-
A <a href="#load">Load Operation</a> OpLoad is an Update Operation in which new
1612-
triples (from a remote graph or dataset) are added in the Graph Store, either in the
1608+
A <a href="#load">Load Operation</a> `OpLoad` is an Update Operation in which new
1609+
triples (from a remote graph or dataset) are added to the Graph Store, either in the
16131610
default slot or in a named slot, if specified.
16141611
</p>
16151612

@@ -1619,18 +1616,21 @@ <h4>Load Operation</h4>
16191616

16201617
<p>where</p>
16211618
<ul>
1622-
<li>The operation "dataset ( <em>documentIRI</em> )" is a function returning the RDF dataset serialized by the
1623-
RDF document</li>
1624-
<li>The operation "graph ( <em>documentIRI</em> )" is a function returning the RDF graph serialized by the
1625-
RDF document</li>
1619+
<li>The operation <code>dataset ( <em>documentIRI</em> )</code> is a function
1620+
returning the RDF dataset serialized by the RDF document</li>
1621+
<li>The operation <code>graph ( <em>documentIRI</em> )</code> is a function
1622+
returning the RDF graph serialized by the RDF document</li>
16261623
<li>
1627-
The operation <a data-cite="RDF12-SEMANTICS#dfn-rdf-dataset-merge">dataset-merge</a>
1628-
combines the Graph Store GS with the given dataset constructed as shown
1624+
The operation `dataset-merge` combines the Graph Store GS with the given
1625+
dataset using the
1626+
<a data-cite="RDF12-SEMANTICS#dfn-rdf-dataset-merge">dataset merge operation</a>
16291627
</li>
16301628
</ul>
1631-
<p>Blank nodes present in the retrieved graph or dataset are "standardized apart"; i.e.,
1632-
blank nodes from a loaded graph or dataset need to be disjoint with the blank nodes
1633-
already present in the Graph Store GS.
1629+
<p>
1630+
Blank nodes present in the retrieved graph or dataset are
1631+
"standardized apart"; i.e., blank nodes from a loaded graph or
1632+
dataset are disjoint from the blank nodes already present in the
1633+
Graph Store GS.
16341634
</p>
16351635
</div>
16361636
</section>

0 commit comments

Comments
 (0)