
INSTALLATION INSTRUCTIONS
OWL Test Case Editor
=========================

Requirements:
- tomcat (tested with jakarta-tomcat-4.0.5-LE-jdk14.tar.gz
          also 4.0.4 - does not work with 4.1.12 and 4.1.18)
- java   (I use version 1.4.0)
- known to work on Linux and Windows
- download.tgz

Unpack editor.tgz
- on windows I suggest at C:\
  (this will unpack into
   C:\WWW
  )
- on unix I suggest in your home directory
  (this will unpack into
   ~/WWW
  )
These paths are hard-coded into CachedURL.java
a different choice will require editing of that
file (near the top).

After having unpacked, the next step is to create a new
directory
$tomcat/webapps/wowg

and to recursively copy
WWW/2002/03owlt/editors-draft/*
into that.
The resulting directory should look like:

[jjc@jjc wowg]$ pwd
/home/jjc/tomcat/webapps/wowg
[jjc@jjc wowg]$ ls
CVS  INSTALL  jsp  README  snapshot.html  WEB-INF
[jjc@jjc wowg]$

The final installation step is to compile the class files
found under WEB-INF/classes.
The libraries found in WEB-INF/lib are required for this.

I use forte which has immediate support for JSPs,
(simply mount the wowg directory in a new project and
right click on the WEB-INF/Classes directory and select
build).

See README for instructions on use.


Under Linux the commands are like:
  cd
  tar xzf tmp/download.tgz
  tar xzf tmp/jakarta-tomcat-4.0.5-LE-jdk14.tar.gz
  cd jakarta-tomcat-4.0.5-LE-jdk14/webapps/
  cp -r ~/WWW/2002/03owlt/editors-draft wowg
  cd wowg/WEB-INF/classes/
  javac -classpath ../lib/jena2.jar:../lib/icu4j.jar:../lib/log4j-1.2.7.jar:../lib/tidy.jar:../lib/xercesImpl.jar:../lib/xmlParserAPIs.jar:../../../../common/lib/servlet.jar wowg/*.java
  cd ~/jakarta-tomcat-4.0.5-LE-jdk14/bin
  ./startup.sh




