From b7583346fcab628cead26bcc5303cf3f1fd631e4 Mon Sep 17 00:00:00 2001 From: Carson Page Date: Tue, 17 Oct 2017 06:36:18 -0500 Subject: [PATCH] Finished edits to the control panel --- management/templates/system-backup.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/management/templates/system-backup.html b/management/templates/system-backup.html index 13367f6d..0db9a694 100644 --- a/management/templates/system-backup.html +++ b/management/templates/system-backup.html @@ -109,7 +109,7 @@

Backups are stored in an B2Blaze bucket. You must have an B2Blaze account already.

-

You MUST manually copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files. It is NOT stored in your Amazon S3 bucket.

+

You MUST manually copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files. It is NOT stored in your B2Blaze bucket.

@@ -131,7 +131,7 @@
-
+
@@ -281,6 +281,9 @@ function set_custom_backup() { target = target_type; else if (target_type == "s3") target = "s3://" + $("#backup-target-s3-host").val() + "/" + $("#backup-target-s3-path").val(); + else if (target_type == "b2") + target = "b2://" + $("#backup-target-b2-user").val() + ":" + + $("#backup-target-b2-pass").val() + "@" + $("#backup-target-b2-path"); else if (target_type == "rsync") { target = "rsync://" + $("#backup-target-rsync-user").val() + "@" + $("#backup-target-rsync-host").val() + "/" + $("#backup-target-rsync-path").val();