mirror of
https://github.com/jellyfin/jellyfin-plugin-reports.git
synced 2024-11-22 21:29:50 +00:00
Rename namespace to Jellyfin.Plugin.Reports
This commit is contained in:
parent
25673fa7d0
commit
aa13d55495
@ -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
|
@ -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"/>
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum HeaderActivitiesMetadata
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum HeaderMetadata
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ItemViewType
|
||||
{
|
@ -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
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportDisplayType
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportExportType
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportFieldType
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportHeaderIdType
|
||||
{
|
@ -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
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportIncludeItemTypes
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Common
|
||||
namespace Jellyfin.Plugin.Reports.Api.Common
|
||||
{
|
||||
public enum ReportViewType
|
||||
{
|
@ -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"/>
|
@ -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
|
@ -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>
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace JellyfinReports.Api.Model
|
||||
namespace Jellyfin.Plugin.Reports.Api.Model
|
||||
{
|
||||
|
||||
/// <summary> A report group. </summary>
|
@ -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
|
@ -1,4 +1,4 @@
|
||||
namespace JellyfinReports.Api.Model
|
||||
namespace Jellyfin.Plugin.Reports.Api.Model
|
||||
{
|
||||
/// <summary> A report item. </summary>
|
||||
public class ReportItem
|
@ -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>
|
@ -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
|
||||
{
|
@ -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
|
||||
{
|
@ -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"/>
|
@ -1,6 +1,6 @@
|
||||
using MediaBrowser.Model.Plugins;
|
||||
|
||||
namespace JellyfinReports.Configuration
|
||||
namespace Jellyfin.Plugin.Reports.Configuration
|
||||
{
|
||||
public class PluginConfiguration : BasePluginConfiguration
|
||||
{
|
@ -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" />
|
@ -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
|
||||
{
|
Loading…
Reference in New Issue
Block a user