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 2018/10/19 11:30:11 UTC

svn commit: r1844329 - in /jena/site/trunk/content/documentation: tdb/commands.mdtext tools/index.mdtext

Author: andy
Date: Fri Oct 19 11:30:11 2018
New Revision: 1844329

URL: http://svn.apache.org/viewvc?rev=1844329&view=rev
Log:
JENAROOT -> JENA_HOME

Modified:
    jena/site/trunk/content/documentation/tdb/commands.mdtext
    jena/site/trunk/content/documentation/tools/index.mdtext

Modified: jena/site/trunk/content/documentation/tdb/commands.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/tdb/commands.mdtext?rev=1844329&r1=1844328&r2=1844329&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/tdb/commands.mdtext (original)
+++ jena/site/trunk/content/documentation/tdb/commands.mdtext Fri Oct 19 11:30:11 2018
@@ -21,8 +21,8 @@ Title: TDB Command-line Utilities
 
 From Apache Jena version `2.7.x` onwards, TDB is now installed as part of a single integrated Jena
 package. There is no longer a need to install a separate TDB package to run the TDB command line
-tools, or to use TDB in your Java programs. See the [downloads](/download/index.cgi) page for details on getting the latest Jena
-release.
+tools, or to use TDB in your Java programs. See the [downloads](/download/index.cgi) page
+for details on getting the latest Jena release.
 
 ## Scripts
 
@@ -33,36 +33,10 @@ Mac/OS systems. The directory `bat/` con
 provide the same functionality for Windows systems that are not using
 Cygwin.
 
-### Script set up - bash scripts
+### Script set up
 
-Set the environment variable `JENAROOT` to the root of the Jena
-installation. E.g:
-
-    export JENAROOT=/home/somebody/dev/apache-jena
-
-or
-
-    export JENAROOT=/usr/local/apache-jena
-
-
-Then set the `PATH` to include the `bin` directory:
-
-    PATH=$JENAROOT/bin:$PATH
-
-This can be done in `.bashrc`, or its equivalent on Mac OS/X, to ensure that the environment
-variables are always available.
-
-### Script set up - Windows batch files
-
-Setting environment variables in Windows is slightly involved. You can set them
-each time you start a command prompt:
-
-    SET JENAROOT=\Users\somebody\dev\apache-jena
-    SET PATH=%PATH%;%JENAROOT%\bin
-
-or you can follow [this guide](http://searchsystemschannel.techtarget.com/feature/Setting-Windows-7-environment-variables)
-or one like it to set the environment variables so that they are available every
-time you launch the command prompt.
+The TDB tools are included in the jena toolset. See the 
+[command line tools page](../tools/).
 
 ## Command line script arguments
 

Modified: jena/site/trunk/content/documentation/tools/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/tools/index.mdtext?rev=1844329&r1=1844328&r2=1844329&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/tools/index.mdtext (original)
+++ jena/site/trunk/content/documentation/tools/index.mdtext Fri Oct 19 11:30:11 2018
@@ -41,7 +41,7 @@ Note that many examples of using Jena to
 
 ### Common Issues with Running the Tools
 
-If you receive errors stating that a class is not found then it is most likely that `JENAROOT` is not set correctly.  As a quick sanity check you can try the following to see if it is set appropriately:
+If you receive errors stating that a class is not found then it is most likely that `JENA_HOME` is not set correctly.  As a quick sanity check you can try the following to see if it is set appropriately:
 
 **On Linux / Mac**
 
@@ -51,9 +51,9 @@ If you receive errors stating that a cla
 
  - `cd %JENA_HOME%`
 
-If this command fails then `JENAROOT` is not correctly set, please ensure you have set it correctly and try again.
+If this command fails then `JENA_HOME` is not correctly set, please ensure you have set it correctly and try again.
 
-Windows users may experience problems if trying to run the tools when their `JENAROOT` path contains spaces in it, there are two workarounds for this:
+Windows users may experience problems if trying to run the tools when their `JENA_HOME` path contains spaces in it, there are two workarounds for this:
 
  1. Move your Jena install to a path without spaces
  1. Grab the latest scripts from [master][1] where they have been fixed to safely handle this.  Future releases will include this fix and resolve this issue