Ability to change main WPI (Microsoft) feed url in System Settings.

This commit is contained in:
ruslanht 2013-01-30 17:33:37 +02:00
parent 815519b650
commit 54c8438ece
14 changed files with 122 additions and 1041 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.EnterpriseServer.Base.Common
{
public class WebPlatformInstaller
{
public const string MAIN_FEED_URL = "https://www.microsoft.com/web/webpi/4.2/webproductlist.xml";
public const string ZOO_FEED = "http://www.helicontech.com/zoo/feed/wsp4";
}
}

View file

@ -42,6 +42,10 @@ namespace WebsitePanel.EnterpriseServer
public const string BACKUP_SETTINGS = "BackupSettings";
public const string SETUP_SETTINGS = "SetupSettings";
public const string WPI_SETTINGS = "WpiSettings";
// key to access to wpi main & custom feed in wpi settings
public const string WPI_MAIN_FEED_KEY = "WpiMainFeedUrl";
public const string FEED_ULS_KEY = "FeedUrls";
public static readonly SystemSettings Empty = new SystemSettings { SettingsArray = new string[][] {} };

View file

@ -74,6 +74,7 @@
<SubType>Code</SubType>
</Compile>
<Compile Include="Common\MailTemplate.cs" />
<Compile Include="Common\WebPlatformInstaller.cs" />
<Compile Include="DatabaseServers\DatabaseBrowserConfiguration.cs" />
<Compile Include="Ecommerce\BillingCycle.cs" />
<Compile Include="Ecommerce\Category.cs" />