114643d562
added chatty to contrib
2005-12-16 08:48:11 +00:00
1692334a1a
typo
2005-12-15 01:02:49 +00:00
c9973ce261
1.2RC5
2005-12-15 00:09:44 +00:00
f46e80b38c
1.2RC4
2005-12-02 20:44:28 +00:00
66d3af7013
1.2RC3
2005-11-28 17:03:32 +00:00
a2940028bd
1.2RC2-3
2005-11-25 23:05:46 +00:00
fec07c13a3
1.2RC2-2
2005-11-25 09:22:34 +00:00
73975b00c6
necessary rpmmacros from the 1.0.0 Branch
2005-11-25 08:17:52 +00:00
d6b925b16c
1.2RC2
2005-11-24 21:23:34 +00:00
4860925084
release script and spec-files for 1.2 - thought they still need some work
2005-11-15 01:56:12 +00:00
bf5275949e
small fix
2005-10-14 10:04:41 +00:00
0ddb73fddb
modernize now removes:
...
- global $phpgw;
- global $phpgw_info;
and replaces:
- $phpgw -> $GLOBALS['egw']
- $phpgw_info -> $GLOBALS['egw_info']
2005-10-14 09:36:37 +00:00
5d3e8d1c86
added HTTP_SESSION_VARS to list of vars to transform as it is off by default in php5 too
2005-07-20 10:20:18 +00:00
7d720dc5ea
Set HTML document type to XHTML 1.0 Transitional everywhere (almost).
...
Correct various misspellings and other oddities in the document type
declarations. Convert HTML tags to lower case in the affected files.
2005-07-07 20:09:52 +00:00
85f4f36c5b
added --replace option and made the replacements case-insensitiv (at least for php5)
2005-06-14 07:55:36 +00:00
550ce8314d
changed first line to #!/usr/bin/php -qC
...
-C makes the CGI binary behave like the CLI one (CGI has the script's dir as it's current dir not the current dir where the script is invoked)
2005-05-23 17:30:05 +00:00
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
a6d1368c19
updatet build script
2004-11-19 14:35:41 +00:00
df5d246d90
updatet build script
2004-11-19 14:28:31 +00:00
3845e46f4b
update build script to build bitrock windows packages
2004-11-19 14:26:43 +00:00
3629c9cdcc
update the build files
2004-08-09 10:06:16 +00:00
46c028ff46
update the build files
2004-08-09 09:52:11 +00:00
a27466da3f
update the spec files and the build script
2004-07-31 19:54:35 +00:00
22870f672e
fix a bug in the spec file and update the build shell script
2004-07-03 11:09:40 +00:00
f51feebf09
fix for rpm error and updated script
2004-06-10 11:09:07 +00:00
181385fbff
add fedora spec file
2004-05-21 21:40:25 +00:00
c49dcaae34
add buitrock installer to build script
2004-05-21 21:39:09 +00:00
c69ae06549
add change from Matthes Galgoci
2004-05-13 15:45:38 +00:00
ffb4948e35
change egroupware home to eGW.org
2004-02-28 14:00:21 +00:00
0251409dac
change egroupware home to eGW.org
2004-02-28 13:45:40 +00:00
32c32d3bc9
spec files updated to support SuSE directorys and the build sript scan for trojans and viruses
2004-02-09 09:53:24 +00:00
11d6da18e0
remove very old references to version.inc.php
2004-01-30 01:55:57 +00:00
2d3fdcbed2
change files from phpgw to egw
2004-01-27 15:32:32 +00:00
6030957df9
remove outdated files
2004-01-25 01:40:38 +00:00
b8bdcf5186
remove outdated files
2004-01-25 01:04:02 +00:00
71a96e995d
remove not needed files
2004-01-25 00:44:55 +00:00
8e884e6844
new apps and changes in script
2004-01-25 00:20:36 +00:00
c15b67290a
add new build script
2004-01-25 00:18:54 +00:00
bbf777210b
remove old build script, is replaced with new one
2004-01-25 00:17:58 +00:00
6f08e22c39
Adjusted for use with egroupware - checks out all modules
2003-11-07 06:03:38 +00:00
ca551cd068
new spec file for egw added
2003-09-11 00:19:25 +00:00
be56ea4011
new build script for egw added
2003-09-11 00:18:12 +00:00
600ec1fa5b
file will be replaced by new egw build file
2003-09-11 00:15:07 +00:00
34f3e6f543
file will be replaced by ne egw build file
2003-09-11 00:12:37 +00:00
b8557e49d9
make the phpgw Version-0_9_16-branch HEAD
2003-08-28 14:31:11 +00:00
8581021032
fixed a typo
2003-04-04 13:51:28 +00:00
d287534bc8
Adjusted the phpGW Adminsitration Manual with:
...
- up-to-date Version of the stable branch
- no more extra branch for patches
- references from sourceforge to savannah or subversions
Did this in the sgml and the html version, as i dont have / know the tools to create the html+ps version from the sgml
2003-03-09 14:21:27 +00:00
01f81f7f76
Add support for inline docs inside a comment block, add @required and @optional detection, fix security problem with passing '..' in files[]
2003-02-17 19:32:26 +00:00
7ea0349168
update
2002-11-12 11:18:45 +00:00
71ec2f0197
Updates needed for phpwebhosting -> filemanager name change
2002-09-21 05:15:32 +00:00