Skip to content

Commit e8f0cfc

Browse files
committed
Move RDF API methods to new json-ld-rdf document.
Cleanup references within RDF algorithms to not require RDf WebIDL definitions. This addresses issue #200.
1 parent 41f7900 commit e8f0cfc

File tree

4 files changed

+579
-264
lines changed

4 files changed

+579
-264
lines changed

spec/index.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,21 @@ function getDrafts($spec)
129129
<li><a href="latest/rdf-graph-normalization/">latest</a></li>
130130
<?php
131131

132+
$drafts = getDrafts('json-ld-rdf');
133+
134+
foreach ($drafts as $date => $dir) {
135+
print(" <li><a href=\"$dir/\">$date</a></li>");
136+
}
137+
138+
?>
139+
</ul>
140+
141+
142+
<h2>JSON-LD RDF API</h2>
143+
<ul>
144+
<li><a href="latest/json-ld-rdf/">latest</a></li>
145+
<?php
146+
132147
$drafts = getDrafts('rdf-graph-normalization');
133148

134149
foreach ($drafts as $date => $dir) {

spec/latest/index.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
<li><a href="json-ld-framing/">JSON-LD Framing</a> - JSON-LD
4747
Framing describes the Application Programming Interface for
4848
flattening and framing JSON-LD documents.</li>
49+
<li><a href="json-ld-rdf/">JSON-LD RDF API</a> - JSON-LD
50+
RDF AP describes the Application Programming Interface for
51+
transforming JSON-LD to RDF.</li>
4952
<li><a href="rdf-graph-normalization/">RDF Graph Normalization</a> -
5053
The RDF Graph Normalization document is a general algorithm for
5154
serializing RDF graphs. It is most useful when comparing

0 commit comments

Comments
 (0)