From caaad9ce857e43f55e11cdc2f51209a15b6efcef Mon Sep 17 00:00:00 2001 From: Florian Schlichting Date: Mon, 23 Jan 2017 22:58:56 +0100 Subject: [PATCH] Document remaining config settings for which there are defaults, as well as the very useful skip_bad_event_on_import --- config/example-config.php | 7 +++++++ config/other-config.php | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/config/example-config.php b/config/example-config.php index 16a70719..d9af5f6f 100644 --- a/config/example-config.php +++ b/config/example-config.php @@ -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; + /*************************************************************************** * * diff --git a/config/other-config.php b/config/other-config.php index 0ee44eb1..6716c6a5 100644 --- a/config/other-config.php +++ b/config/other-config.php @@ -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