egroupware/doc
Ralf Becker bdb7f0df1d Tool to change eGW sources automatic to comply with some of the eGW coding rules:
// saves an unnecessary copy
'= CreateObject'           => '=& CreateObject',
'= new'                    => '=& new',
// php5 cloning of the DB object
'= $GLOBALS[\'egw\']->db;' => '= clone($GLOBALS[\'egw\']->db);',
'= $this->db;'             => '= clone($this->db);',
// remove windows lineends (CR)
"\r"                       => '',
// $HTTP_{GET|POST|SERVER}_VARS => $_{GET|POST|SERVER}
$modernize['$HTTP_'.$name.'_VARS'] = '$_'.$name;
$modernize['$GLOBALS[\'HTTP_'.$name.'_VARS\']'] = '$_'.$name;
$modernize['$GLOBALS["HTTP_'.$name.'_VARS"]'] = '$_'.$name;
// phpGW --> eGW
'PHPGW_'	               => 'EGW_',
'$GLOBALS[\'phpgw_info\']' => '$GLOBALS[\'egw_info\']',
'$GLOBALS["phpgw_info"]'   => '$GLOBALS[\'egw_info\']',
'$GLOBALS[\'phpgw\']'      => '$GLOBALS[\'egw\']',
'$GLOBALS["phpgw"]'        => '$GLOBALS[\'egw\']',
'common->phpgw_header'     => 'common->egw_header',
'common->phpgw_footer'     => 'common->egw_footer',
'common->phpgw_exit'       => 'common->egw_exit',
'common->phpgw_final'      => 'common->egw_final',

It also substitutes spaces at the beginning of a line (indetion) with tabs, you need to specify (--remove-space-indention N) the number of spaces to substitute, if it's other then 2.
2005-05-02 10:21:38 +00:00
..
rpm-build updatet build script 2004-11-19 14:35:41 +00:00
cvs_full_checkout.php update the build files 2004-08-09 10:06:16 +00:00
cvs_full_checkout.pl add change from Matthes Galgoci 2004-05-13 15:45:38 +00:00
inlinedocparser_docbook.tpl just a stub for now 2002-01-05 11:44:25 +00:00
inlinedocparser_html.tpl update the build files 2004-08-09 10:06:16 +00:00
inlinedocparser.php change files from phpgw to egw 2004-01-27 15:32:32 +00:00
LICENSE make the phpgw Version-0_9_16-branch HEAD 2003-08-28 14:31:11 +00:00
modernize.php Tool to change eGW sources automatic to comply with some of the eGW coding rules: 2005-05-02 10:21:38 +00:00
SECURITY new install docs 2001-01-05 09:17:04 +00:00