From 1cf95af41ea24ab76cba8a0761d349b65c08c294 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 13 May 2020 10:58:22 -0400 Subject: Add to mailbox view This causes the mailbox to automatically reload the page every 60 seconds, without JavaScript. This also updates the base template data to include the full URL, and replaces the earlier "Path" field with a pre-split array of path components, which is more immediately useful to most templates given the limitations of string munging with text/template primitives. --- plugins/carddav/public/address-book.html | 2 +- plugins/carddav/public/address-object.html | 2 +- plugins/carddav/public/update-address-object.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/carddav/public') diff --git a/plugins/carddav/public/address-book.html b/plugins/carddav/public/address-book.html index a9ab9c5..e1e735f 100644 --- a/plugins/carddav/public/address-book.html +++ b/plugins/carddav/public/address-book.html @@ -1,4 +1,4 @@ -{{template "head.html"}} +{{template "head.html" .}}

alps

diff --git a/plugins/carddav/public/address-object.html b/plugins/carddav/public/address-object.html index b6e731e..5423d9f 100644 --- a/plugins/carddav/public/address-object.html +++ b/plugins/carddav/public/address-object.html @@ -1,4 +1,4 @@ -{{template "head.html"}} +{{template "head.html" .}}

alps

diff --git a/plugins/carddav/public/update-address-object.html b/plugins/carddav/public/update-address-object.html index 4769e97..dd4d087 100644 --- a/plugins/carddav/public/update-address-object.html +++ b/plugins/carddav/public/update-address-object.html @@ -1,4 +1,4 @@ -{{template "head.html"}} +{{template "head.html" .}}

alps

-- cgit v1.2.3