Commit Graph

578 Commits

Author SHA1 Message Date
Ralf Becker
8d2816b0bb first try for a 1.6 prerelease package 2008-07-22 12:02:33 +00:00
Ralf Becker
46049623bc "- no longer building signed source packages, only a singed md5sum file
- cleaner md5sum file, the old gave me a headache ;-)"
2007-06-05 08:31:04 +00:00
Lars Kneschke
7fab1b3b64 updated build script 2007-04-30 14:12:05 +00:00
Lars Kneschke
5ab156ee1a updated build environemt 2007-04-30 14:10:20 +00:00
Lars Kneschke
dc24f42cf3 specfile used for opensuse buildservice 2007-04-30 11:32:10 +00:00
Lars Kneschke
d03f4545e5 removed no longer used specfiles 2007-04-30 11:28:59 +00:00
Ralf Becker
9d653a5b41 removed no longer used/relevant files 2006-07-09 23:38:38 +00:00
Lars Kneschke
26066d742c updated spec files for 104 release 2006-07-08 06:30:19 +00:00
Lars Kneschke
70344e368c the actual build files 2006-06-11 08:44:23 +00:00
Lars Kneschke
e612d2c15f me against svn 2006-05-18 02:44:13 +00:00
Lars Kneschke
b3678f8931 the current build environment 2006-05-18 02:43:50 +00:00
Lars Kneschke
8f5f0953df new files for rpm bulding 2006-03-27 23:38:30 +00:00
Lars Kneschke
58963971dd updated buildscript 2006-03-27 23:37:50 +00:00
Lars Kneschke
7dd122744e updated spec files 2006-01-22 23:02:06 +00:00
Ralf Becker
c6df8a68a7 added timesheet app 2005-12-19 04:25:31 +00:00
Ralf Becker
114643d562 added chatty to contrib 2005-12-16 08:48:11 +00:00
Ralf Becker
1692334a1a typo 2005-12-15 01:02:49 +00:00
Ralf Becker
c9973ce261 1.2RC5 2005-12-15 00:09:44 +00:00
Ralf Becker
f46e80b38c 1.2RC4 2005-12-02 20:44:28 +00:00
Ralf Becker
66d3af7013 1.2RC3 2005-11-28 17:03:32 +00:00
Ralf Becker
a2940028bd 1.2RC2-3 2005-11-25 23:05:46 +00:00
Ralf Becker
fec07c13a3 1.2RC2-2 2005-11-25 09:22:34 +00:00
Ralf Becker
73975b00c6 necessary rpmmacros from the 1.0.0 Branch 2005-11-25 08:17:52 +00:00
Ralf Becker
d6b925b16c 1.2RC2 2005-11-24 21:23:34 +00:00
Ralf Becker
4860925084 release script and spec-files for 1.2 - thought they still need some work 2005-11-15 01:56:12 +00:00
Ralf Becker
bf5275949e small fix 2005-10-14 10:04:41 +00:00
Ralf Becker
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
Ralf Becker
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
petere78
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
Ralf Becker
85f4f36c5b added --replace option and made the replacements case-insensitiv (at least for php5) 2005-06-14 07:55:36 +00:00
Ralf Becker
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
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
reinerj
a6d1368c19 updatet build script 2004-11-19 14:35:41 +00:00
reinerj
df5d246d90 updatet build script 2004-11-19 14:28:31 +00:00
reinerj
3845e46f4b update build script to build bitrock windows packages 2004-11-19 14:26:43 +00:00
reinerj
3629c9cdcc update the build files 2004-08-09 10:06:16 +00:00
reinerj
46c028ff46 update the build files 2004-08-09 09:52:11 +00:00
reinerj
a27466da3f update the spec files and the build script 2004-07-31 19:54:35 +00:00
reinerj
22870f672e fix a bug in the spec file and update the build shell script 2004-07-03 11:09:40 +00:00
reinerj
f51feebf09 fix for rpm error and updated script 2004-06-10 11:09:07 +00:00
reinerj
181385fbff add fedora spec file 2004-05-21 21:40:25 +00:00
reinerj
c49dcaae34 add buitrock installer to build script 2004-05-21 21:39:09 +00:00
reinerj
c69ae06549 add change from Matthes Galgoci 2004-05-13 15:45:38 +00:00
reinerj
ffb4948e35 change egroupware home to eGW.org 2004-02-28 14:00:21 +00:00
reinerj
0251409dac change egroupware home to eGW.org 2004-02-28 13:45:40 +00:00
reinerj
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
Miles Lott
11d6da18e0 remove very old references to version.inc.php 2004-01-30 01:55:57 +00:00
reinerj
2d3fdcbed2 change files from phpgw to egw 2004-01-27 15:32:32 +00:00
reinerj
6030957df9 remove outdated files 2004-01-25 01:40:38 +00:00
reinerj
b8bdcf5186 remove outdated files 2004-01-25 01:04:02 +00:00
reinerj
71a96e995d remove not needed files 2004-01-25 00:44:55 +00:00
reinerj
8e884e6844 new apps and changes in script 2004-01-25 00:20:36 +00:00
reinerj
c15b67290a add new build script 2004-01-25 00:18:54 +00:00
reinerj
bbf777210b remove old build script, is replaced with new one 2004-01-25 00:17:58 +00:00
Miles Lott
6f08e22c39 Adjusted for use with egroupware - checks out all modules 2003-11-07 06:03:38 +00:00
reinerj
ca551cd068 new spec file for egw added 2003-09-11 00:19:25 +00:00
reinerj
be56ea4011 new build script for egw added 2003-09-11 00:18:12 +00:00
reinerj
600ec1fa5b file will be replaced by new egw build file 2003-09-11 00:15:07 +00:00
reinerj
34f3e6f543 file will be replaced by ne egw build file 2003-09-11 00:12:37 +00:00
Ralf Becker
b8557e49d9 make the phpgw Version-0_9_16-branch HEAD 2003-08-28 14:31:11 +00:00
Ralf Becker
8581021032 fixed a typo 2003-04-04 13:51:28 +00:00
Ralf Becker
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
Zone
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
ceb
7ea0349168 update 2002-11-12 11:18:45 +00:00
Zone
71ec2f0197 Updates needed for phpwebhosting -> filemanager name change 2002-09-21 05:15:32 +00:00
skeeter
f66f1984d5 GNU Patch #416. 2002-09-02 00:13:28 +00:00
skeeter
3d75437142 GNU Patch #415. 2002-08-13 00:45:56 +00:00
skeeter
72fc96edef GNU Patch #396. 2002-07-23 02:39:38 +00:00
ldw
47ea887c92 - Moved documentation files to module/doc directory.
- Renamed phpgroupware/doc/LICENSE in phpgroupware/doc/copyright.gpl
2002-06-12 10:14:14 +00:00
Zone
ffd4bfe29c Tiny fix for .= instead of = 2002-02-01 04:17:37 +00:00
Miles Lott
050396e695 formatting 2002-01-26 23:26:32 +00:00
seek3r
bcd7dc31eb adding all the PNG images to work toward GNU complaince 2002-01-21 17:08:04 +00:00
Zone
a9a15a449d Fixes for developer checkout (no port and no password) 2002-01-13 02:34:08 +00:00
bearstone
4da531e060 cvs update -pD changed to cvs update -Pd 2002-01-11 23:39:56 +00:00
seek3r
f6c4bf0bc9 jason gave me more updates for the move to savannah 2002-01-09 09:08:34 +00:00
bearstone
38c7890baa Changed Report Email to doc-team email address. 2002-01-08 22:09:00 +00:00
seek3r
ae532b6fe0 added update from Justin Bauer for the move to savannah 2002-01-08 17:11:12 +00:00
bearstone
09d45898e0 change doc to new CVSroot. and corrected a postegres line. 2002-01-08 04:45:24 +00:00
brandonne
14e84a2d1a converted FAQ to qandaset 2002-01-05 23:53:55 +00:00
brandonne
a95d9a29ca updated FAQ, changed to qandaset format, added ps and txt versions 2002-01-05 23:52:56 +00:00
brandonne
d351573139 removing old versions of docs 2002-01-05 18:06:38 +00:00
brandonne
481663c214 removing old doc versions 2002-01-05 18:04:57 +00:00
seek3r
821fa11f5c just a stub for now 2002-01-05 11:44:25 +00:00
brandonne
57ca6811d9 Makefiles for user and admin guides 2002-01-04 00:27:13 +00:00
brandonne
f3cb694697 added Makefiles for documentation 2002-01-04 00:25:11 +00:00
brandonne
5f5f24e2ae Makefile for FAQ 2002-01-03 21:05:45 +00:00
brandonne
61a2d639f0 added html version of hello world document 2002-01-03 16:46:03 +00:00
brandonne
ef2e7cd088 added postscript version of FAQ 2002-01-02 17:40:22 +00:00
seek3r
32306abaf6 some additional performance improvements, including a switch to the hooks class which I finished up 2002-01-02 14:33:05 +00:00
brandonne
601f495f93 added SGML version of users guide 2001-12-31 07:17:37 +00:00
brandonne
42bdd915f0 added SGML version of admin guide 2001-12-31 06:53:28 +00:00
brandonne
f087a1ca1f added SGML version of FAQ 2001-12-31 06:50:48 +00:00
brandonne
284277d2ea added images for users guide 2001-12-31 06:43:16 +00:00
brandonne
9fffba0d1b added images for user guide 2001-12-31 06:34:21 +00:00
brandonne
2e96c5a154 added HTML version of users guide 2001-12-31 06:30:41 +00:00
brandonne
d7f8efd64a added HTML version of admin guide 2001-12-31 06:25:42 +00:00
brandonne
ed8e9b8ae8 added html version of FAQ 2001-12-31 06:21:30 +00:00
brandonne
3e829d32ad *** empty log message *** 2001-12-29 17:59:53 +00:00
brandonne
63a956e5df updated doc directory to conform with new docteam standard 2001-12-29 17:54:21 +00:00
seek3r
99e0c1517f fixed for version checking 2001-12-29 08:09:03 +00:00
seek3r
844dcd650b fixed for PHP3 2001-12-27 20:02:45 +00:00
seek3r
24f4f79cdc added lots of new stuff. Getting damn near useful HTMl output 2001-12-25 09:23:07 +00:00
seek3r
70f546278c previous version was a mess. It generated a HUGE html document because I forgot to flush the vars before I kept adding to them 2001-12-25 07:35:25 +00:00
seek3r
dda262cfea now they actually create a bit of useful html documents 2001-12-25 01:49:08 +00:00
seek3r
193c99f669 first installment of code that actually generates some html. docbook template file will follow 2001-12-25 00:00:23 +00:00
seek3r
c1b0ce4001 Made updates needed to properly handle more than one file contributing to a class. 2001-12-24 22:49:17 +00:00
seek3r
115c4bb540 Final checkin before I start with the docbook and html templatizing 2001-12-24 18:16:28 +00:00
seek3r
4d51015263 added filename in the refernece block 2001-12-23 19:01:17 +00:00
seek3r
9f00a66dad forced everything into a single master array 2001-12-23 18:41:59 +00:00
seek3r
c80cc36a98 fixed not an array problem 2001-12-23 10:59:55 +00:00
seek3r
d7156e82f1 major work done on this file to handle our needs. Final step will be to build the template for generating html or docbook files 2001-12-23 10:45:46 +00:00
seek3r
7e57e1197a updated inline docs 2001-12-23 10:15:40 +00:00
bettina
3700bfd70e -added apps 2001-12-12 00:02:10 +00:00
Miles Lott
f391862b8b globals 2001-12-03 17:46:32 +00:00
Miles Lott
43286d8b8b globals 2001-12-03 17:44:16 +00:00
Miles Lott
dcd4858a87 formatting 2001-12-03 17:17:35 +00:00
jengo
49b8a43fbd Allowing xml_functions.inc.php to be loaded 2001-11-29 22:12:28 +00:00
seek3r
c5b92cf216 added some security checks 2001-11-12 22:00:32 +00:00
seek3r
a52845ec21 added some security checks 2001-11-12 21:24:52 +00:00
seek3r
98c8c37409 added in ability to handle mltiple values for each entry, plus started with teh regexp for limiting to only class.*.inc.php 2001-11-12 20:58:07 +00:00
seek3r
3531c010df added in ability to handle mltiple values for each entry, plus started with teh regexp for limiting to only class.*.inc.php 2001-11-12 19:16:57 +00:00
seek3r
0a673cbfaf allows to look in other apps files 2001-11-12 18:01:42 +00:00
brandonne
4a8a26b367 converting previous documents to sgml format 2001-10-04 21:18:32 +00:00
Miles Lott
c4446115a9 add header 2001-09-25 07:19:16 +00:00
Miles Lott
6cbefa333a add perl version of checkout script 2001-09-25 07:10:46 +00:00
Miles Lott
6a423b05de Here is an empty one-line file to keep at least netscape from whining
when browsing index.html here.
2001-08-08 23:22:32 +00:00
seek3r
3d005e094e too tired to think, so dev stopped here for the night 2001-07-13 08:37:56 +00:00
seek3r
c98e1dc9f7 adding for dev reasons 2001-07-13 08:19:41 +00:00
jengo
48d6e28f5b Updated the modules 2001-06-10 04:11:30 +00:00
jengo
5d1823e9ed Added in new module syncml-server 2001-05-24 01:24:39 +00:00
jengo
7de0f620c8 Removing old modules and added phpwebhosting 2001-05-23 11:53:55 +00:00
seek3r
d8e81e9812 moved around a few files 2001-05-08 20:26:59 +00:00
themaniac
5bc4692880 now exports txt as well 2001-03-16 23:23:29 +00:00
themaniac
88bd28eeaf import the readme file that indicates which tools are required to generate docs
from lyx source
2001-03-01 04:58:29 +00:00
themaniac
05c17f3932 initial import of the Makefile; this makefile is used to generate html pdf ps
etc versions of the installation documentation
2001-03-01 04:53:50 +00:00
themaniac
69522cf605 fixed the co for patches (had forgotten co ) 2001-03-01 04:50:01 +00:00
themaniac
9a47dfa09e shouldn't have checked in the tar'd copy 2001-02-23 06:40:11 +00:00
themaniac
4b48df96fa import a multipage html install doc; updated index.lyx based on feedback from
mailing list and IRC (minor changes)
2001-02-23 06:23:08 +00:00
themaniac
620d1e2538 added some changes based on feeback from mailing list and IRC 2001-02-23 06:15:42 +00:00
themaniac
19e320705f added some changes based on feeback from mailing list and irc 2001-02-23 06:15:00 +00:00
themaniac
fe04fbdf6f added some changes based on feedback from mailing list and IRC 2001-02-23 06:11:32 +00:00
themaniac
25e46ccd1f added some changes based on feedback from mailing list and irc 2001-02-23 06:10:35 +00:00
seek3r
edb7b44f3f minor updates 2001-01-17 08:44:54 +00:00
seek3r
fb2047767f tossed in new files 2001-01-12 08:27:27 +00:00
seek3r
c8290ae8c5 added code into some acl functions 2001-01-05 10:08:17 +00:00
seek3r
fc530443d0 new install docs 2001-01-05 09:17:04 +00:00
jengo
902d17686f These files have been moved 2000-12-23 03:32:54 +00:00
seek3r
f795023f8f hopefully settled the directory structure once and for all 2000-12-21 09:16:30 +00:00
skeeter
cce88109f4 fix for changing of users password and setting in phpgw_sessions 2000-12-21 01:08:10 +00:00
jengo
601993e029 Updated docs 2000-12-20 07:40:40 +00:00
jengo
14dd29f0de Updated docs and merged in patch for danish 2000-12-18 17:02:26 +00:00
jengo
d17d5d07a6 Added in a check to see if the user has submitted there preferences, if not. It will add them for them 2000-12-18 16:51:04 +00:00
jengo
94749ab7fd Updated docs 2000-12-14 11:41:26 +00:00
skeeter
3abcd4897c fixed 12 am/pm problem and added defaultfilter preference 2000-12-14 02:37:58 +00:00
jengo
959b8bc4bd Updated docs 2000-12-13 15:20:28 +00:00
jengo
0eed796ca5 Updated docs 2000-12-13 15:19:54 +00:00
jengo
a052584cc7 Added in feature from frames. Admins can allow, disable or force them system wide. If they are allowed, there is a user preference
for it.
2000-12-11 09:18:09 +00:00
jengo
7397c13e90 Updated docs 2000-12-11 07:28:45 +00:00
skeeter
b483f6a430 applied patch to fix md5 encryption 2000-12-09 23:19:42 +00:00
skeeter
54130db306 fix for addressbook not opening 2000-12-09 22:44:10 +00:00
skeeter
67dad6b6ec fix for non-compliant email addresses 2000-12-09 18:40:26 +00:00
skeeter
3bf10a62ee various calendar fixes 2000-12-09 04:08:54 +00:00
skeeter
6720b21d68 removed extraneous } 2000-12-09 00:58:30 +00:00
jengo
447abe485b alternate_row_color() doesn't require you to pass it a value, you can call it without a value and it will return the new color 2000-12-08 14:58:02 +00:00
jengo
720d83df83 Updated docs 2000-12-08 12:56:21 +00:00
jengo
1c59def639 Updated docs 2000-12-08 05:49:26 +00:00
jengo
4914fcf2c6 Updated docs 2000-12-08 05:45:48 +00:00
jengo
4bc3c32088 Updated docs 2000-12-08 05:15:17 +00:00
skeeter
64bf029080 fix submitting calendar entry when javascript turned off 2000-12-08 05:08:49 +00:00
skeeter
38dd22bc40 fix for saving when no groups are selected with group access selcted 2000-12-08 04:57:17 +00:00
skeeter
8c2eb935a4 fix for footer week selector 2000-12-08 04:09:43 +00:00
skeeter
12aa79761b fixed repeating events Month select drop down 2000-12-08 02:24:49 +00:00
skeeter
820906bc95 function was not referenced as a class function 2000-12-06 12:30:50 +00:00
skeeter
f45b6195e1 description of changes 2000-12-06 12:25:54 +00:00
jengo
0a78ccc927 Updated docs 2000-12-06 11:21:51 +00:00
skeeter
daa61a7a60 applied patch adding free() to pgsql db 2000-12-04 03:59:31 +00:00
skeeter
bf040328ed added filter and change of duration to date/time 2000-12-04 01:11:53 +00:00
skeeter
c6b1c6daee ability to set default calendar view 2000-12-03 23:36:50 +00:00
skeeter
d85327d46d improperly calling strftime() instead of date() 2000-12-03 21:50:47 +00:00
skeeter
5357684b33 fixed misspelling of variable name 2000-12-03 18:36:52 +00:00
skeeter
c8dccbc0f0 problem with introduction of multiple domain support 2000-12-03 18:32:23 +00:00
skeeter
8f5f1b4d83 fix matrixview warnings when viewing manual 2000-12-03 12:30:35 +00:00
skeeter
50e7292a9b Sent Folder automatically created if does not exist. 2000-12-03 02:18:27 +00:00
skeeter
31fd7e256d fixed problem with CC and warning messages 2000-12-02 10:08:07 +00:00
skeeter
51c26e1a54 disables error messages for set_time_limit(0) with safe_mode 2000-12-02 09:45:43 +00:00
skeeter
576d9a0dbc *** empty log message *** 2000-12-02 09:07:38 +00:00
jengo
04f3839dae Updated docs 2000-12-01 05:12:43 +00:00
jengo
cc10ad0f54 session class will now check to see if a user is behing a proxy server and use there real ip instead of the proxys ip 2000-11-30 09:31:56 +00:00
skeeter
bac65188e9 merged in patch for calendar for year view 2000-11-29 12:11:50 +00:00
jengo
c50bec2db4 Merged in patch for spainish and french 2000-11-29 00:59:41 +00:00
jengo
aed64c289a Updated docs 2000-11-29 00:52:51 +00:00
jengo
c005bdde8f Updated docs 2000-11-29 00:25:39 +00:00
skeeter
a33feebe8e fix for netscape not working with Netscape 6 2000-11-28 04:46:18 +00:00
skeeter
fad064074b fix for Week View warnings in calendar 2000-11-28 00:59:54 +00:00
jengo
3d6ffda207 Updated docs 2000-11-27 20:37:33 +00:00
skeeter
cea8be05a5 Fix for TTS with Update by non-email user 2000-11-27 11:47:38 +00:00
skeeter
989bb2c44a fix for day view warning 2000-11-27 11:44:04 +00:00
skeeter
f29617cc5c fix for repeating events 2000-11-27 03:20:59 +00:00
skeeter
7393619679 enhanced the timematrix view 2000-11-26 20:10:35 +00:00
skeeter
0c1c6a2330 fixed d/ling of files 2000-11-26 18:30:03 +00:00
skeeter
8f150afb78 Added capability to schedule others and not yourself 2000-11-26 18:03:20 +00:00
jengo
785b2f707b Updated docs and version number 2000-11-26 10:22:18 +00:00
jengo
75b4fd0460 Updated docs 2000-11-25 21:34:19 +00:00
jengo
48fe526d7c Fixed a few Postgresql errors 2000-11-24 22:24:36 +00:00
skeeter
3b53390cc6 fix for parent_page link 2000-11-24 13:53:51 +00:00
jengo
e820615828 Added in _L() as a alias for lang() 2000-11-24 04:57:03 +00:00
jengo
312abeb7b5 Updated docs 2000-11-24 01:24:06 +00:00
jengo
ccbb125dcc session class will now test the number of domains being used and create the lastloginid cookie accordinglwy 2000-11-24 01:04:54 +00:00
skeeter
938a037d03 fixed calendar display of 12 hour formats 2000-11-23 13:58:35 +00:00
jengo
aea235f6ed Update 2000-11-23 09:05:38 +00:00
skeeter
50389bcca7 fix for adding new users 2000-11-23 03:26:45 +00:00
skeeter
9f1aa3675e fix for email in BIG5 charset 2000-11-23 02:25:12 +00:00
skeeter
ba00a39582 Fix for deletion of user accounts 2000-11-22 12:16:51 +00:00
skeeter
6ff706097f change of convert_string_to_names_access() 2000-11-22 12:11:39 +00:00
skeeter
a0aaabcaae missed converting to calss for support of VFS 2000-11-22 12:02:59 +00:00
skeeter
2992ae176f changed method from GET to POST 2000-11-22 11:45:43 +00:00
seek3r
7037d8ceb2 corrected problems with multi-domain support, and prepared for the new release 2000-11-22 09:21:26 +00:00
jengo
9b6ab09324 Updated docs 2000-11-22 06:22:52 +00:00
jengo
1d36311c9f Fixed group filters 2000-11-22 04:38:07 +00:00
jengo
4d31208ae7 Updated docs 2000-11-22 04:19:37 +00:00
jengo
fda7c53a46 Updated docs 2000-11-22 04:15:53 +00:00
seek3r
a558326b67 updated docs from gnrfan 2000-11-21 22:33:37 +00:00
seek3r
5739888964 updated docs from gnrfan 2000-11-21 22:16:14 +00:00
loge
ea947c5eba i think the hours i spent in phpgw are worth an entry (loge :)) 2000-11-19 19:27:36 +00:00
seek3r
e2e52ce276 added my changes 2000-11-19 16:09:10 +00:00
skeeter
ce74573ead change of cal_create_by to cal_owner 2000-11-18 21:44:05 +00:00
jengo
d46eb96a9c Cleaned up docs 2000-11-17 16:21:43 +00:00
jengo
3831d2e0d2 Fixed some error reporting 2000-11-17 16:19:37 +00:00
skeeter
3ad039bb09 fix for deletion of accounts 2000-11-17 03:28:36 +00:00
skeeter
397303f8df added calendar on home page 2000-11-16 12:15:57 +00:00
jengo
5a11e67ec8 Updated docs 2000-11-16 09:12:01 +00:00
jengo
0f2c63381f Updated docs 2000-11-16 08:41:41 +00:00
skeeter
e5727749ce week view now reflects correct days viewed 2000-11-16 01:49:51 +00:00
skeeter
1f3a29c029 group calendar access now works 2000-11-13 01:25:49 +00:00
jengo
be92e3370d Updated docs 2000-11-12 11:36:45 +00:00
jengo
9435030e4c Updated docs 2000-11-12 10:26:07 +00:00
seek3r
0f7aa325e2 putting new documentation in place 2000-11-11 10:39:44 +00:00
seek3r
5f7242e408 added settings to preference page for the user to have seperate email settings 2000-11-11 09:37:31 +00:00
skeeter
2384871dfc added ability to mail updates on tts to group members 2000-11-09 21:07:48 +00:00
sjb4891
28d1259e61 Fix of long-standing bug (I created) of using 'users' instead of 'user'
in the mysql sample commands.
2000-11-09 14:58:14 +00:00
seek3r
9215751229 I only copied the cvs version. 2000-11-09 08:06:56 +00:00
jengo
09c61ac8c7 Updated docs 2000-11-07 23:34:26 +00:00
jengo
213c96bebf Updated docs 2000-11-06 11:42:18 +00:00
jengo
84fc291682 Updated change log 2000-11-03 21:51:20 +00:00
jengo
78fdf2c804 Updated docs 2000-11-03 20:09:09 +00:00
jengo
08e7f711c3 Removed uneeded files 2000-11-02 07:57:37 +00:00
jengo
793040b5ba Working on merging in a patch for the addressbook, but first cleaning up some code 2000-11-01 10:26:14 +00:00
skeeter
46ca74feff fixed listusers 2000-11-01 05:08:50 +00:00
jengo
5af7825a1c Updated docs 2000-10-31 10:37:08 +00:00
jengo
4bf3098ea0 Updated docs 2000-10-31 06:38:08 +00:00