Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Work to improve developer experience for upcoming Telerik Removal #4110

Merged
merged 5 commits into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<Compile Include="UI\WebControls\DnnToolBarButton.cs" />
<Compile Include="UI\WebControls\DnnToolBarDropDown.cs" />
<Compile Include="UI\WebControls\DnnToolBarSplitButton.cs" />
<Compile Include="UI\WebControls\Core Wrappers\DnnRadTab.cs" />
<Compile Include="UI\WebControls\DnnRadTab.cs" />
<Compile Include="UI\WebControls\DnnAsyncUpload.cs" />
<Compile Include="UI\WebControls\DnnBinaryImage.cs" />
<Compile Include="UI\WebControls\DnnCalendar.cs" />
Expand Down Expand Up @@ -308,6 +308,7 @@
<Analyzer Include="..\..\packages\StyleCop.Analyzers.1.1.118\analyzers\dotnet\cs\StyleCop.Analyzers.CodeFixes.dll" />
<Analyzer Include="..\..\packages\StyleCop.Analyzers.1.1.118\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
<ItemGroup />
<Import Project="Library.build" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{

namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnAjaxLoadingPanel : RadAjaxLoadingPanel
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnAjaxLoadingPanel : RadAjaxLoadingPanel
{

}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnAjaxPanel : RadAjaxPanel
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnAjaxPanel : RadAjaxPanel
{

}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnAsyncUpload : RadAsyncUpload
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnAsyncUpload : RadAsyncUpload
{

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
{
using System;

using Telerik.Web.UI;

public class DnnBinaryImage : RadBinaryImage
{}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnBinaryImage : RadBinaryImage
{

}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnCalendar : RadCalendar
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnCalendar : RadCalendar
{

}
}
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnCalendarDay : RadCalendarDay
{
public DnnCalendarDay()
{
}

public DnnCalendarDay(RadCalendar calendar)
: base(calendar)
{
}
}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnCalendarDay : RadCalendarDay
{
public DnnCalendarDay()
{
}

public DnnCalendarDay(RadCalendar calendar)
: base(calendar)
{
}
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnCaptcha : RadCaptcha
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnCaptcha : RadCaptcha
{

}
}
15 changes: 10 additions & 5 deletions DNN Platform/DotNetNuke.Web.Deprecated/UI/WebControls/DnnChart.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Web.UI;

public class DnnChart : RadChart
{}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnChart : RadChart
{

}
}
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
using System.Drawing;
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using System.Drawing;

using Telerik.Charting;

public class DnnChartAxisItem : ChartAxisItem
{
public DnnChartAxisItem()
{
}

public DnnChartAxisItem(string labelText)
: base(labelText)
{
}

public DnnChartAxisItem(string labelText, Color color)
: base(labelText, color)
{
}

public DnnChartAxisItem(string labelText, Color color, bool visible)
: base(labelText, color, visible)
{
}

public DnnChartAxisItem(string labelText, Color color, bool visible, IContainer container)
: base(labelText, color, visible, container)
{
}

public DnnChartAxisItem(IContainer container)
: base(container)
{
}
}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnChartAxisItem : ChartAxisItem
{
public DnnChartAxisItem()
{
}

public DnnChartAxisItem(string labelText)
: base(labelText)
{
}

public DnnChartAxisItem(string labelText, Color color)
: base(labelText, color)
{
}

public DnnChartAxisItem(string labelText, Color color, bool visible)
: base(labelText, color, visible)
{
}

public DnnChartAxisItem(string labelText, Color color, bool visible, IContainer container)
: base(labelText, color, visible, container)
{
}

public DnnChartAxisItem(IContainer container)
: base(container)
{
}
}
}
Original file line number Diff line number Diff line change
@@ -1,46 +1,49 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Web.UI.WebControls
{
using Telerik.Charting;
namespace DotNetNuke.Web.UI.WebControls
{
using System;

using Telerik.Charting;
using Telerik.Charting.Styles;

public class DnnChartSeries : ChartSeries
{
public DnnChartSeries()
{
}

public DnnChartSeries(string name)
: base(name)
{
}

public DnnChartSeries(string name, ChartSeriesType type)
: base(name, type)
{
}

public DnnChartSeries(string name, ChartSeriesType type, ChartSeriesCollection parent)
: base(name, type, parent)
{
}

public DnnChartSeries(string seriesName, ChartSeriesType chartSeriesType, ChartSeriesCollection parent, ChartYAxisType yAxisType, StyleSeries style)
: base(seriesName, chartSeriesType, parent, yAxisType, style)
{
}

public DnnChartSeries(string seriesName, ChartSeriesType chartSeriesType, ChartSeriesCollection parent, ChartYAxisType yAxisType, StyleSeries style, string dataYColumn, string dataXColumn,
string dataYColumn2, string dataXColumn2, string dataYColumn3, string dataYColumn4, string dataLabelsColumn)
: base(seriesName, chartSeriesType, parent, yAxisType, style, dataYColumn, dataXColumn, dataYColumn2, dataXColumn2, dataYColumn3, dataYColumn4, dataLabelsColumn)
{
}

public DnnChartSeries(ChartSeriesCollection parent)
: base(parent)
{
}
}
}
[Obsolete("Telerik support will be removed in DNN Platform 10.0.0. You will need to find an alternative solution")]
public class DnnChartSeries : ChartSeries
{
public DnnChartSeries()
{
}

public DnnChartSeries(string name)
: base(name)
{
}

public DnnChartSeries(string name, ChartSeriesType type)
: base(name, type)
{
}

public DnnChartSeries(string name, ChartSeriesType type, ChartSeriesCollection parent)
: base(name, type, parent)
{
}

public DnnChartSeries(string seriesName, ChartSeriesType chartSeriesType, ChartSeriesCollection parent, ChartYAxisType yAxisType, StyleSeries style)
: base(seriesName, chartSeriesType, parent, yAxisType, style)
{
}

public DnnChartSeries(string seriesName, ChartSeriesType chartSeriesType, ChartSeriesCollection parent, ChartYAxisType yAxisType, StyleSeries style, string dataYColumn, string dataXColumn,
string dataYColumn2, string dataXColumn2, string dataYColumn3, string dataYColumn4, string dataLabelsColumn)
: base(seriesName, chartSeriesType, parent, yAxisType, style, dataYColumn, dataXColumn, dataYColumn2, dataXColumn2, dataYColumn3, dataYColumn4, dataLabelsColumn)
{
}

public DnnChartSeries(ChartSeriesCollection parent)
: base(parent)
{
}
}
}
Loading