diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-07 21:02:12 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-08-07 21:02:12 +0000 |
| commit | 04107213faada624e58c82712ce1429a9d6db8a2 (patch) | |
| tree | abf2b1b5689dd080a34b383d7651e3a58f6c7c55 /roundcubemail/bin | |
| parent | f46626aaf2426cb1374628c8c4194c64bc716fd6 (diff) | |
Documentation, code style and cleanup
git-svn-id: https://svn.roundcube.net/trunk@666 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/bin')
| -rwxr-xr-x | roundcubemail/bin/makedoc.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roundcubemail/bin/makedoc.sh b/roundcubemail/bin/makedoc.sh new file mode 100755 index 000000000..5925d0a3f --- /dev/null +++ b/roundcubemail/bin/makedoc.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +TITLE="RoundCube Classes" +PACKAGES="Core" + +PATH_PROJECT=$PWD/program/include +PATH_DOCS=$PWD/doc/phpdoc +PATH_PHPDOC=/usr/local/php5/bin/phpdoc + +OUTPUTFORMAT=HTML +CONVERTER=frames +TEMPLATE=earthli +PRIVATE=off + +# make documentation +$PATH_PHPDOC -d $PATH_PROJECT -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \ +-o $OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE + |
