mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-09-22 23:14:52 +00:00
Re-namespace some classes
This commit is contained in:
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using SabreTools.CommandLine;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.CommandLine.Inputs;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace RedumpTool.Features
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
using Xunit;
|
||||
|
||||
namespace SabreTools.RedumpLib.Test.Web
|
||||
namespace SabreTools.RedumpLib.Test.RedumpOrg
|
||||
{
|
||||
public class UrlBuilderTests
|
||||
{
|
||||
@@ -11,7 +11,7 @@ using System.Xml;
|
||||
using Newtonsoft.Json;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Data.Sections;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace SabreTools.RedumpLib
|
||||
{
|
||||
|
||||
@@ -2,8 +2,9 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
|
||||
namespace SabreTools.RedumpLib.Web
|
||||
namespace SabreTools.RedumpLib.RedumpOrg
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with disc pages
|
||||
@@ -2,7 +2,7 @@ using System;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
|
||||
namespace SabreTools.RedumpLib.Web
|
||||
namespace SabreTools.RedumpLib.RedumpOrg
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with packs
|
||||
@@ -10,8 +10,9 @@ using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
|
||||
namespace SabreTools.RedumpLib.Web
|
||||
namespace SabreTools.RedumpLib.RedumpOrg
|
||||
{
|
||||
public class RedumpClient
|
||||
{
|
||||
@@ -4,7 +4,7 @@ using SabreTools.RedumpLib.Data;
|
||||
|
||||
// TODO: Errors should validate number or number range (# or #-#)
|
||||
|
||||
namespace SabreTools.RedumpLib.Web
|
||||
namespace SabreTools.RedumpLib.RedumpOrg
|
||||
{
|
||||
/// <summary>
|
||||
/// URL builder helper
|
||||
@@ -128,7 +128,11 @@ namespace SabreTools.RedumpLib.Web
|
||||
sb.Append($"{subpath.ShortName()}/");
|
||||
break;
|
||||
|
||||
default: break;
|
||||
// WIP and null are invalid for a disc page
|
||||
case DiscSubpath.WIP:
|
||||
case null:
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return sb.ToString();
|
||||
@@ -1,7 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
|
||||
namespace SabreTools.RedumpLib.Web
|
||||
namespace SabreTools.RedumpLib.RedumpOrg
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with WIP queue
|
||||
@@ -1,7 +1,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
using SabreTools.RedumpLib.RedumpOrg;
|
||||
|
||||
namespace SabreTools.RedumpLib
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user