ljos/sparql-mode

Evaluation of SPARQL in Org is disabled

wouterbeek opened this issue · 3 comments

When I press C-c C-c on a SPARQL code block inside Org mode, I get the following message: "Evaluation of this SPARQL code block is disabled."

This is how I markup the query in Org:

#+BEGIN_SRC sparql :url http://localhost:3020/sparql :format test/csv
select * { ?s ?p ?o } limit 1
#+END_SRC

The same query does work when M-x sparql-query-region is performed in a SPARQL buffer.

emacs-version is 26.0.50; org-version is 9.0.5.

ljos commented

You have written test/csv instead text/csv and I had made a mistake handling error responses. I fixed the error and now you should get better error messages when the server gives an error response.

Thank you for taking the time to send an error report. It is appreciated.

@ljos Thanks for the quick response! I've fixed my typo, but am still receiving the same message.

ljos commented