From 347fb6892eaf01923cd2de0c347d8a1da1c61288 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 16 Nov 2019 00:49:23 +0000 Subject: [PATCH] Remove edit and delete MMC FEATURES. --- .../Controllers/MmcFeaturesController.cs | 86 -- .../Admin/Views/MmcFeatures/Delete.cshtml | 791 ------------------ .../Areas/Admin/Views/MmcFeatures/Edit.cshtml | 669 --------------- .../Admin/Views/MmcFeatures/Index.cshtml | 2 - 4 files changed, 1548 deletions(-) delete mode 100644 DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml delete mode 100644 DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml diff --git a/DiscImageChef.Server/Areas/Admin/Controllers/MmcFeaturesController.cs b/DiscImageChef.Server/Areas/Admin/Controllers/MmcFeaturesController.cs index 4b3244f3..f3336278 100644 --- a/DiscImageChef.Server/Areas/Admin/Controllers/MmcFeaturesController.cs +++ b/DiscImageChef.Server/Areas/Admin/Controllers/MmcFeaturesController.cs @@ -1,4 +1,3 @@ -using System.Linq; using System.Threading.Tasks; using DiscImageChef.CommonTypes.Metadata; using DiscImageChef.Server.Models; @@ -35,90 +34,5 @@ namespace DiscImageChef.Server.Areas.Admin.Controllers return View(mmcFeatures); } - - // GET: Admin/MmcFeatures/Edit/5 - public async Task Edit(int? id) - { - if(id == null) - { - return NotFound(); - } - - MmcFeatures mmcFeatures = await _context.MmcFeatures.FindAsync(id); - - if(mmcFeatures == null) - { - return NotFound(); - } - - return View(mmcFeatures); - } - - // POST: Admin/MmcFeatures/Edit/5 - // To protect from overposting attacks, please enable the specific properties you want to bind to, for - // more details see http://go.microsoft.com/fwlink/?LinkId=317598. - [HttpPost, ValidateAntiForgeryToken] - public async Task Edit(int id, [Bind( - "Id,AACSVersion,AGIDs,BindingNonceBlocks,BlocksPerReadableUnit,BufferUnderrunFreeInDVD,BufferUnderrunFreeInSAO,BufferUnderrunFreeInTAO,CanAudioScan,CanEject,CanEraseSector,CanExpandBDRESpareArea,CanFormat,CanFormatBDREWithoutSpare,CanFormatCert,CanFormatFRF,CanFormatQCert,CanFormatRRM,CanGenerateBindingNonce,CanLoad,CanMuteSeparateChannels,CanOverwriteSAOTrack,CanOverwriteTAOTrack,CanPlayCDAudio,CanPseudoOverwriteBDR,CanReadAllDualR,CanReadAllDualRW,CanReadBD,CanReadBDR,CanReadBDRE1,CanReadBDRE2,CanReadBDROM,CanReadBluBCA,CanReadCD,CanReadCDMRW,CanReadCPRM_MKB,CanReadDDCD,CanReadDVD,CanReadDVDPlusMRW,CanReadDVDPlusR,CanReadDVDPlusRDL,CanReadDVDPlusRW,CanReadDVDPlusRWDL,CanReadDriveAACSCertificate,CanReadHDDVD,CanReadHDDVDR,CanReadHDDVDRAM,CanReadLeadInCDText,CanReadOldBDR,CanReadOldBDRE,CanReadOldBDROM,CanReadSpareAreaInformation,CanReportDriveSerial,CanReportMediaSerial,CanTestWriteDDCDR,CanTestWriteDVD,CanTestWriteInSAO,CanTestWriteInTAO,CanUpgradeFirmware,CanWriteBD,CanWriteBDR,CanWriteBDRE1,CanWriteBDRE2,CanWriteBusEncryptedBlocks,CanWriteCDMRW,CanWriteCDRW,CanWriteCDRWCAV,CanWriteCDSAO,CanWriteCDTAO,CanWriteCSSManagedDVD,CanWriteDDCDR,CanWriteDDCDRW,CanWriteDVDPlusMRW,CanWriteDVDPlusR,CanWriteDVDPlusRDL,CanWriteDVDPlusRW,CanWriteDVDPlusRWDL,CanWriteDVDR,CanWriteDVDRDL,CanWriteDVDRW,CanWriteHDDVDR,CanWriteHDDVDRAM,CanWriteOldBDR,CanWriteOldBDRE,CanWritePackedSubchannelInTAO,CanWriteRWSubchannelInSAO,CanWriteRWSubchannelInTAO,CanWriteRaw,CanWriteRawMultiSession,CanWriteRawSubchannelInTAO,ChangerIsSideChangeCapable,ChangerSlots,ChangerSupportsDiscPresent,CPRMVersion,CSSVersion,DBML,DVDMultiRead,EmbeddedChanger,ErrorRecoveryPage,FirmwareDate,LoadingMechanismType,Locked,LogicalBlockSize,MultiRead,PhysicalInterfaceStandardNumber,PreventJumper,SupportsAACS,SupportsBusEncryption,SupportsC2,SupportsCPRM,SupportsCSS,SupportsDAP,SupportsDeviceBusyEvent,SupportsHybridDiscs,SupportsModePage1Ch,SupportsOSSC,SupportsPWP,SupportsSWPP,SupportsSecurDisc,SupportsSeparateVolume,SupportsVCPS,SupportsWriteInhibitDCB,SupportsWriteProtectPAC,VolumeLevels,BinaryData")] - MmcFeatures mmcFeatures) - { - if(id != mmcFeatures.Id) - { - return NotFound(); - } - - if(ModelState.IsValid) - { - try - { - _context.Update(mmcFeatures); - await _context.SaveChangesAsync(); - } - catch(DbUpdateConcurrencyException) - { - if(!MmcFeaturesExists(mmcFeatures.Id)) - { - return NotFound(); - } - - throw; - } - - return RedirectToAction(nameof(Index)); - } - - return View(mmcFeatures); - } - - // GET: Admin/MmcFeatures/Delete/5 - public async Task Delete(int? id) - { - if(id == null) - { - return NotFound(); - } - - MmcFeatures mmcFeatures = await _context.MmcFeatures.FirstOrDefaultAsync(m => m.Id == id); - - if(mmcFeatures == null) - { - return NotFound(); - } - - return View(mmcFeatures); - } - - // POST: Admin/MmcFeatures/Delete/5 - [HttpPost, ActionName("Delete"), ValidateAntiForgeryToken] - public async Task DeleteConfirmed(int id) - { - MmcFeatures mmcFeatures = await _context.MmcFeatures.FindAsync(id); - _context.MmcFeatures.Remove(mmcFeatures); - await _context.SaveChangesAsync(); - - return RedirectToAction(nameof(Index)); - } - - bool MmcFeaturesExists(int id) => _context.MmcFeatures.Any(e => e.Id == id); } } \ No newline at end of file diff --git a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml b/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml deleted file mode 100644 index e5684c33..00000000 --- a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Delete.cshtml +++ /dev/null @@ -1,791 +0,0 @@ -@model DiscImageChef.CommonTypes.Metadata.MmcFeatures - -@{ - Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; - ViewBag.Title = "DiscImageChef"; -} -@{ - // /*************************************************************************** - // The Disc Image Chef - // ---------------------------------------------------------------------------- - // - // Filename : Delete.cshtml - // Author(s) : Natalia Portillo - // - // Component : DiscImageChef Server. - // - // --[ License ] -------------------------------------------------------------- - // - // This library is free software; you can redistribute it and/or modify - // it under the terms of the GNU Lesser General Public License as - // published by the Free Software Foundation; either version 2.1 of the - // License, or (at your option) any later version. - // - // This library is distributed in the hope that it will be useful, but - // WITHOUT ANY WARRANTY; without even the implied warranty of - // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - // Lesser General Public License for more details. - // - // You should have received a copy of the GNU Lesser General Public - // License along with this library; if not, see . - // - // ---------------------------------------------------------------------------- - // Copyright © 2011-2019 Natalia Portillo - // ****************************************************************************/ -} -

Are you sure you want to delete this?

-
-

MmcFeatures

-
-
-
- @Html.DisplayNameFor(model => model.AACSVersion) -
-
- @Html.DisplayFor(model => model.AACSVersion) -
-
- @Html.DisplayNameFor(model => model.AGIDs) -
-
- @Html.DisplayFor(model => model.AGIDs) -
-
- @Html.DisplayNameFor(model => model.BindingNonceBlocks) -
-
- @Html.DisplayFor(model => model.BindingNonceBlocks) -
-
- @Html.DisplayNameFor(model => model.BlocksPerReadableUnit) -
-
- @Html.DisplayFor(model => model.BlocksPerReadableUnit) -
-
- @Html.DisplayNameFor(model => model.BufferUnderrunFreeInDVD) -
-
- @Html.DisplayFor(model => model.BufferUnderrunFreeInDVD) -
-
- @Html.DisplayNameFor(model => model.BufferUnderrunFreeInSAO) -
-
- @Html.DisplayFor(model => model.BufferUnderrunFreeInSAO) -
-
- @Html.DisplayNameFor(model => model.BufferUnderrunFreeInTAO) -
-
- @Html.DisplayFor(model => model.BufferUnderrunFreeInTAO) -
-
- @Html.DisplayNameFor(model => model.CanAudioScan) -
-
- @Html.DisplayFor(model => model.CanAudioScan) -
-
- @Html.DisplayNameFor(model => model.CanEject) -
-
- @Html.DisplayFor(model => model.CanEject) -
-
- @Html.DisplayNameFor(model => model.CanEraseSector) -
-
- @Html.DisplayFor(model => model.CanEraseSector) -
-
- @Html.DisplayNameFor(model => model.CanExpandBDRESpareArea) -
-
- @Html.DisplayFor(model => model.CanExpandBDRESpareArea) -
-
- @Html.DisplayNameFor(model => model.CanFormat) -
-
- @Html.DisplayFor(model => model.CanFormat) -
-
- @Html.DisplayNameFor(model => model.CanFormatBDREWithoutSpare) -
-
- @Html.DisplayFor(model => model.CanFormatBDREWithoutSpare) -
-
- @Html.DisplayNameFor(model => model.CanFormatCert) -
-
- @Html.DisplayFor(model => model.CanFormatCert) -
-
- @Html.DisplayNameFor(model => model.CanFormatFRF) -
-
- @Html.DisplayFor(model => model.CanFormatFRF) -
-
- @Html.DisplayNameFor(model => model.CanFormatQCert) -
-
- @Html.DisplayFor(model => model.CanFormatQCert) -
-
- @Html.DisplayNameFor(model => model.CanFormatRRM) -
-
- @Html.DisplayFor(model => model.CanFormatRRM) -
-
- @Html.DisplayNameFor(model => model.CanGenerateBindingNonce) -
-
- @Html.DisplayFor(model => model.CanGenerateBindingNonce) -
-
- @Html.DisplayNameFor(model => model.CanLoad) -
-
- @Html.DisplayFor(model => model.CanLoad) -
-
- @Html.DisplayNameFor(model => model.CanMuteSeparateChannels) -
-
- @Html.DisplayFor(model => model.CanMuteSeparateChannels) -
-
- @Html.DisplayNameFor(model => model.CanOverwriteSAOTrack) -
-
- @Html.DisplayFor(model => model.CanOverwriteSAOTrack) -
-
- @Html.DisplayNameFor(model => model.CanOverwriteTAOTrack) -
-
- @Html.DisplayFor(model => model.CanOverwriteTAOTrack) -
-
- @Html.DisplayNameFor(model => model.CanPlayCDAudio) -
-
- @Html.DisplayFor(model => model.CanPlayCDAudio) -
-
- @Html.DisplayNameFor(model => model.CanPseudoOverwriteBDR) -
-
- @Html.DisplayFor(model => model.CanPseudoOverwriteBDR) -
-
- @Html.DisplayNameFor(model => model.CanReadAllDualR) -
-
- @Html.DisplayFor(model => model.CanReadAllDualR) -
-
- @Html.DisplayNameFor(model => model.CanReadAllDualRW) -
-
- @Html.DisplayFor(model => model.CanReadAllDualRW) -
-
- @Html.DisplayNameFor(model => model.CanReadBD) -
-
- @Html.DisplayFor(model => model.CanReadBD) -
-
- @Html.DisplayNameFor(model => model.CanReadBDR) -
-
- @Html.DisplayFor(model => model.CanReadBDR) -
-
- @Html.DisplayNameFor(model => model.CanReadBDRE1) -
-
- @Html.DisplayFor(model => model.CanReadBDRE1) -
-
- @Html.DisplayNameFor(model => model.CanReadBDRE2) -
-
- @Html.DisplayFor(model => model.CanReadBDRE2) -
-
- @Html.DisplayNameFor(model => model.CanReadBDROM) -
-
- @Html.DisplayFor(model => model.CanReadBDROM) -
-
- @Html.DisplayNameFor(model => model.CanReadBluBCA) -
-
- @Html.DisplayFor(model => model.CanReadBluBCA) -
-
- @Html.DisplayNameFor(model => model.CanReadCD) -
-
- @Html.DisplayFor(model => model.CanReadCD) -
-
- @Html.DisplayNameFor(model => model.CanReadCDMRW) -
-
- @Html.DisplayFor(model => model.CanReadCDMRW) -
-
- @Html.DisplayNameFor(model => model.CanReadCPRM_MKB) -
-
- @Html.DisplayFor(model => model.CanReadCPRM_MKB) -
-
- @Html.DisplayNameFor(model => model.CanReadDDCD) -
-
- @Html.DisplayFor(model => model.CanReadDDCD) -
-
- @Html.DisplayNameFor(model => model.CanReadDVD) -
-
- @Html.DisplayFor(model => model.CanReadDVD) -
-
- @Html.DisplayNameFor(model => model.CanReadDVDPlusMRW) -
-
- @Html.DisplayFor(model => model.CanReadDVDPlusMRW) -
-
- @Html.DisplayNameFor(model => model.CanReadDVDPlusR) -
-
- @Html.DisplayFor(model => model.CanReadDVDPlusR) -
-
- @Html.DisplayNameFor(model => model.CanReadDVDPlusRDL) -
-
- @Html.DisplayFor(model => model.CanReadDVDPlusRDL) -
-
- @Html.DisplayNameFor(model => model.CanReadDVDPlusRW) -
-
- @Html.DisplayFor(model => model.CanReadDVDPlusRW) -
-
- @Html.DisplayNameFor(model => model.CanReadDVDPlusRWDL) -
-
- @Html.DisplayFor(model => model.CanReadDVDPlusRWDL) -
-
- @Html.DisplayNameFor(model => model.CanReadDriveAACSCertificate) -
-
- @Html.DisplayFor(model => model.CanReadDriveAACSCertificate) -
-
- @Html.DisplayNameFor(model => model.CanReadHDDVD) -
-
- @Html.DisplayFor(model => model.CanReadHDDVD) -
-
- @Html.DisplayNameFor(model => model.CanReadHDDVDR) -
-
- @Html.DisplayFor(model => model.CanReadHDDVDR) -
-
- @Html.DisplayNameFor(model => model.CanReadHDDVDRAM) -
-
- @Html.DisplayFor(model => model.CanReadHDDVDRAM) -
-
- @Html.DisplayNameFor(model => model.CanReadLeadInCDText) -
-
- @Html.DisplayFor(model => model.CanReadLeadInCDText) -
-
- @Html.DisplayNameFor(model => model.CanReadOldBDR) -
-
- @Html.DisplayFor(model => model.CanReadOldBDR) -
-
- @Html.DisplayNameFor(model => model.CanReadOldBDRE) -
-
- @Html.DisplayFor(model => model.CanReadOldBDRE) -
-
- @Html.DisplayNameFor(model => model.CanReadOldBDROM) -
-
- @Html.DisplayFor(model => model.CanReadOldBDROM) -
-
- @Html.DisplayNameFor(model => model.CanReadSpareAreaInformation) -
-
- @Html.DisplayFor(model => model.CanReadSpareAreaInformation) -
-
- @Html.DisplayNameFor(model => model.CanReportDriveSerial) -
-
- @Html.DisplayFor(model => model.CanReportDriveSerial) -
-
- @Html.DisplayNameFor(model => model.CanReportMediaSerial) -
-
- @Html.DisplayFor(model => model.CanReportMediaSerial) -
-
- @Html.DisplayNameFor(model => model.CanTestWriteDDCDR) -
-
- @Html.DisplayFor(model => model.CanTestWriteDDCDR) -
-
- @Html.DisplayNameFor(model => model.CanTestWriteDVD) -
-
- @Html.DisplayFor(model => model.CanTestWriteDVD) -
-
- @Html.DisplayNameFor(model => model.CanTestWriteInSAO) -
-
- @Html.DisplayFor(model => model.CanTestWriteInSAO) -
-
- @Html.DisplayNameFor(model => model.CanTestWriteInTAO) -
-
- @Html.DisplayFor(model => model.CanTestWriteInTAO) -
-
- @Html.DisplayNameFor(model => model.CanUpgradeFirmware) -
-
- @Html.DisplayFor(model => model.CanUpgradeFirmware) -
-
- @Html.DisplayNameFor(model => model.CanWriteBD) -
-
- @Html.DisplayFor(model => model.CanWriteBD) -
-
- @Html.DisplayNameFor(model => model.CanWriteBDR) -
-
- @Html.DisplayFor(model => model.CanWriteBDR) -
-
- @Html.DisplayNameFor(model => model.CanWriteBDRE1) -
-
- @Html.DisplayFor(model => model.CanWriteBDRE1) -
-
- @Html.DisplayNameFor(model => model.CanWriteBDRE2) -
-
- @Html.DisplayFor(model => model.CanWriteBDRE2) -
-
- @Html.DisplayNameFor(model => model.CanWriteBusEncryptedBlocks) -
-
- @Html.DisplayFor(model => model.CanWriteBusEncryptedBlocks) -
-
- @Html.DisplayNameFor(model => model.CanWriteCDMRW) -
-
- @Html.DisplayFor(model => model.CanWriteCDMRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteCDRW) -
-
- @Html.DisplayFor(model => model.CanWriteCDRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteCDRWCAV) -
-
- @Html.DisplayFor(model => model.CanWriteCDRWCAV) -
-
- @Html.DisplayNameFor(model => model.CanWriteCDSAO) -
-
- @Html.DisplayFor(model => model.CanWriteCDSAO) -
-
- @Html.DisplayNameFor(model => model.CanWriteCDTAO) -
-
- @Html.DisplayFor(model => model.CanWriteCDTAO) -
-
- @Html.DisplayNameFor(model => model.CanWriteCSSManagedDVD) -
-
- @Html.DisplayFor(model => model.CanWriteCSSManagedDVD) -
-
- @Html.DisplayNameFor(model => model.CanWriteDDCDR) -
-
- @Html.DisplayFor(model => model.CanWriteDDCDR) -
-
- @Html.DisplayNameFor(model => model.CanWriteDDCDRW) -
-
- @Html.DisplayFor(model => model.CanWriteDDCDRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDPlusMRW) -
-
- @Html.DisplayFor(model => model.CanWriteDVDPlusMRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDPlusR) -
-
- @Html.DisplayFor(model => model.CanWriteDVDPlusR) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDPlusRDL) -
-
- @Html.DisplayFor(model => model.CanWriteDVDPlusRDL) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDPlusRW) -
-
- @Html.DisplayFor(model => model.CanWriteDVDPlusRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDPlusRWDL) -
-
- @Html.DisplayFor(model => model.CanWriteDVDPlusRWDL) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDR) -
-
- @Html.DisplayFor(model => model.CanWriteDVDR) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDRDL) -
-
- @Html.DisplayFor(model => model.CanWriteDVDRDL) -
-
- @Html.DisplayNameFor(model => model.CanWriteDVDRW) -
-
- @Html.DisplayFor(model => model.CanWriteDVDRW) -
-
- @Html.DisplayNameFor(model => model.CanWriteHDDVDR) -
-
- @Html.DisplayFor(model => model.CanWriteHDDVDR) -
-
- @Html.DisplayNameFor(model => model.CanWriteHDDVDRAM) -
-
- @Html.DisplayFor(model => model.CanWriteHDDVDRAM) -
-
- @Html.DisplayNameFor(model => model.CanWriteOldBDR) -
-
- @Html.DisplayFor(model => model.CanWriteOldBDR) -
-
- @Html.DisplayNameFor(model => model.CanWriteOldBDRE) -
-
- @Html.DisplayFor(model => model.CanWriteOldBDRE) -
-
- @Html.DisplayNameFor(model => model.CanWritePackedSubchannelInTAO) -
-
- @Html.DisplayFor(model => model.CanWritePackedSubchannelInTAO) -
-
- @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInSAO) -
-
- @Html.DisplayFor(model => model.CanWriteRWSubchannelInSAO) -
-
- @Html.DisplayNameFor(model => model.CanWriteRWSubchannelInTAO) -
-
- @Html.DisplayFor(model => model.CanWriteRWSubchannelInTAO) -
-
- @Html.DisplayNameFor(model => model.CanWriteRaw) -
-
- @Html.DisplayFor(model => model.CanWriteRaw) -
-
- @Html.DisplayNameFor(model => model.CanWriteRawMultiSession) -
-
- @Html.DisplayFor(model => model.CanWriteRawMultiSession) -
-
- @Html.DisplayNameFor(model => model.CanWriteRawSubchannelInTAO) -
-
- @Html.DisplayFor(model => model.CanWriteRawSubchannelInTAO) -
-
- @Html.DisplayNameFor(model => model.ChangerIsSideChangeCapable) -
-
- @Html.DisplayFor(model => model.ChangerIsSideChangeCapable) -
-
- @Html.DisplayNameFor(model => model.ChangerSlots) -
-
- @Html.DisplayFor(model => model.ChangerSlots) -
-
- @Html.DisplayNameFor(model => model.ChangerSupportsDiscPresent) -
-
- @Html.DisplayFor(model => model.ChangerSupportsDiscPresent) -
-
- @Html.DisplayNameFor(model => model.CPRMVersion) -
-
- @Html.DisplayFor(model => model.CPRMVersion) -
-
- @Html.DisplayNameFor(model => model.CSSVersion) -
-
- @Html.DisplayFor(model => model.CSSVersion) -
-
- @Html.DisplayNameFor(model => model.DBML) -
-
- @Html.DisplayFor(model => model.DBML) -
-
- @Html.DisplayNameFor(model => model.DVDMultiRead) -
-
- @Html.DisplayFor(model => model.DVDMultiRead) -
-
- @Html.DisplayNameFor(model => model.EmbeddedChanger) -
-
- @Html.DisplayFor(model => model.EmbeddedChanger) -
-
- @Html.DisplayNameFor(model => model.ErrorRecoveryPage) -
-
- @Html.DisplayFor(model => model.ErrorRecoveryPage) -
-
- @Html.DisplayNameFor(model => model.FirmwareDate) -
-
- @Html.DisplayFor(model => model.FirmwareDate) -
-
- @Html.DisplayNameFor(model => model.LoadingMechanismType) -
-
- @Html.DisplayFor(model => model.LoadingMechanismType) -
-
- @Html.DisplayNameFor(model => model.Locked) -
-
- @Html.DisplayFor(model => model.Locked) -
-
- @Html.DisplayNameFor(model => model.LogicalBlockSize) -
-
- @Html.DisplayFor(model => model.LogicalBlockSize) -
-
- @Html.DisplayNameFor(model => model.MultiRead) -
-
- @Html.DisplayFor(model => model.MultiRead) -
-
- @Html.DisplayNameFor(model => model.PhysicalInterfaceStandardNumber) -
-
- @Html.DisplayFor(model => model.PhysicalInterfaceStandardNumber) -
-
- @Html.DisplayNameFor(model => model.PreventJumper) -
-
- @Html.DisplayFor(model => model.PreventJumper) -
-
- @Html.DisplayNameFor(model => model.SupportsAACS) -
-
- @Html.DisplayFor(model => model.SupportsAACS) -
-
- @Html.DisplayNameFor(model => model.SupportsBusEncryption) -
-
- @Html.DisplayFor(model => model.SupportsBusEncryption) -
-
- @Html.DisplayNameFor(model => model.SupportsC2) -
-
- @Html.DisplayFor(model => model.SupportsC2) -
-
- @Html.DisplayNameFor(model => model.SupportsCPRM) -
-
- @Html.DisplayFor(model => model.SupportsCPRM) -
-
- @Html.DisplayNameFor(model => model.SupportsCSS) -
-
- @Html.DisplayFor(model => model.SupportsCSS) -
-
- @Html.DisplayNameFor(model => model.SupportsDAP) -
-
- @Html.DisplayFor(model => model.SupportsDAP) -
-
- @Html.DisplayNameFor(model => model.SupportsDeviceBusyEvent) -
-
- @Html.DisplayFor(model => model.SupportsDeviceBusyEvent) -
-
- @Html.DisplayNameFor(model => model.SupportsHybridDiscs) -
-
- @Html.DisplayFor(model => model.SupportsHybridDiscs) -
-
- @Html.DisplayNameFor(model => model.SupportsModePage1Ch) -
-
- @Html.DisplayFor(model => model.SupportsModePage1Ch) -
-
- @Html.DisplayNameFor(model => model.SupportsOSSC) -
-
- @Html.DisplayFor(model => model.SupportsOSSC) -
-
- @Html.DisplayNameFor(model => model.SupportsPWP) -
-
- @Html.DisplayFor(model => model.SupportsPWP) -
-
- @Html.DisplayNameFor(model => model.SupportsSWPP) -
-
- @Html.DisplayFor(model => model.SupportsSWPP) -
-
- @Html.DisplayNameFor(model => model.SupportsSecurDisc) -
-
- @Html.DisplayFor(model => model.SupportsSecurDisc) -
-
- @Html.DisplayNameFor(model => model.SupportsSeparateVolume) -
-
- @Html.DisplayFor(model => model.SupportsSeparateVolume) -
-
- @Html.DisplayNameFor(model => model.SupportsVCPS) -
-
- @Html.DisplayFor(model => model.SupportsVCPS) -
-
- @Html.DisplayNameFor(model => model.SupportsWriteInhibitDCB) -
-
- @Html.DisplayFor(model => model.SupportsWriteInhibitDCB) -
-
- @Html.DisplayNameFor(model => model.SupportsWriteProtectPAC) -
-
- @Html.DisplayFor(model => model.SupportsWriteProtectPAC) -
-
- @Html.DisplayNameFor(model => model.VolumeLevels) -
-
- @Html.DisplayFor(model => model.VolumeLevels) -
-
- @Html.DisplayNameFor(model => model.BinaryData) -
-
- @Html.DisplayFor(model => model.BinaryData) -
-
-
- - Back to List - -
-
\ No newline at end of file diff --git a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml b/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml deleted file mode 100644 index e932f20c..00000000 --- a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Edit.cshtml +++ /dev/null @@ -1,669 +0,0 @@ -@model DiscImageChef.CommonTypes.Metadata.MmcFeatures - -@{ - Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; - ViewBag.Title = "DiscImageChef"; -} -@{ - // /*************************************************************************** - // The Disc Image Chef - // ---------------------------------------------------------------------------- - // - // Filename : Edit.cshtml - // Author(s) : Natalia Portillo - // - // Component : DiscImageChef Server. - // - // --[ License ] -------------------------------------------------------------- - // - // This library is free software; you can redistribute it and/or modify - // it under the terms of the GNU Lesser General Public License as - // published by the Free Software Foundation; either version 2.1 of the - // License, or (at your option) any later version. - // - // This library is distributed in the hope that it will be useful, but - // WITHOUT ANY WARRANTY; without even the implied warranty of - // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - // Lesser General Public License for more details. - // - // You should have received a copy of the GNU Lesser General Public - // License along with this library; if not, see . - // - // ---------------------------------------------------------------------------- - // Copyright © 2011-2019 Natalia Portillo - // ****************************************************************************/ -} -

MmcFeatures

-
-
-
-
-
- -
- - - -
-
- - - -
-
- - - -
-
- - - -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- - - -
-
- -
-
- - - -
-
- - - -
-
- -
-
- -
-
- -
-
- -
-
- - - -
-
- - - -
-
- -
-
- - - -
-
- -
-
- - - -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
- - - -
-
- - - -
- -
-
-
\ No newline at end of file diff --git a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml b/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml index 2e6bada9..a6fc492d 100644 --- a/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml +++ b/DiscImageChef.Server/Areas/Admin/Views/MmcFeatures/Index.cshtml @@ -789,8 +789,6 @@ Details - Edit - Delete }