The version at: https://docs.oasis-open-projects.org/oslc-op/ldm/v1.0/psd01/link-discovery-management-spec.html appears to have the content of Example 2 garbled, while the version at https://oslc-op.github.io/oslc-specs/specs/ldm/link-discovery-management-spec.html seems to be fine. Is this just that something that happened when the github source was published to docs.oasis, or is something more significant going on? In either case, it would be good to get it fixed.
Note that by “garbled”, I mean that in docs.oasis, it appears as:
Example 2
HTTP/1.1 200 OK
Content-Type: application/turtle
oslc_cm:implements http://elm.example.com/rm/req1URI
oslc_cm:tracks http://elm.example.com/rm/req1URI.
oslc_cm:tracks http://elm.example.com/rm/req2URI.
while in github it appears as:
Example 2
HTTP/1.1 200 OK
Content-Type: text/Turtle
Configuration-Context: http://example.org/gcm/baseline1URI
@prefix oslc_cm: <http://open-services.net/ns/cm#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
<http://example.org/cm/changeRequest1> oslc_cm:tracksRequirement <http://example.org/rm/req1URI> .
<http://example.org/cm/changeRequest2> oslc_cm:tracksRequirement <http://example.org/rm/req1URI> .
<http://example.org/cm/changeRequest3> oslc_cm:implementsRequirement <http://example.org/rm/req2URI> .
oslc_cm:implementsRequirement rdfs:label "Impalements Requirement" .
<http://example.org/cm/changeRequest3> dcterms:title "Change Request number 3" .
<http://example.org/cm/changeRequest3> dcterms:identifier "3" .
I am a turtle novice, so maybe I’m missing something obvious, but the application/turtle content in the docs.oasis made no sense to me (I tried looking at the source for the page, but it had the same content), while the text/Turtle content in github was very clear, which is why I characterized the docs.oasis content as “garbled”.