gunnar: server/kolab-freebusy/freebusy config.php, 1.2, 1.3 freebusy.php, 1.2, 1.3 pfb.php, 1.2, 1.3

cvs at kolab.org cvs at kolab.org
Wed Aug 8 17:45:52 CEST 2007


Author: gunnar

Update of /kolabrepository/server/kolab-freebusy/freebusy
In directory doto:/tmp/cvs-serv21075/freebusy

Modified Files:
	config.php freebusy.php pfb.php 
Log Message:
Some minor fixes but in principle the package seems to work like this.

Index: config.php
===================================================================
RCS file: /kolabrepository/server/kolab-freebusy/freebusy/config.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config.php	8 Aug 2007 13:11:22 -0000	1.2
+++ config.php	8 Aug 2007 15:45:49 -0000	1.3
@@ -113,7 +113,7 @@
 $params['send_content_disposition'] = false;
 
 // Where are we logging to?
-$params['log'] = 'file:file:/kolab/var/resmgr/freebusy.log';                // File...
+$params['log'] = 'file:/kolab/var/apache2/log/freebusy/freebusy.log';                // File...
 // $params['log'] = 'syslog:cons, pid';            // Or syslog...
 
 // What level of output should we log? Higher levels give more verbose output.

Index: freebusy.php
===================================================================
RCS file: /kolabrepository/server/kolab-freebusy/freebusy/freebusy.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- freebusy.php	8 Aug 2007 13:11:22 -0000	1.2
+++ freebusy.php	8 Aug 2007 15:45:49 -0000	1.3
@@ -98,7 +98,7 @@
 
 $user = strtolower($user);
 
-$cache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], $req_extended );
+$cache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], $params, $req_extended );
 
 $collector =& new FreeBusyCollector( $user );
 

Index: pfb.php
===================================================================
RCS file: /kolabrepository/server/kolab-freebusy/freebusy/pfb.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pfb.php	8 Aug 2007 13:11:22 -0000	1.2
+++ pfb.php	8 Aug 2007 15:45:49 -0000	1.3
@@ -131,8 +131,8 @@
     exit;
  }
 
-$cache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], false );
-$xcache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], true );
+$cache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], $params, false );
+$xcache =& new FreeBusyCache( $params['cache_dir'], $params['pfb_dbformat'], $params, true );
 
 if( $req_cache ) {
     $acl = false;





More information about the commits mailing list