-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guessing for URI #16
Comments
In the file "xsparql.xquery" commenting lines 196 and 197 fixes this issue. xs:anyURI should already cover all valid URIs . |
The commented out lines are in (: else if (fn:starts-with(xs:string($Node), "https://") or fn:starts-with(xs:string($Node), "http://") or fn:starts-with(xs:string($Node), "mailto:") or fn:starts-with(xs:string($Node), "file:")) :)
(: then _xsparql:_binding("_sparql_result:uri", $label, "", "") :) |
@zacharywhitley Close this issue: it was fixed around Jan 2017. |
The program guesses wrong whether an object is to be inserted as URI.
Example:
"http:\my.com Link to my site" will be converted to <http:\my.com Link to my site>, thus making the output turtle file incorrect.
The text was updated successfully, but these errors were encountered: