Changeset 1952 in subversion
- Timestamp:
- Oct 7, 2008 9:52:39 AM (5 years ago)
- Location:
- trunk/roundcubemail/bin
- Files:
-
- 2 edited
-
dumpschema.php (modified) (1 diff)
-
makedoc.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/bin/dumpschema.php
r1826 r1952 1 1 <?php 2 2 3 define('INSTALL_PATH', realpath( './../') . '/');3 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' ); 4 4 require INSTALL_PATH.'program/include/iniset.php'; 5 5 -
trunk/roundcubemail/bin/makedoc.sh
r666 r1952 4 4 PACKAGES="Core" 5 5 6 PATH_PROJECT=$PWD/program/include 7 PATH_DOCS=$PWD/doc/phpdoc 8 PATH_PHPDOC=/usr/local/php5/bin/phpdoc 6 INSTALL_PATH="`dirname $0`/.." 7 PATH_PROJECT=$INSTALL_PATH/program/include 8 PATH_DOCS=$INSTALL_PATH/doc/phpdoc 9 10 if [ -x /usr/local/php5/bin/phpdoc ] 11 then 12 PATH_PHPDOC=/usr/local/php5/bin/phpdoc 13 elif [ -x /usr/bin/phpdoc ] 14 then 15 PATH_PHPDOC=/usr/bin/phpdoc 16 else 17 echo "phpdoc not found" 18 exit 1 19 fi 9 20 10 21 OUTPUTFORMAT=HTML
Note: See TracChangeset
for help on using the changeset viewer.
