8f0e299012
Fix GroupDAV iterator issue
2010-03-16 20:46:56 +00:00
fc07594746
Fix GroupDAV iterator issue
2010-03-16 20:44:55 +00:00
4415bb1112
missing translations
2010-03-16 16:44:08 +00:00
2c790ac879
missing translations
2010-03-16 16:43:36 +00:00
a775a07c49
new setup config denying (default) or allowing user names identical to system users (ldap only)
2010-03-16 16:34:35 +00:00
b40f14a95e
new setup config denying (default) or allowing user names identical to system users (ldap only)
2010-03-16 16:33:28 +00:00
06b5afeff1
"do NOT mark untranslated phrases with an asterisk (as EGw does it by default since some versions)"
2010-03-16 16:19:33 +00:00
7489a9cfb4
"do NOT mark untranslated phrases with an asterisk (as EGw does it by default since some versions)"
2010-03-16 16:18:41 +00:00
c558bfcc3d
fixed regular expression to NOT "eat" 8 and , from merge print replacements
2010-03-16 13:38:49 +00:00
6c7e9b0062
fixed regular expression to NOT "eat" 8 and , from merge print replacements
2010-03-16 13:38:20 +00:00
978f55456b
swaped category and contact row in edit: fixes parent get accidently set, if one types return to start contact search
2010-03-16 13:37:02 +00:00
1e5717194b
swaped category and contact row in edit: fixes parent get accidently set, if one types return to start contact search
2010-03-16 13:30:25 +00:00
420aabafde
Fix error message issue
2010-03-16 11:54:31 +00:00
845dc3eb80
Improve Infolog GroupDAV
2010-03-16 10:17:03 +00:00
9acb0e3db2
Fix Infolog timezone issue again
2010-03-16 10:16:49 +00:00
0d680b8017
Fix duplication by changed event title
2010-03-16 10:08:46 +00:00
abfc3f522b
Fix duplication by changed event title
2010-03-16 09:26:01 +00:00
a39a8b8eb8
Improve Infolog GroupDAV
2010-03-16 07:01:36 +00:00
de36a7d40a
Fix Infolog timezone issue again
2010-03-16 07:00:56 +00:00
e6f717934c
Improved WebDAV
2010-03-15 19:08:39 +00:00
a5a15414d3
Fix Infolog timezone issue (Bug 8002)
2010-03-15 18:06:14 +00:00
e9cdcbcac8
Fix Infolog timezone issue (Bug 8002)
2010-03-15 18:05:33 +00:00
c53c27d9d4
Fix CLASS:PRIVATE issue
2010-03-15 17:22:19 +00:00
ecc20f62f0
Fix Funambol SIF enconding
2010-03-15 17:21:50 +00:00
8b5dfcb926
Fix CLASS:PRIVATE issue
2010-03-15 17:18:17 +00:00
28383ae67d
Fix Funambol SIF enconding
2010-03-15 17:17:42 +00:00
d9c39caf7e
removing possible CR/LF from content for ajax search result javascript, as it breaks the options
2010-03-15 17:17:33 +00:00
1cc999ac8f
removing possible CR/LF from content for ajax search result javascript, as it breaks the options
2010-03-15 15:31:41 +00:00
9c37b555ec
Use iterator approach in GroupDAV; fix various issues
2010-03-15 10:51:43 +00:00
9590be51b7
Handle multi-line error messages gracefully
2010-03-15 10:51:24 +00:00
7220d96847
Use iterator approach in GroupDAV; fix various issues
2010-03-15 09:55:16 +00:00
8165ec94e8
Handle multi-line error messages gracefully
2010-03-15 09:53:25 +00:00
9f3e658b1c
Do NOT store "System/Localtime" as server_timezone, as it is no valid timezone
2010-03-15 07:53:12 +00:00
7f3651e3f2
Do NOT store "System/Localtime" as server_timezone, as it is no valid timezone
2010-03-15 07:51:38 +00:00
abd19f0f27
Differentiate GroupDAV collections
2010-03-11 07:45:57 +00:00
89f7d50cec
Differentiate GroupDAV collections
2010-03-11 07:30:46 +00:00
0ec9d18b23
"adding fields for (max. 10) single category names"
2010-03-10 18:07:12 +00:00
ca3f3b463f
"adding fields for (max. 10) single category names"
2010-03-10 18:05:44 +00:00
54b4454d51
Add some base classes to make it easier for other applications to implement importing CSVs
...
To use them, you need to create two files in the app/importexport directory, 'class.import_appname_csv.inc.php' and 'class.wizzard_import_appname_csv.inc.php'.
The minimum required files are shown below, but they can be modified as needed to override the basics and add capabilities.
class.import_appname_csv.inc.php:
<?php
require_once(EGW_INCLUDE_ROOT. '/importexport/inc/class.basic_import_csv.inc.php');
class import_appname_csv extends basic_import_csv {
protected function import_record(&$record, &$import_csv) {
// Handle one record here. Handle conditions and call action() as appropriate.
// See basic_import_csv.
}
protected function action($action, Array $record, $record_num = 0) {
// Take the given action (none, insert, delete, update) etc. as understood for your app.
// See basic_import_csv.
}
}
?>
class.wizzard_import_appname_csv.inc.php:
<?php
require_once(EGW_INCLUDE_ROOT . '/appname/importexport/class.import_appname_csv.inc.php');
require_once(EGW_INCLUDE_ROOT . '/importexport/inc/class.wizzard_basic_import_csv.inc.php');
class wizzard_import_appname_csv extends wizzard_basic_import_csv {
public function __construct() {
$this->mapping_fields = array(
// List of destination fields available in appname
'field' => lang('name')
);
$this->conditions = array(
// List of conditions supported by import_appname_csv
'field' => lang('name')
);
$this->actions = array(
// List of actions supported by import_appname_csv
'field' => lang('name')
);
}
}
?>
2010-03-10 16:31:25 +00:00
c63eea32f6
"egw_links: remove links user has no access to from result, if $cache_titles is set"
2010-03-10 12:22:33 +00:00
f7ee51f53b
"egw_links: remove links user has no access to from result, if $cache_titles is set"
2010-03-10 12:20:51 +00:00
871635002a
Improve find_event()
2010-03-09 17:03:41 +00:00
1162445002
Improve find_event()
2010-03-09 17:03:33 +00:00
f85abe96f8
Fix popup size for new definitions
2010-03-09 16:26:17 +00:00
191d0c7fd5
Fix 'search for series master' issue
2010-03-09 09:28:46 +00:00
6f68c0a41b
Fix 'search for series master' issue
2010-03-09 09:28:23 +00:00
7608a38aa3
"fixed handling of linebreaks from text and rich text fields for xml based formats (Open Office and MS Office)"
2010-03-08 21:57:41 +00:00
bb580029c1
"fixed handling of linebreaks from text and rich text fields for xml based formats (Open Office and MS Office)"
2010-03-08 21:56:05 +00:00
efe7eabe52
"only use posix_getpwnam to check for existing system user, if it's available (otherwise no more accounts can be created)"
2010-03-08 21:09:00 +00:00
1a5245e101
"only use posix_getpwnam to check for existing system user, if it's available (otherwise no more accounts can be created)"
2010-03-08 21:08:16 +00:00