PageRenderTime 448ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/dvdisaster-0.72.3/documentation/en/howtosa4.php

#
PHP | 89 lines | 62 code | 18 blank | 9 comment | 3 complexity | 2772d723a86a413f5deb4f68720d16e3 MD5 | raw file
Possible License(s): GPL-2.0
  1. <?php
  2. # dvdisaster: English homepage translation
  3. # Copyright (C) 2004-2010 Carsten Gnörlich
  4. #
  5. # UTF-8 trigger: äöüß
  6. #
  7. # Include our PHP sub routines, then call begin_page()
  8. # to start the HTML page, insert the header,
  9. # navigation and news if appropriate.
  10. require("../include/dvdisaster.php");
  11. require("../include/screenshot.php");
  12. begin_page();
  13. ?>
  14. <!--- Insert actual page content below --->
  15. <h3>Starting actions</h3>
  16. <?php begin_screen_shot("Starting actions","action-buttons.png"); ?>
  17. To start an action in dvdisaster, click on one of the buttons marked green:<p>
  18. <table>
  19. <tr>
  20. <td valign="top"><img src="images/read-icon.png"> &nbsp;</td>
  21. <td><b>Reading medium contents into an image file</b> to:
  22. <ul>
  23. <li>read in <a href="howtos42.php#a">a defective medium</a> for a subsequent recovery.
  24. <li>read in <a href="howtos23.php?way=1&expand=0">an error-free medium</a> for creating an error
  25. correction file.</td>
  26. </tr>
  27. <tr>
  28. <td valign="top"><img src="images/create-icon.png"> &nbsp;</td>
  29. <td><b><a href="howtos20.php">Creating an error correction file</a></b><br>
  30. (only possible from defect-free media!)</td>
  31. </tr>
  32. <tr>
  33. <td valign="top"><img src="images/scan-icon.png"> &nbsp;</td>
  34. <td><b><a href="howtos10.php">Scanning a medium for read errors.</a></b>
  35. </td>
  36. </tr>
  37. <tr>
  38. <td valign="top"><img src="images/fix-icon.png"> &nbsp;</td>
  39. <td><b><a href="howtos40.php">Recover the image of a defective medium</a></b><br>
  40. provided that
  41. <a href="howtos20.php">error correction data</a> is available.
  42. </td>
  43. </tr>
  44. <tr>
  45. <td valign="top"><img src="images/compare-icon.png"> &nbsp;</td>
  46. <td>Display <a href="howtos50.php">information on images and error correction data</a>.
  47. </td>
  48. </tr>
  49. </table><p>
  50. <b>Other buttons related to the above actions:</b>
  51. <table>
  52. <tr>
  53. <td valign="top"><img src="images/log-icon.png"> &nbsp;</td>
  54. <td><b>View log file of running action</b> (marked yellow).<br>
  55. See also: <a href="feedback.php#log">Log file creation</a>.
  56. </td>
  57. </tr>
  58. <tr>
  59. <td valign="top"><img src="images/stop-icon.png"> &nbsp;</td>
  60. <td><b>Aborting the running action</b> (marked red).<br>
  61. Some actions may take some time to abort; especially when this button
  62. is hit while reading a defective sector.
  63. </td>
  64. </tr>
  65. </table>
  66. <?php end_screen_shot(); ?>
  67. <!--- do not change below --->
  68. <?php
  69. # end_page() adds the footer line and closes the HTML properly.
  70. end_page();
  71. ?>