-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand online provider support massively to most S3 compat providers
- Loading branch information
1 parent
dd0bf25
commit 8bfe480
Showing
7 changed files
with
569 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,50 @@ | ||
using System; | ||
using System.Windows.Forms; | ||
|
||
namespace KeePassSync.Providers.S3 { | ||
public partial class AccountDetails : UserControl { | ||
public string AccessKey { | ||
get { return txtAccessKey.Text; } | ||
set { txtAccessKey.Text = value; } | ||
} | ||
|
||
public string SecretAccessKey { | ||
get { return txtSecretAccessKey.Text; } | ||
set { txtSecretAccessKey.Text = value; } | ||
} | ||
|
||
public string BucketName { | ||
get { return txtBucketName.Text; } | ||
set { txtBucketName.Text = value; } | ||
} | ||
public bool CreateBackups { | ||
get { return cbxDailyBackups.Checked; } | ||
set { cbxDailyBackups.Checked = value; } | ||
|
||
} | ||
|
||
public AccountDetails() { | ||
InitializeComponent(); | ||
} | ||
|
||
private void AccountDetails_Load(object sender, EventArgs e) { | ||
|
||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { | ||
System.Diagnostics.Process.Start("https://github.com/mitchcapper/KeePassSync/blob/master/AMAZON_S3.md"); | ||
} | ||
} | ||
} | ||
using System; | ||
using System.Windows.Forms; | ||
|
||
namespace KeePassSync.Providers.S3 { | ||
public partial class AccountDetails : UserControl { | ||
public string AccessKey { | ||
get { return txtAccessKey.Text; } | ||
set { txtAccessKey.Text = value; } | ||
} | ||
|
||
public string SecretAccessKey { | ||
get { return txtSecretAccessKey.Text; } | ||
set { txtSecretAccessKey.Text = value; } | ||
} | ||
|
||
public string BucketName { | ||
get { return txtBucketName.Text; } | ||
set { txtBucketName.Text = value; } | ||
} | ||
public bool CreateBackups { | ||
get { return cbxDailyBackups.Checked; } | ||
set { cbxDailyBackups.Checked = value; } | ||
|
||
} | ||
public string ServiceURL { | ||
get { return txtServiceUrl.Text; } | ||
set { txtServiceUrl.Text = value; } | ||
} | ||
public bool UseChecksums { | ||
get { return cbxTransferChecksums.Checked; } | ||
set { cbxTransferChecksums.Checked = value; } | ||
} | ||
public bool UseACLs { | ||
get { return cbxCopyACLS.Checked; } | ||
set { cbxCopyACLS.Checked = value; } | ||
} | ||
|
||
public AccountDetails() { | ||
InitializeComponent(); | ||
} | ||
|
||
private void AccountDetails_Load(object sender, EventArgs e) { | ||
|
||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { | ||
System.Diagnostics.Process.Start("https://github.com/mitchcapper/KeePassSync/blob/master/AMAZON_S3.md"); | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.