Skip to content

Commit f5bc1dd

Browse files
committed
Updates to common files.
2 parents 0c0314c + d462dad commit f5bc1dd

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

common/common.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,8 @@ require(["core/pubsubhub"], function(respecEvents) {
148148
$("a[href]", documentElement).each( function(index) {
149149
// Don't rewrite these.
150150
if ($(this, documentElement).closest('dd').prev().text().match(/Latest editor|Test suite|Implementation report/)) return;
151+
if ($(this, documentElement).closest('section.preserve').length > 0) return;
152+
151153
const href = $(this, documentElement).attr("href");
152154
for (const toReplace in jsonld.conversions) {
153155
if (href.indexOf(toReplace) !== -1) {

common/jsonld.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,24 @@ const jsonld = {
77
href: "https://w3c.github.io/json-ld-syntax/",
88
authors: ["Gregg Kellogg"],
99
publisher: "W3C",
10-
status: 'FPWD'
10+
status: 'FPWD',
11+
date: '06 September 2018'
1112
},
1213
"JSON-LD11-API": {
1314
title: "JSON-LD 1.1 Processing Algorithms and API",
1415
href: "https://w3c.github.io/json-ld-api/",
1516
authors: ["Gregg Kellogg"],
1617
publisher: "W3C",
17-
status: 'FPWD'
18+
status: 'FPWD',
19+
date: '06 September 2018'
1820
},
1921
"JSON-LD11-FRAMING": {
2022
title: "JSON-LD 1.1 Framing",
2123
href: "https://w3c.github.io/json-ld-framing/",
2224
authors: ["Gregg Kellogg"],
2325
publisher: "W3C",
24-
status: 'FPWD'
26+
status: 'FPWD',
27+
date: '06 September 2018'
2528
},
2629
// aliases to known references
2730
"IEEE-754-2008": {
@@ -39,8 +42,8 @@ const jsonld = {
3942
}
4043
},
4144
conversions: {
42-
"https://w3c.github.io/json-ld-syntax/": "http://www.w3.org/TR/2018/WD-json-ld-syntax-20180903/",
43-
"https://w3c.github.io/json-ld-api/": "http://www.w3.org/TR/2018/WD-json-ld-api-20180903/",
44-
"https://w3c.github.io/json-ld-framing/": "http://www.w3.org/TR/2018/WD-json-ld-syntax-framing/"
45+
"https://w3c.github.io/json-ld-syntax/": "http://www.w3.org/TR/2018/WD-json-ld11-syntax-20180903/",
46+
"https://w3c.github.io/json-ld-api/": "http://www.w3.org/TR/2018/WD-json-ld11-api-20180903/",
47+
"https://w3c.github.io/json-ld-framing/": "http://www.w3.org/TR/2018/WD-json-ld11-framing-20180903/"
4548
}
4649
};

common/terms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from a following name. In JSON-LD the names in an object MUST be unique.
1717
In the <a>internal representation</a> a <a>JSON object</a> is equivalent to a
1818
<dfn data-cite="WEBIDL#dfn-dictionary" data-lt="dictionaries" class="preserve">dictionary</dfn> (see [[!WEBIDL]]),
19-
composed of <dfn data-cite="WEBIDL#dfn-dictionary-members" data-lt="dictionary member|member|members" class="preserve">dictionary members</dfn> with key-value pairs.</dd>
19+
composed of <dfn data-cite="WEBIDL#dfn-dictionary-member" data-lt="dictionary member|member|members" class="preserve">dictionary members</dfn> with key-value pairs.</dd>
2020
<dt class="changed"><dfn data-lt="internal representation">JSON-LD internal representation</dfn></dt><dd class="changed">The JSON-LD
2121
internal representation is the result of transforming a JSON syntactic structure
2222
into the core data structures suitable for direct processing:

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ <h2>Changes since 1.0 Draft of 30 August 2012</h2>
15991599
</ul>
16001600
</section>
16011601

1602-
<section class="appendix informative">
1602+
<section class="appendix informative preserve">
16031603
<h4>Open Issues</h4>
16041604
<p>The following is a list of issues open at the time of publication.</p>
16051605
<p class="issue defer" data-number="5"></p>

0 commit comments

Comments
 (0)