This is an automated email from the ASF dual-hosted git repository.
andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena-site.git
The following commit(s) were added to refs/heads/main by this push:
new 66c779eca Correct examples links
66c779eca is described below
commit 66c779eca922645cf546b17b4a8c8861c8005fee
Author: Andy Seaborne <[email protected]>
AuthorDate: Fri Aug 26 15:49:37 2022 +0100
Correct examples links
---
source/documentation/io/rdf-input.md | 6 +++---
source/documentation/io/rdf-output.md | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/source/documentation/io/rdf-input.md
b/source/documentation/io/rdf-input.md
index fd82e6114..06aacc4aa 100644
--- a/source/documentation/io/rdf-input.md
+++ b/source/documentation/io/rdf-input.md
@@ -236,7 +236,7 @@ The base URI for reading models will be the original URI,
not the alternative lo
## Advanced examples
-Example code may be found in
[jena-examples:arq/examples](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/).
+Example code may be found in
[jena-examples:arq/examples](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/riot/).
### Iterating over parser output
@@ -264,10 +264,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/blob/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/ExRIOT4_StreamRDF_Filter.java)
+See [RIOT example
4](https://github.com/apache/jena/blob/main/jena-examples/src/main/java/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/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/ExRIOT5_StreamRDFCollect.java)
+[RIOT example
5](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/riot/ExRIOT5_StreamRDFCollect.java)
diff --git a/source/documentation/io/rdf-output.md
b/source/documentation/io/rdf-output.md
index fe2791c8d..dfb9196b6 100644
--- a/source/documentation/io/rdf-output.md
+++ b/source/documentation/io/rdf-output.md
@@ -367,7 +367,7 @@ pass the "frame" in the `JSONLD_FRAME_PRETTY` and
`JSONLD_FRAME_FLAT`
cases.
What can be done, and how it can be, is explained in the
-[sample
code](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/Ex_WriteJsonLD.java).
+[sample
code](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/riot/Ex_WriteJsonLD.java).
### RDF Binary {#rdf-binary}
@@ -402,7 +402,7 @@ while the jena writer name defaults to a streaming plain
output.
## Examples {#examples}
-Example code may be found in
[jena-examples:arq/examples](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/).
+Example code may be found in
[jena-examples:arq/examples](https://github.com/apache/jena/tree/main/jena-examples/src/main/java/arq/examples/riot/).
### Ways to write a model
@@ -456,7 +456,7 @@ might give:
### Adding a new output format
A complete example of adding a new output format is given in the example file:
-[RIOT Output example
7](https://github.com/apache/jena/blob/main/jena-examples/src/main/java/arq/examples/arq/examples/riot/ExRIOT7_AddNewWriter.java).
+[RIOT Output example
7](https://github.com/apache/jena/blob/main/jena-examples/src/main/java/arq/examples/riot/ExRIOT7_AddNewWriter.java).
## Notes {#notes}