summaryrefslogtreecommitdiff
path: root/bin/makedoc.sh
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-11-27 14:07:43 +0000
committerthomascube <thomas@roundcube.net>2010-11-27 14:07:43 +0000
commit26ea6f9ceb79a78b8b804897d863654bac46d01a (patch)
tree80262a364cd4b909efb5748a0110ed17914a3dec /bin/makedoc.sh
parenta2700585cca05300a11f774c9407e08307894977 (diff)
Remove development stuff and update versions
Diffstat (limited to 'bin/makedoc.sh')
-rwxr-xr-xbin/makedoc.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/bin/makedoc.sh b/bin/makedoc.sh
deleted file mode 100755
index 40c75bf47..000000000
--- a/bin/makedoc.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-TITLE="Roundcube Classes"
-PACKAGES="Core"
-
-INSTALL_PATH="`dirname $0`/.."
-PATH_PROJECT=$INSTALL_PATH/program/include
-PATH_DOCS=$INSTALL_PATH/doc/phpdoc
-BIN_PHPDOC="`/usr/bin/which phpdoc`"
-
-if [ ! -x "$BIN_PHPDOC" ]
-then
- echo "phpdoc not found: $BIN_PHPDOC"
- exit 1
-fi
-
-OUTPUTFORMAT=HTML
-CONVERTER=frames
-TEMPLATE=earthli
-PRIVATE=off
-
-# make documentation
-$BIN_PHPDOC -d $PATH_PROJECT -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \
--o $OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE
-