This commit is contained in:
kay.one 2013-02-23 12:35:26 -08:00
parent c35682376e
commit cf8be4bf8f
16 changed files with 20 additions and 21 deletions

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Common;
using NzbDrone.Core.RootFolders;

View File

@ -3,7 +3,7 @@ using System.Linq;
using Nancy;
using Nancy.Responses;
using Newtonsoft.Json;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
namespace NzbDrone.Api.ErrorManagement
{

View File

@ -1,7 +1,7 @@
using System.Linq;
using Nancy;
using Nancy.ErrorHandling;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
namespace NzbDrone.Api.ErrorManagement
{

View File

@ -2,7 +2,7 @@
using System.Linq;
using NLog;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
namespace NzbDrone.Api.ErrorManagement
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using Nancy;
using Newtonsoft.Json;
namespace NzbDrone.Api.Extentions
namespace NzbDrone.Api.Extensions
{
public class NancyJsonSerializer : ISerializer
{

View File

@ -4,7 +4,7 @@ using Nancy;
using Nancy.Responses;
using Newtonsoft.Json;
namespace NzbDrone.Api.Extentions
namespace NzbDrone.Api.Extensions
{
public static class JsonExtensions
{

View File

@ -2,7 +2,7 @@
using System.Linq;
using Nancy;
namespace NzbDrone.Api.Extentions
namespace NzbDrone.Api.Extensions
{
public class RootPathProvider : IRootPathProvider
{

View File

@ -1,9 +1,8 @@
using System.IO;
using System.Linq;
using System.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace NzbDrone.Api.Extentions
namespace NzbDrone.Api.Extensions
{
public static class Serializer
{

View File

@ -8,7 +8,7 @@ using Nancy.Bootstrappers.Autofac;
using Nancy.Conventions;
using Nancy.Diagnostics;
using NzbDrone.Api.ErrorManagement;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Common;
using NzbDrone.Core;
using NzbDrone.Core.Lifecycle;

View File

@ -111,8 +111,8 @@
<Compile Include="AutomapperBootstraper.cs" />
<Compile Include="ApiContainerExtensions.cs" />
<Compile Include="Directories\DirectoryModule.cs" />
<Compile Include="Extentions\NancyJsonSerializer.cs" />
<Compile Include="Extentions\Serializer.cs" />
<Compile Include="Extensions\NancyJsonSerializer.cs" />
<Compile Include="Extensions\Serializer.cs" />
<Compile Include="FrontendModule\IndexModule.cs" />
<Compile Include="FrontendModule\BootstrapModule.cs" />
<Compile Include="FrontendModule\LessService.cs" />
@ -120,7 +120,7 @@
<Compile Include="Resolvers\NextAiringResolver.cs" />
<Compile Include="Resolvers\NullableDatetimeToString.cs" />
<Compile Include="RootFolders\RootFolderModule.cs" />
<Compile Include="Extentions\RootPathProvider.cs" />
<Compile Include="Extensions\RootPathProvider.cs" />
<Compile Include="Series\SeriesResource.cs" />
<Compile Include="Series\SeriesModule.cs" />
<Compile Include="Series\SeriesLookupModule.cs" />
@ -136,7 +136,7 @@
<Compile Include="QualityProfiles\QualityProfilesModule.cs" />
<Compile Include="QualityType\QualityTypeModel.cs" />
<Compile Include="QualityType\QualityTypeModule.cs" />
<Compile Include="Extentions\RequestExtensions.cs" />
<Compile Include="Extensions\RequestExtensions.cs" />
<Compile Include="Resolvers\AllowedToQualitiesResolver.cs" />
<Compile Include="Resolvers\QualitiesToAllowedResolver.cs" />
<Compile Include="Resolvers\QualityTypesToIntResolver.cs" />

View File

@ -2,7 +2,7 @@
using System.Linq;
using AutoMapper;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Repository.Quality;
using NzbDrone.Api.QualityType;

View File

@ -2,7 +2,7 @@
using System.Linq;
using AutoMapper;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Api.QualityProfiles;
using NzbDrone.Core.Providers;

View File

@ -1,6 +1,6 @@
using System.Linq;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Repository;
using NzbDrone.Core.RootFolders;

View File

@ -1,6 +1,6 @@
using System.Linq;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Api.QualityType;
using NzbDrone.Core.Providers;

View File

@ -5,7 +5,7 @@ using System.Linq;
using AutoMapper;
using FluentValidation;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Common;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Jobs;

View File

@ -5,7 +5,7 @@ using System.Linq;
using AutoMapper;
using FluentValidation;
using Nancy;
using NzbDrone.Api.Extentions;
using NzbDrone.Api.Extensions;
using NzbDrone.Api.Series;
using NzbDrone.Common;
using NzbDrone.Core.Jobs;