Martynas Jusevičius
Martynas Jusevičius
BTW I managed to solve the auth problem using the command line: ```bash docker-compose exec virtuoso isql exec='grant SPARQL_UPDATE to "SPARQL";' ```
> What is the `auth problem` you are referring to, as I don't see how running `grant SPARQL_UPDATE to "SPARQL";` would resolve the problem reported in this git issue loading...
Hi. Not sure what's the best place to ask, so I'll try here: * is rdflib-sqlalchemy stable? * how does it scale in terms of data volumes and perform in...
Indeed something's off here. ```java System.out.println(URI.create("file:/folder1/folder2/file1.txt").resolve("../../file2.txt").toString()); ``` Output: ``` file:/file2.txt ```
@dnovatchev XPath F&O refers to [RFC 3986](https://www.ietf.org/rfc/rfc3986.txt) for URIs and [RFC 3987](https://www.ietf.org/rfc/rfc3987.txt) for IRIs. There's a section on [Relative Resolution](https://www.rfc-editor.org/rfc/rfc3986#section-5.2).
@dnovatchev [resolve-uri](https://www.w3.org/TR/xpath-functions-31/#func-resolve-uri) operates on URIs in a similar way, so I'm assuming this function could be defined along the same lines.
Does [this](https://docs.oracle.com/javase/7/docs/api/java/net/URI.html) help? > Relativization, finally, is the inverse of resolution: For any two normalized URIs `u` and `v`, `u.relativize(u.resolve(v)).equals(v)` and `u.resolve(u.relativize(v)).equals(v)` . This operation is often useful when constructing...
OK I realize know that with Java's `URI::relativize` you wouldn't be able to create paths that start with `..` because one URI has to be a prefix of the other:...
Looks like it's related to this: https://github.com/RMLio/yarrrml-parser/commit/19aeab289b7580373c3b63bd017e97c5ec7a41c5
I like the modules idea but once again I would encourage to consider basing Fuseki on [JAX-RS](https://www.oracle.com/technical-resources/articles/java/jax-rs.html) which is a REST abstraction layer above the raw servlet API. I am...