joshsh / ripple

Semantic Web scripting language
Other
101 stars 8 forks source link

6 - Turtle view uses illegal QNames #6

Closed joshsh closed 13 years ago

joshsh commented 13 years ago
Turtle view uses namespace prefixes wherever possible.  However, it does
not check whether the resulting QName is legal in Turtle (and therefore
Ripple) syntax. Such a QName at the command line will not have the desired
interpretation.

1 >>  @prefix http: <http://www.w3.org/2006/http#>.
2 >>  <http://www.w3.org/2006/http#404>.

rdf:_1  (http:404)
   rdf:type
      owl:Thing;
   rdfs:label
      "Not Found"@en.

3 >>  http:404.

rdf:_1  (http: 404)

4 >>  


Original link: http://code.google.com/p/ripple/issues/detail?id=6