merge commit

This commit is contained in:
robvde 2013-09-21 11:56:18 +04:00
commit dd462e4c6a
37 changed files with 8177 additions and 666 deletions

View file

@ -92,5 +92,7 @@ namespace WebsitePanel.Providers.HeliconZoo
void SwithEnginesEnabled(bool enabled);
string[] GetEnabledEnginesForSite(string siteId);
void SetEnabledEnginesForSite(string siteId, string[] engineNames);
bool IsWebCosoleEnabled();
void SetWebCosoleEnabled(bool enabled);
}
}

View file

@ -121,6 +121,12 @@ namespace WebsitePanel.Providers.Web
void UpdateHeliconApeGroup(string siteId, WebGroup group);
void DeleteHeliconApeGroup(string siteId, string groupName);
// Helicon Zoo
WebVirtualDirectory[] GetZooApplications(string siteId);
StringResultObject SetZooEnvironmentVariable(string siteId, string appName, string envName, string envValue);
StringResultObject SetZooConsoleEnabled(string siteId, string appName);
StringResultObject SetZooConsoleDisabled(string siteId, string appName);
// web app gallery
bool CheckLoadUserProfile();

View file

@ -78,6 +78,7 @@ namespace WebsitePanel.Providers.Web
private bool redirectPermanent;
private bool sharePointInstalled;
private bool iis7;
private string consoleUrl;
public string AnonymousUsername
{
@ -263,6 +264,12 @@ namespace WebsitePanel.Providers.Web
get { return this.iis7; }
set { this.iis7 = value; }
}
public string ConsoleUrl
{
get { return consoleUrl; }
set { consoleUrl = value; }
}
#region Web Deploy Publishing Properties
/// <summary>