#!/bin/ksh
#
# This script undoes the configuration setup by the set_config script.
#
# This script must reside in the configuration sub-directory of the DOC 
# directory tree. 
#

script_path=`whence $0` >/dev/null 2>&1
script_home=`dirname $script_path`

DOC_DIR=`dirname $script_path`/..

file=$DOC_DIR/set_doc_envs.sh 
if [ -a $file ]; then rm $file ; fi

file=$DOC_DIR/bin/doc_java 
if [ -a $file ]; then rm $file ; fi

file=$DOC_DIR/configuration/OrbixWeb/Orbix.cfg
if [ -a $file ]; then rm $file ; fi

file=$DOC_DIR/java_class/OrbixWeb.properties
if [ -a $file ]; then rm $file ; fi
