Renaming of RSCDS to DAViCal.

This commit is contained in:
Andrew McMillan 2007-11-06 16:15:02 +13:00
parent 786e73f56b
commit 175ba17146
3 changed files with 11 additions and 11 deletions

View File

@ -6,7 +6,7 @@
*/
/**
* if this is set then any e-mail that would normally be sent by RSCDS will be
* if this is set then any e-mail that would normally be sent by DAViCal will be
* sent to this e-mail address for debugging.
*/
//$c->debug_email
@ -29,21 +29,23 @@
// $c->dbg['querystring'] = 1;
// $c->dbg['icalendar'] = 1;
// $c->dbg['ics'] = 1;
// $c->dbg['Login'] = 1;
// $c->dbg['login'] = 1;
// $c->dbg['options'] = 1;
// $c->dbg['get'] = 1;
// $c->dbg['put'] = 1;
// $c->dbg['propfind'] = 1;
// $c->dbg['proppatch'] = 1;
// $c->dbg['report'] = 1;
// $c->dbg['principal'] = 1;
// $c->dbg['user'] = 1;
// $c->dbg['vevent'] = 1;
// $c->dbg['rrule'] = 1;
/**
* default is 'rscds' used to prefix debugging messages but will only need to change
* if you are running multiple RSCDS servers logging into the same place.
* default is 'davical' used to prefix debugging messages but will only need to change
* if you are running multiple DAViCal servers logging into the same place.
*/
// $c->sysabbr
// $c->sysabbr = 'davical';
/**
* As yet we only support quite a limited range of options. When we see clients looking
@ -55,4 +57,3 @@
*/
// $c->override_allowed_methods = "PROPPATCH, OPTIONS, GET, HEAD, PUT, DELETE, PROPFIND, MKCOL, MKCALENDAR, LOCK, UNLOCK, REPORT"
?>

View File

@ -10,14 +10,14 @@
*****************************/
/**
* Ex : $c->pg_connect[] = 'dbname=rscds port=5432 user=general'
* Ex : $c->pg_connect[] = 'dbname=davical port=5432 user=general'
* The application will attempt to
* connect to the database, successively applying connection parameters from
* the array in $c->pg_connect.
* used in the web interface but also the caldav Server
*/
$c->pg_connect[] = "dbname=rscds user=general";
// $c->pg_connect[] = "dbname=rscds user=general port=5433 host=somehost password=mypass";
$c->pg_connect[] = "dbname=davical user=general";
// $c->pg_connect[] = "dbname=davical user=general port=5433 host=somehost password=mypass";
/****************************
@ -66,7 +66,7 @@ $c->admin_email ='calendar-admin@example.com';
* <p>The "enable_row_linking" option controls whether javascript is used
* to make the entire row clickable in browse lists in the administration
* pages. Since this doesn't work in Konqueror you may want to set this
* to false if you expect people to be using Konqueror with the RSCDS
* to false if you expect people to be using Konqueror with the DAViCal
* administration pages.</p>
*/
// $c->enable_row_linking = true;

View File

@ -84,4 +84,3 @@
// $c->schema_patch
// $c->schema_version
?>