You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2022/02/05 10:27:23 UTC

[jena] branch main updated (d3cbbba -> 257602c)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git.


    from d3cbbba  Merge pull request #1184 from afs/store-protocol
     new 7bdc3a1  JENA-2270: Upload data service; share with GSP_RW
     new 66cc7ec  JENA-2270: Remove HTML_FileUpload
     new 74aa12b  Replace deprecated code
     new e30e1b2  JENA-2272: Fix for StoreProtocol.copySetup
     new bf5fa5b1 More tests of setup and auth for GSP, DSP, and RDFLink
     new 257602c  Merge pull request #1187 from afs/jena2270-upload

The 9659 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../jena/sparql/exec/http/StoreProtocol.java       |  21 +-
 .../org/apache/jena/fuseki/build/FusekiConfig.java |  27 +--
 .../org/apache/jena/fuseki/server/DataService.java |   7 +-
 .../jena/fuseki/server/OperationRegistry.java      |   2 +-
 .../org/apache/jena/fuseki/servlets/GSP_RW.java    | 211 ++++++---------------
 .../jena/fuseki/servlets/HTML_FileUpload.java      | 170 -----------------
 .../org/apache/jena/fuseki/servlets/UploadRDF.java | 194 +++++++++++++++++++
 .../system/{Upload.java => DataUploader.java}      | 172 +++++------------
 .../apache/jena/fuseki/main/TestFileUpload.java    |   5 +-
 .../org/apache/jena/fuseki/mgt/ActionDatasets.java |   4 +-
 .../java/org/apache/jena/http/TestAuthRemote.java  |  54 +++++-
 .../jena/integration/TS_RDFLinkIntegration.java    |   2 +-
 .../apache/jena/integration/TestRDFLinkFuseki.java |   2 +-
 ...TestRDFLinkRemote.java => TestRDFLinkHTTP.java} |   4 +-
 .../jena/sparql/exec/http/TS_SparqlExecHttp.java   |   1 +
 .../org/apache/jena/sparql/exec/http/TestGSP.java  |   5 +
 .../jena/sparql/exec/http/TestSetupHTTP.java       | 102 ++++++++++
 .../jdbc/remote/utils/TestJdbcRemoteUtils.java     |   3 +-
 .../java/org/apache/jena/rdflink/RDFLinkHTTP.java  |  18 +-
 .../apache/jena/rdflink/RDFLinkHTTPBuilder.java    |   2 +-
 20 files changed, 496 insertions(+), 510 deletions(-)
 delete mode 100644 jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/HTML_FileUpload.java
 create mode 100644 jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/servlets/UploadRDF.java
 rename jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/system/{Upload.java => DataUploader.java} (51%)
 rename jena-integration-tests/src/test/java/org/apache/jena/integration/{TestRDFLinkRemote.java => TestRDFLinkHTTP.java} (98%)
 create mode 100644 jena-integration-tests/src/test/java/org/apache/jena/sparql/exec/http/TestSetupHTTP.java