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:
Florian Schlichting 2017-01-23 22:58:56 +01:00
parent dc9edfcfda
commit caaad9ce85
2 changed files with 25 additions and 0 deletions

View File

@ -49,6 +49,13 @@ $c->pg_connect[] = "dbname=davical user=davical_app";
*/
// $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;
/***************************************************************************
* *

View File

@ -57,6 +57,11 @@
// $c->scripts = 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,
* allowing you to have (e.g.) two tables with the same name. This setting
@ -67,6 +72,19 @@
*/
// $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
* in the web interface