forked from ccnet/CruiseControl.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigurationOptionsPage.cs
More file actions
99 lines (90 loc) · 3.1 KB
/
Copy pathConfigurationOptionsPage.cs
File metadata and controls
99 lines (90 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace ThoughtWorks.CruiseControl.MigrationWizard
{
public partial class ConfigurationOptionsPage : WizardPageBase
{
public ConfigurationOptionsPage()
{
InitializeComponent();
LinkNextPage(new WebDashboardOptionsPage());
}
public override void RunPage()
{
// Set the default values
migrateConfig.Checked = MigrationOptions.MigrateConfiguration;
backupFile.Checked = MigrationOptions.BackupConfiguration;
settingsLocation.Text = MigrationOptions.ConfigurationLocation;
}
public override void CompletePage()
{
// Set the new values
MigrationOptions.MigrateConfiguration = migrateConfig.Checked;
MigrationOptions.BackupConfiguration = backupFile.Checked;
MigrationOptions.ConfigurationLocation = settingsLocation.Text;
}
private void settingsLocation_TextChanged(object sender, EventArgs e)
{
ValidateSettings();
}
private void ValidateSettings()
{
var isValid = true;
if (migrateConfig.Checked)
{
if (string.IsNullOrEmpty(settingsLocation.Text))
{
errorProvider.SetError(selectLocationButton, "Configuration file is required");
isValid = false;
}
else if (!File.Exists(settingsLocation.Text))
{
errorProvider.SetError(selectLocationButton, "Configuration file does not exist");
isValid = false;
}
else
{
errorProvider.SetError(selectLocationButton, null);
}
}
else
{
errorProvider.SetError(selectLocationButton, null);
}
IsValid = isValid;
}
private void migrateConfig_CheckedChanged(object sender, EventArgs e)
{
settingsPanel.Enabled = migrateConfig.Checked;
ValidateSettings();
}
private void selectLocationButton_Click(object sender, EventArgs e)
{
var dialog = new OpenFileDialog
{
AddExtension = false,
AutoUpgradeEnabled = true,
CheckFileExists = true,
DefaultExt = "config",
DereferenceLinks = true,
FileName = settingsLocation.Text,
Filter = "ccnet.config|ccnet.config",
FilterIndex = 1,
Multiselect = false,
ShowHelp = false,
ShowReadOnly = false,
Title = "Select Configuration File"
};
if (dialog.ShowDialog(FindForm()) == DialogResult.OK)
{
settingsLocation.Text = dialog.FileName;
}
}
}
}