Web based groupware server written in PHP, forum at https://help.egroupware.org/
Go to file
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
addressbook Converting to new egw arrays 2005-05-01 14:34:59 +00:00
admin patch from <tibolist-at-free.fr>: 2005-04-27 07:56:44 +00:00
calendar Finnish langfiles from Jussi Siponen - jusiponen-at-users.sf.net 2005-04-15 15:21:52 +00:00
doc Tool to change eGW sources automatic to comply with some of the eGW coding rules: 2005-05-02 10:21:38 +00:00
etemplate search: allow aliases in the retrived columns 2005-05-01 11:38:59 +00:00
filemanager Finnish langfiles from Jussi Siponen - jusiponen-at-users.sf.net 2005-04-15 15:21:52 +00:00
infolog Finnish langfiles from Jussi Siponen - jusiponen-at-users.sf.net 2005-04-15 15:21:52 +00:00
phpgwapi big documentation update 2005-04-25 10:09:10 +00:00
preferences applied security relevant patch from nikolaus.jeremic-at-pro-inform.de: checking old password before changeing for a regular user 2005-04-28 13:10:31 +00:00
resources *** empty log message *** 2005-03-21 10:18:30 +00:00
setup *** empty log message *** 2005-04-24 21:30:37 +00:00
.htaccess better let it commented out, because per default is not allowed at all 2003-11-06 06:43:55 +00:00
about.php add link to application behind icon 2004-09-09 20:28:14 +00:00
anon_wrapper.php changes from phpgw to egw dev group 2004-01-26 23:26:19 +00:00
header.inc.php.template new header-template to: 2005-03-03 10:45:52 +00:00
home.php The code was preventing anonymous users to get a home page. Perhaps it was done with anonymous users such as the ones 2004-09-11 23:54:57 +00:00
index.php change the wrong pg name 2004-08-21 17:18:14 +00:00
login.php new header-template to: 2005-03-03 10:45:52 +00:00
logout.php fixed bug [ 1001387 ] Error Emailing Attachments - missing closedir prefents rmdir on win 2004-08-03 14:13:37 +00:00
notify_simple.php make the phpgw Version-0_9_16-branch HEAD 2003-08-28 14:16:30 +00:00
notify.php change from phpgw to egw 2004-03-26 19:56:37 +00:00
redirect.php Add function from php.net manual page for php < 4.3.0 2004-01-10 19:19:53 +00:00
set_box.php change the wrong pg name 2004-08-21 15:39:30 +00:00
soap.php ereg_replaced 2004-01-01 15:38:15 +00:00
xmlrpc.php added use of cookie or url to pass session id 2004-03-13 17:54:26 +00:00