From 079568a9e0ba966a4eecf5152d649d3387ea7453 Mon Sep 17 00:00:00 2001 From: robvde Date: Sun, 5 Apr 2015 14:18:13 +0800 Subject: [PATCH] Sharepoint 2013 UI Partial Check in --- .../ESModule_ControlsHierarchy.config | 13 +- .../App_Data/WebsitePanel_Modules.config | 17 + .../App_Data/WebsitePanel_Pages.config | 11 + .../WebsitePanel_Modules.ascx.resx | 15 + ...ntEnterpriseBackupSiteCollection.ascx.resx | 153 ++++++ ...ointEnterpriseEditSiteCollection.ascx.resx | 207 ++++++++ ...tEnterpriseRestoreSiteCollection.ascx.resx | 150 ++++++ ...rePointEnterpriseSiteCollections.ascx.resx | 153 ++++++ ...rePointEnterpriseStorageSettings.ascx.resx | 154 ++++++ ...SharePointEnterpriseStorageUsage.ascx.resx | 150 ++++++ .../WebsitePanel/Code/Framework/ES.cs | 5 + ...arePointEnterpriseSiteCollectionsHelper.cs | 65 +++ .../ExchangeServer/UserControls/Menu.ascx.cs | 16 +- ...rePointEnterpriseBackupSiteCollection.ascx | 80 ++++ ...ointEnterpriseBackupSiteCollection.ascx.cs | 189 ++++++++ ...priseBackupSiteCollection.ascx.designer.cs | 159 +++++++ ...harePointEnterpriseEditSiteCollection.ascx | 209 ++++++++ ...ePointEnterpriseEditSiteCollection.ascx.cs | 450 ++++++++++++++++++ ...erpriseEditSiteCollection.ascx.designer.cs | 447 +++++++++++++++++ ...ePointEnterpriseRestoreSiteCollection.ascx | 101 ++++ ...intEnterpriseRestoreSiteCollection.ascx.cs | 176 +++++++ ...riseRestoreSiteCollection.ascx.designer.cs | 159 +++++++ ...edSharePointEnterpriseSiteCollections.ascx | 92 ++++ ...harePointEnterpriseSiteCollections.ascx.cs | 110 +++++ ...EnterpriseSiteCollections.ascx.designer.cs | 141 ++++++ ...edSharePointEnterpriseStorageSettings.ascx | 62 +++ ...harePointEnterpriseStorageSettings.ascx.cs | 93 ++++ ...EnterpriseStorageSettings.ascx.designer.cs | 114 +++++ ...ostedSharePointEnterpriseStorageUsage.ascx | 57 +++ ...edSharePointEnterpriseStorageUsage.ascx.cs | 94 ++++ ...intEnterpriseStorageUsage.ascx.designer.cs | 114 +++++ .../UserControls/OrganizationMenuControl.cs | 68 ++- .../WebsitePanel.Portal.Modules.csproj | 67 +++ 33 files changed, 4077 insertions(+), 14 deletions(-) create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseBackupSiteCollection.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseEditSiteCollection.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseRestoreSiteCollection.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseSiteCollections.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseStorageSettings.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/App_LocalResources/HostedSharePointEnterpriseStorageUsage.ascx.resx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/Code/Helpers/HostedSharePointEnterpriseSiteCollectionsHelper.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseBackupSiteCollection.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseBackupSiteCollection.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseBackupSiteCollection.ascx.designer.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseEditSiteCollection.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseEditSiteCollection.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseEditSiteCollection.ascx.designer.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseRestoreSiteCollection.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseRestoreSiteCollection.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseRestoreSiteCollection.ascx.designer.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseSiteCollections.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseSiteCollections.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseSiteCollections.ascx.designer.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageSettings.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageSettings.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageSettings.ascx.designer.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageUsage.ascx create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageUsage.ascx.cs create mode 100644 WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/HostedSharePointEnterpriseStorageUsage.ascx.designer.cs diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/ESModule_ControlsHierarchy.config b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/ESModule_ControlsHierarchy.config index 7ed16940..f97bb492 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/ESModule_ControlsHierarchy.config +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/ESModule_ControlsHierarchy.config @@ -98,11 +98,22 @@ - + + + + + + + + + + + + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Modules.config b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Modules.config index ecbdc1f6..1bd0de2e 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Modules.config +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Modules.config @@ -252,6 +252,16 @@ + + + + + + + + + + @@ -540,6 +550,13 @@ + + + + + + + diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Pages.config b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Pages.config index e10593c1..d695ed92 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Pages.config +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/App_Data/WebsitePanel_Pages.config @@ -175,6 +175,17 @@ + +