From b26a440e4bbb2041396cba441c1b9a908efd4fb4 Mon Sep 17 00:00:00 2001 From: mpl Date: Fri, 14 Sep 2018 03:21:03 +0200 Subject: [PATCH] pkg/server: fix camlistore.org refs on help page Change-Id: I11f1b362460f411939a4608ddb83a4027cb12e7e --- pkg/server/help.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/server/help.go b/pkg/server/help.go index e5aa68212..85285f6d2 100644 --- a/pkg/server/help.go +++ b/pkg/server/help.go @@ -39,24 +39,24 @@ const helpHTML string = `

Help

Web User Interface

-

Search bar predicates.

+

Search bar predicates.

Client tools

You can download the Perkeep command line tools for Linux, Mac, and Windows at:

-

You will need to use the following client configuration in order to access this server using the command line tools.

+

You will need to use the following client configuration in order to access this server using the command line tools.

{{ .ClientConfigJSON }}
{{ .SecringDownloadHint }}

Anything Else?

-

See the Perkeep online documentation and community contacts.

+

See the Perkeep online documentation and community contacts.

` @@ -168,7 +168,7 @@ func (hh *HelpHandler) serveHelpHTML(cc *clientconfig.Config, rw http.ResponseWr if strings.HasPrefix(hh.serverSecRing, "/gcs/") { bucketdir := strings.TrimPrefix(hh.serverSecRing, "/gcs/") bucketdir = strings.TrimSuffix(bucketdir, "/identity-secring.gpg") - hint = template.HTML(fmt.Sprintf("

Download your GnuPG secret ring from https://console.developers.google.com/storage/browser/%s/ and place it in your Perkeep client config directory. Keep it private. It's not encrypted or password-protected and anybody in possession of it can create Perkeep claims as your identity.

\n", + hint = template.HTML(fmt.Sprintf("

Download your GnuPG secret ring from https://console.developers.google.com/storage/browser/%s/ and place it in your Perkeep client config directory. Keep it private. It's not encrypted or password-protected and anybody in possession of it can create Perkeep claims as your identity.

\n", bucketdir, bucketdir)) }