REFACTOR: Redundant class or interface specification in base types list.

This commit is contained in:
2017-12-21 16:27:09 +00:00
parent 7553983bd8
commit ff08e93144
65 changed files with 135 additions and 110 deletions

View File

@@ -38,7 +38,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
/// <summary> /// <summary>
/// Solves a symbolic link. /// Solves a symbolic link.

View File

@@ -37,7 +37,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
public override Errno GetAttributes(string path, ref FileAttributes attributes) public override Errno GetAttributes(string path, ref FileAttributes attributes)
{ {

View File

@@ -39,7 +39,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct Vtoc struct Vtoc

View File

@@ -37,7 +37,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
/// <summary> /// <summary>
/// Mounts an Apple DOS filesystem /// Mounts an Apple DOS filesystem

View File

@@ -35,7 +35,7 @@ using System.Collections.Generic;
namespace DiscImageChef.Filesystems.AppleDOS namespace DiscImageChef.Filesystems.AppleDOS
{ {
public partial class AppleDOS : Filesystem public partial class AppleDOS
{ {
/// <summary> /// <summary>
/// Lists all extended attributes, alternate data streams and forks of the given file. /// Lists all extended attributes, alternate data streams and forks of the given file.

View File

@@ -33,7 +33,7 @@
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
const ushort MFS_MAGIC = 0xD2D7; const ushort MFS_MAGIC = 0xD2D7;
// "LK" // "LK"

View File

@@ -38,7 +38,7 @@ using DiscImageChef.Console;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
public override Errno ReadDir(string path, ref List<string> contents) public override Errno ReadDir(string path, ref List<string> contents)
{ {

View File

@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock) public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
{ {

View File

@@ -39,7 +39,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -35,7 +35,7 @@ using System;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
/// <summary> /// <summary>
/// Master Directory Block, should be at offset 0x0400 bytes in volume /// Master Directory Block, should be at offset 0x0400 bytes in volume

View File

@@ -37,7 +37,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
public override Errno Mount(bool debug) public override Errno Mount(bool debug)
{ {

View File

@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
namespace DiscImageChef.Filesystems.AppleMFS namespace DiscImageChef.Filesystems.AppleMFS
{ {
// Information from Inside Macintosh Volume II // Information from Inside Macintosh Volume II
public partial class AppleMFS : Filesystem public partial class AppleMFS
{ {
public override Errno ListXAttr(string path, ref List<string> xattrs) public override Errno ListXAttr(string path, ref List<string> xattrs)
{ {

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
/// <summary> /// <summary>
/// Enumerates the format identification byte used by CP/M-86 /// Enumerates the format identification byte used by CP/M-86

View File

@@ -38,7 +38,7 @@ using System.Xml.Serialization;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
/// <summary> /// <summary>
/// Loads all the known CP/M disk definitions from an XML stored as an embedded resource. /// Loads all the known CP/M disk definitions from an XML stored as an embedded resource.

View File

@@ -37,7 +37,7 @@ using System.Text;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
public override Errno ReadDir(string path, ref List<string> contents) public override Errno ReadDir(string path, ref List<string> contents)
{ {

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
public override Errno GetAttributes(string path, ref FileAttributes attributes) public override Errno GetAttributes(string path, ref FileAttributes attributes)
{ {

View File

@@ -42,7 +42,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
/// <summary> /// <summary>
/// Most of the times this structure is hard wired or generated by CP/M, not stored on disk /// Most of the times this structure is hard wired or generated by CP/M, not stored on disk

View File

@@ -43,7 +43,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
public override Errno Mount() public override Errno Mount()
{ {

View File

@@ -35,7 +35,7 @@ using System.Collections.Generic;
namespace DiscImageChef.Filesystems.CPM namespace DiscImageChef.Filesystems.CPM
{ {
partial class CPM : Filesystem partial class CPM
{ {
/// <summary> /// <summary>
/// Reads an extended attribute, alternate data stream or fork from the given file. /// Reads an extended attribute, alternate data stream or fork from the given file.

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort AAIP_Magic = 0x414C; // "AL" const ushort AAIP_Magic = 0x414C; // "AL"
const ushort AAIP_OldMagic = 0x4141; // "AA" const ushort AAIP_OldMagic = 0x4141; // "AA"

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort Amiga_Magic = 0x4153; // "AS" const ushort Amiga_Magic = 0x4153; // "AS"

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort AppleMagic = 0x4141; // "AA" const ushort AppleMagic = 0x4141; // "AA"
const ushort AppleMagicOld = 0x4241; // "BA" const ushort AppleMagicOld = 0x4241; // "BA"

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
readonly string CdiMagic = "CD-I "; readonly string CdiMagic = "CD-I ";

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort ElToritoMagic = 0xAA55; const ushort ElToritoMagic = 0xAA55;
const int ElToritoEntrySize = 32; const int ElToritoEntrySize = 32;

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
readonly string HighSierraMagic = "CDROM"; readonly string HighSierraMagic = "CDROM";
} }

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
readonly string IsoMagic = "CD001"; readonly string IsoMagic = "CD001";

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort RRIP_Magic = 0x5252; // "RR" const ushort RRIP_Magic = 0x5252; // "RR"
const ushort RRIP_PosixAttributes = 0x5058; // "PX" const ushort RRIP_PosixAttributes = 0x5058; // "PX"

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort SUSP_Continuation = 0x4345; // "CE" const ushort SUSP_Continuation = 0x4345; // "CE"
const ushort SUSP_Padding = 0x5044; // "PD" const ushort SUSP_Padding = 0x5044; // "PD"

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ushort XaMagic = 0x5841; // "XA" const ushort XaMagic = 0x5841; // "XA"

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
const ulong ziso_header_magic = 0x37E45396C9DBD607; const ulong ziso_header_magic = 0x37E45396C9DBD607;
const ulong ziso_header_cigam = 0x07D6DBC99653E437; const ulong ziso_header_cigam = 0x07D6DBC99653E437;

View File

@@ -34,7 +34,7 @@ using System.Collections.Generic;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override Errno ReadLink(string path, ref string dest) public override Errno ReadLink(string path, ref string dest)
{ {

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock) public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
{ {

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override Errno GetAttributes(string path, ref FileAttributes attributes) public override Errno GetAttributes(string path, ref FileAttributes attributes)
{ {

View File

@@ -43,7 +43,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct AmigaEntry struct AmigaEntry

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
// Little-endian // Little-endian
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]

View File

@@ -36,7 +36,7 @@ using System.Text;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct FileStructureVolumeDescriptor struct FileStructureVolumeDescriptor

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
struct DecodedVolumeDescriptor struct DecodedVolumeDescriptor
{ {

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct ElToritoBootRecord struct ElToritoBootRecord

View File

@@ -36,7 +36,7 @@ using System.Text;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct HighSierraPrimaryVolumeDescriptor struct HighSierraPrimaryVolumeDescriptor

View File

@@ -36,7 +36,7 @@ using System.Text;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct PrimaryVolumeDescriptor struct PrimaryVolumeDescriptor

View File

@@ -35,7 +35,7 @@ using System.Text;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
static DecodedVolumeDescriptor DecodeJolietDescriptor(PrimaryVolumeDescriptor jolietvd) static DecodedVolumeDescriptor DecodeJolietDescriptor(PrimaryVolumeDescriptor jolietvd)
{ {

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct PosixAttributes struct PosixAttributes

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct ContinuationArea struct ContinuationArea

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
// Big-endian // Big-endian
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]

View File

@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
struct ZisofsHeader struct ZisofsHeader

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override Errno Mount() public override Errno Mount()
{ {

View File

@@ -34,7 +34,7 @@ using System.Collections.Generic;
namespace DiscImageChef.Filesystems.ISO9660 namespace DiscImageChef.Filesystems.ISO9660
{ {
public partial class ISO9660 : Filesystem public partial class ISO9660
{ {
public override Errno ListXAttr(string path, ref List<string> xattrs) public override Errno ListXAttr(string path, ref List<string> xattrs)
{ {

View File

@@ -32,7 +32,7 @@
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
/// <summary> /// <summary>
/// Lisa FS v1, from Lisa OS 1.0 (Workshop or Office) /// Lisa FS v1, from Lisa OS 1.0 (Workshop or Office)

View File

@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
/// <summary> /// <summary>
/// Solves a symbolic link. /// Solves a symbolic link.

View File

@@ -37,7 +37,7 @@ using DiscImageChef.DiscImages;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock) public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
{ {

View File

@@ -37,7 +37,7 @@ using DiscImageChef.DiscImages;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
public override Errno GetAttributes(string path, ref FileAttributes attributes) public override Errno GetAttributes(string path, ref FileAttributes attributes)
{ {

View File

@@ -40,7 +40,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -34,7 +34,7 @@ using System;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
/// <summary> /// <summary>
/// The MDDF is the most import block on a Lisa FS volume. /// The MDDF is the most import block on a Lisa FS volume.

View File

@@ -39,7 +39,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
/// <summary> /// <summary>
/// Mounts an Apple Lisa filesystem /// Mounts an Apple Lisa filesystem

View File

@@ -38,7 +38,7 @@ using DiscImageChef.Decoders;
namespace DiscImageChef.Filesystems.LisaFS namespace DiscImageChef.Filesystems.LisaFS
{ {
public partial class LisaFS : Filesystem public partial class LisaFS
{ {
/// <summary> /// <summary>
/// Lists all extended attributes, alternate data streams and forks of the given file. /// Lists all extended attributes, alternate data streams and forks of the given file.

View File

@@ -33,7 +33,7 @@
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
enum PascalFileKind : short enum PascalFileKind : short
{ {

View File

@@ -37,7 +37,7 @@ using System.Linq;
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
public override Errno ReadDir(string path, ref List<string> contents) public override Errno ReadDir(string path, ref List<string> contents)
{ {

View File

@@ -36,7 +36,7 @@ using System.Linq;
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock) public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
{ {

View File

@@ -39,7 +39,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
public override bool Identify(ImagePlugin imagePlugin, Partition partition) public override bool Identify(ImagePlugin imagePlugin, Partition partition)
{ {

View File

@@ -33,7 +33,7 @@
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
struct PascalVolumeEntry struct PascalVolumeEntry
{ {

View File

@@ -37,7 +37,7 @@ using Schemas;
namespace DiscImageChef.Filesystems.UCSDPascal namespace DiscImageChef.Filesystems.UCSDPascal
{ {
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure // Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
public partial class PascalPlugin : Filesystem public partial class PascalPlugin
{ {
public override Errno Mount() public override Errno Mount()
{ {

View File

@@ -1,25 +1,26 @@
@font-face { @font-face
{
font-family: 'VGAsquarePx'; font-family: 'VGAsquarePx';
src: url(int10h.org/vga_squarepx.eot); src: url(int10h.org/vga_squarepx.eot);
src: url(int10h.org/vga_squarepx.eot?#iefix) format('embedded-opentype'), src: url(int10h.org/vga_squarepx.eot?#iefix) format('embedded-opentype'),
url(int10h.org/vga_squarepx.woff2) format('woff2'), url(int10h.org/vga_squarepx.woff2) format('woff2'),
url(int10h.org/vga_squarepx.woff) format('woff'), url(int10h.org/vga_squarepx.woff) format('woff'),
url(int10h.org/vga_squarepx.ttf) format('truetype'); url(int10h.org/vga_squarepx.ttf) format('truetype');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
/* define a black "stipple" background with DOS font */ /* define a black "stipple" background with DOS font */
body { body
background: {
radial-gradient(black 15%, transparent 16%) 0 0, background: radial-gradient(black 15%, transparent 16%) 0 0,
radial-gradient(black 15%, transparent 16%) 8px 8px, radial-gradient(black 15%, transparent 16%) 8px 8px,
radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 0 1px, radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 0 1px,
radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 8px 9px; radial-gradient(rgba(255, 255, 255, .1) 15%, transparent 20%) 8px 9px;
background-color: #282828; background-color: #282828;
background-size: 16px 16px; background-size: 16px 16px;
color: #aaa; color: #AAAAAA;
font-family: 'VGAsquarePx', serif; font-family: 'VGAsquarePx', serif;
font-size: 20pt; font-size: 20pt;
margin: 0; margin: 0;
@@ -27,18 +28,21 @@ body {
/* links are cyan, hover is bright yellow */ /* links are cyan, hover is bright yellow */
a { a
color: #0aa; {
color: #00AAAA;
text-decoration: none; text-decoration: none;
} }
a:hover { color: #ff5; } a:hover
{ color: #FFFF55; }
/* headings and bold text are bright white */ /* headings and bold text are bright white */
h1, h2, h3, h4, h1, h2, h3, h4,
b, strong { b, strong
color: #fff; {
color: #FFFFFF;
font-size: 1em; font-size: 1em;
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
@@ -47,14 +51,16 @@ b, strong {
/* italic text is green */ /* italic text is green */
em, i { em, i
color: #0a0; {
color: #00AA00;
font-style: normal; font-style: normal;
} }
/* define content areas */ /* define content areas */
header, main, footer { header, main, footer
{
margin: 0 auto; margin: 0 auto;
padding: 1em 0; padding: 1em 0;
max-width: 800px; max-width: 800px;
@@ -62,71 +68,90 @@ header, main, footer {
/* use black on cyan text for header */ /* use black on cyan text for header */
header { header
background-color: #0aa; {
color: #000; background-color: #00AAAA;
color: #000000;
} }
/* insert the "April 1st" text */ /* insert the "April 1st" text */
header > h1::before { content: "Today is April 1, 2017!"; } header > h1::before
{ content: "Today is April 1, 2017!"; }
header > h1 img { header > h1 img
{
display: block; display: block;
width: 300px; width: 300px;
} }
header > form { } header > form
{ }
header > form fieldset { border: none; } header > form fieldset
{ border: none; }
/* use black on gray for navigation */ /* use black on gray for navigation */
nav { nav
background-color: #aaa; {
color: #000; background-color: #AAAAAA;
color: #000000;
} }
nav a { color: #000; } nav a
{ color: #000000; }
nav img { display: none; } nav img
{ display: none; }
nav span { } nav span
{ }
nav > ul { nav > ul
{
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
text-align: center; text-align: center;
} }
nav > ul li { nav > ul li
{
display: inline; display: inline;
margin: 0 .5em; margin: 0 .5em;
} }
/* use white on blue for main text */ /* use white on blue for main text */
main { main
background-color: #00a; {
color: #aaa; background-color: #0000AA;
color: #AAAAAA;
} }
main > nav { } main > nav
{ }
main > nav li::before { content: ">"; } main > nav li::before
{ content: ">"; }
main > section { } main > section
{ }
main div.third img { display: block; } main div.third img
{ display: block; }
/* use black on brown text for footer */ /* use black on brown text for footer */
footer { footer
background-color: #a50; {
color: #000; background-color: #AA5500;
color: #000000;
} }
footer > nav { } footer > nav
{ }
footer > section { } footer > section
{ }