From b2cb01e5ba6caeaa5476d76512e9cae67980c610 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 19 May 2022 13:54:59 -0400 Subject: document perUserAdditionalResources, and add UTC --- radicale_infcloud/web/config.js | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/radicale_infcloud/web/config.js b/radicale_infcloud/web/config.js index fd1c43a..0dd9056 100644 --- a/radicale_infcloud/web/config.js +++ b/radicale_infcloud/web/config.js @@ -125,7 +125,7 @@ var globalEnableDevelBuilds=true; // globalAccountSettings // globalNetworkCheckSettings // globalNetworkAccountSettings (available in auth module only) -// - settingsAccount +// - settingsAccount DISABLED by stackrpms branch. This is totally ignored now. // NOTE: server support for custom DAV properties is REQUIRED! // This option sets the account where the client properties such as: // loaded collections, enabled collections, ... are saved during @@ -310,6 +310,17 @@ var globalEnableDevelBuilds=true; // ... // } //]; +// +// perUserAdditionalResources, added by stackrpms +// Use this attribute for granting specific users access to the collections +// of other named users. This is in addition to the additionalResources +// attribute that affects all users. +// In this example, jsmith can access the collections of rjohnson and msmith. +// Also, rjohnson can access ljohnson collections. +// perUserAdditionalResources: [ +// { name: "jsmith", allowed: ["rjohnson","msmith"] }, +// { name: "rjohnson", allowed: ["ljohnson"] } +// ] // globalNetworkCheckSettings @@ -341,17 +352,13 @@ var globalNetworkCheckSettings={ timeOut: 90000, lockTimeOut: 10000, checkContentType: true, - settingsAccount: true, delegation: true, additionalResources: [], hrefLabel: null, forceReadOnly: null, ignoreAlarms: false, backgroundCalendars: [], - perUserAdditionalResources: [ - { name: "bgstack15", allowed: ["name2","name3"] }, - { name: "name2", allowed: ["name4"] } - ] + perUserAdditionalResources: [] } @@ -667,7 +674,8 @@ var globalActiveTodoCollections=[]; // - 'agendaDay' // NOTE: we use custom and enhanced version of fullcalendar! // Example: -var globalActiveView='multiWeek'; +// stackrpms note: this does not appear to work at all. +var globalActiveView='agendaWeek'; // globalOpenFormMode @@ -770,7 +778,7 @@ var globalTimeZone='America/New_York'; // that timezone is enabled (even if it is not present in this list). // Example: // var globalTimeZonesEnabled=['America/New_York', 'Europe/Berlin']; -var globalTimeZonesEnabled=[]; +var globalTimeZonesEnabled=['UTC']; // globalRewriteTimezoneComponent -- cgit