Removed my superflous java doc scripts due to the fact that I found better
authormj <mj>
Sun, 23 Sep 2001 11:52:04 +0000 (11:52 +0000)
committermj <mj>
Sun, 23 Sep 2001 11:52:04 +0000 (11:52 +0000)
code in build.sh-dist

doc/classpath.sh [deleted file]
doc/classpathrc [deleted file]
doc/makejavadoc.sh [deleted file]

diff --git a/doc/classpath.sh b/doc/classpath.sh
deleted file mode 100755 (executable)
index b1fdb78..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-#
-# Usage:
-# classpath.sh [ownpath]
-#
-# ownpath: anzuhaengende persoenliche Klassen-Pfade
-#
-
-
-RCFILE=classpathrc
-
-# classpathrc auswerten
-DUM=$( cat $RCFILE )
-       
-# Zeilenumbrueche entfernen und Tilde erweitern
-DUM2=$( for i in $DUM ; do eval echo -n "$i:" ; done )
-
-# Sicherstellen, dass kein doppelter Doppelpunkt in CLASSPATH enthalten ist. Nur wegen der Sicherheit.
-echo "$(/bin/echo $DUM2 | /bin/sed -e "s/::/:/g")"
-
diff --git a/doc/classpathrc b/doc/classpathrc
deleted file mode 100755 (executable)
index 64a634b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/pub/Dokumente/Indymedia/de-tech/Mir/WEB-INF/lib/*.jar
diff --git a/doc/makejavadoc.sh b/doc/makejavadoc.sh
deleted file mode 100755 (executable)
index 53ba812..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-# Generates JavaDoc documentation of the Mir sources
-
-if ( grep XXXUNCONFIGUREDXXX classpathrc > /dev/null ); then
-       echo "Before you can use this script you have to edit classpathrc"
-       echo "so it contains all pathnames and .jar files that are neccessary"
-       echo "to build the docs. You'll see the warnings if some files are missing."
-fi
-
-
-OLDU=$(umask)
-umask 022
-
-BASEDIR=$(pwd)
-SOURCES=$(find $BASEDIR/../source -name \*.java)
-PACKAGES=$(. classpath.sh $BASEDIR/../../Mir/WEB-INF/lib/*.jar)
-LINK=/usr/share/doc/libservlet2.2-java/api/
-
-#echo $BASEDIR
-#echo $SOURCES
-#echo $PACKAGES
-
-javadoc -sourcepath $PACKAGES -d /pub/Dokumente/Indymedia/de-tech/Mir/javadoc/ -link $LINK $SOURCES
-
-umask $OLDU
\ No newline at end of file