merge commit
This commit is contained in:
commit
dd462e4c6a
37 changed files with 8177 additions and 666 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue