diff --git a/FileSystemIDandChk.sln b/DiscImageChef.sln similarity index 76% rename from FileSystemIDandChk.sln rename to DiscImageChef.sln index b46a7aae..284a3c30 100644 --- a/FileSystemIDandChk.sln +++ b/DiscImageChef.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileSystemIDandChk", "FileSystemIDandChk\FileSystemIDandChk.csproj", "{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiscImageChef", "FileSystemIDandChk\DiscImageChef.csproj", "{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}" EndProject Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "Packages", "Packages.mdproj", "{8996EF59-09B9-4920-A3DE-2F8EA2EBBCFF}" EndProject @@ -19,8 +19,8 @@ Global {8996EF59-09B9-4920-A3DE-2F8EA2EBBCFF}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution - StartupItem = FileSystemIDandChk\FileSystemIDandChk.csproj - description = Filesystem identified and checker. + StartupItem = FileSystemIDandChk\DiscImageChef.csproj + description = The Disc Image Chef. version = 1.10 EndGlobalSection EndGlobal diff --git a/FileSystemIDandChk/ArrayFill.cs b/FileSystemIDandChk/ArrayFill.cs index c3394a14..c3ba54cc 100644 --- a/FileSystemIDandChk/ArrayFill.cs +++ b/FileSystemIDandChk/ArrayFill.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ArrayFill.cs @@ -30,7 +30,7 @@ Copyright (C) 2014 mykohsu //$Id$ using System; -namespace FileSystemIDandChk +namespace DiscImageChef { public static class ArrayHelpers { diff --git a/FileSystemIDandChk/AssemblyInfo.cs b/FileSystemIDandChk/AssemblyInfo.cs index a644ddc1..2f1e91a0 100644 --- a/FileSystemIDandChk/AssemblyInfo.cs +++ b/FileSystemIDandChk/AssemblyInfo.cs @@ -1,8 +1,8 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- -Filename : Swapping.cs +Filename : AssemblyInfo.cs Version : 1.0 Author(s) : Natalia Portillo @@ -41,7 +41,7 @@ using System.Reflection; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. -[assembly: AssemblyTitle("FileSystemIDandChk")] +[assembly: AssemblyTitle("DiscImageChef")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] diff --git a/FileSystemIDandChk/BigEndianBitConverter.cs b/FileSystemIDandChk/BigEndianBitConverter.cs index 4f961e2d..e834e6ec 100644 --- a/FileSystemIDandChk/BigEndianBitConverter.cs +++ b/FileSystemIDandChk/BigEndianBitConverter.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : BigEndianBitConverter.cs @@ -39,7 +39,7 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Linq; -namespace FileSystemIDandChk +namespace DiscImageChef { /// /// Converts base data types to an array of bytes, and an array of bytes to base diff --git a/FileSystemIDandChk/DateHandlers.cs b/FileSystemIDandChk/DateHandlers.cs index 9fa22eb2..8a8db44b 100644 --- a/FileSystemIDandChk/DateHandlers.cs +++ b/FileSystemIDandChk/DateHandlers.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : DateHandlers.cs @@ -38,7 +38,7 @@ Copyright (C) 2011-2014 Claunia.com using System; -namespace FileSystemIDandChk +namespace DiscImageChef { public static class DateHandlers { diff --git a/FileSystemIDandChk/FileSystemIDandChk.csproj b/FileSystemIDandChk/DiscImageChef.csproj similarity index 98% rename from FileSystemIDandChk/FileSystemIDandChk.csproj rename to FileSystemIDandChk/DiscImageChef.csproj index a9e3afe4..eb964b6b 100644 --- a/FileSystemIDandChk/FileSystemIDandChk.csproj +++ b/FileSystemIDandChk/DiscImageChef.csproj @@ -7,8 +7,8 @@ 2.0 {7A4B05BE-73C9-4F34-87FE-E80CCF1F732D} Exe - FileSystemIDandChk - FileSystemIDandChk + DiscImageChef + DiscImageChef v3.5 1.10 diff --git a/FileSystemIDandChk/EndianAwareBinaryReader.cs b/FileSystemIDandChk/EndianAwareBinaryReader.cs index 06de1a47..dce8b6be 100644 --- a/FileSystemIDandChk/EndianAwareBinaryReader.cs +++ b/FileSystemIDandChk/EndianAwareBinaryReader.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : EndianAwareBinaryReader.cs @@ -41,7 +41,7 @@ using System.IO; using System.Linq; using System.Text; -namespace FileSystemIDandChk +namespace DiscImageChef { public class EndianAwareBinaryReader : BinaryReader { diff --git a/FileSystemIDandChk/ImagePlugins/CDRWin.cs b/FileSystemIDandChk/ImagePlugins/CDRWin.cs index 62648e54..9bc87701 100644 --- a/FileSystemIDandChk/ImagePlugins/CDRWin.cs +++ b/FileSystemIDandChk/ImagePlugins/CDRWin.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : CDRWin.cs @@ -42,9 +42,9 @@ using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Collections.Generic; -using FileSystemIDandChk; +using DiscImageChef; -namespace FileSystemIDandChk.ImagePlugins +namespace DiscImageChef.ImagePlugins { class CDRWin : ImagePlugin { @@ -1048,7 +1048,7 @@ namespace FileSystemIDandChk.ImagePlugins if (MainClass.isDebug) Console.WriteLine("DEBUG (CDRWin plugin): Building offset map"); - partitions = new List(); + partitions = new List(); ulong byte_offset = 0; ulong sector_offset = 0; @@ -1064,7 +1064,7 @@ namespace FileSystemIDandChk.ImagePlugins if (discimage.tracks[i].sequence == 1 && i != 0) throw new ImageNotSupportedException("Unordered tracks"); - PartPlugins.Partition partition = new FileSystemIDandChk.PartPlugins.Partition(); + PartPlugins.Partition partition = new DiscImageChef.PartPlugins.Partition(); if (discimage.tracks[i].pregap > 0) { @@ -1096,7 +1096,7 @@ namespace FileSystemIDandChk.ImagePlugins } partitions.Add(partition); - partition = new FileSystemIDandChk.PartPlugins.Partition(); + partition = new DiscImageChef.PartPlugins.Partition(); } index_zero |= discimage.tracks[i].indexes.TryGetValue(0, out index_zero_offset); @@ -1134,7 +1134,7 @@ namespace FileSystemIDandChk.ImagePlugins } partitions.Add(partition); - partition = new FileSystemIDandChk.PartPlugins.Partition(); + partition = new DiscImageChef.PartPlugins.Partition(); } // Index 01 @@ -1166,14 +1166,14 @@ namespace FileSystemIDandChk.ImagePlugins } partitions.Add(partition); - partition = new FileSystemIDandChk.PartPlugins.Partition(); + partition = new DiscImageChef.PartPlugins.Partition(); } // Print offset map if (MainClass.isDebug) { Console.WriteLine("DEBUG (CDRWin plugin) printing partition map"); - foreach (FileSystemIDandChk.PartPlugins.Partition partition in partitions) + foreach (DiscImageChef.PartPlugins.Partition partition in partitions) { Console.WriteLine("DEBUG (CDRWin plugin): Partition sequence: {0}", partition.PartitionSequence); Console.WriteLine("DEBUG (CDRWin plugin): \tPartition name: {0}", partition.PartitionName); diff --git a/FileSystemIDandChk/ImagePlugins/DiskCopy42.cs b/FileSystemIDandChk/ImagePlugins/DiskCopy42.cs index ac922762..c5805af9 100644 --- a/FileSystemIDandChk/ImagePlugins/DiskCopy42.cs +++ b/FileSystemIDandChk/ImagePlugins/DiskCopy42.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : DiskCopy42.cs @@ -40,7 +40,7 @@ using System; using System.IO; using System.Collections.Generic; -namespace FileSystemIDandChk.ImagePlugins +namespace DiscImageChef.ImagePlugins { // Checked using several images and strings inside Apple's DiskImages.framework class DiskCopy42 : ImagePlugin diff --git a/FileSystemIDandChk/ImagePlugins/ImagePlugin.cs b/FileSystemIDandChk/ImagePlugins/ImagePlugin.cs index 9afd6b11..254b8018 100644 --- a/FileSystemIDandChk/ImagePlugins/ImagePlugin.cs +++ b/FileSystemIDandChk/ImagePlugins/ImagePlugin.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ImagePlugin.cs @@ -39,7 +39,7 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; -namespace FileSystemIDandChk.ImagePlugins +namespace DiscImageChef.ImagePlugins { /// /// Abstract class to implement disk image reading plugins. diff --git a/FileSystemIDandChk/ImagePlugins/TeleDisk.cs b/FileSystemIDandChk/ImagePlugins/TeleDisk.cs index e62f8c19..6d958d42 100644 --- a/FileSystemIDandChk/ImagePlugins/TeleDisk.cs +++ b/FileSystemIDandChk/ImagePlugins/TeleDisk.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : TeleDisk.cs @@ -42,7 +42,7 @@ using System.Collections.Generic; // Created following notes from Dave Dunfield // http://www.classiccmp.org/dunfield/img54306/td0notes.txt -namespace FileSystemIDandChk.ImagePlugins +namespace DiscImageChef.ImagePlugins { class TeleDisk : ImagePlugin { diff --git a/FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs b/FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs index fa744d36..e8501a74 100644 --- a/FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs +++ b/FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ZZZRawImage.cs @@ -40,7 +40,7 @@ using System; using System.IO; using System.Collections.Generic; -namespace FileSystemIDandChk.ImagePlugins +namespace DiscImageChef.ImagePlugins { // Checked using several images and strings inside Apple's DiskImages.framework class ZZZRawImage : ImagePlugin diff --git a/FileSystemIDandChk/Main.cs b/FileSystemIDandChk/Main.cs index 8771f5cb..360c1367 100644 --- a/FileSystemIDandChk/Main.cs +++ b/FileSystemIDandChk/Main.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Main.cs @@ -38,11 +38,11 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; -using FileSystemIDandChk.ImagePlugins; -using FileSystemIDandChk.PartPlugins; -using FileSystemIDandChk.Plugins; +using DiscImageChef.ImagePlugins; +using DiscImageChef.PartPlugins; +using DiscImageChef.Plugins; -namespace FileSystemIDandChk +namespace DiscImageChef { class MainClass { diff --git a/FileSystemIDandChk/PartPlugins/AppleMap.cs b/FileSystemIDandChk/PartPlugins/AppleMap.cs index 316f8984..34399136 100644 --- a/FileSystemIDandChk/PartPlugins/AppleMap.cs +++ b/FileSystemIDandChk/PartPlugins/AppleMap.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : AppleMap.cs @@ -39,11 +39,11 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; using System.Collections.Generic; -using FileSystemIDandChk; +using DiscImageChef; // Information about structures learnt from Inside Macintosh // Constants from image testing -namespace FileSystemIDandChk.PartPlugins +namespace DiscImageChef.PartPlugins { class AppleMap : PartPlugin { diff --git a/FileSystemIDandChk/PartPlugins/MBR.cs b/FileSystemIDandChk/PartPlugins/MBR.cs index fe8de6a7..d7d2ccc9 100644 --- a/FileSystemIDandChk/PartPlugins/MBR.cs +++ b/FileSystemIDandChk/PartPlugins/MBR.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : MBR.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; -using FileSystemIDandChk; +using DiscImageChef; // TODO: Support AAP, AST, SpeedStor and Ontrack extensions -namespace FileSystemIDandChk.PartPlugins +namespace DiscImageChef.PartPlugins { class MBR : PartPlugin { diff --git a/FileSystemIDandChk/PartPlugins/NeXT.cs b/FileSystemIDandChk/PartPlugins/NeXT.cs index 4af122be..4174f249 100644 --- a/FileSystemIDandChk/PartPlugins/NeXT.cs +++ b/FileSystemIDandChk/PartPlugins/NeXT.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : NeXT.cs @@ -39,10 +39,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information learnt from XNU source and testing against real disks -namespace FileSystemIDandChk.PartPlugins +namespace DiscImageChef.PartPlugins { class NeXTDisklabel : PartPlugin { diff --git a/FileSystemIDandChk/PartPlugins/PartPlugin.cs b/FileSystemIDandChk/PartPlugins/PartPlugin.cs index ac85d6eb..55cd8327 100644 --- a/FileSystemIDandChk/PartPlugins/PartPlugin.cs +++ b/FileSystemIDandChk/PartPlugins/PartPlugin.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : PartPlugin.cs @@ -39,7 +39,7 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; -namespace FileSystemIDandChk.PartPlugins +namespace DiscImageChef.PartPlugins { /// /// Abstract class to implement partitioning schemes interpreting plugins. diff --git a/FileSystemIDandChk/Plugins.cs b/FileSystemIDandChk/Plugins.cs index ecf11f2f..df837c90 100644 --- a/FileSystemIDandChk/Plugins.cs +++ b/FileSystemIDandChk/Plugins.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Plugins.cs @@ -39,11 +39,11 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Collections.Generic; using System.Reflection; -using FileSystemIDandChk.ImagePlugins; -using FileSystemIDandChk.PartPlugins; -using FileSystemIDandChk.Plugins; +using DiscImageChef.ImagePlugins; +using DiscImageChef.PartPlugins; +using DiscImageChef.Plugins; -namespace FileSystemIDandChk +namespace DiscImageChef { public class PluginBase { diff --git a/FileSystemIDandChk/Plugins/AppleHFS.cs b/FileSystemIDandChk/Plugins/AppleHFS.cs index 588f86bf..97448ece 100644 --- a/FileSystemIDandChk/Plugins/AppleHFS.cs +++ b/FileSystemIDandChk/Plugins/AppleHFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : AppleHFS.cs @@ -38,11 +38,11 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from Inside Macintosh // https://developer.apple.com/legacy/library/documentation/mac/pdf/Files/File_Manager.pdf -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class AppleHFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/AppleHFSPlus.cs b/FileSystemIDandChk/Plugins/AppleHFSPlus.cs index f5b7a5f6..9f5b3186 100644 --- a/FileSystemIDandChk/Plugins/AppleHFSPlus.cs +++ b/FileSystemIDandChk/Plugins/AppleHFSPlus.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : AppleHFSPlus.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from Apple TechNote 1150: https://developer.apple.com/legacy/library/technotes/tn/tn1150.html -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class AppleHFSPlus : Plugin { diff --git a/FileSystemIDandChk/Plugins/AppleMFS.cs b/FileSystemIDandChk/Plugins/AppleMFS.cs index 9565a177..7b117881 100644 --- a/FileSystemIDandChk/Plugins/AppleMFS.cs +++ b/FileSystemIDandChk/Plugins/AppleMFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : AppleMFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from Inside Macintosh -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class AppleMFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/BFS.cs b/FileSystemIDandChk/Plugins/BFS.cs index 993c7fd1..fa6aca4f 100644 --- a/FileSystemIDandChk/Plugins/BFS.cs +++ b/FileSystemIDandChk/Plugins/BFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : BFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from Practical Filesystem Design, ISBN 1-55860-497-9 -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class BeFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/FAT.cs b/FileSystemIDandChk/Plugins/FAT.cs index 94e54ae6..bb868f9f 100644 --- a/FileSystemIDandChk/Plugins/FAT.cs +++ b/FileSystemIDandChk/Plugins/FAT.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : FAT.cs @@ -38,11 +38,11 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // TODO: Implement detecting DOS bootable disks // TODO: Implement detecting Atari TOS bootable disks and printing corresponding fields -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class FAT : Plugin { diff --git a/FileSystemIDandChk/Plugins/FFS.cs b/FileSystemIDandChk/Plugins/FFS.cs index 95207cc5..b77a5bcd 100644 --- a/FileSystemIDandChk/Plugins/FFS.cs +++ b/FileSystemIDandChk/Plugins/FFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : FFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Using information from Linux kernel headers -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { public class FFSPlugin : Plugin { diff --git a/FileSystemIDandChk/Plugins/HPFS.cs b/FileSystemIDandChk/Plugins/HPFS.cs index b1169070..0714d433 100644 --- a/FileSystemIDandChk/Plugins/HPFS.cs +++ b/FileSystemIDandChk/Plugins/HPFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : HPFS.cs @@ -39,10 +39,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from an old unnamed document -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class HPFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/ISO9660.cs b/FileSystemIDandChk/Plugins/ISO9660.cs index 6cab35e5..25be0d24 100644 --- a/FileSystemIDandChk/Plugins/ISO9660.cs +++ b/FileSystemIDandChk/Plugins/ISO9660.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ISO9660.cs @@ -39,13 +39,13 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Globalization; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // This is coded following ECMA-119. // TODO: Differentiate ISO Level 1, 2, 3 and ISO 9660:1999 // TODO: Apple extensiones, requires XA or advance RR interpretation. // TODO: Needs a major rewrite -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class ISO9660Plugin : Plugin { diff --git a/FileSystemIDandChk/Plugins/LisaFS.cs b/FileSystemIDandChk/Plugins/LisaFS.cs index b5edf76c..6b792a14 100644 --- a/FileSystemIDandChk/Plugins/LisaFS.cs +++ b/FileSystemIDandChk/Plugins/LisaFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : LisaFS.cs @@ -38,12 +38,12 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; -using FileSystemIDandChk.ImagePlugins; +using DiscImageChef; +using DiscImageChef.ImagePlugins; // All information by Natalia Portillo // Variable names from Lisa API -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class LisaFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/MinixFS.cs b/FileSystemIDandChk/Plugins/MinixFS.cs index f1920994..10993acd 100644 --- a/FileSystemIDandChk/Plugins/MinixFS.cs +++ b/FileSystemIDandChk/Plugins/MinixFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : MinixFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from the Linux kernel -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class MinixFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/NTFS.cs b/FileSystemIDandChk/Plugins/NTFS.cs index 7d174188..eafb0aca 100644 --- a/FileSystemIDandChk/Plugins/NTFS.cs +++ b/FileSystemIDandChk/Plugins/NTFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : NTFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from Inside Windows NT -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class NTFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/ODS.cs b/FileSystemIDandChk/Plugins/ODS.cs index 7978fc6e..155b6b16 100644 --- a/FileSystemIDandChk/Plugins/ODS.cs +++ b/FileSystemIDandChk/Plugins/ODS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ODS.cs @@ -37,7 +37,7 @@ Copyright (C) 2011-2014 Claunia.com //$Id$ using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from VMS File System Internals by Kirby McCoy // ISBN: 1-55558-056-4 @@ -48,7 +48,7 @@ using FileSystemIDandChk; // There is an ODS with signature "DECFILES11A", yet to be seen // Time is a 64 bit unsigned integer, tenths of microseconds since 1858/11/17 00:00:00. // TODO: Implement checksum -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class ODS : Plugin { diff --git a/FileSystemIDandChk/Plugins/Opera.cs b/FileSystemIDandChk/Plugins/Opera.cs index 6a94622e..9c799eb4 100644 --- a/FileSystemIDandChk/Plugins/Opera.cs +++ b/FileSystemIDandChk/Plugins/Opera.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Opera.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class OperaFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/PCEngine.cs b/FileSystemIDandChk/Plugins/PCEngine.cs index 46cc52ac..a096bcb3 100644 --- a/FileSystemIDandChk/Plugins/PCEngine.cs +++ b/FileSystemIDandChk/Plugins/PCEngine.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : PCEngine.cs @@ -38,9 +38,9 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class PCEnginePlugin : Plugin { diff --git a/FileSystemIDandChk/Plugins/Plugin.cs b/FileSystemIDandChk/Plugins/Plugin.cs index 2b5bd215..b85c0d4d 100644 --- a/FileSystemIDandChk/Plugins/Plugin.cs +++ b/FileSystemIDandChk/Plugins/Plugin.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Plugin.cs @@ -38,7 +38,7 @@ Copyright (C) 2011-2014 Claunia.com using System; -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { /// /// Abstract class to implement filesystem plugins. diff --git a/FileSystemIDandChk/Plugins/SolarFS.cs b/FileSystemIDandChk/Plugins/SolarFS.cs index 09f7eecd..2b0af3c2 100644 --- a/FileSystemIDandChk/Plugins/SolarFS.cs +++ b/FileSystemIDandChk/Plugins/SolarFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : SolarFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Based on FAT's BPB, cannot find a FAT or directory -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class SolarFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/Symbian.cs b/FileSystemIDandChk/Plugins/Symbian.cs index a689950e..9f42c95f 100644 --- a/FileSystemIDandChk/Plugins/Symbian.cs +++ b/FileSystemIDandChk/Plugins/Symbian.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Symbian.cs @@ -39,14 +39,14 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.IO; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; using System.Collections.Generic; // Information from http://www.thoukydides.webspace.virginmedia.com/software/psifs/sis.html // TODO: Implement support for disc images /* -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class SymbianIS : Plugin { diff --git a/FileSystemIDandChk/Plugins/SysV.cs b/FileSystemIDandChk/Plugins/SysV.cs index 2407395f..b0901e94 100644 --- a/FileSystemIDandChk/Plugins/SysV.cs +++ b/FileSystemIDandChk/Plugins/SysV.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : SysV.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from the Linux kernel -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class SysVfs : Plugin { diff --git a/FileSystemIDandChk/Plugins/UNIXBFS.cs b/FileSystemIDandChk/Plugins/UNIXBFS.cs index b13e8ab1..54dd19e8 100644 --- a/FileSystemIDandChk/Plugins/UNIXBFS.cs +++ b/FileSystemIDandChk/Plugins/UNIXBFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : UNIXBFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from the Linux kernel -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class BFS : Plugin { diff --git a/FileSystemIDandChk/Plugins/ext2FS.cs b/FileSystemIDandChk/Plugins/ext2FS.cs index 0075a316..1cf6aa5a 100644 --- a/FileSystemIDandChk/Plugins/ext2FS.cs +++ b/FileSystemIDandChk/Plugins/ext2FS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : ext2FS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from the Linux kernel -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class ext2FS : Plugin { diff --git a/FileSystemIDandChk/Plugins/extFS.cs b/FileSystemIDandChk/Plugins/extFS.cs index 17b082c4..a4e58b79 100644 --- a/FileSystemIDandChk/Plugins/extFS.cs +++ b/FileSystemIDandChk/Plugins/extFS.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : extFS.cs @@ -38,10 +38,10 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -using FileSystemIDandChk; +using DiscImageChef; // Information from the Linux kernel -namespace FileSystemIDandChk.Plugins +namespace DiscImageChef.Plugins { class extFS : Plugin { diff --git a/FileSystemIDandChk/PrintHex.cs b/FileSystemIDandChk/PrintHex.cs index e8cbae30..fe98946a 100644 --- a/FileSystemIDandChk/PrintHex.cs +++ b/FileSystemIDandChk/PrintHex.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : PrintHex.cs @@ -37,7 +37,7 @@ Copyright (C) 2011-2014 Claunia.com //$Id$ using System; -namespace FileSystemIDandChk +namespace DiscImageChef { public static class PrintHex { diff --git a/FileSystemIDandChk/README.md b/FileSystemIDandChk/README.md index 9bc59eb9..801bacbd 100644 --- a/FileSystemIDandChk/README.md +++ b/FileSystemIDandChk/README.md @@ -1,5 +1,5 @@ -FileSystemIDandChk v1.10 -============= +DiscImageChef v1.10 +=================== Filesystem identifier and checker. @@ -8,7 +8,7 @@ Copyright © 2011-2014 Natalia Portillo Usage ===== -FileSystemIDandChk.exe +DiscImageChef.exe And read help. diff --git a/FileSystemIDandChk/StringHandlers.cs b/FileSystemIDandChk/StringHandlers.cs index e619cbd6..4305ca15 100644 --- a/FileSystemIDandChk/StringHandlers.cs +++ b/FileSystemIDandChk/StringHandlers.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : StringHandlers.cs @@ -39,7 +39,7 @@ Copyright (C) 2011-2014 Claunia.com using System; using System.Text; -namespace FileSystemIDandChk +namespace DiscImageChef { public static class StringHandlers { diff --git a/FileSystemIDandChk/Swapping.cs b/FileSystemIDandChk/Swapping.cs index 2b29bfd5..2487cd36 100644 --- a/FileSystemIDandChk/Swapping.cs +++ b/FileSystemIDandChk/Swapping.cs @@ -1,5 +1,5 @@ /*************************************************************************** -FileSystem identifier and checker +The Disc Image Chef ---------------------------------------------------------------------------- Filename : Swapping.cs @@ -38,7 +38,7 @@ Copyright (C) 2011-2014 Claunia.com using System; -namespace FileSystemIDandChk +namespace DiscImageChef { static class Swapping {