/plugins/HexToolsPlugin/trunk/docs/index.html

# · HTML · 97 lines · 70 code · 27 blank · 0 comment · 0 complexity · abb521c07b15a4e444ea95f4bed98a96 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
  2. <html>
  3. <head>
  4. <title>HexTools Plugin</title>
  5. </head>
  6. <body>
  7. <h2>HexTools Plugin 0.9</h2>
  8. <p>Author: Jürgen Weber</p>
  9. <h3>Legal Notice</h3>
  10. <p>Permission is granted to copy, distribute and/or modify this
  11. document under the terms of the GNU Free Documentation License,
  12. Version 1.1 or any later version published by the Free Software
  13. Foundation; with no Invariant Sections, Front-Cover Texts or
  14. Back-Cover Texts, each as defined in the license. A copy of the
  15. license can be found in the file COPYING.DOC.txt included with
  16. jEdit.</p>
  17. <hr>
  18. <a href="#presentation">Presentation</a><br>
  19. <a href="#operation">Operation</a><br>
  20. <a href="#license">License</a><br>
  21. <a href="#feedback">Feedback</a><br>
  22. <a href="#history">Change log</a><br>
  23. <hr>
  24. <a name="presentation">
  25. <h3>Presentation</h3>
  26. <p>HexTools Plugin extracts data from a hex dump and saves into a file or into the clipboard.</p>
  27. <a name="operation">
  28. <h3>Operation</h3>
  29. Say you have a hex dump like this in a jEdit buffer and you'd like to save the
  30. data as binary file (e.g. because your <a href="http://www.jacorb.org/">favorite ORB</a> only saves message data to the log).
  31. <pre>
  32. 00000000 6a 45 64 69 74 20 69 73 20 61 20 67 72 65 61 74 |jEdit is a great|
  33. 00000010 20 74 65 78 74 20 65 64 69 74 6f 72 2e 0d 0a | text editor...|
  34. 0000001f
  35. </pre>
  36. Select the data area of the hex dump (it is recommendable to use rectangular
  37. selection) and choose Plugins->HexTools.
  38. You get this dialog, where you can choose to save the hexdump data or copy it as String
  39. to the clipboard using the selected encoding.
  40. The conversation works by stripping all whitespace from the selection and parsing
  41. two hex digits at a time.
  42. <p><img src="dialog.png"></p>
  43. <hr>
  44. <a name="license">
  45. <h3>License</h3>
  46. <p>The source code is distributed under the GPL. Please see <a
  47. href=
  48. "http://www.fsf.org/copyleft/gpl.html">http://www.fsf.org/copyleft/gpl.html</a></p>
  49. <hr>
  50. <a name="feedback">
  51. <h3>Feedback</h3>
  52. <p>The preferred way to send bug reports is to use the
  53. Sourceforge Bug Tracker for jEdit at <a href=
  54. "http://sourceforge.net/projects/jedit/">http://sourceforge.net/projects/jedit/</a></p>
  55. <p>You can also write to:</p>
  56. <ul>
  57. <li>
  58. <p>jEdit-users mailing-list <a href=
  59. "mailto:jedit-users@lists.sourceforge.net">jedit-users@lists.sourceforge.net</a></p>
  60. </li>
  61. <li>
  62. <p>or jEdit-devel mailing-list <a href=
  63. "mailto:jedit-devel@lists.sourceforge.net">mailto:jedit-devel@lists.sourceforge.net</a></p>
  64. </li>
  65. </ul>
  66. <hr>
  67. <a name="history">
  68. <h3>History</h3>
  69. </body>
  70. </html>