mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Show documentation on server.
This commit is contained in:
18
DiscImageChef.Server/Changelog.aspx
Normal file
18
DiscImageChef.Server/Changelog.aspx
Normal file
@@ -0,0 +1,18 @@
|
||||
<%@ Page Language="C#" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<head runat="server">
|
||||
<link type='text/css' rel='stylesheet' href='dos.css' />
|
||||
<title>DiscImageChef's TODO</title>
|
||||
</head>
|
||||
<body id="body" runat="server">
|
||||
<p>
|
||||
<a href="Default.aspx">Return to main page.</a><br/>
|
||||
DiscImageChef list of changes:
|
||||
</p>
|
||||
<div>
|
||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/Changelog.md" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
18
DiscImageChef.Server/DONATING.aspx
Normal file
18
DiscImageChef.Server/DONATING.aspx
Normal file
@@ -0,0 +1,18 @@
|
||||
<%@ Page Language="C#" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<head runat="server">
|
||||
<link type='text/css' rel='stylesheet' href='dos.css' />
|
||||
<title>DiscImageChef's TODO</title>
|
||||
</head>
|
||||
<body id="body" runat="server">
|
||||
<p>
|
||||
<a href="Default.aspx">Return to main page.</a><br/>
|
||||
DiscImageChef list of things to be donated:
|
||||
</p>
|
||||
<div>
|
||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/DONATING.md" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
13
DiscImageChef.Server/Default.aspx
Normal file
13
DiscImageChef.Server/Default.aspx
Normal file
@@ -0,0 +1,13 @@
|
||||
<%@ Page Language="C#" Inherits="DiscImageChef.Server.Default" %>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<head runat="server">
|
||||
<link type='text/css' rel='stylesheet' href='dos.css' />
|
||||
<title>DiscImageChef</title>
|
||||
</head>
|
||||
<body id="body" runat="server">
|
||||
<h1 align="center">Welcome to <i><a href="http://github.com/claunia/discimagechef" target="_blank">DiscImageChef</a></i> Server version <asp:Label id="lblVersion" runat="server"/></h1>
|
||||
</body>
|
||||
</html>
|
||||
25
DiscImageChef.Server/Default.aspx.cs
Normal file
25
DiscImageChef.Server/Default.aspx.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using Velyo.AspNet.Markdown;
|
||||
using System.IO;
|
||||
|
||||
namespace DiscImageChef.Server
|
||||
{
|
||||
|
||||
public partial class Default : System.Web.UI.Page
|
||||
{
|
||||
protected void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
MarkdownContent mkdown = new MarkdownContent();
|
||||
StreamReader sr = new StreamReader("docs/README.md");
|
||||
string mdcontent = sr.ReadToEnd();
|
||||
sr.Close();
|
||||
|
||||
mkdown.Content = mdcontent.Replace(".md)", ".aspx)");
|
||||
body.Controls.Add(mkdown);
|
||||
|
||||
lblVersion.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
20
DiscImageChef.Server/Default.aspx.designer.cs
generated
Normal file
20
DiscImageChef.Server/Default.aspx.designer.cs
generated
Normal file
@@ -0,0 +1,20 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace DiscImageChef.Server {
|
||||
|
||||
|
||||
public partial class Default {
|
||||
|
||||
protected System.Web.UI.HtmlControls.HtmlGenericControl body;
|
||||
|
||||
protected System.Web.UI.WebControls.Label lblVersion;
|
||||
}
|
||||
}
|
||||
@@ -60,6 +60,9 @@
|
||||
<Reference Include="Newtonsoft.Json">
|
||||
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Velyo.AspNet.Markdown">
|
||||
<HintPath>..\packages\Velyo.AspNet.Markdown.1.0.26.6184\lib\net451\Velyo.AspNet.Markdown.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Global.asax" />
|
||||
@@ -71,6 +74,10 @@
|
||||
<Content Include="int10h.org\vga_squarepx.ttf" />
|
||||
<Content Include="int10h.org\vga_squarepx.woff" />
|
||||
<Content Include="ViewReport.aspx" />
|
||||
<Content Include="Default.aspx" />
|
||||
<Content Include="Changelog.aspx" />
|
||||
<Content Include="TODO.aspx" />
|
||||
<Content Include="DONATING.aspx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Global.asax.cs">
|
||||
@@ -102,6 +109,12 @@
|
||||
<Compile Include="Controllers\UploadStatsController.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Controllers\UploadReportController.cs" />
|
||||
<Compile Include="Default.aspx.cs">
|
||||
<DependentUpon>Default.aspx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Default.aspx.designer.cs">
|
||||
<DependentUpon>Default.aspx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DiscImageChef.Metadata\DiscImageChef.Metadata.csproj">
|
||||
@@ -133,6 +146,15 @@
|
||||
<None Include="..\README.md">
|
||||
<Link>docs\README.md</Link>
|
||||
</None>
|
||||
<None Include="..\Changelog.md">
|
||||
<Link>docs\Changelog.md</Link>
|
||||
</None>
|
||||
<None Include="..\DONATING.md">
|
||||
<Link>docs\DONATING.md</Link>
|
||||
</None>
|
||||
<None Include="..\TODO.md">
|
||||
<Link>docs\TODO.md</Link>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="docs\" />
|
||||
|
||||
18
DiscImageChef.Server/TODO.aspx
Normal file
18
DiscImageChef.Server/TODO.aspx
Normal file
@@ -0,0 +1,18 @@
|
||||
<%@ Page Language="C#" %>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<meta charset="UTF-8">
|
||||
<head runat="server">
|
||||
<link type='text/css' rel='stylesheet' href='dos.css' />
|
||||
<title>DiscImageChef's TODO</title>
|
||||
</head>
|
||||
<body id="body" runat="server">
|
||||
<p>
|
||||
<a href="Default.aspx">Return to main page.</a><br/>
|
||||
DiscImageChef list of things to do:
|
||||
</p>
|
||||
<div>
|
||||
<velyo:MarkdownContent ID="todo" runat="server" Path="docs/TODO.md" />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -7,10 +7,15 @@ http://www.mono-project.com/Config_system.web and
|
||||
http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
|
||||
-->
|
||||
<configuration>
|
||||
<system.web>
|
||||
<compilation targetFramework="4.5">
|
||||
<assemblies />
|
||||
</compilation>
|
||||
<httpRuntime targetFramework="4.5" />
|
||||
</system.web>
|
||||
<system.web>
|
||||
<compilation targetFramework="4.5">
|
||||
<assemblies />
|
||||
</compilation>
|
||||
<httpRuntime targetFramework="4.5" />
|
||||
</system.web>
|
||||
<pages>
|
||||
<controls>
|
||||
<add assembly="Velyo.AspNet.Markdown" namespace="Velyo.AspNet.Markdown" tagPrefix="velyo" />
|
||||
</controls>
|
||||
</pages>
|
||||
</configuration>
|
||||
@@ -5,4 +5,5 @@
|
||||
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" targetFramework="net461" />
|
||||
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net461" />
|
||||
<package id="Velyo.AspNet.Markdown" version="1.0.26.6184" targetFramework="net461" />
|
||||
</packages>
|
||||
@@ -143,14 +143,14 @@
|
||||
</NameConventionPolicy>
|
||||
<StandardHeader IncludeInNewFiles="True" Text="/***************************************************************************
The Disc Image Chef
----------------------------------------------------------------------------
 
Filename : ${FileName}
Author(s) : ${AuthorName} <${AuthorEmail}>

Component : Component
 
--[ Description ] ----------------------------------------------------------
 
 Description
 
--[ License ] --------------------------------------------------------------
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 This program 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 General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.

----------------------------------------------------------------------------
Copyright © 2011-${Year} ${CopyrightHolder}
****************************************************************************/" />
|
||||
<TextStylePolicy FileWidth="120" TabWidth="4" IndentWidth="4" RemoveTrailingWhitespace="True" NoTabsAfterNonTabs="False" EolMarker="Native" TabsToSpaces="True" scope="text/x-csharp" />
|
||||
<CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="True" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="True" NewLinesForBracesInProperties="True" NewLinesForBracesInAccessors="True" NewLinesForBracesInAnonymousMethods="True" NewLinesForBracesInControlBlocks="True" NewLinesForBracesInAnonymousTypes="True" NewLinesForBracesInObjectCollectionArrayInitializers="True" NewLinesForBracesInLambdaExpressionBody="True" NewLineForElse="True" NewLineForCatch="True" NewLineForFinally="True" SpacingAfterMethodDeclarationName="False" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceAfterMethodCallName="False" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceAfterControlFlowStatementKeyword="False" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBeforeOpenSquareBracket="False" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeColonInBaseTypeDeclaration="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" NewLineForMembersInObjectInit="True" NewLineForMembersInAnonymousTypes="True" NewLineForClausesInQuery="True" scope="text/x-csharp" />
|
||||
<CSharpFormattingPolicy IndentBlock="True" IndentBraces="False" IndentSwitchSection="True" IndentSwitchCaseSection="True" LabelPositioning="OneLess" NewLinesForBracesInTypes="True" NewLinesForBracesInMethods="True" NewLinesForBracesInProperties="True" NewLinesForBracesInAccessors="True" NewLinesForBracesInAnonymousMethods="True" NewLinesForBracesInControlBlocks="True" NewLinesForBracesInAnonymousTypes="True" NewLinesForBracesInObjectCollectionArrayInitializers="True" NewLinesForBracesInLambdaExpressionBody="True" NewLineForElse="True" NewLineForCatch="True" NewLineForFinally="True" NewLineForMembersInObjectInit="True" NewLineForMembersInAnonymousTypes="True" NewLineForClausesInQuery="True" SpacingAfterMethodDeclarationName="False" SpaceWithinMethodDeclarationParenthesis="False" SpaceBetweenEmptyMethodDeclarationParentheses="False" SpaceAfterMethodCallName="False" SpaceWithinMethodCallParentheses="False" SpaceBetweenEmptyMethodCallParentheses="False" SpaceAfterControlFlowStatementKeyword="False" SpaceWithinExpressionParentheses="False" SpaceWithinCastParentheses="False" SpaceWithinOtherParentheses="False" SpaceAfterCast="False" SpacesIgnoreAroundVariableDeclaration="False" SpaceBeforeOpenSquareBracket="False" SpaceBetweenEmptySquareBrackets="False" SpaceWithinSquareBrackets="False" SpaceAfterColonInBaseTypeDeclaration="True" SpaceAfterComma="True" SpaceAfterDot="False" SpaceAfterSemicolonsInForStatement="True" SpaceBeforeColonInBaseTypeDeclaration="True" SpaceBeforeComma="False" SpaceBeforeDot="False" SpaceBeforeSemicolonsInForStatement="False" SpacingAroundBinaryOperator="Single" WrappingPreserveSingleLine="True" WrappingKeepStatementsOnSingleLine="True" PlaceSystemDirectiveFirst="True" scope="text/x-csharp" />
|
||||
</Policies>
|
||||
</Properties>
|
||||
</MonoDevelop>
|
||||
</ProjectExtensions>
|
||||
<ItemGroup>
|
||||
<None Include="..\TODO">
|
||||
<Link>TODO</Link>
|
||||
<None Include="..\TODO.md">
|
||||
<Link>TODO.md</Link>
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Include="..\README.md">
|
||||
|
||||
18
README.md
18
README.md
@@ -7,10 +7,12 @@ Copyright © 2011-2017 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
[](https://travis-ci.org/claunia/DiscImageChef)[](https://ci.appveyor.com/project/claunia/discimagechef)
|
||||
|
||||
You can see statistics and device reports at http://discimagechef.claunia.com/Statistics.aspx
|
||||
You can see statistics and device reports [here](http://discimagechef.claunia.com/Statistics.aspx)
|
||||
|
||||
If you want to donate money you can become a patron at https://www.patreon.com/DiscImageChef
|
||||
If you want to donate hardware you can see [what we need](DONATING.md), but any kind of hardware donation will be accepted, thanks
|
||||
If you want to donate hardware you can see [what we need](DONATING.md), but any kind of hardware donation will be accepted, thanks.
|
||||
To see last changes, check the [changelog](Changelog.md).
|
||||
To see list of pending things to do, check the [TODO list](TODO.md).
|
||||
|
||||
Usage
|
||||
=====
|
||||
@@ -207,14 +209,4 @@ Supported filters
|
||||
* GZip
|
||||
* LZip
|
||||
* MacBinary I, II, III
|
||||
* XZ
|
||||
|
||||
Changelog
|
||||
=========
|
||||
|
||||
See Changelog file.
|
||||
|
||||
To-Do
|
||||
=====
|
||||
|
||||
See TODO file.
|
||||
* XZ
|
||||
57
TODO
57
TODO
@@ -1,57 +0,0 @@
|
||||
Disc image plugins:
|
||||
--- Add support for DiscFerret images
|
||||
--- Add support for Kryoflux images
|
||||
--- Add support for XPACK images
|
||||
|
||||
Filesystem plugins:
|
||||
--- Add support for NwFS
|
||||
--- Add support for ReFS
|
||||
|
||||
Partitioning scheme plugins:
|
||||
--- Add support for AIX partitions
|
||||
|
||||
RAW plugin:
|
||||
--- Finish support for reading sectors of variable bytes/sector images
|
||||
|
||||
Image comparison:
|
||||
--- Compare sector tags
|
||||
--- Offer the option to see differing values
|
||||
--- Optimize and multithread
|
||||
|
||||
Image checksum:
|
||||
--- Checksum disk tags
|
||||
--- Checksum long sectors
|
||||
--- Checksum sector tags
|
||||
--- Optimize and multithread
|
||||
|
||||
Device handling:
|
||||
--- Add support for FreeBSD
|
||||
--- Add support for NVMe devices
|
||||
--- Add support for streaming tape devices
|
||||
--- Support MMC feature codes FF33h
|
||||
--- Support SCSI mode pages 18h, 1Dh, 20h, 31h, 32h
|
||||
|
||||
QCOW plugin:
|
||||
--- Add support for encrypted images
|
||||
|
||||
VMDK plugin:
|
||||
--- Add support for encrypted extents
|
||||
--- Add support for compressed extents
|
||||
|
||||
UDIF plugin:
|
||||
--- Add support for chunks compressed with RLE, LZH, KenCode or LZFSE
|
||||
|
||||
NDIF plugin:
|
||||
--- Add support for chunks compressed with RLE, LZH or KenCode
|
||||
|
||||
DART plugin:
|
||||
--- Add support for chunks compressed with RLE or LZH
|
||||
|
||||
CHD plugin:
|
||||
--- Add support for PCMCIA images
|
||||
--- Add support for compressed hunks on CD disc images
|
||||
--- Add support for compressed version 5 disk images
|
||||
|
||||
Filters:
|
||||
--- Add support for 7Z archives
|
||||
--- Add support for ZIP archives
|
||||
71
TODO.md
Normal file
71
TODO.md
Normal file
@@ -0,0 +1,71 @@
|
||||
Disc image plugins
|
||||
==================
|
||||
* Add support for DiscFerret images
|
||||
* Add support for Kryoflux images
|
||||
* Add support for XPACK images
|
||||
|
||||
Filesystem plugins
|
||||
==================
|
||||
* Add support for NwFS
|
||||
* Add support for ReFS
|
||||
|
||||
Partitioning scheme plugins
|
||||
===========================
|
||||
* Add support for AIX partitions
|
||||
|
||||
RAW plugin
|
||||
==========
|
||||
* Finish support for reading sectors of variable bytes/sector images
|
||||
|
||||
Image comparison
|
||||
================
|
||||
* Compare sector tags
|
||||
* Offer the option to see differing values
|
||||
* Optimize and multithread
|
||||
|
||||
Image checksum
|
||||
==============
|
||||
* Checksum disk tags
|
||||
* Checksum long sectors
|
||||
* Checksum sector tags
|
||||
* Optimize and multithread
|
||||
|
||||
Device handling
|
||||
===============
|
||||
* Add support for FreeBSD
|
||||
* Add support for NVMe devices
|
||||
* Add support for streaming tape devices
|
||||
* Support MMC feature codes FF33h
|
||||
* Support SCSI mode pages 18h, 1Dh, 20h, 31h, 32h
|
||||
|
||||
QCOW plugin
|
||||
===========
|
||||
* Add support for encrypted images
|
||||
|
||||
VMDK plugin
|
||||
===========
|
||||
* Add support for encrypted extents
|
||||
* Add support for compressed extents
|
||||
|
||||
UDIF plugin
|
||||
===========
|
||||
* Add support for chunks compressed with RLE, LZH, KenCode or LZFSE
|
||||
|
||||
NDIF plugin
|
||||
===========
|
||||
* Add support for chunks compressed with RLE, LZH or KenCode
|
||||
|
||||
DART plugin
|
||||
===========
|
||||
* Add support for chunks compressed with RLE or LZH
|
||||
|
||||
CHD plugin
|
||||
==========
|
||||
* Add support for PCMCIA images
|
||||
* Add support for compressed hunks on CD disc images
|
||||
* Add support for compressed version 5 disk images
|
||||
|
||||
Filters
|
||||
=======
|
||||
* Add support for 7Z archives
|
||||
* Add support for ZIP archives
|
||||
Reference in New Issue
Block a user