diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-07 21:50:37 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-07 21:50:37 +0100 |
commit | 6fdc35e13eff20c82e314a620158e56aa8366648 (patch) | |
tree | 4eead030843bacac815010eae3f25b28a576e915 /bin/makedoc.sh | |
parent | 2c6aea9b8e3431a22399a55d2b47e974e24cb4c8 (diff) |
Remove development stuff and prepare for releasev0.9-beta
Diffstat (limited to 'bin/makedoc.sh')
-rwxr-xr-x | bin/makedoc.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/bin/makedoc.sh b/bin/makedoc.sh deleted file mode 100755 index 2a34254cb..000000000 --- a/bin/makedoc.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -TITLE="Roundcube Webmail" -PACKAGES="Core" - -INSTALL_PATH="`dirname $0`/.." -PATH_PROJECT=$INSTALL_PATH/program/include -PATH_FRAMEWORK=$INSTALL_PATH/program/lib/Roundcube -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,$PATH_FRAMEWORK -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \ --o $OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE - |