You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ki...@apache.org on 2021/02/08 23:21:33 UTC

[jena-site] branch master updated: Update rdf-input.md

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

kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/master by this push:
     new d6de3e0  Update rdf-input.md
     new 932ad55  Merge pull request #38 from den1s0v/patch-1
d6de3e0 is described below

commit d6de3e0afe1336b4fd3c028eeaa639943b75371c
Author: den1s0v <42...@users.noreply.github.com>
AuthorDate: Tue Feb 9 01:19:44 2021 +0300

    Update rdf-input.md
    
    Fix URLs to three RIOT examples renamed at Github
---
 source/documentation/io/rdf-input.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/documentation/io/rdf-input.md b/source/documentation/io/rdf-input.md
index e3429b8..75cfcd7 100644
--- a/source/documentation/io/rdf-input.md
+++ b/source/documentation/io/rdf-input.md
@@ -253,7 +253,7 @@ production of data to run ahead of your consumption of data which may result in
 The only complication is that you need to ensure that the thread feeding the `PipedRDFStream` and the consumer of the iterator are on different threads
 as otherwise you can run into a deadlock situation where one is waiting on data from the other which is never started.
 
-See [RIOT example 6](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/riot/ExRIOT_6.java)
+See [RIOT example 6](https://github.com/apache/jena/blob/main/jena-arq/src-examples/arq/examples/riot/ExRIOT6_AddNewReader.java)
 which shows an example usage including a simple way to push the parser onto a different thread to avoid the possible deadlock.
 
 ### Filter the output of parsing
@@ -262,10 +262,10 @@ When working with very large files, it can be useful to
 process the stream of triples or quads produced
 by the parser so as to work in a streaming fashion.
 
-See [RIOT example 4](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/riot/ExRIOT_4.java)
+See [RIOT example 4](https://github.com/apache/jena/blob/main/jena-arq/src-examples/arq/examples/riot/ExRIOT4_StreamRDF_Filter.java)
 
 ### Add a new language
 
 The set of languages is not fixed. A new language, 
 together with a parser, can be added to RIOT as shown in
-[RIOT example 5](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/riot/ExRIOT_5.java)
+[RIOT example 5](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/riot/ExRIOT5_StreamRDFCollect.java)