Skip to content

Commit

Permalink
Rename namespace to Jellyfin.Plugin.Reports
Browse files Browse the repository at this point in the history
  • Loading branch information
cvium committed Feb 1, 2019
1 parent 25673fa commit aa13d55
Show file tree
Hide file tree
Showing 28 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion JellyfinReports.sln → Jellyfin.Plugin.Reports.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
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"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum HeaderActivitiesMetadata
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum HeaderMetadata
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ItemViewType
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportDisplayType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportExportType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportFieldType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportHeaderIdType
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportIncludeItemTypes
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Common
namespace Jellyfin.Plugin.Reports.Api.Common
{
public enum ReportViewType
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
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"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{

/// <summary> A report group. </summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JellyfinReports.Api.Model
namespace Jellyfin.Plugin.Reports.Api.Model
{
/// <summary> A report item. </summary>
public class ReportItem
Expand Down
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
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"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MediaBrowser.Model.Plugins;

namespace JellyfinReports.Configuration
namespace Jellyfin.Plugin.Reports.Configuration
{
public class PluginConfiguration : BasePluginConfiguration
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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" />
Expand Down
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit aa13d55

Please sign in to comment.