afs opened a new pull request, #170:
URL: https://github.com/apache/jena-site/pull/170

   Links to javadoc were broken because the links do not include the module 
name.
   
   Rather than change the javadoc production, which is automnated on a release, 
this PR change the website documentation.
   
   Example:
   
   
https://jena.apache.org/documentation/javadoc/arq/org/apache/jena/riot/RDFParser.html
   should be
   
https://jena.apache.org/documentation/javadoc/arq/org.apache.jena.arq/org/apache/jena/riot/RDFParser.html
   
   i.e.
   ```
   
-[`RDFParser`](https://jena.apache.org/documentation/javadoc/arq/org/apache/jena/riot/RDFParser.html)
   
+[`RDFParser`](https://jena.apache.org/documentation/javadoc/arq/org.apache.jena.arq/org/apache/jena/riot/RDFParser.html)
   ```
   
   The changes were done with repeated application (some lines had more than 
one occurrence) os
   ```
   find documentation tutorials  -name \*.md -type f | \
              xargs -n 1 perl -p -i -e 
's!javadoc/jena/org/!javadoc/jena/org.apache.jena.core/org/!'
   ```
   ```
   find documentation -name \*.md -type f | \
             xargs -n 1 perl -p -e 
's!javadoc/arq/org/!javadoc/arq/org.apache.jena.arq/org/!'
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jena.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to