3 * For the curious, there are a number of other references to $c->something
4 * which are (or might appear to be) configuration items. This file contains
5 * some documentation for them, but it is strongly recommended that you should
6 * not touch any of these. Either you will break the application or they will
7 * have no effect because they are simply calculated internally.
11 * Set automatically according to $_SERVER['SCRIPT_NAME']
12 * It will be used to set the address of each tab of the web interface,
13 * to set the relative address of images and so forth. You probably should
14 * not change it unless you know why you want to.
19 * Automatically set according to $_SERVER['DOCUMENT_ROOT'], but could be overridden
20 * if that gets it wrong for some reason.
22 // $c->base_directory = "/not/here";
25 * Used to set the timeouts applying to the LOCK method.
27 // $c->default_lock_timeout;
28 // $c->maximum_lock_timeout;
32 * If set, DAViCal will store each unique time zone used in any calendar to speed
33 * future timezone interpretation.
35 // $c->save_time_zone_defs;
39 * Internal variable used to contain arrays of stylesheets or javascripts
40 * which are needed by the page being displayed.
42 // Usually internally assigned, but you may want to set it to something meaningful
43 // if you are writing your own pages within the admin interface.
44 // $c->scripts = array();
45 // $c->stylesheets = array();
49 * Internal variable to display page's title
50 * in the web interface
52 // Usually internally assigned, but you may want to set it to something meaningful
53 // if you are writing your own pages within the admin interface.
58 * Internal array variable to hold error messages to be displayed on top of page
59 * in the web interface
61 // Usually internally assigned, but you may want to append meaningful messages
62 // to this array if you are writing your own pages within the admin interface.
67 * These 6 next properties are extracted automatically from the Changelog
68 * used to give informtion for debugging
70 // Internally assigned
78 * Used internally to know the revision of the database schema and display
79 * in HTTP error anwser in the header
81 // Internally assigned
88 * This property is used to enforce regular ordering of query results so
89 * that the regression test output is deterministically ordered. In
90 * real life this is not important, and it is a performance hit, so it
91 * should not usually be enabled anywhere else.
93 // $c->strict_result_ordering = boolean;