[Phpcms-plugins-cvs] admin4phpCMS index.php,1.7,1.8 Changelog,1.7,1.8
Brought to you by:
mjahn
From: Martin J. <mj...@us...> - 2004-08-25 21:17:27
|
Update of /cvsroot/phpcms-plugins/admin4phpCMS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2565 Modified Files: index.php Changelog Log Message: step 1 is taken Index: Changelog =================================================================== RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/Changelog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Changelog 5 Aug 2004 16:38:40 -0000 1.7 +++ Changelog 25 Aug 2004 21:16:47 -0000 1.8 @@ -1,3 +1,15 @@ +August 25 2004 (mjahn) + * created structure of the filemanager-gui, includeing up-/download, archiving and + clipboarding of files and directories + * prepared the filemanager-module for virtual filesystems (i.e. browsing zip-archives + as directories) + * enhanced layout class, so that any module can load its own template-file + * templatefiles are in XML + * created structure of the phpcms-config-gui + * created phpinfo in the help-module + + + Juli 31 2004 (mjahn) * it seems to be simple to install this software, - simply copy it into the destination dir Index: index.php =================================================================== RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- index.php 5 Aug 2004 16:38:40 -0000 1.7 +++ index.php 25 Aug 2004 21:16:47 -0000 1.8 @@ -34,6 +34,9 @@ /* * $Log$ +* Revision 1.8 2004/08/25 21:16:47 mjahn +* step 1 is taken +* * Revision 1.7 2004/08/05 16:38:40 mjahn * tweaked phpcms::cache-module output * @@ -59,11 +62,22 @@ **/ define ('DEBUG', false); error_reporting (E_ALL); + /** * Set the path for including the pear-packages **/ -ini_set ('include_path', realpath(dirname(__FILE__).'/pear/').'/:'.ini_get('include_path')); +define ('PEAR_DIR', dirname (__FILE__).'/pear/'); +if (!function_exists ('ini_set')) { + define ('PATH_TO_PEAR', PEAR_DIR); +} else { + $check = ini_set ('include_path', dirname(__FILE__).'/pear/'.PATH_SEPARATOR.ini_get ('include_path')); + if (empty ($check) || $check === false) { + define ('PATH_TO_PEAR', PEAR_DIR); + } else { + define ('PATH_TO_PEAR', ''); + } +} /** * Include the framework-class **/ @@ -79,6 +93,8 @@ **/ $a->run(); +//print_r ($a); + /** * Clear the variable-scope **/ |