Obsoletes base pages - umbraco.BasePage, etc... which is superceded by Umbraco.Web.UI.Pages classes
This commit is contained in:
@@ -385,6 +385,9 @@
|
||||
<Compile Include="umbraco.presentation\MacroCacheContent.cs" />
|
||||
<Compile Include="umbraco.presentation\macroCacheRefresh.cs" />
|
||||
<Compile Include="umbraco.presentation\ScriptingMacroResult.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\ping.aspx.cs">
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\create\MacroPartialViewTasks.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\create\PartialViewTasks.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\developer\Macros\editMacro.aspx.cs">
|
||||
@@ -1379,13 +1382,6 @@
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\nodeFactory\UmbracoSiteMapProvider.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\ping.aspx.cs">
|
||||
<DependentUpon>ping.aspx</DependentUpon>
|
||||
<SubType>ASPXCodeBehind</SubType>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\ping.aspx.designer.cs">
|
||||
<DependentUpon>ping.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="umbraco.presentation\umbraco\plugins\tinymce3\GzipCompressor.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\plugins\tinymce3\GzipModule.cs" />
|
||||
<Compile Include="umbraco.presentation\umbraco\plugins\tinymce3\IModule.cs" />
|
||||
@@ -1987,9 +1983,6 @@
|
||||
<SubType>Form</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\members\EditMemberType.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\ping.aspx">
|
||||
<SubType>Form</SubType>
|
||||
</Content>
|
||||
<Content Include="umbraco.presentation\umbraco\publishStatus.aspx" />
|
||||
<Content Include="umbraco.presentation\umbraco\schemas\umbraco.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
|
||||
@@ -19,6 +19,7 @@ namespace umbraco.BasePages
|
||||
/// Restrict access to the page itself.
|
||||
/// The keep the page secure, the umbracoEnsuredPage class should be used instead
|
||||
/// </summary>
|
||||
[Obsolete("This class has been superceded by Umbraco.Web.UI.Pages.BasePage")]
|
||||
public class BasePage : System.Web.UI.Page
|
||||
{
|
||||
private User _user;
|
||||
|
||||
@@ -14,6 +14,7 @@ namespace umbraco.BasePages
|
||||
/// Renders the client side code necessary to interact with the Umbraco client side API.
|
||||
/// Each method returns an instance of this class so you can chain calls together.
|
||||
/// </summary>
|
||||
[Obsolete("This class has been superceded by Umbraco.Web.UI.Pages.ClientTools")]
|
||||
public sealed class ClientTools
|
||||
{
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@ namespace umbraco.BasePages
|
||||
/// <summary>
|
||||
/// UmbracoEnsuredPage is the standard protected page in the umbraco backend, and forces authentication.
|
||||
/// </summary>
|
||||
[Obsolete("This class has been superceded by Umbraco.Web.UI.Pages.UmbracoEnsuredPage")]
|
||||
public class UmbracoEnsuredPage : BasePage
|
||||
{
|
||||
public string CurrentApp { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user