From: mj Date: Sun, 23 Sep 2001 11:52:04 +0000 (+0000) Subject: Removed my superflous java doc scripts due to the fact that I found better X-Git-Tag: prexmlproducerconfig~452 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=a2fd773e96328371ab91409fccc135d6e0beea6d;p=mir.git Removed my superflous java doc scripts due to the fact that I found better code in build.sh-dist --- diff --git a/doc/classpath.sh b/doc/classpath.sh deleted file mode 100755 index b1fdb786..00000000 --- a/doc/classpath.sh +++ /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 index 64a634b0..00000000 --- a/doc/classpathrc +++ /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 index 53ba812a..00000000 --- a/doc/makejavadoc.sh +++ /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