mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Redundant class or interface specification in base types list.
This commit is contained in:
@@ -38,7 +38,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
/// <summary>
|
||||
/// Solves a symbolic link.
|
||||
|
||||
@@ -37,7 +37,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
||||
{
|
||||
|
||||
@@ -39,7 +39,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct Vtoc
|
||||
|
||||
@@ -37,7 +37,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
/// <summary>
|
||||
/// Mounts an Apple DOS filesystem
|
||||
|
||||
@@ -35,7 +35,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace DiscImageChef.Filesystems.AppleDOS
|
||||
{
|
||||
public partial class AppleDOS : Filesystem
|
||||
public partial class AppleDOS
|
||||
{
|
||||
/// <summary>
|
||||
/// Lists all extended attributes, alternate data streams and forks of the given file.
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// Information from Inside Macintosh Volume II
|
||||
public partial class AppleMFS : Filesystem
|
||||
public partial class AppleMFS
|
||||
{
|
||||
const ushort MFS_MAGIC = 0xD2D7;
|
||||
// "LK"
|
||||
|
||||
@@ -38,7 +38,7 @@ using DiscImageChef.Console;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -39,7 +39,7 @@ using Schemas;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// Information from Inside Macintosh Volume II
|
||||
public partial class AppleMFS : Filesystem
|
||||
public partial class AppleMFS
|
||||
{
|
||||
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
|
||||
@@ -35,7 +35,7 @@ using System;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// Information from Inside Macintosh Volume II
|
||||
public partial class AppleMFS : Filesystem
|
||||
public partial class AppleMFS
|
||||
{
|
||||
/// <summary>
|
||||
/// Master Directory Block, should be at offset 0x0400 bytes in volume
|
||||
|
||||
@@ -37,7 +37,7 @@ using Schemas;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// Information from Inside Macintosh Volume II
|
||||
public partial class AppleMFS : Filesystem
|
||||
public partial class AppleMFS
|
||||
{
|
||||
public override Errno Mount(bool debug)
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
|
||||
namespace DiscImageChef.Filesystems.AppleMFS
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
/// <summary>
|
||||
/// Enumerates the format identification byte used by CP/M-86
|
||||
|
||||
@@ -38,7 +38,7 @@ using System.Xml.Serialization;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
/// <summary>
|
||||
/// Loads all the known CP/M disk definitions from an XML stored as an embedded resource.
|
||||
|
||||
@@ -37,7 +37,7 @@ using System.Text;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
public override Errno ReadDir(string path, ref List<string> contents)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
||||
{
|
||||
|
||||
@@ -42,7 +42,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
/// <summary>
|
||||
/// Most of the times this structure is hard wired or generated by CP/M, not stored on disk
|
||||
|
||||
@@ -43,7 +43,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
public override Errno Mount()
|
||||
{
|
||||
|
||||
@@ -35,7 +35,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace DiscImageChef.Filesystems.CPM
|
||||
{
|
||||
partial class CPM : Filesystem
|
||||
partial class CPM
|
||||
{
|
||||
/// <summary>
|
||||
/// Reads an extended attribute, alternate data stream or fork from the given file.
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort AAIP_Magic = 0x414C; // "AL"
|
||||
const ushort AAIP_OldMagic = 0x4141; // "AA"
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort Amiga_Magic = 0x4153; // "AS"
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort AppleMagic = 0x4141; // "AA"
|
||||
const ushort AppleMagicOld = 0x4241; // "BA"
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
readonly string CdiMagic = "CD-I ";
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort ElToritoMagic = 0xAA55;
|
||||
const int ElToritoEntrySize = 32;
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
readonly string HighSierraMagic = "CDROM";
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
readonly string IsoMagic = "CD001";
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort RRIP_Magic = 0x5252; // "RR"
|
||||
const ushort RRIP_PosixAttributes = 0x5058; // "PX"
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort SUSP_Continuation = 0x4345; // "CE"
|
||||
const ushort SUSP_Padding = 0x5044; // "PD"
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ushort XaMagic = 0x5841; // "XA"
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
const ulong ziso_header_magic = 0x37E45396C9DBD607;
|
||||
const ulong ziso_header_cigam = 0x07D6DBC99653E437;
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override Errno ReadLink(string path, ref string dest)
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
||||
{
|
||||
|
||||
@@ -43,7 +43,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct AmigaEntry
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
// Little-endian
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
|
||||
@@ -36,7 +36,7 @@ using System.Text;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct FileStructureVolumeDescriptor
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
struct DecodedVolumeDescriptor
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ElToritoBootRecord
|
||||
|
||||
@@ -36,7 +36,7 @@ using System.Text;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct HighSierraPrimaryVolumeDescriptor
|
||||
|
||||
@@ -36,7 +36,7 @@ using System.Text;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct PrimaryVolumeDescriptor
|
||||
|
||||
@@ -35,7 +35,7 @@ using System.Text;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
static DecodedVolumeDescriptor DecodeJolietDescriptor(PrimaryVolumeDescriptor jolietvd)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct PosixAttributes
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ContinuationArea
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
// Big-endian
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ZisofsHeader
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override Errno Mount()
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace DiscImageChef.Filesystems.ISO9660
|
||||
{
|
||||
public partial class ISO9660 : Filesystem
|
||||
public partial class ISO9660
|
||||
{
|
||||
public override Errno ListXAttr(string path, ref List<string> xattrs)
|
||||
{
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
/// <summary>
|
||||
/// Lisa FS v1, from Lisa OS 1.0 (Workshop or Office)
|
||||
|
||||
@@ -38,7 +38,7 @@ using DiscImageChef.DiscImages;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
/// <summary>
|
||||
/// Solves a symbolic link.
|
||||
|
||||
@@ -37,7 +37,7 @@ using DiscImageChef.DiscImages;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
public override Errno MapBlock(string path, long fileBlock, ref long deviceBlock)
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ using DiscImageChef.DiscImages;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
public override Errno GetAttributes(string path, ref FileAttributes attributes)
|
||||
{
|
||||
|
||||
@@ -40,7 +40,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
public override bool Identify(ImagePlugin imagePlugin, Partition partition)
|
||||
{
|
||||
|
||||
@@ -34,7 +34,7 @@ using System;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
/// <summary>
|
||||
/// The MDDF is the most import block on a Lisa FS volume.
|
||||
|
||||
@@ -39,7 +39,7 @@ using Schemas;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
/// <summary>
|
||||
/// Mounts an Apple Lisa filesystem
|
||||
|
||||
@@ -38,7 +38,7 @@ using DiscImageChef.Decoders;
|
||||
|
||||
namespace DiscImageChef.Filesystems.LisaFS
|
||||
{
|
||||
public partial class LisaFS : Filesystem
|
||||
public partial class LisaFS
|
||||
{
|
||||
/// <summary>
|
||||
/// Lists all extended attributes, alternate data streams and forks of the given file.
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
|
||||
public partial class PascalPlugin : Filesystem
|
||||
public partial class PascalPlugin
|
||||
{
|
||||
enum PascalFileKind : short
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ using System.Linq;
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -36,7 +36,7 @@ using System.Linq;
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -39,7 +39,7 @@ using Schemas;
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// 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)
|
||||
{
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// Information from Call-A.P.P.L.E. Pascal Disk Directory Structure
|
||||
public partial class PascalPlugin : Filesystem
|
||||
public partial class PascalPlugin
|
||||
{
|
||||
struct PascalVolumeEntry
|
||||
{
|
||||
|
||||
@@ -37,7 +37,7 @@ using Schemas;
|
||||
namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
{
|
||||
// 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()
|
||||
{
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
@font-face {
|
||||
@font-face
|
||||
{
|
||||
font-family: 'VGAsquarePx';
|
||||
src: url(int10h.org/vga_squarepx.eot);
|
||||
src: url(int10h.org/vga_squarepx.eot?#iefix) format('embedded-opentype'),
|
||||
@@ -11,15 +12,15 @@
|
||||
|
||||
/* define a black "stipple" background with DOS font */
|
||||
|
||||
body {
|
||||
background:
|
||||
radial-gradient(black 15%, transparent 16%) 0 0,
|
||||
body
|
||||
{
|
||||
background: radial-gradient(black 15%, transparent 16%) 0 0,
|
||||
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%) 8px 9px;
|
||||
background-color: #282828;
|
||||
background-size: 16px 16px;
|
||||
color: #aaa;
|
||||
color: #AAAAAA;
|
||||
font-family: 'VGAsquarePx', serif;
|
||||
font-size: 20pt;
|
||||
margin: 0;
|
||||
@@ -27,18 +28,21 @@ body {
|
||||
|
||||
/* links are cyan, hover is bright yellow */
|
||||
|
||||
a {
|
||||
color: #0aa;
|
||||
a
|
||||
{
|
||||
color: #00AAAA;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover { color: #ff5; }
|
||||
a:hover
|
||||
{ color: #FFFF55; }
|
||||
|
||||
/* headings and bold text are bright white */
|
||||
|
||||
h1, h2, h3, h4,
|
||||
b, strong {
|
||||
color: #fff;
|
||||
b, strong
|
||||
{
|
||||
color: #FFFFFF;
|
||||
font-size: 1em;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
@@ -47,14 +51,16 @@ b, strong {
|
||||
|
||||
/* italic text is green */
|
||||
|
||||
em, i {
|
||||
color: #0a0;
|
||||
em, i
|
||||
{
|
||||
color: #00AA00;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* define content areas */
|
||||
|
||||
header, main, footer {
|
||||
header, main, footer
|
||||
{
|
||||
margin: 0 auto;
|
||||
padding: 1em 0;
|
||||
max-width: 800px;
|
||||
@@ -62,71 +68,90 @@ header, main, footer {
|
||||
|
||||
/* use black on cyan text for header */
|
||||
|
||||
header {
|
||||
background-color: #0aa;
|
||||
color: #000;
|
||||
header
|
||||
{
|
||||
background-color: #00AAAA;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
header > form { }
|
||||
header > form
|
||||
{ }
|
||||
|
||||
header > form fieldset { border: none; }
|
||||
header > form fieldset
|
||||
{ border: none; }
|
||||
|
||||
/* use black on gray for navigation */
|
||||
|
||||
nav {
|
||||
background-color: #aaa;
|
||||
color: #000;
|
||||
nav
|
||||
{
|
||||
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;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav > ul li {
|
||||
nav > ul li
|
||||
{
|
||||
display: inline;
|
||||
margin: 0 .5em;
|
||||
}
|
||||
|
||||
/* use white on blue for main text */
|
||||
|
||||
main {
|
||||
background-color: #00a;
|
||||
color: #aaa;
|
||||
main
|
||||
{
|
||||
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 */
|
||||
|
||||
footer {
|
||||
background-color: #a50;
|
||||
color: #000;
|
||||
footer
|
||||
{
|
||||
background-color: #AA5500;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
footer > nav { }
|
||||
footer > nav
|
||||
{ }
|
||||
|
||||
footer > section { }
|
||||
footer > section
|
||||
{ }
|
||||
Reference in New Issue
Block a user