Rename namespace to Jellyfin.Plugin.Reports

This commit is contained in:
Claus Vium 2019-02-01 21:13:30 +01:00
parent 25673fa7d0
commit aa13d55495
28 changed files with 46 additions and 46 deletions

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JellyfinReports", "JellyfinReports\JellyfinReports.csproj", "{A2217228-D9FD-48E7-827A-B9302212FE38}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jellyfin.Plugin.Reports", "Jellyfin.Plugin.Reports\Jellyfin.Plugin.Reports.csproj", "{A2217228-D9FD-48E7-827A-B9302212FE38}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -3,12 +3,12 @@ using MediaBrowser.Model.Querying;
using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Controller.Library;
using JellyfinReports.Api.Common;
using JellyfinReports.Api.Data;
using JellyfinReports.Api.Model;
using System;
using Jellyfin.Plugin.Reports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Data;
using Jellyfin.Plugin.Reports.Api.Model;
namespace JellyfinReports.Api.Activities
namespace Jellyfin.Plugin.Reports.Api.Activities
{
/// <summary> A report activities builder. </summary>
/// <seealso cref="T:MediaBrowser.Api.Reports.ReportBuilderBase"/>

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum HeaderActivitiesMetadata
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum HeaderMetadata
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ItemViewType
{

View File

@ -7,10 +7,10 @@ using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using JellyfinReports.Api.Data;
using JellyfinReports.Api.Model;
using Jellyfin.Plugin.Reports.Api.Data;
using Jellyfin.Plugin.Reports.Api.Model;
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
/// <summary> A report builder base. </summary>
public abstract class ReportBuilderBase

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportDisplayType
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportExportType
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportFieldType
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportHeaderIdType
{

View File

@ -3,7 +3,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
/// <summary> A report helper. </summary>
public class ReportHelper

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportIncludeItemTypes
{

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportViewType
{

View File

@ -5,10 +5,10 @@ using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Entities;
using System.Collections.Generic;
using System.Linq;
using JellyfinReports.Api.Common;
using JellyfinReports.Api.Model;
using Jellyfin.Plugin.Reports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Model;
namespace JellyfinReports.Api.Data
namespace Jellyfin.Plugin.Reports.Api.Data
{
/// <summary> A report builder. </summary>
/// <seealso cref="T:MediaBrowser.Api.Reports.ReportBuilderBase"/>

View File

@ -1,10 +1,10 @@
using System.Linq;
using System.Text;
using JellyfinReports.Api.Common;
using JellyfinReports.Api.Data;
using JellyfinReports.Api.Model;
using Jellyfin.Plugin.Reports.Api.Model;
using Jellyfin.Plugin.Reports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Data;
namespace JellyfinReports.Api.Data
namespace Jellyfin.Plugin.Reports.Api.Data
{
/// <summary> A report export. </summary>
public class ReportExport

View File

@ -1,7 +1,7 @@
using System;
using JellyfinReports.Api.Model;
using Jellyfin.Plugin.Reports.Api.Model;
namespace JellyfinReports.Api.Data
namespace Jellyfin.Plugin.Reports.Api.Data
{
/// <summary> A report options. </summary>

View File

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
/// <summary> A report group. </summary>

View File

@ -1,6 +1,6 @@
using JellyfinReports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Common;
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
/// <summary> A report header. </summary>
public class ReportHeader

View File

@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
/// <summary> A report item. </summary>
public class ReportItem

View File

@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
/// <summary> Encapsulates the result of a report. </summary>

View File

@ -1,8 +1,8 @@
using System.Collections.Generic;
using JellyfinReports.Api.Common;
using System;
using Jellyfin.Plugin.Reports.Api.Common;
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
public class ReportRow
{

View File

@ -1,13 +1,13 @@
using System.Collections.Generic;
using MediaBrowser.Model.Services;
using JellyfinReports.Api.Common;
using JellyfinReports.Api.Model;
using System;
using System.Linq;
using Jellyfin.Plugin.Reports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Model;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Querying;
namespace JellyfinReports.Api
namespace Jellyfin.Plugin.Reports.Api
{
public interface IReportsDownload : IReportsQuery
{

View File

@ -6,17 +6,17 @@ using System.Threading.Tasks;
using System.Globalization;
using System.Linq;
using System;
using Jellyfin.Plugin.Reports.Api.Activities;
using Jellyfin.Plugin.Reports.Api.Common;
using Jellyfin.Plugin.Reports.Api.Data;
using Jellyfin.Plugin.Reports.Api.Model;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Activity;
using MediaBrowser.Model.Globalization;
using JellyfinReports.Api.Common;
using JellyfinReports.Api.Data;
using JellyfinReports.Api.Model;
using JellyfinReports.Api.Activities;
using MediaBrowser.Model.Services;
using MediaBrowser.Controller.Net;
namespace JellyfinReports.Api
namespace Jellyfin.Plugin.Reports.Api
{
/// <summary> The reports service. </summary>
/// <seealso cref="T:MediaBrowser.Api.BaseApiService"/>

View File

@ -1,6 +1,6 @@
using MediaBrowser.Model.Plugins;
namespace JellyfinReports.Configuration
namespace Jellyfin.Plugin.Reports.Configuration
{
public class PluginConfiguration : BasePluginConfiguration
{

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <TargetFrameworks>netstandard2.0;</TargetFrameworks> <AssemblyVersion>10.1.0.0</AssemblyVersion> <FileVersion>10.1.0.0</FileVersion> <RootNamespace>JellyfinReports</RootNamespace> </PropertyGroup>
<PropertyGroup> <TargetFrameworks>netstandard2.0;</TargetFrameworks> <AssemblyVersion>10.1.0.0</AssemblyVersion> <FileVersion>10.1.0.0</FileVersion> <RootNamespace>Jellyfin.Plugin.Reports</RootNamespace> </PropertyGroup>
<ItemGroup>
<None Remove="Web\reports.html" />

View File

@ -1,12 +1,12 @@
using System;
using System.Collections.Generic;
using JellyfinReports.Configuration;
using Jellyfin.Plugin.Reports.Configuration;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Plugins;
using MediaBrowser.Model.Plugins;
using MediaBrowser.Model.Serialization;
namespace JellyfinReports
namespace Jellyfin.Plugin.Reports
{
public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages
{