timrdf/prov-wg

paq should rdfs:seeAlso ns/prov#, not TR/prov#

Closed this issue · 1 comments

"update to remove bad tr ref" @2013-04-26 and the latest dvcs.w3c namespace/prov-aq.owl suggests that prov-aq should rdfs:seeAlso http://www.w3.org/ns/prov# and not http://www.w3.org/TR/prov#, but the following suggests that the change didn't make it through to final publishing:

curl -H "Accept: text/turtle" -L http://www.w3.org/ns/prov-aq > w3c-paq.ttl
bash-3.2$ diff namespace/prov-aq.ttl w3c-paq.ttl 
15c15
<     rdfs:seeAlso <http://www.w3.org/ns/prov#>, <http://www.w3.org/TR/prov-aq/> ;

---
>     rdfs:seeAlso <http://www.w3.org/TR/prov#>, <http://www.w3.org/TR/prov-aq/> ;

The following 3 have the correct ns/prov# link; the only incorrect one is the paq turtle above.

  • curl -H "Accept: application/rdf+xml" -L http://www.w3.org/ns/prov-aq
  • curl -H "Accept: application/rdf+xml" -L http://www.w3.org/ns/prov
  • curl -H "Accept: text/turtle" -L http://www.w3.org/ns/prov
bash-3.2$ curl -sH "Accept: text/turtle" -L http://www.w3.org/ns/prov-aq | rapper -q -i turtle -o ntriples -I 'http://localhost' - | grep 'prov-aq#' | grep '#seeAlso' | sort -u
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/TR/prov#> .
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/TR/prov-aq/> .

bash-3.2$ curl -sH "Accept: text/turtle" -L http://www.w3.org/ns/prov | rapper -q -i turtle -o ntriples -I 'http://localhost' - | grep 'prov-aq#' | grep '#seeAlso' | sort -u
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/TR/prov-aq/> .
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/ns/prov#> .

bash-3.2$ curl -sH "Accept: application/rdf+xml" -L http://www.w3.org/ns/prov | rapper -q -i rdfxml -o ntriples -I 'http://localhost' - | grep 'prov-aq#' | grep '#seeAlso' | sort -u
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/TR/prov-aq/> .
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/ns/prov#> .

bash-3.2$ curl -sH "Accept: application/rdf+xml" -L http://www.w3.org/ns/prov-aq | rapper -q -i rdfxml -o ntriples -I 'http://localhost' - | grep 'prov-aq#' | grep '#seeAlso' | sort -u
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/TR/prov-aq/> .
<http://www.w3.org/ns/prov-aq#> <http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.w3.org/ns/prov#> .