|
7 | 7 | <script src="./common/local-biblio.js" class="remove"></script>
|
8 | 8 | <script src="./common/fixup.js" class="remove"></script>
|
9 | 9 | <script class='remove'>
|
| 10 | + // Use fragment identifier of test as name. |
| 11 | + function data_test_display() { |
| 12 | + const test_references = document.querySelectorAll('details.respec-tests-details a'); |
| 13 | + for( const a of test_references ) { |
| 14 | + const href = a.href; |
| 15 | + const test_reference = href.split('#')[1]; |
| 16 | + a.textContent = test_reference; |
| 17 | + } |
| 18 | + } |
| 19 | + |
10 | 20 | var respecConfig = {
|
11 | 21 | localBiblio: localBibliography,
|
12 | 22 | specStatus: "ED",
|
13 | 23 | edDraftURI: "https://w3c.github.io/rdf-semantics/spec/",
|
14 |
| - testSuiteURI: "https://w3c.github.io/rdf-tests/rdf-mt/", |
| 24 | + testSuiteURI: "https://w3c.github.io/rdf-tests/rdf/rdf12/", |
15 | 25 | shortName: "rdf12-semantics",
|
16 | 26 | copyrightStart: "2004",
|
17 | 27 |
|
|
34 | 44 | doJsonLd: true,
|
35 | 45 | wgPublicList: "public-rdf-star-wg",
|
36 | 46 | xref: [ "RDF12-CONCEPTS" ],
|
37 |
| -// localBiblio: localBibliography, |
| 47 | + postProcess: [data_test_display], |
38 | 48 |
|
39 | 49 | lint: { "no-unused-dfns": false }
|
40 | 50 | };
|
@@ -630,12 +640,19 @@ <h3>Properties of simple entailment and satisfiability</h3>
|
630 | 640 |
|
631 | 641 | <p class="fact">Every graph is simply <a>satisfiable</a>.</p>
|
632 | 642 |
|
633 |
| - <p>This does not always hold for extended notions of interpretation. |
| 643 | + <p id="ill-typed-tests" data-tests=" |
| 644 | + ../rdf11/rdf-mt/index.html#datatypes-non-well-formed-literal-2, |
| 645 | + ../rdf11/rdf-mt/index.html#xmlsch-02-whitespace-facet-1, |
| 646 | + ../rdf11/rdf-mt/index.html#xmlsch-02-whitespace-facet-2, |
| 647 | + ../rdf11/rdf-mt/index.html#xmlsch-02-whitespace-facet-4"> |
| 648 | + This does not always hold for extended notions of interpretation. |
634 | 649 | For example, a graph containing an <a>ill-typed</a> literal is <a>D-unsatisfiable</a>.</p>
|
635 | 650 |
|
636 | 651 | <p>The following <dfn>interpolation</dfn> <strong>lemma</strong> </p>
|
637 | 652 |
|
638 |
| - <p class="fact">G <a>simply entails</a> a graph E if and only if a <a>subgraph</a> of G is an instance of E.</p> |
| 653 | + <p id="interpolation-lemma-tests" class="fact" data-tests=" |
| 654 | + rdf-semantics/index.html#all-identical-triple-terms-are-the-same"> |
| 655 | + G <a>simply entails</a> a graph E if and only if a <a>subgraph</a> of G is an instance of E.</p> |
639 | 656 |
|
640 | 657 | <p>completely characterizes simple entailment in syntactic
|
641 | 658 | terms. To detect whether one RDF graph <a>simply entails</a> another, check that
|
@@ -832,7 +849,11 @@ <h2>D-interpretations</h2>
|
832 | 849 | <table>
|
833 | 850 | <caption>Semantic conditions for literals.</caption>
|
834 | 851 | <tbody>
|
835 |
| - <tr><td class="semantictable">If <code>rdf:langString</code> is in D, |
| 852 | + <tr><td id="d-int-langString-tests" class="semantictable" data-tests=" |
| 853 | + ../rdf11/rdf-mt/index.html#tex-01-language-tag-case-1, |
| 854 | + ../rdf11/rdf-mt/index.html#tex-01-language-tag-case-2, |
| 855 | + rdf-semantics/index.html#opaque-language-string-control"> |
| 856 | + If <code>rdf:langString</code> is in D, |
836 | 857 | then for every language-tagged string E with lexical form sss and language tag ttt,
|
837 | 858 | IL(E)= < sss, ttt' >, where ttt' is ttt converted to lower case using US-ASCII rules</td></tr>
|
838 | 859 | <tr><td class="semantictable">If <code>rdf:dirLangString</code> is in D,
|
|
0 commit comments