[
https://issues.apache.org/jira/browse/JENA-1960?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17196069#comment-17196069
]
ASF subversion and git services commented on JENA-1960:
-------------------------------------------------------
Commit 99a215baf0e488ebb4730d1b3c73eda547ac9518 in jena's branch
refs/heads/master from Andy Seaborne
[ https://gitbox.apache.org/repos/asf?p=jena.git;h=99a215b ]
Merge pull request #795 from afs/fuseki-examples
JENA-1960: Rewrite Fuseki examples for new style endpoints
> Clean up Fuseki dispatch
> -------------------------
>
> Key: JENA-1960
> URL: https://issues.apache.org/jira/browse/JENA-1960
> Project: Apache Jena
> Issue Type: Improvement
> Components: Fuseki
> Affects Versions: Jena 3.16.0
> Reporter: Andy Seaborne
> Assignee: Andy Seaborne
> Priority: Major
> Fix For: Jena 3.17.0
>
> Time Spent: 2h 10m
> Remaining Estimate: 0h
>
> In order to support the "old style" configuration (e.g.
> {{fuseki:serviceQuery}}), Fuseki dispatch currently interprets a named
> service endpoint like "{{/dataset/sparql?query=}}" as also configuring a
> service on the dataset URL "{{/dataset?query=}}".
> This is currently done during request dispatch. It also applies to preferred
> "new style" configuration.
> {noformat}
> fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name
> "sparql" ] ;
> {noformat}
> This ticket is to change changing of "old style" configuration to be part of
> server setup, not during dispatch, and also to apply it only to "old style".
> A configuration like:
> {noformat}
> fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name
> "sparql" ] ;
> {noformat}
> will only enable "{{/dataset/sparql?query=}}". A query service on the dataset
> URL
> is a service endpoint of ""
> {noformat}
> fuseki:endpoint [ fuseki:operation fuseki:query ; fuseki:name "" ] ;
> {noformat}
> or the name can be omitted:
> {noformat}
> fuseki:endpoint [ fuseki:operation fuseki:query ] ;
> {noformat}
>
> This compatibility dispatch effect on new style configurations has never been
> documented.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)