kianschmalenbach / rdf-browser

A Firefox Add-on that requests RDF files and renders RDF files as Turtle documents with clickable links
MIT License
16 stars 6 forks source link

Relative URIs in Turtle #18

Closed aharth closed 3 years ago

aharth commented 3 years ago

The RDF browser (or the upstream Turtle parser) seems to have problems with relative URIs.

E.g., http://paul.ti.rw.fau.de/~ec69etyl/foo/bar/bar.ttl is rendered as:

</foo.ttl#s> </foo.ttl#p> </foo.ttl#o> .

but should be

<../foo.ttl#s> <../foo.ttl#p> <../foo.ttl#o> .

Possibly related to #11?

kianschmalenbach commented 3 years ago

Hi, Thanks for the feedback. I just committed a fix for this issue, it will be included in the upcoming release.