diff --git a/config/debug-config.php b/config/debug-config.php index ea0ffa91..8f517458 100644 --- a/config/debug-config.php +++ b/config/debug-config.php @@ -9,7 +9,7 @@ * 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 +//$c->debug_email = 'davical@example.com' /** diff --git a/config/example-config.php b/config/example-config.php index a460e70a..95de82d1 100644 --- a/config/example-config.php +++ b/config/example-config.php @@ -390,7 +390,7 @@ $c->admin_email ='calendar-admin@example.com'; * want to force this to a specific domain in responses if your system is accessed by * multiple names, otherwise you probably won't need to change it. */ -// $c->domain_name; +// $c->domain_name = 'example.com'; /** * Many people want this, but it may be a security issue for you, so it is diff --git a/config/other-config.php b/config/other-config.php index e9133689..8edac13c 100644 --- a/config/other-config.php +++ b/config/other-config.php @@ -13,7 +13,7 @@ * to set the relative address of images and so forth. You probably should * not change it unless you know why you want to. */ -// $c->base_url +// $c->base_url = 'http://example.com/davical'; /** * Automatically set according to $_SERVER['DOCUMENT_ROOT'], but could be overridden @@ -24,15 +24,15 @@ /** * Used to set the timeouts applying to the LOCK method. */ -// $c->default_lock_timeout; -// $c->maximum_lock_timeout; +// $c->default_lock_timeout = 900; +// $c->maximum_lock_timeout = 8640000; /** * default = true; * If set, DAViCal will store each unique time zone used in any calendar to speed * future timezone interpretation. */ -// $c->save_time_zone_defs; +// $c->save_time_zone_defs = true; /** @@ -51,7 +51,7 @@ */ // Usually internally assigned, but you may want to set it to something meaningful // if you are writing your own pages within the admin interface. -// $c->page_title; +// $c->page_title = 'DAViCal CalDAV Server'; /** @@ -60,34 +60,13 @@ */ // Usually internally assigned, but you may want to append meaningful messages // to this array if you are writing your own pages within the admin interface. -//$c->messages; +//$c->messages[] = 'Hello World!'; -/** -* These 6 next properties are extracted automatically from the Changelog -* used to give informtion for debugging -*/ -// Internally assigned -// $c->code_debian, -// $c->code_major, -// $c->code_minor, -// $c->code_patch, -// $c->code_pkgver, -// $c->code_version, -/** -* Used internally to know the revision of the database schema and display -* in HTTP error anwser in the header -*/ -// Internally assigned -// $c->schema_major -// $c->schema_minor -// $c->schema_patch -// $c->schema_version - /** * This property is used to enforce regular ordering of query results so * that the regression test output is deterministically ordered. In * real life this is not important, and it is a performance hit, so it * should not usually be enabled anywhere else. */ -// $c->strict_result_ordering = boolean; +// $c->strict_result_ordering = false;