aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2017-04-12 21:37:35 +0200
committerUnrud <unrud@openaliasbox.org>2017-04-12 22:41:18 +0200
commitd137a00e30aacecd8d533ac86d5562b0d573c6b0 (patch)
treedbd88a278caaf205016c45a2a83895d829a781c0
parentInfCloud: Update to 0.13.2rc1 (diff)
downloadradicaleinfcloud-d137a00e30aacecd8d533ac86d5562b0d573c6b0.tar.gz
radicaleinfcloud-d137a00e30aacecd8d533ac86d5562b0d573c6b0.tar.bz2
radicaleinfcloud-d137a00e30aacecd8d533ac86d5562b0d573c6b0.zip
InfCloud: Configure
-rw-r--r--radicale_web/web/infcloud/config.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/radicale_web/web/infcloud/config.js b/radicale_web/web/infcloud/config.js
index d203444..560c1d1 100644
--- a/radicale_web/web/infcloud/config.js
+++ b/radicale_web/web/infcloud/config.js
@@ -339,8 +339,7 @@ var globalEnableDevelBuilds=true;
var globalNetworkCheckSettings={
href: location.protocol+'//'+location.hostname+
(location.port ? ':'+location.port: '')+
- location.pathname.replace(RegExp('/+[^/]+/*(index\.html)?$'),'')+
- '/caldav.php/',
+ location.pathname.replace(RegExp('(/+[^/]+/*){2}(index\.html)?$'),'')+'/',
timeOut: 90000,
lockTimeOut: 10000,
checkContentType: true,
@@ -421,7 +420,7 @@ var globalSyncResourcesInterval=120000;
// If undefined or false, the synchronization button is disabled.
// NOTE: enable this option only if you really know what are you doing!
// Example:
-var globalEnableRefresh=false;
+var globalEnableRefresh=true;
// globalEnableKbNavigation
@@ -531,7 +530,7 @@ var globalResourceAlphabetSorting=true;
// If undefined (or empty), update notifications will be shown to all users.
// Example:
// globalNewVersionNotifyUsers=['admin', 'peter'];
-var globalNewVersionNotifyUsers=[];
+var globalNewVersionNotifyUsers=null;
// globalDatepickerFormat
bgstack15