mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-09-01 18:48:17 +00:00
make sure we dont have documentation suggesting that $c->something can be used without assigning a value
This commit is contained in:
parent
0901fd2756
commit
a4ba019397
@ -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'
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user