mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-22 02:04:19 +00:00
Document remaining config settings for which there are defaults, as well as the very useful skip_bad_event_on_import
This commit is contained in:
parent
dc9edfcfda
commit
caaad9ce85
@ -49,6 +49,13 @@ $c->pg_connect[] = "dbname=davical user=davical_app";
|
|||||||
*/
|
*/
|
||||||
// $c->readonly_webdav_collections = false;
|
// $c->readonly_webdav_collections = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This will allow failure on import of collections to apply only to an
|
||||||
|
* individual event that is faulty, rather than failing the whole collection.
|
||||||
|
* Default: false (fail whole collection)
|
||||||
|
*/
|
||||||
|
// $c->skip_bad_event_on_import = true;
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
* *
|
* *
|
||||||
|
|||||||
@ -57,6 +57,11 @@
|
|||||||
// $c->scripts = array();
|
// $c->scripts = array();
|
||||||
// $c->stylesheets = array();
|
// $c->stylesheets = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Where the up.gif and down.gif are located
|
||||||
|
* */
|
||||||
|
// $c->images = $c->base_url . '/images';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PostgreSQL supports multiple namespaces (schemas) within a single database,
|
* PostgreSQL supports multiple namespaces (schemas) within a single database,
|
||||||
* allowing you to have (e.g.) two tables with the same name. This setting
|
* allowing you to have (e.g.) two tables with the same name. This setting
|
||||||
@ -67,6 +72,19 @@
|
|||||||
*/
|
*/
|
||||||
// $c->db_schema = 'schema1,schema2';
|
// $c->db_schema = 'schema1,schema2';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether to replace query parameters with appropriately escaped substitutions
|
||||||
|
* in AWL, or leave it to the database to "prepare" the query.
|
||||||
|
* Default: true (do it in AWL)
|
||||||
|
*/
|
||||||
|
// $c->expand_pdo_parameters = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The recursion depth when expanding group memberships to resolve effective
|
||||||
|
* permissions. Default: 2
|
||||||
|
*/
|
||||||
|
// $c->permission_scan_depth = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal variable to display page's title
|
* Internal variable to display page's title
|
||||||
* in the web interface
|
* in the web interface
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user