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 2017/10/24 17:53:25 UTC

svn commit: r1813198 - in /jena/dist: Javadoc/main-index.mdtext Javadoc/prepare-javadoc dist-0.sh dist.sh

Author: andy
Date: Tue Oct 24 17:53:25 2017
New Revision: 1813198

URL: http://svn.apache.org/viewvc?rev=1813198&view=rev
Log:
Update tools

Removed:
    jena/dist/dist-0.sh
Modified:
    jena/dist/Javadoc/main-index.mdtext
    jena/dist/Javadoc/prepare-javadoc
    jena/dist/dist.sh

Modified: jena/dist/Javadoc/main-index.mdtext
URL: http://svn.apache.org/viewvc/jena/dist/Javadoc/main-index.mdtext?rev=1813198&r1=1813197&r2=1813198&view=diff
==============================================================================
--- jena/dist/Javadoc/main-index.mdtext (original)
+++ jena/dist/Javadoc/main-index.mdtext Tue Oct 24 17:53:25 2017
@@ -3,11 +3,11 @@ Title: Jena JavaDoc
   - [Jena Core JavaDoc](jena/index.html)
   - [ARQ JavaDoc (SPARQL)](arq/index.html)
   - [TDB JavaDoc](tdb/index.html)
+  - [TDB2 JavaDoc](tdb2/index.html)
   - [RDF Connection](rdfconnection/index.html)
   - Fuseki JavaDoc
     - [Fuseki2](fuseki2/index.html)
     - [Fuseki2 Embedded](fuseki2-embedded/index.html)
-    - [Fuseki1](fuseki1/index.html)
   - [Text search](text/index.html)
   - [Spatial search](spatial/index.html)
   - [Security Permissions JavaDoc](permissions/index.html)

Modified: jena/dist/Javadoc/prepare-javadoc
URL: http://svn.apache.org/viewvc/jena/dist/Javadoc/prepare-javadoc?rev=1813198&r1=1813197&r2=1813198&view=diff
==============================================================================
--- jena/dist/Javadoc/prepare-javadoc (original)
+++ jena/dist/Javadoc/prepare-javadoc Tue Oct 24 17:53:25 2017
@@ -4,14 +4,14 @@ DIR="$PWD"
 
 ## If from the staging area
 ## REPO=https://repository.apache.org/content/repositories/orgapachejena-NNNN
-REPO=https://repository.apache.org/content/repositories/orgapachejena-1016
 
 ## If from the released artifacts
-# REPO=https://repository.apache.org/content/repositories/releases/
+REPO=https://repository.apache.org/content/repositories/releases/
+
 JARS="$DIR/jars"
 
-JENA_VER=3.2.0
-FU2_VER=2.5.0
+JENA_VER=3.4.0
+FU2_VER=$JENA_VER
 
 
 ## Cache/download to the current directory.
@@ -43,7 +43,7 @@ JAVADOC_DIR="J"
 mkdir -p "$JAVADOC_DIR"
 rm -rf "$JAVADOC_DIR"/*
 ## Align to the jena-site version
-## cp main-index.mdtext "$JAVADOC_DIR"/index.mdtext
+cp main-index.mdtext "$JAVADOC_DIR"/index.mdtext
 
 mkdir "$JAVADOC_DIR/elephas"
 cp elephas-index.mdtext "$JAVADOC_DIR/elephas/index.mdtext"

Modified: jena/dist/dist.sh
URL: http://svn.apache.org/viewvc/jena/dist/dist.sh?rev=1813198&r1=1813197&r2=1813198&view=diff
==============================================================================
--- jena/dist/dist.sh (original)
+++ jena/dist/dist.sh Tue Oct 24 17:53:25 2017
@@ -5,18 +5,20 @@
 #  Copy into the right shape in $OUT (dist-jena)
 
 CMD="$(basename $0)"
-NNN="...."
+NNN="${NNN:-}"
+
+if [[ $NNN -eq "" ]]
+then
+    echo '$NNN not set'
+fi
 
 usage()
 {
 cat << EOF
-usage: $CMD DIST_VER [echo]
+usage: $CMD DIST_VER
 
 DIST_VER is the version of the Jena distribution e.g. 3.4.0
 
-You may optionally specify echo as a third argument to just print
-what would be run without actually running it
-
 EOF
 }