Imported Upstream version 0.72

This commit is contained in:
TANIGUCHI Takaki
2009-11-21 16:29:02 +09:00
commit a39ce4fddf
879 changed files with 252874 additions and 0 deletions

View File

@@ -0,0 +1,103 @@
<?php
# dvdisaster: English homepage translation
# Copyright (C) 2004-2009 Carsten Gnörlich
#
# UTF-8 trigger: äöüß
#
# Include our PHP sub routines, then call begin_page()
# to start the HTML page, insert the header,
# navigation and news if appropriate.
require("../include/dvdisaster.php");
begin_page();
?>
<!--- Insert actual page content below --->
<h3>Using dvdisaster the right way</h3>
Let's demonstrate how Jane uses dvdisaster. <p>
<table width="100%">
<tr>
<td width="15%">10. Feb. 2004</td>
<td width="60px"><img src="../images/good-cd.png"></td>
<td width="60px"></td>
<td>Jane creates a new CD with important data.</td>
</tr>
<tr><td colspan="4"> <p> </td></tr>
<tr>
<td> </td>
<td><img align="top" src="../images/good-cd.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td>To protect the CD from data loss
<a href="howtos20.php">she creates error correction data with dvdisaster</a>.
She keeps both kinds of data for later usage.</td>
</tr>
<tr><td colspan="4"> <hr> </td></tr>
<tr>
<td>14. May 2005</td>
<td><img align="top" src="../images/good-cd.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td> Jane knows that during daily use not all data of her CD might be
accessed. So after a year has passed
she <a href="howtos10.php">scans the CD for read errors</a> to make sure
that it has not developed any defects in seldom used data regions. However
after one year the CD is still perfectly readable.</td>
</tr>
<tr><td colspan="4"> <hr> </td></tr>
<tr>
<td>19. Aug 2007</td>
<td><img align="top" src="../images/bad-cd.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td>Two more years have passed and Jane notices that some data on the
CD is no longer readable. A <a href="howtos10.php">scan for read errors</a>
confirms that the CD has become defective due to aging.</td>
</tr>
<tr>
<td align="right"><a href="howtos42.php#a">read</a></td>
<td align="center"><img align="top" src="../images/down-arrow.png"></td>
<td></td><td></td>
</tr>
<tr><td colspan="4"> <p> </td></tr>
<tr>
<td> </td>
<td><img align="top" src="../images/bad-image.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td>Jane uses dvdisaster to <a href="howtos42.php#a">read as much sectors
as possible</a> from the defective CD into an ISO image.</td>
<tr>
<td align="right"><a href="howtos42.php#b">reconstruct</a></td>
<td align="center" colspan="2"><img align="top" src="../images/dbl-arrow-left.png"></td>
<td></td>
</tr>
<tr><td colspan="4"> <p> </td></tr>
<tr>
<td> </td>
<td><img align="top" src="../images/good-image.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td>By using the error correction data Jane
<a href="howtos42.php#b">recovers the missing parts in the ISO image</a>.
<tr>
<td align="right">Write new CD</td>
<td align="center"><img align="top" src="../images/down-arrow.png"></td>
<td></td><td></td>
</tr>
<tr><td colspan="4"> <p> </td></tr>
<tr>
<td> </td>
<td><img align="top" src="../images/good-cd.png"></td>
<td><img align="top" src="../images/ecc.png"></td>
<td>Jane writes a new CD from the recovered ISO image. She keeps the
error correction data for the new CD as it may also become defective
in the future.</td>
</table>
<!--- do not change below --->
<?php
# end_page() adds the footer line and closes the HTML properly.
end_page();
?>