ssg: WizardPanelStaticSiteInitial,Paths: remove unused methods
This commit is contained in:
parent
9d5946fb0a
commit
5c71216067
|
@ -76,33 +76,12 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
|||
get { return ConfigPanelId.StaticSiteConfig; }
|
||||
}
|
||||
|
||||
public override bool ShowProxySettingsLink
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public IBlogProviderAccountWizardDescription ProviderAccountWizard
|
||||
{
|
||||
set { }
|
||||
}
|
||||
|
||||
public string AccountId
|
||||
{
|
||||
set { }
|
||||
}
|
||||
|
||||
public string LocalSitePath
|
||||
{
|
||||
get => PathHelper.RemoveLeadingAndTrailingSlash(textBoxLocalSitePath.Text);
|
||||
set { textBoxLocalSitePath.Text = value; }
|
||||
}
|
||||
|
||||
public bool IsDirty(TemporaryBlogSettings settings)
|
||||
{
|
||||
return false; // TODO
|
||||
|
||||
}
|
||||
|
||||
public override bool ValidatePanel()
|
||||
{
|
||||
if (!Directory.Exists(LocalSitePath))
|
||||
|
|
|
@ -90,21 +90,6 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
|||
get { return ConfigPanelId.StaticSiteConfig; }
|
||||
}
|
||||
|
||||
public override bool ShowProxySettingsLink
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
|
||||
public IBlogProviderAccountWizardDescription ProviderAccountWizard
|
||||
{
|
||||
set { }
|
||||
}
|
||||
|
||||
public string AccountId
|
||||
{
|
||||
set { }
|
||||
}
|
||||
|
||||
public string SiteUrl
|
||||
{
|
||||
get => PathHelper.RemoveLeadingAndTrailingSlash(textBoxSiteUrl.Text);
|
||||
|
@ -147,12 +132,6 @@ namespace OpenLiveWriter.PostEditor.Configuration.Wizard
|
|||
set { checkBoxPagesInRoot.Checked = value; }
|
||||
}
|
||||
|
||||
public bool IsDirty(TemporaryBlogSettings settings)
|
||||
{
|
||||
return false; // TODO
|
||||
|
||||
}
|
||||
|
||||
public override bool ValidatePanel()
|
||||
{
|
||||
var postsPathFull = $"{_localSitePath}\\{PostsPath}";
|
||||
|
|
Loading…
Reference in New Issue