Skip to content

Commit a5e274a

Browse files
committed
Changing 'load pattern' to 'template' everywhere.
1 parent 17070e4 commit a5e274a

File tree

65 files changed

+2256
-691
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2256
-691
lines changed

Virtual_EDW/CustomTabPage.cs

Lines changed: 118 additions & 120 deletions
Large diffs are not rendered by default.

Virtual_EDW/Form_Base.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public FormBase(FormMain myParent)
1818
MyParent = myParent;
1919
InitializeComponent();
2020
}
21-
internal static LoadPatternGridView _loadPatternGridView;
21+
internal static TemplateGridView _templateGridView;
2222

2323
// List of TEAM working environments.
2424
public static TeamEnvironmentCollection TeamEnvironmentCollection { get; set; } = new TeamEnvironmentCollection();
@@ -36,7 +36,7 @@ internal static class GlobalParameters
3636
public static string CorePath { get; } = Application.StartupPath + @"\" + @"Core\";
3737
public static string VdwConfigurationPath { get; } = RootPath + @"\Configuration\";
3838
public static string VdwConfigurationFileName { get; } = "VDW_Configuration.txt";
39-
public static string LoadPatternListFileName { get; } = "loadPatternCollection.json";
39+
public static string TemplateCollectionFileName { get; } = "templateCollection.json";
4040

4141
// TEAM core file names, not meant to be updated
4242
public static string TeamConfigurationFileName { get; } = "TEAM_configuration";
@@ -59,15 +59,14 @@ internal static class VdwConfigurationSettings
5959
internal static EventLog VdwEventLog { get; set; } = new EventLog();
6060

6161
public static string VdwSchema { get; set; } = "dbo";
62-
public static string LoadPatternPath { get; set; } = GlobalParameters.RootPath + @"\LoadPatterns\";
62+
public static string TemplatePath { get; set; } = GlobalParameters.RootPath + @"\Templates\";
6363
public static string VdwMetadatPath { get; set; } = Application.StartupPath + @"\Metadata\";
6464
public static string VdwOutputPath { get; set; } = Application.StartupPath + @"\Output\";
6565
public static string VdwExamplesPath { get; set; } = Application.StartupPath + @"\Examples\";
6666

67-
public static List<LoadPatternFileHandling> patternList { get; set; }
67+
public static List<TemplateHandling> templateList { get; set; }
6868

69-
// Related to TEAM configuration settings
70-
//public static string TeamEnvironmentFilePath { get; set; } = GlobalParameters.RootPath + @"\Configuration\";
69+
// Related to TEAM configuration settings.
7170
public static string TeamConfigurationPath { get; set; } = Application.StartupPath + @"\Configuration\";
7271
public static string TeamConnectionsPath { get; set; } = Application.StartupPath + @"\Configuration\";
7372
public static string TeamEnvironmentFilePath { get; set; } = GlobalParameters.RootPath + @"\Configuration\" + GlobalParameters.JsonEnvironmentFileName + GlobalParameters.JsonExtension;
@@ -79,7 +78,7 @@ internal static class VdwConfigurationSettings
7978
// In memory settings for reloading.
8079
public static string SelectedSubTab { get; set; }
8180
public static string SelectedMainTab { get; set; }
82-
public static string SelectedPatternText { get; set; }
81+
public static string SelectedTemplateText { get; set; }
8382
}
8483
}
8584
}

Virtual_EDW/Form_Main.Designer.cs

Lines changed: 49 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)